From cff161c7427b72043ec6eed72873066cc40cfe02 Mon Sep 17 00:00:00 2001 From: blindfs Date: Sun, 25 Jan 2026 09:58:52 +0800 Subject: [PATCH 1/5] chore(ci): enable node test --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 62786097..2d98ee16 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,7 +43,7 @@ jobs: with: generate: false test-rust: true - test-node: false + test-node: true test-python: true test-go: true test-swift: false From 9d04b5291180ae0090dc59db58d884065869a22e Mon Sep 17 00:00:00 2001 From: blindfs Date: Sun, 25 Jan 2026 09:59:19 +0800 Subject: [PATCH 2/5] feat: new let syntax --- eslint.config.mjs | 4 +- grammar.js | 6 + package-lock.json | 2 - src/grammar.json | 39 + src/node-types.json | 8 +- src/parser.c | 336429 +++++++++++++++++++------------------ test/corpus/stmt/let.nu | 21 + 7 files changed, 169064 insertions(+), 167445 deletions(-) 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..d29ed752 100644 --- a/grammar.js +++ b/grammar.js @@ -26,6 +26,8 @@ module.exports = grammar({ ], conflicts: $ => [ + [$._assignment_pattern, $._stmt_let_shortcut], + [$._assignment_pattern_parenthesized, $._stmt_let_shortcut], [$._binary_predicate_parenthesized], [$._block_body, $.record_body, $.val_closure], [$._block_body, $.shebang], @@ -525,6 +527,8 @@ module.exports = grammar({ ctrl_try: _ctrl_try_rule(false), ctrl_try_parenthesized: _ctrl_try_rule(true), + _stmt_let_shortcut: $ => seq(keyword().let, $._variable_name), + /// Pipelines pipe_element: $ => @@ -537,6 +541,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 +558,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..203afabd 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4535,6 +4535,19 @@ } ] }, + "_stmt_let_shortcut": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "let" + }, + { + "type": "SYMBOL", + "name": "_variable_name" + } + ] + }, "pipe_element": { "type": "CHOICE", "members": [ @@ -4613,6 +4626,15 @@ { "type": "SYMBOL", "name": "where_command" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_stmt_let_shortcut" + }, + "named": true, + "value": "stmt_let" } ] }, @@ -4704,6 +4726,15 @@ }, "named": true, "value": "where_command" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_stmt_let_shortcut" + }, + "named": true, + "value": "stmt_let" } ] }, @@ -17430,6 +17461,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..9bb0483c 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 @@ -3720,7 +3724,7 @@ }, "name": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -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..17651756 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,16 +15,16 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 5204 +#define STATE_COUNT 5259 #define LARGE_STATE_COUNT 1263 -#define SYMBOL_COUNT 483 +#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 252 #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,251 @@ 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}, - [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}, + [3] = {.index = 4, .length = 2}, + [4] = {.index = 6, .length = 1}, + [6] = {.index = 7, .length = 1}, + [7] = {.index = 8, .length = 1}, + [8] = {.index = 9, .length = 1}, + [9] = {.index = 10, .length = 5}, + [10] = {.index = 15, .length = 2}, + [11] = {.index = 17, .length = 1}, + [12] = {.index = 18, .length = 1}, + [13] = {.index = 19, .length = 1}, + [14] = {.index = 20, .length = 2}, + [15] = {.index = 22, .length = 1}, + [16] = {.index = 23, .length = 1}, + [17] = {.index = 24, .length = 1}, + [18] = {.index = 25, .length = 1}, + [19] = {.index = 26, .length = 2}, + [20] = {.index = 28, .length = 1}, + [21] = {.index = 29, .length = 6}, + [22] = {.index = 35, .length = 1}, + [23] = {.index = 36, .length = 1}, + [24] = {.index = 36, .length = 1}, + [25] = {.index = 37, .length = 4}, + [26] = {.index = 41, .length = 1}, + [27] = {.index = 42, .length = 1}, + [28] = {.index = 43, .length = 2}, + [29] = {.index = 45, .length = 6}, + [30] = {.index = 51, .length = 1}, + [31] = {.index = 51, .length = 1}, + [32] = {.index = 52, .length = 2}, + [33] = {.index = 54, .length = 5}, + [34] = {.index = 59, .length = 1}, + [35] = {.index = 60, .length = 2}, + [36] = {.index = 62, .length = 1}, + [37] = {.index = 63, .length = 2}, + [38] = {.index = 65, .length = 2}, + [39] = {.index = 67, .length = 1}, + [40] = {.index = 68, .length = 1}, + [42] = {.index = 69, .length = 3}, + [43] = {.index = 72, .length = 3}, + [44] = {.index = 75, .length = 2}, + [45] = {.index = 77, .length = 2}, + [46] = {.index = 79, .length = 6}, + [47] = {.index = 85, .length = 1}, + [48] = {.index = 86, .length = 1}, + [49] = {.index = 87, .length = 1}, + [50] = {.index = 88, .length = 2}, + [51] = {.index = 90, .length = 2}, + [52] = {.index = 92, .length = 6}, + [53] = {.index = 98, .length = 1}, + [54] = {.index = 99, .length = 4}, + [55] = {.index = 103, .length = 1}, + [56] = {.index = 104, .length = 1}, + [57] = {.index = 105, .length = 1}, + [58] = {.index = 106, .length = 1}, + [59] = {.index = 107, .length = 1}, + [60] = {.index = 108, .length = 1}, + [61] = {.index = 109, .length = 1}, + [62] = {.index = 110, .length = 2}, + [63] = {.index = 112, .length = 7}, + [64] = {.index = 119, .length = 1}, + [65] = {.index = 120, .length = 1}, + [66] = {.index = 121, .length = 2}, + [67] = {.index = 123, .length = 5}, + [68] = {.index = 128, .length = 1}, + [69] = {.index = 129, .length = 1}, + [70] = {.index = 130, .length = 1}, + [71] = {.index = 131, .length = 2}, + [72] = {.index = 133, .length = 10}, + [73] = {.index = 143, .length = 3}, + [74] = {.index = 143, .length = 3}, + [75] = {.index = 146, .length = 2}, + [76] = {.index = 146, .length = 2}, + [77] = {.index = 146, .length = 2}, + [78] = {.index = 146, .length = 2}, + [79] = {.index = 148, .length = 2}, + [80] = {.index = 150, .length = 3}, + [81] = {.index = 153, .length = 3}, + [82] = {.index = 156, .length = 3}, + [83] = {.index = 159, .length = 4}, + [84] = {.index = 163, .length = 1}, + [85] = {.index = 164, .length = 1}, + [86] = {.index = 165, .length = 1}, + [87] = {.index = 166, .length = 2}, + [88] = {.index = 168, .length = 1}, + [89] = {.index = 168, .length = 1}, + [90] = {.index = 169, .length = 1}, + [91] = {.index = 170, .length = 4}, + [92] = {.index = 174, .length = 3}, + [93] = {.index = 177, .length = 4}, + [94] = {.index = 181, .length = 2}, + [95] = {.index = 183, .length = 1}, + [96] = {.index = 184, .length = 1}, + [98] = {.index = 183, .length = 1}, + [99] = {.index = 185, .length = 1}, + [100] = {.index = 186, .length = 2}, + [101] = {.index = 188, .length = 1}, + [102] = {.index = 189, .length = 2}, + [103] = {.index = 191, .length = 2}, + [105] = {.index = 193, .length = 2}, + [106] = {.index = 195, .length = 1}, + [107] = {.index = 196, .length = 4}, + [108] = {.index = 200, .length = 1}, + [109] = {.index = 201, .length = 2}, + [110] = {.index = 203, .length = 1}, + [111] = {.index = 204, .length = 2}, + [112] = {.index = 206, .length = 2}, + [113] = {.index = 208, .length = 1}, + [114] = {.index = 201, .length = 2}, + [115] = {.index = 209, .length = 2}, + [116] = {.index = 209, .length = 2}, + [117] = {.index = 209, .length = 2}, + [118] = {.index = 209, .length = 2}, + [119] = {.index = 211, .length = 9}, + [120] = {.index = 220, .length = 6}, + [121] = {.index = 226, .length = 6}, + [122] = {.index = 232, .length = 2}, + [123] = {.index = 234, .length = 1}, + [124] = {.index = 235, .length = 2}, + [125] = {.index = 237, .length = 1}, + [126] = {.index = 238, .length = 2}, + [127] = {.index = 238, .length = 2}, + [128] = {.index = 238, .length = 2}, + [129] = {.index = 238, .length = 2}, + [130] = {.index = 240, .length = 3}, + [131] = {.index = 243, .length = 4}, + [132] = {.index = 247, .length = 4}, + [133] = {.index = 251, .length = 1}, + [134] = {.index = 252, .length = 2}, + [135] = {.index = 254, .length = 5}, + [136] = {.index = 259, .length = 5}, + [137] = {.index = 264, .length = 4}, + [138] = {.index = 268, .length = 3}, + [139] = {.index = 271, .length = 3}, + [140] = {.index = 274, .length = 6}, + [141] = {.index = 280, .length = 6}, + [142] = {.index = 286, .length = 5}, + [143] = {.index = 291, .length = 3}, + [144] = {.index = 294, .length = 3}, [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}, + [146] = {.index = 299, .length = 2}, + [147] = {.index = 301, .length = 2}, + [148] = {.index = 303, .length = 3}, + [149] = {.index = 303, .length = 3}, + [150] = {.index = 306, .length = 3}, + [151] = {.index = 306, .length = 3}, + [152] = {.index = 309, .length = 1}, + [153] = {.index = 310, .length = 1}, + [154] = {.index = 311, .length = 3}, + [155] = {.index = 314, .length = 3}, + [156] = {.index = 317, .length = 3}, + [157] = {.index = 317, .length = 3}, + [158] = {.index = 317, .length = 3}, + [159] = {.index = 317, .length = 3}, + [160] = {.index = 317, .length = 3}, + [161] = {.index = 317, .length = 3}, + [162] = {.index = 317, .length = 3}, + [163] = {.index = 317, .length = 3}, + [164] = {.index = 320, .length = 5}, + [165] = {.index = 325, .length = 4}, + [166] = {.index = 329, .length = 4}, + [167] = {.index = 333, .length = 3}, + [168] = {.index = 336, .length = 1}, + [169] = {.index = 337, .length = 2}, + [170] = {.index = 339, .length = 1}, + [171] = {.index = 340, .length = 1}, + [172] = {.index = 341, .length = 1}, + [173] = {.index = 342, .length = 2}, + [174] = {.index = 344, .length = 2}, + [175] = {.index = 346, .length = 5}, + [176] = {.index = 351, .length = 6}, + [177] = {.index = 357, .length = 1}, + [178] = {.index = 358, .length = 1}, [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}, + [182] = {.index = 365, .length = 2}, + [183] = {.index = 367, .length = 2}, + [184] = {.index = 369, .length = 9}, + [185] = {.index = 378, .length = 6}, + [186] = {.index = 384, .length = 9}, + [187] = {.index = 393, .length = 6}, + [188] = {.index = 399, .length = 6}, + [189] = {.index = 405, .length = 6}, + [190] = {.index = 411, .length = 3}, + [191] = {.index = 411, .length = 3}, + [192] = {.index = 414, .length = 1}, + [193] = {.index = 415, .length = 4}, + [194] = {.index = 419, .length = 5}, + [195] = {.index = 424, .length = 5}, + [196] = {.index = 429, .length = 4}, + [197] = {.index = 433, .length = 3}, + [198] = {.index = 436, .length = 3}, + [199] = {.index = 439, .length = 3}, + [200] = {.index = 442, .length = 6}, + [201] = {.index = 448, .length = 2}, + [202] = {.index = 450, .length = 1}, [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}, + [204] = {.index = 453, .length = 2}, + [205] = {.index = 455, .length = 2}, + [206] = {.index = 457, .length = 3}, + [207] = {.index = 460, .length = 3}, + [208] = {.index = 463, .length = 3}, + [209] = {.index = 466, .length = 3}, + [210] = {.index = 469, .length = 3}, + [211] = {.index = 472, .length = 3}, + [212] = {.index = 475, .length = 2}, + [213] = {.index = 477, .length = 2}, + [214] = {.index = 479, .length = 9}, + [215] = {.index = 488, .length = 6}, + [216] = {.index = 494, .length = 6}, + [217] = {.index = 500, .length = 1}, + [218] = {.index = 501, .length = 4}, + [219] = {.index = 505, .length = 5}, + [220] = {.index = 510, .length = 6}, + [221] = {.index = 516, .length = 3}, + [222] = {.index = 519, .length = 3}, + [223] = {.index = 522, .length = 3}, + [224] = {.index = 525, .length = 3}, + [225] = {.index = 528, .length = 3}, + [226] = {.index = 531, .length = 3}, + [227] = {.index = 534, .length = 3}, + [228] = {.index = 537, .length = 3}, + [229] = {.index = 540, .length = 3}, + [230] = {.index = 543, .length = 2}, + [231] = {.index = 545, .length = 2}, + [232] = {.index = 547, .length = 5}, + [233] = {.index = 552, .length = 4}, + [234] = {.index = 556, .length = 3}, + [235] = {.index = 559, .length = 3}, + [236] = {.index = 562, .length = 3}, + [237] = {.index = 565, .length = 3}, + [238] = {.index = 568, .length = 3}, + [239] = {.index = 571, .length = 3}, + [240] = {.index = 574, .length = 3}, + [241] = {.index = 577, .length = 3}, + [242] = {.index = 580, .length = 2}, + [243] = {.index = 582, .length = 5}, + [244] = {.index = 587, .length = 3}, + [245] = {.index = 590, .length = 3}, + [246] = {.index = 593, .length = 3}, + [247] = {.index = 596, .length = 3}, + [248] = {.index = 599, .length = 3}, + [249] = {.index = 602, .length = 3}, + [250] = {.index = 605, .length = 3}, + [251] = {.index = 608, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3831,164 +3840,170 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [3] = {field_head, 0}, [4] = + {field_dollar_name, 0, .inherited = true}, + {field_var_name, 0, .inherited = true}, + [6] = {field_expr, 0, .inherited = true}, - [5] = + [7] = {field_unquoted_name, 0}, - [6] = + [8] = {field_quoted_name, 0}, - [7] = + [9] = {field_var_name, 0}, - [8] = + [10] = {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] = + [15] = + {field_dollar_name, 1, .inherited = true}, + {field_var_name, 1, .inherited = true}, + [17] = {field_dollar_name, 0}, - [14] = + [18] = {field_module, 1}, - [15] = + [19] = {field_body, 1}, - [16] = + [20] = {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [18] = + [22] = {field_try_branch, 1}, - [19] = + [23] = {field_type, 1}, - [20] = + [24] = {field_item, 0}, - [21] = + [25] = {field_spread, 0}, - [22] = + [26] = {field_name, 0, .inherited = true}, {field_spread, 0}, - [24] = + [28] = {field_entry, 0}, - [25] = + [29] = {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] = + [35] = {field_name, 1}, - [32] = + [36] = {field_end, 1}, - [33] = + [37] = {field_lhs, 1, .inherited = true}, {field_opr, 1, .inherited = true}, {field_predicate, 1}, {field_rhs, 1, .inherited = true}, - [37] = + [41] = {field_predicate, 1}, - [38] = + [42] = {field_expr, 0}, - [39] = + [43] = {field_head, 0}, {field_head, 1}, - [41] = + [45] = {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] = + [51] = {field_start, 0}, - [48] = + [52] = {field_unit, 1}, {field_value, 0}, - [50] = + [54] = {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] = + [59] = {field_module, 2}, - [56] = + [60] = {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [58] = + [62] = {field_value, 1, .inherited = true}, - [59] = + [63] = {field_quoted_name, 0, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, - [61] = + [65] = {field_import_pattern, 2}, {field_module, 1}, - [63] = + [67] = {field_wildcard, 0}, - [64] = + [68] = {field_command_list, 0}, - [65] = + [69] = {field_quoted_name, 1, .inherited = true}, {field_signature, 2}, {field_unquoted_name, 1, .inherited = true}, - [68] = + [72] = {field_body, 2}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [71] = + [75] = {field_body, 2}, {field_condition, 1}, - [73] = + [77] = {field_condition, 1}, {field_then_branch, 2}, - [75] = + [79] = {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] = + [85] = {field_head, 1, .inherited = true}, - [82] = + [86] = {field_row, 0}, - [83] = + [87] = {field_entry, 1}, - [84] = + [88] = {field_entry, 0, .inherited = true}, {field_entry, 1}, - [86] = + [90] = {field_entry, 0, .inherited = true}, {field_entry, 1, .inherited = true}, - [88] = + [92] = {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] = + [98] = {field_param_name, 0}, - [95] = + [99] = {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] = + [103] = {field_param_rest, 0}, - [100] = + [104] = {field_param_optional, 0}, - [101] = + [105] = {field_param_long_flag, 0}, - [102] = + [106] = {field_param_short_flag, 0}, - [103] = + [107] = {field_parameters, 1}, - [104] = + [108] = {field_digit, 0}, - [105] = + [109] = {field_expr, 1, .inherited = true}, - [106] = + [110] = {field_expr, 0, .inherited = true}, {field_expr, 1, .inherited = true}, - [108] = + [112] = {field_arg, 2, .inherited = true}, {field_arg_spread, 2, .inherited = true}, {field_arg_str, 2, .inherited = true}, @@ -3996,29 +4011,29 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_head, 0}, {field_head, 1}, {field_redir, 2, .inherited = true}, - [115] = + [119] = {field_arg, 0}, - [116] = + [120] = {field_arg_spread, 0}, - [117] = + [121] = {field_arg_spread, 0}, {field_name, 0, .inherited = true}, - [119] = + [123] = {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] = + [128] = {field_redir, 0}, - [125] = + [129] = {field_flag, 0}, - [126] = + [130] = {field_arg_str, 0}, - [127] = + [131] = {field_value, 2}, {field_variable, 0}, - [129] = + [133] = {field_arg, 0, .inherited = true}, {field_arg, 1, .inherited = true}, {field_arg_spread, 0, .inherited = true}, @@ -4029,109 +4044,109 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_flag, 1, .inherited = true}, {field_redir, 0, .inherited = true}, {field_redir, 1, .inherited = true}, - [139] = + [143] = {field_lhs, 0}, {field_opr, 1}, {field_rhs, 2}, - [142] = + [146] = {field_end, 2}, {field_start, 0}, - [144] = + [148] = {field_import_pattern, 3}, {field_module, 2}, - [146] = + [150] = {field_quoted_name, 2, .inherited = true}, {field_signature, 3}, {field_unquoted_name, 2, .inherited = true}, - [149] = + [153] = {field_body, 3}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [152] = + [156] = {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, {field_value, 3}, - [155] = + [159] = {field_dollar_name, 0, .inherited = true}, {field_name, 0}, {field_value, 2}, {field_var_name, 0, .inherited = true}, - [159] = + [163] = {field_flat_type, 0}, - [160] = + [164] = {field_type, 1, .inherited = true}, - [161] = + [165] = {field_type, 0}, - [162] = + [166] = {field_name, 1}, {field_value, 2, .inherited = true}, - [164] = + [168] = {field_value, 1}, - [165] = + [169] = {field_type, 0, .inherited = true}, - [166] = + [170] = {field_body, 3}, {field_parameters, 2}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [170] = + [174] = {field_cmd, 0}, {field_quoted_name, 0, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, - [173] = + [177] = {field_body, 3}, {field_quoted_name, 1, .inherited = true}, {field_signature, 2}, {field_unquoted_name, 1, .inherited = true}, - [177] = + [181] = {field_catch_branch, 3}, {field_try_branch, 1}, - [179] = + [183] = {field_scrutinee, 1}, - [180] = + [184] = {field_rest, 0, .inherited = true}, - [181] = + [185] = {field_head, 1}, - [182] = + [186] = {field_head, 1, .inherited = true}, {field_row, 2, .inherited = true}, - [184] = + [188] = {field_row, 1}, - [185] = + [189] = {field_row, 0, .inherited = true}, {field_row, 1}, - [187] = + [191] = {field_row, 0, .inherited = true}, {field_row, 1, .inherited = true}, - [189] = + [193] = {field_entry, 1, .inherited = true}, {field_entry, 2}, - [191] = + [195] = {field_try_branch, 2}, - [192] = + [196] = {field_lhs, 2, .inherited = true}, {field_opr, 2, .inherited = true}, {field_predicate, 2}, {field_rhs, 2, .inherited = true}, - [196] = + [200] = {field_predicate, 2}, - [197] = + [201] = {field_key, 0}, {field_value, 2}, - [199] = + [203] = {field_name, 0}, - [200] = + [204] = {field_param_name, 0}, {field_param_name, 1}, - [202] = + [206] = {field_flag_capsule, 1}, {field_param_long_flag, 0}, - [204] = + [208] = {field_parameters, 2}, - [205] = + [209] = {field_end, 3}, {field_step, 1}, - [207] = + [211] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 2, .inherited = true}, @@ -4141,208 +4156,208 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 2}, {field_rhs, 2, .inherited = true}, - [216] = + [220] = {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] = + [226] = {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] = + [232] = {field_digit, 0}, {field_digit, 1}, - [230] = + [234] = {field_digit, 2, .inherited = true}, - [231] = + [235] = {field_digit, 0, .inherited = true}, {field_digit, 1, .inherited = true}, - [233] = + [237] = {field_file_path, 2}, - [234] = + [238] = {field_start, 0}, {field_step, 2}, - [236] = + [240] = {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, {field_value, 4}, - [239] = + [243] = {field_body, 4}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [243] = + [247] = {field_body, 4}, {field_quoted_name, 2, .inherited = true}, {field_signature, 3}, {field_unquoted_name, 2, .inherited = true}, - [247] = + [251] = {field_type, 2, .inherited = true}, - [248] = + [252] = {field_completion, 2}, {field_type, 1, .inherited = true}, - [250] = + [254] = {field_dollar_name, 0, .inherited = true}, {field_name, 0}, {field_type, 1}, {field_value, 3}, {field_var_name, 0, .inherited = true}, - [255] = + [259] = {field_body, 4}, {field_parameters, 2}, {field_quoted_name, 1, .inherited = true}, {field_return_type, 3}, {field_unquoted_name, 1, .inherited = true}, - [260] = + [264] = {field_body, 4}, {field_parameters, 3}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [264] = + [268] = {field_cmd, 1, .inherited = true}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [267] = + [271] = {field_cmd, 1}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [270] = + [274] = {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] = + [280] = {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] = + [286] = {field_body, 4}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 3}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [287] = + [291] = {field_condition, 1}, {field_else_branch, 4}, {field_then_branch, 2}, - [290] = + [294] = {field_condition, 1}, {field_else_block, 4}, {field_then_branch, 2}, - [293] = + [297] = {field_row, 1, .inherited = true}, {field_row, 2}, - [295] = + [299] = {field_condition, 2}, {field_then_branch, 3}, - [297] = + [301] = {field_condition, 1}, {field_then_branch, 3}, - [299] = + [303] = {field_lhs, 0}, {field_opr, 1}, {field_rhs, 3}, - [302] = + [306] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 3}, - [305] = + [309] = {field_name, 2}, - [306] = + [310] = {field_param_value, 1}, - [307] = + [311] = {field_key, 0}, {field_key, 1}, {field_value, 3}, - [310] = + [314] = {field_quoted_name, 3, .inherited = true}, {field_signature, 4}, {field_unquoted_name, 3, .inherited = true}, - [313] = + [317] = {field_end, 4}, {field_start, 0}, {field_step, 2}, - [316] = + [320] = {field_body, 5}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_return_type, 4}, {field_unquoted_name, 2, .inherited = true}, - [321] = + [325] = {field_body, 5}, {field_parameters, 4}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [325] = + [329] = {field_body, 5}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [329] = + [333] = {field_completion, 0, .inherited = true}, {field_key, 0, .inherited = true}, {field_type, 0, .inherited = true}, - [332] = + [336] = {field_key, 0}, - [333] = + [337] = {field_completion, 3}, {field_type, 2, .inherited = true}, - [335] = + [339] = {field_command, 1}, - [336] = + [340] = {field_constant, 1}, - [337] = + [341] = {field_type, 3, .inherited = true}, - [338] = + [342] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [340] = + [344] = {field_type, 0, .inherited = true}, {field_type, 2, .inherited = true}, - [342] = + [346] = {field_body, 5}, {field_parameters, 3}, {field_quoted_name, 1, .inherited = true}, {field_return_type, 4}, {field_unquoted_name, 1, .inherited = true}, - [347] = + [351] = {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] = + [357] = {field_rest, 1}, - [354] = + [358] = {field_entry, 1, .inherited = true}, - [355] = + [359] = {field_default_pattern, 0}, {field_expression, 2}, - [357] = + [361] = {field_expression, 2}, {field_pattern, 0}, - [359] = + [363] = {field_condition, 2}, {field_then_branch, 4}, - [361] = + [365] = {field_catch_branch, 4}, {field_try_branch, 2}, - [363] = + [367] = {field_catch_branch, 4}, {field_try_branch, 1}, - [365] = + [369] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4352,14 +4367,14 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [374] = + [378] = {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] = + [384] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4369,119 +4384,119 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [389] = + [393] = {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] = + [399] = {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] = + [405] = {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] = + [411] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 4}, - [410] = + [414] = {field_param_value, 2}, - [411] = + [415] = {field_body, 5}, {field_quoted_name, 3, .inherited = true}, {field_signature, 4}, {field_unquoted_name, 3, .inherited = true}, - [415] = + [419] = {field_body, 6}, {field_parameters, 4}, {field_quoted_name, 2, .inherited = true}, {field_return_type, 5}, {field_unquoted_name, 2, .inherited = true}, - [420] = + [424] = {field_body, 6}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_return_type, 5}, {field_unquoted_name, 3, .inherited = true}, - [425] = + [429] = {field_body, 6}, {field_parameters, 5}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [429] = + [433] = {field_completion, 2, .inherited = true}, {field_key, 2, .inherited = true}, {field_type, 2, .inherited = true}, - [432] = + [436] = {field_completion, 1, .inherited = true}, {field_key, 0}, {field_type, 1, .inherited = true}, - [435] = + [439] = {field_completion, 1, .inherited = true}, {field_key, 1, .inherited = true}, {field_type, 1, .inherited = true}, - [438] = + [442] = {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] = + [448] = {field_inner, 2}, {field_type, 2, .inherited = true}, - [446] = + [450] = {field_completion, 2}, - [447] = + [451] = {field_completion, 4}, {field_type, 3, .inherited = true}, - [449] = + [453] = {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [451] = + [455] = {field_entry, 1, .inherited = true}, {field_rest, 2}, - [453] = + [457] = {field_condition, 2}, {field_else_branch, 5}, {field_then_branch, 3}, - [456] = + [460] = {field_condition, 2}, {field_else_block, 5}, {field_then_branch, 3}, - [459] = + [463] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 3}, - [462] = + [466] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 3}, - [465] = + [469] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 2}, - [468] = + [472] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 2}, - [471] = + [475] = {field_catch_branch, 5}, {field_try_branch, 2}, - [473] = + [477] = {field_catch_branch, 5}, {field_try_branch, 1}, - [475] = + [479] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 4, .inherited = true}, @@ -4491,163 +4506,163 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [484] = + [488] = {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] = + [494] = {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] = + [500] = {field_param_value, 3}, - [497] = + [501] = {field_body, 6}, {field_parameters, 5}, {field_quoted_name, 4, .inherited = true}, {field_unquoted_name, 4, .inherited = true}, - [501] = + [505] = {field_body, 7}, {field_parameters, 5}, {field_quoted_name, 3, .inherited = true}, {field_return_type, 6}, {field_unquoted_name, 3, .inherited = true}, - [506] = + [510] = {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] = + [516] = {field_completion, 3}, {field_inner, 2}, {field_type, 2, .inherited = true}, - [515] = + [519] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 4}, - [518] = + [522] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 4}, - [521] = + [525] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 3}, - [524] = + [528] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 3}, - [527] = + [531] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 3}, - [530] = + [534] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 3}, - [533] = + [537] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 2}, - [536] = + [540] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 2}, - [539] = + [543] = {field_catch_branch, 6}, {field_try_branch, 2}, - [541] = + [545] = {field_catch_branch, 6}, {field_try_branch, 1}, - [543] = + [547] = {field_body, 7}, {field_parameters, 5}, {field_quoted_name, 4, .inherited = true}, {field_return_type, 6}, {field_unquoted_name, 4, .inherited = true}, - [548] = + [552] = {field_body, 7}, {field_parameters, 6}, {field_quoted_name, 4, .inherited = true}, {field_unquoted_name, 4, .inherited = true}, - [552] = + [556] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 4}, - [555] = + [559] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 4}, - [558] = + [562] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 3}, - [561] = + [565] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 3}, - [564] = + [568] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 3}, - [567] = + [571] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 3}, - [570] = + [574] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 2}, - [573] = + [577] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 2}, - [576] = + [580] = {field_catch_branch, 7}, {field_try_branch, 2}, - [578] = + [582] = {field_body, 8}, {field_parameters, 6}, {field_quoted_name, 4, .inherited = true}, {field_return_type, 7}, {field_unquoted_name, 4, .inherited = true}, - [583] = + [587] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 4}, - [586] = + [590] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 4}, - [589] = + [593] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 3}, - [592] = + [596] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 3}, - [595] = + [599] = {field_condition, 1}, {field_else_branch, 8}, {field_then_branch, 3}, - [598] = + [602] = {field_condition, 1}, {field_else_block, 8}, {field_then_branch, 3}, - [601] = + [605] = {field_condition, 2}, {field_else_branch, 9}, {field_then_branch, 4}, - [604] = + [608] = {field_condition, 2}, {field_else_block, 9}, {field_then_branch, 4}, @@ -4655,123 +4670,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] = { + [41] = { [1] = anon_alias_sym__unit, }, - [68] = { + [70] = { [0] = sym_val_string, }, - [69] = { + [71] = { [0] = sym_identifier, }, - [72] = { + [74] = { [2] = sym_val_string, }, - [74] = { + [76] = { [2] = sym_val_number, }, - [75] = { + [77] = { [0] = sym_val_number, }, - [76] = { + [78] = { [0] = sym_val_number, [2] = sym_val_number, }, - [87] = { + [89] = { [1] = sym_val_string, }, - [95] = { + [97] = { [0] = sym_val_string, }, - [96] = { + [98] = { [1] = sym_val_string, }, - [102] = { + [104] = { [0] = anon_alias_sym__head, }, - [105] = { + [107] = { [2] = sym_where_predicate, }, - [107] = { + [109] = { [0] = sym_identifier, }, - [114] = { + [116] = { [3] = sym_val_number, }, - [115] = { + [117] = { [1] = sym_val_number, }, - [116] = { + [118] = { [1] = sym_val_number, [3] = sym_val_number, }, - [125] = { + [127] = { [2] = sym_val_number, }, - [126] = { + [128] = { [0] = sym_val_number, }, - [127] = { + [129] = { [0] = sym_val_number, [2] = sym_val_number, }, - [147] = { + [149] = { [3] = sym_val_string, }, - [149] = { + [151] = { [3] = sym_val_string, }, - [152] = { + [154] = { [0] = sym_identifier, }, - [155] = { + [157] = { [4] = sym_val_number, }, - [156] = { + [158] = { [2] = sym_val_number, }, - [157] = { + [159] = { [2] = sym_val_number, [4] = sym_val_number, }, - [158] = { + [160] = { [0] = sym_val_number, }, - [159] = { + [161] = { [0] = sym_val_number, [4] = sym_val_number, }, - [160] = { + [162] = { [0] = sym_val_number, [2] = sym_val_number, }, - [161] = { + [163] = { [0] = sym_val_number, [2] = sym_val_number, [4] = sym_val_number, }, - [166] = { + [168] = { [0] = sym_identifier, }, - [189] = { + [191] = { [4] = sym_val_string, }, - [196] = { + [198] = { [0] = sym_identifier, }, }; @@ -4817,29 +4832,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, - [5] = 4, - [6] = 3, - [7] = 4, + [4] = 3, + [5] = 5, + [6] = 5, + [7] = 3, [8] = 3, - [9] = 4, - [10] = 4, - [11] = 4, - [12] = 4, - [13] = 4, - [14] = 4, - [15] = 4, + [9] = 5, + [10] = 3, + [11] = 3, + [12] = 3, + [13] = 3, + [14] = 3, + [15] = 3, [16] = 16, - [17] = 16, - [18] = 16, - [19] = 16, + [17] = 17, + [18] = 17, + [19] = 19, [20] = 16, - [21] = 21, - [22] = 22, + [21] = 19, + [22] = 16, [23] = 16, - [24] = 22, + [24] = 16, [25] = 16, - [26] = 21, + [26] = 16, [27] = 27, [28] = 27, [29] = 27, @@ -4851,163 +4866,163 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [35] = 35, [36] = 36, [37] = 37, - [38] = 38, + [38] = 37, [39] = 36, - [40] = 37, - [41] = 38, - [42] = 42, - [43] = 35, - [44] = 44, - [45] = 42, - [46] = 35, - [47] = 36, - [48] = 38, - [49] = 42, + [40] = 35, + [41] = 41, + [42] = 36, + [43] = 43, + [44] = 37, + [45] = 45, + [46] = 36, + [47] = 47, + [48] = 41, + [49] = 35, [50] = 35, - [51] = 36, + [51] = 37, [52] = 36, - [53] = 42, + [53] = 36, [54] = 35, - [55] = 44, - [56] = 36, - [57] = 42, - [58] = 35, - [59] = 44, - [60] = 36, - [61] = 42, + [55] = 41, + [56] = 35, + [57] = 43, + [58] = 36, + [59] = 35, + [60] = 41, + [61] = 41, [62] = 35, - [63] = 44, - [64] = 42, + [63] = 35, + [64] = 35, [65] = 35, - [66] = 44, - [67] = 35, - [68] = 35, - [69] = 44, - [70] = 35, - [71] = 71, - [72] = 36, - [73] = 44, + [66] = 41, + [67] = 41, + [68] = 45, + [69] = 37, + [70] = 37, + [71] = 45, + [72] = 37, + [73] = 37, [74] = 74, [75] = 75, - [76] = 74, - [77] = 77, - [78] = 75, - [79] = 74, - [80] = 80, - [81] = 80, + [76] = 76, + [77] = 76, + [78] = 78, + [79] = 76, + [80] = 74, + [81] = 75, [82] = 82, [83] = 83, [84] = 82, [85] = 85, - [86] = 85, - [87] = 82, + [86] = 86, + [87] = 87, [88] = 88, - [89] = 85, - [90] = 90, - [91] = 91, + [89] = 86, + [90] = 82, + [91] = 86, [92] = 92, [93] = 93, [94] = 92, [95] = 92, - [96] = 93, + [96] = 96, [97] = 93, - [98] = 98, - [99] = 99, + [98] = 93, + [99] = 93, [100] = 92, - [101] = 93, - [102] = 99, - [103] = 103, - [104] = 93, - [105] = 105, + [101] = 101, + [102] = 101, + [103] = 92, + [104] = 104, + [105] = 101, [106] = 106, - [107] = 98, + [107] = 96, [108] = 108, [109] = 109, - [110] = 92, - [111] = 99, - [112] = 98, - [113] = 99, - [114] = 98, - [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, - [142] = 108, - [143] = 106, + [110] = 110, + [111] = 96, + [112] = 101, + [113] = 113, + [114] = 93, + [115] = 96, + [116] = 104, + [117] = 109, + [118] = 113, + [119] = 119, + [120] = 113, + [121] = 106, + [122] = 110, + [123] = 106, + [124] = 93, + [125] = 104, + [126] = 92, + [127] = 109, + [128] = 109, + [129] = 113, + [130] = 96, + [131] = 106, + [132] = 104, + [133] = 101, + [134] = 101, + [135] = 104, + [136] = 106, + [137] = 96, + [138] = 109, + [139] = 113, + [140] = 113, + [141] = 106, + [142] = 104, + [143] = 109, [144] = 144, - [145] = 144, - [146] = 144, + [145] = 145, + [146] = 146, [147] = 147, - [148] = 144, - [149] = 147, - [150] = 147, - [151] = 147, + [148] = 148, + [149] = 149, + [150] = 148, + [151] = 144, [152] = 152, [153] = 153, - [154] = 153, - [155] = 155, - [156] = 152, - [157] = 157, + [154] = 152, + [155] = 153, + [156] = 147, + [157] = 144, [158] = 158, - [159] = 159, - [160] = 157, + [159] = 152, + [160] = 153, [161] = 161, [162] = 162, - [163] = 163, + [163] = 147, [164] = 164, - [165] = 158, - [166] = 153, - [167] = 155, - [168] = 152, - [169] = 157, - [170] = 158, + [165] = 147, + [166] = 144, + [167] = 158, + [168] = 161, + [169] = 158, + [170] = 162, [171] = 161, - [172] = 144, - [173] = 147, - [174] = 153, - [175] = 155, - [176] = 152, - [177] = 157, - [178] = 158, + [172] = 145, + [173] = 161, + [174] = 146, + [175] = 153, + [176] = 164, + [177] = 162, + [178] = 152, [179] = 162, - [180] = 159, - [181] = 163, - [182] = 164, - [183] = 155, - [184] = 184, - [185] = 184, - [186] = 186, + [180] = 149, + [181] = 158, + [182] = 182, + [183] = 183, + [184] = 183, + [185] = 183, + [186] = 147, [187] = 187, - [188] = 184, - [189] = 144, - [190] = 147, - [191] = 184, - [192] = 187, - [193] = 193, - [194] = 103, + [188] = 144, + [189] = 189, + [190] = 189, + [191] = 183, + [192] = 147, + [193] = 144, + [194] = 110, [195] = 195, [196] = 196, [197] = 197, @@ -5021,7 +5036,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [205] = 205, [206] = 206, [207] = 207, - [208] = 195, + [208] = 208, [209] = 209, [210] = 210, [211] = 211, @@ -5029,110 +5044,110 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [213] = 213, [214] = 214, [215] = 215, - [216] = 216, - [217] = 217, - [218] = 196, + [216] = 214, + [217] = 215, + [218] = 218, [219] = 219, - [220] = 197, - [221] = 205, - [222] = 222, + [220] = 220, + [221] = 196, + [222] = 197, [223] = 198, - [224] = 199, - [225] = 200, - [226] = 201, - [227] = 202, - [228] = 203, - [229] = 204, - [230] = 222, - [231] = 206, - [232] = 207, - [233] = 195, - [234] = 219, - [235] = 210, - [236] = 211, - [237] = 212, - [238] = 213, - [239] = 214, - [240] = 215, - [241] = 216, - [242] = 217, - [243] = 196, + [224] = 195, + [225] = 199, + [226] = 200, + [227] = 201, + [228] = 220, + [229] = 203, + [230] = 204, + [231] = 205, + [232] = 206, + [233] = 207, + [234] = 208, + [235] = 209, + [236] = 210, + [237] = 211, + [238] = 212, + [239] = 213, + [240] = 218, + [241] = 214, + [242] = 215, + [243] = 218, [244] = 219, - [245] = 197, - [246] = 205, - [247] = 222, + [245] = 220, + [246] = 196, + [247] = 197, [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, + [249] = 195, + [250] = 199, + [251] = 200, + [252] = 201, + [253] = 202, + [254] = 203, + [255] = 204, + [256] = 205, + [257] = 206, + [258] = 207, + [259] = 208, + [260] = 209, + [261] = 210, + [262] = 211, + [263] = 212, + [264] = 213, + [265] = 219, + [266] = 202, [267] = 92, [268] = 93, [269] = 92, [270] = 93, [271] = 93, [272] = 92, - [273] = 98, - [274] = 274, - [275] = 275, - [276] = 274, + [273] = 101, + [274] = 96, + [275] = 96, + [276] = 93, [277] = 92, - [278] = 93, - [279] = 99, + [278] = 278, + [279] = 279, [280] = 280, [281] = 280, - [282] = 99, - [283] = 275, - [284] = 98, - [285] = 274, - [286] = 99, - [287] = 280, - [288] = 274, - [289] = 275, + [282] = 279, + [283] = 96, + [284] = 280, + [285] = 278, + [286] = 101, + [287] = 278, + [288] = 279, + [289] = 101, [290] = 280, - [291] = 274, + [291] = 278, [292] = 280, - [293] = 98, - [294] = 115, - [295] = 99, - [296] = 93, - [297] = 108, - [298] = 105, - [299] = 108, - [300] = 106, + [293] = 278, + [294] = 104, + [295] = 96, + [296] = 109, + [297] = 109, + [298] = 113, + [299] = 106, + [300] = 113, [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, - [318] = 108, - [319] = 115, + [302] = 104, + [303] = 113, + [304] = 106, + [305] = 104, + [306] = 93, + [307] = 92, + [308] = 101, + [309] = 109, + [310] = 101, + [311] = 96, + [312] = 106, + [313] = 104, + [314] = 109, + [315] = 113, + [316] = 113, + [317] = 109, + [318] = 104, + [319] = 106, [320] = 320, [321] = 320, [322] = 320, @@ -5142,181 +5157,181 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [326] = 147, [327] = 147, [328] = 144, - [329] = 147, - [330] = 144, - [331] = 144, - [332] = 147, + [329] = 144, + [330] = 147, + [331] = 147, + [332] = 144, [333] = 333, [334] = 334, - [335] = 333, - [336] = 336, - [337] = 336, + [335] = 335, + [336] = 333, + [337] = 334, [338] = 338, [339] = 339, [340] = 340, [341] = 341, [342] = 342, [343] = 343, - [344] = 341, + [344] = 344, [345] = 345, - [346] = 342, - [347] = 345, - [348] = 345, + [346] = 346, + [347] = 338, + [348] = 339, [349] = 349, - [350] = 345, + [350] = 340, [351] = 351, - [352] = 349, - [353] = 353, - [354] = 345, - [355] = 340, - [356] = 345, - [357] = 357, - [358] = 345, - [359] = 345, - [360] = 360, - [361] = 360, - [362] = 345, + [352] = 352, + [353] = 338, + [354] = 338, + [355] = 341, + [356] = 344, + [357] = 345, + [358] = 346, + [359] = 338, + [360] = 338, + [361] = 338, + [362] = 338, [363] = 338, - [364] = 353, - [365] = 343, - [366] = 345, - [367] = 345, + [364] = 338, + [365] = 338, + [366] = 343, + [367] = 342, [368] = 368, - [369] = 369, - [370] = 333, - [371] = 371, - [372] = 334, - [373] = 369, - [374] = 336, - [375] = 342, - [376] = 376, - [377] = 377, + [369] = 368, + [370] = 370, + [371] = 333, + [372] = 335, + [373] = 373, + [374] = 334, + [375] = 346, + [376] = 339, + [377] = 343, [378] = 378, - [379] = 376, - [380] = 380, - [381] = 338, - [382] = 353, - [383] = 376, - [384] = 380, - [385] = 339, - [386] = 380, - [387] = 380, - [388] = 351, + [379] = 341, + [380] = 378, + [381] = 381, + [382] = 381, + [383] = 342, + [384] = 340, + [385] = 385, + [386] = 386, + [387] = 352, + [388] = 381, [389] = 389, - [390] = 357, - [391] = 343, - [392] = 360, - [393] = 340, - [394] = 341, - [395] = 349, - [396] = 380, + [390] = 351, + [391] = 381, + [392] = 345, + [393] = 344, + [394] = 378, + [395] = 381, + [396] = 349, [397] = 397, - [398] = 398, - [399] = 399, + [398] = 368, + [399] = 333, [400] = 400, - [401] = 389, - [402] = 334, - [403] = 403, - [404] = 369, - [405] = 368, - [406] = 336, + [401] = 386, + [402] = 402, + [403] = 335, + [404] = 404, + [405] = 405, + [406] = 406, [407] = 407, [408] = 408, [409] = 409, [410] = 410, - [411] = 411, + [411] = 373, [412] = 412, - [413] = 357, - [414] = 333, - [415] = 343, - [416] = 398, - [417] = 339, - [418] = 407, - [419] = 377, - [420] = 353, - [421] = 92, - [422] = 93, - [423] = 338, - [424] = 360, - [425] = 334, - [426] = 340, - [427] = 341, - [428] = 342, - [429] = 349, - [430] = 378, - [431] = 431, - [432] = 351, - [433] = 92, - [434] = 434, - [435] = 98, - [436] = 99, - [437] = 351, - [438] = 438, - [439] = 434, - [440] = 369, - [441] = 339, + [413] = 335, + [414] = 342, + [415] = 340, + [416] = 341, + [417] = 389, + [418] = 93, + [419] = 351, + [420] = 92, + [421] = 352, + [422] = 409, + [423] = 385, + [424] = 344, + [425] = 349, + [426] = 334, + [427] = 427, + [428] = 345, + [429] = 343, + [430] = 400, + [431] = 339, + [432] = 346, + [433] = 433, + [434] = 92, + [435] = 368, + [436] = 101, + [437] = 405, + [438] = 406, + [439] = 96, + [440] = 433, + [441] = 441, [442] = 442, - [443] = 400, + [443] = 373, [444] = 444, - [445] = 434, - [446] = 446, - [447] = 357, - [448] = 408, - [449] = 409, - [450] = 410, - [451] = 411, - [452] = 403, - [453] = 368, - [454] = 93, + [445] = 433, + [446] = 412, + [447] = 402, + [448] = 351, + [449] = 404, + [450] = 93, + [451] = 451, + [452] = 352, + [453] = 410, + [454] = 349, [455] = 455, [456] = 456, - [457] = 455, - [458] = 455, + [457] = 457, + [458] = 458, [459] = 459, - [460] = 460, - [461] = 460, - [462] = 106, - [463] = 446, - [464] = 464, - [465] = 465, - [466] = 466, - [467] = 105, - [468] = 460, - [469] = 99, + [460] = 113, + [461] = 456, + [462] = 462, + [463] = 458, + [464] = 451, + [465] = 96, + [466] = 106, + [467] = 104, + [468] = 101, + [469] = 458, [470] = 470, - [471] = 438, - [472] = 98, - [473] = 108, - [474] = 434, - [475] = 460, - [476] = 105, - [477] = 442, - [478] = 399, - [479] = 340, - [480] = 343, - [481] = 444, - [482] = 342, - [483] = 349, + [471] = 441, + [472] = 458, + [473] = 456, + [474] = 433, + [475] = 475, + [476] = 476, + [477] = 407, + [478] = 373, + [479] = 479, + [480] = 480, + [481] = 333, + [482] = 345, + [483] = 106, [484] = 484, - [485] = 485, + [485] = 344, [486] = 486, - [487] = 360, - [488] = 341, + [487] = 487, + [488] = 444, [489] = 489, [490] = 490, [491] = 491, - [492] = 368, - [493] = 493, - [494] = 412, - [495] = 108, - [496] = 333, + [492] = 492, + [493] = 104, + [494] = 334, + [495] = 495, + [496] = 442, [497] = 497, - [498] = 498, - [499] = 106, - [500] = 500, - [501] = 501, - [502] = 336, - [503] = 503, + [498] = 408, + [499] = 346, + [500] = 340, + [501] = 339, + [502] = 341, + [503] = 113, [504] = 504, [505] = 505, [506] = 506, @@ -5330,59 +5345,59 @@ 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, [528] = 528, [529] = 529, - [530] = 530, + [530] = 455, [531] = 531, - [532] = 532, - [533] = 533, - [534] = 534, - [535] = 535, - [536] = 536, - [537] = 537, - [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, + [532] = 343, + [533] = 342, + [534] = 517, + [535] = 518, + [536] = 519, + [537] = 520, + [538] = 521, + [539] = 522, + [540] = 523, + [541] = 524, + [542] = 525, + [543] = 526, + [544] = 527, + [545] = 528, + [546] = 531, + [547] = 547, + [548] = 548, + [549] = 549, + [550] = 550, + [551] = 551, + [552] = 552, [553] = 553, - [554] = 553, - [555] = 527, - [556] = 519, - [557] = 520, - [558] = 521, - [559] = 522, - [560] = 523, - [561] = 538, - [562] = 525, - [563] = 530, - [564] = 531, + [554] = 554, + [555] = 555, + [556] = 556, + [557] = 557, + [558] = 558, + [559] = 559, + [560] = 560, + [561] = 561, + [562] = 562, + [563] = 563, + [564] = 564, [565] = 565, [566] = 566, [567] = 567, [568] = 568, - [569] = 569, + [569] = 504, [570] = 570, [571] = 571, [572] = 572, @@ -5393,111 +5408,111 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [577] = 577, [578] = 578, [579] = 579, - [580] = 580, - [581] = 581, - [582] = 528, - [583] = 535, - [584] = 553, - [585] = 585, - [586] = 505, - [587] = 506, - [588] = 507, - [589] = 508, - [590] = 509, - [591] = 510, - [592] = 511, - [593] = 512, - [594] = 513, - [595] = 514, - [596] = 515, - [597] = 516, - [598] = 565, - [599] = 566, - [600] = 567, - [601] = 568, - [602] = 569, - [603] = 570, - [604] = 571, - [605] = 572, - [606] = 573, - [607] = 574, - [608] = 575, - [609] = 576, - [610] = 577, - [611] = 578, - [612] = 579, - [613] = 580, - [614] = 581, - [615] = 459, - [616] = 519, - [617] = 520, - [618] = 618, - [619] = 521, - [620] = 522, - [621] = 523, - [622] = 504, - [623] = 525, - [624] = 530, - [625] = 625, - [626] = 531, - [627] = 565, - [628] = 566, - [629] = 629, - [630] = 630, - [631] = 585, + [580] = 505, + [581] = 506, + [582] = 512, + [583] = 513, + [584] = 514, + [585] = 516, + [586] = 462, + [587] = 518, + [588] = 519, + [589] = 520, + [590] = 521, + [591] = 522, + [592] = 523, + [593] = 524, + [594] = 525, + [595] = 526, + [596] = 527, + [597] = 528, + [598] = 531, + [599] = 547, + [600] = 548, + [601] = 549, + [602] = 550, + [603] = 551, + [604] = 552, + [605] = 553, + [606] = 554, + [607] = 555, + [608] = 556, + [609] = 557, + [610] = 558, + [611] = 559, + [612] = 560, + [613] = 561, + [614] = 562, + [615] = 563, + [616] = 564, + [617] = 565, + [618] = 566, + [619] = 567, + [620] = 568, + [621] = 504, + [622] = 570, + [623] = 571, + [624] = 572, + [625] = 573, + [626] = 574, + [627] = 575, + [628] = 576, + [629] = 577, + [630] = 578, + [631] = 579, [632] = 505, [633] = 506, - [634] = 507, - [635] = 508, - [636] = 509, - [637] = 539, - [638] = 510, - [639] = 511, - [640] = 512, - [641] = 513, + [634] = 512, + [635] = 513, + [636] = 514, + [637] = 516, + [638] = 573, + [639] = 574, + [640] = 575, + [641] = 576, [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, + [643] = 547, + [644] = 548, + [645] = 549, + [646] = 550, + [647] = 577, + [648] = 551, + [649] = 552, + [650] = 553, + [651] = 554, + [652] = 555, + [653] = 556, + [654] = 557, + [655] = 558, + [656] = 559, + [657] = 560, + [658] = 561, + [659] = 562, + [660] = 563, + [661] = 564, + [662] = 565, + [663] = 566, + [664] = 567, + [665] = 568, + [666] = 578, + [667] = 570, + [668] = 571, + [669] = 572, + [670] = 579, + [671] = 517, + [672] = 672, + [673] = 510, [674] = 674, - [675] = 675, + [675] = 511, [676] = 676, [677] = 677, - [678] = 500, + [678] = 678, [679] = 679, - [680] = 503, - [681] = 681, + [680] = 680, + [681] = 444, [682] = 682, [683] = 683, - [684] = 490, + [684] = 684, [685] = 685, [686] = 686, [687] = 687, @@ -5505,21 +5520,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [689] = 689, [690] = 690, [691] = 691, - [692] = 692, - [693] = 642, + [692] = 490, + [693] = 693, [694] = 694, [695] = 695, - [696] = 442, + [696] = 696, [697] = 697, [698] = 698, - [699] = 699, + [699] = 492, [700] = 700, - [701] = 369, + [701] = 497, [702] = 702, [703] = 703, - [704] = 704, - [705] = 705, - [706] = 334, + [704] = 368, + [705] = 335, + [706] = 442, [707] = 707, [708] = 708, [709] = 709, @@ -5528,13 +5543,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [712] = 712, [713] = 713, [714] = 714, - [715] = 713, - [716] = 716, + [715] = 462, + [716] = 442, [717] = 717, [718] = 718, [719] = 719, [720] = 720, - [721] = 721, + [721] = 713, [722] = 722, [723] = 723, [724] = 724, @@ -5542,7 +5557,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, @@ -5552,36 +5567,36 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [736] = 736, [737] = 737, [738] = 738, - [739] = 739, - [740] = 740, + [739] = 727, + [740] = 734, [741] = 741, [742] = 742, [743] = 743, - [744] = 744, - [745] = 714, - [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, + [744] = 714, + [745] = 719, + [746] = 720, + [747] = 713, + [748] = 735, + [749] = 736, + [750] = 737, + [751] = 738, + [752] = 727, + [753] = 734, + [754] = 741, + [755] = 742, + [756] = 743, + [757] = 714, + [758] = 719, + [759] = 720, + [760] = 741, + [761] = 742, + [762] = 762, [763] = 763, [764] = 764, - [765] = 717, + [765] = 765, [766] = 766, [767] = 767, - [768] = 718, + [768] = 768, [769] = 769, [770] = 770, [771] = 771, @@ -5591,149 +5606,149 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [775] = 775, [776] = 776, [777] = 777, - [778] = 778, - [779] = 444, + [778] = 743, + [779] = 779, [780] = 780, - [781] = 781, - [782] = 782, - [783] = 339, - [784] = 351, - [785] = 485, - [786] = 442, - [787] = 486, + [781] = 737, + [782] = 738, + [783] = 783, + [784] = 784, + [785] = 785, + [786] = 786, + [787] = 787, [788] = 788, [789] = 789, - [790] = 484, - [791] = 444, - [792] = 792, + [790] = 790, + [791] = 349, + [792] = 352, [793] = 793, - [794] = 794, - [795] = 470, - [796] = 734, + [794] = 735, + [795] = 484, + [796] = 796, [797] = 797, - [798] = 798, + [798] = 736, [799] = 799, - [800] = 800, - [801] = 801, - [802] = 802, - [803] = 803, - [804] = 804, - [805] = 805, - [806] = 806, - [807] = 807, - [808] = 808, - [809] = 809, - [810] = 810, - [811] = 748, - [812] = 749, - [813] = 750, - [814] = 725, - [815] = 731, - [816] = 732, - [817] = 733, - [818] = 734, - [819] = 714, - [820] = 713, - [821] = 716, - [822] = 717, - [823] = 718, + [800] = 489, + [801] = 735, + [802] = 736, + [803] = 737, + [804] = 738, + [805] = 727, + [806] = 734, + [807] = 741, + [808] = 742, + [809] = 743, + [810] = 714, + [811] = 811, + [812] = 812, + [813] = 813, + [814] = 814, + [815] = 815, + [816] = 816, + [817] = 719, + [818] = 818, + [819] = 819, + [820] = 820, + [821] = 821, + [822] = 822, + [823] = 823, [824] = 824, - [825] = 825, + [825] = 720, [826] = 826, - [827] = 827, + [827] = 713, [828] = 828, [829] = 829, - [830] = 497, - [831] = 831, + [830] = 830, + [831] = 487, [832] = 832, - [833] = 833, + [833] = 714, [834] = 834, - [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, + [835] = 735, + [836] = 735, + [837] = 736, + [838] = 737, + [839] = 738, + [840] = 727, + [841] = 734, + [842] = 741, + [843] = 742, + [844] = 743, + [845] = 714, + [846] = 719, + [847] = 720, + [848] = 713, + [849] = 736, + [850] = 850, [851] = 851, [852] = 852, [853] = 853, [854] = 854, [855] = 855, [856] = 856, - [857] = 857, + [857] = 719, [858] = 858, - [859] = 859, + [859] = 737, [860] = 860, [861] = 861, [862] = 862, - [863] = 863, - [864] = 489, - [865] = 748, - [866] = 749, - [867] = 750, - [868] = 725, - [869] = 731, - [870] = 732, - [871] = 733, - [872] = 734, - [873] = 714, - [874] = 713, - [875] = 716, - [876] = 717, - [877] = 718, - [878] = 878, - [879] = 879, - [880] = 733, - [881] = 881, - [882] = 748, - [883] = 749, - [884] = 750, - [885] = 885, + [863] = 720, + [864] = 480, + [865] = 713, + [866] = 866, + [867] = 479, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 871, + [872] = 872, + [873] = 444, + [874] = 874, + [875] = 875, + [876] = 876, + [877] = 738, + [878] = 495, + [879] = 444, + [880] = 727, + [881] = 734, + [882] = 741, + [883] = 883, + [884] = 884, + [885] = 742, [886] = 886, - [887] = 887, + [887] = 743, [888] = 888, - [889] = 748, - [890] = 749, - [891] = 750, - [892] = 725, - [893] = 731, - [894] = 732, - [895] = 459, - [896] = 896, + [889] = 889, + [890] = 890, + [891] = 455, + [892] = 892, + [893] = 893, + [894] = 351, + [895] = 895, + [896] = 686, [897] = 897, [898] = 898, [899] = 899, [900] = 900, [901] = 901, - [902] = 902, + [902] = 490, [903] = 903, [904] = 904, - [905] = 500, + [905] = 905, [906] = 906, - [907] = 503, - [908] = 490, - [909] = 909, - [910] = 910, + [907] = 907, + [908] = 908, + [909] = 462, + [910] = 373, [911] = 911, [912] = 912, - [913] = 913, + [913] = 507, [914] = 914, [915] = 915, - [916] = 916, + [916] = 470, [917] = 917, - [918] = 692, + [918] = 918, [919] = 919, - [920] = 675, + [920] = 920, [921] = 921, [922] = 922, [923] = 923, @@ -5741,73 +5756,73 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [925] = 925, [926] = 926, [927] = 927, - [928] = 697, - [929] = 698, + [928] = 928, + [929] = 929, [930] = 930, - [931] = 931, - [932] = 465, - [933] = 368, - [934] = 705, - [935] = 466, + [931] = 702, + [932] = 932, + [933] = 933, + [934] = 934, + [935] = 935, [936] = 936, [937] = 937, - [938] = 491, - [939] = 700, - [940] = 470, - [941] = 941, - [942] = 498, - [943] = 943, - [944] = 944, - [945] = 945, + [938] = 938, + [939] = 939, + [940] = 940, + [941] = 455, + [942] = 942, + [943] = 698, + [944] = 492, + [945] = 703, [946] = 946, - [947] = 947, + [947] = 707, [948] = 948, - [949] = 949, - [950] = 704, - [951] = 951, - [952] = 712, + [949] = 688, + [950] = 950, + [951] = 950, + [952] = 486, [953] = 953, [954] = 954, - [955] = 955, - [956] = 709, - [957] = 459, - [958] = 958, - [959] = 959, - [960] = 960, + [955] = 689, + [956] = 956, + [957] = 475, + [958] = 690, + [959] = 672, + [960] = 497, [961] = 961, - [962] = 921, - [963] = 921, - [964] = 540, - [965] = 965, - [966] = 691, + [962] = 962, + [963] = 950, + [964] = 476, + [965] = 708, + [966] = 966, [967] = 967, - [968] = 710, - [969] = 674, - [970] = 500, + [968] = 968, + [969] = 969, + [970] = 970, [971] = 971, - [972] = 679, - [973] = 503, - [974] = 686, - [975] = 490, + [972] = 890, + [973] = 898, + [974] = 935, + [975] = 975, [976] = 976, [977] = 977, [978] = 978, - [979] = 979, + [979] = 948, [980] = 980, - [981] = 681, - [982] = 982, - [983] = 983, + [981] = 981, + [982] = 918, + [983] = 922, [984] = 984, [985] = 985, [986] = 986, - [987] = 987, + [987] = 923, [988] = 988, - [989] = 989, + [989] = 961, [990] = 990, [991] = 991, [992] = 992, - [993] = 993, - [994] = 994, + [993] = 919, + [994] = 925, [995] = 995, [996] = 996, [997] = 997, @@ -5818,35 +5833,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1002] = 1002, [1003] = 1003, [1004] = 1004, - [1005] = 978, + [1005] = 1005, [1006] = 1006, [1007] = 1007, [1008] = 1008, [1009] = 1009, - [1010] = 1010, + [1010] = 696, [1011] = 1011, - [1012] = 682, + [1012] = 1012, [1013] = 1013, - [1014] = 1014, + [1014] = 710, [1015] = 1015, - [1016] = 687, + [1016] = 1016, [1017] = 1017, - [1018] = 1018, + [1018] = 711, [1019] = 1019, [1020] = 1020, - [1021] = 971, - [1022] = 1022, + [1021] = 691, + [1022] = 490, [1023] = 1023, - [1024] = 1024, - [1025] = 886, - [1026] = 960, - [1027] = 1027, - [1028] = 937, - [1029] = 1029, - [1030] = 1030, - [1031] = 1031, - [1032] = 1032, - [1033] = 688, + [1024] = 492, + [1025] = 674, + [1026] = 1026, + [1027] = 497, + [1028] = 1028, + [1029] = 676, + [1030] = 677, + [1031] = 678, + [1032] = 682, + [1033] = 1033, [1034] = 1034, [1035] = 1035, [1036] = 1036, @@ -5860,33 +5875,33 @@ 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, - [1051] = 1051, + [1049] = 1049, + [1050] = 1050, + [1051] = 683, [1052] = 1052, [1053] = 1053, [1054] = 1054, [1055] = 1055, [1056] = 1056, [1057] = 1057, - [1058] = 1058, + [1058] = 684, [1059] = 1059, [1060] = 1060, [1061] = 1061, [1062] = 1062, - [1063] = 948, + [1063] = 1063, [1064] = 1064, - [1065] = 1065, + [1065] = 685, [1066] = 1066, [1067] = 1067, - [1068] = 954, + [1068] = 1068, [1069] = 1069, [1070] = 1070, - [1071] = 683, + [1071] = 1071, [1072] = 1072, - [1073] = 1073, + [1073] = 687, [1074] = 1074, [1075] = 1075, [1076] = 1076, @@ -5896,14 +5911,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1080] = 1080, [1081] = 1081, [1082] = 1082, - [1083] = 958, + [1083] = 1083, [1084] = 1084, [1085] = 1085, - [1086] = 689, + [1086] = 1086, [1087] = 1087, [1088] = 1088, [1089] = 1089, - [1090] = 959, + [1090] = 1090, [1091] = 1091, [1092] = 1092, [1093] = 1093, @@ -5911,9 +5926,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1095] = 1095, [1096] = 1096, [1097] = 1097, - [1098] = 1098, - [1099] = 1099, - [1100] = 1100, + [1098] = 1097, + [1099] = 1078, + [1100] = 444, [1101] = 1101, [1102] = 1102, [1103] = 1103, @@ -5921,28 +5936,28 @@ 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, - [1113] = 1113, - [1114] = 1043, + [1108] = 1011, + [1109] = 1109, + [1110] = 1110, + [1111] = 1111, + [1112] = 970, + [1113] = 976, + [1114] = 980, [1115] = 1115, [1116] = 1116, [1117] = 1117, [1118] = 1118, - [1119] = 702, - [1120] = 1120, - [1121] = 707, - [1122] = 444, - [1123] = 708, - [1124] = 703, - [1125] = 971, - [1126] = 711, - [1127] = 677, - [1128] = 690, - [1129] = 978, + [1119] = 1119, + [1120] = 712, + [1121] = 693, + [1122] = 694, + [1123] = 709, + [1124] = 1124, + [1125] = 1125, + [1126] = 1078, + [1127] = 1127, + [1128] = 1128, + [1129] = 1011, [1130] = 1130, [1131] = 1131, [1132] = 1132, @@ -5950,14 +5965,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1134] = 1134, [1135] = 1135, [1136] = 1136, - [1137] = 1137, + [1137] = 695, [1138] = 1138, [1139] = 1139, [1140] = 1140, [1141] = 1141, [1142] = 1142, [1143] = 1143, - [1144] = 1144, + [1144] = 697, [1145] = 1145, [1146] = 1146, [1147] = 1147, @@ -5976,16 +5991,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, [1168] = 1168, - [1169] = 699, + [1169] = 1169, [1170] = 1170, [1171] = 1171, - [1172] = 1113, + [1172] = 1172, [1173] = 1173, [1174] = 1174, [1175] = 1175, @@ -6009,8 +6024,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1193] = 1193, [1194] = 1194, [1195] = 1195, - [1196] = 1196, - [1197] = 1197, + [1196] = 1095, + [1197] = 1096, [1198] = 1198, [1199] = 1199, [1200] = 1200, @@ -6018,12 +6033,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1202] = 1202, [1203] = 1203, [1204] = 1204, - [1205] = 967, + [1205] = 1205, [1206] = 1206, - [1207] = 1043, - [1208] = 1208, + [1207] = 1207, + [1208] = 1157, [1209] = 1209, - [1210] = 1210, + [1210] = 1158, [1211] = 1211, [1212] = 1212, [1213] = 1213, @@ -6033,10 +6048,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1217] = 1217, [1218] = 1218, [1219] = 1219, - [1220] = 685, + [1220] = 1220, [1221] = 1221, [1222] = 1222, - [1223] = 676, + [1223] = 1223, [1224] = 1224, [1225] = 1225, [1226] = 1226, @@ -6045,23 +6060,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1229] = 1229, [1230] = 1230, [1231] = 1231, - [1232] = 1232, + [1232] = 1132, [1233] = 1233, [1234] = 1234, [1235] = 1235, [1236] = 1236, - [1237] = 1151, - [1238] = 1238, - [1239] = 1112, - [1240] = 1230, + [1237] = 680, + [1238] = 1133, + [1239] = 1239, + [1240] = 1240, [1241] = 1241, - [1242] = 1113, + [1242] = 1242, [1243] = 1243, [1244] = 1244, - [1245] = 1245, - [1246] = 1246, - [1247] = 1247, - [1248] = 1248, + [1245] = 1095, + [1246] = 1015, + [1247] = 1096, + [1248] = 1097, [1249] = 1249, [1250] = 1250, [1251] = 1251, @@ -6069,1016 +6084,1016 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1253] = 1253, [1254] = 1254, [1255] = 1255, - [1256] = 1232, - [1257] = 1232, - [1258] = 1232, - [1259] = 1232, - [1260] = 1149, + [1256] = 1256, + [1257] = 1133, + [1258] = 1133, + [1259] = 1133, + [1260] = 1260, [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, + [1263] = 912, + [1264] = 766, + [1265] = 767, + [1266] = 888, + [1267] = 897, + [1268] = 1255, + [1269] = 956, + [1270] = 1173, + [1271] = 899, + [1272] = 928, + [1273] = 1203, + [1274] = 1192, + [1275] = 905, + [1276] = 946, + [1277] = 1214, + [1278] = 1146, + [1279] = 962, + [1280] = 1222, + [1281] = 908, + [1282] = 907, + [1283] = 1224, + [1284] = 1155, + [1285] = 915, + [1286] = 1227, [1287] = 1287, - [1288] = 1203, - [1289] = 695, - [1290] = 927, - [1291] = 1291, - [1292] = 923, - [1293] = 924, - [1294] = 945, - [1295] = 926, - [1296] = 914, - [1297] = 949, - [1298] = 726, - [1299] = 897, - [1300] = 727, - [1301] = 915, - [1302] = 909, - [1303] = 943, - [1304] = 694, - [1305] = 953, - [1306] = 728, - [1307] = 906, - [1308] = 1138, - [1309] = 746, - [1310] = 747, - [1311] = 723, - [1312] = 903, - [1313] = 904, - [1314] = 1147, - [1315] = 1144, - [1316] = 719, - [1317] = 902, - [1318] = 896, - [1319] = 763, - [1320] = 930, - [1321] = 910, - [1322] = 946, - [1323] = 1247, - [1324] = 720, - [1325] = 743, - [1326] = 744, - [1327] = 900, - [1328] = 1328, - [1329] = 1329, - [1330] = 1251, - [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, + [1288] = 775, + [1289] = 1289, + [1290] = 776, + [1291] = 777, + [1292] = 921, + [1293] = 1293, + [1294] = 780, + [1295] = 933, + [1296] = 717, + [1297] = 718, + [1298] = 722, + [1299] = 723, + [1300] = 724, + [1301] = 725, + [1302] = 726, + [1303] = 953, + [1304] = 920, + [1305] = 926, + [1306] = 930, + [1307] = 784, + [1308] = 1308, + [1309] = 1231, + [1310] = 924, + [1311] = 1241, + [1312] = 929, + [1313] = 927, + [1314] = 679, + [1315] = 914, + [1316] = 884, + [1317] = 932, + [1318] = 903, + [1319] = 732, + [1320] = 733, + [1321] = 904, + [1322] = 934, + [1323] = 1323, + [1324] = 936, + [1325] = 937, + [1326] = 939, + [1327] = 940, + [1328] = 911, + [1329] = 895, + [1330] = 787, + [1331] = 789, + [1332] = 790, + [1333] = 954, + [1334] = 793, + [1335] = 901, + [1336] = 906, + [1337] = 942, + [1338] = 1338, + [1339] = 869, + [1340] = 700, + [1341] = 1308, + [1342] = 728, + [1343] = 729, + [1344] = 917, + [1345] = 938, [1346] = 1346, [1347] = 1347, [1348] = 1348, - [1349] = 1348, + [1349] = 1349, [1350] = 1350, [1351] = 1351, [1352] = 1352, [1353] = 1353, - [1354] = 1354, - [1355] = 540, + [1354] = 1348, + [1355] = 1355, [1356] = 1356, - [1357] = 1357, + [1357] = 507, [1358] = 1358, - [1359] = 691, + [1359] = 1359, [1360] = 1360, [1361] = 1361, - [1362] = 1362, + [1362] = 1358, [1363] = 1363, [1364] = 1364, - [1365] = 1362, - [1366] = 1366, - [1367] = 1354, - [1368] = 1356, + [1365] = 1349, + [1366] = 1350, + [1367] = 1352, + [1368] = 1355, [1369] = 1358, - [1370] = 1357, - [1371] = 1350, + [1370] = 1358, + [1371] = 1364, [1372] = 1372, - [1373] = 1362, - [1374] = 1362, - [1375] = 1362, + [1373] = 696, + [1374] = 1374, + [1375] = 1358, [1376] = 1376, - [1377] = 1377, + [1377] = 386, [1378] = 1378, - [1379] = 389, - [1380] = 1366, + [1379] = 1372, + [1380] = 1380, [1381] = 1381, [1382] = 1382, [1383] = 1383, [1384] = 1384, [1385] = 1385, - [1386] = 389, - [1387] = 407, - [1388] = 398, - [1389] = 1389, + [1386] = 386, + [1387] = 400, + [1388] = 1388, + [1389] = 409, [1390] = 1390, [1391] = 1391, [1392] = 1392, [1393] = 1393, - [1394] = 1394, - [1395] = 1395, - [1396] = 398, - [1397] = 407, + [1394] = 92, + [1395] = 93, + [1396] = 1396, + [1397] = 1397, [1398] = 1398, - [1399] = 1399, - [1400] = 92, - [1401] = 93, - [1402] = 93, - [1403] = 98, - [1404] = 1404, - [1405] = 540, - [1406] = 446, - [1407] = 1407, + [1399] = 400, + [1400] = 1400, + [1401] = 409, + [1402] = 1402, + [1403] = 96, + [1404] = 101, + [1405] = 507, + [1406] = 93, + [1407] = 451, [1408] = 92, [1409] = 1409, - [1410] = 99, - [1411] = 1411, - [1412] = 1412, - [1413] = 98, - [1414] = 444, - [1415] = 446, - [1416] = 691, - [1417] = 1417, + [1410] = 1410, + [1411] = 444, + [1412] = 113, + [1413] = 451, + [1414] = 696, + [1415] = 1415, + [1416] = 106, + [1417] = 104, [1418] = 1418, - [1419] = 442, + [1419] = 1419, [1420] = 1420, - [1421] = 106, - [1422] = 99, - [1423] = 108, - [1424] = 1424, - [1425] = 105, + [1421] = 96, + [1422] = 1422, + [1423] = 1423, + [1424] = 101, + [1425] = 442, [1426] = 442, - [1427] = 444, - [1428] = 106, - [1429] = 470, - [1430] = 105, - [1431] = 459, - [1432] = 108, - [1433] = 500, - [1434] = 645, - [1435] = 503, - [1436] = 642, - [1437] = 490, - [1438] = 470, - [1439] = 459, - [1440] = 444, - [1441] = 642, - [1442] = 442, - [1443] = 645, - [1444] = 500, + [1427] = 462, + [1428] = 104, + [1429] = 113, + [1430] = 106, + [1431] = 444, + [1432] = 455, + [1433] = 510, + [1434] = 497, + [1435] = 455, + [1436] = 492, + [1437] = 462, + [1438] = 511, + [1439] = 490, + [1440] = 510, + [1441] = 1441, + [1442] = 444, + [1443] = 1443, + [1444] = 442, [1445] = 1445, - [1446] = 1446, - [1447] = 1447, - [1448] = 503, - [1449] = 490, - [1450] = 1446, - [1451] = 459, - [1452] = 470, - [1453] = 1453, + [1446] = 490, + [1447] = 497, + [1448] = 511, + [1449] = 492, + [1450] = 1445, + [1451] = 1451, + [1452] = 1443, + [1453] = 455, [1454] = 1454, - [1455] = 1445, - [1456] = 442, - [1457] = 1454, - [1458] = 1447, - [1459] = 444, - [1460] = 937, - [1461] = 500, - [1462] = 961, - [1463] = 503, - [1464] = 1464, - [1465] = 931, + [1455] = 444, + [1456] = 1441, + [1457] = 442, + [1458] = 462, + [1459] = 1454, + [1460] = 1460, + [1461] = 1461, + [1462] = 1462, + [1463] = 890, + [1464] = 961, + [1465] = 1465, [1466] = 1466, [1467] = 1467, [1468] = 1468, [1469] = 1469, - [1470] = 941, - [1471] = 959, - [1472] = 886, + [1470] = 490, + [1471] = 918, + [1472] = 922, [1473] = 1473, [1474] = 1474, - [1475] = 1475, - [1476] = 470, - [1477] = 490, - [1478] = 1478, - [1479] = 948, - [1480] = 1480, - [1481] = 459, - [1482] = 960, - [1483] = 1483, - [1484] = 1484, + [1475] = 925, + [1476] = 919, + [1477] = 923, + [1478] = 948, + [1479] = 492, + [1480] = 497, + [1481] = 898, + [1482] = 462, + [1483] = 455, + [1484] = 935, [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, + [1486] = 1486, + [1487] = 1487, + [1488] = 898, + [1489] = 925, + [1490] = 918, + [1491] = 1095, + [1492] = 922, + [1493] = 1493, + [1494] = 1494, + [1495] = 1495, + [1496] = 935, + [1497] = 1015, + [1498] = 1096, + [1499] = 890, [1500] = 490, - [1501] = 937, - [1502] = 958, - [1503] = 967, - [1504] = 959, - [1505] = 954, - [1506] = 948, - [1507] = 500, - [1508] = 1113, + [1501] = 492, + [1502] = 497, + [1503] = 1097, + [1504] = 1504, + [1505] = 948, + [1506] = 923, + [1507] = 961, + [1508] = 919, [1509] = 1509, - [1510] = 1510, - [1511] = 1112, - [1512] = 1113, - [1513] = 1513, - [1514] = 1514, - [1515] = 1515, - [1516] = 1516, - [1517] = 1517, - [1518] = 1043, - [1519] = 389, - [1520] = 967, - [1521] = 1521, - [1522] = 1522, + [1510] = 1015, + [1511] = 1207, + [1512] = 1512, + [1513] = 1211, + [1514] = 1213, + [1515] = 1215, + [1516] = 1218, + [1517] = 1221, + [1518] = 1225, + [1519] = 1230, + [1520] = 1233, + [1521] = 1512, + [1522] = 1235, [1523] = 1523, [1524] = 1524, [1525] = 1525, - [1526] = 1526, - [1527] = 1527, - [1528] = 1528, - [1529] = 1529, - [1530] = 1530, - [1531] = 1531, - [1532] = 1532, - [1533] = 1533, - [1534] = 1534, - [1535] = 1535, - [1536] = 1536, - [1537] = 1537, - [1538] = 1538, - [1539] = 1539, - [1540] = 1509, - [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, - [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, + [1526] = 1249, + [1527] = 1251, + [1528] = 1254, + [1529] = 1256, + [1530] = 1261, + [1531] = 1161, + [1532] = 1165, + [1533] = 1181, + [1534] = 1195, + [1535] = 1236, + [1536] = 1250, + [1537] = 1140, + [1538] = 1150, + [1539] = 1187, + [1540] = 1193, + [1541] = 1204, + [1542] = 1253, + [1543] = 1139, + [1544] = 1142, + [1545] = 1148, + [1546] = 1154, + [1547] = 1159, + [1548] = 1163, + [1549] = 1169, + [1550] = 1177, + [1551] = 1183, + [1552] = 1191, + [1553] = 1200, + [1554] = 1209, + [1555] = 1219, + [1556] = 1228, + [1557] = 1243, + [1558] = 1135, + [1559] = 1141, + [1560] = 1143, + [1561] = 1561, + [1562] = 1152, + [1563] = 1563, + [1564] = 1564, + [1565] = 1565, + [1566] = 1164, + [1567] = 1167, + [1568] = 1171, + [1569] = 1175, + [1570] = 1179, + [1571] = 1182, + [1572] = 1185, + [1573] = 1189, + [1574] = 1194, + [1575] = 1198, + [1576] = 1201, + [1577] = 1206, + [1578] = 1212, + [1579] = 1216, + [1580] = 1220, + [1581] = 1223, + [1582] = 1226, + [1583] = 1229, + [1584] = 1234, + [1585] = 1239, + [1586] = 1242, + [1587] = 1244, + [1588] = 1252, + [1589] = 1260, + [1590] = 1202, + [1591] = 1134, + [1592] = 1136, + [1593] = 1138, + [1594] = 1145, + [1595] = 1147, + [1596] = 1149, + [1597] = 1151, + [1598] = 1153, + [1599] = 1156, + [1600] = 1160, + [1601] = 1162, + [1602] = 1602, + [1603] = 1603, + [1604] = 1604, + [1605] = 1524, + [1606] = 1166, + [1607] = 1168, + [1608] = 1170, + [1609] = 1172, + [1610] = 1174, + [1611] = 1176, + [1612] = 1178, + [1613] = 1180, + [1614] = 1184, + [1615] = 1186, + [1616] = 1188, + [1617] = 1190, + [1618] = 1618, + [1619] = 1619, + [1620] = 1620, + [1621] = 1621, + [1622] = 1097, + [1623] = 1623, + [1624] = 1624, + [1625] = 1625, + [1626] = 1626, + [1627] = 1627, + [1628] = 1628, + [1629] = 1629, + [1630] = 1523, + [1631] = 1525, + [1632] = 1564, + [1633] = 1621, + [1634] = 1561, + [1635] = 1565, + [1636] = 1173, + [1637] = 1192, + [1638] = 1214, + [1639] = 1222, + [1640] = 1224, + [1641] = 1227, + [1642] = 1231, + [1643] = 1241, + [1644] = 1255, + [1645] = 1203, + [1646] = 1146, + [1647] = 1155, + [1648] = 1602, + [1649] = 1603, + [1650] = 1604, + [1651] = 1524, + [1652] = 1563, + [1653] = 1625, + [1654] = 1524, + [1655] = 1655, + [1656] = 1626, + [1657] = 1618, + [1658] = 1619, + [1659] = 1623, + [1660] = 1660, + [1661] = 1624, + [1662] = 1095, + [1663] = 1096, + [1664] = 1664, + [1665] = 1665, + [1666] = 1666, + [1667] = 1620, + [1668] = 386, + [1669] = 1627, + [1670] = 1628, + [1671] = 1262, + [1672] = 1629, + [1673] = 1664, + [1674] = 1205, + [1675] = 1665, + [1676] = 1676, + [1677] = 1666, + [1678] = 1655, + [1679] = 1227, + [1680] = 400, + [1681] = 1173, + [1682] = 1660, + [1683] = 1683, + [1684] = 1222, + [1685] = 1192, + [1686] = 1214, + [1687] = 1687, + [1688] = 1224, + [1689] = 1683, + [1690] = 1231, + [1691] = 1241, + [1692] = 1255, + [1693] = 1203, + [1694] = 1146, + [1695] = 1155, + [1696] = 409, + [1697] = 386, [1698] = 1698, - [1699] = 1699, + [1699] = 93, [1700] = 1700, - [1701] = 1699, + [1701] = 92, [1702] = 1702, - [1703] = 1703, - [1704] = 92, - [1705] = 378, - [1706] = 93, - [1707] = 407, - [1708] = 398, - [1709] = 1698, - [1710] = 1710, - [1711] = 377, - [1712] = 1700, - [1713] = 1710, - [1714] = 1702, - [1715] = 400, - [1716] = 1716, - [1717] = 403, - [1718] = 446, - [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, + [1703] = 409, + [1704] = 389, + [1705] = 1705, + [1706] = 1706, + [1707] = 385, + [1708] = 1708, + [1709] = 1705, + [1710] = 1706, + [1711] = 1698, + [1712] = 1708, + [1713] = 1700, + [1714] = 400, + [1715] = 1715, + [1716] = 405, + [1717] = 1717, + [1718] = 1718, + [1719] = 92, + [1720] = 101, + [1721] = 407, + [1722] = 412, + [1723] = 96, + [1724] = 333, + [1725] = 1717, + [1726] = 451, + [1727] = 334, + [1728] = 1728, + [1729] = 1717, + [1730] = 1730, + [1731] = 410, + [1732] = 404, + [1733] = 406, + [1734] = 408, + [1735] = 402, + [1736] = 93, [1737] = 1737, - [1738] = 412, - [1739] = 446, - [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, - [1753] = 1753, - [1754] = 349, - [1755] = 1755, - [1756] = 1753, - [1757] = 108, - [1758] = 1737, - [1759] = 105, - [1760] = 106, - [1761] = 99, - [1762] = 98, + [1738] = 343, + [1739] = 451, + [1740] = 342, + [1741] = 346, + [1742] = 106, + [1743] = 93, + [1744] = 334, + [1745] = 1745, + [1746] = 444, + [1747] = 442, + [1748] = 1748, + [1749] = 408, + [1750] = 92, + [1751] = 1751, + [1752] = 1752, + [1753] = 104, + [1754] = 1745, + [1755] = 1745, + [1756] = 1756, + [1757] = 101, + [1758] = 1758, + [1759] = 1759, + [1760] = 1751, + [1761] = 339, + [1762] = 1752, [1763] = 1763, [1764] = 1764, - [1765] = 442, - [1766] = 1755, - [1767] = 1767, - [1768] = 1740, - [1769] = 1769, - [1770] = 1770, - [1771] = 1767, - [1772] = 336, - [1773] = 1755, - [1774] = 333, - [1775] = 1755, - [1776] = 342, - [1777] = 108, + [1765] = 344, + [1766] = 340, + [1767] = 341, + [1768] = 113, + [1769] = 345, + [1770] = 407, + [1771] = 1751, + [1772] = 96, + [1773] = 1737, + [1774] = 1751, + [1775] = 333, + [1776] = 1764, + [1777] = 1777, [1778] = 1778, [1779] = 1779, - [1780] = 343, - [1781] = 1781, - [1782] = 1782, - [1783] = 1783, - [1784] = 1784, + [1780] = 462, + [1781] = 368, + [1782] = 96, + [1783] = 442, + [1784] = 345, [1785] = 1785, - [1786] = 360, - [1787] = 340, - [1788] = 1788, + [1786] = 1778, + [1787] = 1779, + [1788] = 342, [1789] = 1789, [1790] = 1790, - [1791] = 1791, - [1792] = 1792, + [1791] = 346, + [1792] = 335, [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, + [1794] = 444, + [1795] = 1793, + [1796] = 1796, + [1797] = 344, + [1798] = 1798, + [1799] = 1799, + [1800] = 343, + [1801] = 1801, + [1802] = 113, + [1803] = 101, + [1804] = 1804, + [1805] = 1805, + [1806] = 1806, + [1807] = 339, + [1808] = 340, + [1809] = 341, [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, + [1811] = 1785, + [1812] = 1798, + [1813] = 1813, + [1814] = 1801, + [1815] = 106, + [1816] = 455, + [1817] = 1785, + [1818] = 104, + [1819] = 1810, + [1820] = 1785, + [1821] = 1813, + [1822] = 1822, + [1823] = 1804, + [1824] = 1824, + [1825] = 490, + [1826] = 492, + [1827] = 497, + [1828] = 455, + [1829] = 351, [1830] = 1830, - [1831] = 1831, - [1832] = 334, - [1833] = 351, - [1834] = 503, - [1835] = 490, - [1836] = 470, - [1837] = 369, - [1838] = 1838, - [1839] = 459, - [1840] = 108, - [1841] = 1841, - [1842] = 105, - [1843] = 106, - [1844] = 357, - [1845] = 342, - [1846] = 1846, - [1847] = 500, - [1848] = 503, - [1849] = 490, - [1850] = 642, - [1851] = 1851, - [1852] = 685, - [1853] = 1853, - [1854] = 743, - [1855] = 645, - [1856] = 744, - [1857] = 339, - [1858] = 368, - [1859] = 93, - [1860] = 746, - [1861] = 747, - [1862] = 465, - [1863] = 1851, - [1864] = 442, - [1865] = 764, - [1866] = 466, - [1867] = 351, - [1868] = 357, - [1869] = 343, - [1870] = 360, - [1871] = 340, - [1872] = 676, - [1873] = 341, - [1874] = 349, - [1875] = 1830, - [1876] = 1473, - [1877] = 1846, - [1878] = 92, - [1879] = 444, - [1880] = 763, - [1881] = 744, - [1882] = 336, - [1883] = 497, - [1884] = 342, - [1885] = 747, - [1886] = 343, - [1887] = 746, - [1888] = 486, - [1889] = 676, + [1831] = 106, + [1832] = 1832, + [1833] = 349, + [1834] = 368, + [1835] = 462, + [1836] = 104, + [1837] = 1837, + [1838] = 511, + [1839] = 1839, + [1840] = 510, + [1841] = 352, + [1842] = 113, + [1843] = 1843, + [1844] = 335, + [1845] = 733, + [1846] = 442, + [1847] = 695, + [1848] = 490, + [1849] = 767, + [1850] = 345, + [1851] = 492, + [1852] = 1852, + [1853] = 340, + [1854] = 341, + [1855] = 1855, + [1856] = 1856, + [1857] = 1832, + [1858] = 92, + [1859] = 729, + [1860] = 93, + [1861] = 470, + [1862] = 352, + [1863] = 497, + [1864] = 475, + [1865] = 349, + [1866] = 339, + [1867] = 444, + [1868] = 351, + [1869] = 346, + [1870] = 510, + [1871] = 344, + [1872] = 697, + [1873] = 1474, + [1874] = 728, + [1875] = 732, + [1876] = 1855, + [1877] = 373, + [1878] = 766, + [1879] = 511, + [1880] = 1856, + [1881] = 341, + [1882] = 339, + [1883] = 1883, + [1884] = 345, + [1885] = 373, + [1886] = 442, + [1887] = 479, + [1888] = 455, + [1889] = 487, [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, + [1891] = 766, + [1892] = 333, + [1893] = 1883, + [1894] = 93, + [1895] = 475, + [1896] = 346, + [1897] = 697, + [1898] = 462, + [1899] = 344, + [1900] = 1493, + [1901] = 470, + [1902] = 489, + [1903] = 728, + [1904] = 767, + [1905] = 92, + [1906] = 334, + [1907] = 732, + [1908] = 733, + [1909] = 695, + [1910] = 96, + [1911] = 444, + [1912] = 484, + [1913] = 495, + [1914] = 729, + [1915] = 480, + [1916] = 101, + [1917] = 698, + [1918] = 919, + [1919] = 925, + [1920] = 1920, + [1921] = 898, + [1922] = 935, [1923] = 1923, - [1924] = 958, - [1925] = 959, - [1926] = 1926, - [1927] = 960, - [1928] = 937, - [1929] = 470, + [1924] = 1924, + [1925] = 918, + [1926] = 922, + [1927] = 113, + [1928] = 106, + [1929] = 104, [1930] = 1930, [1931] = 1931, - [1932] = 961, - [1933] = 931, - [1934] = 1498, - [1935] = 1935, - [1936] = 1936, - [1937] = 1937, + [1932] = 490, + [1933] = 1933, + [1934] = 492, + [1935] = 497, + [1936] = 343, + [1937] = 342, [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, + [1939] = 344, + [1940] = 345, + [1941] = 961, + [1942] = 339, + [1943] = 340, + [1944] = 341, + [1945] = 101, + [1946] = 890, + [1947] = 1947, + [1948] = 1948, + [1949] = 455, + [1950] = 462, + [1951] = 96, + [1952] = 1948, + [1953] = 1953, + [1954] = 923, + [1955] = 707, + [1956] = 1494, + [1957] = 1957, + [1958] = 702, + [1959] = 948, + [1960] = 686, + [1961] = 703, + [1962] = 672, + [1963] = 688, + [1964] = 689, + [1965] = 690, + [1966] = 346, + [1967] = 1261, [1968] = 1968, - [1969] = 937, - [1970] = 540, - [1971] = 500, - [1972] = 503, - [1973] = 490, - [1974] = 941, - [1975] = 1975, - [1976] = 1976, - [1977] = 333, - [1978] = 954, - [1979] = 1979, - [1980] = 1980, - [1981] = 1981, - [1982] = 1176, - [1983] = 1262, - [1984] = 1250, - [1985] = 1255, - [1986] = 1135, - [1987] = 1158, - [1988] = 1182, - [1989] = 1221, + [1969] = 335, + [1970] = 1970, + [1971] = 368, + [1972] = 1972, + [1973] = 1474, + [1974] = 1974, + [1975] = 507, + [1976] = 935, + [1977] = 1977, + [1978] = 1978, + [1979] = 948, + [1980] = 923, + [1981] = 961, + [1982] = 919, + [1983] = 925, + [1984] = 890, + [1985] = 898, + [1986] = 918, + [1987] = 922, + [1988] = 1988, + [1989] = 113, [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, + [1991] = 490, + [1992] = 492, + [1993] = 497, + [1994] = 1994, + [1995] = 106, + [1996] = 1996, + [1997] = 1997, + [1998] = 1998, + [1999] = 334, + [2000] = 2000, + [2001] = 2001, + [2002] = 2002, + [2003] = 1262, + [2004] = 1205, + [2005] = 2005, + [2006] = 1207, + [2007] = 1676, + [2008] = 1211, + [2009] = 1213, + [2010] = 1215, + [2011] = 1218, + [2012] = 1221, + [2013] = 1225, + [2014] = 1230, + [2015] = 1233, + [2016] = 1235, + [2017] = 104, + [2018] = 1249, + [2019] = 1251, + [2020] = 1254, + [2021] = 1256, + [2022] = 1161, + [2023] = 1165, + [2024] = 1181, + [2025] = 1195, + [2026] = 1236, + [2027] = 1250, + [2028] = 1140, + [2029] = 1150, + [2030] = 1187, + [2031] = 1193, + [2032] = 1204, + [2033] = 1253, + [2034] = 1139, + [2035] = 1142, + [2036] = 1148, + [2037] = 1154, + [2038] = 1159, + [2039] = 1163, + [2040] = 1169, + [2041] = 1177, + [2042] = 1183, + [2043] = 1191, + [2044] = 1200, + [2045] = 1209, + [2046] = 1219, + [2047] = 1243, + [2048] = 1135, + [2049] = 1141, + [2050] = 1143, + [2051] = 1152, + [2052] = 1164, + [2053] = 1167, + [2054] = 1171, + [2055] = 1175, + [2056] = 1179, + [2057] = 1182, + [2058] = 1185, + [2059] = 1189, + [2060] = 1194, + [2061] = 1198, + [2062] = 1201, + [2063] = 1206, + [2064] = 1212, + [2065] = 1216, + [2066] = 1220, + [2067] = 1223, + [2068] = 1226, + [2069] = 1229, + [2070] = 1234, + [2071] = 1239, + [2072] = 1242, + [2073] = 1244, + [2074] = 1252, + [2075] = 1260, + [2076] = 1202, + [2077] = 1134, + [2078] = 1136, + [2079] = 1138, + [2080] = 1145, + [2081] = 1147, + [2082] = 1149, + [2083] = 1151, + [2084] = 1153, + [2085] = 1156, + [2086] = 1160, + [2087] = 1162, + [2088] = 1166, + [2089] = 1168, + [2090] = 1170, + [2091] = 1172, + [2092] = 1174, + [2093] = 1176, + [2094] = 1178, + [2095] = 1180, + [2096] = 1184, + [2097] = 1186, + [2098] = 1188, + [2099] = 1190, + [2100] = 1988, + [2101] = 1998, + [2102] = 1998, + [2103] = 2103, + [2104] = 1474, + [2105] = 1998, + [2106] = 1998, + [2107] = 1015, + [2108] = 1998, + [2109] = 2109, + [2110] = 1228, + [2111] = 890, + [2112] = 1015, + [2113] = 1015, + [2114] = 2114, + [2115] = 1493, + [2116] = 1494, + [2117] = 1493, [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, - [2157] = 2157, - [2158] = 498, - [2159] = 2157, - [2160] = 343, - [2161] = 2149, - [2162] = 360, - [2163] = 340, - [2164] = 695, - [2165] = 341, - [2166] = 342, - [2167] = 349, - [2168] = 743, - [2169] = 1247, - [2170] = 1251, - [2171] = 943, - [2172] = 1254, - [2173] = 2173, - [2174] = 2174, - [2175] = 1203, - [2176] = 2176, - [2177] = 1133, - [2178] = 694, - [2179] = 744, - [2180] = 491, - [2181] = 887, - [2182] = 368, - [2183] = 951, - [2184] = 1136, - [2185] = 1138, - [2186] = 1140, - [2187] = 1142, - [2188] = 1144, - [2189] = 1145, - [2190] = 1147, - [2191] = 2191, - [2192] = 2149, - [2193] = 924, - [2194] = 746, - [2195] = 2149, - [2196] = 730, - [2197] = 747, - [2198] = 949, - [2199] = 2149, - [2200] = 2149, - [2201] = 540, - [2202] = 2157, - [2203] = 735, - [2204] = 916, - [2205] = 724, - [2206] = 897, - [2207] = 936, - [2208] = 685, - [2209] = 923, - [2210] = 719, - [2211] = 898, - [2212] = 1247, + [2119] = 2119, + [2120] = 1494, + [2121] = 680, + [2122] = 351, + [2123] = 898, + [2124] = 352, + [2125] = 935, + [2126] = 349, + [2127] = 696, + [2128] = 2114, + [2129] = 2119, + [2130] = 2119, + [2131] = 918, + [2132] = 922, + [2133] = 2133, + [2134] = 2114, + [2135] = 679, + [2136] = 888, + [2137] = 936, + [2138] = 345, + [2139] = 2139, + [2140] = 2140, + [2141] = 1676, + [2142] = 695, + [2143] = 346, + [2144] = 937, + [2145] = 939, + [2146] = 1173, + [2147] = 1192, + [2148] = 1214, + [2149] = 1222, + [2150] = 1224, + [2151] = 1227, + [2152] = 1231, + [2153] = 940, + [2154] = 1241, + [2155] = 1255, + [2156] = 1203, + [2157] = 1146, + [2158] = 1155, + [2159] = 2139, + [2160] = 373, + [2161] = 486, + [2162] = 933, + [2163] = 339, + [2164] = 340, + [2165] = 1173, + [2166] = 1192, + [2167] = 1214, + [2168] = 1222, + [2169] = 1224, + [2170] = 1227, + [2171] = 1231, + [2172] = 1241, + [2173] = 1255, + [2174] = 1203, + [2175] = 1146, + [2176] = 1155, + [2177] = 341, + [2178] = 2139, + [2179] = 2179, + [2180] = 697, + [2181] = 793, + [2182] = 2179, + [2183] = 1676, + [2184] = 784, + [2185] = 2179, + [2186] = 2186, + [2187] = 2187, + [2188] = 2188, + [2189] = 2139, + [2190] = 767, + [2191] = 938, + [2192] = 903, + [2193] = 2193, + [2194] = 700, + [2195] = 2139, + [2196] = 930, + [2197] = 895, + [2198] = 917, + [2199] = 2139, + [2200] = 2139, + [2201] = 728, + [2202] = 729, + [2203] = 732, + [2204] = 869, + [2205] = 901, + [2206] = 906, + [2207] = 733, + [2208] = 507, + [2209] = 766, + [2210] = 942, + [2211] = 476, + [2212] = 344, [2213] = 2213, [2214] = 2213, [2215] = 2213, [2216] = 2213, - [2217] = 2217, - [2218] = 2213, - [2219] = 691, - [2220] = 2213, - [2221] = 2217, - [2222] = 1473, + [2217] = 2213, + [2218] = 696, + [2219] = 2213, + [2220] = 2220, + [2221] = 2221, + [2222] = 2222, [2223] = 2223, - [2224] = 2224, - [2225] = 2225, - [2226] = 540, + [2224] = 2220, + [2225] = 1474, + [2226] = 507, [2227] = 2227, - [2228] = 343, - [2229] = 341, - [2230] = 342, - [2231] = 2231, + [2228] = 2228, + [2229] = 2229, + [2230] = 2230, + [2231] = 345, [2232] = 2232, - [2233] = 349, + [2233] = 346, [2234] = 2234, - [2235] = 2235, + [2235] = 1988, [2236] = 2236, - [2237] = 1981, - [2238] = 2238, - [2239] = 1489, - [2240] = 2240, - [2241] = 1498, - [2242] = 360, - [2243] = 340, - [2244] = 691, - [2245] = 1473, + [2237] = 696, + [2238] = 344, + [2239] = 341, + [2240] = 1493, + [2241] = 2241, + [2242] = 1494, + [2243] = 1474, + [2244] = 339, + [2245] = 340, [2246] = 2246, - [2247] = 1498, - [2248] = 1489, - [2249] = 2249, + [2247] = 2247, + [2248] = 1493, + [2249] = 1676, [2250] = 2250, - [2251] = 1515, + [2251] = 1494, [2252] = 2252, - [2253] = 1515, - [2254] = 2254, + [2253] = 2253, + [2254] = 1676, [2255] = 2255, [2256] = 2256, - [2257] = 2257, - [2258] = 368, + [2257] = 373, + [2258] = 2258, [2259] = 2259, - [2260] = 2260, + [2260] = 2253, [2261] = 2255, - [2262] = 2254, - [2263] = 336, + [2262] = 2262, + [2263] = 333, [2264] = 2264, - [2265] = 2265, + [2265] = 386, [2266] = 2266, [2267] = 2267, [2268] = 2268, @@ -7086,392 +7101,392 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2270] = 2270, [2271] = 2271, [2272] = 2272, - [2273] = 333, + [2273] = 334, [2274] = 2274, [2275] = 2275, [2276] = 2276, - [2277] = 2277, - [2278] = 2278, + [2277] = 343, + [2278] = 342, [2279] = 2279, - [2280] = 2280, - [2281] = 2281, - [2282] = 2268, - [2283] = 389, + [2280] = 407, + [2281] = 408, + [2282] = 2282, + [2283] = 2283, [2284] = 2284, [2285] = 2285, [2286] = 2286, [2287] = 2287, [2288] = 2288, [2289] = 2289, - [2290] = 338, - [2291] = 353, - [2292] = 412, - [2293] = 399, + [2290] = 2290, + [2291] = 2291, + [2292] = 2291, + [2293] = 2293, [2294] = 2294, [2295] = 2295, - [2296] = 369, - [2297] = 377, + [2296] = 400, + [2297] = 368, [2298] = 389, - [2299] = 407, - [2300] = 398, - [2301] = 407, - [2302] = 2302, - [2303] = 2303, - [2304] = 398, - [2305] = 2302, - [2306] = 400, - [2307] = 408, - [2308] = 409, - [2309] = 410, + [2299] = 386, + [2300] = 409, + [2301] = 2301, + [2302] = 405, + [2303] = 386, + [2304] = 93, + [2305] = 92, + [2306] = 2306, + [2307] = 2307, + [2308] = 2308, + [2309] = 2309, [2310] = 2310, - [2311] = 2311, - [2312] = 2303, - [2313] = 389, - [2314] = 377, - [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, + [2311] = 2301, + [2312] = 2306, + [2313] = 2307, + [2314] = 2308, + [2315] = 2309, + [2316] = 2310, + [2317] = 400, + [2318] = 409, + [2319] = 389, + [2320] = 412, + [2321] = 402, + [2322] = 404, + [2323] = 93, + [2324] = 400, + [2325] = 451, + [2326] = 409, + [2327] = 101, [2328] = 92, - [2329] = 398, - [2330] = 407, - [2331] = 446, - [2332] = 408, - [2333] = 400, - [2334] = 409, - [2335] = 99, - [2336] = 108, - [2337] = 442, - [2338] = 446, - [2339] = 106, - [2340] = 377, - [2341] = 400, - [2342] = 105, - [2343] = 408, - [2344] = 409, - [2345] = 410, - [2346] = 407, - [2347] = 98, - [2348] = 444, - [2349] = 486, + [2329] = 96, + [2330] = 389, + [2331] = 386, + [2332] = 412, + [2333] = 402, + [2334] = 404, + [2335] = 405, + [2336] = 389, + [2337] = 339, + [2338] = 340, + [2339] = 341, + [2340] = 96, + [2341] = 451, + [2342] = 444, + [2343] = 412, + [2344] = 402, + [2345] = 404, + [2346] = 405, + [2347] = 333, + [2348] = 400, + [2349] = 409, [2350] = 93, - [2351] = 493, - [2352] = 92, - [2353] = 398, - [2354] = 99, - [2355] = 108, - [2356] = 410, - [2357] = 92, - [2358] = 400, - [2359] = 336, - [2360] = 470, - [2361] = 1473, - [2362] = 2362, - [2363] = 446, - [2364] = 412, - [2365] = 442, - [2366] = 459, - [2367] = 399, - [2368] = 93, - [2369] = 444, - [2370] = 2370, - [2371] = 99, - [2372] = 2372, - [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, - [2390] = 349, - [2391] = 106, - [2392] = 377, - [2393] = 99, - [2394] = 333, - [2395] = 92, - [2396] = 93, - [2397] = 446, - [2398] = 500, - [2399] = 98, - [2400] = 503, - [2401] = 490, - [2402] = 2402, - [2403] = 342, - [2404] = 336, - [2405] = 470, - [2406] = 642, - [2407] = 353, - [2408] = 340, - [2409] = 645, - [2410] = 108, - [2411] = 341, - [2412] = 412, - [2413] = 497, - [2414] = 484, - [2415] = 485, - [2416] = 489, - [2417] = 2417, - [2418] = 407, - [2419] = 459, - [2420] = 343, - [2421] = 105, - [2422] = 360, - [2423] = 444, - [2424] = 490, - [2425] = 333, - [2426] = 106, - [2427] = 408, - [2428] = 409, - [2429] = 410, - [2430] = 338, - [2431] = 444, - [2432] = 412, - [2433] = 642, - [2434] = 353, - [2435] = 442, - [2436] = 645, - [2437] = 400, - [2438] = 503, - [2439] = 1515, - [2440] = 105, - [2441] = 349, - [2442] = 99, - [2443] = 442, - [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, + [2351] = 92, + [2352] = 442, + [2353] = 106, + [2354] = 344, + [2355] = 101, + [2356] = 345, + [2357] = 346, + [2358] = 113, + [2359] = 104, + [2360] = 487, + [2361] = 484, + [2362] = 96, + [2363] = 2363, + [2364] = 462, + [2365] = 106, + [2366] = 104, + [2367] = 444, + [2368] = 2368, + [2369] = 2369, + [2370] = 1474, + [2371] = 386, + [2372] = 408, + [2373] = 334, + [2374] = 442, + [2375] = 113, + [2376] = 333, + [2377] = 101, + [2378] = 405, + [2379] = 402, + [2380] = 412, + [2381] = 407, + [2382] = 93, + [2383] = 404, + [2384] = 92, + [2385] = 2385, + [2386] = 451, + [2387] = 2387, + [2388] = 455, + [2389] = 106, + [2390] = 409, + [2391] = 497, + [2392] = 334, + [2393] = 462, + [2394] = 442, + [2395] = 368, + [2396] = 510, + [2397] = 2397, + [2398] = 335, + [2399] = 333, + [2400] = 490, + [2401] = 113, + [2402] = 408, + [2403] = 2403, + [2404] = 444, + [2405] = 1494, + [2406] = 511, + [2407] = 101, + [2408] = 492, + [2409] = 400, + [2410] = 2410, + [2411] = 343, + [2412] = 495, + [2413] = 480, + [2414] = 451, + [2415] = 489, + [2416] = 96, + [2417] = 479, + [2418] = 104, + [2419] = 1493, + [2420] = 93, + [2421] = 342, + [2422] = 92, + [2423] = 455, + [2424] = 389, + [2425] = 407, + [2426] = 1676, + [2427] = 113, + [2428] = 412, + [2429] = 106, + [2430] = 1843, + [2431] = 104, + [2432] = 442, + [2433] = 490, + [2434] = 444, + [2435] = 346, + [2436] = 510, + [2437] = 339, + [2438] = 333, + [2439] = 340, + [2440] = 341, + [2441] = 492, + [2442] = 442, + [2443] = 343, + [2444] = 342, + [2445] = 497, + [2446] = 444, + [2447] = 101, + [2448] = 334, + [2449] = 455, + [2450] = 402, + [2451] = 368, + [2452] = 404, + [2453] = 405, + [2454] = 462, + [2455] = 344, + [2456] = 407, + [2457] = 96, + [2458] = 349, + [2459] = 2459, + [2460] = 345, + [2461] = 351, + [2462] = 352, + [2463] = 408, + [2464] = 511, + [2465] = 2465, + [2466] = 113, + [2467] = 339, + [2468] = 480, + [2469] = 444, + [2470] = 340, + [2471] = 341, + [2472] = 2472, + [2473] = 343, + [2474] = 346, + [2475] = 1843, + [2476] = 490, + [2477] = 408, + [2478] = 342, + [2479] = 442, + [2480] = 462, + [2481] = 492, + [2482] = 497, + [2483] = 2483, + [2484] = 489, + [2485] = 2472, + [2486] = 368, + [2487] = 487, + [2488] = 2488, + [2489] = 455, + [2490] = 479, + [2491] = 106, + [2492] = 442, + [2493] = 495, [2494] = 333, - [2495] = 2464, - [2496] = 2496, - [2497] = 2497, - [2498] = 412, - [2499] = 470, - [2500] = 704, - [2501] = 692, - [2502] = 675, - [2503] = 698, - [2504] = 442, - [2505] = 642, - [2506] = 369, - [2507] = 105, - [2508] = 357, - [2509] = 645, - [2510] = 459, - [2511] = 339, - [2512] = 334, - [2513] = 493, - [2514] = 503, - [2515] = 937, - [2516] = 485, - [2517] = 2517, - [2518] = 369, - [2519] = 489, - [2520] = 2497, + [2495] = 407, + [2496] = 104, + [2497] = 2472, + [2498] = 511, + [2499] = 2472, + [2500] = 484, + [2501] = 344, + [2502] = 444, + [2503] = 510, + [2504] = 334, + [2505] = 455, + [2506] = 2506, + [2507] = 2507, + [2508] = 334, + [2509] = 335, + [2510] = 462, + [2511] = 702, + [2512] = 698, + [2513] = 688, + [2514] = 689, + [2515] = 690, + [2516] = 345, + [2517] = 2507, + [2518] = 511, + [2519] = 2519, + [2520] = 2520, [2521] = 2521, - [2522] = 886, - [2523] = 941, - [2524] = 961, - [2525] = 459, - [2526] = 2526, - [2527] = 960, - [2528] = 948, - [2529] = 503, + [2522] = 490, + [2523] = 344, + [2524] = 2524, + [2525] = 497, + [2526] = 368, + [2527] = 489, + [2528] = 923, + [2529] = 343, [2530] = 2530, - [2531] = 500, - [2532] = 357, - [2533] = 954, - [2534] = 958, - [2535] = 959, - [2536] = 341, - [2537] = 2537, - [2538] = 2538, + [2531] = 497, + [2532] = 961, + [2533] = 342, + [2534] = 442, + [2535] = 919, + [2536] = 925, + [2537] = 455, + [2538] = 334, [2539] = 2539, - [2540] = 2540, - [2541] = 2541, - [2542] = 339, - [2543] = 442, - [2544] = 342, - [2545] = 2545, - [2546] = 931, - [2547] = 2547, - [2548] = 343, - [2549] = 2549, - [2550] = 444, - [2551] = 334, - [2552] = 349, - [2553] = 497, - [2554] = 493, - [2555] = 470, - [2556] = 338, - [2557] = 486, - [2558] = 500, - [2559] = 490, - [2560] = 645, - [2561] = 360, - [2562] = 2475, - [2563] = 2537, - [2564] = 697, - [2565] = 642, - [2566] = 351, - [2567] = 2567, - [2568] = 340, - [2569] = 503, - [2570] = 2570, - [2571] = 490, - [2572] = 459, - [2573] = 484, - [2574] = 2481, - [2575] = 353, - [2576] = 704, - [2577] = 470, - [2578] = 692, - [2579] = 675, - [2580] = 698, + [2540] = 487, + [2541] = 346, + [2542] = 444, + [2543] = 490, + [2544] = 455, + [2545] = 352, + [2546] = 479, + [2547] = 339, + [2548] = 345, + [2549] = 349, + [2550] = 2550, + [2551] = 340, + [2552] = 341, + [2553] = 492, + [2554] = 898, + [2555] = 480, + [2556] = 2550, + [2557] = 948, + [2558] = 510, + [2559] = 492, + [2560] = 335, + [2561] = 484, + [2562] = 462, + [2563] = 2563, + [2564] = 2564, + [2565] = 2565, + [2566] = 2566, + [2567] = 495, + [2568] = 351, + [2569] = 702, + [2570] = 890, + [2571] = 2571, + [2572] = 341, + [2573] = 343, + [2574] = 342, + [2575] = 333, + [2576] = 344, + [2577] = 2506, + [2578] = 918, + [2579] = 345, + [2580] = 346, [2581] = 2581, - [2582] = 444, - [2583] = 503, - [2584] = 2584, - [2585] = 2538, - [2586] = 459, - [2587] = 937, - [2588] = 503, - [2589] = 490, + [2582] = 339, + [2583] = 922, + [2584] = 340, + [2585] = 698, + [2586] = 688, + [2587] = 689, + [2588] = 690, + [2589] = 935, [2590] = 2590, - [2591] = 490, + [2591] = 2465, [2592] = 2592, - [2593] = 2567, - [2594] = 493, - [2595] = 500, - [2596] = 491, - [2597] = 2597, - [2598] = 2598, - [2599] = 489, - [2600] = 948, - [2601] = 465, - [2602] = 497, - [2603] = 954, - [2604] = 697, - [2605] = 704, - [2606] = 692, - [2607] = 675, - [2608] = 698, - [2609] = 351, - [2610] = 500, - [2611] = 339, - [2612] = 642, - [2613] = 2547, - [2614] = 958, - [2615] = 466, - [2616] = 491, - [2617] = 486, - [2618] = 959, - [2619] = 960, - [2620] = 967, - [2621] = 2621, - [2622] = 498, - [2623] = 2623, - [2624] = 498, - [2625] = 485, - [2626] = 941, - [2627] = 368, - [2628] = 2521, - [2629] = 442, - [2630] = 2539, - [2631] = 2631, - [2632] = 2581, - [2633] = 484, - [2634] = 1940, - [2635] = 2549, - [2636] = 2545, - [2637] = 645, - [2638] = 470, - [2639] = 961, - [2640] = 357, - [2641] = 931, - [2642] = 886, - [2643] = 2643, - [2644] = 498, - [2645] = 697, - [2646] = 2646, - [2647] = 2647, - [2648] = 2648, - [2649] = 2649, - [2650] = 2650, - [2651] = 442, - [2652] = 2652, - [2653] = 2653, - [2654] = 2654, - [2655] = 2655, - [2656] = 2656, - [2657] = 2657, - [2658] = 2658, + [2593] = 462, + [2594] = 688, + [2595] = 2595, + [2596] = 2596, + [2597] = 486, + [2598] = 475, + [2599] = 2599, + [2600] = 510, + [2601] = 486, + [2602] = 511, + [2603] = 352, + [2604] = 2566, + [2605] = 2571, + [2606] = 2590, + [2607] = 2607, + [2608] = 492, + [2609] = 497, + [2610] = 480, + [2611] = 349, + [2612] = 487, + [2613] = 479, + [2614] = 484, + [2615] = 455, + [2616] = 890, + [2617] = 368, + [2618] = 335, + [2619] = 462, + [2620] = 1957, + [2621] = 495, + [2622] = 490, + [2623] = 343, + [2624] = 490, + [2625] = 351, + [2626] = 470, + [2627] = 492, + [2628] = 935, + [2629] = 497, + [2630] = 476, + [2631] = 476, + [2632] = 2632, + [2633] = 2633, + [2634] = 948, + [2635] = 2635, + [2636] = 2636, + [2637] = 2563, + [2638] = 373, + [2639] = 2564, + [2640] = 2565, + [2641] = 702, + [2642] = 698, + [2643] = 689, + [2644] = 690, + [2645] = 442, + [2646] = 923, + [2647] = 961, + [2648] = 919, + [2649] = 342, + [2650] = 925, + [2651] = 898, + [2652] = 1015, + [2653] = 444, + [2654] = 918, + [2655] = 922, + [2656] = 2519, + [2657] = 2520, + [2658] = 489, [2659] = 2659, [2660] = 2660, [2661] = 2661, @@ -7483,2540 +7498,2595 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2667] = 2667, [2668] = 2668, [2669] = 2669, - [2670] = 2670, - [2671] = 2671, - [2672] = 2672, - [2673] = 2673, - [2674] = 2674, - [2675] = 2675, + [2670] = 480, + [2671] = 487, + [2672] = 479, + [2673] = 484, + [2674] = 495, + [2675] = 489, [2676] = 2676, [2677] = 2677, [2678] = 2678, [2679] = 2679, [2680] = 2680, - [2681] = 444, - [2682] = 704, - [2683] = 444, - [2684] = 2684, + [2681] = 2681, + [2682] = 368, + [2683] = 2683, + [2684] = 890, [2685] = 2685, [2686] = 2686, [2687] = 2687, - [2688] = 2688, + [2688] = 898, [2689] = 2689, [2690] = 2690, [2691] = 2691, [2692] = 2692, [2693] = 2693, [2694] = 2694, - [2695] = 937, - [2696] = 470, + [2695] = 2695, + [2696] = 2696, [2697] = 2697, [2698] = 2698, - [2699] = 941, + [2699] = 2699, [2700] = 2700, - [2701] = 368, + [2701] = 2701, [2702] = 2702, [2703] = 2703, - [2704] = 692, - [2705] = 675, - [2706] = 698, - [2707] = 948, - [2708] = 954, - [2709] = 459, - [2710] = 958, + [2704] = 2704, + [2705] = 2705, + [2706] = 2706, + [2707] = 2707, + [2708] = 2708, + [2709] = 2709, + [2710] = 2710, [2711] = 2711, - [2712] = 2712, - [2713] = 959, + [2712] = 702, + [2713] = 2713, [2714] = 2714, [2715] = 2715, - [2716] = 886, - [2717] = 960, + [2716] = 2716, + [2717] = 698, [2718] = 2718, - [2719] = 2719, + [2719] = 1015, [2720] = 2720, - [2721] = 2597, - [2722] = 961, - [2723] = 931, + [2721] = 2721, + [2722] = 2722, + [2723] = 2723, [2724] = 2724, - [2725] = 2725, - [2726] = 2726, - [2727] = 2727, - [2728] = 2598, + [2725] = 349, + [2726] = 688, + [2727] = 689, + [2728] = 690, [2729] = 2729, [2730] = 2730, [2731] = 2731, [2732] = 2732, - [2733] = 702, - [2734] = 703, - [2735] = 2735, - [2736] = 710, - [2737] = 674, - [2738] = 2738, + [2733] = 2733, + [2734] = 2734, + [2735] = 712, + [2736] = 693, + [2737] = 2737, + [2738] = 694, [2739] = 2739, [2740] = 2740, - [2741] = 2741, + [2741] = 709, [2742] = 2742, - [2743] = 2743, - [2744] = 2744, + [2743] = 490, + [2744] = 462, [2745] = 2745, [2746] = 2746, [2747] = 2747, [2748] = 2748, - [2749] = 2749, + [2749] = 351, [2750] = 2750, [2751] = 2751, - [2752] = 2752, - [2753] = 2753, - [2754] = 2754, + [2752] = 492, + [2753] = 352, + [2754] = 497, [2755] = 2755, - [2756] = 465, + [2756] = 2756, [2757] = 2757, [2758] = 2758, [2759] = 2759, - [2760] = 1940, - [2761] = 466, + [2760] = 2760, + [2761] = 2761, [2762] = 2762, [2763] = 2763, - [2764] = 500, + [2764] = 2764, [2765] = 2765, [2766] = 2766, - [2767] = 2767, - [2768] = 503, - [2769] = 490, + [2767] = 935, + [2768] = 2768, + [2769] = 2769, [2770] = 2770, - [2771] = 2771, + [2771] = 2635, [2772] = 2772, [2773] = 2773, [2774] = 2774, [2775] = 2775, - [2776] = 2776, - [2777] = 2777, - [2778] = 2778, - [2779] = 2779, + [2776] = 2636, + [2777] = 918, + [2778] = 1957, + [2779] = 922, [2780] = 2780, - [2781] = 2781, + [2781] = 455, [2782] = 2782, - [2783] = 2783, - [2784] = 491, + [2783] = 2718, + [2784] = 2784, [2785] = 2785, [2786] = 2786, [2787] = 2787, - [2788] = 2788, + [2788] = 919, [2789] = 2789, - [2790] = 1980, - [2791] = 484, - [2792] = 486, - [2793] = 489, - [2794] = 493, - [2795] = 497, - [2796] = 485, + [2790] = 373, + [2791] = 2791, + [2792] = 2792, + [2793] = 2793, + [2794] = 2794, + [2795] = 2795, + [2796] = 2796, [2797] = 2797, [2798] = 2798, [2799] = 2799, - [2800] = 2800, + [2800] = 442, [2801] = 2801, [2802] = 2802, - [2803] = 2803, + [2803] = 475, [2804] = 2804, [2805] = 2805, - [2806] = 2806, + [2806] = 1990, [2807] = 2807, [2808] = 2808, - [2809] = 2809, + [2809] = 476, [2810] = 2810, [2811] = 2811, - [2812] = 2812, - [2813] = 2813, + [2812] = 444, + [2813] = 948, [2814] = 2814, - [2815] = 967, - [2816] = 941, - [2817] = 503, + [2815] = 444, + [2816] = 486, + [2817] = 470, [2818] = 2818, - [2819] = 490, - [2820] = 676, - [2821] = 2821, - [2822] = 2541, - [2823] = 2743, - [2824] = 702, - [2825] = 459, - [2826] = 923, - [2827] = 2744, + [2819] = 923, + [2820] = 2820, + [2821] = 925, + [2822] = 2822, + [2823] = 2823, + [2824] = 2824, + [2825] = 2825, + [2826] = 2826, + [2827] = 2718, [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] = 335, + [2831] = 2831, + [2832] = 2832, + [2833] = 961, + [2834] = 2834, + [2835] = 2835, + [2836] = 2836, + [2837] = 2837, + [2838] = 2838, [2839] = 2839, [2840] = 2840, - [2841] = 2779, - [2842] = 2530, - [2843] = 899, - [2844] = 2780, - [2845] = 2782, - [2846] = 2846, + [2841] = 2841, + [2842] = 2842, + [2843] = 352, + [2844] = 373, + [2845] = 712, + [2846] = 693, [2847] = 2847, [2848] = 2848, - [2849] = 2849, - [2850] = 2783, - [2851] = 2786, + [2849] = 2763, + [2850] = 2850, + [2851] = 2851, [2852] = 2852, - [2853] = 2797, - [2854] = 2798, - [2855] = 2799, - [2856] = 2800, - [2857] = 2857, - [2858] = 2801, - [2859] = 2802, - [2860] = 2803, - [2861] = 2805, - [2862] = 2808, - [2863] = 368, - [2864] = 2809, - [2865] = 2810, - [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, + [2853] = 2853, + [2854] = 2659, + [2855] = 697, + [2856] = 2823, + [2857] = 386, + [2858] = 680, + [2859] = 901, + [2860] = 2860, + [2861] = 2852, + [2862] = 2862, + [2863] = 2863, + [2864] = 351, + [2865] = 702, + [2866] = 940, + [2867] = 2524, + [2868] = 688, + [2869] = 689, + [2870] = 898, + [2871] = 935, + [2872] = 1015, + [2873] = 690, + [2874] = 698, + [2875] = 2875, + [2876] = 2876, + [2877] = 1990, + [2878] = 948, + [2879] = 918, + [2880] = 922, + [2881] = 938, + [2882] = 2665, [2883] = 470, - [2884] = 697, - [2885] = 2540, - [2886] = 704, - [2887] = 2887, - [2888] = 958, - [2889] = 2889, - [2890] = 2813, - [2891] = 2891, - [2892] = 389, - [2893] = 2789, - [2894] = 959, - [2895] = 2711, - [2896] = 967, - [2897] = 2570, - [2898] = 699, - [2899] = 930, - [2900] = 465, - [2901] = 2879, - [2902] = 2880, - [2903] = 500, - [2904] = 685, - [2905] = 2905, - [2906] = 692, - [2907] = 2517, - [2908] = 2526, - [2909] = 675, - [2910] = 2887, - [2911] = 2911, - [2912] = 2889, - [2913] = 698, - [2914] = 936, - [2915] = 2812, + [2884] = 2676, + [2885] = 2680, + [2886] = 2686, + [2887] = 2687, + [2888] = 2888, + [2889] = 2690, + [2890] = 2692, + [2891] = 2693, + [2892] = 2694, + [2893] = 2696, + [2894] = 2697, + [2895] = 2698, + [2896] = 2699, + [2897] = 2701, + [2898] = 2703, + [2899] = 2539, + [2900] = 923, + [2901] = 961, + [2902] = 2706, + [2903] = 2707, + [2904] = 919, + [2905] = 2798, + [2906] = 925, + [2907] = 2530, + [2908] = 2581, + [2909] = 2592, + [2910] = 2910, + [2911] = 490, + [2912] = 444, + [2913] = 455, + [2914] = 2521, + [2915] = 2539, [2916] = 2916, - [2917] = 2917, - [2918] = 2918, + [2917] = 462, + [2918] = 2524, [2919] = 2919, - [2920] = 763, - [2921] = 764, - [2922] = 2530, - [2923] = 444, - [2924] = 743, - [2925] = 744, - [2926] = 2857, + [2920] = 2530, + [2921] = 2581, + [2922] = 890, + [2923] = 2748, + [2924] = 349, + [2925] = 2851, + [2926] = 2592, [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, + [2929] = 930, + [2930] = 475, + [2931] = 2683, + [2932] = 680, + [2933] = 2933, + [2934] = 492, + [2935] = 497, + [2936] = 2685, + [2937] = 2847, + [2938] = 2848, + [2939] = 695, + [2940] = 694, + [2941] = 709, + [2942] = 2942, + [2943] = 2718, [2944] = 2944, [2945] = 2945, - [2946] = 2946, - [2947] = 730, - [2948] = 2948, - [2949] = 389, + [2946] = 2521, + [2947] = 2704, + [2948] = 890, + [2949] = 780, [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, - [2966] = 2966, - [2967] = 2967, - [2968] = 930, - [2969] = 2969, + [2951] = 2951, + [2952] = 2952, + [2953] = 784, + [2954] = 936, + [2955] = 937, + [2956] = 939, + [2957] = 2957, + [2958] = 2958, + [2959] = 2850, + [2960] = 2960, + [2961] = 1015, + [2962] = 888, + [2963] = 793, + [2964] = 895, + [2965] = 2592, + [2966] = 869, + [2967] = 933, + [2968] = 2968, + [2969] = 917, [2970] = 2970, [2971] = 2971, [2972] = 2972, [2973] = 2973, - [2974] = 2974, - [2975] = 2975, - [2976] = 2976, - [2977] = 720, - [2978] = 886, - [2979] = 721, - [2980] = 937, - [2981] = 722, - [2982] = 723, - [2983] = 941, - [2984] = 503, + [2974] = 732, + [2975] = 935, + [2976] = 733, + [2977] = 2530, + [2978] = 389, + [2979] = 2979, + [2980] = 386, + [2981] = 787, + [2982] = 789, + [2983] = 784, + [2984] = 2928, [2985] = 2985, - [2986] = 2986, - [2987] = 735, - [2988] = 2988, - [2989] = 948, + [2986] = 936, + [2987] = 937, + [2988] = 939, + [2989] = 940, [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, + [2991] = 2991, + [2992] = 717, + [2993] = 2860, + [2994] = 725, + [2995] = 718, + [2996] = 793, + [2997] = 917, + [2998] = 726, + [2999] = 923, + [3000] = 961, + [3001] = 919, + [3002] = 386, + [3003] = 948, + [3004] = 3004, + [3005] = 898, + [3006] = 3006, + [3007] = 3007, + [3008] = 938, + [3009] = 3009, + [3010] = 3010, + [3011] = 3011, + [3012] = 400, + [3013] = 790, + [3014] = 386, + [3015] = 3015, [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, + [3017] = 3017, + [3018] = 918, + [3019] = 922, + [3020] = 766, + [3021] = 3021, + [3022] = 3022, + [3023] = 2524, + [3024] = 680, + [3025] = 3025, + [3026] = 767, + [3027] = 695, + [3028] = 2916, + [3029] = 2521, + [3030] = 2826, [3031] = 3031, - [3032] = 735, - [3033] = 3033, - [3034] = 916, - [3035] = 951, - [3036] = 3036, + [3032] = 679, + [3033] = 2919, + [3034] = 2140, + [3035] = 697, + [3036] = 2539, [3037] = 3037, - [3038] = 924, - [3039] = 407, + [3038] = 906, + [3039] = 2828, [3040] = 3040, - [3041] = 3041, - [3042] = 3042, - [3043] = 3043, + [3041] = 409, + [3042] = 2863, + [3043] = 490, [3044] = 3044, - [3045] = 685, - [3046] = 2541, - [3047] = 3047, - [3048] = 3048, - [3049] = 746, - [3050] = 923, - [3051] = 924, - [3052] = 926, - [3053] = 3053, - [3054] = 3054, - [3055] = 500, - [3056] = 695, + [3045] = 3045, + [3046] = 2187, + [3047] = 2188, + [3048] = 2193, + [3049] = 942, + [3050] = 3050, + [3051] = 492, + [3052] = 3052, + [3053] = 497, + [3054] = 869, + [3055] = 3055, + [3056] = 933, [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, + [3058] = 903, + [3059] = 3059, + [3060] = 2581, + [3061] = 700, + [3062] = 884, + [3063] = 2944, + [3064] = 3064, + [3065] = 3065, + [3066] = 3066, + [3067] = 679, + [3068] = 3068, + [3069] = 925, + [3070] = 888, [3071] = 3071, - [3072] = 719, - [3073] = 3073, - [3074] = 738, - [3075] = 408, - [3076] = 3076, - [3077] = 3077, - [3078] = 916, - [3079] = 3079, - [3080] = 389, - [3081] = 2955, - [3082] = 400, - [3083] = 3083, - [3084] = 724, - [3085] = 2970, - [3086] = 3037, - [3087] = 3087, - [3088] = 3088, - [3089] = 887, - [3090] = 398, - [3091] = 743, - [3092] = 2967, - [3093] = 3093, - [3094] = 936, + [3072] = 732, + [3073] = 903, + [3074] = 722, + [3075] = 700, + [3076] = 901, + [3077] = 906, + [3078] = 2888, + [3079] = 373, + [3080] = 766, + [3081] = 3081, + [3082] = 728, + [3083] = 729, + [3084] = 767, + [3085] = 728, + [3086] = 729, + [3087] = 942, + [3088] = 733, + [3089] = 3089, + [3090] = 2933, + [3091] = 723, + [3092] = 3092, + [3093] = 895, + [3094] = 724, [3095] = 3095, [3096] = 3096, - [3097] = 3036, - [3098] = 744, - [3099] = 398, - [3100] = 2986, - [3101] = 726, + [3097] = 3097, + [3098] = 3098, + [3099] = 3099, + [3100] = 3100, + [3101] = 3101, [3102] = 3102, - [3103] = 727, - [3104] = 691, - [3105] = 3105, - [3106] = 3076, - [3107] = 746, - [3108] = 377, - [3109] = 3109, - [3110] = 736, - [3111] = 737, - [3112] = 738, + [3103] = 930, + [3104] = 3104, + [3105] = 444, + [3106] = 775, + [3107] = 776, + [3108] = 777, + [3109] = 507, + [3110] = 386, + [3111] = 906, + [3112] = 942, [3113] = 3113, - [3114] = 3114, - [3115] = 3115, - [3116] = 3116, + [3114] = 409, + [3115] = 888, + [3116] = 775, [3117] = 3117, - [3118] = 3118, - [3119] = 377, - [3120] = 3120, - [3121] = 739, - [3122] = 3003, - [3123] = 3005, - [3124] = 3016, - [3125] = 740, - [3126] = 3073, - [3127] = 407, + [3118] = 776, + [3119] = 777, + [3120] = 400, + [3121] = 780, + [3122] = 2960, + [3123] = 400, + [3124] = 3124, + [3125] = 2952, + [3126] = 389, + [3127] = 784, [3128] = 3128, - [3129] = 3129, - [3130] = 728, - [3131] = 3131, - [3132] = 741, - [3133] = 951, - [3134] = 3134, - [3135] = 2173, - [3136] = 3136, - [3137] = 3137, - [3138] = 742, + [3129] = 936, + [3130] = 937, + [3131] = 939, + [3132] = 940, + [3133] = 2187, + [3134] = 787, + [3135] = 789, + [3136] = 790, + [3137] = 793, + [3138] = 2188, [3139] = 3139, - [3140] = 3140, - [3141] = 747, - [3142] = 3142, - [3143] = 930, - [3144] = 3144, - [3145] = 3145, - [3146] = 3146, - [3147] = 2174, - [3148] = 949, - [3149] = 407, - [3150] = 2988, + [3140] = 2193, + [3141] = 869, + [3142] = 933, + [3143] = 3143, + [3144] = 717, + [3145] = 718, + [3146] = 722, + [3147] = 723, + [3148] = 724, + [3149] = 725, + [3150] = 726, [3151] = 3151, - [3152] = 2176, - [3153] = 924, - [3154] = 409, - [3155] = 926, - [3156] = 730, - [3157] = 3157, - [3158] = 3158, - [3159] = 3076, - [3160] = 410, + [3152] = 3152, + [3153] = 3153, + [3154] = 402, + [3155] = 728, + [3156] = 729, + [3157] = 409, + [3158] = 404, + [3159] = 3052, + [3160] = 405, [3161] = 3161, - [3162] = 897, - [3163] = 719, - [3164] = 398, - [3165] = 695, - [3166] = 2971, + [3162] = 3162, + [3163] = 3163, + [3164] = 400, + [3165] = 732, + [3166] = 733, [3167] = 3167, - [3168] = 898, - [3169] = 3169, - [3170] = 2972, - [3171] = 3077, - [3172] = 3083, + [3168] = 3168, + [3169] = 3052, + [3170] = 3016, + [3171] = 3171, + [3172] = 3172, [3173] = 3173, - [3174] = 3088, - [3175] = 407, - [3176] = 2973, - [3177] = 720, - [3178] = 389, - [3179] = 3179, - [3180] = 943, - [3181] = 2974, - [3182] = 721, - [3183] = 3040, - [3184] = 3069, - [3185] = 3071, - [3186] = 2944, - [3187] = 3028, - [3188] = 2919, - [3189] = 2950, - [3190] = 2963, - [3191] = 3044, - [3192] = 3047, - [3193] = 3057, - [3194] = 2937, - [3195] = 722, - [3196] = 2975, - [3197] = 735, + [3174] = 3174, + [3175] = 3096, + [3176] = 3176, + [3177] = 3097, + [3178] = 3098, + [3179] = 3057, + [3180] = 3180, + [3181] = 3181, + [3182] = 3153, + [3183] = 2140, + [3184] = 938, + [3185] = 386, + [3186] = 901, + [3187] = 3187, + [3188] = 3188, + [3189] = 3189, + [3190] = 3190, + [3191] = 3100, + [3192] = 3153, + [3193] = 3101, + [3194] = 3194, + [3195] = 3102, + [3196] = 3196, + [3197] = 3104, [3198] = 3198, - [3199] = 723, - [3200] = 377, - [3201] = 888, - [3202] = 3198, - [3203] = 694, - [3204] = 2191, - [3205] = 763, - [3206] = 764, - [3207] = 3207, + [3199] = 930, + [3200] = 3200, + [3201] = 3201, + [3202] = 3009, + [3203] = 679, + [3204] = 3204, + [3205] = 903, + [3206] = 3010, + [3207] = 700, [3208] = 3208, - [3209] = 2967, - [3210] = 2985, - [3211] = 3211, - [3212] = 899, - [3213] = 923, - [3214] = 3040, - [3215] = 3215, - [3216] = 3216, - [3217] = 3217, - [3218] = 3218, - [3219] = 3219, - [3220] = 741, - [3221] = 742, - [3222] = 3222, - [3223] = 3223, - [3224] = 3224, - [3225] = 3225, - [3226] = 728, - [3227] = 3227, - [3228] = 3228, - [3229] = 3109, + [3209] = 3011, + [3210] = 3210, + [3211] = 895, + [3212] = 3212, + [3213] = 3040, + [3214] = 917, + [3215] = 3065, + [3216] = 3015, + [3217] = 2958, + [3218] = 3004, + [3219] = 3055, + [3220] = 3059, + [3221] = 3089, + [3222] = 2985, + [3223] = 3081, + [3224] = 3037, + [3225] = 2990, + [3226] = 3017, + [3227] = 884, + [3228] = 409, + [3229] = 3229, [3230] = 3230, - [3231] = 3231, - [3232] = 3232, - [3233] = 3233, - [3234] = 3234, - [3235] = 408, - [3236] = 409, - [3237] = 410, - [3238] = 408, - [3239] = 3239, - [3240] = 409, + [3231] = 696, + [3232] = 412, + [3233] = 389, + [3234] = 3229, + [3235] = 3235, + [3236] = 389, + [3237] = 3139, + [3238] = 766, + [3239] = 767, + [3240] = 3176, [3241] = 3241, - [3242] = 3242, + [3242] = 3143, [3243] = 3243, [3244] = 3244, [3245] = 3245, [3246] = 3246, [3247] = 3247, - [3248] = 92, + [3248] = 3248, [3249] = 3249, - [3250] = 3250, - [3251] = 3251, - [3252] = 3087, - [3253] = 93, + [3250] = 3099, + [3251] = 3201, + [3252] = 3252, + [3253] = 790, [3254] = 3254, [3255] = 3255, [3256] = 3256, [3257] = 3257, - [3258] = 3169, + [3258] = 3258, [3259] = 3259, - [3260] = 3260, + [3260] = 92, [3261] = 3261, [3262] = 3262, - [3263] = 3263, - [3264] = 410, + [3263] = 3167, + [3264] = 3168, [3265] = 3265, - [3266] = 3102, - [3267] = 92, - [3268] = 336, - [3269] = 3269, - [3270] = 93, - [3271] = 726, + [3266] = 3266, + [3267] = 3267, + [3268] = 3268, + [3269] = 3171, + [3270] = 3270, + [3271] = 3198, [3272] = 3272, - [3273] = 407, - [3274] = 727, - [3275] = 736, - [3276] = 92, - [3277] = 400, - [3278] = 3146, - [3279] = 737, + [3273] = 3117, + [3274] = 3274, + [3275] = 3275, + [3276] = 3276, + [3277] = 3277, + [3278] = 3278, + [3279] = 3279, [3280] = 3280, - [3281] = 3113, - [3282] = 3114, - [3283] = 3115, - [3284] = 3284, - [3285] = 738, - [3286] = 398, - [3287] = 3161, - [3288] = 3118, + [3281] = 400, + [3282] = 3282, + [3283] = 409, + [3284] = 3052, + [3285] = 3285, + [3286] = 3286, + [3287] = 3287, + [3288] = 3288, [3289] = 3289, - [3290] = 888, + [3290] = 3290, [3291] = 3291, - [3292] = 400, - [3293] = 333, - [3294] = 3294, + [3292] = 402, + [3293] = 404, + [3294] = 405, [3295] = 3295, [3296] = 3296, [3297] = 3297, - [3298] = 93, - [3299] = 3299, + [3298] = 412, + [3299] = 412, [3300] = 3300, - [3301] = 3167, - [3302] = 3136, - [3303] = 3207, - [3304] = 739, - [3305] = 740, - [3306] = 540, - [3307] = 3307, - [3308] = 3308, - [3309] = 3309, - [3310] = 2967, + [3301] = 3248, + [3302] = 3302, + [3303] = 333, + [3304] = 3173, + [3305] = 3151, + [3306] = 3306, + [3307] = 3247, + [3308] = 3249, + [3309] = 3245, + [3310] = 3310, [3311] = 3311, - [3312] = 3145, - [3313] = 3313, + [3312] = 93, + [3313] = 334, [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, + [3315] = 3255, + [3316] = 409, + [3317] = 3317, + [3318] = 3318, + [3319] = 3319, + [3320] = 3320, + [3321] = 3321, + [3322] = 402, + [3323] = 404, + [3324] = 405, + [3325] = 3113, + [3326] = 3208, + [3327] = 92, + [3328] = 775, [3329] = 3329, [3330] = 3330, - [3331] = 389, - [3332] = 3332, - [3333] = 3333, - [3334] = 3079, - [3335] = 400, - [3336] = 408, - [3337] = 409, - [3338] = 410, - [3339] = 3216, + [3331] = 93, + [3332] = 717, + [3333] = 718, + [3334] = 3334, + [3335] = 722, + [3336] = 3336, + [3337] = 723, + [3338] = 724, + [3339] = 725, [3340] = 3340, - [3341] = 3341, - [3342] = 398, - [3343] = 720, - [3344] = 378, - [3345] = 721, - [3346] = 3076, - [3347] = 722, - [3348] = 92, + [3341] = 3161, + [3342] = 92, + [3343] = 726, + [3344] = 507, + [3345] = 3172, + [3346] = 3346, + [3347] = 3347, + [3348] = 3174, [3349] = 3349, - [3350] = 93, - [3351] = 723, + [3350] = 3350, + [3351] = 776, [3352] = 3352, - [3353] = 407, + [3353] = 3040, [3354] = 3354, - [3355] = 3355, - [3356] = 691, - [3357] = 3357, - [3358] = 98, - [3359] = 3355, - [3360] = 99, - [3361] = 398, - [3362] = 92, - [3363] = 3363, - [3364] = 92, - [3365] = 3365, - [3366] = 446, - [3367] = 3367, - [3368] = 98, - [3369] = 399, - [3370] = 98, + [3355] = 777, + [3356] = 93, + [3357] = 3065, + [3358] = 3015, + [3359] = 2958, + [3360] = 780, + [3361] = 3004, + [3362] = 3055, + [3363] = 3059, + [3364] = 3089, + [3365] = 2985, + [3366] = 3081, + [3367] = 3037, + [3368] = 2990, + [3369] = 400, + [3370] = 3370, [3371] = 3371, - [3372] = 343, - [3373] = 99, - [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, - [3391] = 3391, - [3392] = 92, - [3393] = 3355, + [3372] = 3372, + [3373] = 3373, + [3374] = 884, + [3375] = 3375, + [3376] = 93, + [3377] = 3377, + [3378] = 3378, + [3379] = 386, + [3380] = 92, + [3381] = 3381, + [3382] = 412, + [3383] = 402, + [3384] = 404, + [3385] = 405, + [3386] = 3386, + [3387] = 3387, + [3388] = 3388, + [3389] = 3389, + [3390] = 3153, + [3391] = 385, + [3392] = 787, + [3393] = 789, [3394] = 3394, - [3395] = 3076, - [3396] = 3355, - [3397] = 93, - [3398] = 99, - [3399] = 98, - [3400] = 93, - [3401] = 3401, + [3395] = 342, + [3396] = 409, + [3397] = 339, + [3398] = 93, + [3399] = 3399, + [3400] = 340, + [3401] = 93, [3402] = 3402, - [3403] = 3402, - [3404] = 3402, - [3405] = 3405, - [3406] = 3406, - [3407] = 105, - [3408] = 3402, + [3403] = 101, + [3404] = 341, + [3405] = 96, + [3406] = 696, + [3407] = 344, + [3408] = 451, [3409] = 3409, - [3410] = 3401, - [3411] = 3406, - [3412] = 99, - [3413] = 442, - [3414] = 106, - [3415] = 3402, - [3416] = 444, - [3417] = 3417, - [3418] = 2444, - [3419] = 99, - [3420] = 3405, - [3421] = 3406, - [3422] = 3402, - [3423] = 442, - [3424] = 108, - [3425] = 105, - [3426] = 442, - [3427] = 408, - [3428] = 409, - [3429] = 106, - [3430] = 3405, - [3431] = 3406, - [3432] = 410, - [3433] = 3402, - [3434] = 400, - [3435] = 369, - [3436] = 3405, - [3437] = 3406, - [3438] = 3402, - [3439] = 444, - [3440] = 98, - [3441] = 3402, - [3442] = 3405, - [3443] = 3406, - [3444] = 3402, - [3445] = 98, - [3446] = 3405, - [3447] = 3406, - [3448] = 106, - [3449] = 3449, - [3450] = 98, - [3451] = 3405, - [3452] = 105, - [3453] = 3406, - [3454] = 3402, - [3455] = 3405, - [3456] = 3357, + [3410] = 3410, + [3411] = 3409, + [3412] = 343, + [3413] = 101, + [3414] = 407, + [3415] = 3415, + [3416] = 96, + [3417] = 92, + [3418] = 3418, + [3419] = 3409, + [3420] = 3420, + [3421] = 345, + [3422] = 101, + [3423] = 3409, + [3424] = 346, + [3425] = 96, + [3426] = 3153, + [3427] = 3427, + [3428] = 101, + [3429] = 92, + [3430] = 93, + [3431] = 408, + [3432] = 96, + [3433] = 3409, + [3434] = 389, + [3435] = 92, + [3436] = 3436, + [3437] = 410, + [3438] = 400, + [3439] = 3439, + [3440] = 406, + [3441] = 3441, + [3442] = 3442, + [3443] = 3442, + [3444] = 3442, + [3445] = 3442, + [3446] = 3442, + [3447] = 3442, + [3448] = 3442, + [3449] = 3442, + [3450] = 444, + [3451] = 101, + [3452] = 2459, + [3453] = 113, + [3454] = 113, + [3455] = 3455, + [3456] = 96, [3457] = 3457, - [3458] = 3406, - [3459] = 3402, - [3460] = 99, - [3461] = 3457, - [3462] = 3449, - [3463] = 3405, - [3464] = 3405, - [3465] = 3406, - [3466] = 3405, - [3467] = 3402, - [3468] = 3405, - [3469] = 3406, - [3470] = 444, - [3471] = 3406, - [3472] = 3405, - [3473] = 3406, - [3474] = 3405, - [3475] = 3406, - [3476] = 3402, - [3477] = 3402, - [3478] = 3409, - [3479] = 3402, - [3480] = 444, - [3481] = 108, - [3482] = 442, - [3483] = 3402, - [3484] = 105, - [3485] = 106, - [3486] = 3402, - [3487] = 3487, - [3488] = 108, - [3489] = 108, - [3490] = 3402, - [3491] = 105, - [3492] = 106, - [3493] = 489, - [3494] = 3494, + [3458] = 444, + [3459] = 3441, + [3460] = 3457, + [3461] = 3442, + [3462] = 3442, + [3463] = 101, + [3464] = 3464, + [3465] = 3464, + [3466] = 3466, + [3467] = 3467, + [3468] = 402, + [3469] = 404, + [3470] = 104, + [3471] = 3441, + [3472] = 3457, + [3473] = 3442, + [3474] = 96, + [3475] = 96, + [3476] = 3427, + [3477] = 3441, + [3478] = 405, + [3479] = 3466, + [3480] = 442, + [3481] = 3441, + [3482] = 3457, + [3483] = 3455, + [3484] = 3442, + [3485] = 368, + [3486] = 3467, + [3487] = 106, + [3488] = 106, + [3489] = 3442, + [3490] = 442, + [3491] = 101, + [3492] = 3441, + [3493] = 3457, + [3494] = 3442, [3495] = 3495, - [3496] = 485, - [3497] = 106, - [3498] = 3494, - [3499] = 3495, - [3500] = 459, - [3501] = 3487, - [3502] = 3502, - [3503] = 3494, - [3504] = 3495, - [3505] = 343, - [3506] = 3494, - [3507] = 3495, - [3508] = 342, - [3509] = 3494, - [3510] = 3495, - [3511] = 349, - [3512] = 3494, - [3513] = 3494, - [3514] = 442, - [3515] = 3494, - [3516] = 3494, - [3517] = 3494, - [3518] = 92, - [3519] = 3494, - [3520] = 3494, - [3521] = 3494, - [3522] = 3494, - [3523] = 3494, - [3524] = 3494, - [3525] = 3525, - [3526] = 1841, - [3527] = 3495, - [3528] = 340, - [3529] = 3502, - [3530] = 3495, - [3531] = 3495, - [3532] = 3532, - [3533] = 3502, - [3534] = 459, - [3535] = 3502, - [3536] = 470, - [3537] = 3525, - [3538] = 108, - [3539] = 3525, - [3540] = 3540, - [3541] = 105, - [3542] = 108, - [3543] = 3495, - [3544] = 1841, - [3545] = 3495, - [3546] = 106, - [3547] = 3540, - [3548] = 470, - [3549] = 105, - [3550] = 3494, - [3551] = 3495, - [3552] = 3495, - [3553] = 470, - [3554] = 444, - [3555] = 3555, - [3556] = 3525, - [3557] = 3540, - [3558] = 3540, - [3559] = 442, - [3560] = 341, - [3561] = 108, - [3562] = 497, - [3563] = 459, - [3564] = 93, - [3565] = 470, - [3566] = 3494, - [3567] = 3495, - [3568] = 360, - [3569] = 459, - [3570] = 3570, - [3571] = 444, - [3572] = 333, - [3573] = 3573, - [3574] = 3573, - [3575] = 459, - [3576] = 3573, - [3577] = 645, - [3578] = 503, - [3579] = 500, - [3580] = 3573, + [3496] = 113, + [3497] = 3442, + [3498] = 3457, + [3499] = 3499, + [3500] = 3441, + [3501] = 3457, + [3502] = 113, + [3503] = 3442, + [3504] = 104, + [3505] = 444, + [3506] = 3441, + [3507] = 3457, + [3508] = 442, + [3509] = 3442, + [3510] = 106, + [3511] = 104, + [3512] = 3441, + [3513] = 3457, + [3514] = 3442, + [3515] = 3441, + [3516] = 3457, + [3517] = 442, + [3518] = 3442, + [3519] = 3441, + [3520] = 106, + [3521] = 3457, + [3522] = 3441, + [3523] = 3457, + [3524] = 3442, + [3525] = 412, + [3526] = 3441, + [3527] = 3457, + [3528] = 3442, + [3529] = 3442, + [3530] = 3441, + [3531] = 444, + [3532] = 3457, + [3533] = 104, + [3534] = 3534, + [3535] = 3535, + [3536] = 455, + [3537] = 3537, + [3538] = 489, + [3539] = 345, + [3540] = 479, + [3541] = 3535, + [3542] = 3495, + [3543] = 3534, + [3544] = 3535, + [3545] = 3534, + [3546] = 3534, + [3547] = 3535, + [3548] = 3535, + [3549] = 3534, + [3550] = 1843, + [3551] = 3534, + [3552] = 3552, + [3553] = 3534, + [3554] = 113, + [3555] = 1843, + [3556] = 3534, + [3557] = 3534, + [3558] = 113, + [3559] = 3534, + [3560] = 3534, + [3561] = 3534, + [3562] = 3534, + [3563] = 3563, + [3564] = 3564, + [3565] = 346, + [3566] = 3535, + [3567] = 3564, + [3568] = 455, + [3569] = 92, + [3570] = 104, + [3571] = 3535, + [3572] = 3534, + [3573] = 495, + [3574] = 106, + [3575] = 104, + [3576] = 113, + [3577] = 3537, + [3578] = 3534, + [3579] = 3564, + [3580] = 3537, [3581] = 3581, - [3582] = 3582, - [3583] = 500, - [3584] = 490, - [3585] = 503, - [3586] = 3573, - [3587] = 3573, - [3588] = 490, - [3589] = 99, - [3590] = 470, - [3591] = 3591, - [3592] = 338, - [3593] = 353, - [3594] = 3573, - [3595] = 470, - [3596] = 490, - [3597] = 500, - [3598] = 645, - [3599] = 3599, - [3600] = 642, - [3601] = 98, - [3602] = 3573, - [3603] = 642, - [3604] = 459, - [3605] = 3573, - [3606] = 645, - [3607] = 3573, - [3608] = 642, - [3609] = 93, - [3610] = 336, - [3611] = 92, - [3612] = 3573, - [3613] = 3613, - [3614] = 503, - [3615] = 3573, - [3616] = 500, - [3617] = 503, - [3618] = 490, - [3619] = 3573, - [3620] = 3581, - [3621] = 333, - [3622] = 444, - [3623] = 3623, - [3624] = 353, - [3625] = 704, - [3626] = 503, - [3627] = 3627, + [3582] = 3581, + [3583] = 442, + [3584] = 3535, + [3585] = 93, + [3586] = 106, + [3587] = 3534, + [3588] = 462, + [3589] = 3535, + [3590] = 3535, + [3591] = 3564, + [3592] = 455, + [3593] = 462, + [3594] = 344, + [3595] = 3581, + [3596] = 3535, + [3597] = 455, + [3598] = 462, + [3599] = 3534, + [3600] = 3600, + [3601] = 444, + [3602] = 106, + [3603] = 334, + [3604] = 442, + [3605] = 3534, + [3606] = 3537, + [3607] = 3535, + [3608] = 3581, + [3609] = 339, + [3610] = 340, + [3611] = 341, + [3612] = 462, + [3613] = 444, + [3614] = 104, + [3615] = 3535, + [3616] = 490, + [3617] = 511, + [3618] = 93, + [3619] = 3619, + [3620] = 3620, + [3621] = 492, + [3622] = 3619, + [3623] = 510, + [3624] = 3619, + [3625] = 3619, + [3626] = 492, + [3627] = 3619, [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, - [3643] = 3643, - [3644] = 98, - [3645] = 490, - [3646] = 3646, - [3647] = 333, - [3648] = 3648, - [3649] = 490, - [3650] = 3646, - [3651] = 3641, - [3652] = 106, - [3653] = 333, - [3654] = 3654, - [3655] = 485, - [3656] = 3646, - [3657] = 3648, - [3658] = 3627, - [3659] = 3659, - [3660] = 485, - [3661] = 465, - [3662] = 3662, - [3663] = 466, - [3664] = 493, - [3665] = 3646, - [3666] = 3628, - [3667] = 486, - [3668] = 493, - [3669] = 486, - [3670] = 3646, - [3671] = 3671, - [3672] = 3555, - [3673] = 645, + [3629] = 3619, + [3630] = 490, + [3631] = 511, + [3632] = 492, + [3633] = 497, + [3634] = 510, + [3635] = 3619, + [3636] = 455, + [3637] = 497, + [3638] = 497, + [3639] = 3619, + [3640] = 3640, + [3641] = 3619, + [3642] = 3619, + [3643] = 343, + [3644] = 342, + [3645] = 3645, + [3646] = 490, + [3647] = 511, + [3648] = 334, + [3649] = 333, + [3650] = 96, + [3651] = 3620, + [3652] = 3652, + [3653] = 92, + [3654] = 3619, + [3655] = 3619, + [3656] = 497, + [3657] = 510, + [3658] = 492, + [3659] = 3619, + [3660] = 462, + [3661] = 490, + [3662] = 462, + [3663] = 101, + [3664] = 455, + [3665] = 1832, + [3666] = 3666, + [3667] = 698, + [3668] = 3668, + [3669] = 444, + [3670] = 2519, + [3671] = 511, + [3672] = 495, + [3673] = 3673, [3674] = 3674, - [3675] = 3646, - [3676] = 1830, - [3677] = 336, - [3678] = 444, - [3679] = 444, - [3680] = 645, - [3681] = 442, - [3682] = 497, - [3683] = 503, - [3684] = 2521, - [3685] = 3646, - [3686] = 3686, - [3687] = 642, + [3675] = 490, + [3676] = 511, + [3677] = 3673, + [3678] = 479, + [3679] = 688, + [3680] = 689, + [3681] = 690, + [3682] = 484, + [3683] = 442, + [3684] = 489, + [3685] = 3685, + [3686] = 334, + [3687] = 476, [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, + [3690] = 3690, + [3691] = 444, + [3692] = 3692, + [3693] = 480, + [3694] = 3673, + [3695] = 442, + [3696] = 3673, + [3697] = 3697, + [3698] = 444, + [3699] = 3699, + [3700] = 334, + [3701] = 511, + [3702] = 3702, + [3703] = 510, + [3704] = 113, + [3705] = 3685, + [3706] = 3688, + [3707] = 3495, + [3708] = 3689, + [3709] = 3673, + [3710] = 3710, + [3711] = 3690, + [3712] = 487, + [3713] = 484, + [3714] = 495, + [3715] = 3552, + [3716] = 3716, + [3717] = 3717, + [3718] = 489, + [3719] = 333, + [3720] = 3666, + [3721] = 3721, + [3722] = 3628, + [3723] = 3673, + [3724] = 484, + [3725] = 442, + [3726] = 3702, + [3727] = 3727, + [3728] = 96, + [3729] = 480, + [3730] = 3674, + [3731] = 2563, [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, + [3734] = 3710, + [3735] = 475, + [3736] = 470, + [3737] = 3673, + [3738] = 3733, + [3739] = 3727, + [3740] = 3673, + [3741] = 486, + [3742] = 510, + [3743] = 104, + [3744] = 442, + [3745] = 3692, + [3746] = 3699, + [3747] = 490, [3748] = 3748, - [3749] = 3749, - [3750] = 3750, - [3751] = 3751, - [3752] = 3752, - [3753] = 3753, - [3754] = 3754, - [3755] = 338, - [3756] = 3714, - [3757] = 3715, - [3758] = 353, - [3759] = 459, - [3760] = 3752, - [3761] = 3761, - [3762] = 3762, - [3763] = 3763, - [3764] = 3764, - [3765] = 444, - [3766] = 3751, - [3767] = 3767, - [3768] = 3768, + [3749] = 342, + [3750] = 2564, + [3751] = 444, + [3752] = 101, + [3753] = 3716, + [3754] = 487, + [3755] = 487, + [3756] = 343, + [3757] = 3757, + [3758] = 497, + [3759] = 510, + [3760] = 3732, + [3761] = 3673, + [3762] = 3645, + [3763] = 3666, + [3764] = 497, + [3765] = 3666, + [3766] = 492, + [3767] = 3673, + [3768] = 3757, [3769] = 3769, - [3770] = 1446, - [3771] = 2785, - [3772] = 2785, - [3773] = 2538, + [3770] = 492, + [3771] = 3620, + [3772] = 106, + [3773] = 3673, [3774] = 3774, - [3775] = 3775, - [3776] = 489, - [3777] = 497, - [3778] = 338, - [3779] = 485, - [3780] = 704, - [3781] = 3747, - [3782] = 3748, - [3783] = 3749, + [3775] = 2636, + [3776] = 444, + [3777] = 342, + [3778] = 442, + [3779] = 444, + [3780] = 3774, + [3781] = 3781, + [3782] = 3782, + [3783] = 3783, [3784] = 3784, - [3785] = 3752, + [3785] = 3785, [3786] = 3786, [3787] = 3787, [3788] = 3788, [3789] = 3789, [3790] = 3790, - [3791] = 343, - [3792] = 3792, - [3793] = 470, + [3791] = 3717, + [3792] = 3748, + [3793] = 3790, [3794] = 3794, - [3795] = 360, - [3796] = 340, - [3797] = 353, - [3798] = 341, - [3799] = 342, - [3800] = 349, - [3801] = 459, - [3802] = 3744, - [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, + [3795] = 3795, + [3796] = 3796, + [3797] = 462, + [3798] = 3798, + [3799] = 3799, + [3800] = 3800, + [3801] = 3801, + [3802] = 3802, + [3803] = 343, + [3804] = 444, + [3805] = 3783, + [3806] = 342, + [3807] = 3807, + [3808] = 3808, + [3809] = 1443, + [3810] = 2661, + [3811] = 2520, + [3812] = 2661, + [3813] = 3813, + [3814] = 343, + [3815] = 698, + [3816] = 479, + [3817] = 495, [3818] = 3818, - [3819] = 3747, + [3819] = 489, [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, - [3845] = 3845, - [3846] = 697, - [3847] = 2545, - [3848] = 697, - [3849] = 470, - [3850] = 459, - [3851] = 444, - [3852] = 470, - [3853] = 704, - [3854] = 108, - [3855] = 105, - [3856] = 106, - [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, + [3821] = 3821, + [3822] = 3822, + [3823] = 3823, + [3824] = 3784, + [3825] = 3781, + [3826] = 3785, + [3827] = 3786, + [3828] = 3828, + [3829] = 3782, + [3830] = 3790, + [3831] = 455, + [3832] = 342, + [3833] = 462, + [3834] = 3785, + [3835] = 3786, + [3836] = 344, + [3837] = 3837, + [3838] = 3787, + [3839] = 345, + [3840] = 346, + [3841] = 688, + [3842] = 689, + [3843] = 339, + [3844] = 340, + [3845] = 341, + [3846] = 690, + [3847] = 3847, + [3848] = 3848, + [3849] = 455, + [3850] = 462, + [3851] = 335, + [3852] = 3784, + [3853] = 3853, + [3854] = 1957, + [3855] = 3855, + [3856] = 3856, + [3857] = 3784, + [3858] = 3785, + [3859] = 3786, + [3860] = 368, + [3861] = 3790, + [3862] = 3784, + [3863] = 3785, + [3864] = 3786, + [3865] = 3790, + [3866] = 3784, + [3867] = 3867, + [3868] = 2565, + [3869] = 3785, + [3870] = 3786, + [3871] = 3790, + [3872] = 3784, + [3873] = 3790, + [3874] = 442, + [3875] = 3784, + [3876] = 3876, + [3877] = 3877, + [3878] = 3790, [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, + [3880] = 3784, + [3881] = 3790, + [3882] = 1957, + [3883] = 3883, + [3884] = 702, + [3885] = 3885, + [3886] = 702, + [3887] = 455, + [3888] = 698, + [3889] = 455, + [3890] = 3890, + [3891] = 462, + [3892] = 3892, [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, - [3912] = 3912, - [3913] = 3887, - [3914] = 941, - [3915] = 3897, - [3916] = 459, - [3917] = 3910, - [3918] = 3918, - [3919] = 958, - [3920] = 3920, - [3921] = 886, - [3922] = 941, - [3923] = 500, - [3924] = 2990, - [3925] = 2992, - [3926] = 959, - [3927] = 948, - [3928] = 954, - [3929] = 503, - [3930] = 958, - [3931] = 490, - [3932] = 959, - [3933] = 3897, - [3934] = 336, - [3935] = 886, - [3936] = 960, - [3937] = 705, - [3938] = 960, - [3939] = 3939, - [3940] = 3940, - [3941] = 937, - [3942] = 3871, - [3943] = 961, - [3944] = 931, - [3945] = 3945, - [3946] = 500, - [3947] = 351, - [3948] = 503, - [3949] = 357, - [3950] = 490, - [3951] = 3845, - [3952] = 3144, - [3953] = 3953, + [3894] = 444, + [3895] = 113, + [3896] = 106, + [3897] = 104, + [3898] = 3898, + [3899] = 688, + [3900] = 689, + [3901] = 690, + [3902] = 698, + [3903] = 688, + [3904] = 689, + [3905] = 690, + [3906] = 3853, + [3907] = 3907, + [3908] = 442, + [3909] = 3909, + [3910] = 3774, + [3911] = 3781, + [3912] = 3782, + [3913] = 444, + [3914] = 3914, + [3915] = 3774, + [3916] = 3781, + [3917] = 3782, + [3918] = 442, + [3919] = 3919, + [3920] = 3794, + [3921] = 3795, + [3922] = 3796, + [3923] = 3923, + [3924] = 3924, + [3925] = 3006, + [3926] = 3007, + [3927] = 343, + [3928] = 2635, + [3929] = 3929, + [3930] = 490, + [3931] = 3190, + [3932] = 492, + [3933] = 497, + [3934] = 349, + [3935] = 3935, + [3936] = 3194, + [3937] = 351, + [3938] = 352, + [3939] = 3196, + [3940] = 495, + [3941] = 890, + [3942] = 3907, + [3943] = 3909, + [3944] = 898, + [3945] = 3241, + [3946] = 935, + [3947] = 3244, + [3948] = 3948, + [3949] = 510, + [3950] = 1990, + [3951] = 3929, + [3952] = 3952, + [3953] = 489, [3954] = 3954, - [3955] = 3912, - [3956] = 3887, - [3957] = 3897, + [3955] = 368, + [3956] = 3956, + [3957] = 444, [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, - [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, + [3959] = 680, + [3960] = 3960, + [3961] = 3929, + [3962] = 3952, + [3963] = 3958, + [3964] = 890, + [3965] = 3954, + [3966] = 3958, + [3967] = 948, + [3968] = 3807, + [3969] = 3808, + [3970] = 3929, + [3971] = 3952, + [3972] = 703, + [3973] = 3628, + [3974] = 3645, + [3975] = 2661, + [3976] = 918, + [3977] = 3958, + [3978] = 922, + [3979] = 3929, + [3980] = 3952, + [3981] = 923, + [3982] = 3982, + [3983] = 455, + [3984] = 3958, + [3985] = 961, + [3986] = 948, + [3987] = 3929, + [3988] = 3952, + [3989] = 462, + [3990] = 3180, + [3991] = 492, + [3992] = 3992, + [3993] = 3958, + [3994] = 3929, + [3995] = 3952, + [3996] = 462, + [3997] = 3929, + [3998] = 3952, + [3999] = 3999, + [4000] = 4000, + [4001] = 3181, + [4002] = 3958, + [4003] = 923, + [4004] = 3929, + [4005] = 3929, + [4006] = 3954, + [4007] = 3929, + [4008] = 3929, + [4009] = 961, + [4010] = 3929, + [4011] = 3992, + [4012] = 4012, + [4013] = 3929, + [4014] = 3929, + [4015] = 3929, + [4016] = 922, + [4017] = 333, + [4018] = 3929, + [4019] = 3929, + [4020] = 3929, + [4021] = 3954, + [4022] = 919, + [4023] = 4023, + [4024] = 3958, [4025] = 4025, - [4026] = 959, - [4027] = 2789, - [4028] = 333, - [4029] = 4029, - [4030] = 886, - [4031] = 960, - [4032] = 470, - [4033] = 4033, - [4034] = 3893, - [4035] = 459, - [4036] = 3912, - [4037] = 4037, - [4038] = 1980, - [4039] = 2081, - [4040] = 3893, - [4041] = 3893, - [4042] = 444, - [4043] = 470, - [4044] = 459, - [4045] = 4045, - [4046] = 4045, - [4047] = 3910, - [4048] = 4048, - [4049] = 4049, - [4050] = 4050, - [4051] = 442, - [4052] = 4052, - [4053] = 4053, - [4054] = 4054, - [4055] = 3137, - [4056] = 960, - [4057] = 967, - [4058] = 719, - [4059] = 338, - [4060] = 4060, - [4061] = 961, - [4062] = 931, - [4063] = 1807, - [4064] = 3139, - [4065] = 353, - [4066] = 4029, - [4067] = 1808, - [4068] = 4068, - [4069] = 4069, - [4070] = 4070, - [4071] = 720, - [4072] = 3140, - [4073] = 3142, - [4074] = 721, - [4075] = 722, - [4076] = 2517, - [4077] = 967, - [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, + [4026] = 3929, + [4027] = 4027, + [4028] = 490, + [4029] = 3952, + [4030] = 492, + [4031] = 4031, + [4032] = 497, + [4033] = 948, + [4034] = 919, + [4035] = 4035, + [4036] = 4036, + [4037] = 490, + [4038] = 923, + [4039] = 4039, + [4040] = 4040, + [4041] = 4039, + [4042] = 4042, + [4043] = 4043, + [4044] = 961, + [4045] = 2798, + [4046] = 492, + [4047] = 1990, + [4048] = 925, + [4049] = 1994, + [4050] = 919, + [4051] = 497, + [4052] = 925, + [4053] = 890, + [4054] = 898, + [4055] = 334, + [4056] = 455, + [4057] = 511, + [4058] = 3958, + [4059] = 3929, + [4060] = 4031, + [4061] = 3006, + [4062] = 3883, + [4063] = 462, + [4064] = 3956, + [4065] = 3898, + [4066] = 4027, + [4067] = 4067, + [4068] = 3399, + [4069] = 918, + [4070] = 444, + [4071] = 455, + [4072] = 922, + [4073] = 3007, + [4074] = 335, + [4075] = 3956, + [4076] = 3188, + [4077] = 497, + [4078] = 462, + [4079] = 672, + [4080] = 4080, + [4081] = 898, + [4082] = 3189, + [4083] = 925, + [4084] = 4036, + [4085] = 490, + [4086] = 455, + [4087] = 3788, + [4088] = 3789, + [4089] = 1015, + [4090] = 3124, [4091] = 4091, - [4092] = 4092, - [4093] = 4093, - [4094] = 4094, - [4095] = 4095, - [4096] = 724, - [4097] = 2945, - [4098] = 4098, - [4099] = 4099, - [4100] = 3144, + [4092] = 3952, + [4093] = 918, + [4094] = 3956, + [4095] = 890, + [4096] = 918, + [4097] = 679, + [4098] = 3124, + [4099] = 700, + [4100] = 698, [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, + [4102] = 4102, + [4103] = 2581, + [4104] = 4104, + [4105] = 4105, + [4106] = 923, + [4107] = 961, + [4108] = 4108, + [4109] = 4109, + [4110] = 919, + [4111] = 895, + [4112] = 925, + [4113] = 4113, + [4114] = 890, + [4115] = 898, + [4116] = 1015, + [4117] = 688, + [4118] = 689, + [4119] = 690, + [4120] = 884, + [4121] = 3717, + [4122] = 3748, + [4123] = 918, + [4124] = 922, + [4125] = 4125, + [4126] = 1777, + [4127] = 4127, [4128] = 4128, - [4129] = 4129, - [4130] = 937, - [4131] = 4131, + [4129] = 1790, + [4130] = 4130, + [4131] = 2592, [4132] = 4132, [4133] = 4133, - [4134] = 4016, - [4135] = 704, - [4136] = 4136, - [4137] = 4137, + [4134] = 4134, + [4135] = 1350, + [4136] = 1015, + [4137] = 4132, [4138] = 4138, [4139] = 4139, - [4140] = 343, - [4141] = 4050, + [4140] = 4140, + [4141] = 4141, [4142] = 4142, - [4143] = 948, - [4144] = 4144, - [4145] = 954, - [4146] = 960, + [4143] = 4143, + [4144] = 935, + [4145] = 4145, + [4146] = 3999, [4147] = 4147, - [4148] = 444, - [4149] = 4149, - [4150] = 360, - [4151] = 4151, - [4152] = 3918, - [4153] = 340, - [4154] = 4154, - [4155] = 2570, - [4156] = 4156, - [4157] = 961, - [4158] = 931, - [4159] = 941, - [4160] = 341, - [4161] = 342, - [4162] = 349, - [4163] = 695, - [4164] = 4164, - [4165] = 694, + [4148] = 901, + [4149] = 442, + [4150] = 923, + [4151] = 961, + [4152] = 4139, + [4153] = 4042, + [4154] = 888, + [4155] = 2888, + [4156] = 898, + [4157] = 1015, + [4158] = 4158, + [4159] = 4159, + [4160] = 1393, + [4161] = 4125, + [4162] = 918, + [4163] = 922, + [4164] = 373, + [4165] = 775, [4166] = 4166, - [4167] = 3997, - [4168] = 2540, - [4169] = 4050, - [4170] = 4170, - [4171] = 4092, - [4172] = 4172, + [4167] = 4167, + [4168] = 776, + [4169] = 777, + [4170] = 2521, + [4171] = 780, + [4172] = 2539, [4173] = 4173, - [4174] = 948, + [4174] = 4174, [4175] = 4175, - [4176] = 930, - [4177] = 954, - [4178] = 692, - [4179] = 4088, - [4180] = 4050, - [4181] = 1395, - [4182] = 4182, - [4183] = 675, + [4176] = 4176, + [4177] = 3999, + [4178] = 343, + [4179] = 4179, + [4180] = 4180, + [4181] = 2972, + [4182] = 2973, + [4183] = 784, [4184] = 4184, - [4185] = 4185, - [4186] = 698, - [4187] = 4187, - [4188] = 4188, - [4189] = 4189, + [4185] = 342, + [4186] = 940, + [4187] = 787, + [4188] = 789, + [4189] = 790, [4190] = 4190, - [4191] = 3714, - [4192] = 3715, - [4193] = 4050, - [4194] = 4194, - [4195] = 4195, + [4191] = 793, + [4192] = 2524, + [4193] = 4193, + [4194] = 869, + [4195] = 948, [4196] = 4196, - [4197] = 887, - [4198] = 4198, - [4199] = 4199, - [4200] = 958, - [4201] = 4201, - [4202] = 4202, - [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, + [4197] = 717, + [4198] = 718, + [4199] = 722, + [4200] = 723, + [4201] = 724, + [4202] = 725, + [4203] = 726, + [4204] = 923, + [4205] = 961, + [4206] = 2970, + [4207] = 2971, + [4208] = 4208, + [4209] = 919, + [4210] = 925, + [4211] = 4211, + [4212] = 890, + [4213] = 4213, + [4214] = 4214, + [4215] = 4215, [4216] = 4216, [4217] = 4217, - [4218] = 503, - [4219] = 886, + [4218] = 4218, + [4219] = 444, [4220] = 4220, - [4221] = 490, - [4222] = 960, - [4223] = 967, - [4224] = 4050, - [4225] = 4225, + [4221] = 4221, + [4222] = 344, + [4223] = 4223, + [4224] = 898, + [4225] = 4134, [4226] = 4226, - [4227] = 4227, - [4228] = 4228, - [4229] = 958, - [4230] = 4050, - [4231] = 4231, + [4227] = 345, + [4228] = 346, + [4229] = 4229, + [4230] = 918, + [4231] = 4132, [4232] = 4232, - [4233] = 1782, - [4234] = 888, - [4235] = 4235, - [4236] = 4236, + [4233] = 922, + [4234] = 4234, + [4235] = 4132, + [4236] = 339, [4237] = 4237, - [4238] = 4238, - [4239] = 4239, - [4240] = 4240, + [4238] = 340, + [4239] = 341, + [4240] = 938, [4241] = 4241, - [4242] = 4050, + [4242] = 4242, [4243] = 4243, [4244] = 4244, - [4245] = 503, - [4246] = 3532, + [4245] = 4132, + [4246] = 4246, [4247] = 4247, - [4248] = 3570, - [4249] = 961, - [4250] = 4250, + [4248] = 4248, + [4249] = 4249, + [4250] = 349, [4251] = 4251, [4252] = 4252, - [4253] = 931, - [4254] = 4050, - [4255] = 4232, - [4256] = 4256, - [4257] = 4257, + [4253] = 4253, + [4254] = 4254, + [4255] = 1796, + [4256] = 1824, + [4257] = 4132, [4258] = 4258, [4259] = 4259, [4260] = 4260, - [4261] = 4261, - [4262] = 960, - [4263] = 937, + [4261] = 930, + [4262] = 4262, + [4263] = 4263, [4264] = 4264, - [4265] = 4265, - [4266] = 351, + [4265] = 4132, + [4266] = 4266, [4267] = 4267, - [4268] = 3417, + [4268] = 4268, [4269] = 4269, [4270] = 4270, [4271] = 4271, [4272] = 4272, - [4273] = 4138, - [4274] = 357, - [4275] = 2927, - [4276] = 2530, - [4277] = 2928, - [4278] = 4278, - [4279] = 4084, + [4273] = 4159, + [4274] = 490, + [4275] = 702, + [4276] = 4132, + [4277] = 919, + [4278] = 492, + [4279] = 492, [4280] = 4280, - [4281] = 3131, - [4282] = 1357, - [4283] = 4050, - [4284] = 4284, + [4281] = 4281, + [4282] = 4282, + [4283] = 4132, + [4284] = 497, [4285] = 4285, - [4286] = 959, + [4286] = 4132, [4287] = 4287, - [4288] = 4288, - [4289] = 4289, + [4288] = 3600, + [4289] = 3563, [4290] = 4290, - [4291] = 500, + [4291] = 4132, [4292] = 4292, [4293] = 4293, - [4294] = 4294, - [4295] = 4295, - [4296] = 4296, + [4294] = 351, + [4295] = 4132, + [4296] = 4132, [4297] = 4297, [4298] = 4298, [4299] = 4299, - [4300] = 4300, - [4301] = 937, - [4302] = 4302, - [4303] = 490, - [4304] = 4304, - [4305] = 4185, - [4306] = 3105, + [4300] = 4132, + [4301] = 352, + [4302] = 898, + [4303] = 3982, + [4304] = 935, + [4305] = 4305, + [4306] = 4306, [4307] = 4307, [4308] = 4308, [4309] = 4309, - [4310] = 500, + [4310] = 3499, [4311] = 4311, [4312] = 4312, - [4313] = 4050, - [4314] = 503, - [4315] = 4050, - [4316] = 4316, - [4317] = 490, - [4318] = 368, + [4313] = 3180, + [4314] = 4221, + [4315] = 3181, + [4316] = 3128, + [4317] = 1805, + [4318] = 1806, [4319] = 4319, [4320] = 4320, [4321] = 4321, [4322] = 4322, - [4323] = 4133, + [4323] = 4323, [4324] = 4324, - [4325] = 4325, + [4325] = 490, [4326] = 4326, [4327] = 4327, [4328] = 4328, [4329] = 4329, [4330] = 4330, [4331] = 4331, - [4332] = 1792, - [4333] = 1793, + [4332] = 4332, + [4333] = 497, [4334] = 4334, - [4335] = 923, + [4335] = 4335, [4336] = 4336, - [4337] = 4337, + [4337] = 925, [4338] = 4338, [4339] = 4339, [4340] = 4340, [4341] = 4341, - [4342] = 500, - [4343] = 4050, + [4342] = 4342, + [4343] = 4343, [4344] = 4344, [4345] = 4345, - [4346] = 4346, + [4346] = 4211, [4347] = 4347, [4348] = 4348, - [4349] = 503, - [4350] = 941, + [4349] = 4349, + [4350] = 4350, [4351] = 4351, - [4352] = 4280, - [4353] = 490, - [4354] = 961, - [4355] = 4271, - [4356] = 4272, - [4357] = 931, - [4358] = 4267, - [4359] = 4359, - [4360] = 4280, - [4361] = 4271, - [4362] = 4272, - [4363] = 4267, - [4364] = 4364, + [4352] = 4352, + [4353] = 4353, + [4354] = 4354, + [4355] = 4355, + [4356] = 4356, + [4357] = 4357, + [4358] = 4358, + [4359] = 3188, + [4360] = 490, + [4361] = 3189, + [4362] = 4362, + [4363] = 3190, + [4364] = 3194, [4365] = 4365, - [4366] = 4050, + [4366] = 492, [4367] = 4367, - [4368] = 930, + [4368] = 497, [4369] = 4369, - [4370] = 4370, - [4371] = 4371, - [4372] = 4372, + [4370] = 4132, + [4371] = 4132, + [4372] = 4132, [4373] = 4373, - [4374] = 4374, - [4375] = 369, - [4376] = 4068, - [4377] = 924, + [4374] = 948, + [4375] = 922, + [4376] = 4012, + [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] = 4383, + [4384] = 4384, + [4385] = 4385, + [4386] = 4132, + [4387] = 4387, + [4388] = 490, + [4389] = 890, + [4390] = 3196, + [4391] = 492, + [4392] = 497, [4393] = 4393, - [4394] = 4324, - [4395] = 4330, + [4394] = 935, + [4395] = 4395, [4396] = 4396, - [4397] = 4322, - [4398] = 334, - [4399] = 4289, - [4400] = 676, - [4401] = 3054, - [4402] = 4402, - [4403] = 4307, + [4397] = 4397, + [4398] = 4377, + [4399] = 4399, + [4400] = 4127, + [4401] = 4128, + [4402] = 4184, + [4403] = 4403, [4404] = 4404, [4405] = 4405, - [4406] = 4226, - [4407] = 4407, - [4408] = 2916, - [4409] = 4331, - [4410] = 4227, - [4411] = 4411, - [4412] = 4294, + [4406] = 2530, + [4407] = 4237, + [4408] = 4377, + [4409] = 4127, + [4410] = 4128, + [4411] = 4184, + [4412] = 948, [4413] = 4413, - [4414] = 4339, - [4415] = 4336, - [4416] = 4257, - [4417] = 4340, - [4418] = 4348, - [4419] = 4351, - [4420] = 4049, - [4421] = 936, - [4422] = 4052, + [4414] = 4414, + [4415] = 4415, + [4416] = 4416, + [4417] = 4416, + [4418] = 4418, + [4419] = 4309, + [4420] = 4420, + [4421] = 4311, + [4422] = 930, [4423] = 4423, - [4424] = 949, - [4425] = 897, - [4426] = 898, - [4427] = 4053, - [4428] = 459, - [4429] = 4054, - [4430] = 4304, - [4431] = 4402, - [4432] = 4083, - [4433] = 4085, - [4434] = 4086, - [4435] = 4090, - [4436] = 916, - [4437] = 4091, - [4438] = 4438, - [4439] = 4439, - [4440] = 4093, - [4441] = 4441, - [4442] = 4094, - [4443] = 4098, - [4444] = 4259, - [4445] = 4445, - [4446] = 4446, - [4447] = 4393, + [4424] = 4271, + [4425] = 4425, + [4426] = 2193, + [4427] = 697, + [4428] = 455, + [4429] = 4429, + [4430] = 2521, + [4431] = 335, + [4432] = 4379, + [4433] = 4312, + [4434] = 4416, + [4435] = 3068, + [4436] = 936, + [4437] = 4437, + [4438] = 4420, + [4439] = 937, + [4440] = 939, + [4441] = 4213, + [4442] = 4353, + [4443] = 4354, + [4444] = 4380, + [4445] = 4355, + [4446] = 4356, + [4447] = 462, [4448] = 4448, - [4449] = 4449, - [4450] = 4450, - [4451] = 4451, - [4452] = 743, - [4453] = 744, - [4454] = 2570, - [4455] = 4325, - [4456] = 4326, - [4457] = 4327, - [4458] = 4328, - [4459] = 4329, + [4449] = 4282, + [4450] = 2539, + [4451] = 4357, + [4452] = 4358, + [4453] = 4133, + [4454] = 4214, + [4455] = 4216, + [4456] = 4456, + [4457] = 4457, + [4458] = 4458, + [4459] = 4381, [4460] = 4460, [4461] = 4461, - [4462] = 2173, - [4463] = 2174, - [4464] = 4464, - [4465] = 4378, - [4466] = 2176, - [4467] = 4467, - [4468] = 4407, - [4469] = 444, - [4470] = 2540, - [4471] = 4381, + [4462] = 4437, + [4463] = 4463, + [4464] = 3009, + [4465] = 4465, + [4466] = 4466, + [4467] = 4382, + [4468] = 4468, + [4469] = 4383, + [4470] = 4470, + [4471] = 4384, [4472] = 4472, - [4473] = 3128, - [4474] = 4413, - [4475] = 4446, - [4476] = 4287, - [4477] = 4288, - [4478] = 4297, - [4479] = 746, - [4480] = 747, - [4481] = 4337, - [4482] = 4482, - [4483] = 3003, - [4484] = 4484, - [4485] = 4485, - [4486] = 4338, - [4487] = 4101, - [4488] = 4110, - [4489] = 4129, - [4490] = 4381, - [4491] = 4292, - [4492] = 4136, - [4493] = 4413, - [4494] = 4137, - [4495] = 4142, + [4473] = 4253, + [4474] = 4474, + [4475] = 4475, + [4476] = 4385, + [4477] = 476, + [4478] = 4270, + [4479] = 2186, + [4480] = 4269, + [4481] = 933, + [4482] = 4306, + [4483] = 4138, + [4484] = 4387, + [4485] = 2950, + [4486] = 4420, + [4487] = 444, + [4488] = 4429, + [4489] = 906, + [4490] = 942, + [4491] = 4491, + [4492] = 4492, + [4493] = 3010, + [4494] = 2530, + [4495] = 4495, [4496] = 4496, - [4497] = 4381, - [4498] = 4413, - [4499] = 4446, - [4500] = 4334, - [4501] = 4381, + [4497] = 4497, + [4498] = 2592, + [4499] = 3071, + [4500] = 4500, + [4501] = 4501, [4502] = 4502, [4503] = 4503, - [4504] = 4070, - [4505] = 763, - [4506] = 764, - [4507] = 4149, - [4508] = 4151, - [4509] = 4381, - [4510] = 4172, - [4511] = 4175, - [4512] = 4413, - [4513] = 4217, - [4514] = 3005, - [4515] = 4299, - [4516] = 4302, - [4517] = 4309, - [4518] = 4311, - [4519] = 4341, - [4520] = 2530, - [4521] = 4144, - [4522] = 1358, - [4523] = 4156, - [4524] = 4524, - [4525] = 4164, + [4504] = 4140, + [4505] = 4505, + [4506] = 4506, + [4507] = 4142, + [4508] = 4508, + [4509] = 4319, + [4510] = 4320, + [4511] = 4321, + [4512] = 4322, + [4513] = 4513, + [4514] = 4323, + [4515] = 4515, + [4516] = 4516, + [4517] = 4324, + [4518] = 4437, + [4519] = 4519, + [4520] = 4520, + [4521] = 4521, + [4522] = 4522, + [4523] = 4266, + [4524] = 4420, + [4525] = 4429, [4526] = 4526, - [4527] = 4170, - [4528] = 4201, - [4529] = 4345, + [4527] = 444, + [4528] = 4528, + [4529] = 4529, [4530] = 4530, - [4531] = 4531, - [4532] = 1366, - [4533] = 4081, - [4534] = 4202, - [4535] = 4082, - [4536] = 943, - [4537] = 4537, - [4538] = 4316, - [4539] = 4539, - [4540] = 540, - [4541] = 4402, + [4531] = 4347, + [4532] = 4348, + [4533] = 4349, + [4534] = 4351, + [4535] = 4352, + [4536] = 4268, + [4537] = 728, + [4538] = 4229, + [4539] = 729, + [4540] = 4540, + [4541] = 4541, [4542] = 4542, - [4543] = 4543, - [4544] = 4544, - [4545] = 4346, - [4546] = 4095, - [4547] = 2148, - [4548] = 4099, + [4543] = 4416, + [4544] = 4267, + [4545] = 2581, + [4546] = 4546, + [4547] = 4456, + [4548] = 4362, [4549] = 4549, - [4550] = 4320, - [4551] = 4551, - [4552] = 3026, - [4553] = 4347, - [4554] = 3036, + [4550] = 903, + [4551] = 4308, + [4552] = 4367, + [4553] = 4326, + [4554] = 4554, [4555] = 4555, - [4556] = 951, - [4557] = 4557, + [4556] = 4327, + [4557] = 4331, [4558] = 4558, - [4559] = 4559, - [4560] = 4237, - [4561] = 4240, - [4562] = 4241, - [4563] = 4243, - [4564] = 4244, - [4565] = 4265, - [4566] = 4128, - [4567] = 4220, - [4568] = 4568, + [4559] = 3243, + [4560] = 4560, + [4561] = 917, + [4562] = 4562, + [4563] = 4563, + [4564] = 507, + [4565] = 4365, + [4566] = 4338, + [4567] = 2524, + [4568] = 4297, [4569] = 4569, - [4570] = 4570, - [4571] = 4571, - [4572] = 2517, - [4573] = 470, - [4574] = 2526, + [4570] = 2140, + [4571] = 732, + [4572] = 4572, + [4573] = 733, + [4574] = 486, [4575] = 4575, - [4576] = 4576, + [4576] = 4264, [4577] = 4577, - [4578] = 4578, - [4579] = 4579, - [4580] = 4580, - [4581] = 4581, - [4582] = 4225, - [4583] = 4583, - [4584] = 4264, - [4585] = 4212, - [4586] = 4586, - [4587] = 4587, - [4588] = 4588, - [4589] = 4589, - [4590] = 4590, + [4578] = 4260, + [4579] = 4130, + [4580] = 4416, + [4581] = 4290, + [4582] = 4503, + [4583] = 4393, + [4584] = 4584, + [4585] = 4395, + [4586] = 4343, + [4587] = 3050, + [4588] = 4344, + [4589] = 4396, + [4590] = 4298, [4591] = 4591, - [4592] = 4592, - [4593] = 4593, - [4594] = 444, + [4592] = 4420, + [4593] = 4258, + [4594] = 368, [4595] = 4595, - [4596] = 491, - [4597] = 4597, - [4598] = 442, - [4599] = 2191, - [4600] = 4381, - [4601] = 4485, - [4602] = 4602, - [4603] = 3053, - [4604] = 4228, - [4605] = 4373, - [4606] = 498, - [4607] = 4607, - [4608] = 4608, - [4609] = 4413, - [4610] = 4446, - [4611] = 4078, - [4612] = 1409, - [4613] = 4472, - [4614] = 4614, - [4615] = 4615, + [4596] = 4549, + [4597] = 4397, + [4598] = 4399, + [4599] = 4569, + [4600] = 4403, + [4601] = 3016, + [4602] = 4416, + [4603] = 4262, + [4604] = 442, + [4605] = 4605, + [4606] = 4606, + [4607] = 4414, + [4608] = 695, + [4609] = 4609, + [4610] = 4101, + [4611] = 4611, + [4612] = 4102, + [4613] = 4613, + [4614] = 4108, + [4615] = 4243, [4616] = 4616, [4617] = 4617, - [4618] = 4239, + [4618] = 4369, [4619] = 4619, - [4620] = 2541, - [4621] = 4413, - [4622] = 4622, - [4623] = 4623, - [4624] = 4624, + [4620] = 1409, + [4621] = 4420, + [4622] = 4429, + [4623] = 4254, + [4624] = 4272, [4625] = 4625, - [4626] = 4626, + [4626] = 4247, [4627] = 4627, [4628] = 4628, [4629] = 4629, - [4630] = 4630, - [4631] = 4631, - [4632] = 4632, - [4633] = 4633, - [4634] = 4629, + [4630] = 4263, + [4631] = 4292, + [4632] = 4457, + [4633] = 2187, + [4634] = 4634, [4635] = 4635, - [4636] = 4636, - [4637] = 4637, - [4638] = 4635, + [4636] = 4404, + [4637] = 4416, + [4638] = 4638, [4639] = 4639, - [4640] = 691, - [4641] = 339, + [4640] = 4405, + [4641] = 4641, [4642] = 4642, - [4643] = 4643, - [4644] = 4644, - [4645] = 4645, - [4646] = 4626, - [4647] = 4637, - [4648] = 4648, - [4649] = 4630, - [4650] = 4650, + [4643] = 4259, + [4644] = 4246, + [4645] = 4226, + [4646] = 2188, + [4647] = 4299, + [4648] = 4420, + [4649] = 766, + [4650] = 767, [4651] = 4651, - [4652] = 4652, - [4653] = 960, - [4654] = 4654, - [4655] = 4631, - [4656] = 4656, - [4657] = 4627, - [4658] = 4628, - [4659] = 4639, - [4660] = 941, - [4661] = 967, - [4662] = 4662, - [4663] = 4627, - [4664] = 4664, - [4665] = 4628, - [4666] = 4666, - [4667] = 4667, - [4668] = 4668, - [4669] = 961, + [4652] = 4345, + [4653] = 4653, + [4654] = 4293, + [4655] = 4655, + [4656] = 4335, + [4657] = 4657, + [4658] = 4472, + [4659] = 938, + [4660] = 4350, + [4661] = 4340, + [4662] = 4242, + [4663] = 1372, + [4664] = 4305, + [4665] = 4665, + [4666] = 4307, + [4667] = 4280, + [4668] = 1364, + [4669] = 4196, [4670] = 4670, - [4671] = 503, - [4672] = 4672, - [4673] = 931, + [4671] = 4671, + [4672] = 4670, + [4673] = 4673, [4674] = 4674, [4675] = 4675, - [4676] = 904, - [4677] = 937, - [4678] = 3016, - [4679] = 4648, - [4680] = 4651, + [4676] = 4676, + [4677] = 4677, + [4678] = 918, + [4679] = 922, + [4680] = 4670, [4681] = 4681, [4682] = 4682, [4683] = 4683, - [4684] = 4684, - [4685] = 4016, - [4686] = 4686, - [4687] = 4664, - [4688] = 4666, - [4689] = 4662, - [4690] = 4622, + [4684] = 4674, + [4685] = 890, + [4686] = 4675, + [4687] = 4687, + [4688] = 4688, + [4689] = 4689, + [4690] = 4690, [4691] = 4691, - [4692] = 4643, - [4693] = 4667, - [4694] = 4670, - [4695] = 948, - [4696] = 4672, - [4697] = 490, - [4698] = 886, + [4692] = 4692, + [4693] = 490, + [4694] = 4682, + [4695] = 4695, + [4696] = 4696, + [4697] = 4697, + [4698] = 4698, [4699] = 4699, - [4700] = 1043, + [4700] = 4700, [4701] = 4701, - [4702] = 4675, - [4703] = 4668, + [4702] = 4702, + [4703] = 3999, [4704] = 4704, [4705] = 4705, [4706] = 4706, [4707] = 4707, - [4708] = 4708, + [4708] = 919, [4709] = 4709, - [4710] = 3532, - [4711] = 3570, - [4712] = 4464, - [4713] = 954, - [4714] = 4633, - [4715] = 4715, - [4716] = 1510, - [4717] = 4717, - [4718] = 4707, + [4710] = 4710, + [4711] = 4711, + [4712] = 4671, + [4713] = 4670, + [4714] = 4714, + [4715] = 3128, + [4716] = 4716, + [4717] = 4699, + [4718] = 3017, [4719] = 4719, - [4720] = 2089, + [4720] = 4720, [4721] = 4721, - [4722] = 4644, - [4723] = 958, + [4722] = 1097, + [4723] = 921, [4724] = 4724, - [4725] = 4625, - [4726] = 4726, + [4725] = 4522, + [4726] = 926, [4727] = 4727, [4728] = 4728, [4729] = 4729, - [4730] = 3037, - [4731] = 3131, - [4732] = 4732, - [4733] = 351, - [4734] = 4645, - [4735] = 4735, + [4730] = 4716, + [4731] = 4731, + [4732] = 349, + [4733] = 4733, + [4734] = 4695, + [4735] = 4729, [4736] = 4736, - [4737] = 4724, - [4738] = 4704, - [4739] = 4625, - [4740] = 4705, - [4741] = 4741, - [4742] = 4742, - [4743] = 357, + [4737] = 3600, + [4738] = 3563, + [4739] = 4739, + [4740] = 1968, + [4741] = 4696, + [4742] = 961, + [4743] = 4739, [4744] = 4744, [4745] = 4745, - [4746] = 4626, - [4747] = 4691, - [4748] = 927, - [4749] = 4749, - [4750] = 955, - [4751] = 4751, - [4752] = 4706, - [4753] = 896, - [4754] = 4754, - [4755] = 4627, - [4756] = 4726, - [4757] = 4628, - [4758] = 4758, + [4746] = 4746, + [4747] = 4698, + [4748] = 4674, + [4749] = 4675, + [4750] = 4750, + [4751] = 4683, + [4752] = 696, + [4753] = 4753, + [4754] = 492, + [4755] = 351, + [4756] = 4756, + [4757] = 352, + [4758] = 4701, [4759] = 4759, - [4760] = 3093, - [4761] = 4761, - [4762] = 3095, - [4763] = 4726, - [4764] = 4764, + [4760] = 4760, + [4761] = 4731, + [4762] = 4671, + [4763] = 4709, + [4764] = 4710, [4765] = 4765, - [4766] = 4766, - [4767] = 4767, - [4768] = 4768, - [4769] = 470, + [4766] = 4711, + [4767] = 4706, + [4768] = 4714, + [4769] = 3011, [4770] = 4770, - [4771] = 4699, + [4771] = 932, [4772] = 4772, - [4773] = 459, - [4774] = 4774, - [4775] = 4625, - [4776] = 4726, - [4777] = 4626, - [4778] = 2082, - [4779] = 4726, - [4780] = 2083, - [4781] = 4686, - [4782] = 4719, - [4783] = 4783, - [4784] = 4715, + [4773] = 4773, + [4774] = 497, + [4775] = 4775, + [4776] = 4674, + [4777] = 4777, + [4778] = 4675, + [4779] = 4697, + [4780] = 4700, + [4781] = 4781, + [4782] = 953, + [4783] = 4704, + [4784] = 4705, [4785] = 4785, - [4786] = 500, - [4787] = 959, - [4788] = 4788, - [4789] = 4632, - [4790] = 925, + [4786] = 898, + [4787] = 4787, + [4788] = 4688, + [4789] = 4789, + [4790] = 1660, [4791] = 4791, [4792] = 4792, - [4793] = 4793, + [4793] = 1015, [4794] = 4794, - [4795] = 4795, + [4795] = 4689, [4796] = 4796, - [4797] = 4797, + [4797] = 3163, [4798] = 4798, - [4799] = 4798, - [4800] = 4792, - [4801] = 4801, - [4802] = 4802, + [4799] = 4799, + [4800] = 4753, + [4801] = 4756, + [4802] = 4772, [4803] = 4803, - [4804] = 4798, - [4805] = 4801, - [4806] = 4806, + [4804] = 4804, + [4805] = 925, + [4806] = 3210, [4807] = 4807, - [4808] = 4808, - [4809] = 4809, - [4810] = 4810, - [4811] = 4811, - [4812] = 4792, - [4813] = 4793, - [4814] = 4794, - [4815] = 4815, - [4816] = 4816, - [4817] = 4798, - [4818] = 4802, + [4808] = 4707, + [4809] = 1996, + [4810] = 4739, + [4811] = 1997, + [4812] = 4812, + [4813] = 455, + [4814] = 4814, + [4815] = 4773, + [4816] = 4775, + [4817] = 935, + [4818] = 462, [4819] = 4819, - [4820] = 4820, + [4820] = 4690, [4821] = 4821, - [4822] = 4801, + [4822] = 948, [4823] = 4823, - [4824] = 4792, - [4825] = 4791, - [4826] = 4809, - [4827] = 4827, + [4824] = 4824, + [4825] = 4691, + [4826] = 4739, + [4827] = 4739, [4828] = 4828, - [4829] = 4792, - [4830] = 4793, - [4831] = 4794, - [4832] = 4798, - [4833] = 4833, - [4834] = 4793, - [4835] = 4835, - [4836] = 4836, - [4837] = 4801, - [4838] = 4838, - [4839] = 4798, + [4829] = 4829, + [4830] = 4830, + [4831] = 4830, + [4832] = 4719, + [4833] = 923, + [4834] = 4834, + [4835] = 4720, + [4836] = 4671, + [4837] = 4837, + [4838] = 954, + [4839] = 4839, [4840] = 4840, - [4841] = 498, + [4841] = 4841, [4842] = 4842, - [4843] = 4792, - [4844] = 4793, - [4845] = 4794, - [4846] = 4798, - [4847] = 4801, + [4843] = 4843, + [4844] = 4844, + [4845] = 4845, + [4846] = 4846, + [4847] = 4847, [4848] = 4848, - [4849] = 4821, - [4850] = 4801, + [4849] = 4849, + [4850] = 4839, [4851] = 4851, - [4852] = 4819, + [4852] = 4852, [4853] = 4853, - [4854] = 4815, - [4855] = 4792, - [4856] = 4793, - [4857] = 4794, - [4858] = 4820, - [4859] = 4803, - [4860] = 4801, - [4861] = 4861, + [4854] = 4854, + [4855] = 4855, + [4856] = 4856, + [4857] = 4853, + [4858] = 4858, + [4859] = 4839, + [4860] = 4841, + [4861] = 4841, [4862] = 4862, [4863] = 4863, - [4864] = 4792, - [4865] = 4793, - [4866] = 4794, + [4864] = 4843, + [4865] = 4845, + [4866] = 4866, [4867] = 4867, - [4868] = 4868, - [4869] = 4801, - [4870] = 4870, + [4868] = 4843, + [4869] = 4849, + [4870] = 4840, [4871] = 4871, - [4872] = 4872, - [4873] = 4792, - [4874] = 4793, - [4875] = 4794, - [4876] = 4835, - [4877] = 491, - [4878] = 4801, - [4879] = 4879, - [4880] = 4792, - [4881] = 4793, - [4882] = 4794, - [4883] = 4801, - [4884] = 4851, - [4885] = 4801, - [4886] = 4809, - [4887] = 4792, - [4888] = 4793, - [4889] = 4794, - [4890] = 4793, + [4872] = 4854, + [4873] = 4855, + [4874] = 4856, + [4875] = 4841, + [4876] = 4876, + [4877] = 4877, + [4878] = 4878, + [4879] = 4845, + [4880] = 476, + [4881] = 4847, + [4882] = 4866, + [4883] = 4849, + [4884] = 4884, + [4885] = 4885, + [4886] = 4854, + [4887] = 4855, + [4888] = 4856, + [4889] = 4841, + [4890] = 4890, [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, + [4892] = 476, + [4893] = 4845, + [4894] = 4894, + [4895] = 2539, + [4896] = 4896, + [4897] = 4897, + [4898] = 4854, + [4899] = 4855, + [4900] = 4856, + [4901] = 4852, + [4902] = 4896, + [4903] = 4845, [4904] = 4904, - [4905] = 491, - [4906] = 4801, - [4907] = 4907, - [4908] = 4792, - [4909] = 4793, - [4910] = 4794, - [4911] = 4911, - [4912] = 4801, - [4913] = 4792, - [4914] = 4793, - [4915] = 4794, - [4916] = 4916, + [4905] = 4840, + [4906] = 4841, + [4907] = 4856, + [4908] = 4854, + [4909] = 4855, + [4910] = 4856, + [4911] = 4845, + [4912] = 4912, + [4913] = 4845, + [4914] = 4845, + [4915] = 4915, + [4916] = 4884, [4917] = 4917, - [4918] = 4851, - [4919] = 4811, - [4920] = 4920, - [4921] = 4921, - [4922] = 4922, - [4923] = 4923, - [4924] = 4924, - [4925] = 4808, - [4926] = 4809, - [4927] = 4867, + [4918] = 4854, + [4919] = 4855, + [4920] = 4856, + [4921] = 4885, + [4922] = 4878, + [4923] = 4845, + [4924] = 4915, + [4925] = 4854, + [4926] = 4855, + [4927] = 4856, [4928] = 4928, - [4929] = 4929, - [4930] = 4930, - [4931] = 4879, - [4932] = 4932, - [4933] = 4933, - [4934] = 4809, - [4935] = 2530, - [4936] = 498, - [4937] = 4937, - [4938] = 4827, - [4939] = 4792, - [4940] = 4793, - [4941] = 4929, - [4942] = 4806, - [4943] = 4943, - [4944] = 4870, - [4945] = 4794, - [4946] = 4851, - [4947] = 4929, - [4948] = 491, - [4949] = 4797, - [4950] = 4950, + [4929] = 4863, + [4930] = 4845, + [4931] = 4853, + [4932] = 4854, + [4933] = 4855, + [4934] = 4856, + [4935] = 4935, + [4936] = 4845, + [4937] = 486, + [4938] = 4854, + [4939] = 4855, + [4940] = 4856, + [4941] = 4941, + [4942] = 4942, + [4943] = 4845, + [4944] = 4944, + [4945] = 4854, + [4946] = 4855, + [4947] = 4856, + [4948] = 4849, + [4949] = 4915, + [4950] = 4845, [4951] = 4951, - [4952] = 4823, - [4953] = 4933, - [4954] = 4954, - [4955] = 4797, - [4956] = 4794, - [4957] = 4957, - [4958] = 4820, - [4959] = 4959, - [4960] = 4960, - [4961] = 4819, - [4962] = 4823, - [4963] = 930, - [4964] = 4803, - [4965] = 4965, - [4966] = 4966, - [4967] = 4967, - [4968] = 4798, - [4969] = 2570, - [4970] = 4802, + [4952] = 4854, + [4953] = 4855, + [4954] = 4856, + [4955] = 4955, + [4956] = 4845, + [4957] = 4862, + [4958] = 4854, + [4959] = 4855, + [4960] = 4856, + [4961] = 4867, + [4962] = 4845, + [4963] = 4846, + [4964] = 4854, + [4965] = 4855, + [4966] = 4856, + [4967] = 4839, + [4968] = 4968, + [4969] = 4807, + [4970] = 4970, [4971] = 4971, - [4972] = 4770, - [4973] = 4921, - [4974] = 4820, - [4975] = 4797, - [4976] = 4803, - [4977] = 4977, - [4978] = 4791, - [4979] = 4802, - [4980] = 4809, - [4981] = 4922, + [4972] = 4972, + [4973] = 4973, + [4974] = 4890, + [4975] = 4975, + [4976] = 4976, + [4977] = 930, + [4978] = 4885, + [4979] = 4852, + [4980] = 4980, + [4981] = 4955, [4982] = 4982, - [4983] = 4827, - [4984] = 4806, - [4985] = 4920, - [4986] = 4932, - [4987] = 2517, - [4988] = 4801, - [4989] = 4989, - [4990] = 4801, - [4991] = 4991, - [4992] = 4851, - [4993] = 4797, - [4994] = 4810, - [4995] = 4929, - [4996] = 4996, - [4997] = 4997, - [4998] = 4916, - [4999] = 2541, - [5000] = 4862, - [5001] = 4791, + [4983] = 4983, + [4984] = 4970, + [4985] = 4849, + [4986] = 4844, + [4987] = 4854, + [4988] = 4849, + [4989] = 4846, + [4990] = 4990, + [4991] = 4855, + [4992] = 4852, + [4993] = 4993, + [4994] = 4848, + [4995] = 4856, + [4996] = 4877, + [4997] = 4845, + [4998] = 4854, + [4999] = 4840, + [5000] = 5000, + [5001] = 4839, [5002] = 5002, - [5003] = 4809, - [5004] = 4933, + [5003] = 5003, + [5004] = 890, [5005] = 5005, - [5006] = 4827, - [5007] = 5007, - [5008] = 4819, - [5009] = 4791, - [5010] = 4863, - [5011] = 4810, - [5012] = 4929, - [5013] = 4820, - [5014] = 4809, - [5015] = 4929, - [5016] = 4803, - [5017] = 5017, - [5018] = 4797, - [5019] = 4871, - [5020] = 4801, - [5021] = 5021, - [5022] = 4792, - [5023] = 4836, - [5024] = 5024, - [5025] = 4807, - [5026] = 2526, - [5027] = 4808, - [5028] = 4793, - [5029] = 4801, - [5030] = 5030, - [5031] = 4794, - [5032] = 4851, - [5033] = 4836, - [5034] = 4827, - [5035] = 5035, - [5036] = 4967, - [5037] = 4794, - [5038] = 4997, - [5039] = 4862, - [5040] = 4840, - [5041] = 4809, - [5042] = 4823, - [5043] = 4929, - [5044] = 4797, - [5045] = 936, - [5046] = 4827, - [5047] = 4809, - [5048] = 498, - [5049] = 4827, - [5050] = 4851, - [5051] = 4797, - [5052] = 4891, - [5053] = 4929, - [5054] = 4797, - [5055] = 4810, - [5056] = 4809, - [5057] = 4916, - [5058] = 4920, - [5059] = 4921, - [5060] = 4922, - [5061] = 4819, - [5062] = 886, - [5063] = 4959, - [5064] = 4943, - [5065] = 4803, - [5066] = 4929, - [5067] = 4798, - [5068] = 4928, - [5069] = 500, - [5070] = 4793, - [5071] = 4802, - [5072] = 4794, - [5073] = 503, - [5074] = 4820, - [5075] = 490, - [5076] = 4792, - [5077] = 4996, - [5078] = 4793, - [5079] = 4794, - [5080] = 4809, - [5081] = 4820, - [5082] = 4823, - [5083] = 4967, - [5084] = 4791, - [5085] = 4816, - [5086] = 5021, + [5006] = 4839, + [5007] = 4851, + [5008] = 476, + [5009] = 4849, + [5010] = 4853, + [5011] = 4841, + [5012] = 5012, + [5013] = 5013, + [5014] = 4976, + [5015] = 5003, + [5016] = 4849, + [5017] = 4876, + [5018] = 4942, + [5019] = 5019, + [5020] = 5020, + [5021] = 4843, + [5022] = 4843, + [5023] = 5023, + [5024] = 4847, + [5025] = 4846, + [5026] = 4885, + [5027] = 4897, + [5028] = 4841, + [5029] = 5029, + [5030] = 4975, + [5031] = 5031, + [5032] = 5032, + [5033] = 4970, + [5034] = 4972, + [5035] = 5002, + [5036] = 4983, + [5037] = 5037, + [5038] = 4845, + [5039] = 5012, + [5040] = 5040, + [5041] = 4915, + [5042] = 5042, + [5043] = 4968, + [5044] = 4855, + [5045] = 4846, + [5046] = 4849, + [5047] = 5037, + [5048] = 4846, + [5049] = 4871, + [5050] = 4975, + [5051] = 4843, + [5052] = 2521, + [5053] = 4951, + [5054] = 4839, + [5055] = 4862, + [5056] = 5056, + [5057] = 5057, + [5058] = 4867, + [5059] = 5013, + [5060] = 4852, + [5061] = 5061, + [5062] = 4915, + [5063] = 5031, + [5064] = 4854, + [5065] = 5061, + [5066] = 4855, + [5067] = 4856, + [5068] = 5068, + [5069] = 5069, + [5070] = 5070, + [5071] = 4866, + [5072] = 4840, + [5073] = 4847, + [5074] = 5023, + [5075] = 4839, + [5076] = 5076, + [5077] = 5077, + [5078] = 5076, + [5079] = 5000, + [5080] = 4851, + [5081] = 5081, + [5082] = 5082, + [5083] = 4885, + [5084] = 2592, + [5085] = 486, + [5086] = 4853, [5087] = 5087, - [5088] = 5002, - [5089] = 4943, - [5090] = 4868, - [5091] = 4870, - [5092] = 4960, - [5093] = 5002, - [5094] = 4916, - [5095] = 4920, - [5096] = 4921, - [5097] = 4922, - [5098] = 4797, - [5099] = 4943, - [5100] = 4791, - [5101] = 4827, - [5102] = 5102, - [5103] = 5103, - [5104] = 4871, - [5105] = 4798, - [5106] = 4916, - [5107] = 4920, - [5108] = 4921, - [5109] = 4922, - [5110] = 4916, - [5111] = 4920, - [5112] = 4921, - [5113] = 4922, - [5114] = 4916, - [5115] = 4920, - [5116] = 4921, - [5117] = 4922, - [5118] = 4916, - [5119] = 4921, - [5120] = 4922, - [5121] = 4916, - [5122] = 4921, - [5123] = 4922, - [5124] = 4916, - [5125] = 4921, - [5126] = 4922, - [5127] = 4916, - [5128] = 4921, - [5129] = 4922, - [5130] = 4916, - [5131] = 4921, - [5132] = 4922, - [5133] = 4916, - [5134] = 4921, - [5135] = 4922, - [5136] = 4916, - [5137] = 4921, - [5138] = 4922, - [5139] = 4916, - [5140] = 4921, - [5141] = 4922, - [5142] = 4916, - [5143] = 4921, - [5144] = 4922, - [5145] = 4916, - [5146] = 4921, - [5147] = 4922, - [5148] = 4916, - [5149] = 4921, - [5150] = 4922, - [5151] = 4916, - [5152] = 4921, - [5153] = 4922, - [5154] = 4916, - [5155] = 4921, - [5156] = 4922, - [5157] = 4823, - [5158] = 4801, - [5159] = 5035, - [5160] = 4810, - [5161] = 5161, - [5162] = 5162, - [5163] = 4828, - [5164] = 4924, - [5165] = 5165, - [5166] = 5166, - [5167] = 4904, - [5168] = 4907, - [5169] = 5169, - [5170] = 5170, - [5171] = 5171, - [5172] = 4819, - [5173] = 5173, - [5174] = 4803, - [5175] = 4798, - [5176] = 4929, - [5177] = 4809, - [5178] = 4811, - [5179] = 4795, - [5180] = 4797, - [5181] = 4792, - [5182] = 4802, - [5183] = 4806, - [5184] = 4827, - [5185] = 4819, - [5186] = 5186, - [5187] = 4793, - [5188] = 4794, - [5189] = 4795, - [5190] = 4816, - [5191] = 4929, - [5192] = 4989, - [5193] = 4823, - [5194] = 4967, - [5195] = 4836, - [5196] = 4802, - [5197] = 4950, - [5198] = 4868, - [5199] = 4872, - [5200] = 5002, - [5201] = 2540, - [5202] = 4792, - [5203] = 5203, + [5088] = 5069, + [5089] = 4841, + [5090] = 2524, + [5091] = 4885, + [5092] = 5092, + [5093] = 5093, + [5094] = 4975, + [5095] = 4852, + [5096] = 4843, + [5097] = 4849, + [5098] = 5098, + [5099] = 4852, + [5100] = 4839, + [5101] = 4847, + [5102] = 4846, + [5103] = 486, + [5104] = 5104, + [5105] = 4993, + [5106] = 4968, + [5107] = 4972, + [5108] = 4973, + [5109] = 4890, + [5110] = 4845, + [5111] = 5111, + [5112] = 4848, + [5113] = 4844, + [5114] = 490, + [5115] = 4855, + [5116] = 4851, + [5117] = 4847, + [5118] = 492, + [5119] = 5119, + [5120] = 497, + [5121] = 4975, + [5122] = 4854, + [5123] = 5123, + [5124] = 4915, + [5125] = 5125, + [5126] = 4845, + [5127] = 4842, + [5128] = 4852, + [5129] = 4856, + [5130] = 4866, + [5131] = 5131, + [5132] = 5003, + [5133] = 5133, + [5134] = 4855, + [5135] = 4856, + [5136] = 4885, + [5137] = 4982, + [5138] = 5138, + [5139] = 4849, + [5140] = 2530, + [5141] = 4849, + [5142] = 5142, + [5143] = 4846, + [5144] = 5032, + [5145] = 5145, + [5146] = 4846, + [5147] = 4968, + [5148] = 4972, + [5149] = 4973, + [5150] = 4890, + [5151] = 938, + [5152] = 4848, + [5153] = 4975, + [5154] = 4853, + [5155] = 4968, + [5156] = 4972, + [5157] = 4973, + [5158] = 4890, + [5159] = 4968, + [5160] = 4972, + [5161] = 4973, + [5162] = 4890, + [5163] = 4968, + [5164] = 4972, + [5165] = 4973, + [5166] = 4890, + [5167] = 4968, + [5168] = 4973, + [5169] = 4890, + [5170] = 4968, + [5171] = 4973, + [5172] = 4890, + [5173] = 4968, + [5174] = 4973, + [5175] = 4890, + [5176] = 4968, + [5177] = 4973, + [5178] = 4890, + [5179] = 4968, + [5180] = 4973, + [5181] = 4890, + [5182] = 4968, + [5183] = 4973, + [5184] = 4890, + [5185] = 4968, + [5186] = 4973, + [5187] = 4890, + [5188] = 4968, + [5189] = 4973, + [5190] = 4890, + [5191] = 4968, + [5192] = 4973, + [5193] = 4890, + [5194] = 4968, + [5195] = 4973, + [5196] = 4890, + [5197] = 4968, + [5198] = 4973, + [5199] = 4890, + [5200] = 4968, + [5201] = 4973, + [5202] = 4890, + [5203] = 4968, + [5204] = 4973, + [5205] = 4890, + [5206] = 4968, + [5207] = 4973, + [5208] = 4890, + [5209] = 4845, + [5210] = 4852, + [5211] = 4917, + [5212] = 4845, + [5213] = 4844, + [5214] = 4951, + [5215] = 5111, + [5216] = 4852, + [5217] = 4854, + [5218] = 4915, + [5219] = 4912, + [5220] = 4854, + [5221] = 4855, + [5222] = 4855, + [5223] = 4856, + [5224] = 4856, + [5225] = 4849, + [5226] = 5037, + [5227] = 4846, + [5228] = 4851, + [5229] = 4973, + [5230] = 4975, + [5231] = 5231, + [5232] = 4839, + [5233] = 4840, + [5234] = 2581, + [5235] = 4852, + [5236] = 4841, + [5237] = 4871, + [5238] = 4854, + [5239] = 4854, + [5240] = 4855, + [5241] = 4856, + [5242] = 4878, + [5243] = 4847, + [5244] = 5231, + [5245] = 4840, + [5246] = 4871, + [5247] = 4876, + [5248] = 4878, + [5249] = 4942, + [5250] = 5069, + [5251] = 4839, + [5252] = 4851, + [5253] = 4851, + [5254] = 4853, + [5255] = 5231, + [5256] = 4841, + [5257] = 5257, + [5258] = 5258, }; static const TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -10679,72 +10749,72 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1720, + '"', 1687, + '#', 2190, + '$', 1512, + '&', 826, + '\'', 1690, + '(', 1563, + ')', 1618, + '*', 1114, + '+', 1119, + ',', 1471, + '-', 1120, + '.', 1723, + '/', 1116, + ':', 1715, + ';', 1453, + '<', 1143, + '=', 675, + '>', 1146, + '?', 1719, + '@', 1483, + '[', 1667, + ']', 1468, + '^', 1733, + '_', 1504, + '`', 1694, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(571); + lookahead == ' ') SKIP(570); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1373); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1375); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1450); END_STATE(); case 2: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1718, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1724, - ':', 1463, - ';', 1451, - '<', 1141, - '=', 673, - '>', 1479, - '?', 1717, - '@', 1481, - '[', 1465, - ']', 1466, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1720, + '#', 2190, + '$', 1472, + '(', 1469, + ')', 1470, + ',', 1471, + '-', 1489, + '.', 1726, + ':', 1465, + ';', 1453, + '<', 1143, + '=', 675, + '>', 1481, + '?', 1719, + '@', 1483, + '[', 1467, + ']', 1468, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); @@ -10754,30 +10824,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || '.' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '`') ADVANCE(1373); + lookahead != '`') ADVANCE(1375); END_STATE(); case 3: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1718, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1725, - ':', 1463, - ';', 1451, - '=', 673, - '>', 1479, - '?', 1717, - '[', 1465, - ']', 1466, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1720, + '#', 2190, + '$', 1472, + '(', 1469, + ')', 1470, + ',', 1471, + '-', 1489, + '.', 1727, + ':', 1465, + ';', 1453, + '=', 675, + '>', 1481, + '?', 1719, + '[', 1467, + ']', 1468, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); @@ -10788,1779 +10858,1739 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ':' || '@' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '`') ADVANCE(1373); + lookahead != '`') ADVANCE(1375); END_STATE(); case 4: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1718, - '#', 2188, - ')', 1468, - '.', 1720, - ':', 1713, - ';', 1451, - '=', 323, - '?', 1717, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1720, + '#', 2190, + ')', 1470, + '.', 1722, + ':', 1715, + ';', 1453, + '=', 322, + '?', 1719, + 'a', 420, + 'e', 287, + 'i', 386, + 'o', 288, + 'x', 430, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(4); END_STATE(); case 5: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1718, - '#', 2188, - ')', 1468, - '.', 1722, - ':', 1713, - ';', 1451, - '=', 323, - '?', 1717, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1720, + '#', 2190, + ')', 1470, + '.', 1724, + ':', 1715, + ';', 1453, + '=', 322, + '?', 1719, + 'a', 420, + 'e', 287, + 'i', 386, + 'o', 288, + 'x', 430, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(4); END_STATE(); case 6: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '$', 1472, + '(', 1563, + '*', 1514, + '+', 1578, + '-', 1495, + '.', 1606, + '/', 1569, + '<', 1552, + '=', 1797, + '>', 1482, + '_', 1815, + 'a', 1867, + 'b', 1854, + 'e', 1868, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1881, + 's', 1901, + 'x', 1873, + '{', 1500, ); 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); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); END_STATE(); case 7: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '$', 1472, + '(', 1563, + '*', 1514, + '+', 1578, + '-', 1495, + '.', 1817, + '/', 1569, + '<', 1552, + '=', 1797, + '>', 1482, + '_', 1815, + 'a', 1867, + 'b', 1854, + 'e', 1868, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1881, + 's', 1901, + 'x', 1873, + '{', 1500, ); 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); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); END_STATE(); case 8: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1597, + '/', 1569, + '<', 1552, + '=', 1797, + '>', 1482, + 'B', 1655, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'a', 1867, + 'b', 1658, + 'd', 1826, + 'e', 1807, + 'g', 1811, + 'h', 1824, + 'i', 1865, + 'k', 1811, + 'l', 1853, + 'm', 1813, + 'n', 1874, + 'o', 1881, + 'p', 1811, + 's', 1840, + 't', 1811, + 'u', 1893, + 'w', 1860, + 'x', 1873, + '{', 1500, + 0xb5, 1893, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - 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(1936); END_STATE(); case 9: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1597, + '/', 1569, + '<', 1552, + '=', 1797, + '>', 1482, + 'E', 1821, + 'a', 1867, + 'b', 1854, + 'e', 1818, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1881, + 's', 1901, + 'x', 1873, + '{', 1500, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - 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(1936); END_STATE(); case 10: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + '<', 1552, + '=', 1797, + '>', 1482, + 'B', 1655, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + '_', 1815, + 'a', 1867, + 'b', 1658, + 'd', 1826, + 'e', 1807, + 'g', 1811, + 'h', 1824, + 'i', 1865, + 'k', 1811, + 'l', 1853, + 'm', 1813, + 'n', 1874, + 'o', 1881, + 'p', 1811, + 's', 1840, + 't', 1811, + 'u', 1893, + 'w', 1860, + 'x', 1873, + '{', 1500, + 0xb5, 1893, ); 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); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 11: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + '<', 1552, + '=', 1797, + '>', 1482, + 'B', 1655, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'a', 1867, + 'b', 1658, + 'd', 1826, + 'e', 1807, + 'g', 1811, + 'h', 1824, + 'i', 1865, + 'k', 1811, + 'l', 1853, + 'm', 1813, + 'n', 1874, + 'o', 1881, + 'p', 1811, + 's', 1840, + 't', 1811, + 'u', 1893, + 'w', 1860, + 'x', 1873, + '{', 1500, + 0xb5, 1893, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - 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(1936); END_STATE(); case 12: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + '<', 1552, + '=', 1797, + '>', 1482, + 'B', 1655, + 'E', 1812, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'a', 1867, + 'b', 1658, + 'd', 1826, + 'e', 1810, + 'g', 1811, + 'h', 1824, + 'i', 1865, + 'k', 1811, + 'l', 1853, + 'm', 1813, + 'n', 1874, + 'o', 1881, + 'p', 1811, + 's', 1840, + 't', 1811, + 'u', 1893, + 'w', 1860, + 'x', 1873, + '{', 1500, + 0xb5, 1893, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - 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(1936); END_STATE(); case 13: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + '<', 1552, + '=', 1797, + '>', 1482, + 'E', 1821, + '_', 1815, + 'a', 1867, + 'b', 1854, + 'e', 1818, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1881, + 's', 1901, + 'x', 1873, + '{', 1500, ); 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); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 14: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + '<', 1552, + '=', 1797, + '>', 1482, + 'E', 1821, + 'a', 1867, + 'b', 1854, + 'e', 1818, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1881, + 's', 1901, + 'x', 1873, + '{', 1500, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - 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(1936); END_STATE(); case 15: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + '<', 1552, + '=', 1797, + '>', 1482, + 'a', 1867, + 'b', 1854, + 'e', 1868, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1881, + 's', 1901, + 'x', 1873, + '{', 1500, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - 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(1936); END_STATE(); case 16: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1596, + '/', 1569, + '<', 1552, + '=', 1797, + '>', 1482, + 'E', 1821, + 'a', 1867, + 'b', 1854, + 'e', 1818, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1881, + 's', 1901, + 'x', 1873, + '{', 1500, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - 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(1936); END_STATE(); case 17: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + '<', 1552, + '=', 1797, + '>', 1482, + 'E', 1821, + '_', 1815, + 'a', 1867, + 'b', 1854, + 'e', 1818, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1881, + 's', 1901, + 'x', 1873, + '{', 1500, ); 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); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 18: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + '<', 1552, + '=', 1797, + '>', 1482, + 'E', 1821, + 'a', 1867, + 'b', 1854, + 'e', 1818, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1881, + 's', 1901, + 'x', 1873, + '{', 1500, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - 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(1936); END_STATE(); case 19: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + '<', 1552, + '=', 1797, + '>', 1482, + 'a', 1867, + 'b', 1854, + 'e', 1868, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1881, + 's', 1901, + 'x', 1873, + '{', 1500, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - 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(1936); END_STATE(); case 20: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 319, + '#', 2190, + '$', 1472, + '*', 1514, + '+', 1579, + '-', 1496, + '.', 336, + '/', 1569, + '<', 1552, + '=', 321, + '>', 1482, + 'a', 420, + 'b', 399, + 'e', 424, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 451, + 's', 485, + 'x', 430, + '{', 1500, ); if (lookahead == '\t' || lookahead == ' ') SKIP(20); END_STATE(); case 21: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 319, + '#', 2190, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 321, + '>', 1482, + 'a', 420, + 'b', 399, + 'e', 284, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 278, + 's', 485, + 'x', 430, + '|', 1454, ); if (lookahead == '\t' || lookahead == ' ') SKIP(21); END_STATE(); case 22: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, + '!', 319, + '#', 2190, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 321, + '>', 1482, + 'a', 420, + 'b', 399, + 'e', 286, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 288, + 's', 485, + 'x', 430, + '|', 1454, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); END_STATE(); case 23: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '!', 319, + '#', 2190, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + ':', 1715, + ';', 1453, + '<', 1552, + '=', 321, + '>', 1482, + 'a', 420, + 'b', 399, + 'e', 284, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 278, + 's', 485, + 'x', 430, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); END_STATE(); case 24: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '!', 319, + '#', 2190, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 321, + '>', 1482, + 'a', 420, + 'b', 399, + 'e', 284, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 278, + 's', 485, + 'x', 430, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); END_STATE(); case 25: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '!', 319, + '#', 2190, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 321, + '>', 1482, + 'a', 420, + 'b', 399, + 'e', 286, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 288, + 's', 485, + 'x', 430, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); END_STATE(); case 26: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, + '!', 319, + '#', 2190, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + '<', 1552, + '=', 321, + '>', 1482, + 'a', 420, + 'b', 399, + 'e', 284, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 278, + 's', 485, + 'x', 430, + '|', 1454, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); END_STATE(); case 27: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, + '!', 319, + '#', 2190, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + '<', 1552, + '=', 321, + '>', 1482, + 'a', 420, + 'b', 399, + 'e', 286, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 288, + 's', 485, + 'x', 430, + '|', 1454, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); END_STATE(); case 28: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, - '{', 1498, + '!', 319, + '#', 2190, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + '<', 1552, + '=', 321, + '>', 1482, + 'a', 420, + 'b', 399, + 'e', 424, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 451, + 's', 485, + 'x', 430, + '{', 1500, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); END_STATE(); case 29: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + ')', 1470, + '+', 704, + '-', 1493, + '.', 699, + '0', 1625, + ':', 1715, + ';', 1453, + '=', 1731, + '@', 1464, + 'I', 811, + 'N', 807, + '[', 1467, + '^', 1733, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 771, + 't', 774, + 'u', 787, + 'w', 749, + '{', 1500, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(826); END_STATE(); case 30: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + ')', 1470, + '+', 704, + '-', 1493, + '.', 699, + '0', 1625, + ':', 1715, + ';', 1453, + '@', 1464, + 'I', 811, + 'N', 807, + '[', 1467, + '^', 1733, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 771, + 't', 774, + 'u', 787, + 'w', 749, + '{', 1500, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(826); END_STATE(); case 31: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + ')', 1470, + '+', 1582, + '-', 1493, + '.', 700, + '0', 1625, + ':', 1465, + ';', 1453, + '<', 1143, + '=', 322, + '>', 1481, + '@', 1464, + 'I', 811, + 'N', 807, + '[', 1467, + ']', 1468, + '^', 1733, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 771, + 't', 774, + 'u', 787, + 'w', 749, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead)) ADVANCE(824); + (lookahead < '+' || '.' < lookahead)) ADVANCE(826); END_STATE(); case 32: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + ')', 1470, + '+', 1582, + '-', 1493, + '.', 700, + '0', 1625, + ':', 1465, + ';', 1453, + '=', 322, + '>', 1481, + '@', 1464, + 'I', 811, + 'N', 807, + '[', 1467, + ']', 1468, + '^', 1733, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 771, + 't', 774, + 'u', 787, + 'w', 749, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead)) ADVANCE(824); + (lookahead < '0' || '>' < lookahead)) ADVANCE(826); END_STATE(); case 33: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ';', 1451, - '=', 1729, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, - '\t', 1450, - ' ', 1450, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + '+', 704, + '-', 1493, + '.', 699, + '0', 1625, + ';', 1453, + '=', 1731, + 'I', 811, + 'N', 807, + '[', 1467, + '^', 1733, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 771, + 't', 774, + 'u', 787, + 'w', 753, + '{', 1500, + '\t', 1452, + ' ', 1452, ); - 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(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); END_STATE(); case 34: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - '=', 673, - '>', 1479, - '@', 1481, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + '+', 704, + '-', 1493, + '.', 699, + '0', 1625, + '=', 675, + '>', 1481, + '@', 1483, + 'I', 811, + 'N', 807, + '[', 1467, + '^', 1733, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 771, + 't', 774, + 'u', 787, + 'w', 753, + '{', 1500, ); if (lookahead == '\t' || lookahead == ' ') SKIP(35); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(826); END_STATE(); case 35: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + '+', 704, + '-', 1493, + '.', 699, + '0', 1625, + '=', 675, + '>', 1481, + 'I', 811, + 'N', 807, + '[', 1467, + '^', 1733, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 771, + 't', 774, + 'u', 787, + 'w', 753, + '{', 1500, ); 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(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); END_STATE(); case 36: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + '+', 704, + '-', 298, + '.', 720, + '=', 1731, + 'I', 811, + 'N', 807, + '[', 1467, + ']', 1468, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 800, + 't', 774, + 'u', 787, + 'w', 753, + '{', 1500, ); 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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); END_STATE(); case 37: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + '+', 704, + '-', 298, + '.', 720, + 'I', 811, + 'N', 807, + '[', 1467, + ']', 1468, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 800, + 't', 774, + 'u', 787, + 'w', 753, + '{', 1500, ); 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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); END_STATE(); case 38: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 299, - '.', 718, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + '+', 307, + '-', 1493, + '.', 308, + '0', 1628, + ':', 1715, + 'N', 532, + '[', 1467, + '_', 341, + '`', 1694, + 'f', 346, + 'n', 441, + 't', 456, + '{', 1500, ); if (lookahead == '\t' || lookahead == ' ') SKIP(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); END_STATE(); case 39: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + '+', 1582, + '-', 1493, + '.', 703, + '0', 1630, + 'I', 811, + 'N', 807, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 800, + 't', 774, + 'u', 787, + 'w', 753, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(542); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); END_STATE(); case 40: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + '+', 2002, + '-', 1493, + '.', 2000, + '0', 1626, + 'N', 2049, + '[', 1467, + '_', 2014, + '`', 1694, + 'f', 2017, + 'n', 2029, + 't', 2032, + '{', 1500, ); 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); - END_STATE(); - case 41: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 1491, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2027, - 't', 2030, - '{', 1498, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(41); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2053); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2072); END_STATE(); - case 42: + case 41: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + '+', 2002, + '-', 1490, + '.', 2001, + '0', 1626, + ':', 1715, + ';', 1453, + 'N', 2049, + '[', 1467, + '_', 2014, + '`', 1694, + 'e', 1991, + 'f', 2017, + 'n', 2045, + 'o', 1992, + 't', 2032, + '{', 1500, + '|', 1454, + '}', 1501, + '\t', 1451, + ' ', 1451, + 'I', 2053, + 'i', 2053, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ']') ADVANCE(2070); + lookahead != ']') ADVANCE(2072); END_STATE(); - case 43: + case 42: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + '+', 2002, + '-', 1490, + '.', 2001, + '0', 1626, + ';', 1453, + 'N', 2049, + '[', 1467, + '_', 2014, + '`', 1694, + 'e', 1995, + 'f', 2017, + 'n', 2045, + 'o', 1996, + 't', 2032, + '{', 1500, + '\t', 1452, + ' ', 1452, + 'I', 2053, + 'i', 2053, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2072); END_STATE(); - case 44: + case 43: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + '+', 2084, + ',', 1471, + '-', 2083, + '.', 2085, + '0', 1627, + 'N', 2102, + '[', 1467, + ']', 1468, + '_', 2089, + '`', 1694, + 'f', 2092, + 'n', 2101, + 't', 2098, + '{', 1500, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(44); + lookahead == ' ') SKIP(43); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2106); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + lookahead == 'i') ADVANCE(2108); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2130); END_STATE(); - case 45: + case 44: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2139, - '-', 2138, - '.', 2137, - '0', 1627, - 'N', 2154, - '[', 1465, - '_', 2141, - '`', 1692, - 'f', 2144, - 'n', 2153, - 't', 2150, - '{', 1498, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + '+', 2141, + '-', 2140, + '.', 2139, + '0', 1629, + 'N', 2156, + '[', 1467, + '_', 2143, + '`', 1694, + 'f', 2146, + 'n', 2155, + 't', 2152, + '{', 1500, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(45); + lookahead == ' ') SKIP(44); 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(2162); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2176); END_STATE(); - case 46: + case 45: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 298, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 1501, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, - '}', 1499, + '"', 1687, + '#', 2190, + '$', 1472, + '\'', 1690, + '(', 1469, + '+', 2002, + '-', 297, + '.', 2000, + '0', 1626, + 'N', 2049, + '[', 1467, + '_', 1503, + '`', 1694, + 'f', 2017, + 'n', 2045, + 't', 2032, + '{', 1500, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(46); + lookahead == ' ') SKIP(45); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2053); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2072); END_STATE(); - case 47: + case 46: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '"', 1687, + '#', 2190, + '$', 1472, + '\'', 1690, + '(', 1469, + '+', 2084, + ',', 1471, + '-', 2083, + '.', 2082, + '0', 1627, + 'N', 2102, + '[', 1467, + ']', 1468, + '_', 2089, + '`', 1694, + 'f', 2092, + 'n', 2101, + 't', 2098, + '{', 1500, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(47); + lookahead == ' ') SKIP(46); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2106); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + lookahead == 'i') ADVANCE(2108); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2130); END_STATE(); - case 48: + case 47: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '-', 1486, - '`', 1692, - 'f', 1515, - 'n', 1519, - 't', 1520, - '{', 1498, + '"', 1687, + '#', 2190, + '$', 1472, + '\'', 1690, + '(', 1469, + '-', 1488, + '`', 1694, + 'f', 1517, + 'n', 1521, + 't', 1522, + '{', 1500, ); 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(47); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); END_STATE(); - case 49: + case 48: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 2139, - '-', 2138, - '.', 2137, - '>', 1479, - 'N', 2154, - '_', 2141, - '`', 1692, - 'f', 2144, - 'n', 2153, - 't', 2150, + '"', 1687, + '#', 2190, + '\'', 1690, + '+', 2141, + '-', 2140, + '.', 2139, + '>', 1481, + 'N', 2156, + '_', 2143, + '`', 1694, + 'f', 2146, + 'n', 2155, + 't', 2152, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(49); + lookahead == ' ') SKIP(48); 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(2162); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2176); END_STATE(); - case 50: + case 49: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '"', 1687, + '#', 2193, + '$', 1474, + '\'', 1690, + '(', 1469, + '+', 850, + '-', 1494, + '.', 851, + '0', 866, + ':', 1715, + 'N', 1022, + '[', 1467, + '_', 868, + '`', 1694, + 'f', 876, + 'n', 946, + 't', 961, + '{', 1500, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(39); + lookahead == ' ') SKIP(38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(869); + lookahead == 'i') ADVANCE(1027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(871); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1048); END_STATE(); - case 51: + case 50: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, '+', 1963, - ',', 1469, - '-', 1489, - '.', 1601, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + ',', 1471, + '-', 1491, + '.', 1602, + ':', 1465, + '=', 675, + ']', 1468, + '_', 1347, + '|', 1454, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(73); + lookahead == ' ') SKIP(72); 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(1988); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); END_STATE(); - case 52: + case 51: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, '+', 1963, - ',', 1469, - '-', 1489, + ',', 1471, + '-', 1491, '.', 1964, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + ':', 1465, + '=', 675, + ']', 1468, + '_', 1347, + '|', 1454, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(73); + lookahead == ' ') SKIP(72); 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(1988); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); END_STATE(); - case 53: + case 52: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, + ',', 1471, + '-', 1489, + '.', 1603, + ':', 1465, + '=', 675, + 'E', 1337, + 'G', 1345, + 'K', 1345, + 'M', 1345, + 'P', 1345, + 'T', 1345, + ']', 1468, + 'd', 1350, + 'e', 1336, + 'g', 1344, + 'h', 1368, + 'k', 1344, + 'm', 1346, + 'n', 1370, + 'p', 1344, + 's', 1355, + 't', 1344, + 'u', 1370, + 'w', 1356, + '|', 1454, + 0xb5, 1370, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(73); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); + lookahead == 'b') ADVANCE(1659); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12568,29 +12598,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(1988); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); END_STATE(); - case 54: + case 53: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1599, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, + ',', 1471, + '-', 1489, + '.', 1603, + ':', 1465, + '=', 675, + ']', 1468, + '|', 1454, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(73); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1338); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12598,49 +12628,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(1988); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); END_STATE(); - case 55: + case 54: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, + ',', 1471, + '-', 1489, + '.', 1967, + ':', 1465, + '=', 675, + 'E', 1337, + 'G', 1345, + 'K', 1345, + 'M', 1345, + 'P', 1345, + 'T', 1345, + ']', 1468, + '_', 1347, + 'd', 1350, + 'e', 1336, + 'g', 1344, + 'h', 1368, + 'k', 1344, + 'm', 1346, + 'n', 1370, + 'p', 1344, + 's', 1355, + 't', 1344, + 'u', 1370, + 'w', 1356, + '|', 1454, + 0xb5, 1370, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(73); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); + lookahead == 'b') ADVANCE(1659); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12648,49 +12678,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(1988); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); END_STATE(); - case 56: + case 55: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, + ',', 1471, + '-', 1489, + '.', 1967, + ':', 1465, + '=', 675, + 'E', 1337, + 'G', 1345, + 'K', 1345, + 'M', 1345, + 'P', 1345, + 'T', 1345, + ']', 1468, + 'd', 1350, + 'e', 1336, + 'g', 1344, + 'h', 1368, + 'k', 1344, + 'm', 1346, + 'n', 1370, + 'p', 1344, + 's', 1355, + 't', 1344, + 'u', 1370, + 'w', 1356, + '|', 1454, + 0xb5, 1370, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(73); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); + lookahead == 'b') ADVANCE(1659); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12698,48 +12728,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(1988); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); END_STATE(); - case 57: + case 56: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, + ',', 1471, + '-', 1489, + '.', 1967, + ':', 1465, + '=', 675, + 'E', 1345, + 'G', 1345, + 'K', 1345, + 'M', 1345, + 'P', 1345, + 'T', 1345, + ']', 1468, + 'd', 1350, + 'e', 1344, + 'g', 1344, + 'h', 1368, + 'k', 1344, + 'm', 1346, + 'n', 1370, + 'p', 1344, + 's', 1355, + 't', 1344, + 'u', 1370, + 'w', 1356, + '|', 1454, + 0xb5, 1370, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(73); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); + lookahead == 'b') ADVANCE(1659); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12747,30 +12777,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(1988); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); END_STATE(); - case 58: + case 57: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, + ',', 1471, + '-', 1489, + '.', 1967, + ':', 1465, + '=', 675, + ']', 1468, + '_', 1347, + '|', 1454, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(73); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1338); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12778,30 +12808,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(1988); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); END_STATE(); - case 59: + case 58: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, + ',', 1471, + '-', 1489, + '.', 1967, + ':', 1465, + '=', 675, + ']', 1468, + '|', 1454, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(73); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1338); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12809,27 +12839,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(1988); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); END_STATE(); - case 60: + case 59: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, + ',', 1471, + '-', 1489, + '.', 1967, + ':', 1465, + '=', 675, + ']', 1468, + '|', 1454, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(73); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12837,29 +12867,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(1988); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); END_STATE(); - case 61: + case 60: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1600, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, + ',', 1471, + '-', 1489, + '.', 1601, + ':', 1465, + '=', 675, + ']', 1468, + '|', 1454, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(73); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1338); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12867,30 +12897,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(1988); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); END_STATE(); - case 62: + case 61: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, + ',', 1471, + '-', 1489, '.', 1965, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + ':', 1465, + '=', 675, + ']', 1468, + '_', 1347, + '|', 1454, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(73); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1338); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12898,30 +12928,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(1988); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); END_STATE(); - case 63: + case 62: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, + ',', 1471, + '-', 1489, '.', 1965, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + ':', 1465, + '=', 675, + ']', 1468, + '|', 1454, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(73); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1338); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12929,27 +12959,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(1988); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); END_STATE(); - case 64: + case 63: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, + ',', 1471, + '-', 1489, '.', 1965, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + ':', 1465, + '=', 675, + ']', 1468, + '|', 1454, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(73); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12957,3079 +12987,3062 @@ 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(1988); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); + END_STATE(); + case 64: + ADVANCE_MAP( + '\n', 1450, + '\r', 1, + '#', 2190, + '$', 1472, + '(', 1563, + '.', 1606, + ';', 1453, + '_', 1815, + '\t', 1452, + ' ', 1452, + '+', 1793, + '-', 1793, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); END_STATE(); case 65: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1604, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, + '#', 2190, + '$', 1472, + '(', 1563, + '.', 1606, + '=', 1798, + '_', 1815, + 'i', 1847, + '|', 1454, ); - 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(74); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1793); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); END_STATE(); case 66: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1604, - '=', 1796, - '_', 1813, - 'i', 1845, - '|', 1452, + '#', 2190, + '$', 1472, + '(', 1563, + '.', 1606, + '=', 1798, + '_', 1815, + '|', 1454, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1793); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); END_STATE(); case 67: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1604, - '=', 1796, - '_', 1813, - '|', 1452, + '#', 2190, + '$', 1472, + '(', 1563, + '.', 1817, + ';', 1453, + '_', 1815, + '\t', 1452, + ' ', 1452, + '+', 1793, + '-', 1793, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(76); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); END_STATE(); case 68: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1815, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, + '#', 2190, + '$', 1472, + '(', 1563, + '.', 1817, + '=', 1798, + '_', 1815, + 'i', 1847, + '|', 1454, ); - 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(74); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1793); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); END_STATE(); case 69: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1815, - '=', 1796, - '_', 1813, - 'i', 1845, - '|', 1452, + '#', 2190, + '$', 1472, + '(', 1563, + '.', 1817, + '=', 1798, + '_', 1815, + '|', 1454, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1793); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); END_STATE(); case 70: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1815, - '=', 1796, - '_', 1813, - '|', 1452, + '#', 2190, + '$', 1472, + '(', 1469, + ')', 1470, + ',', 1471, + '-', 1489, + '.', 311, + ':', 1465, + '=', 675, + '?', 1485, + '[', 1667, + ']', 1468, + '|', 1454, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(76); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(71); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1375); END_STATE(); case 71: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 312, - ':', 1463, - '=', 673, - '?', 1483, - '[', 1665, - ']', 1466, - '|', 1452, + '#', 2190, + '$', 1472, + '(', 1469, + ')', 1470, + ',', 1471, + '-', 1489, + '.', 311, + ':', 1465, + '=', 675, + '[', 1467, + ']', 1468, + '|', 1454, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == ' ') SKIP(71); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1375); END_STATE(); case 72: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, + '#', 2190, + '$', 1472, + ')', 1470, + '+', 313, + ',', 1471, + '-', 1492, '.', 312, - ':', 1463, - '=', 673, - '[', 1465, - ']', 1466, - '|', 1452, + ':', 1465, + '=', 675, + ']', 1468, + '|', 1454, ); 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(1375); END_STATE(); case 73: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - ')', 1468, - '+', 314, - ',', 1469, - '-', 1490, - '.', 313, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '#', 2190, + '$', 1472, + ')', 1470, + ',', 1471, + '-', 1489, + '.', 311, + ':', 1465, + '=', 675, + ']', 1468, + '|', 1454, ); if (lookahead == '\t' || lookahead == ' ') SKIP(73); - 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(1375); END_STATE(); case 74: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 312, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '#', 2190, + '$', 1472, + '.', 336, + '=', 322, + 'i', 385, + '|', 1454, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if (lookahead == '+' || + lookahead == '-') ADVANCE(313); END_STATE(); case 75: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '.', 337, - '=', 323, - 'i', 386, - '|', 1452, - ); + if (lookahead == '\n') ADVANCE(1450); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '$') ADVANCE(1472); + if (lookahead == '.') ADVANCE(336); + if (lookahead == '=') ADVANCE(322); + if (lookahead == '|') ADVANCE(1454); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(313); END_STATE(); case 76: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); - if (lookahead == '=') ADVANCE(323); - if (lookahead == '|') ADVANCE(1452); - if (lookahead == '\t' || - lookahead == ' ') SKIP(76); - if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + ADVANCE_MAP( + '\n', 1450, + '\r', 1, + '#', 2190, + '(', 1563, + '.', 1597, + ';', 1453, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'd', 1826, + 'e', 1808, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + 0xb5, 1893, + '\t', 1452, + ' ', 1452, + 'B', 1655, + 'b', 1655, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 77: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '(', 1563, + '.', 1597, + ';', 1453, + '\t', 1452, + ' ', 1452, + 'E', 1821, + 'e', 1821, ); - 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(1936); END_STATE(); case 78: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1595, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '#', 2190, + '(', 1563, + '.', 1792, + ';', 1453, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + '_', 1815, + 'd', 1826, + 'e', 1808, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + 0xb5, 1893, + '\t', 1452, + ' ', 1452, + 'B', 1655, + 'b', 1655, ); - 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(1936); END_STATE(); case 79: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '(', 1563, + '.', 1792, + ';', 1453, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'd', 1826, + 'e', 1808, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + 0xb5, 1893, + '\t', 1452, + ' ', 1452, + 'B', 1655, + 'b', 1655, ); - 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(1936); END_STATE(); case 80: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '(', 1563, + '.', 1792, + ';', 1453, + 'E', 1812, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'd', 1826, + 'e', 1811, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + 0xb5, 1893, + '\t', 1452, + ' ', 1452, + 'B', 1655, + 'b', 1655, ); - 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(1936); END_STATE(); case 81: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '(', 1563, + '.', 1792, + ';', 1453, + '_', 1815, + '\t', 1452, + ' ', 1452, + 'E', 1821, + 'e', 1821, ); - 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(1936); END_STATE(); case 82: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '#', 2190, + '(', 1563, + '.', 1792, + ';', 1453, + '\t', 1452, + ' ', 1452, + 'E', 1821, + 'e', 1821, ); - 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(1936); END_STATE(); case 83: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '#', 2190, + '(', 1563, + '.', 1792, + ';', 1453, + '\t', 1452, + ' ', 1452, ); - 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(1936); END_STATE(); case 84: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - '\t', 1450, - ' ', 1450, + '#', 2190, + '(', 1563, + '.', 1596, + ';', 1453, + '\t', 1452, + ' ', 1452, + 'E', 1821, + 'e', 1821, ); - 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(1936); END_STATE(); case 85: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1594, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '#', 2190, + '(', 1563, + ';', 1453, + '_', 1815, + '\t', 1452, + ' ', 1452, + 'E', 1821, + 'e', 1821, ); - 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(1936); END_STATE(); case 86: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '#', 2190, + '(', 1563, + ';', 1453, + '\t', 1452, + ' ', 1452, + 'E', 1821, + 'e', 1821, ); - 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(1936); END_STATE(); case 87: + if (lookahead == '\n') ADVANCE(1450); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '(') ADVANCE(1563); + if (lookahead == ';') ADVANCE(1453); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1452); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + END_STATE(); + case 88: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '#', 2190, + '(', 1469, + ')', 1470, + ',', 1471, + '-', 296, + '.', 1725, + ':', 1465, + ';', 1453, + '=', 675, + '>', 1481, + '@', 1483, + '[', 1467, + ']', 1468, + 'c', 1353, + 'f', 1372, + 'i', 1361, + 'o', 1364, + 'v', 1349, + '{', 1500, + '}', 1501, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); - 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); + lookahead == ' ') SKIP(89); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1375); END_STATE(); case 89: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '(', 1469, + ')', 1470, + ',', 1471, + '-', 296, + '.', 1725, + ':', 1465, + ';', 1453, + '=', 675, + '>', 1481, + '[', 1467, + ']', 1468, + 'c', 1353, + 'f', 1372, + 'i', 1361, + 'o', 1364, + 'v', 1349, + '{', 1500, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(90); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == ' ') SKIP(89); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1375); END_STATE(); case 90: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '(', 1469, + ')', 1470, + '-', 296, + '.', 309, + ':', 1465, + ';', 1453, + '=', 677, + '>', 1481, + '[', 1467, + 'a', 420, + 'e', 287, + 'i', 386, + 'o', 288, + 'x', 430, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(90); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == ' ') SKIP(91); END_STATE(); case 91: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, - '-', 297, - '.', 310, - ':', 1463, - ';', 1451, - '=', 675, - '>', 1479, - '[', 1465, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '#', 2190, + '(', 1469, + ')', 1470, + '-', 296, + ':', 1465, + ';', 1453, + '=', 677, + '>', 1481, + '[', 1467, + 'a', 420, + 'e', 287, + 'i', 386, + 'o', 288, + 'x', 430, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(92); + lookahead == ' ') SKIP(91); END_STATE(); case 92: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, - '-', 297, - ':', 1463, - ';', 1451, - '=', 675, - '>', 1479, - '[', 1465, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '#', 2190, + '.', 1597, + '=', 1798, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'd', 1826, + 'e', 1808, + 'g', 1811, + 'h', 1880, + 'i', 1847, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + '|', 1454, + 0xb5, 1893, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(92); + lookahead == ' ') SKIP(113); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 93: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - ',', 1469, - ':', 1463, - '=', 673, - ']', 1466, - 'i', 422, + '#', 2190, + '.', 1597, + '=', 1798, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'd', 1826, + 'e', 1808, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + '|', 1454, + 0xb5, 1893, ); 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(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 94: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1595, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, - ); + if (lookahead == '\n') ADVANCE(1450); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1597); + if (lookahead == '=') ADVANCE(1798); + if (lookahead == 'i') ADVANCE(1847); + if (lookahead == '|') ADVANCE(1454); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(113); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1821); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 95: + if (lookahead == '\n') ADVANCE(1450); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1597); + if (lookahead == '=') ADVANCE(1798); + if (lookahead == '|') ADVANCE(1454); + if (lookahead == '\t' || + lookahead == ' ') SKIP(114); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1821); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + END_STATE(); + case 96: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '.', 1792, + '=', 1798, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + '_', 1815, + 'd', 1826, + 'e', 1808, + 'g', 1811, + 'h', 1880, + 'i', 1847, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + '|', 1454, + 0xb5, 1893, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); + lookahead == ' ') SKIP(113); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); - END_STATE(); - case 96: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); - 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 == 'b') ADVANCE(1655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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', 1450, + '\r', 1, + '#', 2190, + '.', 1792, + '=', 1798, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + '_', 1815, + 'd', 1826, + 'e', 1808, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + '|', 1454, + 0xb5, 1893, + ); 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(1655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 98: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '.', 1792, + '=', 1798, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'd', 1826, + 'e', 1808, + 'g', 1811, + 'h', 1880, + 'i', 1847, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + '|', 1454, + 0xb5, 1893, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == ' ') SKIP(113); 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(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 99: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '.', 1792, + '=', 1798, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'd', 1826, + 'e', 1808, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + '|', 1454, + 0xb5, 1893, ); 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(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 100: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '.', 1792, + '=', 1798, + 'E', 1812, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'd', 1826, + 'e', 1811, + 'g', 1811, + 'h', 1880, + 'i', 1847, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + '|', 1454, + 0xb5, 1893, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == ' ') SKIP(113); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 101: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '.', 1792, + '=', 1798, + 'E', 1812, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'd', 1826, + 'e', 1811, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + '|', 1454, + 0xb5, 1893, ); 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(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 102: ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '.', 1792, + '=', 1798, + '_', 1815, + 'i', 1847, + '|', 1454, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(113); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1821); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 103: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, - ); + if (lookahead == '\n') ADVANCE(1450); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1792); + if (lookahead == '=') ADVANCE(1798); + if (lookahead == '_') ADVANCE(1815); + if (lookahead == '|') ADVANCE(1454); 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(1821); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 104: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - '_', 1813, - 'i', 1845, - '|', 1452, - ); + if (lookahead == '\n') ADVANCE(1450); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1792); + if (lookahead == '=') ADVANCE(1798); + if (lookahead == 'i') ADVANCE(1847); + if (lookahead == '|') ADVANCE(1454); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == ' ') SKIP(113); 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(1821); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 105: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1450); 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(2190); + if (lookahead == '.') ADVANCE(1792); + if (lookahead == '=') ADVANCE(1798); + if (lookahead == 'i') ADVANCE(1847); + if (lookahead == '|') ADVANCE(1454); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(113); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 106: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1450); 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(2190); + if (lookahead == '.') ADVANCE(1792); + if (lookahead == '=') ADVANCE(1798); + if (lookahead == '|') ADVANCE(1454); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1821); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 107: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1450); 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(2190); + if (lookahead == '.') ADVANCE(1792); + if (lookahead == '=') ADVANCE(1798); + if (lookahead == '|') ADVANCE(1454); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - 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(1936); END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1450); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1596); + if (lookahead == '=') ADVANCE(1798); + if (lookahead == 'i') ADVANCE(1847); + if (lookahead == '|') ADVANCE(1454); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); + lookahead == ' ') SKIP(113); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1821); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 109: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1450); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1596); + if (lookahead == '=') ADVANCE(1798); + if (lookahead == '|') ADVANCE(1454); 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(1821); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 110: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); - 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); + ADVANCE_MAP( + '\n', 1450, + '\r', 1, + '#', 2190, + ':', 1715, + ';', 1453, + '=', 1731, + 'e', 287, + 'o', 289, + '|', 1454, + '}', 1501, + '\t', 1451, + ' ', 1451, + ); END_STATE(); case 111: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1450); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == ':') ADVANCE(1715); + if (lookahead == '{') ADVANCE(1500); 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(111); END_STATE(); case 112: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - ':', 1713, - ';', 1451, - '=', 1729, - 'e', 288, - 'o', 290, - '|', 1452, - '}', 1499, - '\t', 1449, - ' ', 1449, - ); + if (lookahead == '\n') ADVANCE(1450); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == ';') ADVANCE(1453); + if (lookahead == '=') ADVANCE(1731); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1452); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1449); END_STATE(); case 113: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1450); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == ':') ADVANCE(1713); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '=') ADVANCE(322); + if (lookahead == 'i') ADVANCE(385); + if (lookahead == '|') ADVANCE(1454); if (lookahead == '\t' || lookahead == ' ') SKIP(113); END_STATE(); case 114: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1450); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == ';') ADVANCE(1451); - if (lookahead == '=') ADVANCE(1729); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '=') ADVANCE(322); + if (lookahead == '|') ADVANCE(1454); 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(1450); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(323); - if (lookahead == 'i') ADVANCE(386); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '=') ADVANCE(1798); + if (lookahead == '_') ADVANCE(1815); + if (lookahead == 'i') ADVANCE(1847); + if (lookahead == '|') ADVANCE(1454); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == ' ') SKIP(113); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1821); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 116: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1450); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(323); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '=') ADVANCE(1798); + if (lookahead == '_') ADVANCE(1815); + if (lookahead == '|') ADVANCE(1454); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); + lookahead == ' ') SKIP(114); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1821); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 117: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1450); 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(2190); + if (lookahead == '=') ADVANCE(1798); + if (lookahead == 'i') ADVANCE(1847); + if (lookahead == '|') ADVANCE(1454); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == ' ') SKIP(113); 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(1821); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 118: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1450); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '=') ADVANCE(1798); + if (lookahead == 'i') ADVANCE(1847); + if (lookahead == '|') ADVANCE(1454); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(113); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 119: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1450); 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(2190); + if (lookahead == '=') ADVANCE(1798); + if (lookahead == '|') ADVANCE(1454); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1821); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 120: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1450); 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(2190); + if (lookahead == '=') ADVANCE(1798); + if (lookahead == '|') ADVANCE(1454); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - 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(1936); END_STATE(); case 121: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1450); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == ':') ADVANCE(1715); + if (lookahead == '{') ADVANCE(1500); 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(111); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 122: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); - if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); - 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, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, - '\t', 1708, - ' ', 1708, - 0x0b, 1707, - '\f', 1707, - ',', 1707, + '\n', 1709, + '\r', 1709, + '!', 1721, + '#', 2190, + '(', 1563, + '*', 1515, + '+', 1580, + '-', 1497, + '.', 1724, + '/', 1570, + ':', 1715, + ';', 1453, + '<', 1552, + '=', 676, + '>', 1482, + '?', 1719, + '@', 1483, + '[', 1467, + ']', 1468, + 'a', 420, + 'b', 399, + 'e', 284, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 278, + 's', 485, + 'x', 430, + '|', 1454, + '}', 1501, + '\t', 1710, + ' ', 1710, + 0x0b, 1709, + '\f', 1709, + ',', 1709, ); END_STATE(); - case 125: + case 123: ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '$', 181, - '\'', 1688, - '.', 1720, - ';', 1716, - '?', 1717, - '`', 1692, - '\t', 125, - ' ', 125, + '!', 1720, + '"', 1687, + '#', 2190, + '$', 179, + '\'', 1690, + '.', 1722, + ';', 1718, + '?', 1719, + '`', 1694, + '\t', 123, + ' ', 123, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(317); END_STATE(); - case 126: + case 124: ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '$', 181, - '\'', 1688, - '.', 1720, - ';', 1716, - '?', 1717, - '`', 1692, - '\t', 125, - ' ', 125, + '!', 1720, + '"', 1687, + '#', 2190, + '$', 179, + '\'', 1690, + '.', 1722, + ';', 1718, + '?', 1719, + '`', 1694, + '\t', 123, + ' ', 123, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(317); if (lookahead != 0 && (lookahead < '&' || '.' < lookahead) && (lookahead < ':' || '@' < lookahead) && lookahead != '[' && lookahead != ']' && lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1730); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1732); END_STATE(); - case 127: + case 125: ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 1726, - '?', 1717, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '!', 1720, + '"', 1687, + '#', 2190, + '\'', 1690, + '+', 704, + '-', 298, + '.', 1728, + '?', 1719, + 'I', 811, + 'N', 807, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 800, + 't', 774, + 'u', 787, + 'w', 753, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(127); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(125); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); END_STATE(); - case 128: + case 126: 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, + '!', 1720, + '"', 1687, + '#', 2190, + '\'', 1690, + '+', 704, + '-', 298, + '.', 1728, + 'I', 811, + 'N', 807, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 800, + 't', 774, + 'u', 787, + 'w', 753, ); 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); - END_STATE(); - case 129: - ADVANCE_MAP( - '!', 1718, - '#', 2188, - ',', 1707, - '.', 1723, - ';', 1716, - '?', 1717, - ']', 1466, - '\t', 1710, - ' ', 1710, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1711); + lookahead == ' ') SKIP(126); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); END_STATE(); - case 130: + case 127: ADVANCE_MAP( - '!', 1718, - '#', 2188, - '.', 1722, - ':', 1713, - '>', 1479, - '?', 1717, - 'E', 333, - 'G', 333, - 'K', 333, - 'M', 333, - 'P', 333, - 'T', 333, - ']', 1466, - 'd', 346, - 'e', 332, - 'g', 332, - 'h', 451, - 'k', 332, - 'm', 335, - 'n', 469, - 'p', 332, - 's', 376, - 't', 332, - 'u', 469, - 'w', 408, - '}', 1499, - 0xb5, 469, + '!', 1720, + '#', 2190, + ',', 1709, + '.', 1725, + ';', 1718, + '?', 1719, + ']', 1468, '\t', 1712, ' ', 1712, - 'B', 1653, - 'b', 1653, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1713); END_STATE(); - case 131: + case 128: ADVANCE_MAP( - '!', 1718, - '#', 2188, - '.', 1723, - ':', 1463, - '>', 1479, - '?', 1717, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, + '!', 1720, + '#', 2190, + '.', 1724, + ':', 1715, + '>', 1481, + '?', 1719, + 'E', 332, + 'G', 332, + 'K', 332, + 'M', 332, + 'P', 332, + 'T', 332, + ']', 1468, + 'd', 345, + 'e', 331, + 'g', 331, + 'h', 450, + 'k', 331, + 'm', 334, + 'n', 468, + 'p', 331, + 's', 375, + 't', 331, + 'u', 468, + 'w', 407, + '}', 1501, + 0xb5, 468, + '\t', 1714, + ' ', 1714, + 'B', 1655, + 'b', 1655, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1709); END_STATE(); - case 132: + case 129: 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, + '!', 1720, + '#', 2190, + '.', 1725, + ':', 1465, + '>', 1481, + '?', 1719, + ']', 1468, + '}', 1501, + '\t', 1714, + ' ', 1714, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1709); END_STATE(); - case 133: + case 130: 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, + '!', 1795, + '#', 2190, + '$', 1472, + '(', 1563, + '*', 1514, + '+', 1578, + '-', 1495, + '.', 1606, + '/', 1569, + '<', 1552, + '=', 1796, + '>', 1482, + '_', 1815, + 'a', 1867, + 'b', 1854, + 'e', 1868, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1881, + 's', 1901, + 'x', 1873, ); 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(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); END_STATE(); - case 134: + case 131: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + '!', 1795, + '#', 2190, + '$', 1472, + '(', 1563, + '*', 1514, + '+', 1578, + '-', 1495, + '.', 1817, + '/', 1569, + '<', 1552, + '=', 1796, + '>', 1482, + '_', 1815, + 'a', 1867, + 'b', 1854, + 'e', 1868, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1881, + 's', 1901, + 'x', 1873, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); + END_STATE(); + case 132: + ADVANCE_MAP( + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1597, + '/', 1569, + '<', 1552, + '=', 1796, + '>', 1482, + 'B', 1655, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'a', 1867, + 'b', 1658, + 'd', 1826, + 'e', 1807, + 'g', 1811, + 'h', 1824, + 'i', 1865, + 'k', 1811, + 'l', 1853, + 'm', 1813, + 'n', 1874, + 'o', 1881, + 'p', 1811, + 's', 1840, + 't', 1811, + 'u', 1893, + 'w', 1860, + 'x', 1873, + 0xb5, 1893, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(145); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + END_STATE(); + case 133: + ADVANCE_MAP( + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1597, + '/', 1569, + '<', 1552, + '=', 1796, + '>', 1482, + 'E', 1821, + 'a', 1867, + 'b', 1854, + 'e', 1818, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1881, + 's', 1901, + 'x', 1873, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(145); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + END_STATE(); + case 134: + ADVANCE_MAP( + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + '<', 1552, + '=', 1796, + '>', 1482, + 'B', 1655, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + '_', 1815, + 'a', 1867, + 'b', 1658, + 'd', 1826, + 'e', 1807, + 'g', 1811, + 'h', 1824, + 'i', 1865, + 'k', 1811, + 'l', 1853, + 'm', 1813, + 'n', 1874, + 'o', 1881, + 'p', 1811, + 's', 1840, + 't', 1811, + 'u', 1893, + 'w', 1860, + 'x', 1873, + 0xb5, 1893, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(145); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + '<', 1552, + '=', 1796, + '>', 1482, + 'B', 1655, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'a', 1867, + 'b', 1658, + 'd', 1826, + 'e', 1807, + 'g', 1811, + 'h', 1824, + 'i', 1865, + 'k', 1811, + 'l', 1853, + 'm', 1813, + 'n', 1874, + 'o', 1881, + 'p', 1811, + 's', 1840, + 't', 1811, + 'u', 1893, + 'w', 1860, + 'x', 1873, + 0xb5, 1893, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(145); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + '<', 1552, + '=', 1796, + '>', 1482, + 'B', 1655, + 'E', 1812, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'a', 1867, + 'b', 1658, + 'd', 1826, + 'e', 1810, + 'g', 1811, + 'h', 1824, + 'i', 1865, + 'k', 1811, + 'l', 1853, + 'm', 1813, + 'n', 1874, + 'o', 1881, + 'p', 1811, + 's', 1840, + 't', 1811, + 'u', 1893, + 'w', 1860, + 'x', 1873, + 0xb5, 1893, ); 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(145); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + '<', 1552, + '=', 1796, + '>', 1482, + 'E', 1821, + '_', 1815, + 'a', 1867, + 'b', 1854, + 'e', 1818, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1881, + 's', 1901, + 'x', 1873, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(145); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 138: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1808, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + '<', 1552, + '=', 1796, + '>', 1482, + 'E', 1821, + 'a', 1867, + 'b', 1854, + 'e', 1818, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1881, + 's', 1901, + 'x', 1873, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(145); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + '<', 1552, + '=', 1796, + '>', 1482, + 'a', 1867, + 'b', 1854, + 'e', 1868, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1881, + 's', 1901, + 'x', 1873, ); 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(145); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1596, + '/', 1569, + '<', 1552, + '=', 1796, + '>', 1482, + 'E', 1821, + 'a', 1867, + 'b', 1854, + 'e', 1818, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1881, + 's', 1901, + 'x', 1873, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(145); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + '<', 1552, + '=', 1796, + '>', 1482, + 'E', 1821, + '_', 1815, + 'a', 1867, + 'b', 1854, + 'e', 1818, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1881, + 's', 1901, + 'x', 1873, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(145); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + '<', 1552, + '=', 1796, + '>', 1482, + 'E', 1821, + 'a', 1867, + 'b', 1854, + 'e', 1818, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1881, + 's', 1901, + 'x', 1873, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(145); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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, + '!', 1795, + '#', 2190, + '(', 1563, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + '<', 1552, + '=', 1796, + '>', 1482, + 'a', 1867, + 'b', 1854, + 'e', 1868, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1881, + 's', 1901, + 'x', 1873, ); 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(145); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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, + '!', 319, + '#', 2190, + '$', 1472, + '*', 1514, + '+', 1579, + '-', 1496, + '.', 336, + '/', 1569, + '<', 1552, + '=', 320, + '>', 1482, + 'a', 420, + 'b', 399, + 'e', 424, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 451, + 's', 485, + 'x', 430, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(144); 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, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); - END_STATE(); - case 146: - ADVANCE_MAP( - '!', 320, - '#', 2188, - '$', 1470, - '*', 1512, + '!', 319, + '#', 2190, + '*', 1514, '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - '<', 1550, - '=', 321, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, - ); - 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, + '-', 1488, + '/', 1569, + '<', 1552, + '=', 320, + '>', 1482, + 'a', 420, + 'b', 399, + 'e', 424, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 451, + 's', 485, + 'x', 430, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); + lookahead == ' ') SKIP(145); END_STATE(); - case 148: + case 146: 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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1563, + '+', 2002, + '-', 306, + '.', 2000, + '0', 1626, + ';', 1718, + 'N', 2049, + '[', 1467, + '_', 2014, + '`', 1694, + 'f', 2017, + 'n', 2045, + 't', 2032, + '{', 1500, + '\t', 149, + ' ', 149, + 'I', 2053, + 'i', 2053, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(317); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2072); END_STATE(); - case 149: + case 147: 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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + '+', 1582, + '-', 1493, + '.', 703, + '0', 1630, + ':', 1465, + '<', 1143, + '>', 1481, + '@', 1483, + 'I', 811, + 'N', 807, + ']', 1468, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 800, + 't', 774, + 'u', 787, + 'w', 753, + '}', 1501, + '\t', 1714, + ' ', 1714, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == ',') ADVANCE(1709); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1646); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(826); END_STATE(); - case 150: + case 148: 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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + '+', 2002, + '-', 306, + '.', 2000, + '0', 1626, + ':', 1715, + 'N', 2049, + '[', 1467, + '_', 2014, + '`', 1694, + 'f', 2017, + 'n', 2045, + 't', 2032, + '{', 1500, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(150); + lookahead == ' ') SKIP(148); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2053); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2072); END_STATE(); - case 151: + case 149: 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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + '+', 2002, + '-', 306, + '.', 2000, + '0', 1626, + ';', 1718, + 'N', 2049, + '[', 1467, + '_', 2014, + '`', 1694, + 'f', 2017, + 'n', 2045, + 't', 2032, + '{', 1500, + '\t', 149, + ' ', 149, + 'I', 2053, + 'i', 2053, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(317); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2072); END_STATE(); - case 152: + case 150: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + '+', 2002, + '-', 306, + '.', 2000, + '0', 1626, + 'N', 2049, + '[', 1467, + '_', 2014, + '`', 1694, + 'f', 2017, + 'n', 2045, + 't', 2032, + '{', 1500, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(152); + lookahead == ' ') SKIP(150); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2053); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2072); END_STATE(); - case 153: + case 151: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - ':', 1713, - 'N', 2047, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + '+', 2002, + '-', 306, + '.', 2000, + ':', 1715, + 'N', 2049, + '_', 2014, + '`', 1694, + 'f', 2017, + 'n', 2045, + 't', 2032, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(153); + lookahead == ' ') SKIP(151); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2053); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2072); END_STATE(); - case 154: + case 152: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - 'N', 2047, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + '+', 2002, + '-', 306, + '.', 2000, + 'N', 2049, + '_', 2014, + '`', 1694, + 'f', 2017, + 'n', 2045, + 't', 2032, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(154); + lookahead == ' ') SKIP(152); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2053); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2072); END_STATE(); - case 155: + case 153: 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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + '+', 2084, + '-', 2083, + '.', 2085, + '0', 1627, + 'N', 2102, + '[', 1467, + ']', 1468, + '_', 2089, + '`', 1694, + 'f', 2092, + 'n', 2101, + 't', 2098, + '{', 1500, + '\t', 1714, + ' ', 1714, + 'I', 2108, + 'i', 2108, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + lookahead == ',') ADVANCE(1709); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2130); 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 154: + if (lookahead == '"') ADVANCE(1687); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '$') ADVANCE(1473); + if (lookahead == '\'') ADVANCE(1690); + if (lookahead == '(') ADVANCE(1469); + if (lookahead == '`') ADVANCE(1694); if (lookahead == '\t' || - lookahead == ' ') SKIP(156); + lookahead == ' ') SKIP(154); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1989); END_STATE(); - case 157: + case 155: 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, + '"', 1687, + '#', 2190, + '$', 1472, + '\'', 1690, + '(', 1469, + '+', 2002, + ',', 1709, + '-', 306, + '.', 2000, + '0', 1626, + 'N', 2049, + '[', 1467, + '_', 1503, + '`', 1694, + 'f', 2017, + 'n', 2045, + 't', 2032, + '{', 1500, + '}', 1501, + '\t', 1711, + ' ', 1711, + 'I', 2053, + 'i', 2053, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1709); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2072); END_STATE(); - case 158: + case 156: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, + '"', 1687, + '#', 2190, + '$', 1472, + '\'', 1690, + '(', 1469, + '+', 2002, + '-', 306, + '.', 2000, + '0', 1626, + 'N', 2049, + '[', 1467, + '_', 2014, + '`', 1694, + 'f', 2017, + 'n', 2045, + 't', 2032, + '{', 1500, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(158); + lookahead == ' ') SKIP(156); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2053); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2072); END_STATE(); - case 159: + case 157: 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, + '"', 1687, + '#', 2190, + '$', 1472, + '\'', 1690, + '(', 1469, + '+', 2084, + '-', 2083, + '.', 2082, + '0', 1627, + 'N', 2102, + '[', 1467, + ']', 1468, + '_', 2089, + '`', 1694, + 'f', 2092, + 'n', 2101, + 't', 2098, + '{', 1500, + '\t', 1714, + ' ', 1714, + 'I', 2108, + 'i', 2108, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + lookahead == ',') ADVANCE(1709); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2130); END_STATE(); - case 160: + case 158: 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, + '"', 1687, + '#', 2190, + '\'', 1690, + '(', 1563, + '+', 704, + '-', 306, + '.', 720, + ':', 1465, + '>', 1481, + 'I', 811, + 'N', 807, + ']', 1468, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 800, + 't', 774, + 'u', 787, + 'w', 753, + '}', 1501, + '\t', 1714, + ' ', 1714, ); 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(1709); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); END_STATE(); - case 161: + case 159: 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, + '"', 1687, + '#', 2190, + '\'', 1690, + '+', 704, + '-', 306, + '.', 720, + ':', 1715, + 'I', 811, + 'N', 807, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 800, + 't', 774, + 'u', 787, + 'w', 753, ); 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); + lookahead == ' ') SKIP(159); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); END_STATE(); - case 162: + case 160: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 1726, - '?', 1717, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1687, + '#', 2190, + '\'', 1690, + '+', 704, + '-', 298, + '.', 1728, + '?', 1719, + 'I', 811, + 'N', 807, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 800, + 't', 774, + 'u', 787, + 'w', 753, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); END_STATE(); - case 163: + case 161: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 1726, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1687, + '#', 2190, + '\'', 1690, + '+', 704, + '-', 298, + '.', 1728, + 'I', 811, + 'N', 807, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 800, + 't', 774, + 'u', 787, + 'w', 753, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(163); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(161); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); END_STATE(); - case 164: + case 162: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 718, - ':', 1713, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1687, + '#', 2190, + '\'', 1690, + '+', 704, + '-', 298, + '.', 720, + ':', 1715, + 'I', 811, + 'N', 807, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 800, + 't', 774, + 'u', 787, + 'w', 753, ); 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(162); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); END_STATE(); - case 165: + case 163: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 718, - '=', 1729, - 'I', 1443, - 'N', 1438, - '_', 1379, - '`', 1692, - 'a', 1403, - 'c', 1380, - 'd', 1387, - 'e', 1408, - 'f', 1381, - 'i', 1378, - 'l', 1394, - 'm', 1383, - 'n', 1434, - 't', 1417, - 'u', 1423, - 'w', 1400, + '"', 1687, + '#', 2190, + '\'', 1690, + '+', 704, + '-', 298, + '.', 720, + '=', 1731, + 'I', 1445, + 'N', 1440, + '_', 1381, + '`', 1694, + 'a', 1405, + 'c', 1382, + 'd', 1389, + 'e', 1410, + 'f', 1383, + 'i', 1380, + 'l', 1396, + 'm', 1385, + 'n', 1436, + 't', 1419, + 'u', 1425, + 'w', 1402, ); 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(164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1381); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1449); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); END_STATE(); - case 166: + case 164: 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, + '"', 1687, + '#', 2190, + '\'', 1690, + '+', 704, + '-', 298, + '.', 720, + 'I', 811, + 'N', 807, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 800, + 't', 774, + 'u', 787, + 'w', 753, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); END_STATE(); - case 167: + case 165: 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, + '"', 1687, + '#', 2190, + '\'', 1690, + '+', 704, + '-', 1784, + '.', 1598, + 'E', 711, + 'G', 716, + 'I', 811, + 'K', 716, + 'M', 716, + 'N', 807, + 'P', 716, + 'T', 716, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 724, + 'e', 710, + 'f', 725, + 'g', 715, + 'h', 776, + 'i', 717, + 'k', 715, + 'l', 741, + 'm', 712, + 'n', 784, + 'p', 715, + 's', 742, + 't', 714, + 'u', 786, + 'w', 752, + 0xb5, 785, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1655); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(1936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(826); END_STATE(); - case 168: + case 166: 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, + '"', 1687, + '#', 2190, + '\'', 1690, + '+', 704, + '-', 1784, + '.', 720, + 'I', 811, + 'N', 807, + '[', 1667, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 800, + 't', 774, + 'u', 787, + 'w', 753, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(164); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(1936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(826); END_STATE(); - case 169: + case 167: 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, + '"', 1687, + '#', 2190, + '\'', 1690, + '+', 704, + '-', 1784, + '.', 702, + 'E', 711, + 'G', 716, + 'I', 811, + 'K', 716, + 'M', 716, + 'N', 807, + 'P', 716, + 'T', 716, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 724, + 'e', 710, + 'f', 725, + 'g', 715, + 'h', 776, + 'i', 717, + 'k', 715, + 'l', 741, + 'm', 712, + 'n', 784, + 'p', 715, + 's', 742, + 't', 714, + 'u', 786, + 'w', 752, + 0xb5, 785, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1655); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(1936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(826); END_STATE(); - case 170: + 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, - '_', 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, + '"', 1687, + '#', 2190, + '\'', 1690, + '+', 704, + '-', 1784, + '.', 702, + 'E', 711, + 'G', 716, + 'I', 811, + 'K', 716, + 'M', 716, + 'N', 807, + 'P', 716, + 'T', 716, + '_', 722, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 724, + 'e', 710, + 'f', 725, + 'g', 715, + 'h', 776, + 'i', 717, + 'k', 715, + 'l', 741, + 'm', 712, + 'n', 784, + 'p', 715, + 's', 742, + 't', 714, + 'u', 786, + 'w', 752, + 0xb5, 785, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1655); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == '^') ADVANCE(1936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(826); END_STATE(); - case 171: + case 169: 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, + '"', 1687, + '#', 2190, + '\'', 1690, + '+', 704, + '-', 1784, + '.', 702, + 'E', 716, + 'G', 716, + 'I', 811, + 'K', 716, + 'M', 716, + 'N', 807, + 'P', 716, + 'T', 716, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 724, + 'e', 713, + 'f', 725, + 'g', 715, + 'h', 776, + 'i', 717, + 'k', 715, + 'l', 741, + 'm', 712, + 'n', 784, + 'p', 715, + 's', 742, + 't', 714, + 'u', 786, + 'w', 752, + 0xb5, 785, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1655); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(1936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(826); END_STATE(); - case 172: + case 170: 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, + '"', 1687, + '#', 2190, + '\'', 1690, + '+', 2141, + '-', 2140, + '.', 2139, + '>', 1481, + 'N', 2156, + '_', 2143, + '`', 1694, + 'f', 2146, + 'n', 2155, + 't', 2152, + '\t', 1714, + ' ', 1714, + 'I', 2162, + 'i', 2162, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == ',') ADVANCE(1709); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2174); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2176); END_STATE(); - case 173: - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '\'') ADVANCE(1688); - if (lookahead == '`') ADVANCE(1692); + case 171: + if (lookahead == '"') ADVANCE(1687); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '\'') ADVANCE(1690); + if (lookahead == '`') ADVANCE(1694); if (lookahead == '\t' || - lookahead == ' ') SKIP(173); + lookahead == ' ') SKIP(171); END_STATE(); - case 174: + case 172: 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, + '"', 1687, + '#', 2193, + '$', 1474, + '\'', 1690, + '(', 1469, + '+', 850, + '-', 849, + '.', 851, + '0', 867, + ':', 1715, + 'N', 1022, + '[', 1467, + '_', 868, + '`', 1694, + 'f', 876, + 'n', 1012, + 't', 961, + '{', 1500, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(150); + lookahead == ' ') SKIP(148); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(1027); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2072); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(874); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1048); END_STATE(); - case 175: + case 173: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - '0', 865, - 'N', 1020, - '[', 1465, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, - '{', 1498, + '"', 1687, + '#', 2193, + '$', 1474, + '\'', 1690, + '(', 1469, + '+', 850, + '-', 849, + '.', 851, + '0', 867, + 'N', 1022, + '[', 1467, + '_', 868, + '`', 1694, + 'f', 876, + 'n', 1012, + 't', 961, + '{', 1500, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(152); + lookahead == ' ') SKIP(150); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(1027); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2072); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(874); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1048); END_STATE(); - case 176: + case 174: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - ':', 1713, - 'N', 1020, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, + '"', 1687, + '#', 2193, + '$', 1474, + '\'', 1690, + '(', 1469, + '+', 850, + '-', 849, + '.', 851, + ':', 1715, + 'N', 1022, + '_', 868, + '`', 1694, + 'f', 876, + 'n', 1012, + 't', 961, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(153); + lookahead == ' ') SKIP(151); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(1027); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2072); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(874); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1048); END_STATE(); - case 177: + case 175: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - 'N', 1020, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, + '"', 1687, + '#', 2193, + '$', 1474, + '\'', 1690, + '(', 1469, + '+', 850, + '-', 849, + '.', 851, + 'N', 1022, + '_', 868, + '`', 1694, + 'f', 876, + 'n', 1012, + 't', 961, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(154); + lookahead == ' ') SKIP(152); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(1027); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2072); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(874); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1048); END_STATE(); - case 178: + case 176: 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, + '"', 1687, + '#', 2193, + '\'', 1690, + '+', 850, + '-', 849, + '.', 868, + ':', 1715, + 'I', 1027, + 'N', 1022, + '_', 868, + '`', 1694, + 'a', 934, + 'c', 881, + 'd', 897, + 'e', 937, + 'f', 875, + 'i', 863, + 'l', 907, + 'm', 883, + 'n', 1012, + 't', 966, + 'u', 982, + 'w', 918, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(161); + lookahead == ' ') SKIP(159); 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(1048); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); - case 179: + case 177: 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, + '"', 1687, + '#', 2193, + '\'', 1690, + '+', 850, + '-', 842, + '.', 868, + ':', 1715, + 'I', 1027, + 'N', 1022, + '_', 868, + '`', 1694, + 'a', 934, + 'c', 881, + 'd', 897, + 'e', 937, + 'f', 875, + 'i', 863, + 'l', 907, + 'm', 883, + 'n', 1012, + 't', 966, + 'u', 982, + 'w', 918, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(164); + lookahead == ' ') SKIP(162); 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(1048); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); - case 180: - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(1687); - if (lookahead == '\\') ADVANCE(512); + case 178: + if (lookahead == '"') ADVANCE(1687); + if (lookahead == '#') ADVANCE(1689); + if (lookahead == '\\') ADVANCE(511); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1686); - if (lookahead != 0) ADVANCE(1687); + lookahead == ' ') ADVANCE(1688); + if (lookahead != 0) ADVANCE(1689); END_STATE(); - case 181: - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); + case 179: + if (lookahead == '"') ADVANCE(1704); + if (lookahead == '\'') ADVANCE(1703); END_STATE(); - case 182: - if (lookahead == '"') ADVANCE(1703); - if (lookahead == '#') ADVANCE(1698); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '\\') ADVANCE(507); + case 180: + if (lookahead == '"') ADVANCE(1705); + if (lookahead == '#') ADVANCE(1700); + if (lookahead == '(') ADVANCE(1469); + if (lookahead == '\\') ADVANCE(506); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1697); - if (lookahead != 0) ADVANCE(1698); + lookahead == ' ') ADVANCE(1699); + if (lookahead != 0) ADVANCE(1700); END_STATE(); - case 183: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1604); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); + case 181: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '$') ADVANCE(1472); + if (lookahead == '(') ADVANCE(1563); + if (lookahead == '.') ADVANCE(1606); + if (lookahead == '_') ADVANCE(1815); + if (lookahead == '{') ADVANCE(1500); if (lookahead == '\t' || - lookahead == ' ') SKIP(192); + lookahead == ' ') SKIP(190); 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(1793); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); END_STATE(); - case 184: + case 182: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1603, - ']', 1466, - '_', 1944, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2190, + '$', 1472, + '(', 1563, + '.', 1605, + ']', 1468, + '_', 1946, + '}', 1501, + '\t', 1714, + ' ', 1714, + '+', 1940, + '-', 1940, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1709); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16037,42 +16050,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 185: + case 183: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1972, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, + '#', 2190, + '$', 1472, + '(', 1563, + '.', 1974, + '_', 1977, + '}', 1501, + '\t', 1714, + ' ', 1714, '+', 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 == ',') ADVANCE(1709); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1988); END_STATE(); - case 186: + case 184: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1945, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2190, + '$', 1472, + '(', 1563, + '.', 1947, + ']', 1468, + '_', 1946, + '\t', 1714, + ' ', 1714, + '+', 1940, + '-', 1940, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1709); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16080,24 +16093,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 187: + case 185: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1936, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2190, + '$', 1472, + '(', 1563, + '.', 1938, + ']', 1468, + '_', 1946, + '\t', 1714, + ' ', 1714, + '+', 1940, + '-', 1940, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1709); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16105,136 +16118,136 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 188: + case 186: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1602, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, + '#', 2190, + '$', 1472, + '(', 1563, + '.', 1604, + '_', 1977, + '}', 1501, + '\t', 1714, + ' ', 1714, '+', 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 == ',') ADVANCE(1709); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1988); END_STATE(); - case 189: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1815); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); + case 187: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '$') ADVANCE(1472); + if (lookahead == '(') ADVANCE(1563); + if (lookahead == '.') ADVANCE(1817); + if (lookahead == '_') ADVANCE(1815); + if (lookahead == '{') ADVANCE(1500); if (lookahead == '\t' || - lookahead == ' ') SKIP(192); + lookahead == ' ') SKIP(190); 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(1793); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); END_STATE(); - case 190: + case 188: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1598, - '[', 1665, - ']', 1466, - '_', 1944, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2190, + '$', 1472, + '(', 1563, + '.', 1600, + '[', 1667, + ']', 1468, + '_', 1946, + '}', 1501, + '\t', 1714, + ' ', 1714, + '+', 1940, + '-', 1940, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1709); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 191: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); - if (lookahead == ']') ADVANCE(1466); + case 189: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '$') ADVANCE(1472); + if (lookahead == '.') ADVANCE(336); + if (lookahead == ']') ADVANCE(1468); if (lookahead == '\t' || - lookahead == ' ') SKIP(191); + lookahead == ' ') SKIP(189); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(313); END_STATE(); - case 192: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); - if (lookahead == '{') ADVANCE(1498); + case 190: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '$') ADVANCE(1472); + if (lookahead == '.') ADVANCE(336); + if (lookahead == '{') ADVANCE(1500); if (lookahead == '\t' || - lookahead == ' ') SKIP(192); + lookahead == ' ') SKIP(190); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(313); END_STATE(); - case 193: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); + case 191: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '$') ADVANCE(1472); + if (lookahead == '.') ADVANCE(336); if (lookahead == '\t' || - lookahead == ' ') SKIP(193); + lookahead == ' ') SKIP(191); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(313); END_STATE(); - case 194: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == ':') ADVANCE(1713); + case 192: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '$') ADVANCE(1472); + if (lookahead == ':') ADVANCE(1715); if (lookahead == '\t' || - lookahead == ' ') SKIP(194); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == ' ') SKIP(192); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1375); END_STATE(); - case 195: + case 193: 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, + '#', 2190, + '(', 1563, + '.', 1597, + 'E', 1942, + 'G', 1944, + 'K', 1944, + 'M', 1944, + 'P', 1944, + 'T', 1944, + ']', 1468, + 'd', 1951, + 'e', 1941, + 'g', 1943, + 'h', 1957, + 'k', 1943, + 'm', 1945, + 'n', 1958, + 'p', 1943, + 's', 1954, + 't', 1943, + 'u', 1958, + 'w', 1955, + '}', 1501, + 0xb5, 1958, + '\t', 1714, + ' ', 1714, + 'B', 1655, + 'b', 1655, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1709); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16242,40 +16255,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 196: + case 194: 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, + '#', 2190, + '(', 1563, + '.', 1597, + 'E', 1942, + 'G', 1944, + 'K', 1944, + 'M', 1944, + 'P', 1944, + 'T', 1944, + ']', 1468, + 'd', 1951, + 'e', 1941, + 'g', 1943, + 'h', 1957, + 'k', 1943, + 'm', 1945, + 'n', 1958, + 'p', 1943, + 's', 1954, + 't', 1943, + 'u', 1958, + 'w', 1955, + 0xb5, 1958, + '\t', 1714, + ' ', 1714, + 'B', 1655, + 'b', 1655, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1709); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16283,56 +16296,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 197: + case 195: 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, + '#', 2190, + '(', 1563, + '.', 1597, + 'E', 1969, + 'G', 1971, + 'K', 1971, + 'M', 1971, + 'P', 1971, + 'T', 1971, + 'd', 1978, + 'e', 1968, + 'g', 1970, + 'h', 1984, + 'k', 1970, + 'm', 1972, + 'n', 1985, + 'p', 1970, + 's', 1981, + 't', 1970, + 'u', 1985, + 'w', 1982, + '}', 1501, + 0xb5, 1985, + '\t', 1714, + ' ', 1714, + 'B', 1655, + 'b', 1655, ); 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(1709); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); - case 198: + case 196: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2190, + '(', 1563, + '.', 1597, + ']', 1468, + '}', 1501, + '\t', 1714, + ' ', 1714, + 'E', 1949, + 'e', 1949, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1709); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16340,21 +16353,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 199: + case 197: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2190, + '(', 1563, + '.', 1597, + ']', 1468, + '\t', 1714, + ' ', 1714, + 'E', 1949, + 'e', 1949, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1709); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16362,37 +16375,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 200: + case 198: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2190, + '(', 1563, + '.', 1597, + '}', 1501, + '\t', 1714, + ' ', 1714, + 'E', 1975, + 'e', 1975, ); 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(1709); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); - case 201: + case 199: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1594, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2190, + '(', 1563, + '.', 1596, + ']', 1468, + '}', 1501, + '\t', 1714, + ' ', 1714, + 'E', 1949, + 'e', 1949, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1709); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16400,58 +16413,58 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 202: + case 200: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1594, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2190, + '(', 1563, + '.', 1596, + '}', 1501, + '\t', 1714, + ' ', 1714, + 'E', 1975, + 'e', 1975, ); 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(1709); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); - case 203: + case 201: 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, + '#', 2190, + '(', 1563, + '.', 1937, + 'E', 1942, + 'G', 1944, + 'K', 1944, + 'M', 1944, + 'P', 1944, + 'T', 1944, + ']', 1468, + '_', 1946, + 'd', 1951, + 'e', 1941, + 'g', 1943, + 'h', 1957, + 'k', 1943, + 'm', 1945, + 'n', 1958, + 'p', 1943, + 's', 1954, + 't', 1943, + 'u', 1958, + 'w', 1955, + '}', 1501, + 0xb5, 1958, + '\t', 1714, + ' ', 1714, + 'B', 1655, + 'b', 1655, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1709); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16460,42 +16473,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 204: + 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, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2190, + '(', 1563, + '.', 1937, + 'E', 1942, + 'G', 1944, + 'K', 1944, + 'M', 1944, + 'P', 1944, + 'T', 1944, + ']', 1468, + '_', 1946, + 'd', 1951, + 'e', 1941, + 'g', 1943, + 'h', 1957, + 'k', 1943, + 'm', 1945, + 'n', 1958, + 'p', 1943, + 's', 1954, + 't', 1943, + 'u', 1958, + 'w', 1955, + 0xb5, 1958, + '\t', 1714, + ' ', 1714, + 'B', 1655, + 'b', 1655, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1709); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16504,41 +16517,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 205: + case 203: 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, + '#', 2190, + '(', 1563, + '.', 1937, + 'E', 1942, + 'G', 1944, + 'K', 1944, + 'M', 1944, + 'P', 1944, + 'T', 1944, + ']', 1468, + 'd', 1951, + 'e', 1941, + 'g', 1943, + 'h', 1957, + 'k', 1943, + 'm', 1945, + 'n', 1958, + 'p', 1943, + 's', 1954, + 't', 1943, + 'u', 1958, + 'w', 1955, + '}', 1501, + 0xb5, 1958, + '\t', 1714, + ' ', 1714, + 'B', 1655, + 'b', 1655, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1709); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16546,40 +16559,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 206: + 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, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2190, + '(', 1563, + '.', 1937, + 'E', 1942, + 'G', 1944, + 'K', 1944, + 'M', 1944, + 'P', 1944, + 'T', 1944, + ']', 1468, + 'd', 1951, + 'e', 1941, + 'g', 1943, + 'h', 1957, + 'k', 1943, + 'm', 1945, + 'n', 1958, + 'p', 1943, + 's', 1954, + 't', 1943, + 'u', 1958, + 'w', 1955, + 0xb5, 1958, + '\t', 1714, + ' ', 1714, + 'B', 1655, + 'b', 1655, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1709); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16587,41 +16600,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 207: + case 205: 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, + '#', 2190, + '(', 1563, + '.', 1937, + 'E', 1944, + 'G', 1944, + 'K', 1944, + 'M', 1944, + 'P', 1944, + 'T', 1944, + ']', 1468, + 'd', 1951, + 'e', 1943, + 'g', 1943, + 'h', 1957, + 'k', 1943, + 'm', 1945, + 'n', 1958, + 'p', 1943, + 's', 1954, + 't', 1943, + 'u', 1958, + 'w', 1955, + '}', 1501, + 0xb5, 1958, + '\t', 1714, + ' ', 1714, + 'B', 1655, + 'b', 1655, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1709); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16629,40 +16642,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 208: + 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, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2190, + '(', 1563, + '.', 1937, + 'E', 1944, + 'G', 1944, + 'K', 1944, + 'M', 1944, + 'P', 1944, + 'T', 1944, + ']', 1468, + 'd', 1951, + 'e', 1943, + 'g', 1943, + 'h', 1957, + 'k', 1943, + 'm', 1945, + 'n', 1958, + 'p', 1943, + 's', 1954, + 't', 1943, + 'u', 1958, + 'w', 1955, + 0xb5, 1958, + '\t', 1714, + ' ', 1714, + 'B', 1655, + 'b', 1655, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1709); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16670,24 +16683,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 209: + case 207: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '_', 1944, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2190, + '(', 1563, + '.', 1937, + ']', 1468, + '_', 1946, + '}', 1501, + '\t', 1714, + ' ', 1714, + 'E', 1949, + 'e', 1949, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1709); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16696,23 +16709,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 210: + case 208: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2190, + '(', 1563, + '.', 1937, + ']', 1468, + '_', 1946, + '\t', 1714, + ' ', 1714, + 'E', 1949, + 'e', 1949, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1709); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16721,22 +16734,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 211: + case 209: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2190, + '(', 1563, + '.', 1937, + ']', 1468, + '}', 1501, + '\t', 1714, + ' ', 1714, + 'E', 1949, + 'e', 1949, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1709); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16744,18 +16757,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); 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 210: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '(') ADVANCE(1563); + if (lookahead == '.') ADVANCE(1937); + if (lookahead == ']') ADVANCE(1468); + if (lookahead == '}') ADVANCE(1501); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1714); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1709); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16763,21 +16776,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 213: + case 211: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2190, + '(', 1563, + '.', 1937, + ']', 1468, + '\t', 1714, + ' ', 1714, + 'E', 1949, + 'e', 1949, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1709); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16785,17 +16798,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 214: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1935); - if (lookahead == ']') ADVANCE(1466); + case 212: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '(') ADVANCE(1563); + if (lookahead == '.') ADVANCE(1937); + if (lookahead == ']') ADVANCE(1468); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1714); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1709); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16803,23 +16816,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 215: + case 213: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1937, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2190, + '(', 1563, + '.', 1939, + ']', 1468, + '_', 1946, + '\t', 1714, + ' ', 1714, + 'E', 1949, + 'e', 1949, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1709); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16828,21 +16841,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 216: + case 214: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1937, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2190, + '(', 1563, + '.', 1939, + ']', 1468, + '\t', 1714, + ' ', 1714, + 'E', 1949, + 'e', 1949, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1709); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16850,17 +16863,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 217: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1937); - if (lookahead == ']') ADVANCE(1466); + case 215: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '(') ADVANCE(1563); + if (lookahead == '.') ADVANCE(1939); + if (lookahead == ']') ADVANCE(1468); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1714); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1709); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16868,21 +16881,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 218: + case 216: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1597, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2190, + '(', 1563, + '.', 1599, + ']', 1468, + '\t', 1714, + ' ', 1714, + 'E', 1949, + 'e', 1949, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1709); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16890,169 +16903,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 219: + case 217: 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, + '#', 2190, + '(', 1563, + '.', 1962, + 'E', 1969, + 'G', 1971, + 'K', 1971, + 'M', 1971, + 'P', 1971, + 'T', 1971, + '_', 1977, + 'd', 1978, + 'e', 1968, + 'g', 1970, + 'h', 1984, + 'k', 1970, + 'm', 1972, + 'n', 1985, + 'p', 1970, + 's', 1981, + 't', 1970, + 'u', 1985, + 'w', 1982, + '}', 1501, + 0xb5, 1985, + '\t', 1714, + ' ', 1714, + 'B', 1655, + 'b', 1655, ); 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(1709); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); - case 220: + case 218: 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, + '#', 2190, + '(', 1563, + '.', 1962, + 'E', 1969, + 'G', 1971, + 'K', 1971, + 'M', 1971, + 'P', 1971, + 'T', 1971, + 'd', 1978, + 'e', 1968, + 'g', 1970, + 'h', 1984, + 'k', 1970, + 'm', 1972, + 'n', 1985, + 'p', 1970, + 's', 1981, + 't', 1970, + 'u', 1985, + 'w', 1982, + '}', 1501, + 0xb5, 1985, + '\t', 1714, + ' ', 1714, + 'B', 1655, + 'b', 1655, ); 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(1709); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); - case 221: + case 219: 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, + '#', 2190, + '(', 1563, + '.', 1962, + 'E', 1971, + 'G', 1971, + 'K', 1971, + 'M', 1971, + 'P', 1971, + 'T', 1971, + 'd', 1978, + 'e', 1970, + 'g', 1970, + 'h', 1984, + 'k', 1970, + 'm', 1972, + 'n', 1985, + 'p', 1970, + 's', 1981, + 't', 1970, + 'u', 1985, + 'w', 1982, + '}', 1501, + 0xb5, 1985, + '\t', 1714, + ' ', 1714, + 'B', 1655, + 'b', 1655, ); 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(1709); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); - case 222: + case 220: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2190, + '(', 1563, + '.', 1962, + '_', 1977, + '}', 1501, + '\t', 1714, + ' ', 1714, + 'E', 1975, + 'e', 1975, ); 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(1709); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); - case 223: + case 221: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2190, + '(', 1563, + '.', 1962, + '}', 1501, + '\t', 1714, + ' ', 1714, + 'E', 1975, + 'e', 1975, ); 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(1709); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); - case 224: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1960); - if (lookahead == '}') ADVANCE(1499); + case 222: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '(') ADVANCE(1563); + if (lookahead == '.') ADVANCE(1962); + if (lookahead == '}') ADVANCE(1501); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1714); 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(1709); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); - case 225: + case 223: ADVANCE_MAP( - '#', 2188, - '(', 1561, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2190, + '(', 1563, + ']', 1468, + '_', 1946, + '\t', 1714, + ' ', 1714, + 'E', 1949, + 'e', 1949, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1709); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17061,17 +17074,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 226: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == ']') ADVANCE(1466); - if (lookahead == '}') ADVANCE(1499); + case 224: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '(') ADVANCE(1563); + if (lookahead == ']') ADVANCE(1468); + if (lookahead == '}') ADVANCE(1501); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1714); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1709); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17079,18 +17092,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 227: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == ']') ADVANCE(1466); + case 225: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '(') ADVANCE(1563); + if (lookahead == ']') ADVANCE(1468); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1714); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1947); + lookahead == 'e') ADVANCE(1949); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1709); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17098,668 +17111,678 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); END_STATE(); - case 228: + case 226: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2190, + '(', 1563, + '_', 1977, + '}', 1501, + '\t', 1714, + ' ', 1714, + 'E', 1975, + 'e', 1975, ); 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(1709); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); - case 229: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '{') ADVANCE(1498); + case 227: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '(') ADVANCE(1563); + if (lookahead == '{') ADVANCE(1500); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(269); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); - case 230: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '}') ADVANCE(1499); + case 228: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '(') ADVANCE(1563); + if (lookahead == '}') ADVANCE(1501); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1714); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); + lookahead == 'e') ADVANCE(1975); 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(1709); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); - case 231: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '}') ADVANCE(1499); + case 229: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '(') ADVANCE(1563); + if (lookahead == '}') ADVANCE(1501); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1714); 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(1709); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); - case 232: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); + case 230: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '(') ADVANCE(1563); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); - case 233: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); + case 231: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '(') ADVANCE(1563); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); END_STATE(); - case 234: + case 232: 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, + '#', 2190, + '(', 1469, + '-', 1785, + '.', 1597, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + '[', 1467, + 'd', 1826, + 'e', 1808, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + 0xb5, 1893, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); + lookahead == ' ') SKIP(238); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); - case 235: + case 233: 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, + '#', 2190, + '(', 1469, + '-', 1785, + '.', 1792, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + '[', 1467, + '_', 1815, + 'd', 1826, + 'e', 1808, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + 0xb5, 1893, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); + lookahead == ' ') SKIP(238); 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(1655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); - case 236: + case 234: 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, + '#', 2190, + '(', 1469, + '-', 1785, + '.', 1792, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + '[', 1467, + 'd', 1826, + 'e', 1808, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + 0xb5, 1893, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); + lookahead == ' ') SKIP(238); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); - case 237: + case 235: 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, + '#', 2190, + '(', 1469, + '-', 1785, + '.', 1792, + 'E', 1812, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + '[', 1467, + 'd', 1826, + 'e', 1811, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + 0xb5, 1893, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); + lookahead == ' ') SKIP(238); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + END_STATE(); + case 236: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '(') ADVANCE(1469); + if (lookahead == '-') ADVANCE(1785); + if (lookahead == '[') ADVANCE(1467); + if (lookahead == '\t' || + lookahead == ' ') SKIP(238); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + END_STATE(); + case 237: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '(') ADVANCE(1469); + if (lookahead == '-') ADVANCE(296); + if (lookahead == '=') ADVANCE(1731); + if (lookahead == '[') ADVANCE(1467); + if (lookahead == '\t' || + lookahead == ' ') SKIP(238); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1449); END_STATE(); case 238: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '-') ADVANCE(1783); - if (lookahead == '[') ADVANCE(1465); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '(') ADVANCE(1469); + if (lookahead == '-') ADVANCE(296); + if (lookahead == '[') ADVANCE(1467); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(238); END_STATE(); case 239: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '-') ADVANCE(297); - if (lookahead == '=') ADVANCE(1729); - if (lookahead == '[') ADVANCE(1465); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == ',') ADVANCE(1471); + if (lookahead == ']') ADVANCE(1468); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1447); + lookahead == ' ') SKIP(239); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1668); END_STATE(); case 240: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '-') ADVANCE(297); - if (lookahead == '[') ADVANCE(1465); + ADVANCE_MAP( + '#', 2190, + '.', 1597, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'd', 1826, + 'e', 1808, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + '{', 1500, + 0xb5, 1893, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); + lookahead == ' ') SKIP(269); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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, + '#', 2190, + '.', 1597, + 'E', 1969, + 'G', 1971, + 'K', 1971, + 'M', 1971, + 'P', 1971, + 'T', 1971, + 'd', 1978, + 'e', 1968, + 'g', 1970, + 'h', 1984, + 'k', 1970, + 'm', 1972, + 'n', 1985, + 'p', 1970, + 's', 1981, + 't', 1970, + 'u', 1985, + 'w', 1982, + 0xb5, 1985, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(271); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); 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, - ); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1597); + if (lookahead == '{') ADVANCE(1500); 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 == ' ') SKIP(269); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1821); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 243: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1597); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(271); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1975); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); case 244: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1722); + if (lookahead == 'i') ADVANCE(1363); 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 == ' ') SKIP(244); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1375); END_STATE(); case 245: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1720); - if (lookahead == 'i') ADVANCE(1361); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1606); + if (lookahead == '_') ADVANCE(1815); if (lookahead == '\t' || - lookahead == ' ') SKIP(245); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == ' ') SKIP(254); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1793); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 246: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1604); - if (lookahead == '_') ADVANCE(1813); + ADVANCE_MAP( + '#', 2190, + '.', 1792, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + '_', 1815, + 'd', 1826, + 'e', 1808, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + '{', 1500, + 0xb5, 1893, + ); 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 == ' ') SKIP(269); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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, + '#', 2190, + '.', 1792, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'd', 1826, + 'e', 1808, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + '{', 1500, + 0xb5, 1893, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(269); 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(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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, + '#', 2190, + '.', 1792, + 'E', 1812, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'd', 1826, + 'e', 1811, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + '{', 1500, + 0xb5, 1893, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(269); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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, - ); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1792); + if (lookahead == '_') ADVANCE(1815); + if (lookahead == '{') ADVANCE(1500); 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 == ' ') SKIP(269); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1821); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 250: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1792); + if (lookahead == '{') ADVANCE(1500); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(269); 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(1821); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 251: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1792); + if (lookahead == '{') ADVANCE(1500); 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 == ' ') SKIP(269); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 252: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1596); + if (lookahead == '{') ADVANCE(1500); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(269); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1821); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 253: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1596); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(271); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1975); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); case 254: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(336); 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 == ' ') SKIP(254); + if (lookahead == '+' || + lookahead == '-') ADVANCE(313); END_STATE(); case 255: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(337); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1974); + if (lookahead == '_') ADVANCE(1977); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == ' ') SKIP(254); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + 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(1988); END_STATE(); case 256: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1972); - if (lookahead == '_') ADVANCE(1975); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1604); + if (lookahead == '_') ADVANCE(1977); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == ' ') SKIP(254); 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); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); case 257: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1602); - if (lookahead == '_') ADVANCE(1975); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1817); + if (lookahead == '_') ADVANCE(1815); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == ' ') SKIP(254); 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(1793); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 258: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1815); - if (lookahead == '_') ADVANCE(1813); + ADVANCE_MAP( + '#', 2190, + '.', 1962, + 'E', 1969, + 'G', 1971, + 'K', 1971, + 'M', 1971, + 'P', 1971, + 'T', 1971, + '_', 1977, + 'd', 1978, + 'e', 1968, + 'g', 1970, + 'h', 1984, + 'k', 1970, + 'm', 1972, + 'n', 1985, + 'p', 1970, + 's', 1981, + 't', 1970, + 'u', 1985, + 'w', 1982, + 0xb5, 1985, + ); 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 == ' ') SKIP(271); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); 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, + '#', 2190, + '.', 1962, + 'E', 1969, + 'G', 1971, + 'K', 1971, + 'M', 1971, + 'P', 1971, + 'T', 1971, + 'd', 1978, + 'e', 1968, + 'g', 1970, + 'h', 1984, + 'k', 1970, + 'm', 1972, + 'n', 1985, + 'p', 1970, + 's', 1981, + 't', 1970, + 'u', 1985, + 'w', 1982, + 0xb5, 1985, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(271); 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(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); 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, + '#', 2190, + '.', 1962, + 'E', 1971, + 'G', 1971, + 'K', 1971, + 'M', 1971, + 'P', 1971, + 'T', 1971, + 'd', 1978, + 'e', 1970, + 'g', 1970, + 'h', 1984, + 'k', 1970, + 'm', 1972, + 'n', 1985, + 'p', 1970, + 's', 1981, + 't', 1970, + 'u', 1985, + 'w', 1982, + 0xb5, 1985, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(271); 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(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); 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, - ); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1962); + if (lookahead == '_') ADVANCE(1977); 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 == ' ') SKIP(271); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1975); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); case 262: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1960); - if (lookahead == '_') ADVANCE(1975); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1962); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(271); 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(1975); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); case 263: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1960); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(1962); 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 == ' ') SKIP(271); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); case 264: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1960); + ADVANCE_MAP( + '#', 2190, + ':', 1715, + 'a', 412, + 'c', 438, + 'd', 373, + 'e', 517, + 'm', 436, + 'u', 474, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ' ') SKIP(264); END_STATE(); case 265: - ADVANCE_MAP( - '#', 2188, - ':', 1713, - 'a', 413, - 'c', 439, - 'd', 374, - 'e', 518, - 'm', 437, - 'u', 475, - ); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == ':') ADVANCE(1715); if (lookahead == '\t' || lookahead == ' ') SKIP(265); END_STATE(); case 266: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == ':') ADVANCE(1713); - 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, + '#', 2190, + '>', 1481, + '[', 1467, + ']', 1468, + 'c', 1353, + 'f', 1372, + 'i', 1361, + 'o', 1364, + 'v', 1349, + '\t', 1714, + ' ', 1714, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1709); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -17767,75 +17790,75 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1373); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1375); + END_STATE(); + case 267: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '_') ADVANCE(1815); + if (lookahead == '{') ADVANCE(1500); + if (lookahead == '\t' || + lookahead == ' ') SKIP(269); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1821); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 268: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '_') ADVANCE(1977); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(271); 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(1975); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); case 269: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '_') ADVANCE(1975); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '{') ADVANCE(1500); 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 == ' ') SKIP(269); END_STATE(); case 270: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '{') ADVANCE(1500); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(269); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1821); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 271: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2190); 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 == ' ') SKIP(271); END_STATE(); case 272: - if (lookahead == '#') ADVANCE(2188); + if (lookahead == '#') ADVANCE(2190); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(271); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1975); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); case 273: - if (lookahead == '#') ADVANCE(2188); + if (lookahead == '#') ADVANCE(2190); 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 == ' ') SKIP(271); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1463); END_STATE(); case 274: - if (lookahead == '#') ADVANCE(2188); + if (lookahead == '#') ADVANCE(2190); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1461); + lookahead == ' ') SKIP(271); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1499); END_STATE(); case 275: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1497); - END_STATE(); - case 276: - if (lookahead == '#') ADVANCE(2191); - if (lookahead == '$') ADVANCE(1473); - if (lookahead == ':') ADVANCE(1713); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1475); + if (lookahead == ':') ADVANCE(1715); if (lookahead == '\t' || - lookahead == ' ') SKIP(194); + lookahead == ' ') SKIP(192); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -17844,518 +17867,521 @@ 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(1048); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1032); END_STATE(); - case 277: + case 276: ADVANCE_MAP( - '#', 2191, - ':', 1713, - 'a', 932, - 'c', 951, - 'd', 895, - 'e', 1019, - 'm', 952, - 'u', 980, + '#', 2193, + ':', 1715, + 'a', 934, + 'c', 953, + 'd', 897, + 'e', 1021, + 'm', 954, + 'u', 982, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == ' ') SKIP(264); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); - case 278: - if (lookahead == '#') ADVANCE(1700); - if (lookahead == '\'') ADVANCE(1691); - if (lookahead == '(') ADVANCE(1467); + case 277: + if (lookahead == '#') ADVANCE(1702); + if (lookahead == '\'') ADVANCE(1693); + if (lookahead == '(') ADVANCE(1469); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1699); - if (lookahead != 0) ADVANCE(1700); + lookahead == ' ') ADVANCE(1701); + if (lookahead != 0) ADVANCE(1702); + END_STATE(); + case 278: + if (lookahead == '+') ADVANCE(377); + if (lookahead == '>') ADVANCE(1741); + if (lookahead == 'r') ADVANCE(1533); + if (lookahead == 'u') ADVANCE(487); END_STATE(); case 279: - if (lookahead == '+') ADVANCE(378); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(340); if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(488); + if (lookahead == '_') ADVANCE(340); + if (lookahead == 'l') ADVANCE(472); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'r') ADVANCE(452); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 280: - if (lookahead == '+') ADVANCE(339); - if (lookahead == '-') ADVANCE(341); + if (lookahead == '+') ADVANCE(378); if (lookahead == '>') ADVANCE(1737); - if (lookahead == '_') ADVANCE(341); - if (lookahead == 'l') ADVANCE(473); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); END_STATE(); case 281: - if (lookahead == '+') ADVANCE(379); - if (lookahead == '>') ADVANCE(1735); - END_STATE(); - case 282: ADVANCE_MAP( - '+', 430, - '>', 1737, - 'I', 534, - 'i', 534, - 'n', 364, - 'r', 453, - 'B', 1653, - 'b', 1653, + '+', 429, + '>', 1739, + 'I', 533, + 'i', 533, + 'n', 363, + 'r', 452, + 'B', 1655, + 'b', 1655, ); END_STATE(); + case 282: + if (lookahead == '+') ADVANCE(429); + if (lookahead == '>') ADVANCE(1739); + if (lookahead == 'l') ADVANCE(472); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'r') ADVANCE(452); + 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(429); + if (lookahead == '>') ADVANCE(1739); + if (lookahead == 'l') ADVANCE(472); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'r') ADVANCE(452); + if (lookahead == 'x') ADVANCE(444); 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(429); + if (lookahead == '>') ADVANCE(1739); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'r') ADVANCE(452); 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(428); + if (lookahead == '>') ADVANCE(1735); END_STATE(); case 286: - if (lookahead == '+') ADVANCE(429); - if (lookahead == '>') ADVANCE(1733); + if (lookahead == '+') ADVANCE(437); + if (lookahead == '>') ADVANCE(522); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'r') ADVANCE(457); 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(437); + if (lookahead == '>') ADVANCE(522); + if (lookahead == 'r') ADVANCE(457); END_STATE(); case 288: - if (lookahead == '+') ADVANCE(438); + if (lookahead == '+') ADVANCE(379); if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(458); + if (lookahead == 'r') ADVANCE(1533); + if (lookahead == 'u') ADVANCE(492); 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(379); + if (lookahead == '>') ADVANCE(523); + if (lookahead == 'u') ADVANCE(492); END_STATE(); case 290: - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(493); + if (lookahead == '+') ADVANCE(442); + if (lookahead == '>') ADVANCE(525); END_STATE(); case 291: - if (lookahead == '+') ADVANCE(443); - if (lookahead == '>') ADVANCE(526); + if (lookahead == '+') ADVANCE(383); + if (lookahead == '>') ADVANCE(527); END_STATE(); case 292: - if (lookahead == '+') ADVANCE(384); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '-') ADVANCE(354); END_STATE(); case 293: - if (lookahead == '-') ADVANCE(355); + if (lookahead == '-') ADVANCE(384); END_STATE(); case 294: - if (lookahead == '-') ADVANCE(385); + if (lookahead == '-') ADVANCE(384); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1562); END_STATE(); case 295: - if (lookahead == '-') ADVANCE(385); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); + if (lookahead == '-') ADVANCE(512); END_STATE(); case 296: - if (lookahead == '-') ADVANCE(513); + if (lookahead == '-') ADVANCE(1486); END_STATE(); case 297: - if (lookahead == '-') ADVANCE(1484); + if (lookahead == '-') ADVANCE(1486); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '>') ADVANCE(1466); + if (lookahead == '_') ADVANCE(307); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(538); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); END_STATE(); case 298: - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '>') ADVANCE(1464); - if (lookahead == '_') ADVANCE(308); + if (lookahead == '-') ADVANCE(1486); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '_') ADVANCE(307); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + lookahead == 'i') ADVANCE(538); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); END_STATE(); case 299: - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '-') ADVANCE(432); END_STATE(); case 300: - if (lookahead == '-') ADVANCE(433); + if (lookahead == '-') ADVANCE(489); END_STATE(); case 301: - if (lookahead == '-') ADVANCE(490); + if (lookahead == '-') ADVANCE(559); END_STATE(); case 302: - if (lookahead == '-') ADVANCE(560); + if (lookahead == '-') ADVANCE(513); END_STATE(); case 303: if (lookahead == '-') ADVANCE(514); END_STATE(); case 304: - if (lookahead == '-') ADVANCE(515); + if (lookahead == '-') ADVANCE(449); END_STATE(); case 305: - if (lookahead == '-') ADVANCE(450); + if (lookahead == '-') ADVANCE(515); END_STATE(); case 306: - if (lookahead == '-') ADVANCE(516); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '_') ADVANCE(307); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(538); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); 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(335); + if (lookahead == '_') ADVANCE(307); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); END_STATE(); case 308: - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '.') ADVANCE(1509); + if (lookahead == '_') ADVANCE(342); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 309: - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == '.') ADVANCE(1595); END_STATE(); case 310: - if (lookahead == '.') ADVANCE(1593); + if (lookahead == '.') ADVANCE(1484); END_STATE(); case 311: - if (lookahead == '.') ADVANCE(1482); + if (lookahead == '.') ADVANCE(310); END_STATE(); case 312: - if (lookahead == '.') ADVANCE(311); + if (lookahead == '.') ADVANCE(310); + if (lookahead == '_') ADVANCE(336); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); END_STATE(); case 313: - if (lookahead == '.') ADVANCE(311); - if (lookahead == '_') ADVANCE(337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '.') ADVANCE(337); + if (lookahead == '_') ADVANCE(313); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); END_STATE(); case 314: - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '2') ADVANCE(547); + if (lookahead == '0' || + lookahead == '1') ADVANCE(553); END_STATE(); case 315: - if (lookahead == '2') ADVANCE(548); - if (lookahead == '0' || - lookahead == '1') ADVANCE(554); + if (lookahead == ':') ADVANCE(554); END_STATE(); case 316: if (lookahead == ':') ADVANCE(555); END_STATE(); case 317: - if (lookahead == ':') ADVANCE(556); + if (lookahead == ';') ADVANCE(1718); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(317); END_STATE(); case 318: - if (lookahead == ';') ADVANCE(1716); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(318); + if (lookahead == '=') ADVANCE(1141); + if (lookahead == '~') ADVANCE(1123); END_STATE(); case 319: - if (lookahead == '=') ADVANCE(1139); - if (lookahead == '~') ADVANCE(1121); + if (lookahead == '=') ADVANCE(1550); + if (lookahead == '~') ADVANCE(1556); END_STATE(); case 320: - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1554); + if (lookahead == '=') ADVANCE(1549); + if (lookahead == '>') ADVANCE(1502); + if (lookahead == '~') ADVANCE(1555); END_STATE(); case 321: - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '>') ADVANCE(1500); - if (lookahead == '~') ADVANCE(1553); + if (lookahead == '=') ADVANCE(1549); + if (lookahead == '~') ADVANCE(1555); END_STATE(); case 322: - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '~') ADVANCE(1553); + if (lookahead == '>') ADVANCE(1502); END_STATE(); case 323: - if (lookahead == '>') ADVANCE(1500); + if (lookahead == '>') ADVANCE(1749); END_STATE(); case 324: if (lookahead == '>') ADVANCE(1747); END_STATE(); case 325: - if (lookahead == '>') ADVANCE(1745); + if (lookahead == '>') ADVANCE(1743); END_STATE(); case 326: - if (lookahead == '>') ADVANCE(1741); + if (lookahead == '>') ADVANCE(1745); END_STATE(); case 327: - if (lookahead == '>') ADVANCE(1743); + if (lookahead == '>') ADVANCE(524); END_STATE(); case 328: - if (lookahead == '>') ADVANCE(525); + if (lookahead == '>') ADVANCE(526); END_STATE(); case 329: - if (lookahead == '>') ADVANCE(527); + if (lookahead == '>') ADVANCE(528); END_STATE(); case 330: if (lookahead == '>') ADVANCE(529); END_STATE(); case 331: - if (lookahead == '>') ADVANCE(530); + if (lookahead == 'I') ADVANCE(533); + if (lookahead == 'i') ADVANCE(533); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); END_STATE(); case 332: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(534); + if (lookahead == 'I') ADVANCE(533); + if (lookahead == 'i') ADVANCE(356); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1655); END_STATE(); case 333: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(357); + if (lookahead == 'I') ADVANCE(533); + if (lookahead == 'i') ADVANCE(419); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == 's') ADVANCE(1660); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1655); 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(533); + if (lookahead == 'i') ADVANCE(419); + if (lookahead == 's') ADVANCE(1660); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1655); 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(1649); END_STATE(); case 336: if (lookahead == '_') ADVANCE(336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); END_STATE(); case 337: if (lookahead == '_') ADVANCE(337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 338: - if (lookahead == '_') ADVANCE(338); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if (lookahead == '_') ADVANCE(340); + if (lookahead == 'o') ADVANCE(323); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 339: - if (lookahead == '_') ADVANCE(341); - if (lookahead == 'o') ADVANCE(324); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '_') ADVANCE(340); + if (lookahead == '+' || + lookahead == '-') ADVANCE(340); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 340: - if (lookahead == '_') ADVANCE(341); - if (lookahead == '+' || - lookahead == '-') ADVANCE(341); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '_') ADVANCE(340); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 341: if (lookahead == '_') ADVANCE(341); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); END_STATE(); case 342: if (lookahead == '_') ADVANCE(342); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 343: - if (lookahead == '_') ADVANCE(343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == 'a') ADVANCE(469); END_STATE(); case 344: - if (lookahead == 'a') ADVANCE(470); + if (lookahead == 'a') ADVANCE(469); + if (lookahead == 'r') ADVANCE(1660); END_STATE(); case 345: - if (lookahead == 'a') ADVANCE(470); - if (lookahead == 'r') ADVANCE(1658); + if (lookahead == 'a') ADVANCE(518); END_STATE(); case 346: - if (lookahead == 'a') ADVANCE(519); + if (lookahead == 'a') ADVANCE(417); END_STATE(); case 347: - if (lookahead == 'a') ADVANCE(418); + if (lookahead == 'a') ADVANCE(461); END_STATE(); case 348: - if (lookahead == 'a') ADVANCE(462); + if (lookahead == 'a') ADVANCE(470); END_STATE(); case 349: - if (lookahead == 'a') ADVANCE(471); + if (lookahead == 'a') ADVANCE(467); END_STATE(); case 350: - if (lookahead == 'a') ADVANCE(468); + if (lookahead == 'a') ADVANCE(481); END_STATE(); case 351: - if (lookahead == 'a') ADVANCE(482); + if (lookahead == 'a') ADVANCE(498); END_STATE(); case 352: - if (lookahead == 'a') ADVANCE(499); + if (lookahead == 'a') ADVANCE(500); END_STATE(); case 353: - if (lookahead == 'a') ADVANCE(501); + if (lookahead == 'a') ADVANCE(499); END_STATE(); case 354: - if (lookahead == 'a') ADVANCE(500); + if (lookahead == 'a') ADVANCE(425); + if (lookahead == 'o') ADVANCE(454); + if (lookahead == 's') ADVANCE(390); + if (lookahead == 'x') ADVANCE(439); END_STATE(); case 355: - if (lookahead == 'a') ADVANCE(426); - if (lookahead == 'o') ADVANCE(455); - if (lookahead == 's') ADVANCE(391); - if (lookahead == 'x') ADVANCE(440); + if (lookahead == 'a') ADVANCE(466); END_STATE(); case 356: - if (lookahead == 'a') ADVANCE(467); + if (lookahead == 'b') ADVANCE(1655); END_STATE(); case 357: - if (lookahead == 'b') ADVANCE(1653); + if (lookahead == 'c') ADVANCE(1660); END_STATE(); case 358: - if (lookahead == 'c') ADVANCE(1658); + if (lookahead == 'c') ADVANCE(389); END_STATE(); case 359: - if (lookahead == 'c') ADVANCE(390); + if (lookahead == 'c') ADVANCE(382); END_STATE(); case 360: - if (lookahead == 'c') ADVANCE(383); + if (lookahead == 'd') ADVANCE(1529); END_STATE(); case 361: - if (lookahead == 'd') ADVANCE(1527); + if (lookahead == 'd') ADVANCE(1573); END_STATE(); case 362: - if (lookahead == 'd') ADVANCE(1571); + if (lookahead == 'd') ADVANCE(1587); END_STATE(); case 363: - if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'd') ADVANCE(471); END_STATE(); case 364: - if (lookahead == 'd') ADVANCE(472); + if (lookahead == 'd') ADVANCE(508); END_STATE(); case 365: - if (lookahead == 'd') ADVANCE(509); + if (lookahead == 'd') ADVANCE(477); END_STATE(); case 366: - if (lookahead == 'd') ADVANCE(478); + if (lookahead == 'e') ADVANCE(1049); END_STATE(); case 367: - if (lookahead == 'e') ADVANCE(1047); + if (lookahead == 'e') ADVANCE(1073); END_STATE(); case 368: - if (lookahead == 'e') ADVANCE(1071); + if (lookahead == 'e') ADVANCE(1091); END_STATE(); case 369: - if (lookahead == 'e') ADVANCE(1089); + if (lookahead == 'e') ADVANCE(1094); END_STATE(); case 370: - if (lookahead == 'e') ADVANCE(1092); + if (lookahead == 'e') ADVANCE(1058); END_STATE(); case 371: - if (lookahead == 'e') ADVANCE(1056); + if (lookahead == 'e') ADVANCE(1558); END_STATE(); case 372: - if (lookahead == 'e') ADVANCE(1556); + if (lookahead == 'e') ADVANCE(1560); END_STATE(); case 373: - if (lookahead == 'e') ADVANCE(1558); + if (lookahead == 'e') ADVANCE(387); END_STATE(); case 374: - if (lookahead == 'e') ADVANCE(388); + if (lookahead == 'e') ADVANCE(1480); END_STATE(); case 375: - if (lookahead == 'e') ADVANCE(1478); + if (lookahead == 'e') ADVANCE(357); END_STATE(); case 376: - if (lookahead == 'e') ADVANCE(358); + if (lookahead == 'e') ADVANCE(357); + if (lookahead == 't') ADVANCE(347); END_STATE(); case 377: - if (lookahead == 'e') ADVANCE(358); - if (lookahead == 't') ADVANCE(348); + if (lookahead == 'e') ADVANCE(324); END_STATE(); case 378: - if (lookahead == 'e') ADVANCE(325); + if (lookahead == 'e') ADVANCE(462); END_STATE(); case 379: - if (lookahead == 'e') ADVANCE(463); + if (lookahead == 'e') ADVANCE(328); END_STATE(); case 380: - if (lookahead == 'e') ADVANCE(329); + if (lookahead == 'e') ADVANCE(458); END_STATE(); case 381: - if (lookahead == 'e') ADVANCE(459); + if (lookahead == 'e') ADVANCE(460); END_STATE(); case 382: - if (lookahead == 'e') ADVANCE(461); + if (lookahead == 'e') ADVANCE(414); END_STATE(); case 383: - if (lookahead == 'e') ADVANCE(415); + if (lookahead == 'e') ADVANCE(463); END_STATE(); case 384: - if (lookahead == 'e') ADVANCE(464); + if (lookahead == 'e') ADVANCE(427); + if (lookahead == 'h') ADVANCE(348); + if (lookahead == 'i') ADVANCE(422); + if (lookahead == 'l') ADVANCE(405); + if (lookahead == 's') ADVANCE(505); 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 == 'f') ADVANCE(1070); END_STATE(); case 386: - if (lookahead == 'f') ADVANCE(1068); + if (lookahead == 'f') ADVANCE(1070); + if (lookahead == 'n') ADVANCE(1085); END_STATE(); case 387: - if (lookahead == 'f') ADVANCE(1068); - if (lookahead == 'n') ADVANCE(1083); + if (lookahead == 'f') ADVANCE(827); END_STATE(); case 388: - if (lookahead == 'f') ADVANCE(825); + if (lookahead == 'f') ADVANCE(1479); END_STATE(); case 389: - if (lookahead == 'f') ADVANCE(1477); + if (lookahead == 'h') ADVANCE(1079); END_STATE(); case 390: - if (lookahead == 'h') ADVANCE(1077); + if (lookahead == 'h') ADVANCE(411); END_STATE(); case 391: - if (lookahead == 'h') ADVANCE(412); + if (lookahead == 'h') ADVANCE(1545); END_STATE(); case 392: - if (lookahead == 'h') ADVANCE(1543); + if (lookahead == 'h') ADVANCE(1541); END_STATE(); case 393: - if (lookahead == 'h') ADVANCE(1539); + if (lookahead == 'h') ADVANCE(1547); END_STATE(); case 394: - if (lookahead == 'h') ADVANCE(1545); + if (lookahead == 'h') ADVANCE(1543); END_STATE(); case 395: - if (lookahead == 'h') ADVANCE(1541); + if (lookahead == 'h') ADVANCE(1476); END_STATE(); case 396: - if (lookahead == 'h') ADVANCE(1474); + if (lookahead == 'h') ADVANCE(1477); END_STATE(); case 397: - if (lookahead == 'h') ADVANCE(1475); + if (lookahead == 'h') ADVANCE(299); END_STATE(); case 398: - if (lookahead == 'h') ADVANCE(300); + if (lookahead == 'i') ADVANCE(408); END_STATE(); case 399: - if (lookahead == 'i') ADVANCE(409); + if (lookahead == 'i') ADVANCE(480); END_STATE(); case 400: - if (lookahead == 'i') ADVANCE(481); + if (lookahead == 'i') ADVANCE(488); END_STATE(); case 401: - if (lookahead == 'i') ADVANCE(489); + if (lookahead == 'i') ADVANCE(490); END_STATE(); case 402: - if (lookahead == 'i') ADVANCE(491); + if (lookahead == 'i') ADVANCE(493); END_STATE(); case 403: if (lookahead == 'i') ADVANCE(494); @@ -18364,141 +18390,141 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(495); END_STATE(); case 405: - if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'i') ADVANCE(409); END_STATE(); case 406: - if (lookahead == 'i') ADVANCE(410); + if (lookahead == 'i') ADVANCE(349); END_STATE(); case 407: - if (lookahead == 'i') ADVANCE(350); + if (lookahead == 'k') ADVANCE(1660); END_STATE(); case 408: - if (lookahead == 'k') ADVANCE(1658); + if (lookahead == 'k') ADVANCE(371); END_STATE(); case 409: if (lookahead == 'k') ADVANCE(372); END_STATE(); case 410: - if (lookahead == 'k') ADVANCE(373); + if (lookahead == 'l') ADVANCE(1097); END_STATE(); case 411: - if (lookahead == 'l') ADVANCE(1095); + if (lookahead == 'l') ADVANCE(1583); + if (lookahead == 'r') ADVANCE(1585); END_STATE(); case 412: - if (lookahead == 'l') ADVANCE(1581); - if (lookahead == 'r') ADVANCE(1583); + if (lookahead == 'l') ADVANCE(406); END_STATE(); case 413: - if (lookahead == 'l') ADVANCE(407); + if (lookahead == 'l') ADVANCE(410); END_STATE(); case 414: - if (lookahead == 'l') ADVANCE(411); + if (lookahead == 'l') ADVANCE(415); END_STATE(); case 415: - if (lookahead == 'l') ADVANCE(416); + if (lookahead == 'l') ADVANCE(304); END_STATE(); case 416: - if (lookahead == 'l') ADVANCE(305); + if (lookahead == 'l') ADVANCE(370); END_STATE(); case 417: - if (lookahead == 'l') ADVANCE(371); + if (lookahead == 'l') ADVANCE(473); END_STATE(); case 418: - if (lookahead == 'l') ADVANCE(474); + if (lookahead == 'n') ADVANCE(1055); END_STATE(); case 419: - if (lookahead == 'n') ADVANCE(1053); + if (lookahead == 'n') ADVANCE(1660); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); 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(1085); END_STATE(); case 422: - if (lookahead == 'n') ADVANCE(1083); + if (lookahead == 'n') ADVANCE(1535); END_STATE(); case 423: - if (lookahead == 'n') ADVANCE(1533); + if (lookahead == 'n') ADVANCE(1478); END_STATE(); case 424: - if (lookahead == 'n') ADVANCE(1476); + if (lookahead == 'n') ADVANCE(363); END_STATE(); case 425: - if (lookahead == 'n') ADVANCE(364); + if (lookahead == 'n') ADVANCE(362); END_STATE(); case 426: - if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'n') ADVANCE(475); END_STATE(); case 427: - if (lookahead == 'n') ADVANCE(476); + if (lookahead == 'n') ADVANCE(365); END_STATE(); case 428: - if (lookahead == 'n') ADVANCE(366); + if (lookahead == 'o') ADVANCE(507); END_STATE(); case 429: - if (lookahead == 'o') ADVANCE(508); + if (lookahead == 'o') ADVANCE(323); END_STATE(); case 430: - if (lookahead == 'o') ADVANCE(324); + if (lookahead == 'o') ADVANCE(453); END_STATE(); case 431: - if (lookahead == 'o') ADVANCE(454); + if (lookahead == 'o') ADVANCE(388); END_STATE(); case 432: - if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'o') ADVANCE(446); END_STATE(); case 433: - if (lookahead == 'o') ADVANCE(447); + if (lookahead == 'o') ADVANCE(486); END_STATE(); case 434: - if (lookahead == 'o') ADVANCE(487); + if (lookahead == 'o') ADVANCE(486); + if (lookahead == 's') ADVANCE(1660); END_STATE(); case 435: - if (lookahead == 'o') ADVANCE(487); - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'o') ADVANCE(361); END_STATE(); case 436: - if (lookahead == 'o') ADVANCE(362); + if (lookahead == 'o') ADVANCE(364); END_STATE(); case 437: - if (lookahead == 'o') ADVANCE(365); + if (lookahead == 'o') ADVANCE(327); END_STATE(); case 438: - if (lookahead == 'o') ADVANCE(328); + if (lookahead == 'o') ADVANCE(426); END_STATE(); case 439: - if (lookahead == 'o') ADVANCE(427); + if (lookahead == 'o') ADVANCE(455); END_STATE(); case 440: - if (lookahead == 'o') ADVANCE(456); + if (lookahead == 'o') ADVANCE(483); END_STATE(); case 441: if (lookahead == 'o') ADVANCE(484); + if (lookahead == 'u') ADVANCE(413); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(539); END_STATE(); case 442: - if (lookahead == 'o') ADVANCE(485); - if (lookahead == 'u') ADVANCE(414); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(540); + if (lookahead == 'o') ADVANCE(510); END_STATE(); case 443: - if (lookahead == 'o') ADVANCE(511); + if (lookahead == 'o') ADVANCE(465); END_STATE(); case 444: - if (lookahead == 'o') ADVANCE(466); + if (lookahead == 'p') ADVANCE(443); + if (lookahead == 't') ADVANCE(380); END_STATE(); case 445: - if (lookahead == 'p') ADVANCE(444); - if (lookahead == 't') ADVANCE(381); + if (lookahead == 'p') ADVANCE(374); END_STATE(); case 446: - if (lookahead == 'p') ADVANCE(375); + if (lookahead == 'p') ADVANCE(497); END_STATE(); case 447: - if (lookahead == 'p') ADVANCE(498); + if (lookahead == 'p') ADVANCE(351); END_STATE(); case 448: if (lookahead == 'p') ADVANCE(352); @@ -18507,197 +18533,197 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'p') ADVANCE(353); END_STATE(); case 450: - if (lookahead == 'p') ADVANCE(354); + if (lookahead == 'r') ADVANCE(1660); END_STATE(); case 451: - if (lookahead == 'r') ADVANCE(1658); + if (lookahead == 'r') ADVANCE(1533); END_STATE(); case 452: - if (lookahead == 'r') ADVANCE(1531); + if (lookahead == 'r') ADVANCE(285); END_STATE(); case 453: - if (lookahead == 'r') ADVANCE(286); + if (lookahead == 'r') ADVANCE(1531); END_STATE(); case 454: - if (lookahead == 'r') ADVANCE(1529); + if (lookahead == 'r') ADVANCE(1591); END_STATE(); case 455: if (lookahead == 'r') ADVANCE(1589); END_STATE(); case 456: - if (lookahead == 'r') ADVANCE(1587); + if (lookahead == 'r') ADVANCE(509); END_STATE(); case 457: - if (lookahead == 'r') ADVANCE(510); + if (lookahead == 'r') ADVANCE(290); END_STATE(); case 458: - if (lookahead == 'r') ADVANCE(291); + if (lookahead == 'r') ADVANCE(418); END_STATE(); case 459: - if (lookahead == 'r') ADVANCE(419); + if (lookahead == 'r') ADVANCE(326); END_STATE(); case 460: - if (lookahead == 'r') ADVANCE(327); + if (lookahead == 'r') ADVANCE(423); END_STATE(); case 461: - if (lookahead == 'r') ADVANCE(424); + if (lookahead == 'r') ADVANCE(503); END_STATE(); case 462: - if (lookahead == 'r') ADVANCE(504); + if (lookahead == 'r') ADVANCE(459); END_STATE(); case 463: - if (lookahead == 'r') ADVANCE(460); + if (lookahead == 'r') ADVANCE(464); END_STATE(); case 464: - if (lookahead == 'r') ADVANCE(465); + if (lookahead == 'r') ADVANCE(330); END_STATE(); case 465: - if (lookahead == 'r') ADVANCE(331); + if (lookahead == 'r') ADVANCE(482); END_STATE(); case 466: - if (lookahead == 'r') ADVANCE(483); + if (lookahead == 'r') ADVANCE(504); END_STATE(); case 467: - if (lookahead == 'r') ADVANCE(505); + if (lookahead == 's') ADVANCE(672); END_STATE(); case 468: - if (lookahead == 's') ADVANCE(670); + if (lookahead == 's') ADVANCE(1660); END_STATE(); case 469: - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 's') ADVANCE(1537); END_STATE(); case 470: - if (lookahead == 's') ADVANCE(1535); + if (lookahead == 's') ADVANCE(1539); END_STATE(); case 471: - if (lookahead == 's') ADVANCE(1537); + if (lookahead == 's') ADVANCE(295); END_STATE(); case 472: - if (lookahead == 's') ADVANCE(296); + if (lookahead == 's') ADVANCE(367); END_STATE(); case 473: - if (lookahead == 's') ADVANCE(368); + if (lookahead == 's') ADVANCE(369); END_STATE(); case 474: - if (lookahead == 's') ADVANCE(370); + if (lookahead == 's') ADVANCE(366); END_STATE(); case 475: - if (lookahead == 's') ADVANCE(367); + if (lookahead == 's') ADVANCE(479); END_STATE(); case 476: - if (lookahead == 's') ADVANCE(480); + if (lookahead == 's') ADVANCE(302); END_STATE(); case 477: if (lookahead == 's') ADVANCE(303); END_STATE(); case 478: - if (lookahead == 's') ADVANCE(304); + if (lookahead == 's') ADVANCE(305); END_STATE(); case 479: - if (lookahead == 's') ADVANCE(306); + if (lookahead == 't') ADVANCE(684); END_STATE(); case 480: - if (lookahead == 't') ADVANCE(682); + if (lookahead == 't') ADVANCE(292); END_STATE(); case 481: - if (lookahead == 't') ADVANCE(293); + if (lookahead == 't') ADVANCE(358); END_STATE(); case 482: - if (lookahead == 't') ADVANCE(359); + if (lookahead == 't') ADVANCE(668); END_STATE(); case 483: - if (lookahead == 't') ADVANCE(666); + if (lookahead == 't') ADVANCE(294); END_STATE(); case 484: - if (lookahead == 't') ADVANCE(295); + if (lookahead == 't') ADVANCE(548); END_STATE(); case 485: - if (lookahead == 't') ADVANCE(549); + if (lookahead == 't') ADVANCE(347); END_STATE(); case 486: - if (lookahead == 't') ADVANCE(348); + if (lookahead == 't') ADVANCE(293); END_STATE(); case 487: - if (lookahead == 't') ADVANCE(294); + if (lookahead == 't') ADVANCE(280); END_STATE(); case 488: - if (lookahead == 't') ADVANCE(281); + if (lookahead == 't') ADVANCE(391); END_STATE(); case 489: - if (lookahead == 't') ADVANCE(392); + if (lookahead == 't') ADVANCE(519); END_STATE(); case 490: - if (lookahead == 't') ADVANCE(520); + if (lookahead == 't') ADVANCE(392); END_STATE(); case 491: - if (lookahead == 't') ADVANCE(393); + if (lookahead == 't') ADVANCE(325); END_STATE(); case 492: - if (lookahead == 't') ADVANCE(326); + if (lookahead == 't') ADVANCE(291); END_STATE(); case 493: - if (lookahead == 't') ADVANCE(292); + if (lookahead == 't') ADVANCE(393); END_STATE(); case 494: if (lookahead == 't') ADVANCE(394); END_STATE(); case 495: - if (lookahead == 't') ADVANCE(395); + if (lookahead == 't') ADVANCE(397); END_STATE(); case 496: - if (lookahead == 't') ADVANCE(398); + if (lookahead == 't') ADVANCE(329); END_STATE(); case 497: - if (lookahead == 't') ADVANCE(330); + if (lookahead == 't') ADVANCE(300); END_STATE(); case 498: - if (lookahead == 't') ADVANCE(301); + if (lookahead == 't') ADVANCE(395); END_STATE(); case 499: if (lookahead == 't') ADVANCE(396); END_STATE(); case 500: - if (lookahead == 't') ADVANCE(397); + if (lookahead == 't') ADVANCE(502); END_STATE(); case 501: - if (lookahead == 't') ADVANCE(503); + if (lookahead == 't') ADVANCE(380); END_STATE(); case 502: if (lookahead == 't') ADVANCE(381); END_STATE(); case 503: - if (lookahead == 't') ADVANCE(382); + if (lookahead == 't') ADVANCE(476); END_STATE(); case 504: - if (lookahead == 't') ADVANCE(477); + if (lookahead == 't') ADVANCE(478); END_STATE(); case 505: - if (lookahead == 't') ADVANCE(479); + if (lookahead == 't') ADVANCE(355); END_STATE(); case 506: - if (lookahead == 't') ADVANCE(356); + if (lookahead == 'u') ADVANCE(520); + if (lookahead == 'x') ADVANCE(567); + if (lookahead != 0) ADVANCE(1706); END_STATE(); case 507: - if (lookahead == 'u') ADVANCE(521); - if (lookahead == 'x') ADVANCE(568); - if (lookahead != 0) ADVANCE(1704); + if (lookahead == 'u') ADVANCE(491); END_STATE(); case 508: - if (lookahead == 'u') ADVANCE(492); + if (lookahead == 'u') ADVANCE(416); END_STATE(); case 509: - if (lookahead == 'u') ADVANCE(417); + if (lookahead == 'u') ADVANCE(368); END_STATE(); case 510: - if (lookahead == 'u') ADVANCE(369); + if (lookahead == 'u') ADVANCE(496); END_STATE(); case 511: - if (lookahead == 'u') ADVANCE(497); + if (lookahead == 'u') ADVANCE(521); + if (lookahead == 'x') ADVANCE(568); + if (lookahead != 0) ADVANCE(1698); END_STATE(); case 512: - if (lookahead == 'u') ADVANCE(522); - if (lookahead == 'x') ADVANCE(569); - if (lookahead != 0) ADVANCE(1696); + if (lookahead == 'w') ADVANCE(400); END_STATE(); case 513: if (lookahead == 'w') ADVANCE(401); @@ -18712,12511 +18738,12615 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'w') ADVANCE(404); END_STATE(); case 517: - if (lookahead == 'w') ADVANCE(405); + if (lookahead == 'x') ADVANCE(501); END_STATE(); case 518: - if (lookahead == 'x') ADVANCE(502); + if (lookahead == 'y') ADVANCE(1660); END_STATE(); case 519: - if (lookahead == 'y') ADVANCE(1658); + if (lookahead == 'y') ADVANCE(445); END_STATE(); case 520: - if (lookahead == 'y') ADVANCE(446); + if (lookahead == '{') ADVANCE(564); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(562); END_STATE(); case 521: - if (lookahead == '{') ADVANCE(565); + if (lookahead == '{') ADVANCE(566); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(563); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(569); 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(1457); END_STATE(); case 523: - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '|') ADVANCE(1458); END_STATE(); case 524: - if (lookahead == '|') ADVANCE(1456); + if (lookahead == '|') ADVANCE(1462); END_STATE(); case 525: - if (lookahead == '|') ADVANCE(1460); + if (lookahead == '|') ADVANCE(1455); END_STATE(); case 526: - if (lookahead == '|') ADVANCE(1453); + if (lookahead == '|') ADVANCE(1461); END_STATE(); case 527: - if (lookahead == '|') ADVANCE(1459); + if (lookahead == '|') ADVANCE(1456); END_STATE(); case 528: - if (lookahead == '|') ADVANCE(1454); + if (lookahead == '|') ADVANCE(1459); END_STATE(); case 529: - if (lookahead == '|') ADVANCE(1457); + if (lookahead == '|') ADVANCE(1460); END_STATE(); case 530: - if (lookahead == '|') ADVANCE(1458); + if (lookahead == '}') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(530); END_STATE(); case 531: - if (lookahead == '}') ADVANCE(1704); + if (lookahead == '}') ADVANCE(1698); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); 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 == 'A' || + lookahead == 'a') ADVANCE(539); END_STATE(); case 533: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(540); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); END_STATE(); case 534: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1107); END_STATE(); case 535: if (lookahead == 'F' || lookahead == 'f') ADVANCE(1105); END_STATE(); case 536: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1103); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(543); END_STATE(); case 537: if (lookahead == 'I' || lookahead == 'i') ADVANCE(544); END_STATE(); case 538: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(545); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(534); END_STATE(); case 539: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(535); + lookahead == 'n') ADVANCE(1111); END_STATE(); case 540: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); + lookahead == 'n') ADVANCE(536); END_STATE(); case 541: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(537); + lookahead == 'n') ADVANCE(535); END_STATE(); case 542: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(536); + lookahead == 'n') ADVANCE(537); END_STATE(); case 543: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(538); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(546); END_STATE(); case 544: if (lookahead == 'T' || - lookahead == 't') ADVANCE(547); + lookahead == 't') ADVANCE(545); END_STATE(); case 545: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(546); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1100); END_STATE(); case 546: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); + lookahead == 'y') ADVANCE(1106); END_STATE(); case 547: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1673); END_STATE(); case 548: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1671); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1562); END_STATE(); case 549: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); END_STATE(); case 550: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(317); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); END_STATE(); case 551: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); END_STATE(); case 552: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1681); END_STATE(); case 553: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); END_STATE(); case 554: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(549); END_STATE(); case 555: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(550); END_STATE(); case 556: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(551); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1680); END_STATE(); case 557: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1678); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(301); END_STATE(); case 558: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(302); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(557); END_STATE(); case 559: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(556); END_STATE(); case 560: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(557); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(315); END_STATE(); case 561: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(560); END_STATE(); case 562: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(561); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(567); END_STATE(); case 563: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(568); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1706); END_STATE(); case 564: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1704); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(530); END_STATE(); case 565: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1698); END_STATE(); case 566: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1696); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); END_STATE(); case 567: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(532); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(563); END_STATE(); case 568: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(564); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(565); END_STATE(); case 569: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(566); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(568); END_STATE(); case 570: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(569); - END_STATE(); - case 571: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1720, + '"', 1687, + '#', 2190, + '$', 1473, + '&', 826, + '\'', 1690, + '(', 1469, + ')', 1470, + '*', 1514, + '+', 1577, + ',', 1471, + '-', 1488, + '.', 1723, + '/', 1572, + ':', 1715, + ';', 1453, + '<', 1551, + '=', 675, + '>', 1482, + '?', 1719, + '@', 1464, + '[', 1467, + ']', 1468, + '^', 1733, + '_', 1504, + '`', 1694, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(571); + lookahead == ' ') SKIP(570); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1373); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1375); END_STATE(); - case 572: - if (eof) ADVANCE(661); + case 571: + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1720, + '"', 1687, + '#', 2190, + '\'', 1690, + ')', 1470, + '*', 1513, + '+', 704, + '-', 306, + '.', 1728, + ';', 1453, + '?', 1719, + 'I', 811, + 'N', 807, + '[', 1467, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 800, + 't', 774, + 'u', 787, + 'w', 753, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(572); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == ' ') SKIP(571); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(826); + END_STATE(); + case 572: + if (eof) ADVANCE(663); + ADVANCE_MAP( + '\n', 1450, + '\r', 1, + '!', 1720, + '"', 1687, + '#', 2190, + '\'', 1690, + ')', 1470, + '*', 1513, + '+', 704, + '-', 306, + '.', 1728, + ';', 1453, + 'I', 811, + 'N', 807, + '[', 1467, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 800, + 't', 774, + 'u', 787, + 'w', 753, + '}', 1501, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(572); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); END_STATE(); case 573: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1720, + '#', 2190, + '(', 1469, + ')', 1470, + '-', 296, + '.', 1722, + ':', 1715, + ';', 1453, + '=', 677, + '>', 1481, + '?', 1719, + '[', 1467, + 'a', 420, + 'e', 287, + 'i', 386, + 'o', 288, + 'x', 430, + '{', 1500, + '|', 1454, + '}', 1501, ); 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); END_STATE(); case 574: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1718, - '#', 2188, - '(', 1467, - ')', 1468, - '-', 297, - '.', 1720, - ':', 1713, - ';', 1451, + '!', 1720, + '#', 2190, + '(', 1469, + ')', 1470, + '-', 296, + '.', 1722, + ':', 1465, + ';', 1453, '=', 675, - '>', 1479, - '?', 1717, - '[', 1465, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '>', 1481, + '?', 1719, + '[', 1467, + 'a', 420, + 'e', 287, + 'i', 421, + 'o', 288, + 'x', 430, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(574); END_STATE(); case 575: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1718, - '#', 2188, - '(', 1467, - ')', 1468, - '-', 297, - '.', 1722, - ':', 1713, - ';', 1451, - '=', 675, - '>', 1479, - '?', 1717, - '[', 1465, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1720, + '#', 2190, + '(', 1469, + ')', 1470, + '-', 296, + '.', 1724, + ':', 1715, + ';', 1453, + '=', 677, + '>', 1481, + '?', 1719, + '[', 1467, + 'a', 420, + 'e', 287, + 'i', 386, + 'o', 288, + 'x', 430, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(574); + lookahead == ' ') SKIP(573); END_STATE(); case 576: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1718, - '#', 2188, - ')', 1468, - '.', 1722, - ';', 1451, - '=', 1729, - '?', 1717, - 'e', 1374, - 'o', 1375, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '!', 1720, + '#', 2190, + '(', 1469, + ')', 1470, + '-', 296, + '.', 1724, + ':', 1465, + ';', 1453, + '=', 675, + '>', 1481, + '?', 1719, + '[', 1467, + 'a', 420, + 'e', 287, + 'i', 421, + 'o', 288, + 'x', 430, + '|', 1454, + '}', 1501, ); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1447); + if (lookahead == '\t' || + lookahead == ' ') SKIP(574); END_STATE(); case 577: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1719, - '#', 2188, - '$', 1509, - '\'', 1691, - '(', 1561, - ')', 1468, - '*', 1513, - '+', 1578, - '-', 1495, - '.', 1722, - '/', 1568, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 674, - '>', 1480, - '?', 1717, - '@', 1462, - ']', 1466, - '`', 1695, - 'a', 421, - 'b', 400, - 'c', 351, - 'd', 374, - 'e', 284, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1720, + '#', 2190, + ')', 1470, + '.', 1724, + ';', 1453, + '=', 1731, + '?', 1719, + 'e', 1376, + 'o', 1377, + '|', 1454, + '}', 1501, + '\t', 1452, + ' ', 1452, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(580); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1449); END_STATE(); case 578: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1719, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1722, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 321, - '>', 1480, - '?', 1717, - 'B', 1653, - 'E', 333, - 'G', 333, - 'K', 333, - 'M', 333, - 'P', 333, - 'T', 333, - '[', 1665, - 'a', 421, - 'b', 1655, - 'd', 346, - 'e', 282, - 'g', 332, - 'h', 345, - 'i', 387, - 'k', 332, - 'l', 399, - 'm', 334, - 'n', 435, - 'o', 279, - 'p', 332, - 's', 377, - 't', 332, - 'u', 469, - 'w', 408, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, - 0xb5, 469, + '!', 1721, + '#', 2190, + '$', 1511, + '\'', 1693, + '(', 1563, + ')', 1470, + '*', 1515, + '+', 1580, + '-', 1497, + '.', 1724, + '/', 1570, + ':', 1715, + ';', 1453, + '<', 1552, + '=', 676, + '>', 1482, + '?', 1719, + '@', 1464, + ']', 1468, + '`', 1697, + 'a', 420, + 'b', 399, + 'c', 350, + 'd', 373, + 'e', 283, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 278, + 's', 485, + 'x', 430, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(579); + lookahead == ' ') SKIP(581); END_STATE(); case 579: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1719, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1720, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 321, - '>', 1480, - '?', 1717, - 'a', 421, - 'b', 400, - 'e', 285, + '!', 1721, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1724, + '/', 1569, + ':', 1715, + ';', 1453, + '<', 1552, + '=', 320, + '>', 1482, + '?', 1719, + 'B', 1655, + 'E', 332, + 'G', 332, + 'K', 332, + 'M', 332, + 'P', 332, + 'T', 332, + '[', 1667, + 'a', 420, + 'b', 1657, + 'd', 345, + 'e', 281, + 'g', 331, 'h', 344, - 'i', 387, - 'l', 399, - 'm', 436, + 'i', 386, + 'k', 331, + 'l', 398, + 'm', 333, 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 'o', 278, + 'p', 331, + 's', 376, + 't', 331, + 'u', 468, + 'w', 407, + 'x', 430, + '{', 1500, + '|', 1454, + '}', 1501, + 0xb5, 468, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(579); + lookahead == ' ') SKIP(580); END_STATE(); case 580: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1721, + '#', 2190, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1722, + '/', 1569, + ':', 1715, + ';', 1453, + '<', 1552, + '=', 320, + '>', 1482, + '?', 1719, + 'a', 420, + 'b', 399, 'e', 284, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 'h', 343, + 'i', 386, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 278, + 's', 485, + 'x', 430, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(580); END_STATE(); case 581: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1721, + '#', 2190, + ')', 1470, + '*', 1515, + '+', 1580, + '-', 1497, + '.', 1722, + '/', 1570, + ':', 1715, + ';', 1453, + '<', 1552, + '=', 676, + '>', 1482, + '?', 1719, + '@', 1464, + ']', 1468, + 'a', 420, + 'b', 399, + 'c', 350, + 'd', 373, + 'e', 283, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 278, + 's', 485, + 'x', 430, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(613); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1934); + lookahead == ' ') SKIP(581); END_STATE(); case 582: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1578, + '-', 1495, + '.', 1606, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + '_', 1815, + 'a', 1867, + 'b', 1854, + 'e', 1774, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1765, + 's', 1901, + 'x', 1873, + '{', 1500, + '|', 1454, + '}', 1501, ); 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(614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '_' || 'b' < lookahead)) ADVANCE(1936); END_STATE(); case 583: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1578, + '-', 1495, + '.', 1606, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + '_', 1815, + 'a', 1867, + 'b', 1854, + 'e', 1778, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1780, + 's', 1901, + 'x', 1873, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(614); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); END_STATE(); case 584: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1578, + '-', 1495, + '.', 1817, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + '_', 1815, + 'a', 1867, + 'b', 1854, + 'e', 1774, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1765, + 's', 1901, + 'x', 1873, + '|', 1454, + '}', 1501, ); 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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); END_STATE(); case 585: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1764, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '!', 1795, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1578, + '-', 1495, + '.', 1817, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + '_', 1815, + 'a', 1867, + 'b', 1854, + 'e', 1778, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1780, + 's', 1901, + 'x', 1873, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); END_STATE(); case 586: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1597, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'B', 1655, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'a', 1867, + 'b', 1658, + 'd', 1826, '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, + 'g', 1811, + 'h', 1824, + 'i', 1865, + 'k', 1811, + 'l', 1853, + 'm', 1813, + 'n', 1874, + 'o', 1765, + 'p', 1811, + 's', 1840, + 't', 1811, + 'u', 1893, + 'w', 1860, + 'x', 1873, + '|', 1454, + '}', 1501, + 0xb5, 1893, ); if (lookahead == '\t' || lookahead == ' ') SKIP(619); - 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(1936); END_STATE(); case 587: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1597, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'B', 1655, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'a', 1867, + 'b', 1658, + 'd', 1826, + 'e', 1768, + 'g', 1811, + 'h', 1824, + 'i', 1865, + 'k', 1811, + 'l', 1853, + 'm', 1813, + 'n', 1874, + 'o', 1780, + 'p', 1811, + 's', 1840, + 't', 1811, + 'u', 1893, + 'w', 1860, + 'x', 1873, + '|', 1454, + '}', 1501, + 0xb5, 1893, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 588: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1597, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'E', 1821, + 'a', 1867, + 'b', 1854, + 'e', 1767, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1765, + 's', 1901, + 'x', 1873, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(618); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1936); END_STATE(); case 589: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1597, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'E', 1821, + 'a', 1867, + 'b', 1854, + 'e', 1770, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1780, + 's', 1901, + 'x', 1873, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 590: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'B', 1655, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + '_', 1815, + 'a', 1867, + 'b', 1658, + 'd', 1826, '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, + 'g', 1811, + 'h', 1824, + 'i', 1865, + 'k', 1811, + 'l', 1853, + 'm', 1813, + 'n', 1874, + 'o', 1765, + 'p', 1811, + 's', 1840, + 't', 1811, + 'u', 1893, + 'w', 1860, + 'x', 1873, + '|', 1454, + '}', 1501, + 0xb5, 1893, ); 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); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 591: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1764, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'B', 1655, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + '_', 1815, + 'a', 1867, + 'b', 1658, + 'd', 1826, + 'e', 1768, + 'g', 1811, + 'h', 1824, + 'i', 1865, + 'k', 1811, + 'l', 1853, + 'm', 1813, + 'n', 1874, + 'o', 1780, + 'p', 1811, + 's', 1840, + 't', 1811, + 'u', 1893, + 'w', 1860, + 'x', 1873, + '|', 1454, + '}', 1501, + 0xb5, 1893, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 592: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'B', 1655, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'a', 1867, + 'b', 1658, + 'd', 1826, '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, + 'g', 1811, + 'h', 1824, + 'i', 1865, + 'k', 1811, + 'l', 1853, + 'm', 1813, + 'n', 1874, + 'o', 1765, + 'p', 1811, + 's', 1840, + 't', 1811, + 'u', 1893, + 'w', 1860, + 'x', 1873, + '|', 1454, + '}', 1501, + 0xb5, 1893, ); if (lookahead == '\t' || lookahead == ' ') SKIP(619); - 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(1936); END_STATE(); case 593: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1771, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'B', 1655, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'a', 1867, + 'b', 1658, + 'd', 1826, + 'e', 1768, + 'g', 1811, + 'h', 1824, + 'i', 1865, + 'k', 1811, + 'l', 1853, + 'm', 1813, + 'n', 1874, + 'o', 1780, + 'p', 1811, + 's', 1840, + 't', 1811, + 'u', 1893, + 'w', 1860, + 'x', 1873, + '|', 1454, + '}', 1501, + 0xb5, 1893, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 594: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1774, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'B', 1655, + 'E', 1812, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'a', 1867, + 'b', 1658, + 'd', 1826, + 'e', 1773, + 'g', 1811, + 'h', 1824, + 'i', 1865, + 'k', 1811, + 'l', 1853, + 'm', 1813, + 'n', 1874, + 'o', 1765, + 'p', 1811, + 's', 1840, + 't', 1811, + 'u', 1893, + 'w', 1860, + 'x', 1873, + '|', 1454, + '}', 1501, + 0xb5, 1893, ); if (lookahead == '\t' || lookahead == ' ') SKIP(619); - 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(1936); END_STATE(); case 595: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'B', 1655, + 'E', 1812, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'a', 1867, + 'b', 1658, + 'd', 1826, + 'e', 1776, + 'g', 1811, + 'h', 1824, + 'i', 1865, + 'k', 1811, + 'l', 1853, + 'm', 1813, + 'n', 1874, + 'o', 1780, + 'p', 1811, + 's', 1840, + 't', 1811, + 'u', 1893, + 'w', 1860, + 'x', 1873, + '|', 1454, + '}', 1501, + 0xb5, 1893, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + END_STATE(); + case 596: + if (eof) ADVANCE(663); + ADVANCE_MAP( + '\n', 1450, + '\r', 1, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'E', 1821, + '_', 1815, + 'a', 1867, + 'b', 1854, + 'e', 1767, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1765, + 's', 1901, + 'x', 1873, + '{', 1500, + '|', 1454, + '}', 1501, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(618); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1934); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(1936); END_STATE(); - case 596: - if (eof) ADVANCE(661); + case 597: + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'E', 1821, + '_', 1815, + 'a', 1867, + 'b', 1854, + 'e', 1770, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1780, + 's', 1901, + 'x', 1873, + '|', 1454, + '}', 1501, ); 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(620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); - case 597: - if (eof) ADVANCE(661); + case 598: + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'E', 1821, + 'a', 1867, + 'b', 1854, + 'e', 1767, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1765, + 's', 1901, + 'x', 1873, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); + lookahead == ' ') SKIP(618); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1936); END_STATE(); - case 598: - if (eof) ADVANCE(661); + case 599: + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'E', 1821, + 'a', 1867, + 'b', 1854, + 'e', 1770, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1780, + 's', 1901, + 'x', 1873, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); - case 599: - if (eof) ADVANCE(661); + case 600: + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'a', 1867, + 'b', 1854, + 'e', 1774, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1765, + 's', 1901, + 'x', 1873, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); + lookahead == ' ') SKIP(618); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); - END_STATE(); - case 600: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1936); END_STATE(); case 601: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1792, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'a', 1867, + 'b', 1854, + 'e', 1778, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1780, + 's', 1901, + 'x', 1873, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 602: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1596, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'E', 1821, + 'a', 1867, + 'b', 1854, + 'e', 1767, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1765, + 's', 1901, + 'x', 1873, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(619); - 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(1936); END_STATE(); case 603: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1596, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'E', 1821, + 'a', 1867, + 'b', 1854, + 'e', 1770, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1780, + 's', 1901, + 'x', 1873, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 604: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'E', 1821, + '_', 1815, + 'a', 1867, + 'b', 1854, + 'e', 1767, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1765, + 's', 1901, + 'x', 1873, + '|', 1454, + '}', 1501, ); 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); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 605: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'E', 1821, + '_', 1815, + 'a', 1867, + 'b', 1854, + 'e', 1770, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1780, + 's', 1901, + 'x', 1873, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 606: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'E', 1821, + 'a', 1867, + 'b', 1854, + 'e', 1767, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1765, + 's', 1901, + 'x', 1873, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(619); - 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(1936); END_STATE(); case 607: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'E', 1821, + 'a', 1867, + 'b', 1854, + 'e', 1770, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1780, + 's', 1901, + 'x', 1873, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 608: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'a', 1867, + 'b', 1854, + 'e', 1774, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1765, + 's', 1901, + 'x', 1873, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(618); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1936); END_STATE(); case 609: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 852, - '#', 2191, - ')', 1468, + '!', 1795, + '#', 2190, + '(', 1563, + ')', 1470, '*', 1514, - '+', 1579, - '-', 1496, + '+', 1577, + '-', 1488, '/', 1569, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 936, - 'b', 918, - 'e', 829, - 'h', 875, - 'i', 937, - 'l', 917, - 'm', 949, - 'n', 950, - 'o', 828, - 's', 995, - 'x', 948, - '|', 1452, - '}', 1499, + ';', 1453, + '<', 1552, + '=', 1797, + '>', 1482, + 'a', 1867, + 'b', 1854, + 'e', 1778, + 'h', 1825, + 'i', 1865, + 'l', 1853, + 'm', 1876, + 'n', 1875, + 'o', 1780, + 's', 1901, + 'x', 1873, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(616); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1046); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 610: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 852, - '#', 2191, - ')', 1468, - '*', 1514, - '+', 1579, - '-', 1496, - '/', 1569, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 936, - 'b', 918, - 'e', 833, - 'h', 875, - 'i', 937, - 'l', 917, - 'm', 949, - 'n', 950, - 'o', 832, - 's', 995, - 'x', 948, - '|', 1452, - '}', 1499, + '!', 854, + '#', 2193, + ')', 1470, + '*', 1516, + '+', 1581, + '-', 1498, + '/', 1571, + ':', 1715, + ';', 1453, + '<', 1552, + '=', 321, + '>', 1482, + 'a', 938, + 'b', 920, + 'e', 831, + 'h', 877, + 'i', 939, + 'l', 919, + 'm', 951, + 'n', 952, + 'o', 830, + 's', 997, + 'x', 950, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1046); + lookahead == ' ') SKIP(617); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1048); END_STATE(); case 611: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - ':', 1463, - ';', 1451, - '<', 1550, + '!', 854, + '#', 2193, + ')', 1470, + '*', 1516, + '+', 1581, + '-', 1498, + '/', 1571, + ';', 1453, + '<', 1552, '=', 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, + '>', 1482, + 'a', 938, + 'b', 920, + 'e', 835, + 'h', 877, + 'i', 939, + 'l', 919, + 'm', 951, + 'n', 952, + 'o', 834, + 's', 997, + 'x', 950, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(612); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1048); END_STATE(); case 612: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ':', 1463, - ';', 1451, - '<', 1550, - '=', 321, - '>', 1480, - '[', 1465, - 'a', 421, - 'b', 400, - 'c', 351, - 'e', 283, - 'f', 347, - 'h', 344, - 'i', 387, - 'l', 399, - 'm', 436, - 'n', 441, - 'o', 279, - 's', 486, - 't', 457, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 319, + '#', 2190, + '$', 1472, + '(', 1469, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '.', 1596, + '/', 1569, + ':', 1465, + ';', 1453, + '<', 1552, + '=', 320, + '>', 1482, + 'E', 339, + '[', 1467, + 'a', 420, + 'b', 399, + 'c', 350, + 'e', 279, + 'f', 346, + 'h', 343, + 'i', 386, + 'l', 398, + 'm', 435, + 'n', 440, + 'o', 278, + 's', 485, + 't', 456, + 'x', 430, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(612); + lookahead == ' ') SKIP(613); END_STATE(); case 613: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - ')', 1468, - '*', 1512, + '!', 319, + '#', 2190, + '$', 1472, + '(', 1469, + ')', 1470, + '*', 1514, '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '-', 1488, + '/', 1569, + ':', 1465, + ';', 1453, + '<', 1552, + '=', 320, + '>', 1482, + '[', 1467, + 'a', 420, + 'b', 399, + 'c', 350, + 'e', 282, + 'f', 346, + 'h', 343, + 'i', 386, + 'l', 398, + 'm', 435, + 'n', 440, + 'o', 278, + 's', 485, + 't', 456, + 'x', 430, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(613); END_STATE(); case 614: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - ')', 1468, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '!', 319, + '#', 2190, + '$', 1472, + ')', 1470, + '*', 1514, + '+', 1579, + '-', 1496, + '.', 336, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 321, + '>', 1482, + 'a', 420, + 'b', 399, + 'e', 284, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 278, + 's', 485, + 'x', 430, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(614); END_STATE(); case 615: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - ')', 1468, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '!', 319, + '#', 2190, + '$', 1472, + ')', 1470, + '*', 1514, + '+', 1579, + '-', 1496, + '.', 336, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 321, + '>', 1482, + 'a', 420, + 'b', 399, + 'e', 284, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 278, + 's', 485, + 'x', 430, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(615); END_STATE(); case 616: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '!', 319, + '#', 2190, + '$', 1472, + ')', 1470, + '*', 1514, + '+', 1579, + '-', 1496, + '.', 336, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 321, + '>', 1482, + 'a', 420, + 'b', 399, + 'e', 286, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 288, + 's', 485, + 'x', 430, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(616); END_STATE(); case 617: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 319, + '#', 2190, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + ':', 1715, + ';', 1453, + '<', 1552, + '=', 321, + '>', 1482, + 'a', 420, + 'b', 399, + 'e', 284, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 278, + 's', 485, + 'x', 430, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(617); END_STATE(); case 618: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '!', 319, + '#', 2190, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 321, + '>', 1482, + 'a', 420, + 'b', 399, + 'e', 284, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 278, + 's', 485, + 'x', 430, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(618); END_STATE(); case 619: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '!', 319, + '#', 2190, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 321, + '>', 1482, + 'a', 420, + 'b', 399, + 'e', 284, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 278, + 's', 485, + 'x', 430, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(619); END_STATE(); case 620: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 319, + '#', 2190, + ')', 1470, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 321, + '>', 1482, + 'a', 420, + 'b', 399, + 'e', 286, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 288, + 's', 485, + 'x', 430, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(620); END_STATE(); case 621: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 319, + '#', 2190, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 321, + '>', 1482, + 'a', 420, + 'b', 399, + 'e', 284, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 278, + 's', 485, + 'x', 430, + '|', 1454, ); if (lookahead == '\t' || lookahead == ' ') SKIP(621); END_STATE(); case 622: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 319, + '#', 2190, + '*', 1514, + '+', 1577, + '-', 1488, + '/', 1569, + ';', 1453, + '<', 1552, + '=', 321, + '>', 1482, + 'a', 420, + 'b', 399, + 'e', 286, + 'h', 343, + 'i', 421, + 'l', 398, + 'm', 435, + 'n', 433, + 'o', 288, + 's', 485, + 'x', 430, + '|', 1454, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(623); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(824); + lookahead == ' ') SKIP(622); END_STATE(); case 623: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + ')', 1618, + '+', 704, + '-', 1493, + '.', 699, + '0', 1625, + ':', 1465, + ';', 1453, + '=', 675, + '@', 1464, + 'I', 811, + 'N', 807, + '[', 1467, + '^', 1733, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 771, + 't', 774, + 'u', 787, + 'w', 749, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(623); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + lookahead == ' ') SKIP(624); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(824); + (lookahead < ']' || 'a' < lookahead)) ADVANCE(826); END_STATE(); case 624: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + ')', 1470, + '+', 704, + '-', 1493, + '.', 699, + '0', 1625, + ':', 1465, + ';', 1453, + '=', 675, + '@', 1464, + 'I', 811, + 'N', 807, + '[', 1467, + '^', 1733, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 771, + 't', 774, + 'u', 787, + 'w', 749, + '{', 1500, + '|', 1454, + '}', 1501, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (lookahead == '\t' || + lookahead == ' ') SKIP(624); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2070); + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead)) ADVANCE(826); END_STATE(); case 625: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + ')', 1470, + '+', 704, + '-', 1493, + '.', 699, + '0', 1625, + ':', 1465, + ';', 1453, + '=', 675, + 'I', 811, + 'N', 807, + '[', 1467, + '^', 1733, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 693, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 771, + 'o', 695, + 't', 774, + 'u', 787, + 'w', 749, + '{', 1500, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == ' ') SKIP(625); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '.' < lookahead) && + (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + lookahead != '@' && + (lookahead < ']' || 'a' < lookahead)) ADVANCE(826); END_STATE(); case 626: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '"', 1687, + '#', 2190, + '$', 1473, + '\'', 1690, + '(', 1469, + ')', 1470, + '+', 2002, + '-', 1490, + '.', 2001, + '0', 1626, + ';', 1453, + 'N', 2049, + '[', 1467, + '_', 2014, + '`', 1694, + 'e', 1991, + 'f', 2017, + 'n', 2045, + 'o', 1992, + 't', 2032, + '{', 1500, + '|', 1454, + '}', 1501, + '\t', 1452, + ' ', 1452, + 'I', 2053, + 'i', 2053, ); - 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); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ']') ADVANCE(2072); END_STATE(); case 627: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '"', 1687, + '#', 2190, + '\'', 1690, + '(', 1469, + ')', 1470, + '*', 1513, + '+', 704, + '-', 297, + '.', 720, + ';', 1453, + '<', 1143, + '=', 675, + '>', 1481, + '@', 1483, + 'I', 811, + 'N', 807, + '[', 1467, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 800, + 't', 774, + 'u', 787, + 'w', 753, + '{', 1500, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(627); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == ' ') SKIP(628); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && + (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(826); END_STATE(); case 628: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '"', 1687, + '#', 2190, + '\'', 1690, + '(', 1469, + ')', 1470, + '*', 1513, + '+', 704, + '-', 297, + '.', 720, + ';', 1453, + '=', 675, + '>', 1481, + 'I', 811, + 'N', 807, + '[', 1467, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 800, + 't', 774, + 'u', 787, + 'w', 753, + '{', 1500, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(628); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); END_STATE(); case 629: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '"', 1685, + '"', 1687, '#', 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, + '\'', 1690, + ')', 1470, + '*', 1513, + '+', 704, + '-', 306, + '.', 1728, + ';', 1453, + '?', 1719, + 'I', 811, + 'N', 807, + '[', 1467, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 800, + 't', 774, + 'u', 787, + 'w', 753, + '}', 1501, ); if (lookahead == '\t' || lookahead == ' ') SKIP(629); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(826); END_STATE(); case 630: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1604, - ';', 1451, - '[', 1665, - '_', 1813, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, + '"', 1687, + '#', 2190, + '\'', 1690, + ')', 1470, + '*', 1513, + '+', 704, + '-', 306, + '.', 1728, + ';', 1453, + 'I', 811, + 'N', 807, + '[', 1467, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 800, + 't', 774, + 'u', 787, + 'w', 753, + '}', 1501, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ']' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(630); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); END_STATE(); case 631: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1604, - ';', 1451, - '_', 1813, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '"', 1687, + '#', 2192, + '$', 1473, + '\'', 1690, + '(', 1469, + '+', 704, + '-', 1493, + '.', 699, + '0', 1625, + ';', 1453, + '@', 1464, + 'I', 811, + 'N', 807, + '[', 1467, + '^', 1733, + '_', 718, + '`', 1694, + 'a', 756, + 'c', 723, + 'd', 733, + 'e', 761, + 'f', 725, + 'i', 717, + 'l', 741, + 'm', 727, + 'n', 771, + 't', 774, + 'u', 787, + 'w', 749, + '{', 1500, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(634); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(631); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(826); END_STATE(); case 632: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1815, - ';', 1451, - '_', 1813, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, + '.', 1606, + ';', 1453, + '[', 1667, + '_', 1815, + 'e', 1779, + 'o', 1781, + '|', 1454, + '}', 1501, + '\t', 1452, + ' ', 1452, + '+', 1793, + '-', 1793, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(634); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1936); END_STATE(); case 633: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1815, - ';', 1451, - '_', 1813, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, + '.', 1606, + ';', 1453, + '_', 1815, + 'a', 1867, + 'e', 1779, + 'o', 1780, + 'x', 1873, + '|', 1454, + '}', 1501, ); - 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(636); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1793); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); END_STATE(); case 634: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '$', 1470, - ')', 1468, - '.', 337, - ';', 1451, - 'a', 421, - 'e', 288, - 'o', 289, - 'x', 431, - '|', 1452, - '}', 1499, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, + '.', 1817, + ';', 1453, + '_', 1815, + 'a', 1867, + 'e', 1779, + 'o', 1780, + 'x', 1873, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(634); + lookahead == ' ') SKIP(636); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(1793); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); END_STATE(); case 635: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '$', 1472, + '(', 1563, + ')', 1470, + '.', 1817, + ';', 1453, + '_', 1815, + 'e', 1779, + 'o', 1781, + '|', 1454, + '}', 1501, + '\t', 1452, + ' ', 1452, + '+', 1793, + '-', 1793, ); - 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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); END_STATE(); case 636: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '$', 1472, + ')', 1470, + '.', 336, + ';', 1453, + 'a', 420, + 'e', 287, + 'o', 288, + 'x', 430, + '|', 1454, + '}', 1501, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(636); + if (lookahead == '+' || + lookahead == '-') ADVANCE(313); END_STATE(); case 637: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1819, - 'a', 1865, + '#', 2190, + '(', 1563, + ')', 1470, + '.', 1597, + ';', 1453, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'a', 1867, + 'd', 1826, 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'o', 1780, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + 'x', 1873, + '|', 1454, + '}', 1501, + 0xb5, 1893, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 638: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1819, + '#', 2190, + '(', 1563, + ')', 1470, + '.', 1597, + ';', 1453, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'd', 1826, 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'o', 1781, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + '|', 1454, + '}', 1501, + 0xb5, 1893, + '\t', 1452, + ' ', 1452, + 'B', 1655, + 'b', 1655, ); - 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(1936); END_STATE(); case 639: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '#', 2190, + '(', 1563, + ')', 1470, + '.', 1597, + ';', 1453, + 'E', 1821, + 'a', 1867, + 'e', 1771, + 'o', 1780, + 'x', 1873, + '|', 1454, + '}', 1501, ); 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); + lookahead == ' ') SKIP(662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 640: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '(', 1563, + ')', 1470, + '.', 1597, + ';', 1453, + 'E', 1821, + 'e', 1771, + 'o', 1781, + '|', 1454, + '}', 1501, + '\t', 1452, + ' ', 1452, ); - 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(1936); END_STATE(); case 641: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '#', 2190, + '(', 1563, + ')', 1470, + '.', 1792, + ';', 1453, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + '_', 1815, + 'a', 1867, + 'd', 1826, + 'e', 1769, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'o', 1780, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + 'x', 1873, + '|', 1454, + '}', 1501, + 0xb5, 1893, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); + lookahead == ' ') SKIP(662); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 642: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '(', 1563, + ')', 1470, + '.', 1792, + ';', 1453, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + '_', 1815, + 'd', 1826, + 'e', 1769, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'o', 1781, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + '|', 1454, + '}', 1501, + 0xb5, 1893, + '\t', 1452, + ' ', 1452, + 'B', 1655, + 'b', 1655, ); - 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(1936); END_STATE(); case 643: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'd', 1824, - 'e', 1775, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '#', 2190, + '(', 1563, + ')', 1470, + '.', 1792, + ';', 1453, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'a', 1867, + 'd', 1826, + 'e', 1769, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'o', 1780, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + 'x', 1873, + '|', 1454, + '}', 1501, + 0xb5, 1893, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); + lookahead == ' ') SKIP(662); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 644: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '#', 2190, + '(', 1563, + ')', 1470, + '.', 1792, + ';', 1453, + 'E', 1809, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'd', 1826, + 'e', 1769, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'o', 1781, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + '|', 1454, + '}', 1501, + 0xb5, 1893, + '\t', 1452, + ' ', 1452, + 'B', 1655, + 'b', 1655, ); - 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(1936); END_STATE(); case 645: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '#', 2190, + '(', 1563, + ')', 1470, + '.', 1792, + ';', 1453, + 'E', 1812, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'a', 1867, + 'd', 1826, + 'e', 1777, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'o', 1780, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + 'x', 1873, + '|', 1454, + '}', 1501, + 0xb5, 1893, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 646: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - '_', 1813, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2190, + '(', 1563, + ')', 1470, + '.', 1792, + ';', 1453, + 'E', 1812, + 'G', 1812, + 'K', 1812, + 'M', 1812, + 'P', 1812, + 'T', 1812, + 'd', 1826, + 'e', 1777, + 'g', 1811, + 'h', 1880, + 'k', 1811, + 'm', 1814, + 'n', 1893, + 'o', 1781, + 'p', 1811, + 's', 1841, + 't', 1811, + 'u', 1893, + 'w', 1860, + '|', 1454, + '}', 1501, + 0xb5, 1893, + '\t', 1452, + ' ', 1452, + 'B', 1655, + 'b', 1655, ); - 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(1936); END_STATE(); case 647: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '#', 2190, + '(', 1563, + ')', 1470, + '.', 1792, + ';', 1453, + 'E', 1821, + '_', 1815, + 'a', 1867, + 'e', 1771, + 'o', 1780, + 'x', 1873, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(662); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 648: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2190, + '(', 1563, + ')', 1470, + '.', 1792, + ';', 1453, + 'E', 1821, + '_', 1815, + 'e', 1771, + 'o', 1781, + '|', 1454, + '}', 1501, + '\t', 1452, + ' ', 1452, ); - 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(1936); END_STATE(); case 649: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '#', 2190, + '(', 1563, + ')', 1470, + '.', 1792, + ';', 1453, + 'E', 1821, + 'a', 1867, + 'e', 1771, + 'o', 1780, + 'x', 1873, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 650: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2190, + '(', 1563, + ')', 1470, + '.', 1792, + ';', 1453, + 'E', 1821, + 'e', 1771, + 'o', 1781, + '|', 1454, + '}', 1501, + '\t', 1452, + ' ', 1452, ); - 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(1936); END_STATE(); case 651: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1594, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '#', 2190, + '(', 1563, + ')', 1470, + '.', 1792, + ';', 1453, + 'a', 1867, + 'e', 1779, + 'o', 1780, + 'x', 1873, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 652: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1594, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2190, + '(', 1563, + ')', 1470, + '.', 1792, + ';', 1453, + 'e', 1779, + 'o', 1781, + '|', 1454, + '}', 1501, + '\t', 1452, + ' ', 1452, ); - 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(1936); END_STATE(); case 653: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '#', 2190, + '(', 1563, + ')', 1470, + '.', 1596, + ';', 1453, + 'E', 1821, + 'a', 1867, + 'e', 1771, + 'o', 1780, + 'x', 1873, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 654: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - '_', 1813, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2190, + '(', 1563, + ')', 1470, + '.', 1596, + ';', 1453, + 'E', 1821, + 'e', 1771, + 'o', 1781, + '|', 1454, + '}', 1501, + '\t', 1452, + ' ', 1452, ); - 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(1936); END_STATE(); case 655: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '#', 2190, + '(', 1563, + ')', 1470, + ';', 1453, + 'E', 1821, + '_', 1815, + 'a', 1867, + 'e', 1771, + 'o', 1780, + 'x', 1873, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(662); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 656: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2190, + '(', 1563, + ')', 1470, + ';', 1453, + 'E', 1821, + '_', 1815, + 'e', 1771, + 'o', 1781, + '|', 1454, + '}', 1501, + '\t', 1452, + ' ', 1452, ); - 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(1936); END_STATE(); case 657: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '#', 2190, + '(', 1563, + ')', 1470, + ';', 1453, + 'E', 1821, + 'a', 1867, + 'e', 1771, + 'o', 1780, + 'x', 1873, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 658: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2190, + '(', 1563, + ')', 1470, + ';', 1453, + 'E', 1821, + 'e', 1771, + 'o', 1781, + '|', 1454, + '}', 1501, + '\t', 1452, + ' ', 1452, ); - 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(1936); END_STATE(); case 659: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - ')', 1468, - ';', 1451, - '=', 1729, - 'e', 1756, - 'o', 1757, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2190, + '(', 1563, + ')', 1470, + ';', 1453, + 'a', 1867, + 'e', 1779, + 'o', 1780, + 'x', 1873, + '|', 1454, + '}', 1501, ); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (lookahead == '\t' || + lookahead == ' ') SKIP(662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 660: - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '#', 2188, - ')', 1468, - ';', 1451, - 'a', 421, - 'e', 288, - 'o', 289, - 'x', 431, - '|', 1452, - '}', 1499, + '#', 2190, + '(', 1563, + ')', 1470, + ';', 1453, + 'e', 1779, + 'o', 1781, + '|', 1454, + '}', 1501, + '\t', 1452, + ' ', 1452, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 661: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(663); + ADVANCE_MAP( + '\n', 1450, + '\r', 1, + '#', 2190, + ')', 1470, + ';', 1453, + '=', 1731, + 'e', 1758, + 'o', 1759, + '|', 1454, + '}', 1501, + '\t', 1452, + ' ', 1452, + ); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1764); END_STATE(); case 662: - ACCEPT_TOKEN(anon_sym_POUND_BANG); + if (eof) ADVANCE(663); + ADVANCE_MAP( + '\n', 1450, + '\r', 1, + '#', 2190, + ')', 1470, + ';', 1453, + 'a', 420, + 'e', 287, + 'o', 288, + 'x', 430, + '|', 1454, + '}', 1501, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(662); END_STATE(); case 663: - ACCEPT_TOKEN(aux_sym_shebang_token1); + ACCEPT_TOKEN(ts_builtin_sym_end); 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); + ACCEPT_TOKEN(anon_sym_POUND_BANG); 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); END_STATE(); case 666: - ACCEPT_TOKEN(anon_sym_export); + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(665); + if (lookahead == '\r') ADVANCE(667); + if (lookahead == '#') ADVANCE(2191); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(666); + if (lookahead != 0) ADVANCE(667); END_STATE(); case 667: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1395); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(665); + if (lookahead == '\r') ADVANCE(667); + if (lookahead != 0) ADVANCE(667); END_STATE(); case 668: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(742); 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); + if (lookahead == '-') ADVANCE(1397); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 670: - ACCEPT_TOKEN(anon_sym_alias); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(744); END_STATE(); case 671: - ACCEPT_TOKEN(anon_sym_alias); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); END_STATE(); case 673: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_alias); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 674: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '~') ADVANCE(1553); + ACCEPT_TOKEN(anon_sym_alias); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 675: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(1500); END_STATE(); case 676: - ACCEPT_TOKEN(anon_sym_let); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(1549); + if (lookahead == '~') ADVANCE(1555); END_STATE(); case 677: - ACCEPT_TOKEN(anon_sym_let); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(1502); 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); END_STATE(); case 679: - ACCEPT_TOKEN(anon_sym_mut); + ACCEPT_TOKEN(anon_sym_let); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 680: - ACCEPT_TOKEN(anon_sym_mut); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_let); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); END_STATE(); case 682: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_mut); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 683: - ACCEPT_TOKEN(anon_sym_const); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_mut); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); END_STATE(); case 685: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_const); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 686: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_const); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 687: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 688: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 689: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 690: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(1617); - if (lookahead == '(') ADVANCE(1591); - if (lookahead == '{') ADVANCE(1706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 691: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(766); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'l') ADVANCE(786); - if (lookahead == 'r') ADVANCE(775); - if (lookahead == 'x') ADVANCE(771); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); case 692: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(767); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '$') ADVANCE(1619); + if (lookahead == '(') ADVANCE(1593); + if (lookahead == '{') ADVANCE(1708); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(768); + if (lookahead == '>') ADVANCE(522); + if (lookahead == 'l') ADVANCE(788); + if (lookahead == 'r') ADVANCE(777); + if (lookahead == 'x') ADVANCE(773); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(769); + if (lookahead == '>') ADVANCE(525); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(747); + if (lookahead == '>') ADVANCE(523); + if (lookahead == 'u') ADVANCE(797); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(746); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(823); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(806); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(1509); + if (lookahead == '_') ADVANCE(720); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(1506); + if (lookahead == '_') ADVANCE(720); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(1595); + if (lookahead == '_') ADVANCE(720); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(701); + if (lookahead == '_') ADVANCE(720); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(719); + if (lookahead == '_') ADVANCE(704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(554); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(826); END_STATE(); case 707: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 806, - '_', 719, - 'i', 806, - 'l', 786, - 'x', 771, - '+', 719, - '-', 719, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 709: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == '_') ADVANCE(719); - if (lookahead == 'i') ADVANCE(726); - if (lookahead == '+' || - lookahead == '-') ADVANCE(719); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 710: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - 'I', 806, - 'a', 796, - 'i', 763, - 'o', 730, - 's', 1658, - 'u', 791, - 'B', 1653, - 'b', 1653, + 'I', 808, + '_', 721, + 'i', 808, + 'l', 788, + 'x', 773, + '+', 721, + '-', 721, + 'B', 1655, + 'b', 1655, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(808); + if (lookahead == '_') ADVANCE(721); + if (lookahead == 'i') ADVANCE(728); + if (lookahead == '+' || + lookahead == '-') ADVANCE(721); 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(1655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 712: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(806); - if (lookahead == 'r') ADVANCE(799); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ADVANCE_MAP( + 'I', 808, + 'a', 798, + 'i', 765, + 'o', 732, + 's', 1660, + 'u', 793, + 'B', 1655, + 'b', 1655, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(808); + if (lookahead == 'i') ADVANCE(808); + if (lookahead == 'l') ADVANCE(788); + if (lookahead == 'x') ADVANCE(773); 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(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 714: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(726); + if (lookahead == 'I') ADVANCE(808); + if (lookahead == 'i') ADVANCE(808); + if (lookahead == 'r') ADVANCE(801); 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(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 715: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(807); - if (lookahead == 'f') ADVANCE(1068); - if (lookahead == 'n') ADVANCE(1084); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I') ADVANCE(808); + if (lookahead == 'i') ADVANCE(808); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 716: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(716); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I') ADVANCE(808); + if (lookahead == 'i') ADVANCE(728); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 717: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(717); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'N') ADVANCE(809); + if (lookahead == 'f') ADVANCE(1070); + if (lookahead == 'n') ADVANCE(1086); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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 ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(1649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 720: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(789); - if (lookahead == 'o') ADVANCE(764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '_') ADVANCE(721); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(803); - if (lookahead == 'e') ADVANCE(746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(791); + if (lookahead == 'o') ADVANCE(766); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(805); + if (lookahead == 'e') ADVANCE(748); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 725: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(796); - if (lookahead == 'o') ADVANCE(730); - if (lookahead == 'u') ADVANCE(791); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(762); + if (lookahead == 'o') ADVANCE(775); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 726: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(783); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 727: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(798); + if (lookahead == 'o') ADVANCE(732); + if (lookahead == 'u') ADVANCE(793); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 728: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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 == 'c') ADVANCE(1660); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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 == 'c') ADVANCE(750); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 731: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'c') ADVANCE(751); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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 == 'd') ADVANCE(803); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(748); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(1073); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(1091); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(1094); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(1528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(1067); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(1058); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(792); + if (lookahead == 'o') ADVANCE(767); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(729); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(780); + if (lookahead == 'i') ADVANCE(759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(764); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 745: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(778); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 746: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(781); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 747: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(707); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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 == 'f') ADVANCE(827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(743); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(1079); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 751: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(753); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(1082); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 752: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(724); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(755); + if (lookahead == 'k') ADVANCE(1660); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 753: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(755); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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 == 'i') ADVANCE(726); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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 == 'i') ADVANCE(759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(754); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 757: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(1097); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(757); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(739); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(788); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 761: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1053); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(788); + if (lookahead == 'x') ADVANCE(773); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 762: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(802); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(790); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(1055); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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 == 'n') ADVANCE(804); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 765: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(1660); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 766: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(704); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(789); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(772); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(706); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 769: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(792); - if (lookahead == 'u') ADVANCE(756); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(802); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 770: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1062); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(779); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 771: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(768); - if (lookahead == 't') ADVANCE(743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(794); + if (lookahead == 'u') ADVANCE(758); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(812); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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 == 'p') ADVANCE(1064); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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 == 'p') ADVANCE(770); + if (lookahead == 't') ADVANCE(745); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(801); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(1660); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(694); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(763); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(796); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 780: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(707); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 781: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(670); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(782); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 782: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'u') ADVANCE(756); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(709); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 783: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(1660); + if (lookahead == 'u') ADVANCE(758); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(812); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 785: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(732); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(1660); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(1661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(826); 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 ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 789: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(728); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(795); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 790: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(737); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(730); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(817); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(684); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(670); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 797: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 798: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(756); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 799: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(734); - if (lookahead == 'y') ADVANCE(1074); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(708); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(758); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(812); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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 == 'u') ADVANCE(736); + if (lookahead == 'y') ADVANCE(1076); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 802: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1050); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'u') ADVANCE(799); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 803: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'u') ADVANCE(760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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 == 'v') ADVANCE(1052); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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 == 'y') ADVANCE(1660); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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 == '{') ADVANCE(1708); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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 == 'A' || + lookahead == 'a') ADVANCE(812); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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 == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 809: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(807); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1101); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 810: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(814); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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); + lookahead == 'n') ADVANCE(809); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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 == 'N' || + lookahead == 'n') ADVANCE(1111); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(810); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(815); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1100); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1650); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1651); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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 (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1562); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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 <= '7') || + lookahead == '_') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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(697); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(817); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(818); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(705); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(819); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1648); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(820); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 824: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(821); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 825: - ACCEPT_TOKEN(anon_sym_def); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); END_STATE(); case 826: - ACCEPT_TOKEN(anon_sym_def); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); 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); END_STATE(); case 828: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(900); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1532); - if (lookahead == 'u') ADVANCE(993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_def); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 829: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(945); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(889); - if (lookahead == 'r') ADVANCE(960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_def); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(902); + if (lookahead == '>') ADVANCE(1741); + if (lookahead == 'r') ADVANCE(1534); + if (lookahead == 'u') ADVANCE(995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1739); + if (lookahead == 'n') ADVANCE(891); + if (lookahead == 'r') ADVANCE(962); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1737); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(953); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'n') ADVANCE(889); - if (lookahead == 'r') ADVANCE(966); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(949); + if (lookahead == '>') ADVANCE(1735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(523); + if (lookahead == 'r') ADVANCE(1534); + if (lookahead == 'u') ADVANCE(1001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(955); + if (lookahead == '>') ADVANCE(522); + if (lookahead == 'n') ADVANCE(891); + if (lookahead == 'r') ADVANCE(968); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(957); + if (lookahead == '>') ADVANCE(525); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(908); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1038); + if (lookahead == '_') ADVANCE(868); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(882); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(909); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1017); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1487); + if (lookahead == '.') ADVANCE(868); + if (lookahead == '_') ADVANCE(850); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1027); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1017); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1019); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1046); + if (lookahead == '_') ADVANCE(868); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(868); + if (lookahead == '_') ADVANCE(850); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1027); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(868); + if (lookahead == '_') ADVANCE(850); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1510); + if (lookahead == '_') ADVANCE(868); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(554); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(2071); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1550); + if (lookahead == '~') ADVANCE(1557); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1743); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1745); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1048); END_STATE(); case 860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N') ADVANCE(1021); - if (lookahead == 'f') ADVANCE(1070); - if (lookahead == 'n') ADVANCE(1085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T') ADVANCE(1039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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 == 'N') ADVANCE(1023); + if (lookahead == 'f') ADVANCE(1072); + if (lookahead == 'n') ADVANCE(1087); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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 == 'T') ADVANCE(1041); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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 == 'T') ADVANCE(1042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(868); + if (lookahead == 'b') ADVANCE(1654); + if (lookahead == 'o') ADVANCE(1664); + if (lookahead == 'x') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(868); + if (lookahead == 'b') ADVANCE(1654); + if (lookahead == 'o') ADVANCE(1664); + if (lookahead == 'x') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(873); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(868); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(868); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(868); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); + if (lookahead == '_') ADVANCE(868); 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(1048); 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 == '_') ADVANCE(868); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(848); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(928); - if (lookahead == 'o') ADVANCE(965); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(868); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(868); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(873); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(930); + if (lookahead == 'o') ADVANCE(967); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(976); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(977); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(989); + if (lookahead == 'o') ADVANCE(944); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(974); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(943); + if (lookahead == 'o') ADVANCE(964); + if (lookahead == 's') ADVANCE(911); + if (lookahead == 'x') ADVANCE(956); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'c') ADVANCE(914); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(1005); + if (lookahead == 'o') ADVANCE(890); + if (lookahead == 'u') ADVANCE(991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'c') ADVANCE(915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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 == 'c') ADVANCE(916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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 == 'c') ADVANCE(917); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1574); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1588); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1091); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1094); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1093); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1096); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1559); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1561); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(910); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(856); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(942); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(943); - if (lookahead == 'h') ADVANCE(877); - if (lookahead == 'i') ADVANCE(938); - if (lookahead == 'l') ADVANCE(924); - if (lookahead == 's') ADVANCE(1007); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(990); + if (lookahead == 'o') ADVANCE(948); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'f') ADVANCE(827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(974); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(945); + if (lookahead == 'h') ADVANCE(879); + if (lookahead == 'i') ADVANCE(940); + if (lookahead == 'l') ADVANCE(926); + if (lookahead == 's') ADVANCE(1009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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 == 'f') ADVANCE(829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(932); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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 ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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 ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1548); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1544); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1081); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1084); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(921); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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 ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(935); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1000); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(1003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'k') ADVANCE(893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'k') ADVANCE(894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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 == 'k') ADVANCE(895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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 == 'k') ADVANCE(896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(980); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1099); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1584); + if (lookahead == 'r') ADVANCE(1586); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(981); - if (lookahead == 'x') ADVANCE(958); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(900); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(885); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(901); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1088); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(983); + if (lookahead == 'x') ADVANCE(960); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(887); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1090); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1536); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(890); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(986); - if (lookahead == 'u') ADVANCE(931); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(988); + if (lookahead == 'u') ADVANCE(933); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1026); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(959); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1013); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(963); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(888); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(944); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(890); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(859); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(973); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(1064); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(1014); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(956); - if (lookahead == 't') ADVANCE(904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(975); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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 == 'p') ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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 == 'p') ADVANCE(958); + if (lookahead == 't') ADVANCE(906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1011); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(833); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1532); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1592); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1590); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(836); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(941); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1007); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(969); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(862); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1536); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(993); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1538); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1538); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1540); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(896); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(992); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(1031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(885); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(683); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(832); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(912); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(878); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(912); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(837); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(914); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(915); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(882); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(891); - if (lookahead == 'y') ADVANCE(1076); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(891); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(884); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(893); + if (lookahead == 'y') ADVANCE(1078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(893); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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 (lookahead == 'A' || + lookahead == 'a') ADVANCE(1026); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(934); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(999); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'v') ADVANCE(1052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(1004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'v') ADVANCE(1054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1048); 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 ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'x') ADVANCE(1004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'w') ADVANCE(924); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'w') ADVANCE(925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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 == 'x') ADVANCE(1006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1026); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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 == 'F' || + lookahead == 'f') ADVANCE(1025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1029); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); + lookahead == 'n') ADVANCE(1048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1028); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1046); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1030); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1048); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1032); 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 (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1562); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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 <= '7') || + lookahead == '_') ADVANCE(1034); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1035); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(853); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1037); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1044: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1043); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1046: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1047: - ACCEPT_TOKEN(anon_sym_use); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1047); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1048: - ACCEPT_TOKEN(anon_sym_use); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); END_STATE(); case 1050: - ACCEPT_TOKEN(anon_sym_export_DASHenv); + ACCEPT_TOKEN(anon_sym_use); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1051: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_use); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); END_STATE(); case 1053: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1054: - ACCEPT_TOKEN(anon_sym_extern); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); END_STATE(); case 1056: - ACCEPT_TOKEN(anon_sym_module); + ACCEPT_TOKEN(anon_sym_extern); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1057: - ACCEPT_TOKEN(anon_sym_module); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_extern); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); END_STATE(); case 1059: - ACCEPT_TOKEN(anon_sym_for); + ACCEPT_TOKEN(anon_sym_module); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1060: - ACCEPT_TOKEN(anon_sym_for); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_module); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); END_STATE(); case 1062: - ACCEPT_TOKEN(anon_sym_loop); + ACCEPT_TOKEN(anon_sym_for); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1063: - ACCEPT_TOKEN(anon_sym_loop); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_for); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); END_STATE(); case 1065: - ACCEPT_TOKEN(anon_sym_while); + ACCEPT_TOKEN(anon_sym_loop); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1066: - ACCEPT_TOKEN(anon_sym_while); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_loop); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); END_STATE(); case 1068: - ACCEPT_TOKEN(anon_sym_if); + ACCEPT_TOKEN(anon_sym_while); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1069: - ACCEPT_TOKEN(anon_sym_if); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_while); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); END_STATE(); case 1071: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_if); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1072: - ACCEPT_TOKEN(anon_sym_else); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_if); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); END_STATE(); case 1074: - ACCEPT_TOKEN(anon_sym_try); + ACCEPT_TOKEN(anon_sym_else); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1075: - ACCEPT_TOKEN(anon_sym_try); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_else); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); END_STATE(); case 1077: - ACCEPT_TOKEN(anon_sym_catch); + ACCEPT_TOKEN(anon_sym_try); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1078: - ACCEPT_TOKEN(anon_sym_catch); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_try); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); END_STATE(); case 1080: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(anon_sym_catch); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1081: - ACCEPT_TOKEN(anon_sym_match); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_catch); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); END_STATE(); case 1083: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_match); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1084: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1099); + ACCEPT_TOKEN(anon_sym_match); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); 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); + lookahead == 'f') ADVANCE(1101); END_STATE(); case 1087: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1088: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1443); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1089: - ACCEPT_TOKEN(anon_sym_true); + ACCEPT_TOKEN(anon_sym_in); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1090: - ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_in); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); END_STATE(); case 1092: - ACCEPT_TOKEN(anon_sym_false); + ACCEPT_TOKEN(anon_sym_true); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1093: - ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); END_STATE(); case 1095: - ACCEPT_TOKEN(anon_sym_null); + ACCEPT_TOKEN(anon_sym_false); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1096: - ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); END_STATE(); case 1098: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + ACCEPT_TOKEN(anon_sym_null); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1099: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(811); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1100: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2052); END_STATE(); case 1101: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2107); + lookahead == 'i') ADVANCE(813); END_STATE(); case 1102: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2161); + lookahead == 'i') ADVANCE(2054); END_STATE(); case 1103: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(543); + lookahead == 'i') ADVANCE(2109); END_STATE(); case 1104: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2163); END_STATE(); case 1105: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(541); + lookahead == 'i') ADVANCE(542); END_STATE(); case 1106: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1931); END_STATE(); case 1107: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2109); + lookahead == 'i') ADVANCE(540); END_STATE(); case 1108: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2163); + lookahead == 'i') ADVANCE(1933); END_STATE(); case 1109: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2111); END_STATE(); case 1110: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2165); END_STATE(); case 1111: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); END_STATE(); case 1112: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1110); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 1113: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1116); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 1114: - ACCEPT_TOKEN(anon_sym_SLASH); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(1112); END_STATE(); case 1115: - ACCEPT_TOKEN(anon_sym_mod); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(1118); END_STATE(); case 1116: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(anon_sym_SLASH); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1117: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1111); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 1118: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 1119: - ACCEPT_TOKEN(anon_sym_bit_DASHshl); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(1113); END_STATE(); case 1120: - ACCEPT_TOKEN(anon_sym_bit_DASHshr); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 1121: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); case 1122: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); + ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); case 1123: - ACCEPT_TOKEN(anon_sym_like); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 1124: - ACCEPT_TOKEN(anon_sym_not_DASHlike); + ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); case 1125: - ACCEPT_TOKEN(anon_sym_bit_DASHand); + ACCEPT_TOKEN(anon_sym_like); END_STATE(); case 1126: - ACCEPT_TOKEN(anon_sym_bit_DASHxor); + ACCEPT_TOKEN(anon_sym_not_DASHlike); END_STATE(); case 1127: - ACCEPT_TOKEN(anon_sym_bit_DASHor); + ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); case 1128: - ACCEPT_TOKEN(anon_sym_and); + ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); case 1129: - ACCEPT_TOKEN(anon_sym_xor); + ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); case 1130: - ACCEPT_TOKEN(anon_sym_or); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 1131: - ACCEPT_TOKEN(anon_sym_in2); + ACCEPT_TOKEN(anon_sym_xor); END_STATE(); case 1132: - ACCEPT_TOKEN(anon_sym_not_DASHin); + ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 1133: - ACCEPT_TOKEN(anon_sym_has); + ACCEPT_TOKEN(anon_sym_in2); END_STATE(); case 1134: - ACCEPT_TOKEN(anon_sym_not_DASHhas); + ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); case 1135: - ACCEPT_TOKEN(anon_sym_starts_DASHwith); + ACCEPT_TOKEN(anon_sym_has); END_STATE(); case 1136: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); + ACCEPT_TOKEN(anon_sym_not_DASHhas); END_STATE(); case 1137: - ACCEPT_TOKEN(anon_sym_ends_DASHwith); + ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); case 1138: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); END_STATE(); case 1139: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); case 1140: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); END_STATE(); case 1141: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 1142: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1143); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 1143: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 1144: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '=') ADVANCE(1145); END_STATE(); case 1145: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 1146: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(1147); END_STATE(); case 1147: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 1148: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '!', 1211, + '#', 2190, + ')', 1470, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + '_', 1226, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1192, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1193, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); 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); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1149: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '!', 1211, + '#', 2190, + ')', 1470, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + '_', 1226, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1200, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1201, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); 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); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1150: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '!', 1211, + '#', 2190, + ')', 1470, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1192, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1193, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); if (lookahead == '\t' || lookahead == ' ') SKIP(21); - 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(1325); END_STATE(); case 1151: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '!', 1211, + '#', 2190, + ')', 1470, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1200, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1201, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); - 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(1325); END_STATE(); case 1152: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '!', 1211, + '#', 2190, + ')', 1470, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1224, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1195, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1193, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); if (lookahead == '\t' || lookahead == ' ') SKIP(21); - 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(1325); END_STATE(); case 1153: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '!', 1211, + '#', 2190, + ')', 1470, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1224, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1198, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1201, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); - 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(1325); END_STATE(); case 1154: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, + '!', 1211, + '#', 2190, + ')', 1470, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1597, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1192, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1193, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); if (lookahead == '\t' || lookahead == ' ') SKIP(21); - 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(1325); END_STATE(); case 1155: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, + '!', 1211, + '#', 2190, + ')', 1470, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1597, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1200, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1201, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); - 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(1325); END_STATE(); case 1156: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '!', 1211, + '#', 2190, + ')', 1470, + '*', 1114, + '+', 1119, + '-', 1120, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'a', 1268, + 'b', 1257, + 'e', 1196, + 'h', 1232, + 'i', 1270, + 'l', 1258, + 'm', 1278, + 'n', 1282, + 'o', 1193, + 's', 1304, + 'x', 1277, + '|', 1454, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(21); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1157: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '!', 1211, + '#', 2190, + ')', 1470, + '*', 1114, + '+', 1119, + '-', 1120, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'a', 1268, + 'b', 1257, + 'e', 1199, + 'h', 1232, + 'i', 1270, + 'l', 1258, + 'm', 1278, + 'n', 1282, + 'o', 1201, + 's', 1304, + 'x', 1277, + '|', 1454, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(22); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1158: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ':', 1715, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + '_', 1226, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1192, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1193, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + '}', 1501, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1159: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ':', 1715, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1192, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1193, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + '}', 1501, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - 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(1325); END_STATE(); case 1160: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ':', 1715, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1224, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1195, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1193, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + '}', 1501, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - 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(1325); END_STATE(); case 1161: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + '_', 1226, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1192, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1193, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + '}', 1501, + 0xb5, 1296, ); 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(24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1162: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + '_', 1226, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1200, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1201, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + '}', 1501, + 0xb5, 1296, ); 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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1163: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1192, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1193, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + '}', 1501, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - 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(1325); END_STATE(); case 1164: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1200, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1201, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + '}', 1501, + 0xb5, 1296, ); 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(25); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1165: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1224, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1195, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1193, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + '}', 1501, + 0xb5, 1296, ); 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(24); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1166: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1224, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1198, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1201, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + '}', 1501, + 0xb5, 1296, ); 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(1325); END_STATE(); case 1167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + '_', 1226, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1192, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1193, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); 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(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + '_', 1226, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1200, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1201, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); 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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1192, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1193, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); 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 ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1200, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1201, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); 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(27); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1224, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1195, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1193, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); 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(1325); END_STATE(); case 1172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1224, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1198, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1201, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); 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(1325); END_STATE(); case 1173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1597, + '/', 1115, + ':', 1715, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1192, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1193, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + '}', 1501, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - 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(1325); END_STATE(); case 1174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1597, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1192, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1193, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + '}', 1501, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - 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(1325); END_STATE(); case 1175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1597, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1200, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1201, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + '}', 1501, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - 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(1325); END_STATE(); case 1176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, - '}', 1499, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1597, + '/', 1115, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1192, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1193, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - 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(1325); END_STATE(); case 1177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, - '}', 1499, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1597, + '/', 1115, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1200, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1201, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - 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(1325); END_STATE(); case 1178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'a', 1268, + 'b', 1257, + 'e', 1196, + 'h', 1232, + 'i', 1270, + 'l', 1258, + 'm', 1278, + 'n', 1282, + 'o', 1193, + 's', 1304, + 'x', 1277, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - 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(1325); END_STATE(); case 1179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'a', 1268, + 'b', 1257, + 'e', 1199, + 'h', 1232, + 'i', 1270, + 'l', 1258, + 'm', 1278, + 'n', 1282, + 'o', 1201, + 's', 1304, + 'x', 1277, + '|', 1454, + '}', 1501, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - 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(1325); END_STATE(); case 1180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1594, - '/', 1113, - ':', 1713, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '\n', 1450, + '\r', 1, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '/', 1115, + '<', 1144, + '=', 318, + '>', 1146, + 'a', 1268, + 'b', 1257, + 'e', 1196, + 'h', 1232, + 'i', 1270, + 'l', 1258, + 'm', 1278, + 'n', 1282, + 'o', 1193, + 's', 1304, + 'x', 1277, + '|', 1454, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - 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(1325); END_STATE(); case 1181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1594, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '\n', 1450, + '\r', 1, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '/', 1115, + '<', 1144, + '=', 318, + '>', 1146, + 'a', 1268, + 'b', 1257, + 'e', 1199, + 'h', 1232, + 'i', 1270, + 'l', 1258, + 'm', 1278, + 'n', 1282, + 'o', 1201, + 's', 1304, + 'x', 1277, + '|', 1454, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - 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(1325); END_STATE(); case 1182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ':', 1713, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1596, + '/', 1115, + ':', 1715, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1220, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1284, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(265); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ':', 1713, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1596, + '/', 1115, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1220, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1284, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ':', 1713, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '/', 1115, + ':', 1715, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + '_', 1226, + 'a', 1268, + 'b', 1656, + 'd', 1230, '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, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1284, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(265); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '/', 1115, + ':', 1715, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1220, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1284, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(265); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '/', 1115, + ':', 1715, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1224, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1222, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1284, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(265); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '/', 1115, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + '_', 1226, + 'a', 1268, + 'b', 1656, + 'd', 1230, '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, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1284, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(271); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); 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, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '/', 1115, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1220, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1284, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '#') ADVANCE(2188); + ADVANCE_MAP( + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '/', 1115, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1224, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1222, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1284, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + 0xb5, 1296, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '+', 1224, - '-', 1226, - '>', 1737, - 'I', 1322, - '_', 1226, - 'i', 1322, - 'n', 1240, - 'r', 1283, - 'B', 1653, - 'b', 1653, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '/', 1115, + '<', 1144, + '=', 318, + '>', 1146, + 'a', 1268, + 'b', 1257, + 'e', 1272, + 'h', 1232, + 'i', 1270, + 'l', 1258, + 'm', 1278, + 'n', 1282, + 'o', 1284, + 's', 1304, + 'x', 1277, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '\t' || + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); 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(2190); + if (lookahead == '\t' || + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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( + '+', 1227, + '-', 1229, + '>', 1739, + 'I', 1324, + '_', 1229, + 'i', 1324, + 'n', 1242, + 'r', 1285, + 'B', 1655, + 'b', 1655, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1247); + if (lookahead == '>') ADVANCE(1741); + if (lookahead == 'r') ADVANCE(1132); + if (lookahead == 'u') ADVANCE(1306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1276); + if (lookahead == '>') ADVANCE(1735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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); + ADVANCE_MAP( + '+', 1275, + '>', 1739, + 'I', 1324, + 'i', 1324, + 'n', 1242, + 'r', 1285, + 'B', 1655, + 'b', 1655, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1277, - '>', 523, - 'I', 1322, - 'i', 1322, - 'n', 1240, - 'r', 1288, - 'B', 1653, - 'b', 1653, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1275); + if (lookahead == '>') ADVANCE(1739); + if (lookahead == 'n') ADVANCE(1242); + if (lookahead == 'r') ADVANCE(1285); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1277); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'n') ADVANCE(1240); - if (lookahead == 'r') ADVANCE(1288); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1248); + if (lookahead == '>') ADVANCE(1737); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '+', 1225, - '-', 1226, - '>', 523, - 'I', 1322, - '_', 1226, - 'i', 1322, - 'n', 1240, - 'r', 1288, - 'B', 1653, - 'b', 1653, + '+', 1279, + '>', 522, + 'I', 1324, + 'i', 1324, + 'n', 1242, + 'r', 1290, + 'B', 1655, + 'b', 1655, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - 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(1325); 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(1279); + if (lookahead == '>') ADVANCE(522); + if (lookahead == 'n') ADVANCE(1242); + if (lookahead == 'r') ADVANCE(1290); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1281); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '+', 1228, + '-', 1229, + '>', 522, + 'I', 1324, + '_', 1229, + 'i', 1324, + 'n', 1242, + 'r', 1290, + 'B', 1655, + 'b', 1655, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1249); + if (lookahead == '>') ADVANCE(523); + if (lookahead == 'r') ADVANCE(1132); + if (lookahead == 'u') ADVANCE(1310); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1283); + if (lookahead == '>') ADVANCE(525); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1250); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1318); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1251); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1325); 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 ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1321); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '=') ADVANCE(1140); - if (lookahead == '~') ADVANCE(1122); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1322); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1595); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1142); + if (lookahead == '~') ADVANCE(1124); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1743); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1745); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1325); END_STATE(); case 1217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - 'I', 1322, - '_', 1226, - 'i', 1322, - 'n', 1240, - '+', 1226, - '-', 1226, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'i') ADVANCE(1235); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1226); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1322); - if (lookahead == 'n') ADVANCE(1240); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + 'I', 1324, + '_', 1229, + 'i', 1324, + 'n', 1242, + '+', 1229, + '-', 1229, + 'B', 1655, + 'b', 1655, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1324); + if (lookahead == '_') ADVANCE(1229); + if (lookahead == 'i') ADVANCE(1237); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1229); 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(1655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1324); + if (lookahead == 'i') ADVANCE(1324); + if (lookahead == 'n') ADVANCE(1242); 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(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1267); - if (lookahead == 'o') ADVANCE(1238); - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(1324); + if (lookahead == 'i') ADVANCE(1324); 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(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'o') ADVANCE(1210); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'I') ADVANCE(1324); + if (lookahead == 'i') ADVANCE(1237); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'o') ADVANCE(1214); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'I') ADVANCE(1324); + if (lookahead == 'i') ADVANCE(1269); + if (lookahead == 'o') ADVANCE(1240); + if (lookahead == 's') ADVANCE(1660); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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 == '_') ADVANCE(1229); + if (lookahead == 'o') ADVANCE(1212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1321); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '_') ADVANCE(1229); + if (lookahead == 'o') ADVANCE(1216); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1295); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '_') ADVANCE(1229); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1297); + if (lookahead == 'r') ADVANCE(1660); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1297); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1289); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1293); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1298); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1273); + if (lookahead == 'o') ADVANCE(1287); + if (lookahead == 's') ADVANCE(1252); + if (lookahead == 'x') ADVANCE(1280); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1295); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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 == 'b') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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 == 'c') ADVANCE(1660); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1130); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1117); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1299); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1236); - if (lookahead == 't') ADVANCE(1231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1299); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1123); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1301); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1238); + if (lookahead == 't') ADVANCE(1233); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1125); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1126); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1213); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1292); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1272); - if (lookahead == 'h') ADVANCE(1232); - if (lookahead == 'i') ADVANCE(1269); - if (lookahead == 'l') ADVANCE(1261); - if (lookahead == 's') ADVANCE(1314); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1217); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1293); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1137); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1274); + if (lookahead == 'h') ADVANCE(1234); + if (lookahead == 'i') ADVANCE(1271); + if (lookahead == 'l') ADVANCE(1263); + if (lookahead == 's') ADVANCE(1316); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1267); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1139); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1136); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1137); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1301); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1140); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1263); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1138); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1303); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1265); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1307); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1309); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1264); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1311); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1312); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1243); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1266); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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 == 'k') ADVANCE(1660); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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 == 'k') ADVANCE(1245); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1237); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'k') ADVANCE(1246); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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 == 'l') ADVANCE(1121); + if (lookahead == 'r') ADVANCE(1122); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1131); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1239); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1660); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1133); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1134); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1241); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1242); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1210); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1241); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1243); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1212); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1317); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1286); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1240); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1216); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1288); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1316); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1305); + if (lookahead == 's') ADVANCE(1660); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1130); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1305); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1192); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1318); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1194); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1131); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1129); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1128); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1314); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1202); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1215); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1291); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1313); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1294); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1219); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1133); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1315); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1660); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1204); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1135); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1205); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1136); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1325); 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 ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1202); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1208); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1209); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1204); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1233); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1205); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1197); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1214); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1309: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1203); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1256); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1218); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1314: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1300); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1306); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1302); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1311); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1236); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1317: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1257); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'u') ADVANCE(1308); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1318: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1258); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'u') ADVANCE(1313); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); 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(1325); 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 ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1321: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'w') ADVANCE(1261); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1322: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'w') ADVANCE(1262); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'y') ADVANCE(1660); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1324: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1325: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); END_STATE(); case 1326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + '_', 1226, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1192, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1193, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); 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(621); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + '_', 1226, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1200, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1201, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); 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(622); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1328: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1192, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1193, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1329: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1200, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1201, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(622); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1330: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1224, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1195, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1193, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1331: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1210, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1224, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1198, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1201, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(622); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1332: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1597, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1192, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1193, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1333: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(663); ADVANCE_MAP( - '\n', 1448, + '\n', 1450, '\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, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '.', 1597, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'B', 1655, + 'E', 1221, + 'G', 1224, + 'K', 1224, + 'M', 1224, + 'P', 1224, + 'T', 1224, + 'a', 1268, + 'b', 1656, + 'd', 1230, + 'e', 1200, + 'g', 1223, + 'h', 1231, + 'i', 1270, + 'k', 1223, + 'l', 1258, + 'm', 1225, + 'n', 1281, + 'o', 1201, + 'p', 1223, + 's', 1244, + 't', 1223, + 'u', 1296, + 'w', 1264, + 'x', 1277, + '|', 1454, + 0xb5, 1296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(622); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1334: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1346); - if (lookahead == '-') ADVANCE(1974); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == '_') ADVANCE(1346); - if (lookahead == 'i') ADVANCE(1372); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(663); + ADVANCE_MAP( + '\n', 1450, + '\r', 1, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'a', 1268, + 'b', 1257, + 'e', 1196, + 'h', 1232, + 'i', 1270, + 'l', 1258, + 'm', 1278, + 'n', 1282, + 'o', 1193, + 's', 1304, + 'x', 1277, + '|', 1454, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); END_STATE(); case 1335: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1346); - if (lookahead == '-') ADVANCE(1974); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == '_') ADVANCE(1346); - if (lookahead == 'i') ADVANCE(1349); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(663); + ADVANCE_MAP( + '\n', 1450, + '\r', 1, + '!', 1211, + '#', 2190, + '*', 1114, + '+', 1119, + '-', 1120, + '/', 1115, + ';', 1453, + '<', 1144, + '=', 318, + '>', 1146, + 'a', 1268, + 'b', 1257, + 'e', 1199, + 'h', 1232, + 'i', 1270, + 'l', 1258, + 'm', 1278, + 'n', 1282, + 'o', 1201, + 's', 1304, + 'x', 1277, + '|', 1454, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(622); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); 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(1348); + if (lookahead == '-') ADVANCE(1976); + if (lookahead == 'I') ADVANCE(1374); + if (lookahead == '_') ADVANCE(1348); + if (lookahead == 'i') ADVANCE(1374); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1659); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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(1348); + if (lookahead == '-') ADVANCE(1976); + if (lookahead == 'I') ADVANCE(1374); + if (lookahead == '_') ADVANCE(1348); + if (lookahead == 'i') ADVANCE(1351); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1659); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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(1348); + if (lookahead == '-') ADVANCE(1976); + if (lookahead == '_') ADVANCE(1348); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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(447); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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(359); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1341: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(517); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(431); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1342: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == 'i') ADVANCE(1372); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(448); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1343: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == 'i') ADVANCE(1349); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(516); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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 == 'I') ADVANCE(1374); + if (lookahead == 'i') ADVANCE(1374); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + lookahead == 'b') ADVANCE(1659); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1345: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1345); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'I') ADVANCE(1374); + if (lookahead == 'i') ADVANCE(1351); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1659); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1346: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'I') ADVANCE(1374); + if (lookahead == 'i') ADVANCE(1362); + if (lookahead == 's') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1659); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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 == '_') ADVANCE(1347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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 == '_') ADVANCE(1348); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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 == 'a') ADVANCE(1369); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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 == 'a') ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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 == 'b') ADVANCE(1659); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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 == 'c') ADVANCE(1662); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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 == 'e') ADVANCE(1357); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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 == 'e') ADVANCE(1341); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1355: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1356); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'e') ADVANCE(1352); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1356: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1337); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'k') ADVANCE(1662); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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(1358); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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 == 'l') ADVANCE(1339); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1359: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(1364); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'l') ADVANCE(1340); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1360: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'l') ADVANCE(1359); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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 == 'm') ADVANCE(1366); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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 == 'n') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1659); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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 == 'n') ADVANCE(1089); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1364: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(1363); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'n') ADVANCE(1354); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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 == 'o') ADVANCE(1367); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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 == 'p') ADVANCE(1365); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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 == 'r') ADVANCE(1371); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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 == 'r') ADVANCE(1662); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1369: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1340); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'r') ADVANCE(1343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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 == 's') ADVANCE(1662); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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 == 't') ADVANCE(1342); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1372: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'u') ADVANCE(1360); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1373: ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'y') ADVANCE(1662); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1374: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(1419); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1659); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1375: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(1432); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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(437); + if (lookahead == '>') ADVANCE(522); + if (lookahead == 'r') ADVANCE(1421); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == '+') ADVANCE(379); + if (lookahead == '>') ADVANCE(523); + if (lookahead == 'u') ADVANCE(1434); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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(442); + if (lookahead == '>') ADVANCE(525); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1379: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1379); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(383); + if (lookahead == '>') ADVANCE(527); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'N') ADVANCE(1441); + if (lookahead == 'f') ADVANCE(1071); + if (lookahead == 'n') ADVANCE(1088); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1381: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1409); - if (lookahead == 'o') ADVANCE(1418); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '_') ADVANCE(1381); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1381); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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(1429); + if (lookahead == 'o') ADVANCE(1414); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'a') ADVANCE(1411); + if (lookahead == 'o') ADVANCE(1420); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1384: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1398); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1424); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1385: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1399); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1435); + if (lookahead == 'o') ADVANCE(1388); + if (lookahead == 'u') ADVANCE(1431); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'c') ADVANCE(1400); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'c') ADVANCE(1401); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'd') ADVANCE(1438); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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(1399); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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(1050); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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(1074); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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(1092); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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(1095); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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(1068); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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(1059); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1396: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1420); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1430); + if (lookahead == 'o') ADVANCE(1415); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1397: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(826); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1413); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1398: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1078); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1422); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'f') ADVANCE(828); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'h') ADVANCE(1080); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'h') ADVANCE(1083); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1402: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1406); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'h') ADVANCE(1404); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'i') ADVANCE(1384); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'i') ADVANCE(1408); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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(1403); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1406: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1392); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1098); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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(1406); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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(1394); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1409: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1426); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1395); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1410: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1054); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1426); + if (lookahead == 'x') ADVANCE(1418); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1411: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1437); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1428); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'n') ADVANCE(1056); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'n') ADVANCE(1439); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1414: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1421); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'n') ADVANCE(1427); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'o') ADVANCE(1417); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'o') ADVANCE(1423); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'p') ADVANCE(1065); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'p') ADVANCE(1416); + if (lookahead == 't') ADVANCE(1398); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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(1437); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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(1062); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1421: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1431); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1378); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1422: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(671); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1412); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1423: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1388); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1433); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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(673); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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(1449); 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 (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1427: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1384); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 's') ADVANCE(1432); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1428: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(677); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 's') ADVANCE(1393); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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(1386); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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(679); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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(682); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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(685); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1433: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1385); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(669); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1434: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1405); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1442); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(1379); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1435: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1390); - if (lookahead == 'y') ADVANCE(1075); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(1387); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'A' || + lookahead == 'a') ADVANCE(1444); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'u') ADVANCE(1392); + if (lookahead == 'y') ADVANCE(1077); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'u') ADVANCE(1409); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'v') ADVANCE(1053); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1440: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1445); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1444); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'F' || + lookahead == 'f') ADVANCE(1443); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1442: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1447); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1447); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1443: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1439); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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); + lookahead == 'n') ADVANCE(1449); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); 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 == 'N' || + lookahead == 'n') ADVANCE(1441); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1446: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1447); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1442); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1447: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1448); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1448: - ACCEPT_TOKEN(sym__newline); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1449); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1449: - ACCEPT_TOKEN(sym__space); - if (lookahead == ':') ADVANCE(1713); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1449); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); END_STATE(); case 1450: - ACCEPT_TOKEN(sym__space); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1450); + ACCEPT_TOKEN(sym__newline); END_STATE(); case 1451: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(sym__space); + if (lookahead == ':') ADVANCE(1715); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1451); END_STATE(); case 1452: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(sym__space); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1452); END_STATE(); case 1453: - ACCEPT_TOKEN(anon_sym_err_GT_PIPE); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 1454: - ACCEPT_TOKEN(anon_sym_out_GT_PIPE); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 1455: - ACCEPT_TOKEN(anon_sym_e_GT_PIPE); + ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); case 1456: - ACCEPT_TOKEN(anon_sym_o_GT_PIPE); + ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); case 1457: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); + ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); case 1458: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); + ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); case 1459: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); case 1460: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); case 1461: - ACCEPT_TOKEN(sym_attribute_identifier); - if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1461); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); case 1462: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); case 1463: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(sym_attribute_identifier); + if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1463); END_STATE(); case 1464: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 1465: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 1466: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 1467: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 1468: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 1469: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 1470: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 1471: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); + ACCEPT_TOKEN(anon_sym_COMMA); 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); 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); + if (lookahead == '"') ADVANCE(1704); + if (lookahead == '\'') ADVANCE(1703); END_STATE(); case 1474: - ACCEPT_TOKEN(anon_sym_cell_DASHpath); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(1704); + if (lookahead == '\'') ADVANCE(1703); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1475: - ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1476: - ACCEPT_TOKEN(anon_sym_import_DASHpattern); + ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); case 1477: - ACCEPT_TOKEN(anon_sym_one_DASHof); + ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); case 1478: - ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); + ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); case 1479: - ACCEPT_TOKEN(anon_sym_GT2); + ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); case 1480: - ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(1552); + ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); case 1481: - ACCEPT_TOKEN(anon_sym_AT2); + ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); case 1482: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_GT2); + if (lookahead == '=') ADVANCE(1554); END_STATE(); case 1483: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_AT2); END_STATE(); case 1484: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); 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_QMARK); END_STATE(); case 1486: - ACCEPT_TOKEN(anon_sym_DASH2); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 1487: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); 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(1486); 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(1486); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '_') ADVANCE(307); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(538); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); END_STATE(); case 1491: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '-') ADVANCE(1486); + if (lookahead == '.') ADVANCE(1973); + if (lookahead == '_') ADVANCE(1963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); 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(1486); + if (lookahead == '.') ADVANCE(337); + if (lookahead == '_') ADVANCE(313); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); 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(335); + if (lookahead == '_') ADVANCE(307); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(538); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); 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(868); + if (lookahead == '_') ADVANCE(850); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1027); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1495: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '=') ADVANCE(686); + if (lookahead == '.') ADVANCE(1816); + if (lookahead == '_') ADVANCE(1793); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); END_STATE(); case 1496: ACCEPT_TOKEN(anon_sym_DASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(337); + if (lookahead == '_') ADVANCE(313); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); END_STATE(); case 1497: - ACCEPT_TOKEN(sym_param_short_flag_identifier); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '=') ADVANCE(688); END_STATE(); case 1498: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_DASH2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1499: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); case 1500: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 1501: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2012); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(anon_sym_RBRACE); 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_EQ_GT); END_STATE(); case 1503: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(2014); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); END_STATE(); case 1504: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(690); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + ACCEPT_TOKEN(anon_sym__); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1505: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(1988); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); 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(692); + if (lookahead == '<') ADVANCE(1608); + if (lookahead == '=') ADVANCE(1607); END_STATE(); case 1507: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + if (lookahead == '.') ADVANCE(1990); + if (lookahead == '<') ADVANCE(1608); + if (lookahead == '=') ADVANCE(1607); 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); + if (lookahead == '.') ADVANCE(2080); + if (lookahead == '<') ADVANCE(1608); + if (lookahead == '=') ADVANCE(1607); END_STATE(); case 1509: - ACCEPT_TOKEN(anon_sym_DOLLAR2); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '<') ADVANCE(1608); + if (lookahead == '=') ADVANCE(1607); END_STATE(); case 1510: - ACCEPT_TOKEN(anon_sym_DOLLAR2); - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '<') ADVANCE(1608); + if (lookahead == '=') ADVANCE(1607); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1048); END_STATE(); case 1511: - ACCEPT_TOKEN(anon_sym_STAR2); + ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); case 1512: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1562); + ACCEPT_TOKEN(anon_sym_DOLLAR2); + if (lookahead == '"') ADVANCE(1704); + if (lookahead == '\'') ADVANCE(1703); END_STATE(); case 1513: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1562); - if (lookahead == '=') ADVANCE(687); 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); + if (lookahead == '*') ADVANCE(1564); END_STATE(); case 1515: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'a') ADVANCE(1518); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1564); + if (lookahead == '=') ADVANCE(689); END_STATE(); case 1516: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1565); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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 == 'a') ADVANCE(1520); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); 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 == 'e') ADVANCE(1091); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); 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 == 'e') ADVANCE(1094); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); 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 == 'l') ADVANCE(1523); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); 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 == 'o') ADVANCE(1524); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); 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 == 'r') ADVANCE(1525); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); END_STATE(); case 1523: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'u') ADVANCE(1516); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 's') ADVANCE(1519); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); END_STATE(); case 1524: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 't') ADVANCE(1526); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); END_STATE(); case 1525: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'u') ADVANCE(1518); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); END_STATE(); case 1526: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1562); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); END_STATE(); case 1527: - ACCEPT_TOKEN(anon_sym_and2); + 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(1527); 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_where); END_STATE(); case 1529: - ACCEPT_TOKEN(anon_sym_xor2); + ACCEPT_TOKEN(anon_sym_and2); 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_and2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1531: - ACCEPT_TOKEN(anon_sym_or2); + ACCEPT_TOKEN(anon_sym_xor2); 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_xor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1533: - ACCEPT_TOKEN(anon_sym_not_DASHin2); + ACCEPT_TOKEN(anon_sym_or2); 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_or2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1535: - ACCEPT_TOKEN(anon_sym_has2); + ACCEPT_TOKEN(anon_sym_not_DASHin2); 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_DASHin2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1537: - ACCEPT_TOKEN(anon_sym_not_DASHhas2); + ACCEPT_TOKEN(anon_sym_has2); 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_has2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1539: - ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + ACCEPT_TOKEN(anon_sym_not_DASHhas2); 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_DASHhas2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1541: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); 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_starts_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1543: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); END_STATE(); case 1544: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1545: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); END_STATE(); case 1546: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1547: - ACCEPT_TOKEN(anon_sym_EQ_EQ2); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); END_STATE(); case 1548: - ACCEPT_TOKEN(anon_sym_BANG_EQ2); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1549: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(anon_sym_EQ_EQ2); END_STATE(); case 1550: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(1551); + ACCEPT_TOKEN(anon_sym_BANG_EQ2); END_STATE(); case 1551: - ACCEPT_TOKEN(anon_sym_LT_EQ2); + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); case 1552: - ACCEPT_TOKEN(anon_sym_GT_EQ2); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(1553); END_STATE(); case 1553: - ACCEPT_TOKEN(anon_sym_EQ_TILDE2); + ACCEPT_TOKEN(anon_sym_LT_EQ2); END_STATE(); case 1554: - ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + ACCEPT_TOKEN(anon_sym_GT_EQ2); 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_EQ_TILDE2); END_STATE(); case 1556: - ACCEPT_TOKEN(anon_sym_like2); + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); 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_BANG_TILDE2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1558: - ACCEPT_TOKEN(anon_sym_not_DASHlike2); + ACCEPT_TOKEN(anon_sym_like2); END_STATE(); case 1559: - ACCEPT_TOKEN(anon_sym_not_DASHlike2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_like2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1560: - ACCEPT_TOKEN(aux_sym_expr_unary_token1); + ACCEPT_TOKEN(anon_sym_not_DASHlike2); END_STATE(); case 1561: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(anon_sym_not_DASHlike2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1562: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); + ACCEPT_TOKEN(aux_sym_expr_unary_token1); 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_LPAREN2); END_STATE(); case 1564: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); END_STATE(); case 1565: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if (lookahead == '=') ADVANCE(689); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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); END_STATE(); case 1567: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1573); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if (lookahead == '=') ADVANCE(691); END_STATE(); case 1568: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1573); - if (lookahead == '=') ADVANCE(688); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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 (lookahead == '/') ADVANCE(1575); END_STATE(); case 1570: ACCEPT_TOKEN(anon_sym_SLASH2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '/') ADVANCE(1575); + if (lookahead == '=') ADVANCE(690); END_STATE(); case 1571: - ACCEPT_TOKEN(anon_sym_mod2); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1576); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1572: - ACCEPT_TOKEN(anon_sym_mod2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_SLASH2); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1573: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + ACCEPT_TOKEN(anon_sym_mod2); 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_mod2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1575: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1564); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); END_STATE(); case 1576: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1564); - if (lookahead == '.') ADVANCE(1814); - if (lookahead == '_') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); 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(1566); END_STATE(); case 1578: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1565); - if (lookahead == '=') ADVANCE(685); + if (lookahead == '+') ADVANCE(1566); + if (lookahead == '.') ADVANCE(1816); + if (lookahead == '_') ADVANCE(1793); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); 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(337); + if (lookahead == '_') ADVANCE(313); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); END_STATE(); case 1580: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(717); - if (lookahead == '_') ADVANCE(702); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '+') ADVANCE(1567); + if (lookahead == '=') ADVANCE(687); END_STATE(); case 1581: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1568); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1582: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(719); + if (lookahead == '_') ADVANCE(704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); END_STATE(); case 1583: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); 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_DASHshl2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1585: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); 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_DASHshr2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1587: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); 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_DASHand2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1589: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); END_STATE(); case 1590: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1591: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); END_STATE(); case 1592: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1482); - if (lookahead == '<') ADVANCE(1608); - if (lookahead == '=') ADVANCE(1607); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1593: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(1608); - if (lookahead == '=') ADVANCE(1607); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); case 1594: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(1484); + if (lookahead == '<') ADVANCE(1610); + if (lookahead == '=') ADVANCE(1609); END_STATE(); case 1595: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1593); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '<') ADVANCE(1610); + if (lookahead == '=') ADVANCE(1609); END_STATE(); case 1596: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1593); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); END_STATE(); case 1597: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1503); + if (lookahead == '.') ADVANCE(1595); 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(1595); + if (lookahead == '_') ADVANCE(720); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1599: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1592); + if (lookahead == '.') ADVANCE(1505); END_STATE(); case 1600: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1962); + if (lookahead == '.') ADVANCE(1505); + if (lookahead == '_') ADVANCE(1947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); 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(1966); END_STATE(); case 1602: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '.') ADVANCE(1966); + if (lookahead == '_') ADVANCE(1974); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); END_STATE(); case 1603: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '.') ADVANCE(1594); END_STATE(); case 1604: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '_') ADVANCE(1974); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); END_STATE(); case 1605: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(1947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); END_STATE(); case 1606: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(1817); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); END_STATE(); case 1607: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 1608: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); case 1609: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1609); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); case 1610: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); case 1611: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); 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_token1); if (lookahead == '_') ADVANCE(1612); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1613: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); if (lookahead == '_') ADVANCE(1613); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); END_STATE(); case 1614: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); if (lookahead == '_') ADVANCE(1614); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); END_STATE(); case 1615: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(1615); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); END_STATE(); case 1616: - ACCEPT_TOKEN(anon_sym_RPAREN2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + if (lookahead == '_') ADVANCE(1616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 1617: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + if (lookahead == '_') ADVANCE(1617); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1618: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(820); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 1619: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2064); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); 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(822); + if (lookahead == '_') ADVANCE(1646); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); 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(2066); + if (lookahead == '_') ADVANCE(1646); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); 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(2120); + if (lookahead == '_') ADVANCE(1646); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); 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(2172); + if (lookahead == '_') ADVANCE(1646); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); 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(558); + if (lookahead == '_') ADVANCE(1646); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); 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(1646); + if (lookahead == 'b') ADVANCE(1653); + if (lookahead == 'o') ADVANCE(1663); + if (lookahead == 'x') ADVANCE(1665); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); 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(1646); + if (lookahead == 'b') ADVANCE(1653); + if (lookahead == 'o') ADVANCE(1663); + if (lookahead == 'x') ADVANCE(1665); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); 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(1646); + if (lookahead == 'b') ADVANCE(1653); + if (lookahead == 'o') ADVANCE(1663); + if (lookahead == 'x') ADVANCE(1665); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); 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(1646); + if (lookahead == 'b') ADVANCE(1653); + if (lookahead == 'o') ADVANCE(1663); + if (lookahead == 'x') ADVANCE(1665); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); 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(1646); + if (lookahead == 'b') ADVANCE(1653); + if (lookahead == 'o') ADVANCE(1663); + if (lookahead == 'x') ADVANCE(1665); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); 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(1646); + if (lookahead == 'b') ADVANCE(816); + if (lookahead == 'o') ADVANCE(818); + if (lookahead == 'x') ADVANCE(825); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); 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(1646); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1620); END_STATE(); case 1632: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); + if (lookahead == '_') ADVANCE(1646); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); 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(1646); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1621); END_STATE(); case 1634: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); + if (lookahead == '_') ADVANCE(1646); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); END_STATE(); case 1635: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); + if (lookahead == '_') ADVANCE(1646); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1622); END_STATE(); case 1636: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); + if (lookahead == '_') ADVANCE(1646); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); END_STATE(); case 1637: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1621); + if (lookahead == '_') ADVANCE(1646); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1624); END_STATE(); case 1638: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); + if (lookahead == '_') ADVANCE(1646); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); END_STATE(); case 1639: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1630); + if (lookahead == '_') ADVANCE(1646); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1623); 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(1646); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); case 1641: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if (lookahead == '_') ADVANCE(1646); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); 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(1646); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); 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(1646); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); END_STATE(); case 1644: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '_') ADVANCE(1646); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); END_STATE(); case 1645: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); - if (lookahead == '_') ADVANCE(1645); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1646); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); END_STATE(); case 1646: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); if (lookahead == '_') ADVANCE(1646); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); END_STATE(); case 1647: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); if (lookahead == '_') ADVANCE(1647); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); END_STATE(); case 1648: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + END_STATE(); + case 1649: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); + if (lookahead == '_') ADVANCE(1649); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + END_STATE(); + case 1650: 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(1650); END_STATE(); - case 1649: + case 1651: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1649); + lookahead == '_') ADVANCE(1651); END_STATE(); - case 1650: + case 1652: ACCEPT_TOKEN(aux_sym__val_number_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1650); + lookahead == '_') ADVANCE(1652); END_STATE(); - case 1651: + case 1653: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1649); + lookahead == '_') ADVANCE(1651); END_STATE(); - case 1652: + case 1654: 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); - END_STATE(); - case 1653: - ACCEPT_TOKEN(sym_filesize_unit); - END_STATE(); - case 1654: - ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1301); + lookahead == '_') ADVANCE(1031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); case 1655: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(481); END_STATE(); case 1656: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1898); + if (lookahead == 'i') ADVANCE(1303); END_STATE(); case 1657: ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'i') ADVANCE(480); END_STATE(); case 1658: - ACCEPT_TOKEN(sym_duration_unit); + ACCEPT_TOKEN(sym_filesize_unit); + if (lookahead == 'i') ADVANCE(1900); END_STATE(); case 1659: - ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(1047); + ACCEPT_TOKEN(sym_filesize_unit); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); 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(sym_duration_unit); + if (lookahead == 'e') ADVANCE(1049); + END_STATE(); + case 1662: + ACCEPT_TOKEN(sym_duration_unit); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + END_STATE(); + case 1663: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1650); + lookahead == '_') ADVANCE(1652); END_STATE(); - case 1662: + case 1664: 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(1034); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); - case 1663: + case 1665: 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(1650); END_STATE(); - case 1664: + case 1666: 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(1047); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); END_STATE(); - case 1665: + case 1667: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 1666: + case 1668: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1666); - END_STATE(); - case 1667: - ACCEPT_TOKEN(sym_val_date); - END_STATE(); - case 1668: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(553); - if (lookahead == '+' || - lookahead == '-') ADVANCE(315); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1668); END_STATE(); case 1669: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2062); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2001); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); END_STATE(); case 1670: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2121); + if (lookahead == '.') ADVANCE(552); if (lookahead == '+' || - lookahead == '-') ADVANCE(2084); + lookahead == '-') ADVANCE(314); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); + lookahead == 'z') ADVANCE(1669); END_STATE(); case 1671: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1682); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(552); + if (lookahead == '.') ADVANCE(2064); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2003); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1669); END_STATE(); case 1672: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1683); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2057); + if (lookahead == '.') ADVANCE(2123); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2086); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1669); END_STATE(); case 1673: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(1684); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2115); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(551); END_STATE(); case 1674: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(822); + if (lookahead == ':') ADVANCE(1685); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2059); END_STATE(); case 1675: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2066); + if (lookahead == ':') ADVANCE(1686); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2117); END_STATE(); case 1676: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2124); + if (lookahead == 'T') ADVANCE(824); END_STATE(); case 1677: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2172); + if (lookahead == 'T') ADVANCE(2068); END_STATE(); case 1678: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(562); + if (lookahead == 'T') ADVANCE(2126); END_STATE(); case 1679: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '+' || - lookahead == '-') ADVANCE(315); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); + if (lookahead == 'T') ADVANCE(2174); END_STATE(); case 1680: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2001); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1680); + if (lookahead == 'T') ADVANCE(561); END_STATE(); case 1681: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2084); + lookahead == '-') ADVANCE(314); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); + lookahead == 'z') ADVANCE(1669); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1681); END_STATE(); case 1682: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(552); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2003); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1669); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1682); END_STATE(); case 1683: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2057); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2086); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1669); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1683); END_STATE(); case 1684: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2115); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(551); END_STATE(); case 1685: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(sym_val_date); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2059); END_STATE(); case 1686: + ACCEPT_TOKEN(sym_val_date); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2117); + END_STATE(); + case 1687: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 1688: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(1687); + if (lookahead == '#') ADVANCE(1689); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1686); + lookahead == ' ') ADVANCE(1688); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(1687); + lookahead != '\\') ADVANCE(1689); END_STATE(); - case 1687: + case 1689: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1687); + lookahead != '\\') ADVANCE(1689); END_STATE(); - case 1688: + case 1690: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 1689: + case 1691: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); - if (lookahead == '#') ADVANCE(1690); + if (lookahead == '#') ADVANCE(1692); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1689); + lookahead == ' ') ADVANCE(1691); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1690); + lookahead != '\'') ADVANCE(1692); END_STATE(); - case 1690: + case 1692: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1690); + lookahead != '\'') ADVANCE(1692); END_STATE(); - case 1691: + case 1693: ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); - case 1692: + case 1694: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 1693: + case 1695: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); - if (lookahead == '#') ADVANCE(1694); + if (lookahead == '#') ADVANCE(1696); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1693); + lookahead == ' ') ADVANCE(1695); if (lookahead != 0 && - lookahead != '`') ADVANCE(1694); + lookahead != '`') ADVANCE(1696); END_STATE(); - case 1694: + case 1696: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); if (lookahead != 0 && - lookahead != '`') ADVANCE(1694); + lookahead != '`') ADVANCE(1696); END_STATE(); - case 1695: + case 1697: ACCEPT_TOKEN(anon_sym_BQUOTE2); END_STATE(); - case 1696: + case 1698: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 1697: + case 1699: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(1698); + if (lookahead == '#') ADVANCE(1700); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1697); + lookahead == ' ') ADVANCE(1699); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(1698); + lookahead != '\\') ADVANCE(1700); END_STATE(); - case 1698: + case 1700: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(1698); + lookahead != '\\') ADVANCE(1700); END_STATE(); - case 1699: + case 1701: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(1700); + if (lookahead == '#') ADVANCE(1702); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1699); + lookahead == ' ') ADVANCE(1701); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1700); + lookahead != '(') ADVANCE(1702); END_STATE(); - case 1700: + case 1702: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1700); - END_STATE(); - case 1701: - ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); - END_STATE(); - case 1702: - ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); + lookahead != '(') ADVANCE(1702); END_STATE(); case 1703: - ACCEPT_TOKEN(anon_sym_DQUOTE2); + ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); case 1704: - ACCEPT_TOKEN(sym_inter_escape_sequence); + ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); case 1705: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); + ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); case 1706: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); + ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); case 1707: - ACCEPT_TOKEN(sym__entry_separator); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); case 1708: - ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == '\n') ADVANCE(1707); - if (lookahead == '\r') ADVANCE(1707); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1708); - if (lookahead == 0x0b || - lookahead == '\f' || - lookahead == ',') ADVANCE(1707); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); case 1709: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1707); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1709); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1707); END_STATE(); case 1710: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1707); + if (lookahead == '\n') ADVANCE(1709); + if (lookahead == '\r') ADVANCE(1709); if (lookahead == '\t' || lookahead == ' ') ADVANCE(1710); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1711); + if (lookahead == 0x0b || + lookahead == '\f' || + lookahead == ',') ADVANCE(1709); END_STATE(); case 1711: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(1716); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(318); + if (lookahead == ',') ADVANCE(1709); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1711); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1709); END_STATE(); case 1712: ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == ',') ADVANCE(1709); if (lookahead == '\t' || lookahead == ' ') ADVANCE(1712); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1713); END_STATE(); case 1713: - ACCEPT_TOKEN(anon_sym_COLON2); + ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == ';') ADVANCE(1718); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(317); 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); + ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1714); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1709); 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(anon_sym_COLON2); END_STATE(); case 1716: - ACCEPT_TOKEN(sym__table_head_separator); + ACCEPT_TOKEN(aux_sym__record_key_token1); + if (lookahead == '#') ADVANCE(2194); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1717); END_STATE(); case 1717: - ACCEPT_TOKEN(anon_sym_QMARK2); + ACCEPT_TOKEN(aux_sym__record_key_token1); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1717); END_STATE(); case 1718: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); case 1719: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1554); + ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); case 1720: - ACCEPT_TOKEN(anon_sym_DOT2); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 1721: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(696); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(1550); + if (lookahead == '~') ADVANCE(1556); END_STATE(); case 1722: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1593); END_STATE(); case 1723: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1503); + if (lookahead == '.') ADVANCE(698); END_STATE(); case 1724: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1592); + if (lookahead == '.') ADVANCE(1595); END_STATE(); case 1725: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(311); + if (lookahead == '.') ADVANCE(1505); END_STATE(); case 1726: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == '.') ADVANCE(1594); END_STATE(); case 1727: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '\'') ADVANCE(1688); - if (lookahead == '`') ADVANCE(1692); - if (lookahead == '\t' || - lookahead == ' ') SKIP(173); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1728); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(310); END_STATE(); case 1728: - ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1728); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '_') ADVANCE(720); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1729: - ACCEPT_TOKEN(anon_sym_EQ2); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == '"') ADVANCE(1687); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '\'') ADVANCE(1690); + if (lookahead == '`') ADVANCE(1694); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1730); 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(aux_sym_path_token1); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1730); END_STATE(); case 1731: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); case 1732: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1748); + ACCEPT_TOKEN(aux_sym_env_var_token1); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1732); END_STATE(); case 1733: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1748); - if (lookahead == '|') ADVANCE(1453); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 1734: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(1749); - END_STATE(); - case 1735: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(1749); - if (lookahead == '|') ADVANCE(1454); - END_STATE(); - case 1736: - ACCEPT_TOKEN(anon_sym_e_GT); + ACCEPT_TOKEN(anon_sym_err_GT); if (lookahead == '>') ADVANCE(1750); END_STATE(); - case 1737: - ACCEPT_TOKEN(anon_sym_e_GT); + case 1735: + ACCEPT_TOKEN(anon_sym_err_GT); if (lookahead == '>') ADVANCE(1750); if (lookahead == '|') ADVANCE(1455); END_STATE(); - case 1738: - ACCEPT_TOKEN(anon_sym_o_GT); + case 1736: + ACCEPT_TOKEN(anon_sym_out_GT); if (lookahead == '>') ADVANCE(1751); END_STATE(); - case 1739: - ACCEPT_TOKEN(anon_sym_o_GT); + case 1737: + ACCEPT_TOKEN(anon_sym_out_GT); if (lookahead == '>') ADVANCE(1751); if (lookahead == '|') ADVANCE(1456); END_STATE(); - case 1740: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + case 1738: + ACCEPT_TOKEN(anon_sym_e_GT); if (lookahead == '>') ADVANCE(1752); END_STATE(); - case 1741: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + case 1739: + ACCEPT_TOKEN(anon_sym_e_GT); if (lookahead == '>') ADVANCE(1752); if (lookahead == '|') ADVANCE(1457); END_STATE(); - case 1742: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + case 1740: + ACCEPT_TOKEN(anon_sym_o_GT); if (lookahead == '>') ADVANCE(1753); END_STATE(); - case 1743: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + case 1741: + ACCEPT_TOKEN(anon_sym_o_GT); if (lookahead == '>') ADVANCE(1753); if (lookahead == '|') ADVANCE(1458); END_STATE(); - case 1744: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + case 1742: + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); if (lookahead == '>') ADVANCE(1754); END_STATE(); - case 1745: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + case 1743: + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); if (lookahead == '>') ADVANCE(1754); if (lookahead == '|') ADVANCE(1459); END_STATE(); - case 1746: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + case 1744: + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); if (lookahead == '>') ADVANCE(1755); END_STATE(); - case 1747: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + case 1745: + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); if (lookahead == '>') ADVANCE(1755); if (lookahead == '|') ADVANCE(1460); END_STATE(); + case 1746: + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(1756); + END_STATE(); + case 1747: + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(1756); + if (lookahead == '|') ADVANCE(1461); + END_STATE(); case 1748: - ACCEPT_TOKEN(anon_sym_err_GT_GT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(1757); END_STATE(); case 1749: - ACCEPT_TOKEN(anon_sym_out_GT_GT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(1757); + if (lookahead == '|') ADVANCE(1462); END_STATE(); case 1750: - ACCEPT_TOKEN(anon_sym_e_GT_GT); + ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); case 1751: - ACCEPT_TOKEN(anon_sym_o_GT_GT); + ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); case 1752: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); + ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); case 1753: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); + ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); case 1754: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); case 1755: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); case 1756: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(1760); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); case 1757: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(1761); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); case 1758: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(443); - if (lookahead == '>') ADVANCE(526); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (lookahead == '+') ADVANCE(437); + if (lookahead == '>') ADVANCE(522); + if (lookahead == 'r') ADVANCE(1762); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1764); 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 == '+') ADVANCE(379); + if (lookahead == '>') ADVANCE(523); + if (lookahead == 'u') ADVANCE(1763); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1764); 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 == '+') ADVANCE(442); + if (lookahead == '>') ADVANCE(525); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1764); END_STATE(); case 1761: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(1759); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (lookahead == '+') ADVANCE(383); + if (lookahead == '>') ADVANCE(527); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1764); END_STATE(); case 1762: ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (lookahead == 'r') ADVANCE(1760); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1764); END_STATE(); case 1763: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1840); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(1901); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 't') ADVANCE(1761); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1764); END_STATE(); case 1764: - ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1817, - '-', 1820, - '>', 1737, - 'I', 1927, - '_', 1820, - 'i', 1927, - 'n', 1834, - 'r', 1883, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1764); 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 (lookahead == '+') ADVANCE(1842); + if (lookahead == '>') ADVANCE(1741); + if (lookahead == 'r') ADVANCE(1533); + if (lookahead == 'u') ADVANCE(1903); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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, + '+', 1819, + '-', 1822, + '>', 1739, + 'I', 1929, + '_', 1822, + 'i', 1929, + 'n', 1836, + 'r', 1885, + 'B', 1655, + 'b', 1655, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1819); + if (lookahead == '-') ADVANCE(1822); + if (lookahead == '>') ADVANCE(1739); + if (lookahead == '_') ADVANCE(1822); + if (lookahead == 'n') ADVANCE(1836); + if (lookahead == 'r') ADVANCE(1885); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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); + ADVANCE_MAP( + '+', 1820, + '-', 1822, + '>', 1921, + 'I', 1929, + '_', 1822, + 'i', 1929, + 'n', 1836, + 'r', 1886, + 'B', 1655, + 'b', 1655, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1769: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1818); - if (lookahead == '-') ADVANCE(1820); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'r') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '+', 1820, + '-', 1822, + '>', 1921, + 'I', 1929, + '_', 1822, + 'i', 1929, + 'r', 1886, + 'B', 1655, + 'b', 1655, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1770: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1841); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1820); + if (lookahead == '-') ADVANCE(1822); + if (lookahead == '>') ADVANCE(1921); + if (lookahead == '_') ADVANCE(1822); + if (lookahead == 'n') ADVANCE(1836); + if (lookahead == 'r') ADVANCE(1886); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1820); + if (lookahead == '-') ADVANCE(1822); + if (lookahead == '>') ADVANCE(1921); + if (lookahead == '_') ADVANCE(1822); + if (lookahead == 'r') ADVANCE(1886); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1772: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1869); + if (lookahead == '+') ADVANCE(1843); 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 ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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( + '+', 1871, + '>', 1739, + 'I', 1929, + 'i', 1929, + 'n', 1836, + 'r', 1885, + 'B', 1655, + 'b', 1655, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1871); + if (lookahead == '>') ADVANCE(1739); + if (lookahead == 'n') ADVANCE(1836); + if (lookahead == 'r') ADVANCE(1885); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1872); + if (lookahead == '>') ADVANCE(1735); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1776: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1875); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1884); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '+', 1877, + '>', 1921, + 'I', 1929, + 'i', 1929, + 'n', 1836, + 'r', 1886, + 'B', 1655, + 'b', 1655, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1777: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1875); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == 'r') ADVANCE(1884); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1877); + if (lookahead == '>') ADVANCE(1921); + if (lookahead == 'I') ADVANCE(1929); + if (lookahead == 'i') ADVANCE(1929); + if (lookahead == 'r') ADVANCE(1886); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1877); + if (lookahead == '>') ADVANCE(1921); + if (lookahead == 'n') ADVANCE(1836); + if (lookahead == 'r') ADVANCE(1886); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1877); + if (lookahead == '>') ADVANCE(1921); + if (lookahead == 'r') ADVANCE(1886); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1780: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1877); + if (lookahead == '+') ADVANCE(1844); if (lookahead == '>') ADVANCE(1922); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1533); + if (lookahead == 'u') ADVANCE(1907); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1844); + if (lookahead == '>') ADVANCE(1922); + if (lookahead == 'u') ADVANCE(1907); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1879); + if (lookahead == '>') ADVANCE(1924); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1845); + if (lookahead == '>') ADVANCE(1926); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1486); + if (lookahead == '.') ADVANCE(1823); + if (lookahead == '_') ADVANCE(1794); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1932); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1486); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1786: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1914); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1829); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1787: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1915); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1846); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1936); 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 ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1918); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1791: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1814); - if (lookahead == '_') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1919); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1595); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1816); + if (lookahead == '_') ADVANCE(1793); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1823); + if (lookahead == '_') ADVANCE(1794); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1550); + if (lookahead == '~') ADVANCE(1556); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1549); + if (lookahead == '>') ADVANCE(1502); + if (lookahead == '~') ADVANCE(1555); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1549); + if (lookahead == '~') ADVANCE(1555); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1502); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1749); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1747); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1743); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1745); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1803: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1925); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1923); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1804: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1926); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1925); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1805: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - 'I', 1927, - '_', 1820, - 'i', 1927, - 'n', 1834, - '+', 1820, - '-', 1820, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1927); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1806: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'i') ADVANCE(1927); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1928); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1807: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'i') ADVANCE(1829); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + 'I', 1929, + '_', 1822, + 'i', 1929, + 'n', 1836, + '+', 1822, + '-', 1822, + 'B', 1655, + 'b', 1655, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1929); + if (lookahead == '_') ADVANCE(1822); + if (lookahead == 'i') ADVANCE(1929); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1822); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1809: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1927); + if (lookahead == 'I') ADVANCE(1929); + if (lookahead == '_') ADVANCE(1822); + if (lookahead == 'i') ADVANCE(1831); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1822); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1810: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1829); + if (lookahead == 'I') ADVANCE(1929); + if (lookahead == 'i') ADVANCE(1929); + if (lookahead == 'n') ADVANCE(1836); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1929); + if (lookahead == 'i') ADVANCE(1929); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1812: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1862); - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(1929); + if (lookahead == 'i') ADVANCE(1831); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1813: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1813); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'I') ADVANCE(1929); + if (lookahead == 'i') ADVANCE(1864); + if (lookahead == 'o') ADVANCE(1834); + if (lookahead == 's') ADVANCE(1660); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1814: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'I') ADVANCE(1929); + if (lookahead == 'i') ADVANCE(1864); + if (lookahead == 's') ADVANCE(1660); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1817: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'o') ADVANCE(1797); + if (lookahead == '_') ADVANCE(1817); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - 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(1936); 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(1822); + if (lookahead == 'n') ADVANCE(1836); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1822); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1822); + if (lookahead == 'o') ADVANCE(1799); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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 (lookahead == '_') ADVANCE(1822); + if (lookahead == 'o') ADVANCE(1803); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1821: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1821); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1822); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1822); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1822: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1892); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1822); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1823: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1892); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1894); + if (lookahead == 'r') ADVANCE(1660); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1894); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1920); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1888); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1828: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1890); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1895); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1829: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1869); + if (lookahead == 'o') ADVANCE(1883); + if (lookahead == 's') ADVANCE(1852); + if (lookahead == 'x') ADVANCE(1878); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1830: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1892); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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 == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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 == 'c') ADVANCE(1660); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1529); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1573); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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 == 'd') ADVANCE(1587); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1836: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1556); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1896); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1837: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1558); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1898); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1558); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1560); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1832); + if (lookahead == 't') ADVANCE(1827); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1832); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1800); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1889); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1844: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1868); - if (lookahead == 'h') ADVANCE(1826); - if (lookahead == 'i') ADVANCE(1864); - if (lookahead == 'l') ADVANCE(1857); - if (lookahead == 's') ADVANCE(1911); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1804); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1845: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'f') ADVANCE(1068); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1890); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1846: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1543); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1870); + if (lookahead == 'h') ADVANCE(1828); + if (lookahead == 'i') ADVANCE(1866); + if (lookahead == 'l') ADVANCE(1859); + if (lookahead == 's') ADVANCE(1913); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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 == 'f') ADVANCE(1070); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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 ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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 ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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 == 'h') ADVANCE(1547); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1851: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1859); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1543); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1852: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1898); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1863); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1861); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1900); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1855: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1906); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1904); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1906); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1857: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1860); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1908); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1858: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1909); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1859: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1836); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1862); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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 == 'k') ADVANCE(1660); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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 == 'k') ADVANCE(1838); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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 == 'k') ADVANCE(1839); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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 == 'l') ADVANCE(1583); + if (lookahead == 'r') ADVANCE(1585); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1660); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1085); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1535); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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 ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1868: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1835); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1836); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1869: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1797); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1835); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1870: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1912); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1837); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1799); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1914); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1882); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1902); + if (lookahead == 's') ADVANCE(1660); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1902); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1834); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1877: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1913); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1803); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1878: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1884); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1879: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1531); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1915); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1660); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1533); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1531); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1591); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1589); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1775); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1782); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1802); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1911); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1887); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1890: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1910); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1891); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1891: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1806); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1892: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1535); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1912); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1660); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1894: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1786); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1537); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1895: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1787); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1539); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1936); 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 ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1898: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1784); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1790); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1899: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1825); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1791); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1786); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1827); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1787); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1772); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1848); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1801); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1906: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1848); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1849); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1783); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1850); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1851); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1805); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1911: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1828); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1897); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1912: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1903); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1899); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1913: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1908); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1830); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1914: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1853); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'u') ADVANCE(1905); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1915: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1854); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'u') ADVANCE(1910); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1936); 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 ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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 == 'w') ADVANCE(1857); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1919: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1455); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'w') ADVANCE(1858); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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 == 'y') ADVANCE(1660); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1457); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1936); 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(1462); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1455); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1925: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1457); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1461); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1926: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1458); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1456); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1927: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1459); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1928: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1106); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1460); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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 == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1930: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1928); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1108); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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 == 'I' || + lookahead == 'i') ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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 == 'N' || + lookahead == 'n') ADVANCE(1930); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1933: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1931); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1934: ACCEPT_TOKEN(sym__unquoted_pattern); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1935); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1935: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1106); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); END_STATE(); case 1936: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1503); - if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); 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(1595); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); 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 == '.') ADVANCE(1505); + if (lookahead == '_') ADVANCE(1947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); END_STATE(); case 1939: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == '_') ADVANCE(1948); - if (lookahead == 'i') ADVANCE(1958); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1948); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '.') ADVANCE(1505); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); END_STATE(); case 1940: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == '_') ADVANCE(1948); - if (lookahead == 'i') ADVANCE(1950); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1948); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '.') ADVANCE(1948); + if (lookahead == '_') ADVANCE(1940); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); 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(1960); + if (lookahead == '_') ADVANCE(1950); + if (lookahead == 'i') ADVANCE(1960); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1950); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); 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(1960); + if (lookahead == '_') ADVANCE(1950); + if (lookahead == 'i') ADVANCE(1952); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1950); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); 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 == 'I') ADVANCE(1960); + if (lookahead == 'i') ADVANCE(1960); 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(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); END_STATE(); case 1944: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1944); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'I') ADVANCE(1960); + if (lookahead == 'i') ADVANCE(1952); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); END_STATE(); case 1945: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'I') ADVANCE(1960); + if (lookahead == 'i') ADVANCE(1956); + if (lookahead == 's') ADVANCE(1660); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); END_STATE(); case 1946: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); if (lookahead == '_') ADVANCE(1946); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); END_STATE(); case 1947: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1948); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1948); + if (lookahead == '_') ADVANCE(1947); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - 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(1961); 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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); END_STATE(); case 1949: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'a') ADVANCE(1957); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1950); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1950); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); END_STATE(); case 1950: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1950); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); 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 == 'a') ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); 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 == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); 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 == 'c') ADVANCE(1660); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); 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 == 'e') ADVANCE(1953); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); 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 == 'k') ADVANCE(1660); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); 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 == 'n') ADVANCE(1660); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); 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 == 'r') ADVANCE(1660); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); END_STATE(); case 1958: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 's') ADVANCE(1660); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); END_STATE(); case 1959: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'y') ADVANCE(1660); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); END_STATE(); case 1960: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); END_STATE(); case 1961: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1592); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); 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(1595); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); case 1963: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1971); + if (lookahead == '.') ADVANCE(1973); 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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); 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(1966); + 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(1988); END_STATE(); case 1965: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1962); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1966); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); case 1966: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == 'i') ADVANCE(1985); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1974); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1484); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); case 1967: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == 'i') ADVANCE(1977); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1974); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1594); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); 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(1987); + if (lookahead == '_') ADVANCE(1976); + if (lookahead == 'i') ADVANCE(1987); + if (lookahead == '+' || + lookahead == '-') 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(1655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); 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(1987); + if (lookahead == '_') ADVANCE(1976); + if (lookahead == 'i') ADVANCE(1979); + if (lookahead == '+' || + lookahead == '-') 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(1655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); 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 == 'I') ADVANCE(1987); + if (lookahead == 'i') ADVANCE(1987); 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(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); case 1971: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1971); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'I') ADVANCE(1987); + if (lookahead == 'i') ADVANCE(1979); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); case 1972: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'I') ADVANCE(1987); + if (lookahead == 'i') ADVANCE(1983); + if (lookahead == 's') ADVANCE(1660); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); 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(1615); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); 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 ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); 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 == '_') ADVANCE(1976); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1976); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); case 1976: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'a') ADVANCE(1984); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '_') ADVANCE(1976); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); case 1977: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '_') ADVANCE(1977); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); 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 == 'a') ADVANCE(1986); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); 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 == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); 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 == 'c') ADVANCE(1660); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); 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 == 'e') ADVANCE(1980); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); 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 == 'k') ADVANCE(1660); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); 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 == 'n') ADVANCE(1660); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); 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 == 'r') ADVANCE(1660); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); case 1985: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 's') ADVANCE(1660); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); case 1986: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'y') ADVANCE(1660); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); END_STATE(); case 1987: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + END_STATE(); + case 1988: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + END_STATE(); + case 1989: ACCEPT_TOKEN(sym__unquoted_naive); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -31224,1149 +31354,1149 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); - 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); - 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); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1989); 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(1619); + if (lookahead == '(') ADVANCE(1593); + if (lookahead == '[') ADVANCE(1707); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2027); + if (lookahead == '>') ADVANCE(1739); + if (lookahead == 'r') ADVANCE(2033); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 1992: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2019); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2020); + if (lookahead == '>') ADVANCE(1741); + if (lookahead == 'u') ADVANCE(2041); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(1735); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2021); + if (lookahead == '>') ADVANCE(1737); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2030); + if (lookahead == '>') ADVANCE(1738); + if (lookahead == 'r') ADVANCE(2034); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2022); + if (lookahead == '>') ADVANCE(1740); + if (lookahead == 'u') ADVANCE(2043); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2031); + if (lookahead == '>') ADVANCE(1734); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2023); + if (lookahead == '>') ADVANCE(1736); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2067); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2000: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2013); - if (lookahead == '_') ADVANCE(2000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '.') ADVANCE(1509); + if (lookahead == '_') ADVANCE(2016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(1507); + if (lookahead == '_') ADVANCE(2016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2015); + if (lookahead == '_') ADVANCE(2002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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 == '2') ADVANCE(2057); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2065); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2069); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2071); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(1749); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(1747); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2072); 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(1745); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(1748); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2011: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1742); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1746); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2012: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2012); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2013: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2013); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1744); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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 ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2015: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2023); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '_') ADVANCE(2015); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2016: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '_') ADVANCE(2016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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 == 'a') ADVANCE(2025); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(1091); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(1094); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2007); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2021: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2036); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(2035); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2022: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(2011); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2023: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2037); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(2038); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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 == 'l') ADVANCE(1097); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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 == 'l') ADVANCE(2039); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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 == 'l') ADVANCE(2024); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2006); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2047); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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 == 'o') ADVANCE(2040); + if (lookahead == 'u') ADVANCE(2026); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2052); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2030: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2044); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2010); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2031: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1991); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2048); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2046); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(1993); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(1997); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2036); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2036: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2035); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2009); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2037: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2017); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2013); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2038: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2056); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2037); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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 == 's') ADVANCE(2019); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2058); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(1994); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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 == 't') ADVANCE(2008); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2043: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2024); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2050); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(1998); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2044: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2016); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(2012); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2026); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2052); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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 == 'u') ADVANCE(2018); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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 == 'u') ADVANCE(2042); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2048: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1100); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'u') ADVANCE(2044); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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 == 'A' || + lookahead == 'a') ADVANCE(2052); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2050: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1102); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2051: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2048); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2055); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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); + lookahead == 'n') ADVANCE(1111); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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 == 'N' || + lookahead == 'n') ADVANCE(2050); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2054: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2051); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2055: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2056); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2056: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1100); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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 <= '3')) ADVANCE(1674); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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 (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1562); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(1669); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(1999); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2005); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(1677); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(1671); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(1682); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(1674); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2072); 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(2062); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); 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(2061); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2069: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2068); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2063); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2070: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2004); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2071: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2074); - if (lookahead == '_') ADVANCE(2075); - if (lookahead == '\t' || - lookahead == ' ') SKIP(193); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2073); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2070); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2072: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(2074); - if (lookahead == '_') ADVANCE(2075); - if (lookahead == '\t' || - lookahead == ' ') SKIP(255); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2073); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2073: ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '$') ADVANCE(1472); + if (lookahead == '(') ADVANCE(1563); if (lookahead == '.') ADVANCE(2076); - if (lookahead == '_') ADVANCE(2073); + if (lookahead == '_') ADVANCE(2077); + if (lookahead == '\t' || + lookahead == ' ') SKIP(191); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2075); 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(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2079); 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 (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(2076); + if (lookahead == '_') ADVANCE(2077); + if (lookahead == '\t' || + lookahead == ' ') SKIP(254); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2075); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2079); END_STATE(); case 2075: ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(2078); 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(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2079); 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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2079); END_STATE(); case 2077: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + if (lookahead == '_') ADVANCE(2077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2079); END_STATE(); case 2078: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(1617); - if (lookahead == '(') ADVANCE(1591); - if (lookahead == '[') ADVANCE(1705); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(2078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2079); END_STATE(); case 2079: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(2123); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2079); 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(1619); + if (lookahead == '(') ADVANCE(1593); + if (lookahead == '[') ADVANCE(1707); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2130); 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(2125); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2082: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2088); - if (lookahead == '_') ADVANCE(2082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '.') ADVANCE(1509); + if (lookahead == '_') ADVANCE(2091); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2083: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1506); - if (lookahead == '_') ADVANCE(2089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '.') ADVANCE(2090); + if (lookahead == '_') ADVANCE(2084); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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(2090); + if (lookahead == '_') ADVANCE(2084); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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(1508); + if (lookahead == '_') ADVANCE(2091); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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 == '2') ADVANCE(2116); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2124); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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 (lookahead == ':') ADVANCE(2127); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2088: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2088); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == ':') ADVANCE(2129); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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 ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2090: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(2094); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '_') ADVANCE(2090); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2091: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '_') ADVANCE(2091); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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 == 'a') ADVANCE(2096); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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 == 'e') ADVANCE(1091); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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 == 'e') ADVANCE(1094); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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 == 'l') ADVANCE(1097); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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 == 'l') ADVANCE(2099); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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 == 'l') ADVANCE(2095); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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 == 'r') ADVANCE(2100); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2099: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2095); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2105); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 's') ADVANCE(2094); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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 == 'u') ADVANCE(2093); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2101: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1107); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'u') ADVANCE(2097); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2107); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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 == 'A' || + lookahead == 'a') ADVANCE(2107); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2103: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2110); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1109); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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 == 'F' || + lookahead == 'f') ADVANCE(1103); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2105: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2112); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2106: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2102); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2113); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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(1111); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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(2104); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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); + lookahead == 'n') ADVANCE(2105); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2110: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2112); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2103); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2111: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2113); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2106); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2112: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2114); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2113: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2115); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2114: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1100); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2115: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1106); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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 <= '3')) ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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(1669); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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(2081); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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(2088); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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(2118); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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(1678); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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(1672); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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(1683); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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(1675); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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(2121); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); 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(2119); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2127: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2126); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2122); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2128: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2087); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2129: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1509); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2132); - if (lookahead == ']') ADVANCE(1466); - if (lookahead == '_') ADVANCE(2133); - if (lookahead == '\t' || - lookahead == ' ') SKIP(191); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2128); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2130: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2132); - if (lookahead == '_') ADVANCE(2133); - if (lookahead == '\t' || - lookahead == ' ') SKIP(193); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); END_STATE(); case 2131: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '$') ADVANCE(1511); + if (lookahead == '(') ADVANCE(1563); if (lookahead == '.') ADVANCE(2134); - if (lookahead == '_') ADVANCE(2131); + if (lookahead == ']') ADVANCE(1468); + if (lookahead == '_') ADVANCE(2135); + if (lookahead == '\t' || + lookahead == ' ') SKIP(189); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2133); 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(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2137); 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 (lookahead == '#') ADVANCE(2190); + if (lookahead == '$') ADVANCE(1472); + if (lookahead == '(') ADVANCE(1563); + if (lookahead == '.') ADVANCE(2134); + if (lookahead == '_') ADVANCE(2135); + if (lookahead == '\t' || + lookahead == ' ') SKIP(191); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2133); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2137); END_STATE(); case 2133: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(2136); 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(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2137); 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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2137); END_STATE(); case 2135: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + if (lookahead == '_') ADVANCE(2135); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2137); END_STATE(); case 2136: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(2171); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(2136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2137); END_STATE(); case 2137: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(2143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2137); 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(2173); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); 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(1509); + if (lookahead == '_') ADVANCE(2145); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); 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(2144); + if (lookahead == '_') ADVANCE(2141); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); END_STATE(); case 2141: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(2144); 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(1647); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); END_STATE(); case 2142: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2142); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == ':') ADVANCE(554); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); 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 ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); END_STATE(); case 2144: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(2148); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '_') ADVANCE(2144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); END_STATE(); case 2145: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '_') ADVANCE(2145); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); 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 == 'a') ADVANCE(2150); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); 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 == 'e') ADVANCE(1091); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); 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 == 'e') ADVANCE(1094); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); 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 == 'l') ADVANCE(1097); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); 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 == 'l') ADVANCE(2153); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); 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 == 'l') ADVANCE(2149); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); 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 == 'r') ADVANCE(2154); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); END_STATE(); case 2153: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2149); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2159); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 's') ADVANCE(2148); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); 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 == 'u') ADVANCE(2147); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); END_STATE(); case 2155: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1108); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'u') ADVANCE(2151); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2161); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); 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 == 'A' || + lookahead == 'a') ADVANCE(2161); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); END_STATE(); case 2157: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2164); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1110); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); 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 == 'F' || + lookahead == 'f') ADVANCE(1104); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); END_STATE(); case 2159: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2166); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); END_STATE(); case 2160: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2156); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2167); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); 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(1111); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); 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(2158); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); 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); + lookahead == 'n') ADVANCE(2159); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); END_STATE(); case 2164: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2166); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2157); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); END_STATE(); case 2165: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2167); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2160); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); END_STATE(); case 2166: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2168); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); END_STATE(); case 2167: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2169); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); END_STATE(); case 2168: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2136); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1100); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); END_STATE(); case 2169: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2140); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1106); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); 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(2138); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); 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(2142); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); 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(2170); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); END_STATE(); case 2173: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1677); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2175); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); END_STATE(); case 2174: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2171); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); 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 == '\t' || - lookahead == ' ') SKIP(193); - 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); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); END_STATE(); case 2176: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(2178); - if (lookahead == '_') ADVANCE(2179); - 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); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); END_STATE(); case 2177: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '$') ADVANCE(1472); + if (lookahead == '(') ADVANCE(1563); if (lookahead == '.') ADVANCE(2180); - if (lookahead == '_') ADVANCE(2177); + if (lookahead == '_') ADVANCE(2181); + if (lookahead == '\t' || + lookahead == ' ') SKIP(191); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2179); 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(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2183); 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 (lookahead == '#') ADVANCE(2190); + if (lookahead == '.') ADVANCE(2180); + if (lookahead == '_') ADVANCE(2181); + if (lookahead == '\t' || + lookahead == ' ') SKIP(254); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2179); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2183); END_STATE(); case 2179: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(2182); 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(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2183); 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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2183); 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); + if (lookahead == '_') ADVANCE(2181); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2183); END_STATE(); case 2182: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(2182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2183); + END_STATE(); + case 2183: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2183); + END_STATE(); + case 2184: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(2195); + if (lookahead == '#') ADVANCE(2197); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2183); + lookahead != '|') ADVANCE(2185); END_STATE(); - case 2183: + case 2185: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32374,20 +32504,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2183); + lookahead != '|') ADVANCE(2185); END_STATE(); - case 2184: + case 2186: 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(2196); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2187); END_STATE(); - case 2185: + case 2187: 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(2187); END_STATE(); - case 2186: + case 2188: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(2193); + if (lookahead == '#') ADVANCE(2195); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -32396,9 +32526,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2189); END_STATE(); - case 2187: + case 2189: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32408,30 +32538,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2187); - END_STATE(); - case 2188: - ACCEPT_TOKEN(anon_sym_POUND); - END_STATE(); - case 2189: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(663); - if (lookahead == '\r') ADVANCE(665); - if (lookahead != 0) ADVANCE(665); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2189); END_STATE(); case 2190: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(662); 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 (lookahead == '\n') ADVANCE(665); + if (lookahead == '\r') ADVANCE(667); + if (lookahead != 0) ADVANCE(667); 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); + if (lookahead == '!') ADVANCE(664); END_STATE(); case 2193: + ACCEPT_TOKEN(anon_sym_POUND); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + END_STATE(); + case 2194: + ACCEPT_TOKEN(anon_sym_POUND); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1717); + END_STATE(); + case 2195: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32441,13 +32571,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2189); END_STATE(); - case 2194: + case 2196: 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(2187); END_STATE(); - case 2195: + case 2197: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32455,26 +32585,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2183); + lookahead != '|') ADVANCE(2185); END_STATE(); - case 2196: + case 2198: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2198); + lookahead != '\n') ADVANCE(2200); END_STATE(); - case 2197: + case 2199: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(2196); + if (lookahead == '#') ADVANCE(2198); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2197); + lookahead == ' ') ADVANCE(2199); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(2198); + lookahead != '\n') ADVANCE(2200); END_STATE(); - case 2198: + case 2200: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2198); + lookahead != '\n') ADVANCE(2200); END_STATE(); default: return false; @@ -33022,7 +33152,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 629, .external_lex_state = 2}, + [1] = {.lex_state = 631, .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}, @@ -33037,185 +33167,185 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [16] = {.lex_state = 623, .external_lex_state = 2}, + [17] = {.lex_state = 623, .external_lex_state = 2}, + [18] = {.lex_state = 623, .external_lex_state = 2}, + [19] = {.lex_state = 623, .external_lex_state = 2}, + [20] = {.lex_state = 623, .external_lex_state = 2}, + [21] = {.lex_state = 623, .external_lex_state = 2}, + [22] = {.lex_state = 623, .external_lex_state = 2}, + [23] = {.lex_state = 623, .external_lex_state = 2}, + [24] = {.lex_state = 623, .external_lex_state = 2}, + [25] = {.lex_state = 623, .external_lex_state = 2}, + [26] = {.lex_state = 623, .external_lex_state = 2}, + [27] = {.lex_state = 623, .external_lex_state = 2}, + [28] = {.lex_state = 623, .external_lex_state = 2}, + [29] = {.lex_state = 623, .external_lex_state = 2}, + [30] = {.lex_state = 623, .external_lex_state = 2}, + [31] = {.lex_state = 623, .external_lex_state = 2}, + [32] = {.lex_state = 623, .external_lex_state = 2}, + [33] = {.lex_state = 623, .external_lex_state = 2}, + [34] = {.lex_state = 623, .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}, + [36] = {.lex_state = 623, .external_lex_state = 2}, + [37] = {.lex_state = 29, .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}, + [39] = {.lex_state = 623, .external_lex_state = 2}, + [40] = {.lex_state = 29, .external_lex_state = 2}, + [41] = {.lex_state = 623, .external_lex_state = 2}, + [42] = {.lex_state = 623, .external_lex_state = 2}, + [43] = {.lex_state = 623, .external_lex_state = 2}, + [44] = {.lex_state = 29, .external_lex_state = 2}, + [45] = {.lex_state = 29, .external_lex_state = 2}, + [46] = {.lex_state = 623, .external_lex_state = 2}, + [47] = {.lex_state = 623, .external_lex_state = 2}, + [48] = {.lex_state = 623, .external_lex_state = 2}, + [49] = {.lex_state = 29, .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}, + [52] = {.lex_state = 623, .external_lex_state = 2}, + [53] = {.lex_state = 623, .external_lex_state = 2}, [54] = {.lex_state = 29, .external_lex_state = 2}, - [55] = {.lex_state = 622, .external_lex_state = 2}, + [55] = {.lex_state = 623, .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}, + [57] = {.lex_state = 623, .external_lex_state = 2}, + [58] = {.lex_state = 623, .external_lex_state = 2}, + [59] = {.lex_state = 29, .external_lex_state = 2}, + [60] = {.lex_state = 623, .external_lex_state = 2}, + [61] = {.lex_state = 623, .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}, + [63] = {.lex_state = 29, .external_lex_state = 2}, + [64] = {.lex_state = 29, .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}, + [66] = {.lex_state = 623, .external_lex_state = 2}, + [67] = {.lex_state = 623, .external_lex_state = 2}, [68] = {.lex_state = 29, .external_lex_state = 2}, - [69] = {.lex_state = 622, .external_lex_state = 2}, + [69] = {.lex_state = 29, .external_lex_state = 2}, [70] = {.lex_state = 29, .external_lex_state = 2}, - [71] = {.lex_state = 622, .external_lex_state = 2}, + [71] = {.lex_state = 29, .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}, + [73] = {.lex_state = 29, .external_lex_state = 2}, + [74] = {.lex_state = 623, .external_lex_state = 2}, + [75] = {.lex_state = 623, .external_lex_state = 2}, + [76] = {.lex_state = 29, .external_lex_state = 2}, + [77] = {.lex_state = 623, .external_lex_state = 2}, + [78] = {.lex_state = 29, .external_lex_state = 2}, + [79] = {.lex_state = 623, .external_lex_state = 2}, + [80] = {.lex_state = 623, .external_lex_state = 2}, + [81] = {.lex_state = 623, .external_lex_state = 2}, + [82] = {.lex_state = 623, .external_lex_state = 2}, + [83] = {.lex_state = 623, .external_lex_state = 2}, + [84] = {.lex_state = 623, .external_lex_state = 2}, + [85] = {.lex_state = 623, .external_lex_state = 2}, + [86] = {.lex_state = 623, .external_lex_state = 2}, + [87] = {.lex_state = 623, .external_lex_state = 2}, + [88] = {.lex_state = 623, .external_lex_state = 2}, + [89] = {.lex_state = 623, .external_lex_state = 2}, + [90] = {.lex_state = 623, .external_lex_state = 2}, + [91] = {.lex_state = 623, .external_lex_state = 2}, + [92] = {.lex_state = 1158}, + [93] = {.lex_state = 1173}, + [94] = {.lex_state = 1161}, + [95] = {.lex_state = 1326}, + [96] = {.lex_state = 1159}, + [97] = {.lex_state = 1332}, + [98] = {.lex_state = 1174}, + [99] = {.lex_state = 1154}, + [100] = {.lex_state = 1148}, + [101] = {.lex_state = 1159}, + [102] = {.lex_state = 1328}, + [103] = {.lex_state = 1326}, + [104] = {.lex_state = 1160}, [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}, + [106] = {.lex_state = 1160}, + [107] = {.lex_state = 1163}, + [108] = {.lex_state = 41, .external_lex_state = 2}, + [109] = {.lex_state = 1160}, + [110] = {.lex_state = 626, .external_lex_state = 2}, [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}, + [112] = {.lex_state = 1150}, + [113] = {.lex_state = 1160}, + [114] = {.lex_state = 1332}, + [115] = {.lex_state = 1150}, + [116] = {.lex_state = 1165}, + [117] = {.lex_state = 1330}, + [118] = {.lex_state = 1165}, + [119] = {.lex_state = 626, .external_lex_state = 2}, + [120] = {.lex_state = 1330}, + [121] = {.lex_state = 1165}, + [122] = {.lex_state = 626, .external_lex_state = 2}, + [123] = {.lex_state = 1330}, + [124] = {.lex_state = 1176}, + [125] = {.lex_state = 1330}, + [126] = {.lex_state = 1167}, [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}, + [128] = {.lex_state = 1165}, + [129] = {.lex_state = 1152}, + [130] = {.lex_state = 1328}, + [131] = {.lex_state = 1152}, + [132] = {.lex_state = 1152}, + [133] = {.lex_state = 1328}, + [134] = {.lex_state = 1169}, + [135] = {.lex_state = 1330}, [136] = {.lex_state = 1330}, - [137] = {.lex_state = 1330}, + [137] = {.lex_state = 1169}, [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}, + [139] = {.lex_state = 1330}, + [140] = {.lex_state = 1171}, + [141] = {.lex_state = 1171}, + [142] = {.lex_state = 1171}, + [143] = {.lex_state = 1171}, + [144] = {.lex_state = 1334}, + [145] = {.lex_state = 623, .external_lex_state = 2}, + [146] = {.lex_state = 623, .external_lex_state = 2}, + [147] = {.lex_state = 1178}, + [148] = {.lex_state = 623, .external_lex_state = 2}, + [149] = {.lex_state = 623, .external_lex_state = 2}, + [150] = {.lex_state = 623, .external_lex_state = 2}, + [151] = {.lex_state = 1178}, + [152] = {.lex_state = 623, .external_lex_state = 2}, + [153] = {.lex_state = 623, .external_lex_state = 2}, + [154] = {.lex_state = 623, .external_lex_state = 2}, + [155] = {.lex_state = 623, .external_lex_state = 2}, + [156] = {.lex_state = 1156}, + [157] = {.lex_state = 1156}, + [158] = {.lex_state = 623, .external_lex_state = 2}, + [159] = {.lex_state = 623, .external_lex_state = 2}, + [160] = {.lex_state = 623, .external_lex_state = 2}, + [161] = {.lex_state = 623, .external_lex_state = 2}, + [162] = {.lex_state = 623, .external_lex_state = 2}, + [163] = {.lex_state = 1334}, + [164] = {.lex_state = 623, .external_lex_state = 2}, + [165] = {.lex_state = 1178}, + [166] = {.lex_state = 1178}, + [167] = {.lex_state = 623, .external_lex_state = 2}, + [168] = {.lex_state = 623, .external_lex_state = 2}, + [169] = {.lex_state = 623, .external_lex_state = 2}, + [170] = {.lex_state = 623, .external_lex_state = 2}, + [171] = {.lex_state = 623, .external_lex_state = 2}, + [172] = {.lex_state = 623, .external_lex_state = 2}, + [173] = {.lex_state = 623, .external_lex_state = 2}, + [174] = {.lex_state = 623, .external_lex_state = 2}, + [175] = {.lex_state = 623, .external_lex_state = 2}, + [176] = {.lex_state = 623, .external_lex_state = 2}, + [177] = {.lex_state = 623, .external_lex_state = 2}, + [178] = {.lex_state = 623, .external_lex_state = 2}, + [179] = {.lex_state = 623, .external_lex_state = 2}, + [180] = {.lex_state = 623, .external_lex_state = 2}, + [181] = {.lex_state = 623, .external_lex_state = 2}, + [182] = {.lex_state = 623, .external_lex_state = 2}, + [183] = {.lex_state = 623, .external_lex_state = 2}, + [184] = {.lex_state = 623, .external_lex_state = 2}, + [185] = {.lex_state = 623, .external_lex_state = 2}, + [186] = {.lex_state = 1334}, + [187] = {.lex_state = 623, .external_lex_state = 2}, + [188] = {.lex_state = 1334}, + [189] = {.lex_state = 623, .external_lex_state = 2}, + [190] = {.lex_state = 623, .external_lex_state = 2}, + [191] = {.lex_state = 623, .external_lex_state = 2}, + [192] = {.lex_state = 1180}, + [193] = {.lex_state = 1180}, + [194] = {.lex_state = 42, .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}, @@ -33288,4943 +33418,4998 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [267] = {.lex_state = 1149}, + [268] = {.lex_state = 1175}, + [269] = {.lex_state = 1162}, + [270] = {.lex_state = 1333}, + [271] = {.lex_state = 1155}, + [272] = {.lex_state = 1327}, + [273] = {.lex_state = 1164}, + [274] = {.lex_state = 1151}, + [275] = {.lex_state = 1164}, + [276] = {.lex_state = 1333}, + [277] = {.lex_state = 1327}, + [278] = {.lex_state = 34, .external_lex_state = 2}, + [279] = {.lex_state = 34, .external_lex_state = 2}, [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}, + [282] = {.lex_state = 34, .external_lex_state = 2}, + [283] = {.lex_state = 1329}, + [284] = {.lex_state = 34, .external_lex_state = 2}, [285] = {.lex_state = 34, .external_lex_state = 2}, - [286] = {.lex_state = 1151}, + [286] = {.lex_state = 1329}, [287] = {.lex_state = 34, .external_lex_state = 2}, [288] = {.lex_state = 34, .external_lex_state = 2}, - [289] = {.lex_state = 34, .external_lex_state = 2}, + [289] = {.lex_state = 1151}, [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}, + [293] = {.lex_state = 34, .external_lex_state = 2}, + [294] = {.lex_state = 1331}, [295] = {.lex_state = 1329}, - [296] = {.lex_state = 1171}, - [297] = {.lex_state = 1169}, + [296] = {.lex_state = 1153}, + [297] = {.lex_state = 1166}, [298] = {.lex_state = 1331}, [299] = {.lex_state = 1331}, - [300] = {.lex_state = 1331}, + [300] = {.lex_state = 1153}, [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}, + [302] = {.lex_state = 1153}, + [303] = {.lex_state = 1166}, + [304] = {.lex_state = 1166}, + [305] = {.lex_state = 1166}, + [306] = {.lex_state = 1177}, + [307] = {.lex_state = 1168}, + [308] = {.lex_state = 1329}, + [309] = {.lex_state = 1331}, + [310] = {.lex_state = 1170}, + [311] = {.lex_state = 1170}, [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}, - [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}, + [315] = {.lex_state = 1331}, + [316] = {.lex_state = 1172}, + [317] = {.lex_state = 1172}, + [318] = {.lex_state = 1172}, + [319] = {.lex_state = 1172}, + [320] = {.lex_state = 43, .external_lex_state = 2}, + [321] = {.lex_state = 43, .external_lex_state = 2}, + [322] = {.lex_state = 43, .external_lex_state = 2}, + [323] = {.lex_state = 1179}, + [324] = {.lex_state = 1157}, + [325] = {.lex_state = 1179}, + [326] = {.lex_state = 1157}, + [327] = {.lex_state = 1335}, + [328] = {.lex_state = 1335}, + [329] = {.lex_state = 1335}, + [330] = {.lex_state = 1335}, + [331] = {.lex_state = 1181}, + [332] = {.lex_state = 1181}, + [333] = {.lex_state = 578}, + [334] = {.lex_state = 578}, + [335] = {.lex_state = 122}, + [336] = {.lex_state = 122}, + [337] = {.lex_state = 122}, + [338] = {.lex_state = 43, .external_lex_state = 2}, + [339] = {.lex_state = 122}, + [340] = {.lex_state = 122}, + [341] = {.lex_state = 122}, + [342] = {.lex_state = 578}, + [343] = {.lex_state = 578}, + [344] = {.lex_state = 578}, + [345] = {.lex_state = 578}, + [346] = {.lex_state = 578}, + [347] = {.lex_state = 43, .external_lex_state = 2}, + [348] = {.lex_state = 578}, + [349] = {.lex_state = 122}, + [350] = {.lex_state = 578}, + [351] = {.lex_state = 122}, + [352] = {.lex_state = 122}, + [353] = {.lex_state = 43, .external_lex_state = 2}, + [354] = {.lex_state = 43, .external_lex_state = 2}, + [355] = {.lex_state = 578}, + [356] = {.lex_state = 122}, + [357] = {.lex_state = 122}, + [358] = {.lex_state = 122}, + [359] = {.lex_state = 43, .external_lex_state = 2}, + [360] = {.lex_state = 43, .external_lex_state = 2}, + [361] = {.lex_state = 43, .external_lex_state = 2}, + [362] = {.lex_state = 43, .external_lex_state = 2}, + [363] = {.lex_state = 43, .external_lex_state = 2}, + [364] = {.lex_state = 43, .external_lex_state = 2}, + [365] = {.lex_state = 43, .external_lex_state = 2}, + [366] = {.lex_state = 122}, + [367] = {.lex_state = 122}, + [368] = {.lex_state = 578}, + [369] = {.lex_state = 122}, + [370] = {.lex_state = 43, .external_lex_state = 2}, + [371] = {.lex_state = 578}, + [372] = {.lex_state = 578}, + [373] = {.lex_state = 122}, + [374] = {.lex_state = 578}, + [375] = {.lex_state = 578}, + [376] = {.lex_state = 578}, + [377] = {.lex_state = 578}, + [378] = {.lex_state = 43, .external_lex_state = 2}, + [379] = {.lex_state = 578}, + [380] = {.lex_state = 43, .external_lex_state = 2}, + [381] = {.lex_state = 43, .external_lex_state = 2}, + [382] = {.lex_state = 43, .external_lex_state = 2}, + [383] = {.lex_state = 578}, + [384] = {.lex_state = 578}, + [385] = {.lex_state = 582}, + [386] = {.lex_state = 582}, + [387] = {.lex_state = 578}, + [388] = {.lex_state = 43, .external_lex_state = 2}, + [389] = {.lex_state = 582}, + [390] = {.lex_state = 578}, + [391] = {.lex_state = 43, .external_lex_state = 2}, + [392] = {.lex_state = 578}, + [393] = {.lex_state = 578}, + [394] = {.lex_state = 43, .external_lex_state = 2}, + [395] = {.lex_state = 43, .external_lex_state = 2}, + [396] = {.lex_state = 578}, + [397] = {.lex_state = 122}, + [398] = {.lex_state = 578}, + [399] = {.lex_state = 579}, + [400] = {.lex_state = 584}, + [401] = {.lex_state = 582}, + [402] = {.lex_state = 582}, + [403] = {.lex_state = 578}, + [404] = {.lex_state = 582}, + [405] = {.lex_state = 582}, + [406] = {.lex_state = 582}, + [407] = {.lex_state = 579}, + [408] = {.lex_state = 579}, + [409] = {.lex_state = 584}, + [410] = {.lex_state = 582}, + [411] = {.lex_state = 578}, + [412] = {.lex_state = 582}, + [413] = {.lex_state = 579}, + [414] = {.lex_state = 579}, + [415] = {.lex_state = 579}, + [416] = {.lex_state = 579}, + [417] = {.lex_state = 582}, + [418] = {.lex_state = 586}, + [419] = {.lex_state = 578}, + [420] = {.lex_state = 590}, + [421] = {.lex_state = 578}, + [422] = {.lex_state = 584}, + [423] = {.lex_state = 582}, + [424] = {.lex_state = 579}, [425] = {.lex_state = 578}, - [426] = {.lex_state = 578}, + [426] = {.lex_state = 579}, [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}, + [428] = {.lex_state = 579}, + [429] = {.lex_state = 579}, + [430] = {.lex_state = 584}, + [431] = {.lex_state = 579}, + [432] = {.lex_state = 579}, + [433] = {.lex_state = 578}, + [434] = {.lex_state = 590}, + [435] = {.lex_state = 579}, + [436] = {.lex_state = 592}, + [437] = {.lex_state = 582}, + [438] = {.lex_state = 582}, + [439] = {.lex_state = 592}, [440] = {.lex_state = 578}, [441] = {.lex_state = 578}, - [442] = {.lex_state = 595}, - [443] = {.lex_state = 581}, - [444] = {.lex_state = 587}, - [445] = {.lex_state = 577}, - [446] = {.lex_state = 593}, - [447] = {.lex_state = 578}, - [448] = {.lex_state = 581}, - [449] = {.lex_state = 581}, - [450] = {.lex_state = 581}, - [451] = {.lex_state = 581}, - [452] = {.lex_state = 581}, - [453] = {.lex_state = 577}, - [454] = {.lex_state = 589}, - [455] = {.lex_state = 40, .external_lex_state = 2}, - [456] = {.lex_state = 40, .external_lex_state = 2}, - [457] = {.lex_state = 40, .external_lex_state = 2}, - [458] = {.lex_state = 40, .external_lex_state = 2}, - [459] = {.lex_state = 597}, - [460] = {.lex_state = 40, .external_lex_state = 2}, - [461] = {.lex_state = 40, .external_lex_state = 2}, - [462] = {.lex_state = 593}, - [463] = {.lex_state = 593}, - [464] = {.lex_state = 44, .external_lex_state = 2}, - [465] = {.lex_state = 578}, - [466] = {.lex_state = 578}, - [467] = {.lex_state = 593}, - [468] = {.lex_state = 40, .external_lex_state = 2}, - [469] = {.lex_state = 591}, - [470] = {.lex_state = 597}, - [471] = {.lex_state = 577}, - [472] = {.lex_state = 591}, - [473] = {.lex_state = 593}, - [474] = {.lex_state = 577}, - [475] = {.lex_state = 40, .external_lex_state = 2}, - [476] = {.lex_state = 593}, - [477] = {.lex_state = 595}, - [478] = {.lex_state = 578}, - [479] = {.lex_state = 578}, - [480] = {.lex_state = 578}, - [481] = {.lex_state = 587}, - [482] = {.lex_state = 578}, - [483] = {.lex_state = 578}, - [484] = {.lex_state = 578}, - [485] = {.lex_state = 578}, - [486] = {.lex_state = 578}, - [487] = {.lex_state = 578}, - [488] = {.lex_state = 578}, - [489] = {.lex_state = 578}, - [490] = {.lex_state = 599}, - [491] = {.lex_state = 578}, - [492] = {.lex_state = 578}, - [493] = {.lex_state = 578}, - [494] = {.lex_state = 578}, - [495] = {.lex_state = 593}, - [496] = {.lex_state = 578}, - [497] = {.lex_state = 578}, - [498] = {.lex_state = 578}, - [499] = {.lex_state = 593}, - [500] = {.lex_state = 599}, - [501] = {.lex_state = 40, .external_lex_state = 2}, - [502] = {.lex_state = 578}, - [503] = {.lex_state = 599}, - [504] = {.lex_state = 41, .external_lex_state = 2}, - [505] = {.lex_state = 41, .external_lex_state = 2}, - [506] = {.lex_state = 41, .external_lex_state = 2}, - [507] = {.lex_state = 41, .external_lex_state = 2}, - [508] = {.lex_state = 41, .external_lex_state = 2}, - [509] = {.lex_state = 41, .external_lex_state = 2}, - [510] = {.lex_state = 41, .external_lex_state = 2}, - [511] = {.lex_state = 41, .external_lex_state = 2}, - [512] = {.lex_state = 41, .external_lex_state = 2}, - [513] = {.lex_state = 41, .external_lex_state = 2}, - [514] = {.lex_state = 41, .external_lex_state = 2}, - [515] = {.lex_state = 41, .external_lex_state = 2}, - [516] = {.lex_state = 41, .external_lex_state = 2}, - [517] = {.lex_state = 578}, - [518] = {.lex_state = 578}, - [519] = {.lex_state = 41, .external_lex_state = 2}, - [520] = {.lex_state = 41, .external_lex_state = 2}, - [521] = {.lex_state = 41, .external_lex_state = 2}, - [522] = {.lex_state = 41, .external_lex_state = 2}, - [523] = {.lex_state = 41, .external_lex_state = 2}, - [524] = {.lex_state = 41, .external_lex_state = 2}, - [525] = {.lex_state = 41, .external_lex_state = 2}, - [526] = {.lex_state = 41, .external_lex_state = 2}, - [527] = {.lex_state = 41, .external_lex_state = 2}, - [528] = {.lex_state = 41, .external_lex_state = 2}, - [529] = {.lex_state = 41, .external_lex_state = 2}, - [530] = {.lex_state = 41, .external_lex_state = 2}, - [531] = {.lex_state = 41, .external_lex_state = 2}, - [532] = {.lex_state = 41, .external_lex_state = 2}, - [533] = {.lex_state = 41, .external_lex_state = 2}, - [534] = {.lex_state = 41, .external_lex_state = 2}, - [535] = {.lex_state = 41, .external_lex_state = 2}, - [536] = {.lex_state = 41, .external_lex_state = 2}, - [537] = {.lex_state = 41, .external_lex_state = 2}, - [538] = {.lex_state = 41, .external_lex_state = 2}, - [539] = {.lex_state = 41, .external_lex_state = 2}, - [540] = {.lex_state = 611}, - [541] = {.lex_state = 41, .external_lex_state = 2}, - [542] = {.lex_state = 41, .external_lex_state = 2}, - [543] = {.lex_state = 41, .external_lex_state = 2}, - [544] = {.lex_state = 41, .external_lex_state = 2}, - [545] = {.lex_state = 41, .external_lex_state = 2}, - [546] = {.lex_state = 41, .external_lex_state = 2}, - [547] = {.lex_state = 41, .external_lex_state = 2}, - [548] = {.lex_state = 41, .external_lex_state = 2}, - [549] = {.lex_state = 41, .external_lex_state = 2}, - [550] = {.lex_state = 41, .external_lex_state = 2}, - [551] = {.lex_state = 41, .external_lex_state = 2}, - [552] = {.lex_state = 41, .external_lex_state = 2}, - [553] = {.lex_state = 41, .external_lex_state = 2}, - [554] = {.lex_state = 41, .external_lex_state = 2}, - [555] = {.lex_state = 41, .external_lex_state = 2}, - [556] = {.lex_state = 41, .external_lex_state = 2}, - [557] = {.lex_state = 41, .external_lex_state = 2}, - [558] = {.lex_state = 41, .external_lex_state = 2}, - [559] = {.lex_state = 41, .external_lex_state = 2}, - [560] = {.lex_state = 41, .external_lex_state = 2}, - [561] = {.lex_state = 41, .external_lex_state = 2}, - [562] = {.lex_state = 41, .external_lex_state = 2}, - [563] = {.lex_state = 41, .external_lex_state = 2}, - [564] = {.lex_state = 41, .external_lex_state = 2}, - [565] = {.lex_state = 41, .external_lex_state = 2}, - [566] = {.lex_state = 41, .external_lex_state = 2}, - [567] = {.lex_state = 41, .external_lex_state = 2}, - [568] = {.lex_state = 41, .external_lex_state = 2}, - [569] = {.lex_state = 41, .external_lex_state = 2}, - [570] = {.lex_state = 41, .external_lex_state = 2}, - [571] = {.lex_state = 41, .external_lex_state = 2}, - [572] = {.lex_state = 41, .external_lex_state = 2}, - [573] = {.lex_state = 41, .external_lex_state = 2}, - [574] = {.lex_state = 41, .external_lex_state = 2}, - [575] = {.lex_state = 41, .external_lex_state = 2}, - [576] = {.lex_state = 41, .external_lex_state = 2}, - [577] = {.lex_state = 41, .external_lex_state = 2}, - [578] = {.lex_state = 41, .external_lex_state = 2}, - [579] = {.lex_state = 41, .external_lex_state = 2}, - [580] = {.lex_state = 41, .external_lex_state = 2}, - [581] = {.lex_state = 41, .external_lex_state = 2}, - [582] = {.lex_state = 41, .external_lex_state = 2}, - [583] = {.lex_state = 41, .external_lex_state = 2}, - [584] = {.lex_state = 41, .external_lex_state = 2}, - [585] = {.lex_state = 41, .external_lex_state = 2}, - [586] = {.lex_state = 41, .external_lex_state = 2}, - [587] = {.lex_state = 41, .external_lex_state = 2}, - [588] = {.lex_state = 41, .external_lex_state = 2}, - [589] = {.lex_state = 41, .external_lex_state = 2}, - [590] = {.lex_state = 41, .external_lex_state = 2}, - [591] = {.lex_state = 41, .external_lex_state = 2}, - [592] = {.lex_state = 41, .external_lex_state = 2}, - [593] = {.lex_state = 41, .external_lex_state = 2}, - [594] = {.lex_state = 41, .external_lex_state = 2}, - [595] = {.lex_state = 41, .external_lex_state = 2}, - [596] = {.lex_state = 41, .external_lex_state = 2}, - [597] = {.lex_state = 41, .external_lex_state = 2}, - [598] = {.lex_state = 41, .external_lex_state = 2}, - [599] = {.lex_state = 41, .external_lex_state = 2}, - [600] = {.lex_state = 41, .external_lex_state = 2}, - [601] = {.lex_state = 41, .external_lex_state = 2}, - [602] = {.lex_state = 41, .external_lex_state = 2}, - [603] = {.lex_state = 41, .external_lex_state = 2}, - [604] = {.lex_state = 41, .external_lex_state = 2}, - [605] = {.lex_state = 41, .external_lex_state = 2}, - [606] = {.lex_state = 41, .external_lex_state = 2}, - [607] = {.lex_state = 41, .external_lex_state = 2}, - [608] = {.lex_state = 41, .external_lex_state = 2}, - [609] = {.lex_state = 41, .external_lex_state = 2}, - [610] = {.lex_state = 41, .external_lex_state = 2}, - [611] = {.lex_state = 41, .external_lex_state = 2}, - [612] = {.lex_state = 41, .external_lex_state = 2}, - [613] = {.lex_state = 41, .external_lex_state = 2}, - [614] = {.lex_state = 41, .external_lex_state = 2}, - [615] = {.lex_state = 597}, - [616] = {.lex_state = 41, .external_lex_state = 2}, - [617] = {.lex_state = 41, .external_lex_state = 2}, + [442] = {.lex_state = 596}, + [443] = {.lex_state = 578}, + [444] = {.lex_state = 588}, + [445] = {.lex_state = 578}, + [446] = {.lex_state = 582}, + [447] = {.lex_state = 582}, + [448] = {.lex_state = 579}, + [449] = {.lex_state = 582}, + [450] = {.lex_state = 586}, + [451] = {.lex_state = 594}, + [452] = {.lex_state = 579}, + [453] = {.lex_state = 582}, + [454] = {.lex_state = 579}, + [455] = {.lex_state = 598}, + [456] = {.lex_state = 39, .external_lex_state = 2}, + [457] = {.lex_state = 39, .external_lex_state = 2}, + [458] = {.lex_state = 39, .external_lex_state = 2}, + [459] = {.lex_state = 43, .external_lex_state = 2}, + [460] = {.lex_state = 594}, + [461] = {.lex_state = 39, .external_lex_state = 2}, + [462] = {.lex_state = 598}, + [463] = {.lex_state = 39, .external_lex_state = 2}, + [464] = {.lex_state = 594}, + [465] = {.lex_state = 592}, + [466] = {.lex_state = 594}, + [467] = {.lex_state = 594}, + [468] = {.lex_state = 592}, + [469] = {.lex_state = 39, .external_lex_state = 2}, + [470] = {.lex_state = 579}, + [471] = {.lex_state = 578}, + [472] = {.lex_state = 39, .external_lex_state = 2}, + [473] = {.lex_state = 39, .external_lex_state = 2}, + [474] = {.lex_state = 578}, + [475] = {.lex_state = 579}, + [476] = {.lex_state = 579}, + [477] = {.lex_state = 579}, + [478] = {.lex_state = 579}, + [479] = {.lex_state = 579}, + [480] = {.lex_state = 579}, + [481] = {.lex_state = 579}, + [482] = {.lex_state = 579}, + [483] = {.lex_state = 594}, + [484] = {.lex_state = 579}, + [485] = {.lex_state = 579}, + [486] = {.lex_state = 579}, + [487] = {.lex_state = 579}, + [488] = {.lex_state = 588}, + [489] = {.lex_state = 579}, + [490] = {.lex_state = 600}, + [491] = {.lex_state = 39, .external_lex_state = 2}, + [492] = {.lex_state = 600}, + [493] = {.lex_state = 594}, + [494] = {.lex_state = 579}, + [495] = {.lex_state = 579}, + [496] = {.lex_state = 596}, + [497] = {.lex_state = 600}, + [498] = {.lex_state = 579}, + [499] = {.lex_state = 579}, + [500] = {.lex_state = 579}, + [501] = {.lex_state = 579}, + [502] = {.lex_state = 579}, + [503] = {.lex_state = 594}, + [504] = {.lex_state = 40, .external_lex_state = 2}, + [505] = {.lex_state = 40, .external_lex_state = 2}, + [506] = {.lex_state = 40, .external_lex_state = 2}, + [507] = {.lex_state = 612}, + [508] = {.lex_state = 43, .external_lex_state = 2}, + [509] = {.lex_state = 43, .external_lex_state = 2}, + [510] = {.lex_state = 600}, + [511] = {.lex_state = 600}, + [512] = {.lex_state = 40, .external_lex_state = 2}, + [513] = {.lex_state = 40, .external_lex_state = 2}, + [514] = {.lex_state = 40, .external_lex_state = 2}, + [515] = {.lex_state = 43, .external_lex_state = 2}, + [516] = {.lex_state = 40, .external_lex_state = 2}, + [517] = {.lex_state = 40, .external_lex_state = 2}, + [518] = {.lex_state = 40, .external_lex_state = 2}, + [519] = {.lex_state = 40, .external_lex_state = 2}, + [520] = {.lex_state = 40, .external_lex_state = 2}, + [521] = {.lex_state = 40, .external_lex_state = 2}, + [522] = {.lex_state = 40, .external_lex_state = 2}, + [523] = {.lex_state = 40, .external_lex_state = 2}, + [524] = {.lex_state = 40, .external_lex_state = 2}, + [525] = {.lex_state = 40, .external_lex_state = 2}, + [526] = {.lex_state = 40, .external_lex_state = 2}, + [527] = {.lex_state = 40, .external_lex_state = 2}, + [528] = {.lex_state = 40, .external_lex_state = 2}, + [529] = {.lex_state = 39, .external_lex_state = 2}, + [530] = {.lex_state = 598}, + [531] = {.lex_state = 40, .external_lex_state = 2}, + [532] = {.lex_state = 579}, + [533] = {.lex_state = 579}, + [534] = {.lex_state = 40, .external_lex_state = 2}, + [535] = {.lex_state = 40, .external_lex_state = 2}, + [536] = {.lex_state = 40, .external_lex_state = 2}, + [537] = {.lex_state = 40, .external_lex_state = 2}, + [538] = {.lex_state = 40, .external_lex_state = 2}, + [539] = {.lex_state = 40, .external_lex_state = 2}, + [540] = {.lex_state = 40, .external_lex_state = 2}, + [541] = {.lex_state = 40, .external_lex_state = 2}, + [542] = {.lex_state = 40, .external_lex_state = 2}, + [543] = {.lex_state = 40, .external_lex_state = 2}, + [544] = {.lex_state = 40, .external_lex_state = 2}, + [545] = {.lex_state = 40, .external_lex_state = 2}, + [546] = {.lex_state = 40, .external_lex_state = 2}, + [547] = {.lex_state = 40, .external_lex_state = 2}, + [548] = {.lex_state = 40, .external_lex_state = 2}, + [549] = {.lex_state = 40, .external_lex_state = 2}, + [550] = {.lex_state = 40, .external_lex_state = 2}, + [551] = {.lex_state = 40, .external_lex_state = 2}, + [552] = {.lex_state = 40, .external_lex_state = 2}, + [553] = {.lex_state = 40, .external_lex_state = 2}, + [554] = {.lex_state = 40, .external_lex_state = 2}, + [555] = {.lex_state = 40, .external_lex_state = 2}, + [556] = {.lex_state = 40, .external_lex_state = 2}, + [557] = {.lex_state = 40, .external_lex_state = 2}, + [558] = {.lex_state = 40, .external_lex_state = 2}, + [559] = {.lex_state = 40, .external_lex_state = 2}, + [560] = {.lex_state = 40, .external_lex_state = 2}, + [561] = {.lex_state = 40, .external_lex_state = 2}, + [562] = {.lex_state = 40, .external_lex_state = 2}, + [563] = {.lex_state = 40, .external_lex_state = 2}, + [564] = {.lex_state = 40, .external_lex_state = 2}, + [565] = {.lex_state = 40, .external_lex_state = 2}, + [566] = {.lex_state = 40, .external_lex_state = 2}, + [567] = {.lex_state = 40, .external_lex_state = 2}, + [568] = {.lex_state = 40, .external_lex_state = 2}, + [569] = {.lex_state = 40, .external_lex_state = 2}, + [570] = {.lex_state = 40, .external_lex_state = 2}, + [571] = {.lex_state = 40, .external_lex_state = 2}, + [572] = {.lex_state = 40, .external_lex_state = 2}, + [573] = {.lex_state = 40, .external_lex_state = 2}, + [574] = {.lex_state = 40, .external_lex_state = 2}, + [575] = {.lex_state = 40, .external_lex_state = 2}, + [576] = {.lex_state = 40, .external_lex_state = 2}, + [577] = {.lex_state = 40, .external_lex_state = 2}, + [578] = {.lex_state = 40, .external_lex_state = 2}, + [579] = {.lex_state = 40, .external_lex_state = 2}, + [580] = {.lex_state = 40, .external_lex_state = 2}, + [581] = {.lex_state = 40, .external_lex_state = 2}, + [582] = {.lex_state = 40, .external_lex_state = 2}, + [583] = {.lex_state = 40, .external_lex_state = 2}, + [584] = {.lex_state = 40, .external_lex_state = 2}, + [585] = {.lex_state = 40, .external_lex_state = 2}, + [586] = {.lex_state = 598}, + [587] = {.lex_state = 40, .external_lex_state = 2}, + [588] = {.lex_state = 40, .external_lex_state = 2}, + [589] = {.lex_state = 40, .external_lex_state = 2}, + [590] = {.lex_state = 40, .external_lex_state = 2}, + [591] = {.lex_state = 40, .external_lex_state = 2}, + [592] = {.lex_state = 40, .external_lex_state = 2}, + [593] = {.lex_state = 40, .external_lex_state = 2}, + [594] = {.lex_state = 40, .external_lex_state = 2}, + [595] = {.lex_state = 40, .external_lex_state = 2}, + [596] = {.lex_state = 40, .external_lex_state = 2}, + [597] = {.lex_state = 40, .external_lex_state = 2}, + [598] = {.lex_state = 40, .external_lex_state = 2}, + [599] = {.lex_state = 40, .external_lex_state = 2}, + [600] = {.lex_state = 40, .external_lex_state = 2}, + [601] = {.lex_state = 40, .external_lex_state = 2}, + [602] = {.lex_state = 40, .external_lex_state = 2}, + [603] = {.lex_state = 40, .external_lex_state = 2}, + [604] = {.lex_state = 40, .external_lex_state = 2}, + [605] = {.lex_state = 40, .external_lex_state = 2}, + [606] = {.lex_state = 40, .external_lex_state = 2}, + [607] = {.lex_state = 40, .external_lex_state = 2}, + [608] = {.lex_state = 40, .external_lex_state = 2}, + [609] = {.lex_state = 40, .external_lex_state = 2}, + [610] = {.lex_state = 40, .external_lex_state = 2}, + [611] = {.lex_state = 40, .external_lex_state = 2}, + [612] = {.lex_state = 40, .external_lex_state = 2}, + [613] = {.lex_state = 40, .external_lex_state = 2}, + [614] = {.lex_state = 40, .external_lex_state = 2}, + [615] = {.lex_state = 40, .external_lex_state = 2}, + [616] = {.lex_state = 40, .external_lex_state = 2}, + [617] = {.lex_state = 40, .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}, + [619] = {.lex_state = 40, .external_lex_state = 2}, + [620] = {.lex_state = 40, .external_lex_state = 2}, + [621] = {.lex_state = 40, .external_lex_state = 2}, + [622] = {.lex_state = 40, .external_lex_state = 2}, + [623] = {.lex_state = 40, .external_lex_state = 2}, + [624] = {.lex_state = 40, .external_lex_state = 2}, [625] = {.lex_state = 40, .external_lex_state = 2}, - [626] = {.lex_state = 41, .external_lex_state = 2}, - [627] = {.lex_state = 41, .external_lex_state = 2}, - [628] = {.lex_state = 41, .external_lex_state = 2}, - [629] = {.lex_state = 44, .external_lex_state = 2}, - [630] = {.lex_state = 44, .external_lex_state = 2}, - [631] = {.lex_state = 41, .external_lex_state = 2}, - [632] = {.lex_state = 41, .external_lex_state = 2}, - [633] = {.lex_state = 41, .external_lex_state = 2}, - [634] = {.lex_state = 41, .external_lex_state = 2}, - [635] = {.lex_state = 41, .external_lex_state = 2}, - [636] = {.lex_state = 41, .external_lex_state = 2}, - [637] = {.lex_state = 41, .external_lex_state = 2}, - [638] = {.lex_state = 41, .external_lex_state = 2}, - [639] = {.lex_state = 41, .external_lex_state = 2}, - [640] = {.lex_state = 41, .external_lex_state = 2}, - [641] = {.lex_state = 41, .external_lex_state = 2}, - [642] = {.lex_state = 599}, - [643] = {.lex_state = 41, .external_lex_state = 2}, - [644] = {.lex_state = 41, .external_lex_state = 2}, - [645] = {.lex_state = 599}, - [646] = {.lex_state = 41, .external_lex_state = 2}, - [647] = {.lex_state = 41, .external_lex_state = 2}, - [648] = {.lex_state = 41, .external_lex_state = 2}, - [649] = {.lex_state = 41, .external_lex_state = 2}, - [650] = {.lex_state = 41, .external_lex_state = 2}, - [651] = {.lex_state = 41, .external_lex_state = 2}, - [652] = {.lex_state = 41, .external_lex_state = 2}, - [653] = {.lex_state = 41, .external_lex_state = 2}, - [654] = {.lex_state = 41, .external_lex_state = 2}, - [655] = {.lex_state = 41, .external_lex_state = 2}, - [656] = {.lex_state = 41, .external_lex_state = 2}, - [657] = {.lex_state = 44, .external_lex_state = 2}, - [658] = {.lex_state = 41, .external_lex_state = 2}, - [659] = {.lex_state = 41, .external_lex_state = 2}, - [660] = {.lex_state = 41, .external_lex_state = 2}, - [661] = {.lex_state = 41, .external_lex_state = 2}, - [662] = {.lex_state = 41, .external_lex_state = 2}, - [663] = {.lex_state = 41, .external_lex_state = 2}, - [664] = {.lex_state = 597}, - [665] = {.lex_state = 41, .external_lex_state = 2}, - [666] = {.lex_state = 41, .external_lex_state = 2}, - [667] = {.lex_state = 41, .external_lex_state = 2}, - [668] = {.lex_state = 41, .external_lex_state = 2}, - [669] = {.lex_state = 41, .external_lex_state = 2}, - [670] = {.lex_state = 41, .external_lex_state = 2}, - [671] = {.lex_state = 41, .external_lex_state = 2}, - [672] = {.lex_state = 601}, - [673] = {.lex_state = 599}, - [674] = {.lex_state = 578}, - [675] = {.lex_state = 578}, - [676] = {.lex_state = 578}, - [677] = {.lex_state = 578}, - [678] = {.lex_state = 599}, - [679] = {.lex_state = 578}, - [680] = {.lex_state = 599}, - [681] = {.lex_state = 578}, - [682] = {.lex_state = 578}, - [683] = {.lex_state = 578}, - [684] = {.lex_state = 599}, - [685] = {.lex_state = 578}, - [686] = {.lex_state = 578}, - [687] = {.lex_state = 578}, - [688] = {.lex_state = 578}, - [689] = {.lex_state = 578}, - [690] = {.lex_state = 578}, - [691] = {.lex_state = 611}, - [692] = {.lex_state = 578}, - [693] = {.lex_state = 599}, - [694] = {.lex_state = 578}, - [695] = {.lex_state = 578}, - [696] = {.lex_state = 603}, - [697] = {.lex_state = 578}, - [698] = {.lex_state = 578}, - [699] = {.lex_state = 578}, - [700] = {.lex_state = 578}, - [701] = {.lex_state = 578}, - [702] = {.lex_state = 578}, - [703] = {.lex_state = 578}, - [704] = {.lex_state = 578}, - [705] = {.lex_state = 578}, - [706] = {.lex_state = 578}, - [707] = {.lex_state = 578}, - [708] = {.lex_state = 578}, - [709] = {.lex_state = 578}, - [710] = {.lex_state = 578}, - [711] = {.lex_state = 578}, - [712] = {.lex_state = 578}, - [713] = {.lex_state = 41, .external_lex_state = 2}, - [714] = {.lex_state = 41, .external_lex_state = 2}, - [715] = {.lex_state = 41, .external_lex_state = 2}, - [716] = {.lex_state = 41, .external_lex_state = 2}, - [717] = {.lex_state = 41, .external_lex_state = 2}, - [718] = {.lex_state = 41, .external_lex_state = 2}, - [719] = {.lex_state = 578}, - [720] = {.lex_state = 578}, - [721] = {.lex_state = 578}, - [722] = {.lex_state = 578}, - [723] = {.lex_state = 578}, - [724] = {.lex_state = 578}, - [725] = {.lex_state = 41, .external_lex_state = 2}, - [726] = {.lex_state = 578}, - [727] = {.lex_state = 578}, - [728] = {.lex_state = 578}, - [729] = {.lex_state = 578}, - [730] = {.lex_state = 578}, - [731] = {.lex_state = 41, .external_lex_state = 2}, - [732] = {.lex_state = 41, .external_lex_state = 2}, - [733] = {.lex_state = 41, .external_lex_state = 2}, - [734] = {.lex_state = 41, .external_lex_state = 2}, - [735] = {.lex_state = 578}, - [736] = {.lex_state = 578}, - [737] = {.lex_state = 578}, - [738] = {.lex_state = 578}, - [739] = {.lex_state = 578}, - [740] = {.lex_state = 578}, - [741] = {.lex_state = 578}, - [742] = {.lex_state = 578}, - [743] = {.lex_state = 578}, - [744] = {.lex_state = 578}, - [745] = {.lex_state = 41, .external_lex_state = 2}, - [746] = {.lex_state = 578}, - [747] = {.lex_state = 578}, - [748] = {.lex_state = 41, .external_lex_state = 2}, - [749] = {.lex_state = 41, .external_lex_state = 2}, - [750] = {.lex_state = 41, .external_lex_state = 2}, - [751] = {.lex_state = 41, .external_lex_state = 2}, - [752] = {.lex_state = 41, .external_lex_state = 2}, - [753] = {.lex_state = 41, .external_lex_state = 2}, - [754] = {.lex_state = 41, .external_lex_state = 2}, - [755] = {.lex_state = 41, .external_lex_state = 2}, - [756] = {.lex_state = 41, .external_lex_state = 2}, - [757] = {.lex_state = 41, .external_lex_state = 2}, - [758] = {.lex_state = 41, .external_lex_state = 2}, - [759] = {.lex_state = 41, .external_lex_state = 2}, - [760] = {.lex_state = 41, .external_lex_state = 2}, - [761] = {.lex_state = 578}, - [762] = {.lex_state = 41, .external_lex_state = 2}, - [763] = {.lex_state = 578}, - [764] = {.lex_state = 578}, - [765] = {.lex_state = 41, .external_lex_state = 2}, - [766] = {.lex_state = 578}, - [767] = {.lex_state = 578}, - [768] = {.lex_state = 41, .external_lex_state = 2}, - [769] = {.lex_state = 578}, - [770] = {.lex_state = 578}, - [771] = {.lex_state = 578}, - [772] = {.lex_state = 578}, - [773] = {.lex_state = 578}, - [774] = {.lex_state = 578}, - [775] = {.lex_state = 578}, - [776] = {.lex_state = 578}, - [777] = {.lex_state = 578}, - [778] = {.lex_state = 578}, - [779] = {.lex_state = 611}, - [780] = {.lex_state = 578}, - [781] = {.lex_state = 578}, - [782] = {.lex_state = 578}, - [783] = {.lex_state = 578}, - [784] = {.lex_state = 578}, - [785] = {.lex_state = 578}, - [786] = {.lex_state = 603}, - [787] = {.lex_state = 578}, - [788] = {.lex_state = 36, .external_lex_state = 2}, - [789] = {.lex_state = 40, .external_lex_state = 2}, - [790] = {.lex_state = 578}, - [791] = {.lex_state = 601}, - [792] = {.lex_state = 578}, - [793] = {.lex_state = 578}, - [794] = {.lex_state = 578}, - [795] = {.lex_state = 605}, - [796] = {.lex_state = 41, .external_lex_state = 2}, - [797] = {.lex_state = 578}, - [798] = {.lex_state = 578}, - [799] = {.lex_state = 578}, - [800] = {.lex_state = 578}, - [801] = {.lex_state = 578}, - [802] = {.lex_state = 578}, - [803] = {.lex_state = 578}, - [804] = {.lex_state = 578}, - [805] = {.lex_state = 578}, - [806] = {.lex_state = 578}, - [807] = {.lex_state = 578}, - [808] = {.lex_state = 578}, - [809] = {.lex_state = 578}, - [810] = {.lex_state = 578}, - [811] = {.lex_state = 41, .external_lex_state = 2}, - [812] = {.lex_state = 41, .external_lex_state = 2}, - [813] = {.lex_state = 41, .external_lex_state = 2}, - [814] = {.lex_state = 41, .external_lex_state = 2}, - [815] = {.lex_state = 41, .external_lex_state = 2}, - [816] = {.lex_state = 41, .external_lex_state = 2}, - [817] = {.lex_state = 41, .external_lex_state = 2}, - [818] = {.lex_state = 41, .external_lex_state = 2}, - [819] = {.lex_state = 41, .external_lex_state = 2}, - [820] = {.lex_state = 41, .external_lex_state = 2}, - [821] = {.lex_state = 41, .external_lex_state = 2}, - [822] = {.lex_state = 41, .external_lex_state = 2}, - [823] = {.lex_state = 41, .external_lex_state = 2}, - [824] = {.lex_state = 578}, - [825] = {.lex_state = 578}, - [826] = {.lex_state = 40, .external_lex_state = 2}, - [827] = {.lex_state = 578}, - [828] = {.lex_state = 578}, - [829] = {.lex_state = 578}, - [830] = {.lex_state = 578}, - [831] = {.lex_state = 578}, - [832] = {.lex_state = 578}, - [833] = {.lex_state = 578}, - [834] = {.lex_state = 578}, - [835] = {.lex_state = 578}, + [626] = {.lex_state = 40, .external_lex_state = 2}, + [627] = {.lex_state = 40, .external_lex_state = 2}, + [628] = {.lex_state = 40, .external_lex_state = 2}, + [629] = {.lex_state = 40, .external_lex_state = 2}, + [630] = {.lex_state = 40, .external_lex_state = 2}, + [631] = {.lex_state = 40, .external_lex_state = 2}, + [632] = {.lex_state = 40, .external_lex_state = 2}, + [633] = {.lex_state = 40, .external_lex_state = 2}, + [634] = {.lex_state = 40, .external_lex_state = 2}, + [635] = {.lex_state = 40, .external_lex_state = 2}, + [636] = {.lex_state = 40, .external_lex_state = 2}, + [637] = {.lex_state = 40, .external_lex_state = 2}, + [638] = {.lex_state = 40, .external_lex_state = 2}, + [639] = {.lex_state = 40, .external_lex_state = 2}, + [640] = {.lex_state = 40, .external_lex_state = 2}, + [641] = {.lex_state = 40, .external_lex_state = 2}, + [642] = {.lex_state = 39, .external_lex_state = 2}, + [643] = {.lex_state = 40, .external_lex_state = 2}, + [644] = {.lex_state = 40, .external_lex_state = 2}, + [645] = {.lex_state = 40, .external_lex_state = 2}, + [646] = {.lex_state = 40, .external_lex_state = 2}, + [647] = {.lex_state = 40, .external_lex_state = 2}, + [648] = {.lex_state = 40, .external_lex_state = 2}, + [649] = {.lex_state = 40, .external_lex_state = 2}, + [650] = {.lex_state = 40, .external_lex_state = 2}, + [651] = {.lex_state = 40, .external_lex_state = 2}, + [652] = {.lex_state = 40, .external_lex_state = 2}, + [653] = {.lex_state = 40, .external_lex_state = 2}, + [654] = {.lex_state = 40, .external_lex_state = 2}, + [655] = {.lex_state = 40, .external_lex_state = 2}, + [656] = {.lex_state = 40, .external_lex_state = 2}, + [657] = {.lex_state = 40, .external_lex_state = 2}, + [658] = {.lex_state = 40, .external_lex_state = 2}, + [659] = {.lex_state = 40, .external_lex_state = 2}, + [660] = {.lex_state = 40, .external_lex_state = 2}, + [661] = {.lex_state = 40, .external_lex_state = 2}, + [662] = {.lex_state = 40, .external_lex_state = 2}, + [663] = {.lex_state = 40, .external_lex_state = 2}, + [664] = {.lex_state = 40, .external_lex_state = 2}, + [665] = {.lex_state = 40, .external_lex_state = 2}, + [666] = {.lex_state = 40, .external_lex_state = 2}, + [667] = {.lex_state = 40, .external_lex_state = 2}, + [668] = {.lex_state = 40, .external_lex_state = 2}, + [669] = {.lex_state = 40, .external_lex_state = 2}, + [670] = {.lex_state = 40, .external_lex_state = 2}, + [671] = {.lex_state = 40, .external_lex_state = 2}, + [672] = {.lex_state = 579}, + [673] = {.lex_state = 600}, + [674] = {.lex_state = 579}, + [675] = {.lex_state = 600}, + [676] = {.lex_state = 579}, + [677] = {.lex_state = 579}, + [678] = {.lex_state = 579}, + [679] = {.lex_state = 579}, + [680] = {.lex_state = 579}, + [681] = {.lex_state = 602}, + [682] = {.lex_state = 579}, + [683] = {.lex_state = 579}, + [684] = {.lex_state = 579}, + [685] = {.lex_state = 579}, + [686] = {.lex_state = 579}, + [687] = {.lex_state = 579}, + [688] = {.lex_state = 579}, + [689] = {.lex_state = 579}, + [690] = {.lex_state = 579}, + [691] = {.lex_state = 579}, + [692] = {.lex_state = 600}, + [693] = {.lex_state = 579}, + [694] = {.lex_state = 579}, + [695] = {.lex_state = 579}, + [696] = {.lex_state = 612}, + [697] = {.lex_state = 579}, + [698] = {.lex_state = 579}, + [699] = {.lex_state = 600}, + [700] = {.lex_state = 579}, + [701] = {.lex_state = 600}, + [702] = {.lex_state = 579}, + [703] = {.lex_state = 579}, + [704] = {.lex_state = 579}, + [705] = {.lex_state = 579}, + [706] = {.lex_state = 604}, + [707] = {.lex_state = 579}, + [708] = {.lex_state = 579}, + [709] = {.lex_state = 579}, + [710] = {.lex_state = 579}, + [711] = {.lex_state = 579}, + [712] = {.lex_state = 579}, + [713] = {.lex_state = 40, .external_lex_state = 2}, + [714] = {.lex_state = 40, .external_lex_state = 2}, + [715] = {.lex_state = 606}, + [716] = {.lex_state = 604}, + [717] = {.lex_state = 579}, + [718] = {.lex_state = 579}, + [719] = {.lex_state = 40, .external_lex_state = 2}, + [720] = {.lex_state = 40, .external_lex_state = 2}, + [721] = {.lex_state = 40, .external_lex_state = 2}, + [722] = {.lex_state = 579}, + [723] = {.lex_state = 579}, + [724] = {.lex_state = 579}, + [725] = {.lex_state = 579}, + [726] = {.lex_state = 579}, + [727] = {.lex_state = 40, .external_lex_state = 2}, + [728] = {.lex_state = 579}, + [729] = {.lex_state = 579}, + [730] = {.lex_state = 579}, + [731] = {.lex_state = 579}, + [732] = {.lex_state = 579}, + [733] = {.lex_state = 579}, + [734] = {.lex_state = 40, .external_lex_state = 2}, + [735] = {.lex_state = 40, .external_lex_state = 2}, + [736] = {.lex_state = 40, .external_lex_state = 2}, + [737] = {.lex_state = 40, .external_lex_state = 2}, + [738] = {.lex_state = 40, .external_lex_state = 2}, + [739] = {.lex_state = 40, .external_lex_state = 2}, + [740] = {.lex_state = 40, .external_lex_state = 2}, + [741] = {.lex_state = 40, .external_lex_state = 2}, + [742] = {.lex_state = 40, .external_lex_state = 2}, + [743] = {.lex_state = 40, .external_lex_state = 2}, + [744] = {.lex_state = 40, .external_lex_state = 2}, + [745] = {.lex_state = 40, .external_lex_state = 2}, + [746] = {.lex_state = 40, .external_lex_state = 2}, + [747] = {.lex_state = 40, .external_lex_state = 2}, + [748] = {.lex_state = 40, .external_lex_state = 2}, + [749] = {.lex_state = 40, .external_lex_state = 2}, + [750] = {.lex_state = 40, .external_lex_state = 2}, + [751] = {.lex_state = 40, .external_lex_state = 2}, + [752] = {.lex_state = 40, .external_lex_state = 2}, + [753] = {.lex_state = 40, .external_lex_state = 2}, + [754] = {.lex_state = 40, .external_lex_state = 2}, + [755] = {.lex_state = 40, .external_lex_state = 2}, + [756] = {.lex_state = 40, .external_lex_state = 2}, + [757] = {.lex_state = 40, .external_lex_state = 2}, + [758] = {.lex_state = 40, .external_lex_state = 2}, + [759] = {.lex_state = 40, .external_lex_state = 2}, + [760] = {.lex_state = 40, .external_lex_state = 2}, + [761] = {.lex_state = 40, .external_lex_state = 2}, + [762] = {.lex_state = 579}, + [763] = {.lex_state = 579}, + [764] = {.lex_state = 579}, + [765] = {.lex_state = 625, .external_lex_state = 2}, + [766] = {.lex_state = 579}, + [767] = {.lex_state = 579}, + [768] = {.lex_state = 579}, + [769] = {.lex_state = 579}, + [770] = {.lex_state = 579}, + [771] = {.lex_state = 579}, + [772] = {.lex_state = 579}, + [773] = {.lex_state = 579}, + [774] = {.lex_state = 579}, + [775] = {.lex_state = 579}, + [776] = {.lex_state = 579}, + [777] = {.lex_state = 579}, + [778] = {.lex_state = 40, .external_lex_state = 2}, + [779] = {.lex_state = 579}, + [780] = {.lex_state = 579}, + [781] = {.lex_state = 40, .external_lex_state = 2}, + [782] = {.lex_state = 40, .external_lex_state = 2}, + [783] = {.lex_state = 39, .external_lex_state = 2}, + [784] = {.lex_state = 579}, + [785] = {.lex_state = 39, .external_lex_state = 2}, + [786] = {.lex_state = 579}, + [787] = {.lex_state = 579}, + [788] = {.lex_state = 625, .external_lex_state = 2}, + [789] = {.lex_state = 579}, + [790] = {.lex_state = 579}, + [791] = {.lex_state = 579}, + [792] = {.lex_state = 579}, + [793] = {.lex_state = 579}, + [794] = {.lex_state = 40, .external_lex_state = 2}, + [795] = {.lex_state = 579}, + [796] = {.lex_state = 579}, + [797] = {.lex_state = 579}, + [798] = {.lex_state = 40, .external_lex_state = 2}, + [799] = {.lex_state = 579}, + [800] = {.lex_state = 579}, + [801] = {.lex_state = 40, .external_lex_state = 2}, + [802] = {.lex_state = 40, .external_lex_state = 2}, + [803] = {.lex_state = 40, .external_lex_state = 2}, + [804] = {.lex_state = 40, .external_lex_state = 2}, + [805] = {.lex_state = 40, .external_lex_state = 2}, + [806] = {.lex_state = 40, .external_lex_state = 2}, + [807] = {.lex_state = 40, .external_lex_state = 2}, + [808] = {.lex_state = 40, .external_lex_state = 2}, + [809] = {.lex_state = 40, .external_lex_state = 2}, + [810] = {.lex_state = 40, .external_lex_state = 2}, + [811] = {.lex_state = 579}, + [812] = {.lex_state = 579}, + [813] = {.lex_state = 579}, + [814] = {.lex_state = 579}, + [815] = {.lex_state = 579}, + [816] = {.lex_state = 579}, + [817] = {.lex_state = 40, .external_lex_state = 2}, + [818] = {.lex_state = 579}, + [819] = {.lex_state = 579}, + [820] = {.lex_state = 579}, + [821] = {.lex_state = 579}, + [822] = {.lex_state = 579}, + [823] = {.lex_state = 579}, + [824] = {.lex_state = 579}, + [825] = {.lex_state = 40, .external_lex_state = 2}, + [826] = {.lex_state = 579}, + [827] = {.lex_state = 40, .external_lex_state = 2}, + [828] = {.lex_state = 579}, + [829] = {.lex_state = 579}, + [830] = {.lex_state = 579}, + [831] = {.lex_state = 579}, + [832] = {.lex_state = 579}, + [833] = {.lex_state = 40, .external_lex_state = 2}, + [834] = {.lex_state = 579}, + [835] = {.lex_state = 40, .external_lex_state = 2}, [836] = {.lex_state = 40, .external_lex_state = 2}, [837] = {.lex_state = 40, .external_lex_state = 2}, - [838] = {.lex_state = 41, .external_lex_state = 2}, - [839] = {.lex_state = 41, .external_lex_state = 2}, - [840] = {.lex_state = 41, .external_lex_state = 2}, - [841] = {.lex_state = 41, .external_lex_state = 2}, - [842] = {.lex_state = 41, .external_lex_state = 2}, - [843] = {.lex_state = 41, .external_lex_state = 2}, - [844] = {.lex_state = 41, .external_lex_state = 2}, - [845] = {.lex_state = 41, .external_lex_state = 2}, - [846] = {.lex_state = 41, .external_lex_state = 2}, - [847] = {.lex_state = 41, .external_lex_state = 2}, - [848] = {.lex_state = 41, .external_lex_state = 2}, - [849] = {.lex_state = 41, .external_lex_state = 2}, - [850] = {.lex_state = 41, .external_lex_state = 2}, - [851] = {.lex_state = 578}, - [852] = {.lex_state = 578}, - [853] = {.lex_state = 578}, - [854] = {.lex_state = 578}, - [855] = {.lex_state = 578}, - [856] = {.lex_state = 578}, - [857] = {.lex_state = 578}, - [858] = {.lex_state = 578}, - [859] = {.lex_state = 578}, - [860] = {.lex_state = 578}, - [861] = {.lex_state = 578}, - [862] = {.lex_state = 578}, - [863] = {.lex_state = 578}, - [864] = {.lex_state = 578}, - [865] = {.lex_state = 41, .external_lex_state = 2}, - [866] = {.lex_state = 41, .external_lex_state = 2}, - [867] = {.lex_state = 41, .external_lex_state = 2}, - [868] = {.lex_state = 41, .external_lex_state = 2}, - [869] = {.lex_state = 41, .external_lex_state = 2}, - [870] = {.lex_state = 41, .external_lex_state = 2}, - [871] = {.lex_state = 41, .external_lex_state = 2}, - [872] = {.lex_state = 41, .external_lex_state = 2}, - [873] = {.lex_state = 41, .external_lex_state = 2}, - [874] = {.lex_state = 41, .external_lex_state = 2}, - [875] = {.lex_state = 41, .external_lex_state = 2}, - [876] = {.lex_state = 41, .external_lex_state = 2}, - [877] = {.lex_state = 41, .external_lex_state = 2}, - [878] = {.lex_state = 40, .external_lex_state = 2}, - [879] = {.lex_state = 40, .external_lex_state = 2}, - [880] = {.lex_state = 41, .external_lex_state = 2}, - [881] = {.lex_state = 36, .external_lex_state = 2}, - [882] = {.lex_state = 41, .external_lex_state = 2}, - [883] = {.lex_state = 41, .external_lex_state = 2}, - [884] = {.lex_state = 41, .external_lex_state = 2}, - [885] = {.lex_state = 36, .external_lex_state = 2}, - [886] = {.lex_state = 607}, - [887] = {.lex_state = 578}, - [888] = {.lex_state = 578}, - [889] = {.lex_state = 41, .external_lex_state = 2}, - [890] = {.lex_state = 41, .external_lex_state = 2}, - [891] = {.lex_state = 41, .external_lex_state = 2}, - [892] = {.lex_state = 41, .external_lex_state = 2}, - [893] = {.lex_state = 41, .external_lex_state = 2}, - [894] = {.lex_state = 41, .external_lex_state = 2}, - [895] = {.lex_state = 605}, - [896] = {.lex_state = 578}, - [897] = {.lex_state = 578}, - [898] = {.lex_state = 578}, - [899] = {.lex_state = 578}, - [900] = {.lex_state = 578}, - [901] = {.lex_state = 578}, - [902] = {.lex_state = 578}, - [903] = {.lex_state = 578}, - [904] = {.lex_state = 578}, - [905] = {.lex_state = 607}, - [906] = {.lex_state = 578}, - [907] = {.lex_state = 607}, - [908] = {.lex_state = 607}, - [909] = {.lex_state = 578}, - [910] = {.lex_state = 578}, - [911] = {.lex_state = 578}, - [912] = {.lex_state = 36, .external_lex_state = 2}, - [913] = {.lex_state = 578}, - [914] = {.lex_state = 578}, - [915] = {.lex_state = 578}, - [916] = {.lex_state = 578}, - [917] = {.lex_state = 578}, - [918] = {.lex_state = 578}, - [919] = {.lex_state = 578}, - [920] = {.lex_state = 578}, - [921] = {.lex_state = 50, .external_lex_state = 2}, - [922] = {.lex_state = 578}, - [923] = {.lex_state = 578}, - [924] = {.lex_state = 578}, - [925] = {.lex_state = 578}, - [926] = {.lex_state = 578}, - [927] = {.lex_state = 578}, - [928] = {.lex_state = 578}, - [929] = {.lex_state = 578}, - [930] = {.lex_state = 578}, - [931] = {.lex_state = 607}, - [932] = {.lex_state = 578}, - [933] = {.lex_state = 578}, - [934] = {.lex_state = 578}, - [935] = {.lex_state = 578}, - [936] = {.lex_state = 578}, - [937] = {.lex_state = 607}, - [938] = {.lex_state = 578}, - [939] = {.lex_state = 578}, - [940] = {.lex_state = 605}, - [941] = {.lex_state = 607}, - [942] = {.lex_state = 578}, - [943] = {.lex_state = 578}, - [944] = {.lex_state = 578}, - [945] = {.lex_state = 578}, - [946] = {.lex_state = 578}, - [947] = {.lex_state = 578}, - [948] = {.lex_state = 607}, - [949] = {.lex_state = 578}, - [950] = {.lex_state = 578}, - [951] = {.lex_state = 578}, - [952] = {.lex_state = 578}, - [953] = {.lex_state = 578}, - [954] = {.lex_state = 607}, - [955] = {.lex_state = 578}, - [956] = {.lex_state = 578}, - [957] = {.lex_state = 605}, - [958] = {.lex_state = 607}, - [959] = {.lex_state = 607}, - [960] = {.lex_state = 607}, - [961] = {.lex_state = 607}, - [962] = {.lex_state = 50, .external_lex_state = 2}, - [963] = {.lex_state = 50, .external_lex_state = 2}, - [964] = {.lex_state = 36, .external_lex_state = 2}, - [965] = {.lex_state = 36, .external_lex_state = 2}, - [966] = {.lex_state = 36, .external_lex_state = 2}, - [967] = {.lex_state = 607}, - [968] = {.lex_state = 578}, - [969] = {.lex_state = 578}, - [970] = {.lex_state = 607}, - [971] = {.lex_state = 47, .external_lex_state = 2}, - [972] = {.lex_state = 578}, - [973] = {.lex_state = 607}, - [974] = {.lex_state = 578}, - [975] = {.lex_state = 607}, - [976] = {.lex_state = 50, .external_lex_state = 2}, - [977] = {.lex_state = 50, .external_lex_state = 2}, - [978] = {.lex_state = 622, .external_lex_state = 2}, - [979] = {.lex_state = 578}, - [980] = {.lex_state = 578}, - [981] = {.lex_state = 578}, - [982] = {.lex_state = 578}, - [983] = {.lex_state = 578}, - [984] = {.lex_state = 578}, - [985] = {.lex_state = 41, .external_lex_state = 2}, - [986] = {.lex_state = 578}, - [987] = {.lex_state = 41, .external_lex_state = 2}, - [988] = {.lex_state = 41, .external_lex_state = 2}, - [989] = {.lex_state = 578}, - [990] = {.lex_state = 578}, - [991] = {.lex_state = 578}, - [992] = {.lex_state = 578}, - [993] = {.lex_state = 578}, - [994] = {.lex_state = 578}, - [995] = {.lex_state = 578}, - [996] = {.lex_state = 578}, - [997] = {.lex_state = 578}, - [998] = {.lex_state = 578}, - [999] = {.lex_state = 578}, - [1000] = {.lex_state = 578}, - [1001] = {.lex_state = 578}, - [1002] = {.lex_state = 578}, - [1003] = {.lex_state = 578}, - [1004] = {.lex_state = 578}, - [1005] = {.lex_state = 622, .external_lex_state = 2}, - [1006] = {.lex_state = 578}, - [1007] = {.lex_state = 578}, - [1008] = {.lex_state = 578}, - [1009] = {.lex_state = 578}, - [1010] = {.lex_state = 578}, - [1011] = {.lex_state = 578}, - [1012] = {.lex_state = 578}, - [1013] = {.lex_state = 578}, - [1014] = {.lex_state = 578}, - [1015] = {.lex_state = 578}, - [1016] = {.lex_state = 578}, - [1017] = {.lex_state = 578}, - [1018] = {.lex_state = 578}, - [1019] = {.lex_state = 578}, - [1020] = {.lex_state = 578}, - [1021] = {.lex_state = 47, .external_lex_state = 2}, - [1022] = {.lex_state = 578}, - [1023] = {.lex_state = 578}, - [1024] = {.lex_state = 578}, - [1025] = {.lex_state = 607}, - [1026] = {.lex_state = 607}, - [1027] = {.lex_state = 578}, - [1028] = {.lex_state = 607}, - [1029] = {.lex_state = 578}, - [1030] = {.lex_state = 578}, - [1031] = {.lex_state = 578}, - [1032] = {.lex_state = 578}, - [1033] = {.lex_state = 578}, - [1034] = {.lex_state = 578}, - [1035] = {.lex_state = 578}, - [1036] = {.lex_state = 578}, - [1037] = {.lex_state = 578}, - [1038] = {.lex_state = 578}, - [1039] = {.lex_state = 578}, - [1040] = {.lex_state = 578}, - [1041] = {.lex_state = 578}, - [1042] = {.lex_state = 578}, - [1043] = {.lex_state = 609}, - [1044] = {.lex_state = 578}, - [1045] = {.lex_state = 578}, - [1046] = {.lex_state = 578}, - [1047] = {.lex_state = 607}, - [1048] = {.lex_state = 578}, - [1049] = {.lex_state = 607}, - [1050] = {.lex_state = 607}, - [1051] = {.lex_state = 578}, - [1052] = {.lex_state = 578}, - [1053] = {.lex_state = 578}, - [1054] = {.lex_state = 578}, - [1055] = {.lex_state = 578}, - [1056] = {.lex_state = 578}, - [1057] = {.lex_state = 578}, - [1058] = {.lex_state = 578}, - [1059] = {.lex_state = 578}, - [1060] = {.lex_state = 578}, - [1061] = {.lex_state = 578}, - [1062] = {.lex_state = 578}, - [1063] = {.lex_state = 607}, - [1064] = {.lex_state = 578}, - [1065] = {.lex_state = 578}, - [1066] = {.lex_state = 578}, - [1067] = {.lex_state = 578}, - [1068] = {.lex_state = 607}, - [1069] = {.lex_state = 578}, - [1070] = {.lex_state = 578}, - [1071] = {.lex_state = 578}, - [1072] = {.lex_state = 578}, - [1073] = {.lex_state = 578}, - [1074] = {.lex_state = 578}, - [1075] = {.lex_state = 578}, - [1076] = {.lex_state = 578}, - [1077] = {.lex_state = 578}, - [1078] = {.lex_state = 578}, - [1079] = {.lex_state = 578}, - [1080] = {.lex_state = 578}, - [1081] = {.lex_state = 578}, - [1082] = {.lex_state = 578}, - [1083] = {.lex_state = 607}, - [1084] = {.lex_state = 578}, - [1085] = {.lex_state = 578}, - [1086] = {.lex_state = 578}, - [1087] = {.lex_state = 578}, - [1088] = {.lex_state = 578}, - [1089] = {.lex_state = 578}, - [1090] = {.lex_state = 607}, - [1091] = {.lex_state = 578}, - [1092] = {.lex_state = 578}, - [1093] = {.lex_state = 578}, - [1094] = {.lex_state = 578}, - [1095] = {.lex_state = 578}, - [1096] = {.lex_state = 578}, - [1097] = {.lex_state = 578}, - [1098] = {.lex_state = 578}, - [1099] = {.lex_state = 578}, - [1100] = {.lex_state = 578}, - [1101] = {.lex_state = 578}, - [1102] = {.lex_state = 578}, - [1103] = {.lex_state = 578}, - [1104] = {.lex_state = 578}, - [1105] = {.lex_state = 578}, - [1106] = {.lex_state = 578}, - [1107] = {.lex_state = 578}, - [1108] = {.lex_state = 578}, - [1109] = {.lex_state = 41, .external_lex_state = 2}, - [1110] = {.lex_state = 41, .external_lex_state = 2}, - [1111] = {.lex_state = 41, .external_lex_state = 2}, - [1112] = {.lex_state = 609}, - [1113] = {.lex_state = 609}, - [1114] = {.lex_state = 609}, - [1115] = {.lex_state = 578}, - [1116] = {.lex_state = 578}, - [1117] = {.lex_state = 36, .external_lex_state = 2}, - [1118] = {.lex_state = 36, .external_lex_state = 2}, - [1119] = {.lex_state = 578}, - [1120] = {.lex_state = 578}, - [1121] = {.lex_state = 578}, - [1122] = {.lex_state = 611}, - [1123] = {.lex_state = 578}, - [1124] = {.lex_state = 578}, - [1125] = {.lex_state = 47, .external_lex_state = 2}, - [1126] = {.lex_state = 578}, - [1127] = {.lex_state = 578}, - [1128] = {.lex_state = 578}, - [1129] = {.lex_state = 622, .external_lex_state = 2}, - [1130] = {.lex_state = 578}, - [1131] = {.lex_state = 578}, - [1132] = {.lex_state = 578}, - [1133] = {.lex_state = 578}, - [1134] = {.lex_state = 578}, - [1135] = {.lex_state = 578}, - [1136] = {.lex_state = 578}, - [1137] = {.lex_state = 578}, - [1138] = {.lex_state = 578}, - [1139] = {.lex_state = 578}, - [1140] = {.lex_state = 578}, - [1141] = {.lex_state = 578}, - [1142] = {.lex_state = 578}, - [1143] = {.lex_state = 578}, - [1144] = {.lex_state = 578}, - [1145] = {.lex_state = 578}, - [1146] = {.lex_state = 578}, - [1147] = {.lex_state = 578}, - [1148] = {.lex_state = 578}, - [1149] = {.lex_state = 46, .external_lex_state = 2}, - [1150] = {.lex_state = 578}, - [1151] = {.lex_state = 46, .external_lex_state = 2}, - [1152] = {.lex_state = 578}, - [1153] = {.lex_state = 578}, - [1154] = {.lex_state = 578}, - [1155] = {.lex_state = 578}, - [1156] = {.lex_state = 578}, - [1157] = {.lex_state = 578}, - [1158] = {.lex_state = 578}, - [1159] = {.lex_state = 578}, - [1160] = {.lex_state = 578}, - [1161] = {.lex_state = 578}, - [1162] = {.lex_state = 578}, - [1163] = {.lex_state = 609}, - [1164] = {.lex_state = 578}, - [1165] = {.lex_state = 578}, - [1166] = {.lex_state = 578}, - [1167] = {.lex_state = 578}, - [1168] = {.lex_state = 578}, - [1169] = {.lex_state = 578}, - [1170] = {.lex_state = 578}, - [1171] = {.lex_state = 578}, - [1172] = {.lex_state = 609}, - [1173] = {.lex_state = 578}, - [1174] = {.lex_state = 578}, - [1175] = {.lex_state = 578}, - [1176] = {.lex_state = 578}, - [1177] = {.lex_state = 578}, - [1178] = {.lex_state = 578}, - [1179] = {.lex_state = 578}, - [1180] = {.lex_state = 578}, - [1181] = {.lex_state = 578}, - [1182] = {.lex_state = 578}, - [1183] = {.lex_state = 578}, - [1184] = {.lex_state = 578}, - [1185] = {.lex_state = 578}, - [1186] = {.lex_state = 578}, - [1187] = {.lex_state = 578}, - [1188] = {.lex_state = 578}, - [1189] = {.lex_state = 578}, - [1190] = {.lex_state = 578}, - [1191] = {.lex_state = 578}, - [1192] = {.lex_state = 578}, - [1193] = {.lex_state = 578}, - [1194] = {.lex_state = 578}, - [1195] = {.lex_state = 578}, - [1196] = {.lex_state = 578}, - [1197] = {.lex_state = 578}, - [1198] = {.lex_state = 578}, - [1199] = {.lex_state = 578}, - [1200] = {.lex_state = 578}, - [1201] = {.lex_state = 578}, - [1202] = {.lex_state = 578}, - [1203] = {.lex_state = 578}, - [1204] = {.lex_state = 578}, - [1205] = {.lex_state = 607}, - [1206] = {.lex_state = 578}, - [1207] = {.lex_state = 609}, - [1208] = {.lex_state = 578}, - [1209] = {.lex_state = 578}, - [1210] = {.lex_state = 578}, - [1211] = {.lex_state = 578}, - [1212] = {.lex_state = 578}, - [1213] = {.lex_state = 578}, - [1214] = {.lex_state = 578}, - [1215] = {.lex_state = 578}, - [1216] = {.lex_state = 578}, - [1217] = {.lex_state = 578}, - [1218] = {.lex_state = 578}, - [1219] = {.lex_state = 578}, - [1220] = {.lex_state = 578}, - [1221] = {.lex_state = 578}, - [1222] = {.lex_state = 578}, - [1223] = {.lex_state = 578}, - [1224] = {.lex_state = 578}, - [1225] = {.lex_state = 578}, - [1226] = {.lex_state = 578}, - [1227] = {.lex_state = 578}, - [1228] = {.lex_state = 578}, - [1229] = {.lex_state = 578}, - [1230] = {.lex_state = 50, .external_lex_state = 2}, - [1231] = {.lex_state = 578}, - [1232] = {.lex_state = 50, .external_lex_state = 2}, - [1233] = {.lex_state = 578}, - [1234] = {.lex_state = 578}, - [1235] = {.lex_state = 578}, - [1236] = {.lex_state = 578}, - [1237] = {.lex_state = 46, .external_lex_state = 2}, - [1238] = {.lex_state = 578}, - [1239] = {.lex_state = 609}, - [1240] = {.lex_state = 50, .external_lex_state = 2}, - [1241] = {.lex_state = 578}, - [1242] = {.lex_state = 609}, - [1243] = {.lex_state = 578}, - [1244] = {.lex_state = 578}, - [1245] = {.lex_state = 578}, - [1246] = {.lex_state = 578}, - [1247] = {.lex_state = 578}, - [1248] = {.lex_state = 578}, - [1249] = {.lex_state = 578}, - [1250] = {.lex_state = 578}, - [1251] = {.lex_state = 578}, - [1252] = {.lex_state = 31, .external_lex_state = 2}, - [1253] = {.lex_state = 578}, - [1254] = {.lex_state = 578}, - [1255] = {.lex_state = 578}, - [1256] = {.lex_state = 50, .external_lex_state = 2}, - [1257] = {.lex_state = 50, .external_lex_state = 2}, - [1258] = {.lex_state = 50, .external_lex_state = 2}, - [1259] = {.lex_state = 50, .external_lex_state = 2}, - [1260] = {.lex_state = 46, .external_lex_state = 2}, - [1261] = {.lex_state = 578}, - [1262] = {.lex_state = 578}, - [1263] = {.lex_state = 578}, - [1264] = {.lex_state = 578}, - [1265] = {.lex_state = 578}, - [1266] = {.lex_state = 578}, - [1267] = {.lex_state = 578}, - [1268] = {.lex_state = 578}, - [1269] = {.lex_state = 578}, - [1270] = {.lex_state = 578}, - [1271] = {.lex_state = 578}, - [1272] = {.lex_state = 578}, - [1273] = {.lex_state = 578}, - [1274] = {.lex_state = 578}, - [1275] = {.lex_state = 622, .external_lex_state = 2}, - [1276] = {.lex_state = 578}, - [1277] = {.lex_state = 578}, - [1278] = {.lex_state = 578}, - [1279] = {.lex_state = 578}, - [1280] = {.lex_state = 578}, - [1281] = {.lex_state = 578}, - [1282] = {.lex_state = 578}, - [1283] = {.lex_state = 578}, - [1284] = {.lex_state = 578}, - [1285] = {.lex_state = 578}, - [1286] = {.lex_state = 578}, - [1287] = {.lex_state = 45, .external_lex_state = 2}, - [1288] = {.lex_state = 578}, - [1289] = {.lex_state = 578}, - [1290] = {.lex_state = 578}, - [1291] = {.lex_state = 45, .external_lex_state = 2}, - [1292] = {.lex_state = 578}, - [1293] = {.lex_state = 578}, - [1294] = {.lex_state = 578}, - [1295] = {.lex_state = 578}, - [1296] = {.lex_state = 578}, - [1297] = {.lex_state = 578}, - [1298] = {.lex_state = 578}, - [1299] = {.lex_state = 578}, - [1300] = {.lex_state = 578}, - [1301] = {.lex_state = 578}, - [1302] = {.lex_state = 578}, - [1303] = {.lex_state = 578}, - [1304] = {.lex_state = 578}, - [1305] = {.lex_state = 578}, - [1306] = {.lex_state = 578}, - [1307] = {.lex_state = 578}, - [1308] = {.lex_state = 578}, - [1309] = {.lex_state = 578}, - [1310] = {.lex_state = 578}, - [1311] = {.lex_state = 578}, - [1312] = {.lex_state = 578}, - [1313] = {.lex_state = 578}, - [1314] = {.lex_state = 578}, - [1315] = {.lex_state = 578}, - [1316] = {.lex_state = 578}, - [1317] = {.lex_state = 578}, - [1318] = {.lex_state = 578}, - [1319] = {.lex_state = 578}, - [1320] = {.lex_state = 578}, - [1321] = {.lex_state = 578}, - [1322] = {.lex_state = 578}, - [1323] = {.lex_state = 578}, - [1324] = {.lex_state = 578}, - [1325] = {.lex_state = 578}, - [1326] = {.lex_state = 578}, - [1327] = {.lex_state = 578}, - [1328] = {.lex_state = 622, .external_lex_state = 2}, - [1329] = {.lex_state = 45, .external_lex_state = 2}, - [1330] = {.lex_state = 578}, - [1331] = {.lex_state = 45, .external_lex_state = 2}, - [1332] = {.lex_state = 578}, - [1333] = {.lex_state = 578}, - [1334] = {.lex_state = 578}, - [1335] = {.lex_state = 578}, - [1336] = {.lex_state = 578}, - [1337] = {.lex_state = 578}, - [1338] = {.lex_state = 622, .external_lex_state = 2}, - [1339] = {.lex_state = 578}, - [1340] = {.lex_state = 578}, - [1341] = {.lex_state = 578}, - [1342] = {.lex_state = 578}, - [1343] = {.lex_state = 578}, - [1344] = {.lex_state = 578}, - [1345] = {.lex_state = 578}, - [1346] = {.lex_state = 174, .external_lex_state = 2}, - [1347] = {.lex_state = 46, .external_lex_state = 2}, - [1348] = {.lex_state = 175, .external_lex_state = 2}, - [1349] = {.lex_state = 175, .external_lex_state = 2}, + [838] = {.lex_state = 40, .external_lex_state = 2}, + [839] = {.lex_state = 40, .external_lex_state = 2}, + [840] = {.lex_state = 40, .external_lex_state = 2}, + [841] = {.lex_state = 40, .external_lex_state = 2}, + [842] = {.lex_state = 40, .external_lex_state = 2}, + [843] = {.lex_state = 40, .external_lex_state = 2}, + [844] = {.lex_state = 40, .external_lex_state = 2}, + [845] = {.lex_state = 40, .external_lex_state = 2}, + [846] = {.lex_state = 40, .external_lex_state = 2}, + [847] = {.lex_state = 40, .external_lex_state = 2}, + [848] = {.lex_state = 40, .external_lex_state = 2}, + [849] = {.lex_state = 40, .external_lex_state = 2}, + [850] = {.lex_state = 39, .external_lex_state = 2}, + [851] = {.lex_state = 579}, + [852] = {.lex_state = 579}, + [853] = {.lex_state = 579}, + [854] = {.lex_state = 625, .external_lex_state = 2}, + [855] = {.lex_state = 579}, + [856] = {.lex_state = 579}, + [857] = {.lex_state = 40, .external_lex_state = 2}, + [858] = {.lex_state = 579}, + [859] = {.lex_state = 40, .external_lex_state = 2}, + [860] = {.lex_state = 579}, + [861] = {.lex_state = 579}, + [862] = {.lex_state = 579}, + [863] = {.lex_state = 40, .external_lex_state = 2}, + [864] = {.lex_state = 579}, + [865] = {.lex_state = 40, .external_lex_state = 2}, + [866] = {.lex_state = 579}, + [867] = {.lex_state = 579}, + [868] = {.lex_state = 579}, + [869] = {.lex_state = 579}, + [870] = {.lex_state = 579}, + [871] = {.lex_state = 39, .external_lex_state = 2}, + [872] = {.lex_state = 579}, + [873] = {.lex_state = 612}, + [874] = {.lex_state = 39, .external_lex_state = 2}, + [875] = {.lex_state = 579}, + [876] = {.lex_state = 579}, + [877] = {.lex_state = 40, .external_lex_state = 2}, + [878] = {.lex_state = 579}, + [879] = {.lex_state = 602}, + [880] = {.lex_state = 40, .external_lex_state = 2}, + [881] = {.lex_state = 40, .external_lex_state = 2}, + [882] = {.lex_state = 40, .external_lex_state = 2}, + [883] = {.lex_state = 579}, + [884] = {.lex_state = 579}, + [885] = {.lex_state = 40, .external_lex_state = 2}, + [886] = {.lex_state = 579}, + [887] = {.lex_state = 40, .external_lex_state = 2}, + [888] = {.lex_state = 579}, + [889] = {.lex_state = 39, .external_lex_state = 2}, + [890] = {.lex_state = 608}, + [891] = {.lex_state = 606}, + [892] = {.lex_state = 579}, + [893] = {.lex_state = 579}, + [894] = {.lex_state = 579}, + [895] = {.lex_state = 579}, + [896] = {.lex_state = 579}, + [897] = {.lex_state = 579}, + [898] = {.lex_state = 608}, + [899] = {.lex_state = 579}, + [900] = {.lex_state = 625, .external_lex_state = 2}, + [901] = {.lex_state = 579}, + [902] = {.lex_state = 608}, + [903] = {.lex_state = 579}, + [904] = {.lex_state = 579}, + [905] = {.lex_state = 579}, + [906] = {.lex_state = 579}, + [907] = {.lex_state = 579}, + [908] = {.lex_state = 579}, + [909] = {.lex_state = 606}, + [910] = {.lex_state = 579}, + [911] = {.lex_state = 579}, + [912] = {.lex_state = 579}, + [913] = {.lex_state = 625, .external_lex_state = 2}, + [914] = {.lex_state = 579}, + [915] = {.lex_state = 579}, + [916] = {.lex_state = 579}, + [917] = {.lex_state = 579}, + [918] = {.lex_state = 608}, + [919] = {.lex_state = 608}, + [920] = {.lex_state = 579}, + [921] = {.lex_state = 579}, + [922] = {.lex_state = 608}, + [923] = {.lex_state = 608}, + [924] = {.lex_state = 579}, + [925] = {.lex_state = 608}, + [926] = {.lex_state = 579}, + [927] = {.lex_state = 579}, + [928] = {.lex_state = 579}, + [929] = {.lex_state = 579}, + [930] = {.lex_state = 579}, + [931] = {.lex_state = 579}, + [932] = {.lex_state = 579}, + [933] = {.lex_state = 579}, + [934] = {.lex_state = 579}, + [935] = {.lex_state = 608}, + [936] = {.lex_state = 579}, + [937] = {.lex_state = 579}, + [938] = {.lex_state = 579}, + [939] = {.lex_state = 579}, + [940] = {.lex_state = 579}, + [941] = {.lex_state = 606}, + [942] = {.lex_state = 579}, + [943] = {.lex_state = 579}, + [944] = {.lex_state = 608}, + [945] = {.lex_state = 579}, + [946] = {.lex_state = 579}, + [947] = {.lex_state = 579}, + [948] = {.lex_state = 608}, + [949] = {.lex_state = 579}, + [950] = {.lex_state = 49, .external_lex_state = 2}, + [951] = {.lex_state = 49, .external_lex_state = 2}, + [952] = {.lex_state = 579}, + [953] = {.lex_state = 579}, + [954] = {.lex_state = 579}, + [955] = {.lex_state = 579}, + [956] = {.lex_state = 579}, + [957] = {.lex_state = 579}, + [958] = {.lex_state = 579}, + [959] = {.lex_state = 579}, + [960] = {.lex_state = 608}, + [961] = {.lex_state = 608}, + [962] = {.lex_state = 579}, + [963] = {.lex_state = 49, .external_lex_state = 2}, + [964] = {.lex_state = 579}, + [965] = {.lex_state = 579}, + [966] = {.lex_state = 579}, + [967] = {.lex_state = 579}, + [968] = {.lex_state = 579}, + [969] = {.lex_state = 579}, + [970] = {.lex_state = 40, .external_lex_state = 2}, + [971] = {.lex_state = 579}, + [972] = {.lex_state = 608}, + [973] = {.lex_state = 608}, + [974] = {.lex_state = 608}, + [975] = {.lex_state = 579}, + [976] = {.lex_state = 40, .external_lex_state = 2}, + [977] = {.lex_state = 579}, + [978] = {.lex_state = 579}, + [979] = {.lex_state = 608}, + [980] = {.lex_state = 40, .external_lex_state = 2}, + [981] = {.lex_state = 579}, + [982] = {.lex_state = 608}, + [983] = {.lex_state = 608}, + [984] = {.lex_state = 579}, + [985] = {.lex_state = 579}, + [986] = {.lex_state = 579}, + [987] = {.lex_state = 608}, + [988] = {.lex_state = 579}, + [989] = {.lex_state = 608}, + [990] = {.lex_state = 579}, + [991] = {.lex_state = 579}, + [992] = {.lex_state = 579}, + [993] = {.lex_state = 608}, + [994] = {.lex_state = 608}, + [995] = {.lex_state = 579}, + [996] = {.lex_state = 579}, + [997] = {.lex_state = 579}, + [998] = {.lex_state = 579}, + [999] = {.lex_state = 579}, + [1000] = {.lex_state = 579}, + [1001] = {.lex_state = 579}, + [1002] = {.lex_state = 579}, + [1003] = {.lex_state = 579}, + [1004] = {.lex_state = 579}, + [1005] = {.lex_state = 625, .external_lex_state = 2}, + [1006] = {.lex_state = 579}, + [1007] = {.lex_state = 625, .external_lex_state = 2}, + [1008] = {.lex_state = 579}, + [1009] = {.lex_state = 579}, + [1010] = {.lex_state = 625, .external_lex_state = 2}, + [1011] = {.lex_state = 623, .external_lex_state = 2}, + [1012] = {.lex_state = 579}, + [1013] = {.lex_state = 579}, + [1014] = {.lex_state = 579}, + [1015] = {.lex_state = 608}, + [1016] = {.lex_state = 579}, + [1017] = {.lex_state = 579}, + [1018] = {.lex_state = 579}, + [1019] = {.lex_state = 579}, + [1020] = {.lex_state = 579}, + [1021] = {.lex_state = 579}, + [1022] = {.lex_state = 608}, + [1023] = {.lex_state = 579}, + [1024] = {.lex_state = 608}, + [1025] = {.lex_state = 579}, + [1026] = {.lex_state = 579}, + [1027] = {.lex_state = 608}, + [1028] = {.lex_state = 579}, + [1029] = {.lex_state = 579}, + [1030] = {.lex_state = 579}, + [1031] = {.lex_state = 579}, + [1032] = {.lex_state = 579}, + [1033] = {.lex_state = 579}, + [1034] = {.lex_state = 579}, + [1035] = {.lex_state = 579}, + [1036] = {.lex_state = 579}, + [1037] = {.lex_state = 579}, + [1038] = {.lex_state = 579}, + [1039] = {.lex_state = 579}, + [1040] = {.lex_state = 579}, + [1041] = {.lex_state = 579}, + [1042] = {.lex_state = 579}, + [1043] = {.lex_state = 579}, + [1044] = {.lex_state = 579}, + [1045] = {.lex_state = 579}, + [1046] = {.lex_state = 579}, + [1047] = {.lex_state = 579}, + [1048] = {.lex_state = 579}, + [1049] = {.lex_state = 579}, + [1050] = {.lex_state = 579}, + [1051] = {.lex_state = 579}, + [1052] = {.lex_state = 579}, + [1053] = {.lex_state = 579}, + [1054] = {.lex_state = 579}, + [1055] = {.lex_state = 579}, + [1056] = {.lex_state = 579}, + [1057] = {.lex_state = 579}, + [1058] = {.lex_state = 579}, + [1059] = {.lex_state = 579}, + [1060] = {.lex_state = 579}, + [1061] = {.lex_state = 579}, + [1062] = {.lex_state = 579}, + [1063] = {.lex_state = 579}, + [1064] = {.lex_state = 579}, + [1065] = {.lex_state = 579}, + [1066] = {.lex_state = 579}, + [1067] = {.lex_state = 579}, + [1068] = {.lex_state = 579}, + [1069] = {.lex_state = 579}, + [1070] = {.lex_state = 579}, + [1071] = {.lex_state = 579}, + [1072] = {.lex_state = 579}, + [1073] = {.lex_state = 579}, + [1074] = {.lex_state = 579}, + [1075] = {.lex_state = 579}, + [1076] = {.lex_state = 579}, + [1077] = {.lex_state = 579}, + [1078] = {.lex_state = 46, .external_lex_state = 2}, + [1079] = {.lex_state = 49, .external_lex_state = 2}, + [1080] = {.lex_state = 579}, + [1081] = {.lex_state = 579}, + [1082] = {.lex_state = 579}, + [1083] = {.lex_state = 579}, + [1084] = {.lex_state = 579}, + [1085] = {.lex_state = 579}, + [1086] = {.lex_state = 579}, + [1087] = {.lex_state = 579}, + [1088] = {.lex_state = 579}, + [1089] = {.lex_state = 579}, + [1090] = {.lex_state = 579}, + [1091] = {.lex_state = 579}, + [1092] = {.lex_state = 579}, + [1093] = {.lex_state = 579}, + [1094] = {.lex_state = 49, .external_lex_state = 2}, + [1095] = {.lex_state = 610}, + [1096] = {.lex_state = 610}, + [1097] = {.lex_state = 610}, + [1098] = {.lex_state = 610}, + [1099] = {.lex_state = 46, .external_lex_state = 2}, + [1100] = {.lex_state = 612}, + [1101] = {.lex_state = 579}, + [1102] = {.lex_state = 579}, + [1103] = {.lex_state = 579}, + [1104] = {.lex_state = 579}, + [1105] = {.lex_state = 579}, + [1106] = {.lex_state = 579}, + [1107] = {.lex_state = 579}, + [1108] = {.lex_state = 623, .external_lex_state = 2}, + [1109] = {.lex_state = 579}, + [1110] = {.lex_state = 579}, + [1111] = {.lex_state = 579}, + [1112] = {.lex_state = 40, .external_lex_state = 2}, + [1113] = {.lex_state = 40, .external_lex_state = 2}, + [1114] = {.lex_state = 40, .external_lex_state = 2}, + [1115] = {.lex_state = 579}, + [1116] = {.lex_state = 579}, + [1117] = {.lex_state = 579}, + [1118] = {.lex_state = 579}, + [1119] = {.lex_state = 625, .external_lex_state = 2}, + [1120] = {.lex_state = 579}, + [1121] = {.lex_state = 579}, + [1122] = {.lex_state = 579}, + [1123] = {.lex_state = 579}, + [1124] = {.lex_state = 579}, + [1125] = {.lex_state = 579}, + [1126] = {.lex_state = 46, .external_lex_state = 2}, + [1127] = {.lex_state = 579}, + [1128] = {.lex_state = 579}, + [1129] = {.lex_state = 623, .external_lex_state = 2}, + [1130] = {.lex_state = 579}, + [1131] = {.lex_state = 579}, + [1132] = {.lex_state = 49, .external_lex_state = 2}, + [1133] = {.lex_state = 49, .external_lex_state = 2}, + [1134] = {.lex_state = 579}, + [1135] = {.lex_state = 579}, + [1136] = {.lex_state = 579}, + [1137] = {.lex_state = 579}, + [1138] = {.lex_state = 579}, + [1139] = {.lex_state = 579}, + [1140] = {.lex_state = 579}, + [1141] = {.lex_state = 579}, + [1142] = {.lex_state = 579}, + [1143] = {.lex_state = 579}, + [1144] = {.lex_state = 579}, + [1145] = {.lex_state = 579}, + [1146] = {.lex_state = 579}, + [1147] = {.lex_state = 579}, + [1148] = {.lex_state = 579}, + [1149] = {.lex_state = 579}, + [1150] = {.lex_state = 579}, + [1151] = {.lex_state = 579}, + [1152] = {.lex_state = 579}, + [1153] = {.lex_state = 579}, + [1154] = {.lex_state = 579}, + [1155] = {.lex_state = 579}, + [1156] = {.lex_state = 579}, + [1157] = {.lex_state = 45, .external_lex_state = 2}, + [1158] = {.lex_state = 45, .external_lex_state = 2}, + [1159] = {.lex_state = 579}, + [1160] = {.lex_state = 579}, + [1161] = {.lex_state = 579}, + [1162] = {.lex_state = 579}, + [1163] = {.lex_state = 579}, + [1164] = {.lex_state = 579}, + [1165] = {.lex_state = 579}, + [1166] = {.lex_state = 579}, + [1167] = {.lex_state = 579}, + [1168] = {.lex_state = 579}, + [1169] = {.lex_state = 579}, + [1170] = {.lex_state = 579}, + [1171] = {.lex_state = 579}, + [1172] = {.lex_state = 579}, + [1173] = {.lex_state = 579}, + [1174] = {.lex_state = 579}, + [1175] = {.lex_state = 579}, + [1176] = {.lex_state = 579}, + [1177] = {.lex_state = 579}, + [1178] = {.lex_state = 579}, + [1179] = {.lex_state = 579}, + [1180] = {.lex_state = 579}, + [1181] = {.lex_state = 579}, + [1182] = {.lex_state = 579}, + [1183] = {.lex_state = 579}, + [1184] = {.lex_state = 579}, + [1185] = {.lex_state = 579}, + [1186] = {.lex_state = 579}, + [1187] = {.lex_state = 579}, + [1188] = {.lex_state = 579}, + [1189] = {.lex_state = 579}, + [1190] = {.lex_state = 579}, + [1191] = {.lex_state = 579}, + [1192] = {.lex_state = 579}, + [1193] = {.lex_state = 579}, + [1194] = {.lex_state = 579}, + [1195] = {.lex_state = 579}, + [1196] = {.lex_state = 610}, + [1197] = {.lex_state = 610}, + [1198] = {.lex_state = 579}, + [1199] = {.lex_state = 31, .external_lex_state = 2}, + [1200] = {.lex_state = 579}, + [1201] = {.lex_state = 579}, + [1202] = {.lex_state = 579}, + [1203] = {.lex_state = 579}, + [1204] = {.lex_state = 579}, + [1205] = {.lex_state = 579}, + [1206] = {.lex_state = 579}, + [1207] = {.lex_state = 579}, + [1208] = {.lex_state = 45, .external_lex_state = 2}, + [1209] = {.lex_state = 579}, + [1210] = {.lex_state = 45, .external_lex_state = 2}, + [1211] = {.lex_state = 579}, + [1212] = {.lex_state = 579}, + [1213] = {.lex_state = 579}, + [1214] = {.lex_state = 579}, + [1215] = {.lex_state = 579}, + [1216] = {.lex_state = 579}, + [1217] = {.lex_state = 579}, + [1218] = {.lex_state = 579}, + [1219] = {.lex_state = 579}, + [1220] = {.lex_state = 579}, + [1221] = {.lex_state = 579}, + [1222] = {.lex_state = 579}, + [1223] = {.lex_state = 579}, + [1224] = {.lex_state = 579}, + [1225] = {.lex_state = 579}, + [1226] = {.lex_state = 579}, + [1227] = {.lex_state = 579}, + [1228] = {.lex_state = 579}, + [1229] = {.lex_state = 579}, + [1230] = {.lex_state = 579}, + [1231] = {.lex_state = 579}, + [1232] = {.lex_state = 49, .external_lex_state = 2}, + [1233] = {.lex_state = 579}, + [1234] = {.lex_state = 579}, + [1235] = {.lex_state = 579}, + [1236] = {.lex_state = 579}, + [1237] = {.lex_state = 579}, + [1238] = {.lex_state = 49, .external_lex_state = 2}, + [1239] = {.lex_state = 579}, + [1240] = {.lex_state = 579}, + [1241] = {.lex_state = 579}, + [1242] = {.lex_state = 579}, + [1243] = {.lex_state = 579}, + [1244] = {.lex_state = 579}, + [1245] = {.lex_state = 610}, + [1246] = {.lex_state = 608}, + [1247] = {.lex_state = 610}, + [1248] = {.lex_state = 610}, + [1249] = {.lex_state = 579}, + [1250] = {.lex_state = 579}, + [1251] = {.lex_state = 579}, + [1252] = {.lex_state = 579}, + [1253] = {.lex_state = 579}, + [1254] = {.lex_state = 579}, + [1255] = {.lex_state = 579}, + [1256] = {.lex_state = 579}, + [1257] = {.lex_state = 49, .external_lex_state = 2}, + [1258] = {.lex_state = 49, .external_lex_state = 2}, + [1259] = {.lex_state = 49, .external_lex_state = 2}, + [1260] = {.lex_state = 579}, + [1261] = {.lex_state = 579}, + [1262] = {.lex_state = 579}, + [1263] = {.lex_state = 579}, + [1264] = {.lex_state = 579}, + [1265] = {.lex_state = 579}, + [1266] = {.lex_state = 579}, + [1267] = {.lex_state = 579}, + [1268] = {.lex_state = 579}, + [1269] = {.lex_state = 579}, + [1270] = {.lex_state = 579}, + [1271] = {.lex_state = 579}, + [1272] = {.lex_state = 579}, + [1273] = {.lex_state = 579}, + [1274] = {.lex_state = 579}, + [1275] = {.lex_state = 579}, + [1276] = {.lex_state = 579}, + [1277] = {.lex_state = 579}, + [1278] = {.lex_state = 579}, + [1279] = {.lex_state = 579}, + [1280] = {.lex_state = 579}, + [1281] = {.lex_state = 579}, + [1282] = {.lex_state = 579}, + [1283] = {.lex_state = 579}, + [1284] = {.lex_state = 579}, + [1285] = {.lex_state = 579}, + [1286] = {.lex_state = 579}, + [1287] = {.lex_state = 44, .external_lex_state = 2}, + [1288] = {.lex_state = 579}, + [1289] = {.lex_state = 44, .external_lex_state = 2}, + [1290] = {.lex_state = 579}, + [1291] = {.lex_state = 579}, + [1292] = {.lex_state = 579}, + [1293] = {.lex_state = 44, .external_lex_state = 2}, + [1294] = {.lex_state = 579}, + [1295] = {.lex_state = 579}, + [1296] = {.lex_state = 579}, + [1297] = {.lex_state = 579}, + [1298] = {.lex_state = 579}, + [1299] = {.lex_state = 579}, + [1300] = {.lex_state = 579}, + [1301] = {.lex_state = 579}, + [1302] = {.lex_state = 579}, + [1303] = {.lex_state = 579}, + [1304] = {.lex_state = 579}, + [1305] = {.lex_state = 579}, + [1306] = {.lex_state = 579}, + [1307] = {.lex_state = 579}, + [1308] = {.lex_state = 623, .external_lex_state = 2}, + [1309] = {.lex_state = 579}, + [1310] = {.lex_state = 579}, + [1311] = {.lex_state = 579}, + [1312] = {.lex_state = 579}, + [1313] = {.lex_state = 579}, + [1314] = {.lex_state = 579}, + [1315] = {.lex_state = 579}, + [1316] = {.lex_state = 579}, + [1317] = {.lex_state = 579}, + [1318] = {.lex_state = 579}, + [1319] = {.lex_state = 579}, + [1320] = {.lex_state = 579}, + [1321] = {.lex_state = 579}, + [1322] = {.lex_state = 579}, + [1323] = {.lex_state = 44, .external_lex_state = 2}, + [1324] = {.lex_state = 579}, + [1325] = {.lex_state = 579}, + [1326] = {.lex_state = 579}, + [1327] = {.lex_state = 579}, + [1328] = {.lex_state = 579}, + [1329] = {.lex_state = 579}, + [1330] = {.lex_state = 579}, + [1331] = {.lex_state = 579}, + [1332] = {.lex_state = 579}, + [1333] = {.lex_state = 579}, + [1334] = {.lex_state = 579}, + [1335] = {.lex_state = 579}, + [1336] = {.lex_state = 579}, + [1337] = {.lex_state = 579}, + [1338] = {.lex_state = 623, .external_lex_state = 2}, + [1339] = {.lex_state = 579}, + [1340] = {.lex_state = 579}, + [1341] = {.lex_state = 623, .external_lex_state = 2}, + [1342] = {.lex_state = 579}, + [1343] = {.lex_state = 579}, + [1344] = {.lex_state = 579}, + [1345] = {.lex_state = 579}, + [1346] = {.lex_state = 45, .external_lex_state = 2}, + [1347] = {.lex_state = 172, .external_lex_state = 2}, + [1348] = {.lex_state = 173, .external_lex_state = 2}, + [1349] = {.lex_state = 29, .external_lex_state = 2}, [1350] = {.lex_state = 29, .external_lex_state = 2}, - [1351] = {.lex_state = 45, .external_lex_state = 2}, - [1352] = {.lex_state = 45, .external_lex_state = 2}, - [1353] = {.lex_state = 45, .external_lex_state = 2}, - [1354] = {.lex_state = 29, .external_lex_state = 2}, - [1355] = {.lex_state = 622, .external_lex_state = 2}, - [1356] = {.lex_state = 29, .external_lex_state = 2}, - [1357] = {.lex_state = 29, .external_lex_state = 2}, - [1358] = {.lex_state = 629, .external_lex_state = 2}, - [1359] = {.lex_state = 622, .external_lex_state = 2}, - [1360] = {.lex_state = 46, .external_lex_state = 2}, - [1361] = {.lex_state = 46, .external_lex_state = 2}, - [1362] = {.lex_state = 148, .external_lex_state = 2}, - [1363] = {.lex_state = 622, .external_lex_state = 2}, - [1364] = {.lex_state = 622, .external_lex_state = 2}, - [1365] = {.lex_state = 148, .external_lex_state = 2}, - [1366] = {.lex_state = 29, .external_lex_state = 2}, - [1367] = {.lex_state = 622, .external_lex_state = 2}, - [1368] = {.lex_state = 622, .external_lex_state = 2}, - [1369] = {.lex_state = 622, .external_lex_state = 2}, - [1370] = {.lex_state = 622, .external_lex_state = 2}, - [1371] = {.lex_state = 622, .external_lex_state = 2}, - [1372] = {.lex_state = 46, .external_lex_state = 2}, - [1373] = {.lex_state = 148, .external_lex_state = 2}, - [1374] = {.lex_state = 148, .external_lex_state = 2}, - [1375] = {.lex_state = 148, .external_lex_state = 2}, - [1376] = {.lex_state = 622, .external_lex_state = 2}, - [1377] = {.lex_state = 622, .external_lex_state = 2}, - [1378] = {.lex_state = 622, .external_lex_state = 2}, - [1379] = {.lex_state = 582}, - [1380] = {.lex_state = 622, .external_lex_state = 2}, - [1381] = {.lex_state = 29, .external_lex_state = 2}, - [1382] = {.lex_state = 622, .external_lex_state = 2}, - [1383] = {.lex_state = 622, .external_lex_state = 2}, - [1384] = {.lex_state = 622, .external_lex_state = 2}, - [1385] = {.lex_state = 622, .external_lex_state = 2}, - [1386] = {.lex_state = 582}, - [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}, + [1351] = {.lex_state = 44, .external_lex_state = 2}, + [1352] = {.lex_state = 29, .external_lex_state = 2}, + [1353] = {.lex_state = 44, .external_lex_state = 2}, + [1354] = {.lex_state = 173, .external_lex_state = 2}, + [1355] = {.lex_state = 29, .external_lex_state = 2}, + [1356] = {.lex_state = 44, .external_lex_state = 2}, + [1357] = {.lex_state = 623, .external_lex_state = 2}, + [1358] = {.lex_state = 146, .external_lex_state = 2}, + [1359] = {.lex_state = 45, .external_lex_state = 2}, + [1360] = {.lex_state = 623, .external_lex_state = 2}, + [1361] = {.lex_state = 45, .external_lex_state = 2}, + [1362] = {.lex_state = 146, .external_lex_state = 2}, + [1363] = {.lex_state = 623, .external_lex_state = 2}, + [1364] = {.lex_state = 631, .external_lex_state = 2}, + [1365] = {.lex_state = 623, .external_lex_state = 2}, + [1366] = {.lex_state = 623, .external_lex_state = 2}, + [1367] = {.lex_state = 623, .external_lex_state = 2}, + [1368] = {.lex_state = 623, .external_lex_state = 2}, + [1369] = {.lex_state = 146, .external_lex_state = 2}, + [1370] = {.lex_state = 146, .external_lex_state = 2}, + [1371] = {.lex_state = 623, .external_lex_state = 2}, + [1372] = {.lex_state = 29, .external_lex_state = 2}, + [1373] = {.lex_state = 623, .external_lex_state = 2}, + [1374] = {.lex_state = 45, .external_lex_state = 2}, + [1375] = {.lex_state = 146, .external_lex_state = 2}, + [1376] = {.lex_state = 623, .external_lex_state = 2}, + [1377] = {.lex_state = 583}, + [1378] = {.lex_state = 623, .external_lex_state = 2}, + [1379] = {.lex_state = 623, .external_lex_state = 2}, + [1380] = {.lex_state = 623, .external_lex_state = 2}, + [1381] = {.lex_state = 623, .external_lex_state = 2}, + [1382] = {.lex_state = 623, .external_lex_state = 2}, + [1383] = {.lex_state = 623, .external_lex_state = 2}, + [1384] = {.lex_state = 623, .external_lex_state = 2}, + [1385] = {.lex_state = 29, .external_lex_state = 2}, + [1386] = {.lex_state = 583}, + [1387] = {.lex_state = 585}, + [1388] = {.lex_state = 623, .external_lex_state = 2}, + [1389] = {.lex_state = 585}, + [1390] = {.lex_state = 623, .external_lex_state = 2}, + [1391] = {.lex_state = 34, .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}, + [1393] = {.lex_state = 33, .external_lex_state = 2}, + [1394] = {.lex_state = 591}, + [1395] = {.lex_state = 587}, + [1396] = {.lex_state = 33, .external_lex_state = 2}, + [1397] = {.lex_state = 46, .external_lex_state = 2}, + [1398] = {.lex_state = 623, .external_lex_state = 2}, + [1399] = {.lex_state = 585}, + [1400] = {.lex_state = 623, .external_lex_state = 2}, + [1401] = {.lex_state = 585}, + [1402] = {.lex_state = 33, .external_lex_state = 2}, + [1403] = {.lex_state = 593}, + [1404] = {.lex_state = 593}, [1405] = {.lex_state = 34, .external_lex_state = 2}, - [1406] = {.lex_state = 594}, - [1407] = {.lex_state = 33, .external_lex_state = 2}, - [1408] = {.lex_state = 586}, + [1406] = {.lex_state = 587}, + [1407] = {.lex_state = 595}, + [1408] = {.lex_state = 591}, [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}, + [1410] = {.lex_state = 33, .external_lex_state = 2}, + [1411] = {.lex_state = 589}, + [1412] = {.lex_state = 595}, + [1413] = {.lex_state = 595}, + [1414] = {.lex_state = 34, .external_lex_state = 2}, + [1415] = {.lex_state = 46, .external_lex_state = 2}, + [1416] = {.lex_state = 595}, + [1417] = {.lex_state = 595}, + [1418] = {.lex_state = 46, .external_lex_state = 2}, + [1419] = {.lex_state = 156, .external_lex_state = 2}, + [1420] = {.lex_state = 46, .external_lex_state = 2}, + [1421] = {.lex_state = 593}, + [1422] = {.lex_state = 156, .external_lex_state = 2}, + [1423] = {.lex_state = 33, .external_lex_state = 2}, + [1424] = {.lex_state = 593}, + [1425] = {.lex_state = 597}, + [1426] = {.lex_state = 597}, + [1427] = {.lex_state = 599}, + [1428] = {.lex_state = 595}, + [1429] = {.lex_state = 595}, + [1430] = {.lex_state = 595}, + [1431] = {.lex_state = 589}, + [1432] = {.lex_state = 599}, + [1433] = {.lex_state = 601}, + [1434] = {.lex_state = 601}, + [1435] = {.lex_state = 599}, + [1436] = {.lex_state = 601}, + [1437] = {.lex_state = 599}, + [1438] = {.lex_state = 601}, + [1439] = {.lex_state = 601}, + [1440] = {.lex_state = 601}, + [1441] = {.lex_state = 627, .external_lex_state = 2}, + [1442] = {.lex_state = 603}, + [1443] = {.lex_state = 579}, + [1444] = {.lex_state = 605}, + [1445] = {.lex_state = 627, .external_lex_state = 2}, + [1446] = {.lex_state = 601}, + [1447] = {.lex_state = 601}, + [1448] = {.lex_state = 601}, + [1449] = {.lex_state = 601}, + [1450] = {.lex_state = 627, .external_lex_state = 2}, + [1451] = {.lex_state = 36, .external_lex_state = 2}, + [1452] = {.lex_state = 579}, + [1453] = {.lex_state = 607}, + [1454] = {.lex_state = 36, .external_lex_state = 2}, + [1455] = {.lex_state = 603}, + [1456] = {.lex_state = 627, .external_lex_state = 2}, + [1457] = {.lex_state = 605}, + [1458] = {.lex_state = 607}, + [1459] = {.lex_state = 36, .external_lex_state = 2}, + [1460] = {.lex_state = 147, .external_lex_state = 2}, + [1461] = {.lex_state = 147, .external_lex_state = 2}, + [1462] = {.lex_state = 147, .external_lex_state = 2}, + [1463] = {.lex_state = 609}, + [1464] = {.lex_state = 609}, + [1465] = {.lex_state = 147, .external_lex_state = 2}, + [1466] = {.lex_state = 147, .external_lex_state = 2}, + [1467] = {.lex_state = 147, .external_lex_state = 2}, + [1468] = {.lex_state = 147, .external_lex_state = 2}, + [1469] = {.lex_state = 147, .external_lex_state = 2}, + [1470] = {.lex_state = 609}, + [1471] = {.lex_state = 609}, + [1472] = {.lex_state = 609}, + [1473] = {.lex_state = 147, .external_lex_state = 2}, + [1474] = {.lex_state = 147, .external_lex_state = 2}, + [1475] = {.lex_state = 609}, + [1476] = {.lex_state = 609}, + [1477] = {.lex_state = 609}, + [1478] = {.lex_state = 609}, + [1479] = {.lex_state = 609}, + [1480] = {.lex_state = 609}, + [1481] = {.lex_state = 609}, + [1482] = {.lex_state = 607}, + [1483] = {.lex_state = 607}, + [1484] = {.lex_state = 609}, + [1485] = {.lex_state = 147, .external_lex_state = 2}, + [1486] = {.lex_state = 147, .external_lex_state = 2}, + [1487] = {.lex_state = 147, .external_lex_state = 2}, + [1488] = {.lex_state = 609}, + [1489] = {.lex_state = 609}, + [1490] = {.lex_state = 609}, + [1491] = {.lex_state = 611}, + [1492] = {.lex_state = 609}, + [1493] = {.lex_state = 147, .external_lex_state = 2}, + [1494] = {.lex_state = 39, .external_lex_state = 2}, + [1495] = {.lex_state = 147, .external_lex_state = 2}, + [1496] = {.lex_state = 609}, + [1497] = {.lex_state = 609}, + [1498] = {.lex_state = 611}, + [1499] = {.lex_state = 609}, + [1500] = {.lex_state = 609}, + [1501] = {.lex_state = 609}, + [1502] = {.lex_state = 609}, + [1503] = {.lex_state = 611}, + [1504] = {.lex_state = 147, .external_lex_state = 2}, + [1505] = {.lex_state = 609}, + [1506] = {.lex_state = 609}, + [1507] = {.lex_state = 609}, + [1508] = {.lex_state = 609}, + [1509] = {.lex_state = 177, .external_lex_state = 2}, + [1510] = {.lex_state = 609}, + [1511] = {.lex_state = 579}, + [1512] = {.lex_state = 36, .external_lex_state = 2}, + [1513] = {.lex_state = 579}, + [1514] = {.lex_state = 579}, + [1515] = {.lex_state = 579}, + [1516] = {.lex_state = 579}, + [1517] = {.lex_state = 579}, + [1518] = {.lex_state = 579}, + [1519] = {.lex_state = 579}, + [1520] = {.lex_state = 579}, + [1521] = {.lex_state = 36, .external_lex_state = 2}, + [1522] = {.lex_state = 579}, + [1523] = {.lex_state = 88}, + [1524] = {.lex_state = 36, .external_lex_state = 2}, + [1525] = {.lex_state = 88}, + [1526] = {.lex_state = 579}, + [1527] = {.lex_state = 579}, + [1528] = {.lex_state = 579}, + [1529] = {.lex_state = 579}, + [1530] = {.lex_state = 579}, + [1531] = {.lex_state = 579}, + [1532] = {.lex_state = 579}, + [1533] = {.lex_state = 579}, + [1534] = {.lex_state = 579}, + [1535] = {.lex_state = 579}, + [1536] = {.lex_state = 579}, + [1537] = {.lex_state = 579}, + [1538] = {.lex_state = 579}, + [1539] = {.lex_state = 579}, + [1540] = {.lex_state = 579}, + [1541] = {.lex_state = 579}, + [1542] = {.lex_state = 579}, + [1543] = {.lex_state = 579}, + [1544] = {.lex_state = 579}, + [1545] = {.lex_state = 579}, + [1546] = {.lex_state = 579}, + [1547] = {.lex_state = 579}, + [1548] = {.lex_state = 579}, + [1549] = {.lex_state = 579}, + [1550] = {.lex_state = 579}, + [1551] = {.lex_state = 579}, + [1552] = {.lex_state = 579}, + [1553] = {.lex_state = 579}, + [1554] = {.lex_state = 579}, + [1555] = {.lex_state = 579}, + [1556] = {.lex_state = 579}, + [1557] = {.lex_state = 579}, + [1558] = {.lex_state = 579}, + [1559] = {.lex_state = 579}, + [1560] = {.lex_state = 579}, + [1561] = {.lex_state = 88}, + [1562] = {.lex_state = 579}, + [1563] = {.lex_state = 88}, + [1564] = {.lex_state = 88}, + [1565] = {.lex_state = 88}, + [1566] = {.lex_state = 579}, + [1567] = {.lex_state = 579}, + [1568] = {.lex_state = 579}, + [1569] = {.lex_state = 579}, + [1570] = {.lex_state = 579}, + [1571] = {.lex_state = 579}, + [1572] = {.lex_state = 579}, + [1573] = {.lex_state = 579}, + [1574] = {.lex_state = 579}, + [1575] = {.lex_state = 579}, + [1576] = {.lex_state = 579}, + [1577] = {.lex_state = 579}, + [1578] = {.lex_state = 579}, + [1579] = {.lex_state = 579}, + [1580] = {.lex_state = 579}, + [1581] = {.lex_state = 579}, + [1582] = {.lex_state = 579}, + [1583] = {.lex_state = 579}, + [1584] = {.lex_state = 579}, + [1585] = {.lex_state = 579}, + [1586] = {.lex_state = 579}, + [1587] = {.lex_state = 579}, + [1588] = {.lex_state = 579}, + [1589] = {.lex_state = 579}, + [1590] = {.lex_state = 579}, + [1591] = {.lex_state = 579}, + [1592] = {.lex_state = 579}, + [1593] = {.lex_state = 579}, + [1594] = {.lex_state = 579}, + [1595] = {.lex_state = 579}, + [1596] = {.lex_state = 579}, + [1597] = {.lex_state = 579}, + [1598] = {.lex_state = 579}, + [1599] = {.lex_state = 579}, + [1600] = {.lex_state = 579}, + [1601] = {.lex_state = 579}, + [1602] = {.lex_state = 88}, + [1603] = {.lex_state = 88}, + [1604] = {.lex_state = 88}, + [1605] = {.lex_state = 36, .external_lex_state = 2}, + [1606] = {.lex_state = 579}, + [1607] = {.lex_state = 579}, + [1608] = {.lex_state = 579}, + [1609] = {.lex_state = 579}, + [1610] = {.lex_state = 579}, + [1611] = {.lex_state = 579}, + [1612] = {.lex_state = 579}, + [1613] = {.lex_state = 579}, + [1614] = {.lex_state = 579}, + [1615] = {.lex_state = 579}, + [1616] = {.lex_state = 579}, + [1617] = {.lex_state = 579}, + [1618] = {.lex_state = 88}, + [1619] = {.lex_state = 88}, + [1620] = {.lex_state = 88}, + [1621] = {.lex_state = 88}, + [1622] = {.lex_state = 611}, + [1623] = {.lex_state = 88}, + [1624] = {.lex_state = 88}, + [1625] = {.lex_state = 88}, + [1626] = {.lex_state = 88}, + [1627] = {.lex_state = 88}, + [1628] = {.lex_state = 88}, + [1629] = {.lex_state = 88}, + [1630] = {.lex_state = 88}, + [1631] = {.lex_state = 88}, + [1632] = {.lex_state = 88}, + [1633] = {.lex_state = 88}, + [1634] = {.lex_state = 88}, + [1635] = {.lex_state = 88}, + [1636] = {.lex_state = 579}, + [1637] = {.lex_state = 579}, + [1638] = {.lex_state = 579}, + [1639] = {.lex_state = 579}, + [1640] = {.lex_state = 579}, + [1641] = {.lex_state = 579}, + [1642] = {.lex_state = 579}, + [1643] = {.lex_state = 579}, + [1644] = {.lex_state = 579}, + [1645] = {.lex_state = 579}, + [1646] = {.lex_state = 579}, + [1647] = {.lex_state = 579}, + [1648] = {.lex_state = 88}, + [1649] = {.lex_state = 88}, + [1650] = {.lex_state = 88}, + [1651] = {.lex_state = 36, .external_lex_state = 2}, + [1652] = {.lex_state = 88}, + [1653] = {.lex_state = 88}, + [1654] = {.lex_state = 36, .external_lex_state = 2}, + [1655] = {.lex_state = 88}, + [1656] = {.lex_state = 88}, + [1657] = {.lex_state = 88}, + [1658] = {.lex_state = 88}, + [1659] = {.lex_state = 88}, + [1660] = {.lex_state = 579}, + [1661] = {.lex_state = 88}, + [1662] = {.lex_state = 611}, + [1663] = {.lex_state = 611}, + [1664] = {.lex_state = 88}, + [1665] = {.lex_state = 88}, + [1666] = {.lex_state = 88}, + [1667] = {.lex_state = 88}, + [1668] = {.lex_state = 6}, + [1669] = {.lex_state = 88}, + [1670] = {.lex_state = 88}, + [1671] = {.lex_state = 579}, + [1672] = {.lex_state = 88}, + [1673] = {.lex_state = 88}, + [1674] = {.lex_state = 579}, + [1675] = {.lex_state = 88}, + [1676] = {.lex_state = 39, .external_lex_state = 2}, + [1677] = {.lex_state = 88}, + [1678] = {.lex_state = 88}, + [1679] = {.lex_state = 579}, + [1680] = {.lex_state = 7}, + [1681] = {.lex_state = 579}, + [1682] = {.lex_state = 579}, + [1683] = {.lex_state = 177, .external_lex_state = 2}, + [1684] = {.lex_state = 579}, + [1685] = {.lex_state = 579}, + [1686] = {.lex_state = 579}, + [1687] = {.lex_state = 88}, + [1688] = {.lex_state = 579}, + [1689] = {.lex_state = 177, .external_lex_state = 2}, + [1690] = {.lex_state = 579}, + [1691] = {.lex_state = 579}, + [1692] = {.lex_state = 579}, + [1693] = {.lex_state = 579}, + [1694] = {.lex_state = 579}, + [1695] = {.lex_state = 579}, + [1696] = {.lex_state = 7}, + [1697] = {.lex_state = 130}, + [1698] = {.lex_state = 36, .external_lex_state = 2}, + [1699] = {.lex_state = 8}, + [1700] = {.lex_state = 36, .external_lex_state = 2}, + [1701] = {.lex_state = 10}, + [1702] = {.lex_state = 36, .external_lex_state = 2}, + [1703] = {.lex_state = 131}, + [1704] = {.lex_state = 130}, + [1705] = {.lex_state = 36, .external_lex_state = 2}, + [1706] = {.lex_state = 36, .external_lex_state = 2}, + [1707] = {.lex_state = 130}, + [1708] = {.lex_state = 36, .external_lex_state = 2}, + [1709] = {.lex_state = 36, .external_lex_state = 2}, + [1710] = {.lex_state = 36, .external_lex_state = 2}, + [1711] = {.lex_state = 36, .external_lex_state = 2}, + [1712] = {.lex_state = 36, .external_lex_state = 2}, + [1713] = {.lex_state = 36, .external_lex_state = 2}, + [1714] = {.lex_state = 131}, + [1715] = {.lex_state = 176, .external_lex_state = 2}, + [1716] = {.lex_state = 130}, + [1717] = {.lex_state = 88}, + [1718] = {.lex_state = 176, .external_lex_state = 2}, + [1719] = {.lex_state = 134}, + [1720] = {.lex_state = 11}, + [1721] = {.lex_state = 630, .external_lex_state = 2}, + [1722] = {.lex_state = 130}, + [1723] = {.lex_state = 11}, + [1724] = {.lex_state = 571, .external_lex_state = 2}, + [1725] = {.lex_state = 88}, + [1726] = {.lex_state = 12}, + [1727] = {.lex_state = 630, .external_lex_state = 2}, + [1728] = {.lex_state = 88}, + [1729] = {.lex_state = 88}, + [1730] = {.lex_state = 176, .external_lex_state = 2}, + [1731] = {.lex_state = 130}, + [1732] = {.lex_state = 130}, + [1733] = {.lex_state = 130}, + [1734] = {.lex_state = 630, .external_lex_state = 2}, + [1735] = {.lex_state = 130}, + [1736] = {.lex_state = 132}, + [1737] = {.lex_state = 176, .external_lex_state = 2}, + [1738] = {.lex_state = 630, .external_lex_state = 2}, + [1739] = {.lex_state = 136}, + [1740] = {.lex_state = 630, .external_lex_state = 2}, + [1741] = {.lex_state = 571, .external_lex_state = 2}, + [1742] = {.lex_state = 12}, + [1743] = {.lex_state = 165, .external_lex_state = 2}, + [1744] = {.lex_state = 630, .external_lex_state = 2}, + [1745] = {.lex_state = 88}, + [1746] = {.lex_state = 9}, + [1747] = {.lex_state = 13}, + [1748] = {.lex_state = 88}, + [1749] = {.lex_state = 630, .external_lex_state = 2}, + [1750] = {.lex_state = 168, .external_lex_state = 2}, + [1751] = {.lex_state = 176, .external_lex_state = 2}, + [1752] = {.lex_state = 176, .external_lex_state = 2}, + [1753] = {.lex_state = 12}, + [1754] = {.lex_state = 88}, + [1755] = {.lex_state = 88}, + [1756] = {.lex_state = 88}, + [1757] = {.lex_state = 135}, + [1758] = {.lex_state = 36, .external_lex_state = 2}, + [1759] = {.lex_state = 36, .external_lex_state = 2}, + [1760] = {.lex_state = 176, .external_lex_state = 2}, + [1761] = {.lex_state = 571, .external_lex_state = 2}, + [1762] = {.lex_state = 176, .external_lex_state = 2}, + [1763] = {.lex_state = 36, .external_lex_state = 2}, + [1764] = {.lex_state = 176, .external_lex_state = 2}, + [1765] = {.lex_state = 571, .external_lex_state = 2}, + [1766] = {.lex_state = 571, .external_lex_state = 2}, + [1767] = {.lex_state = 571, .external_lex_state = 2}, + [1768] = {.lex_state = 12}, + [1769] = {.lex_state = 571, .external_lex_state = 2}, + [1770] = {.lex_state = 630, .external_lex_state = 2}, + [1771] = {.lex_state = 176, .external_lex_state = 2}, + [1772] = {.lex_state = 135}, + [1773] = {.lex_state = 176, .external_lex_state = 2}, + [1774] = {.lex_state = 176, .external_lex_state = 2}, + [1775] = {.lex_state = 571, .external_lex_state = 2}, + [1776] = {.lex_state = 176, .external_lex_state = 2}, + [1777] = {.lex_state = 88}, + [1778] = {.lex_state = 88}, + [1779] = {.lex_state = 88}, + [1780] = {.lex_state = 14}, + [1781] = {.lex_state = 572, .external_lex_state = 2}, + [1782] = {.lex_state = 167, .external_lex_state = 2}, + [1783] = {.lex_state = 137}, + [1784] = {.lex_state = 571, .external_lex_state = 2}, + [1785] = {.lex_state = 36, .external_lex_state = 2}, + [1786] = {.lex_state = 88}, + [1787] = {.lex_state = 88}, + [1788] = {.lex_state = 630, .external_lex_state = 2}, + [1789] = {.lex_state = 88}, + [1790] = {.lex_state = 88}, + [1791] = {.lex_state = 571, .external_lex_state = 2}, + [1792] = {.lex_state = 629, .external_lex_state = 2}, + [1793] = {.lex_state = 88}, + [1794] = {.lex_state = 133}, + [1795] = {.lex_state = 88}, + [1796] = {.lex_state = 88}, + [1797] = {.lex_state = 571, .external_lex_state = 2}, + [1798] = {.lex_state = 36, .external_lex_state = 2}, + [1799] = {.lex_state = 88}, + [1800] = {.lex_state = 630, .external_lex_state = 2}, + [1801] = {.lex_state = 36, .external_lex_state = 2}, + [1802] = {.lex_state = 136}, + [1803] = {.lex_state = 167, .external_lex_state = 2}, + [1804] = {.lex_state = 36, .external_lex_state = 2}, + [1805] = {.lex_state = 88}, + [1806] = {.lex_state = 88}, + [1807] = {.lex_state = 571, .external_lex_state = 2}, + [1808] = {.lex_state = 571, .external_lex_state = 2}, + [1809] = {.lex_state = 571, .external_lex_state = 2}, + [1810] = {.lex_state = 88}, + [1811] = {.lex_state = 36, .external_lex_state = 2}, + [1812] = {.lex_state = 36, .external_lex_state = 2}, + [1813] = {.lex_state = 36, .external_lex_state = 2}, + [1814] = {.lex_state = 36, .external_lex_state = 2}, + [1815] = {.lex_state = 136}, + [1816] = {.lex_state = 14}, + [1817] = {.lex_state = 36, .external_lex_state = 2}, + [1818] = {.lex_state = 136}, + [1819] = {.lex_state = 88}, + [1820] = {.lex_state = 36, .external_lex_state = 2}, + [1821] = {.lex_state = 36, .external_lex_state = 2}, + [1822] = {.lex_state = 88}, + [1823] = {.lex_state = 36, .external_lex_state = 2}, + [1824] = {.lex_state = 88}, + [1825] = {.lex_state = 15}, [1826] = {.lex_state = 15}, [1827] = {.lex_state = 15}, - [1828] = {.lex_state = 89}, - [1829] = {.lex_state = 15}, - [1830] = {.lex_state = 578}, - [1831] = {.lex_state = 89}, - [1832] = {.lex_state = 627, .external_lex_state = 2}, - [1833] = {.lex_state = 628, .external_lex_state = 2}, - [1834] = {.lex_state = 15}, - [1835] = {.lex_state = 15}, - [1836] = {.lex_state = 140}, - [1837] = {.lex_state = 573, .external_lex_state = 2}, - [1838] = {.lex_state = 89}, - [1839] = {.lex_state = 140}, - [1840] = {.lex_state = 171, .external_lex_state = 2}, - [1841] = {.lex_state = 171, .external_lex_state = 2}, - [1842] = {.lex_state = 171, .external_lex_state = 2}, - [1843] = {.lex_state = 171, .external_lex_state = 2}, - [1844] = {.lex_state = 628, .external_lex_state = 2}, - [1845] = {.lex_state = 625, .external_lex_state = 2}, - [1846] = {.lex_state = 89}, - [1847] = {.lex_state = 141}, - [1848] = {.lex_state = 141}, - [1849] = {.lex_state = 141}, - [1850] = {.lex_state = 141}, - [1851] = {.lex_state = 89}, - [1852] = {.lex_state = 625, .external_lex_state = 2}, - [1853] = {.lex_state = 176, .external_lex_state = 2}, - [1854] = {.lex_state = 625, .external_lex_state = 2}, - [1855] = {.lex_state = 141}, - [1856] = {.lex_state = 625, .external_lex_state = 2}, - [1857] = {.lex_state = 628, .external_lex_state = 2}, - [1858] = {.lex_state = 625, .external_lex_state = 2}, - [1859] = {.lex_state = 1182}, - [1860] = {.lex_state = 625, .external_lex_state = 2}, - [1861] = {.lex_state = 625, .external_lex_state = 2}, - [1862] = {.lex_state = 625, .external_lex_state = 2}, - [1863] = {.lex_state = 89}, - [1864] = {.lex_state = 17}, - [1865] = {.lex_state = 625, .external_lex_state = 2}, - [1866] = {.lex_state = 625, .external_lex_state = 2}, - [1867] = {.lex_state = 628, .external_lex_state = 2}, - [1868] = {.lex_state = 628, .external_lex_state = 2}, - [1869] = {.lex_state = 625, .external_lex_state = 2}, - [1870] = {.lex_state = 625, .external_lex_state = 2}, - [1871] = {.lex_state = 625, .external_lex_state = 2}, - [1872] = {.lex_state = 625, .external_lex_state = 2}, - [1873] = {.lex_state = 625, .external_lex_state = 2}, - [1874] = {.lex_state = 625, .external_lex_state = 2}, - [1875] = {.lex_state = 578}, - [1876] = {.lex_state = 267}, - [1877] = {.lex_state = 89}, - [1878] = {.lex_state = 1180}, - [1879] = {.lex_state = 16}, - [1880] = {.lex_state = 625, .external_lex_state = 2}, - [1881] = {.lex_state = 625, .external_lex_state = 2}, - [1882] = {.lex_state = 127, .external_lex_state = 2}, - [1883] = {.lex_state = 163, .external_lex_state = 2}, - [1884] = {.lex_state = 625, .external_lex_state = 2}, - [1885] = {.lex_state = 625, .external_lex_state = 2}, - [1886] = {.lex_state = 625, .external_lex_state = 2}, - [1887] = {.lex_state = 625, .external_lex_state = 2}, - [1888] = {.lex_state = 163, .external_lex_state = 2}, - [1889] = {.lex_state = 625, .external_lex_state = 2}, - [1890] = {.lex_state = 625, .external_lex_state = 2}, - [1891] = {.lex_state = 625, .external_lex_state = 2}, - [1892] = {.lex_state = 143}, - [1893] = {.lex_state = 1181}, - [1894] = {.lex_state = 163, .external_lex_state = 2}, - [1895] = {.lex_state = 142}, - [1896] = {.lex_state = 625, .external_lex_state = 2}, - [1897] = {.lex_state = 177, .external_lex_state = 2}, - [1898] = {.lex_state = 625, .external_lex_state = 2}, - [1899] = {.lex_state = 18}, - [1900] = {.lex_state = 177, .external_lex_state = 2}, - [1901] = {.lex_state = 163, .external_lex_state = 2}, - [1902] = {.lex_state = 1185}, - [1903] = {.lex_state = 267}, - [1904] = {.lex_state = 18}, - [1905] = {.lex_state = 1183}, - [1906] = {.lex_state = 625, .external_lex_state = 2}, - [1907] = {.lex_state = 625, .external_lex_state = 2}, - [1908] = {.lex_state = 625, .external_lex_state = 2}, - [1909] = {.lex_state = 163, .external_lex_state = 2}, - [1910] = {.lex_state = 625, .external_lex_state = 2}, - [1911] = {.lex_state = 163, .external_lex_state = 2}, - [1912] = {.lex_state = 1183}, - [1913] = {.lex_state = 625, .external_lex_state = 2}, - [1914] = {.lex_state = 625, .external_lex_state = 2}, - [1915] = {.lex_state = 625, .external_lex_state = 2}, - [1916] = {.lex_state = 163, .external_lex_state = 2}, - [1917] = {.lex_state = 144}, + [1828] = {.lex_state = 138}, + [1829] = {.lex_state = 630, .external_lex_state = 2}, + [1830] = {.lex_state = 88}, + [1831] = {.lex_state = 169, .external_lex_state = 2}, + [1832] = {.lex_state = 579}, + [1833] = {.lex_state = 630, .external_lex_state = 2}, + [1834] = {.lex_state = 572, .external_lex_state = 2}, + [1835] = {.lex_state = 138}, + [1836] = {.lex_state = 169, .external_lex_state = 2}, + [1837] = {.lex_state = 88}, + [1838] = {.lex_state = 15}, + [1839] = {.lex_state = 88}, + [1840] = {.lex_state = 15}, + [1841] = {.lex_state = 630, .external_lex_state = 2}, + [1842] = {.lex_state = 169, .external_lex_state = 2}, + [1843] = {.lex_state = 169, .external_lex_state = 2}, + [1844] = {.lex_state = 629, .external_lex_state = 2}, + [1845] = {.lex_state = 627, .external_lex_state = 2}, + [1846] = {.lex_state = 17}, + [1847] = {.lex_state = 627, .external_lex_state = 2}, + [1848] = {.lex_state = 139}, + [1849] = {.lex_state = 627, .external_lex_state = 2}, + [1850] = {.lex_state = 627, .external_lex_state = 2}, + [1851] = {.lex_state = 139}, + [1852] = {.lex_state = 174, .external_lex_state = 2}, + [1853] = {.lex_state = 627, .external_lex_state = 2}, + [1854] = {.lex_state = 627, .external_lex_state = 2}, + [1855] = {.lex_state = 88}, + [1856] = {.lex_state = 88}, + [1857] = {.lex_state = 579}, + [1858] = {.lex_state = 1184}, + [1859] = {.lex_state = 627, .external_lex_state = 2}, + [1860] = {.lex_state = 1182}, + [1861] = {.lex_state = 627, .external_lex_state = 2}, + [1862] = {.lex_state = 630, .external_lex_state = 2}, + [1863] = {.lex_state = 139}, + [1864] = {.lex_state = 627, .external_lex_state = 2}, + [1865] = {.lex_state = 630, .external_lex_state = 2}, + [1866] = {.lex_state = 627, .external_lex_state = 2}, + [1867] = {.lex_state = 16}, + [1868] = {.lex_state = 630, .external_lex_state = 2}, + [1869] = {.lex_state = 627, .external_lex_state = 2}, + [1870] = {.lex_state = 139}, + [1871] = {.lex_state = 627, .external_lex_state = 2}, + [1872] = {.lex_state = 627, .external_lex_state = 2}, + [1873] = {.lex_state = 266}, + [1874] = {.lex_state = 627, .external_lex_state = 2}, + [1875] = {.lex_state = 627, .external_lex_state = 2}, + [1876] = {.lex_state = 88}, + [1877] = {.lex_state = 627, .external_lex_state = 2}, + [1878] = {.lex_state = 627, .external_lex_state = 2}, + [1879] = {.lex_state = 139}, + [1880] = {.lex_state = 88}, + [1881] = {.lex_state = 627, .external_lex_state = 2}, + [1882] = {.lex_state = 627, .external_lex_state = 2}, + [1883] = {.lex_state = 175, .external_lex_state = 2}, + [1884] = {.lex_state = 627, .external_lex_state = 2}, + [1885] = {.lex_state = 627, .external_lex_state = 2}, + [1886] = {.lex_state = 141}, + [1887] = {.lex_state = 161, .external_lex_state = 2}, + [1888] = {.lex_state = 18}, + [1889] = {.lex_state = 161, .external_lex_state = 2}, + [1890] = {.lex_state = 627, .external_lex_state = 2}, + [1891] = {.lex_state = 627, .external_lex_state = 2}, + [1892] = {.lex_state = 125, .external_lex_state = 2}, + [1893] = {.lex_state = 175, .external_lex_state = 2}, + [1894] = {.lex_state = 1183}, + [1895] = {.lex_state = 627, .external_lex_state = 2}, + [1896] = {.lex_state = 627, .external_lex_state = 2}, + [1897] = {.lex_state = 627, .external_lex_state = 2}, + [1898] = {.lex_state = 18}, + [1899] = {.lex_state = 627, .external_lex_state = 2}, + [1900] = {.lex_state = 266}, + [1901] = {.lex_state = 627, .external_lex_state = 2}, + [1902] = {.lex_state = 161, .external_lex_state = 2}, + [1903] = {.lex_state = 627, .external_lex_state = 2}, + [1904] = {.lex_state = 627, .external_lex_state = 2}, + [1905] = {.lex_state = 1187}, + [1906] = {.lex_state = 161, .external_lex_state = 2}, + [1907] = {.lex_state = 627, .external_lex_state = 2}, + [1908] = {.lex_state = 627, .external_lex_state = 2}, + [1909] = {.lex_state = 627, .external_lex_state = 2}, + [1910] = {.lex_state = 1185}, + [1911] = {.lex_state = 140}, + [1912] = {.lex_state = 161, .external_lex_state = 2}, + [1913] = {.lex_state = 161, .external_lex_state = 2}, + [1914] = {.lex_state = 627, .external_lex_state = 2}, + [1915] = {.lex_state = 161, .external_lex_state = 2}, + [1916] = {.lex_state = 1185}, + [1917] = {.lex_state = 579}, [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}, + [1920] = {.lex_state = 266}, + [1921] = {.lex_state = 19}, + [1922] = {.lex_state = 19}, + [1923] = {.lex_state = 266}, + [1924] = {.lex_state = 266}, [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}, + [1926] = {.lex_state = 19}, + [1927] = {.lex_state = 1186}, + [1928] = {.lex_state = 1186}, + [1929] = {.lex_state = 1186}, + [1930] = {.lex_state = 266}, + [1931] = {.lex_state = 266}, [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}, + [1933] = {.lex_state = 266}, + [1934] = {.lex_state = 19}, + [1935] = {.lex_state = 19}, + [1936] = {.lex_state = 161, .external_lex_state = 2}, + [1937] = {.lex_state = 161, .external_lex_state = 2}, + [1938] = {.lex_state = 266}, + [1939] = {.lex_state = 125, .external_lex_state = 2}, + [1940] = {.lex_state = 125, .external_lex_state = 2}, + [1941] = {.lex_state = 19}, + [1942] = {.lex_state = 125, .external_lex_state = 2}, + [1943] = {.lex_state = 125, .external_lex_state = 2}, + [1944] = {.lex_state = 125, .external_lex_state = 2}, + [1945] = {.lex_state = 1188}, + [1946] = {.lex_state = 19}, + [1947] = {.lex_state = 1186}, + [1948] = {.lex_state = 152, .external_lex_state = 2}, + [1949] = {.lex_state = 142}, + [1950] = {.lex_state = 142}, + [1951] = {.lex_state = 1188}, + [1952] = {.lex_state = 152, .external_lex_state = 2}, + [1953] = {.lex_state = 266}, + [1954] = {.lex_state = 19}, + [1955] = {.lex_state = 579}, + [1956] = {.lex_state = 88}, + [1957] = {.lex_state = 163, .external_lex_state = 2}, + [1958] = {.lex_state = 579}, + [1959] = {.lex_state = 19}, + [1960] = {.lex_state = 579}, + [1961] = {.lex_state = 579}, + [1962] = {.lex_state = 579}, + [1963] = {.lex_state = 579}, + [1964] = {.lex_state = 579}, + [1965] = {.lex_state = 579}, + [1966] = {.lex_state = 125, .external_lex_state = 2}, + [1967] = {.lex_state = 579}, + [1968] = {.lex_state = 579}, + [1969] = {.lex_state = 160, .external_lex_state = 2}, + [1970] = {.lex_state = 266}, + [1971] = {.lex_state = 126, .external_lex_state = 2}, + [1972] = {.lex_state = 266}, + [1973] = {.lex_state = 153, .external_lex_state = 2}, + [1974] = {.lex_state = 158, .external_lex_state = 2}, + [1975] = {.lex_state = 88}, + [1976] = {.lex_state = 143}, + [1977] = {.lex_state = 153, .external_lex_state = 2}, + [1978] = {.lex_state = 153, .external_lex_state = 2}, + [1979] = {.lex_state = 143}, + [1980] = {.lex_state = 143}, + [1981] = {.lex_state = 143}, + [1982] = {.lex_state = 143}, + [1983] = {.lex_state = 143}, + [1984] = {.lex_state = 143}, + [1985] = {.lex_state = 143}, + [1986] = {.lex_state = 143}, + [1987] = {.lex_state = 143}, + [1988] = {.lex_state = 43, .external_lex_state = 2}, + [1989] = {.lex_state = 1189}, + [1990] = {.lex_state = 36, .external_lex_state = 2}, + [1991] = {.lex_state = 143}, + [1992] = {.lex_state = 143}, + [1993] = {.lex_state = 143}, + [1994] = {.lex_state = 36, .external_lex_state = 2}, + [1995] = {.lex_state = 1189}, + [1996] = {.lex_state = 579}, + [1997] = {.lex_state = 579}, + [1998] = {.lex_state = 1189}, [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}, + [2000] = {.lex_state = 43, .external_lex_state = 2}, + [2001] = {.lex_state = 158, .external_lex_state = 2}, + [2002] = {.lex_state = 158, .external_lex_state = 2}, + [2003] = {.lex_state = 579}, + [2004] = {.lex_state = 579}, + [2005] = {.lex_state = 153, .external_lex_state = 2}, + [2006] = {.lex_state = 579}, + [2007] = {.lex_state = 88}, + [2008] = {.lex_state = 579}, + [2009] = {.lex_state = 579}, + [2010] = {.lex_state = 579}, + [2011] = {.lex_state = 579}, + [2012] = {.lex_state = 579}, + [2013] = {.lex_state = 579}, + [2014] = {.lex_state = 579}, + [2015] = {.lex_state = 579}, + [2016] = {.lex_state = 579}, + [2017] = {.lex_state = 1189}, + [2018] = {.lex_state = 579}, + [2019] = {.lex_state = 579}, + [2020] = {.lex_state = 579}, + [2021] = {.lex_state = 579}, + [2022] = {.lex_state = 579}, + [2023] = {.lex_state = 579}, + [2024] = {.lex_state = 579}, + [2025] = {.lex_state = 579}, + [2026] = {.lex_state = 579}, + [2027] = {.lex_state = 579}, + [2028] = {.lex_state = 579}, + [2029] = {.lex_state = 579}, + [2030] = {.lex_state = 579}, + [2031] = {.lex_state = 579}, + [2032] = {.lex_state = 579}, + [2033] = {.lex_state = 579}, + [2034] = {.lex_state = 579}, + [2035] = {.lex_state = 579}, + [2036] = {.lex_state = 579}, + [2037] = {.lex_state = 579}, + [2038] = {.lex_state = 579}, + [2039] = {.lex_state = 579}, + [2040] = {.lex_state = 579}, + [2041] = {.lex_state = 579}, + [2042] = {.lex_state = 579}, + [2043] = {.lex_state = 579}, + [2044] = {.lex_state = 579}, + [2045] = {.lex_state = 579}, + [2046] = {.lex_state = 579}, + [2047] = {.lex_state = 579}, + [2048] = {.lex_state = 579}, + [2049] = {.lex_state = 579}, + [2050] = {.lex_state = 579}, + [2051] = {.lex_state = 579}, + [2052] = {.lex_state = 579}, + [2053] = {.lex_state = 579}, + [2054] = {.lex_state = 579}, + [2055] = {.lex_state = 579}, + [2056] = {.lex_state = 579}, + [2057] = {.lex_state = 579}, + [2058] = {.lex_state = 579}, + [2059] = {.lex_state = 579}, + [2060] = {.lex_state = 579}, + [2061] = {.lex_state = 579}, + [2062] = {.lex_state = 579}, + [2063] = {.lex_state = 579}, + [2064] = {.lex_state = 579}, + [2065] = {.lex_state = 579}, + [2066] = {.lex_state = 579}, + [2067] = {.lex_state = 579}, + [2068] = {.lex_state = 579}, + [2069] = {.lex_state = 579}, + [2070] = {.lex_state = 579}, + [2071] = {.lex_state = 579}, + [2072] = {.lex_state = 579}, + [2073] = {.lex_state = 579}, + [2074] = {.lex_state = 579}, + [2075] = {.lex_state = 579}, + [2076] = {.lex_state = 579}, + [2077] = {.lex_state = 579}, + [2078] = {.lex_state = 579}, + [2079] = {.lex_state = 579}, + [2080] = {.lex_state = 579}, + [2081] = {.lex_state = 579}, + [2082] = {.lex_state = 579}, + [2083] = {.lex_state = 579}, + [2084] = {.lex_state = 579}, + [2085] = {.lex_state = 579}, + [2086] = {.lex_state = 579}, + [2087] = {.lex_state = 579}, + [2088] = {.lex_state = 579}, + [2089] = {.lex_state = 579}, + [2090] = {.lex_state = 579}, + [2091] = {.lex_state = 579}, + [2092] = {.lex_state = 579}, + [2093] = {.lex_state = 579}, + [2094] = {.lex_state = 579}, + [2095] = {.lex_state = 579}, + [2096] = {.lex_state = 579}, + [2097] = {.lex_state = 579}, + [2098] = {.lex_state = 579}, + [2099] = {.lex_state = 579}, + [2100] = {.lex_state = 43, .external_lex_state = 2}, + [2101] = {.lex_state = 1189}, + [2102] = {.lex_state = 1189}, + [2103] = {.lex_state = 158, .external_lex_state = 2}, + [2104] = {.lex_state = 158, .external_lex_state = 2}, + [2105] = {.lex_state = 1189}, + [2106] = {.lex_state = 1189}, + [2107] = {.lex_state = 19}, + [2108] = {.lex_state = 1189}, + [2109] = {.lex_state = 153, .external_lex_state = 2}, + [2110] = {.lex_state = 579}, + [2111] = {.lex_state = 166, .external_lex_state = 2}, + [2112] = {.lex_state = 143}, + [2113] = {.lex_state = 166, .external_lex_state = 2}, + [2114] = {.lex_state = 579}, + [2115] = {.lex_state = 158, .external_lex_state = 2}, + [2116] = {.lex_state = 36, .external_lex_state = 2}, + [2117] = {.lex_state = 153, .external_lex_state = 2}, + [2118] = {.lex_state = 158, .external_lex_state = 2}, + [2119] = {.lex_state = 579}, + [2120] = {.lex_state = 43, .external_lex_state = 2}, + [2121] = {.lex_state = 166, .external_lex_state = 2}, + [2122] = {.lex_state = 161, .external_lex_state = 2}, + [2123] = {.lex_state = 166, .external_lex_state = 2}, + [2124] = {.lex_state = 161, .external_lex_state = 2}, + [2125] = {.lex_state = 166, .external_lex_state = 2}, + [2126] = {.lex_state = 161, .external_lex_state = 2}, + [2127] = {.lex_state = 88}, + [2128] = {.lex_state = 579}, + [2129] = {.lex_state = 579}, + [2130] = {.lex_state = 579}, + [2131] = {.lex_state = 166, .external_lex_state = 2}, + [2132] = {.lex_state = 166, .external_lex_state = 2}, + [2133] = {.lex_state = 153, .external_lex_state = 2}, + [2134] = {.lex_state = 579}, + [2135] = {.lex_state = 36, .external_lex_state = 2}, + [2136] = {.lex_state = 36, .external_lex_state = 2}, + [2137] = {.lex_state = 36, .external_lex_state = 2}, + [2138] = {.lex_state = 36, .external_lex_state = 2}, + [2139] = {.lex_state = 1190}, + [2140] = {.lex_state = 36, .external_lex_state = 2}, + [2141] = {.lex_state = 43, .external_lex_state = 2}, + [2142] = {.lex_state = 36, .external_lex_state = 2}, + [2143] = {.lex_state = 36, .external_lex_state = 2}, + [2144] = {.lex_state = 36, .external_lex_state = 2}, + [2145] = {.lex_state = 36, .external_lex_state = 2}, + [2146] = {.lex_state = 579}, + [2147] = {.lex_state = 579}, + [2148] = {.lex_state = 579}, + [2149] = {.lex_state = 579}, + [2150] = {.lex_state = 579}, + [2151] = {.lex_state = 579}, + [2152] = {.lex_state = 579}, + [2153] = {.lex_state = 36, .external_lex_state = 2}, + [2154] = {.lex_state = 579}, + [2155] = {.lex_state = 579}, + [2156] = {.lex_state = 579}, + [2157] = {.lex_state = 579}, + [2158] = {.lex_state = 579}, + [2159] = {.lex_state = 1190}, + [2160] = {.lex_state = 36, .external_lex_state = 2}, + [2161] = {.lex_state = 36, .external_lex_state = 2}, + [2162] = {.lex_state = 36, .external_lex_state = 2}, + [2163] = {.lex_state = 36, .external_lex_state = 2}, + [2164] = {.lex_state = 36, .external_lex_state = 2}, + [2165] = {.lex_state = 579}, + [2166] = {.lex_state = 579}, + [2167] = {.lex_state = 579}, + [2168] = {.lex_state = 579}, + [2169] = {.lex_state = 579}, + [2170] = {.lex_state = 579}, + [2171] = {.lex_state = 579}, + [2172] = {.lex_state = 579}, + [2173] = {.lex_state = 579}, + [2174] = {.lex_state = 579}, + [2175] = {.lex_state = 579}, + [2176] = {.lex_state = 579}, + [2177] = {.lex_state = 36, .external_lex_state = 2}, + [2178] = {.lex_state = 1190}, + [2179] = {.lex_state = 48, .external_lex_state = 2}, + [2180] = {.lex_state = 36, .external_lex_state = 2}, + [2181] = {.lex_state = 36, .external_lex_state = 2}, + [2182] = {.lex_state = 48, .external_lex_state = 2}, + [2183] = {.lex_state = 36, .external_lex_state = 2}, + [2184] = {.lex_state = 36, .external_lex_state = 2}, + [2185] = {.lex_state = 48, .external_lex_state = 2}, + [2186] = {.lex_state = 36, .external_lex_state = 2}, + [2187] = {.lex_state = 36, .external_lex_state = 2}, + [2188] = {.lex_state = 36, .external_lex_state = 2}, + [2189] = {.lex_state = 1190}, + [2190] = {.lex_state = 36, .external_lex_state = 2}, + [2191] = {.lex_state = 36, .external_lex_state = 2}, + [2192] = {.lex_state = 36, .external_lex_state = 2}, + [2193] = {.lex_state = 36, .external_lex_state = 2}, + [2194] = {.lex_state = 36, .external_lex_state = 2}, + [2195] = {.lex_state = 1190}, + [2196] = {.lex_state = 36, .external_lex_state = 2}, + [2197] = {.lex_state = 36, .external_lex_state = 2}, + [2198] = {.lex_state = 36, .external_lex_state = 2}, + [2199] = {.lex_state = 1190}, + [2200] = {.lex_state = 1190}, + [2201] = {.lex_state = 36, .external_lex_state = 2}, + [2202] = {.lex_state = 36, .external_lex_state = 2}, + [2203] = {.lex_state = 36, .external_lex_state = 2}, + [2204] = {.lex_state = 36, .external_lex_state = 2}, + [2205] = {.lex_state = 36, .external_lex_state = 2}, + [2206] = {.lex_state = 36, .external_lex_state = 2}, + [2207] = {.lex_state = 36, .external_lex_state = 2}, + [2208] = {.lex_state = 40, .external_lex_state = 2}, + [2209] = {.lex_state = 36, .external_lex_state = 2}, + [2210] = {.lex_state = 36, .external_lex_state = 2}, + [2211] = {.lex_state = 36, .external_lex_state = 2}, + [2212] = {.lex_state = 36, .external_lex_state = 2}, + [2213] = {.lex_state = 579}, + [2214] = {.lex_state = 579}, + [2215] = {.lex_state = 579}, + [2216] = {.lex_state = 579}, + [2217] = {.lex_state = 579}, + [2218] = {.lex_state = 40, .external_lex_state = 2}, + [2219] = {.lex_state = 579}, [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}, + [2221] = {.lex_state = 155, .external_lex_state = 2}, + [2222] = {.lex_state = 155, .external_lex_state = 2}, + [2223] = {.lex_state = 48, .external_lex_state = 2}, + [2224] = {.lex_state = 578}, + [2225] = {.lex_state = 155, .external_lex_state = 2}, + [2226] = {.lex_state = 44, .external_lex_state = 2}, + [2227] = {.lex_state = 155, .external_lex_state = 2}, + [2228] = {.lex_state = 157, .external_lex_state = 2}, + [2229] = {.lex_state = 157, .external_lex_state = 2}, + [2230] = {.lex_state = 157, .external_lex_state = 2}, + [2231] = {.lex_state = 575}, + [2232] = {.lex_state = 157, .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}, + [2234] = {.lex_state = 155, .external_lex_state = 2}, + [2235] = {.lex_state = 46, .external_lex_state = 2}, + [2236] = {.lex_state = 157, .external_lex_state = 2}, + [2237] = {.lex_state = 44, .external_lex_state = 2}, + [2238] = {.lex_state = 575}, + [2239] = {.lex_state = 575}, + [2240] = {.lex_state = 155, .external_lex_state = 2}, + [2241] = {.lex_state = 157, .external_lex_state = 2}, + [2242] = {.lex_state = 45, .external_lex_state = 2}, + [2243] = {.lex_state = 157, .external_lex_state = 2}, + [2244] = {.lex_state = 575}, + [2245] = {.lex_state = 575}, + [2246] = {.lex_state = 48, .external_lex_state = 2}, + [2247] = {.lex_state = 48, .external_lex_state = 2}, + [2248] = {.lex_state = 157, .external_lex_state = 2}, + [2249] = {.lex_state = 45, .external_lex_state = 2}, + [2250] = {.lex_state = 48, .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}, + [2252] = {.lex_state = 157, .external_lex_state = 2}, + [2253] = {.lex_state = 578}, + [2254] = {.lex_state = 46, .external_lex_state = 2}, + [2255] = {.lex_state = 578}, + [2256] = {.lex_state = 578}, + [2257] = {.lex_state = 90}, + [2258] = {.lex_state = 578}, + [2259] = {.lex_state = 47, .external_lex_state = 2}, + [2260] = {.lex_state = 578}, + [2261] = {.lex_state = 578}, + [2262] = {.lex_state = 47, .external_lex_state = 2}, [2263] = {.lex_state = 5}, - [2264] = {.lex_state = 48, .external_lex_state = 2}, - [2265] = {.lex_state = 48, .external_lex_state = 2}, - [2266] = {.lex_state = 48, .external_lex_state = 2}, - [2267] = {.lex_state = 48, .external_lex_state = 2}, - [2268] = {.lex_state = 48, .external_lex_state = 2}, - [2269] = {.lex_state = 48, .external_lex_state = 2}, - [2270] = {.lex_state = 48, .external_lex_state = 2}, - [2271] = {.lex_state = 48, .external_lex_state = 2}, - [2272] = {.lex_state = 48, .external_lex_state = 2}, - [2273] = {.lex_state = 578}, - [2274] = {.lex_state = 48, .external_lex_state = 2}, - [2275] = {.lex_state = 48, .external_lex_state = 2}, - [2276] = {.lex_state = 48, .external_lex_state = 2}, - [2277] = {.lex_state = 48, .external_lex_state = 2}, - [2278] = {.lex_state = 48, .external_lex_state = 2}, - [2279] = {.lex_state = 48, .external_lex_state = 2}, - [2280] = {.lex_state = 48, .external_lex_state = 2}, - [2281] = {.lex_state = 48, .external_lex_state = 2}, - [2282] = {.lex_state = 48, .external_lex_state = 2}, - [2283] = {.lex_state = 631}, - [2284] = {.lex_state = 48, .external_lex_state = 2}, - [2285] = {.lex_state = 48, .external_lex_state = 2}, - [2286] = {.lex_state = 48, .external_lex_state = 2}, - [2287] = {.lex_state = 48, .external_lex_state = 2}, - [2288] = {.lex_state = 48, .external_lex_state = 2}, - [2289] = {.lex_state = 48, .external_lex_state = 2}, - [2290] = {.lex_state = 578}, - [2291] = {.lex_state = 578}, - [2292] = {.lex_state = 578}, - [2293] = {.lex_state = 578}, - [2294] = {.lex_state = 48, .external_lex_state = 2}, - [2295] = {.lex_state = 48, .external_lex_state = 2}, - [2296] = {.lex_state = 5}, - [2297] = {.lex_state = 581}, - [2298] = {.lex_state = 631}, - [2299] = {.lex_state = 632}, - [2300] = {.lex_state = 632}, - [2301] = {.lex_state = 632}, - [2302] = {.lex_state = 48, .external_lex_state = 2}, - [2303] = {.lex_state = 48, .external_lex_state = 2}, - [2304] = {.lex_state = 632}, - [2305] = {.lex_state = 48, .external_lex_state = 2}, - [2306] = {.lex_state = 581}, - [2307] = {.lex_state = 581}, - [2308] = {.lex_state = 581}, - [2309] = {.lex_state = 581}, - [2310] = {.lex_state = 48, .external_lex_state = 2}, - [2311] = {.lex_state = 48, .external_lex_state = 2}, - [2312] = {.lex_state = 48, .external_lex_state = 2}, - [2313] = {.lex_state = 630}, - [2314] = {.lex_state = 581}, - [2315] = {.lex_state = 48, .external_lex_state = 2}, - [2316] = {.lex_state = 48, .external_lex_state = 2}, - [2317] = {.lex_state = 48, .external_lex_state = 2}, - [2318] = {.lex_state = 48, .external_lex_state = 2}, - [2319] = {.lex_state = 48, .external_lex_state = 2}, - [2320] = {.lex_state = 48, .external_lex_state = 2}, - [2321] = {.lex_state = 635}, - [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}, + [2264] = {.lex_state = 47, .external_lex_state = 2}, + [2265] = {.lex_state = 633}, + [2266] = {.lex_state = 47, .external_lex_state = 2}, + [2267] = {.lex_state = 47, .external_lex_state = 2}, + [2268] = {.lex_state = 47, .external_lex_state = 2}, + [2269] = {.lex_state = 47, .external_lex_state = 2}, + [2270] = {.lex_state = 47, .external_lex_state = 2}, + [2271] = {.lex_state = 47, .external_lex_state = 2}, + [2272] = {.lex_state = 47, .external_lex_state = 2}, + [2273] = {.lex_state = 579}, + [2274] = {.lex_state = 47, .external_lex_state = 2}, + [2275] = {.lex_state = 47, .external_lex_state = 2}, + [2276] = {.lex_state = 47, .external_lex_state = 2}, + [2277] = {.lex_state = 579}, + [2278] = {.lex_state = 579}, + [2279] = {.lex_state = 47, .external_lex_state = 2}, + [2280] = {.lex_state = 579}, + [2281] = {.lex_state = 579}, + [2282] = {.lex_state = 47, .external_lex_state = 2}, + [2283] = {.lex_state = 47, .external_lex_state = 2}, + [2284] = {.lex_state = 47, .external_lex_state = 2}, + [2285] = {.lex_state = 47, .external_lex_state = 2}, + [2286] = {.lex_state = 47, .external_lex_state = 2}, + [2287] = {.lex_state = 47, .external_lex_state = 2}, + [2288] = {.lex_state = 47, .external_lex_state = 2}, + [2289] = {.lex_state = 47, .external_lex_state = 2}, + [2290] = {.lex_state = 47, .external_lex_state = 2}, + [2291] = {.lex_state = 47, .external_lex_state = 2}, + [2292] = {.lex_state = 47, .external_lex_state = 2}, + [2293] = {.lex_state = 47, .external_lex_state = 2}, + [2294] = {.lex_state = 47, .external_lex_state = 2}, + [2295] = {.lex_state = 47, .external_lex_state = 2}, + [2296] = {.lex_state = 634}, + [2297] = {.lex_state = 5}, + [2298] = {.lex_state = 582}, + [2299] = {.lex_state = 633}, + [2300] = {.lex_state = 634}, + [2301] = {.lex_state = 47, .external_lex_state = 2}, + [2302] = {.lex_state = 582}, + [2303] = {.lex_state = 632}, + [2304] = {.lex_state = 637}, + [2305] = {.lex_state = 641}, + [2306] = {.lex_state = 47, .external_lex_state = 2}, + [2307] = {.lex_state = 47, .external_lex_state = 2}, + [2308] = {.lex_state = 47, .external_lex_state = 2}, + [2309] = {.lex_state = 47, .external_lex_state = 2}, + [2310] = {.lex_state = 47, .external_lex_state = 2}, + [2311] = {.lex_state = 47, .external_lex_state = 2}, + [2312] = {.lex_state = 47, .external_lex_state = 2}, + [2313] = {.lex_state = 47, .external_lex_state = 2}, + [2314] = {.lex_state = 47, .external_lex_state = 2}, + [2315] = {.lex_state = 47, .external_lex_state = 2}, + [2316] = {.lex_state = 47, .external_lex_state = 2}, + [2317] = {.lex_state = 634}, + [2318] = {.lex_state = 634}, + [2319] = {.lex_state = 582}, + [2320] = {.lex_state = 582}, + [2321] = {.lex_state = 582}, + [2322] = {.lex_state = 582}, + [2323] = {.lex_state = 637}, + [2324] = {.lex_state = 635}, + [2325] = {.lex_state = 645}, + [2326] = {.lex_state = 635}, + [2327] = {.lex_state = 643}, + [2328] = {.lex_state = 641}, + [2329] = {.lex_state = 643}, + [2330] = {.lex_state = 632}, + [2331] = {.lex_state = 632}, + [2332] = {.lex_state = 582}, + [2333] = {.lex_state = 582}, + [2334] = {.lex_state = 582}, + [2335] = {.lex_state = 582}, + [2336] = {.lex_state = 632}, + [2337] = {.lex_state = 576}, + [2338] = {.lex_state = 576}, + [2339] = {.lex_state = 576}, + [2340] = {.lex_state = 643}, + [2341] = {.lex_state = 645}, + [2342] = {.lex_state = 639}, + [2343] = {.lex_state = 632}, + [2344] = {.lex_state = 632}, + [2345] = {.lex_state = 632}, + [2346] = {.lex_state = 632}, + [2347] = {.lex_state = 576}, + [2348] = {.lex_state = 635}, + [2349] = {.lex_state = 635}, + [2350] = {.lex_state = 638}, + [2351] = {.lex_state = 642}, + [2352] = {.lex_state = 647}, + [2353] = {.lex_state = 645}, + [2354] = {.lex_state = 576}, [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}, + [2356] = {.lex_state = 576}, + [2357] = {.lex_state = 576}, + [2358] = {.lex_state = 645}, + [2359] = {.lex_state = 645}, + [2360] = {.lex_state = 579}, + [2361] = {.lex_state = 579}, + [2362] = {.lex_state = 644}, + [2363] = {.lex_state = 170, .external_lex_state = 2}, + [2364] = {.lex_state = 649}, [2365] = {.lex_state = 645}, - [2366] = {.lex_state = 647}, - [2367] = {.lex_state = 577}, - [2368] = {.lex_state = 640}, - [2369] = {.lex_state = 637}, - [2370] = {.lex_state = 577}, - [2371] = {.lex_state = 642}, - [2372] = {.lex_state = 172, .external_lex_state = 2}, - [2373] = {.lex_state = 172, .external_lex_state = 2}, - [2374] = {.lex_state = 2}, - [2375] = {.lex_state = 643}, - [2376] = {.lex_state = 172, .external_lex_state = 2}, - [2377] = {.lex_state = 630}, - [2378] = {.lex_state = 51}, - [2379] = {.lex_state = 643}, - [2380] = {.lex_state = 642}, - [2381] = {.lex_state = 630}, - [2382] = {.lex_state = 577}, - [2383] = {.lex_state = 52}, - [2384] = {.lex_state = 646}, - [2385] = {.lex_state = 172, .external_lex_state = 2}, - [2386] = {.lex_state = 49, .external_lex_state = 2}, - [2387] = {.lex_state = 577}, - [2388] = {.lex_state = 576}, - [2389] = {.lex_state = 577}, - [2390] = {.lex_state = 575}, - [2391] = {.lex_state = 644}, - [2392] = {.lex_state = 51}, - [2393] = {.lex_state = 642}, - [2394] = {.lex_state = 576}, - [2395] = {.lex_state = 53}, - [2396] = {.lex_state = 55}, - [2397] = {.lex_state = 644}, - [2398] = {.lex_state = 649}, - [2399] = {.lex_state = 642}, - [2400] = {.lex_state = 649}, - [2401] = {.lex_state = 649}, - [2402] = {.lex_state = 172, .external_lex_state = 2}, - [2403] = {.lex_state = 575}, - [2404] = {.lex_state = 576}, - [2405] = {.lex_state = 647}, - [2406] = {.lex_state = 649}, - [2407] = {.lex_state = 577}, - [2408] = {.lex_state = 575}, - [2409] = {.lex_state = 649}, - [2410] = {.lex_state = 644}, - [2411] = {.lex_state = 575}, - [2412] = {.lex_state = 576}, - [2413] = {.lex_state = 577}, - [2414] = {.lex_state = 577}, - [2415] = {.lex_state = 577}, - [2416] = {.lex_state = 577}, - [2417] = {.lex_state = 577}, - [2418] = {.lex_state = 52}, - [2419] = {.lex_state = 647}, - [2420] = {.lex_state = 575}, - [2421] = {.lex_state = 644}, - [2422] = {.lex_state = 575}, - [2423] = {.lex_state = 638}, - [2424] = {.lex_state = 649}, - [2425] = {.lex_state = 576}, - [2426] = {.lex_state = 644}, - [2427] = {.lex_state = 51}, - [2428] = {.lex_state = 51}, - [2429] = {.lex_state = 51}, - [2430] = {.lex_state = 576}, - [2431] = {.lex_state = 638}, - [2432] = {.lex_state = 576}, - [2433] = {.lex_state = 649}, - [2434] = {.lex_state = 576}, - [2435] = {.lex_state = 653}, - [2436] = {.lex_state = 649}, - [2437] = {.lex_state = 51}, - [2438] = {.lex_state = 649}, - [2439] = {.lex_state = 49, .external_lex_state = 2}, - [2440] = {.lex_state = 644}, - [2441] = {.lex_state = 576}, - [2442] = {.lex_state = 56}, - [2443] = {.lex_state = 646}, - [2444] = {.lex_state = 57}, - [2445] = {.lex_state = 2}, - [2446] = {.lex_state = 576}, - [2447] = {.lex_state = 651}, - [2448] = {.lex_state = 644}, - [2449] = {.lex_state = 648}, - [2450] = {.lex_state = 644}, - [2451] = {.lex_state = 576}, - [2452] = {.lex_state = 56}, - [2453] = {.lex_state = 649}, - [2454] = {.lex_state = 576}, - [2455] = {.lex_state = 576}, - [2456] = {.lex_state = 576}, - [2457] = {.lex_state = 576}, + [2366] = {.lex_state = 645}, + [2367] = {.lex_state = 639}, + [2368] = {.lex_state = 578}, + [2369] = {.lex_state = 170, .external_lex_state = 2}, + [2370] = {.lex_state = 170, .external_lex_state = 2}, + [2371] = {.lex_state = 50}, + [2372] = {.lex_state = 578}, + [2373] = {.lex_state = 578}, + [2374] = {.lex_state = 647}, + [2375] = {.lex_state = 645}, + [2376] = {.lex_state = 575}, + [2377] = {.lex_state = 644}, + [2378] = {.lex_state = 632}, + [2379] = {.lex_state = 632}, + [2380] = {.lex_state = 632}, + [2381] = {.lex_state = 578}, + [2382] = {.lex_state = 638}, + [2383] = {.lex_state = 632}, + [2384] = {.lex_state = 642}, + [2385] = {.lex_state = 170, .external_lex_state = 2}, + [2386] = {.lex_state = 646}, + [2387] = {.lex_state = 170, .external_lex_state = 2}, + [2388] = {.lex_state = 649}, + [2389] = {.lex_state = 646}, + [2390] = {.lex_state = 51}, + [2391] = {.lex_state = 651}, + [2392] = {.lex_state = 577}, + [2393] = {.lex_state = 649}, + [2394] = {.lex_state = 648}, + [2395] = {.lex_state = 576}, + [2396] = {.lex_state = 651}, + [2397] = {.lex_state = 578}, + [2398] = {.lex_state = 576}, + [2399] = {.lex_state = 577}, + [2400] = {.lex_state = 651}, + [2401] = {.lex_state = 646}, + [2402] = {.lex_state = 577}, + [2403] = {.lex_state = 170, .external_lex_state = 2}, + [2404] = {.lex_state = 640}, + [2405] = {.lex_state = 48, .external_lex_state = 2}, + [2406] = {.lex_state = 651}, + [2407] = {.lex_state = 644}, + [2408] = {.lex_state = 651}, + [2409] = {.lex_state = 51}, + [2410] = {.lex_state = 578}, + [2411] = {.lex_state = 578}, + [2412] = {.lex_state = 578}, + [2413] = {.lex_state = 578}, + [2414] = {.lex_state = 646}, + [2415] = {.lex_state = 578}, + [2416] = {.lex_state = 644}, + [2417] = {.lex_state = 578}, + [2418] = {.lex_state = 646}, + [2419] = {.lex_state = 170, .external_lex_state = 2}, + [2420] = {.lex_state = 52}, + [2421] = {.lex_state = 578}, + [2422] = {.lex_state = 54}, + [2423] = {.lex_state = 649}, + [2424] = {.lex_state = 50}, + [2425] = {.lex_state = 577}, + [2426] = {.lex_state = 48, .external_lex_state = 2}, + [2427] = {.lex_state = 646}, + [2428] = {.lex_state = 50}, + [2429] = {.lex_state = 646}, + [2430] = {.lex_state = 646}, + [2431] = {.lex_state = 646}, + [2432] = {.lex_state = 648}, + [2433] = {.lex_state = 651}, + [2434] = {.lex_state = 640}, + [2435] = {.lex_state = 577}, + [2436] = {.lex_state = 651}, + [2437] = {.lex_state = 577}, + [2438] = {.lex_state = 577}, + [2439] = {.lex_state = 577}, + [2440] = {.lex_state = 577}, + [2441] = {.lex_state = 651}, + [2442] = {.lex_state = 655}, + [2443] = {.lex_state = 577}, + [2444] = {.lex_state = 577}, + [2445] = {.lex_state = 651}, + [2446] = {.lex_state = 653}, + [2447] = {.lex_state = 55}, + [2448] = {.lex_state = 577}, + [2449] = {.lex_state = 650}, + [2450] = {.lex_state = 50}, + [2451] = {.lex_state = 575}, + [2452] = {.lex_state = 50}, + [2453] = {.lex_state = 50}, + [2454] = {.lex_state = 650}, + [2455] = {.lex_state = 577}, + [2456] = {.lex_state = 577}, + [2457] = {.lex_state = 55}, [2458] = {.lex_state = 576}, - [2459] = {.lex_state = 575}, - [2460] = {.lex_state = 648}, - [2461] = {.lex_state = 2}, + [2459] = {.lex_state = 56}, + [2460] = {.lex_state = 577}, + [2461] = {.lex_state = 576}, [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}, + [2463] = {.lex_state = 577}, + [2464] = {.lex_state = 651}, + [2465] = {.lex_state = 578}, + [2466] = {.lex_state = 56}, + [2467] = {.lex_state = 577}, + [2468] = {.lex_state = 578}, + [2469] = {.lex_state = 653}, [2470] = {.lex_state = 577}, - [2471] = {.lex_state = 655}, - [2472] = {.lex_state = 576}, - [2473] = {.lex_state = 57}, + [2471] = {.lex_state = 577}, + [2472] = {.lex_state = 154, .external_lex_state = 2}, + [2473] = {.lex_state = 577}, [2474] = {.lex_state = 577}, - [2475] = {.lex_state = 577}, - [2476] = {.lex_state = 2}, - [2477] = {.lex_state = 577}, + [2475] = {.lex_state = 646}, + [2476] = {.lex_state = 652}, + [2477] = {.lex_state = 2}, [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}, + [2479] = {.lex_state = 57}, + [2480] = {.lex_state = 657}, + [2481] = {.lex_state = 652}, + [2482] = {.lex_state = 652}, + [2483] = {.lex_state = 2}, + [2484] = {.lex_state = 578}, + [2485] = {.lex_state = 154, .external_lex_state = 2}, + [2486] = {.lex_state = 577}, + [2487] = {.lex_state = 578}, + [2488] = {.lex_state = 578}, + [2489] = {.lex_state = 650}, + [2490] = {.lex_state = 578}, + [2491] = {.lex_state = 56}, + [2492] = {.lex_state = 655}, + [2493] = {.lex_state = 578}, [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}, + [2495] = {.lex_state = 2}, + [2496] = {.lex_state = 56}, + [2497] = {.lex_state = 154, .external_lex_state = 2}, + [2498] = {.lex_state = 652}, + [2499] = {.lex_state = 154, .external_lex_state = 2}, + [2500] = {.lex_state = 578}, [2501] = {.lex_state = 577}, - [2502] = {.lex_state = 577}, - [2503] = {.lex_state = 577}, - [2504] = {.lex_state = 653}, - [2505] = {.lex_state = 650}, - [2506] = {.lex_state = 576}, - [2507] = {.lex_state = 57}, - [2508] = {.lex_state = 2}, - [2509] = {.lex_state = 650}, - [2510] = {.lex_state = 648}, - [2511] = {.lex_state = 2}, - [2512] = {.lex_state = 576}, - [2513] = {.lex_state = 577}, - [2514] = {.lex_state = 650}, - [2515] = {.lex_state = 657}, - [2516] = {.lex_state = 576}, - [2517] = {.lex_state = 2}, - [2518] = {.lex_state = 576}, - [2519] = {.lex_state = 576}, + [2502] = {.lex_state = 53}, + [2503] = {.lex_state = 652}, + [2504] = {.lex_state = 2}, + [2505] = {.lex_state = 657}, + [2506] = {.lex_state = 578}, + [2507] = {.lex_state = 578}, + [2508] = {.lex_state = 576}, + [2509] = {.lex_state = 577}, + [2510] = {.lex_state = 650}, + [2511] = {.lex_state = 578}, + [2512] = {.lex_state = 578}, + [2513] = {.lex_state = 578}, + [2514] = {.lex_state = 578}, + [2515] = {.lex_state = 578}, + [2516] = {.lex_state = 577}, + [2517] = {.lex_state = 578}, + [2518] = {.lex_state = 652}, + [2519] = {.lex_state = 577}, [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}, + [2521] = {.lex_state = 2}, + [2522] = {.lex_state = 659}, + [2523] = {.lex_state = 576}, + [2524] = {.lex_state = 2}, + [2525] = {.lex_state = 652}, + [2526] = {.lex_state = 577}, + [2527] = {.lex_state = 577}, + [2528] = {.lex_state = 659}, + [2529] = {.lex_state = 2}, [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}, + [2531] = {.lex_state = 659}, + [2532] = {.lex_state = 659}, + [2533] = {.lex_state = 2}, + [2534] = {.lex_state = 656}, + [2535] = {.lex_state = 659}, + [2536] = {.lex_state = 659}, + [2537] = {.lex_state = 58}, [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}, + [2539] = {.lex_state = 2}, + [2540] = {.lex_state = 577}, + [2541] = {.lex_state = 576}, + [2542] = {.lex_state = 654}, + [2543] = {.lex_state = 652}, + [2544] = {.lex_state = 657}, + [2545] = {.lex_state = 577}, + [2546] = {.lex_state = 577}, + [2547] = {.lex_state = 576}, + [2548] = {.lex_state = 576}, + [2549] = {.lex_state = 577}, + [2550] = {.lex_state = 578}, [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}, + [2552] = {.lex_state = 576}, + [2553] = {.lex_state = 652}, + [2554] = {.lex_state = 659}, + [2555] = {.lex_state = 577}, + [2556] = {.lex_state = 578}, + [2557] = {.lex_state = 659}, + [2558] = {.lex_state = 652}, + [2559] = {.lex_state = 659}, + [2560] = {.lex_state = 577}, + [2561] = {.lex_state = 577}, + [2562] = {.lex_state = 657}, [2563] = {.lex_state = 577}, [2564] = {.lex_state = 577}, - [2565] = {.lex_state = 650}, - [2566] = {.lex_state = 576}, + [2565] = {.lex_state = 577}, + [2566] = {.lex_state = 578}, [2567] = {.lex_state = 577}, - [2568] = {.lex_state = 2}, - [2569] = {.lex_state = 657}, - [2570] = {.lex_state = 2}, - [2571] = {.lex_state = 657}, - [2572] = {.lex_state = 655}, + [2568] = {.lex_state = 577}, + [2569] = {.lex_state = 578}, + [2570] = {.lex_state = 659}, + [2571] = {.lex_state = 578}, + [2572] = {.lex_state = 2}, [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}, + [2574] = {.lex_state = 576}, + [2575] = {.lex_state = 576}, + [2576] = {.lex_state = 2}, + [2577] = {.lex_state = 578}, + [2578] = {.lex_state = 659}, + [2579] = {.lex_state = 2}, + [2580] = {.lex_state = 2}, + [2581] = {.lex_state = 2}, + [2582] = {.lex_state = 2}, + [2583] = {.lex_state = 659}, [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}, + [2585] = {.lex_state = 578}, + [2586] = {.lex_state = 578}, + [2587] = {.lex_state = 578}, + [2588] = {.lex_state = 578}, + [2589] = {.lex_state = 659}, + [2590] = {.lex_state = 578}, + [2591] = {.lex_state = 578}, [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}, + [2593] = {.lex_state = 58}, + [2594] = {.lex_state = 638}, + [2595] = {.lex_state = 2}, + [2596] = {.lex_state = 2}, + [2597] = {.lex_state = 2}, + [2598] = {.lex_state = 638}, + [2599] = {.lex_state = 2}, + [2600] = {.lex_state = 59}, + [2601] = {.lex_state = 638}, + [2602] = {.lex_state = 59}, + [2603] = {.lex_state = 577}, + [2604] = {.lex_state = 578}, + [2605] = {.lex_state = 578}, + [2606] = {.lex_state = 578}, + [2607] = {.lex_state = 2}, + [2608] = {.lex_state = 659}, + [2609] = {.lex_state = 659}, + [2610] = {.lex_state = 577}, + [2611] = {.lex_state = 577}, + [2612] = {.lex_state = 577}, [2613] = {.lex_state = 577}, - [2614] = {.lex_state = 657}, - [2615] = {.lex_state = 640}, - [2616] = {.lex_state = 2}, - [2617] = {.lex_state = 576}, - [2618] = {.lex_state = 657}, - [2619] = {.lex_state = 657}, - [2620] = {.lex_state = 657}, - [2621] = {.lex_state = 2}, - [2622] = {.lex_state = 640}, - [2623] = {.lex_state = 2}, - [2624] = {.lex_state = 2}, - [2625] = {.lex_state = 576}, - [2626] = {.lex_state = 657}, - [2627] = {.lex_state = 640}, - [2628] = {.lex_state = 576}, - [2629] = {.lex_state = 654}, - [2630] = {.lex_state = 576}, + [2614] = {.lex_state = 577}, + [2615] = {.lex_state = 658}, + [2616] = {.lex_state = 659}, + [2617] = {.lex_state = 2}, + [2618] = {.lex_state = 2}, + [2619] = {.lex_state = 658}, + [2620] = {.lex_state = 577}, + [2621] = {.lex_state = 577}, + [2622] = {.lex_state = 659}, + [2623] = {.lex_state = 576}, + [2624] = {.lex_state = 59}, + [2625] = {.lex_state = 577}, + [2626] = {.lex_state = 638}, + [2627] = {.lex_state = 59}, + [2628] = {.lex_state = 659}, + [2629] = {.lex_state = 59}, + [2630] = {.lex_state = 638}, [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}, + [2632] = {.lex_state = 110}, + [2633] = {.lex_state = 2}, + [2634] = {.lex_state = 659}, + [2635] = {.lex_state = 661}, + [2636] = {.lex_state = 638}, + [2637] = {.lex_state = 577}, + [2638] = {.lex_state = 638}, + [2639] = {.lex_state = 577}, + [2640] = {.lex_state = 577}, + [2641] = {.lex_state = 638}, + [2642] = {.lex_state = 638}, + [2643] = {.lex_state = 638}, + [2644] = {.lex_state = 638}, + [2645] = {.lex_state = 656}, + [2646] = {.lex_state = 659}, + [2647] = {.lex_state = 659}, + [2648] = {.lex_state = 659}, + [2649] = {.lex_state = 576}, + [2650] = {.lex_state = 659}, + [2651] = {.lex_state = 659}, + [2652] = {.lex_state = 659}, + [2653] = {.lex_state = 654}, + [2654] = {.lex_state = 659}, + [2655] = {.lex_state = 659}, [2656] = {.lex_state = 577}, [2657] = {.lex_state = 577}, [2658] = {.lex_state = 577}, - [2659] = {.lex_state = 577}, - [2660] = {.lex_state = 577}, - [2661] = {.lex_state = 577}, - [2662] = {.lex_state = 577}, - [2663] = {.lex_state = 577}, - [2664] = {.lex_state = 577}, - [2665] = {.lex_state = 577}, - [2666] = {.lex_state = 577}, - [2667] = {.lex_state = 577}, - [2668] = {.lex_state = 577}, - [2669] = {.lex_state = 577}, - [2670] = {.lex_state = 577}, - [2671] = {.lex_state = 577}, - [2672] = {.lex_state = 577}, - [2673] = {.lex_state = 577}, - [2674] = {.lex_state = 577}, - [2675] = {.lex_state = 577}, - [2676] = {.lex_state = 577}, - [2677] = {.lex_state = 577}, - [2678] = {.lex_state = 577}, - [2679] = {.lex_state = 577}, - [2680] = {.lex_state = 577}, - [2681] = {.lex_state = 652}, - [2682] = {.lex_state = 640}, - [2683] = {.lex_state = 61}, - [2684] = {.lex_state = 577}, - [2685] = {.lex_state = 577}, - [2686] = {.lex_state = 577}, - [2687] = {.lex_state = 577}, - [2688] = {.lex_state = 577}, - [2689] = {.lex_state = 577}, - [2690] = {.lex_state = 577}, - [2691] = {.lex_state = 577}, - [2692] = {.lex_state = 577}, - [2693] = {.lex_state = 577}, - [2694] = {.lex_state = 577}, - [2695] = {.lex_state = 658}, - [2696] = {.lex_state = 656}, - [2697] = {.lex_state = 577}, - [2698] = {.lex_state = 577}, - [2699] = {.lex_state = 658}, - [2700] = {.lex_state = 577}, - [2701] = {.lex_state = 640}, - [2702] = {.lex_state = 577}, - [2703] = {.lex_state = 577}, - [2704] = {.lex_state = 640}, - [2705] = {.lex_state = 640}, - [2706] = {.lex_state = 640}, - [2707] = {.lex_state = 658}, - [2708] = {.lex_state = 658}, - [2709] = {.lex_state = 656}, - [2710] = {.lex_state = 658}, - [2711] = {.lex_state = 576}, - [2712] = {.lex_state = 577}, - [2713] = {.lex_state = 658}, - [2714] = {.lex_state = 577}, - [2715] = {.lex_state = 577}, - [2716] = {.lex_state = 658}, - [2717] = {.lex_state = 658}, - [2718] = {.lex_state = 577}, - [2719] = {.lex_state = 577}, - [2720] = {.lex_state = 577}, - [2721] = {.lex_state = 659}, - [2722] = {.lex_state = 658}, - [2723] = {.lex_state = 658}, - [2724] = {.lex_state = 577}, - [2725] = {.lex_state = 577}, - [2726] = {.lex_state = 577}, - [2727] = {.lex_state = 577}, - [2728] = {.lex_state = 640}, - [2729] = {.lex_state = 577}, - [2730] = {.lex_state = 577}, - [2731] = {.lex_state = 577}, - [2732] = {.lex_state = 577}, - [2733] = {.lex_state = 630}, - [2734] = {.lex_state = 630}, - [2735] = {.lex_state = 577}, - [2736] = {.lex_state = 630}, - [2737] = {.lex_state = 630}, - [2738] = {.lex_state = 577}, - [2739] = {.lex_state = 577}, - [2740] = {.lex_state = 577}, - [2741] = {.lex_state = 577}, - [2742] = {.lex_state = 577}, - [2743] = {.lex_state = 577}, - [2744] = {.lex_state = 577}, - [2745] = {.lex_state = 577}, - [2746] = {.lex_state = 577}, - [2747] = {.lex_state = 577}, + [2659] = {.lex_state = 578}, + [2660] = {.lex_state = 578}, + [2661] = {.lex_state = 2}, + [2662] = {.lex_state = 578}, + [2663] = {.lex_state = 578}, + [2664] = {.lex_state = 578}, + [2665] = {.lex_state = 578}, + [2666] = {.lex_state = 578}, + [2667] = {.lex_state = 578}, + [2668] = {.lex_state = 578}, + [2669] = {.lex_state = 578}, + [2670] = {.lex_state = 2}, + [2671] = {.lex_state = 2}, + [2672] = {.lex_state = 2}, + [2673] = {.lex_state = 2}, + [2674] = {.lex_state = 2}, + [2675] = {.lex_state = 2}, + [2676] = {.lex_state = 578}, + [2677] = {.lex_state = 578}, + [2678] = {.lex_state = 578}, + [2679] = {.lex_state = 578}, + [2680] = {.lex_state = 578}, + [2681] = {.lex_state = 578}, + [2682] = {.lex_state = 576}, + [2683] = {.lex_state = 625}, + [2684] = {.lex_state = 660}, + [2685] = {.lex_state = 632}, + [2686] = {.lex_state = 578}, + [2687] = {.lex_state = 578}, + [2688] = {.lex_state = 660}, + [2689] = {.lex_state = 578}, + [2690] = {.lex_state = 578}, + [2691] = {.lex_state = 578}, + [2692] = {.lex_state = 578}, + [2693] = {.lex_state = 578}, + [2694] = {.lex_state = 578}, + [2695] = {.lex_state = 578}, + [2696] = {.lex_state = 578}, + [2697] = {.lex_state = 578}, + [2698] = {.lex_state = 578}, + [2699] = {.lex_state = 578}, + [2700] = {.lex_state = 578}, + [2701] = {.lex_state = 578}, + [2702] = {.lex_state = 578}, + [2703] = {.lex_state = 578}, + [2704] = {.lex_state = 578}, + [2705] = {.lex_state = 2}, + [2706] = {.lex_state = 578}, + [2707] = {.lex_state = 578}, + [2708] = {.lex_state = 578}, + [2709] = {.lex_state = 578}, + [2710] = {.lex_state = 578}, + [2711] = {.lex_state = 578}, + [2712] = {.lex_state = 638}, + [2713] = {.lex_state = 578}, + [2714] = {.lex_state = 578}, + [2715] = {.lex_state = 578}, + [2716] = {.lex_state = 578}, + [2717] = {.lex_state = 638}, + [2718] = {.lex_state = 625}, + [2719] = {.lex_state = 659}, + [2720] = {.lex_state = 578}, + [2721] = {.lex_state = 578}, + [2722] = {.lex_state = 578}, + [2723] = {.lex_state = 578}, + [2724] = {.lex_state = 578}, + [2725] = {.lex_state = 2}, + [2726] = {.lex_state = 638}, + [2727] = {.lex_state = 638}, + [2728] = {.lex_state = 638}, + [2729] = {.lex_state = 578}, + [2730] = {.lex_state = 578}, + [2731] = {.lex_state = 578}, + [2732] = {.lex_state = 578}, + [2733] = {.lex_state = 578}, + [2734] = {.lex_state = 578}, + [2735] = {.lex_state = 632}, + [2736] = {.lex_state = 632}, + [2737] = {.lex_state = 578}, + [2738] = {.lex_state = 632}, + [2739] = {.lex_state = 578}, + [2740] = {.lex_state = 578}, + [2741] = {.lex_state = 632}, + [2742] = {.lex_state = 578}, + [2743] = {.lex_state = 660}, + [2744] = {.lex_state = 658}, + [2745] = {.lex_state = 578}, + [2746] = {.lex_state = 578}, + [2747] = {.lex_state = 578}, [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}, + [2749] = {.lex_state = 2}, + [2750] = {.lex_state = 578}, + [2751] = {.lex_state = 578}, + [2752] = {.lex_state = 660}, + [2753] = {.lex_state = 2}, + [2754] = {.lex_state = 660}, + [2755] = {.lex_state = 578}, + [2756] = {.lex_state = 578}, + [2757] = {.lex_state = 578}, + [2758] = {.lex_state = 578}, + [2759] = {.lex_state = 578}, + [2760] = {.lex_state = 578}, + [2761] = {.lex_state = 578}, + [2762] = {.lex_state = 578}, + [2763] = {.lex_state = 578}, + [2764] = {.lex_state = 578}, + [2765] = {.lex_state = 578}, + [2766] = {.lex_state = 578}, + [2767] = {.lex_state = 660}, + [2768] = {.lex_state = 578}, + [2769] = {.lex_state = 578}, + [2770] = {.lex_state = 578}, + [2771] = {.lex_state = 661}, + [2772] = {.lex_state = 578}, + [2773] = {.lex_state = 578}, + [2774] = {.lex_state = 578}, + [2775] = {.lex_state = 578}, + [2776] = {.lex_state = 638}, + [2777] = {.lex_state = 660}, [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}, + [2779] = {.lex_state = 660}, + [2780] = {.lex_state = 578}, + [2781] = {.lex_state = 658}, + [2782] = {.lex_state = 578}, + [2783] = {.lex_state = 625}, + [2784] = {.lex_state = 578}, + [2785] = {.lex_state = 578}, + [2786] = {.lex_state = 578}, + [2787] = {.lex_state = 578}, + [2788] = {.lex_state = 660}, + [2789] = {.lex_state = 578}, + [2790] = {.lex_state = 638}, + [2791] = {.lex_state = 578}, + [2792] = {.lex_state = 578}, + [2793] = {.lex_state = 578}, + [2794] = {.lex_state = 578}, + [2795] = {.lex_state = 578}, + [2796] = {.lex_state = 578}, + [2797] = {.lex_state = 578}, [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}, + [2799] = {.lex_state = 578}, + [2800] = {.lex_state = 61}, + [2801] = {.lex_state = 578}, + [2802] = {.lex_state = 578}, + [2803] = {.lex_state = 638}, + [2804] = {.lex_state = 578}, + [2805] = {.lex_state = 578}, [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}, + [2807] = {.lex_state = 578}, + [2808] = {.lex_state = 578}, + [2809] = {.lex_state = 638}, + [2810] = {.lex_state = 578}, + [2811] = {.lex_state = 578}, + [2812] = {.lex_state = 60}, + [2813] = {.lex_state = 660}, + [2814] = {.lex_state = 578}, + [2815] = {.lex_state = 654}, + [2816] = {.lex_state = 638}, + [2817] = {.lex_state = 638}, + [2818] = {.lex_state = 578}, + [2819] = {.lex_state = 660}, + [2820] = {.lex_state = 578}, + [2821] = {.lex_state = 660}, + [2822] = {.lex_state = 578}, + [2823] = {.lex_state = 578}, + [2824] = {.lex_state = 578}, + [2825] = {.lex_state = 578}, + [2826] = {.lex_state = 576}, + [2827] = {.lex_state = 625}, + [2828] = {.lex_state = 576}, + [2829] = {.lex_state = 578}, [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}, + [2831] = {.lex_state = 578}, + [2832] = {.lex_state = 578}, + [2833] = {.lex_state = 660}, + [2834] = {.lex_state = 578}, + [2835] = {.lex_state = 578}, + [2836] = {.lex_state = 578}, + [2837] = {.lex_state = 578}, + [2838] = {.lex_state = 578}, + [2839] = {.lex_state = 578}, + [2840] = {.lex_state = 578}, + [2841] = {.lex_state = 578}, + [2842] = {.lex_state = 578}, + [2843] = {.lex_state = 576}, + [2844] = {.lex_state = 2}, + [2845] = {.lex_state = 632}, + [2846] = {.lex_state = 632}, [2847] = {.lex_state = 2}, - [2848] = {.lex_state = 126, .external_lex_state = 2}, - [2849] = {.lex_state = 577}, - [2850] = {.lex_state = 577}, - [2851] = {.lex_state = 577}, + [2848] = {.lex_state = 2}, + [2849] = {.lex_state = 578}, + [2850] = {.lex_state = 578}, + [2851] = {.lex_state = 2}, [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}, + [2853] = {.lex_state = 2}, + [2854] = {.lex_state = 578}, + [2855] = {.lex_state = 632}, + [2856] = {.lex_state = 578}, + [2857] = {.lex_state = 65}, + [2858] = {.lex_state = 632}, + [2859] = {.lex_state = 2}, + [2860] = {.lex_state = 578}, + [2861] = {.lex_state = 2}, + [2862] = {.lex_state = 2}, + [2863] = {.lex_state = 626}, + [2864] = {.lex_state = 576}, + [2865] = {.lex_state = 2}, [2866] = {.lex_state = 2}, - [2867] = {.lex_state = 624}, + [2867] = {.lex_state = 110}, [2868] = {.lex_state = 2}, - [2869] = {.lex_state = 112}, - [2870] = {.lex_state = 112}, - [2871] = {.lex_state = 2}, - [2872] = {.lex_state = 658}, - [2873] = {.lex_state = 658}, - [2874] = {.lex_state = 112}, - [2875] = {.lex_state = 658}, - [2876] = {.lex_state = 658}, - [2877] = {.lex_state = 630}, - [2878] = {.lex_state = 630}, - [2879] = {.lex_state = 2}, - [2880] = {.lex_state = 2}, - [2881] = {.lex_state = 630}, - [2882] = {.lex_state = 652}, - [2883] = {.lex_state = 63}, - [2884] = {.lex_state = 2}, - [2885] = {.lex_state = 576}, - [2886] = {.lex_state = 2}, - [2887] = {.lex_state = 2}, - [2888] = {.lex_state = 658}, - [2889] = {.lex_state = 2}, - [2890] = {.lex_state = 577}, - [2891] = {.lex_state = 577}, - [2892] = {.lex_state = 66}, - [2893] = {.lex_state = 576}, - [2894] = {.lex_state = 658}, - [2895] = {.lex_state = 576}, - [2896] = {.lex_state = 658}, - [2897] = {.lex_state = 576}, - [2898] = {.lex_state = 71}, - [2899] = {.lex_state = 2}, - [2900] = {.lex_state = 2}, - [2901] = {.lex_state = 2}, - [2902] = {.lex_state = 2}, - [2903] = {.lex_state = 658}, - [2904] = {.lex_state = 630}, - [2905] = {.lex_state = 624}, - [2906] = {.lex_state = 2}, - [2907] = {.lex_state = 576}, - [2908] = {.lex_state = 576}, - [2909] = {.lex_state = 2}, - [2910] = {.lex_state = 2}, - [2911] = {.lex_state = 576}, - [2912] = {.lex_state = 2}, - [2913] = {.lex_state = 2}, - [2914] = {.lex_state = 2}, + [2869] = {.lex_state = 2}, + [2870] = {.lex_state = 660}, + [2871] = {.lex_state = 660}, + [2872] = {.lex_state = 660}, + [2873] = {.lex_state = 2}, + [2874] = {.lex_state = 2}, + [2875] = {.lex_state = 2}, + [2876] = {.lex_state = 577}, + [2877] = {.lex_state = 577}, + [2878] = {.lex_state = 660}, + [2879] = {.lex_state = 660}, + [2880] = {.lex_state = 660}, + [2881] = {.lex_state = 2}, + [2882] = {.lex_state = 578}, + [2883] = {.lex_state = 2}, + [2884] = {.lex_state = 578}, + [2885] = {.lex_state = 578}, + [2886] = {.lex_state = 578}, + [2887] = {.lex_state = 578}, + [2888] = {.lex_state = 626}, + [2889] = {.lex_state = 578}, + [2890] = {.lex_state = 578}, + [2891] = {.lex_state = 578}, + [2892] = {.lex_state = 578}, + [2893] = {.lex_state = 578}, + [2894] = {.lex_state = 578}, + [2895] = {.lex_state = 578}, + [2896] = {.lex_state = 578}, + [2897] = {.lex_state = 578}, + [2898] = {.lex_state = 578}, + [2899] = {.lex_state = 110}, + [2900] = {.lex_state = 660}, + [2901] = {.lex_state = 660}, + [2902] = {.lex_state = 578}, + [2903] = {.lex_state = 578}, + [2904] = {.lex_state = 660}, + [2905] = {.lex_state = 577}, + [2906] = {.lex_state = 660}, + [2907] = {.lex_state = 577}, + [2908] = {.lex_state = 577}, + [2909] = {.lex_state = 577}, + [2910] = {.lex_state = 124, .external_lex_state = 2}, + [2911] = {.lex_state = 660}, + [2912] = {.lex_state = 654}, + [2913] = {.lex_state = 62}, + [2914] = {.lex_state = 577}, [2915] = {.lex_state = 577}, - [2916] = {.lex_state = 2}, - [2917] = {.lex_state = 624}, + [2916] = {.lex_state = 626}, + [2917] = {.lex_state = 62}, [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}, + [2919] = {.lex_state = 626}, + [2920] = {.lex_state = 110}, + [2921] = {.lex_state = 110}, + [2922] = {.lex_state = 660}, + [2923] = {.lex_state = 577}, + [2924] = {.lex_state = 576}, [2925] = {.lex_state = 2}, - [2926] = {.lex_state = 624}, - [2927] = {.lex_state = 60}, - [2928] = {.lex_state = 60}, - [2929] = {.lex_state = 624}, - [2930] = {.lex_state = 624}, - [2931] = {.lex_state = 624}, - [2932] = {.lex_state = 624}, - [2933] = {.lex_state = 624}, - [2934] = {.lex_state = 2}, - [2935] = {.lex_state = 630}, - [2936] = {.lex_state = 2}, - [2937] = {.lex_state = 577}, - [2938] = {.lex_state = 577}, - [2939] = {.lex_state = 577}, - [2940] = {.lex_state = 576}, - [2941] = {.lex_state = 66}, + [2926] = {.lex_state = 110}, + [2927] = {.lex_state = 2}, + [2928] = {.lex_state = 578}, + [2929] = {.lex_state = 2}, + [2930] = {.lex_state = 2}, + [2931] = {.lex_state = 625}, + [2932] = {.lex_state = 70}, + [2933] = {.lex_state = 578}, + [2934] = {.lex_state = 660}, + [2935] = {.lex_state = 660}, + [2936] = {.lex_state = 632}, + [2937] = {.lex_state = 2}, + [2938] = {.lex_state = 2}, + [2939] = {.lex_state = 632}, + [2940] = {.lex_state = 632}, + [2941] = {.lex_state = 632}, [2942] = {.lex_state = 2}, - [2943] = {.lex_state = 2}, - [2944] = {.lex_state = 577}, - [2945] = {.lex_state = 60}, - [2946] = {.lex_state = 577}, - [2947] = {.lex_state = 624}, - [2948] = {.lex_state = 60}, - [2949] = {.lex_state = 190}, - [2950] = {.lex_state = 577}, - [2951] = {.lex_state = 2}, - [2952] = {.lex_state = 2}, - [2953] = {.lex_state = 577}, + [2943] = {.lex_state = 625}, + [2944] = {.lex_state = 626}, + [2945] = {.lex_state = 2}, + [2946] = {.lex_state = 110}, + [2947] = {.lex_state = 578}, + [2948] = {.lex_state = 63}, + [2949] = {.lex_state = 626}, + [2950] = {.lex_state = 2}, + [2951] = {.lex_state = 578}, + [2952] = {.lex_state = 626}, + [2953] = {.lex_state = 2}, [2954] = {.lex_state = 2}, - [2955] = {.lex_state = 624}, - [2956] = {.lex_state = 624}, - [2957] = {.lex_state = 624}, - [2958] = {.lex_state = 576}, - [2959] = {.lex_state = 576}, - [2960] = {.lex_state = 65}, - [2961] = {.lex_state = 60}, - [2962] = {.lex_state = 624}, - [2963] = {.lex_state = 577}, - [2964] = {.lex_state = 577}, - [2965] = {.lex_state = 576}, - [2966] = {.lex_state = 577}, - [2967] = {.lex_state = 624}, - [2968] = {.lex_state = 624}, - [2969] = {.lex_state = 60}, - [2970] = {.lex_state = 624}, - [2971] = {.lex_state = 624}, - [2972] = {.lex_state = 624}, - [2973] = {.lex_state = 624}, - [2974] = {.lex_state = 624}, - [2975] = {.lex_state = 624}, - [2976] = {.lex_state = 577}, - [2977] = {.lex_state = 624}, - [2978] = {.lex_state = 64}, - [2979] = {.lex_state = 624}, - [2980] = {.lex_state = 64}, - [2981] = {.lex_state = 624}, - [2982] = {.lex_state = 624}, - [2983] = {.lex_state = 64}, - [2984] = {.lex_state = 64}, - [2985] = {.lex_state = 624}, - [2986] = {.lex_state = 577}, - [2987] = {.lex_state = 624}, - [2988] = {.lex_state = 624}, - [2989] = {.lex_state = 64}, - [2990] = {.lex_state = 2}, - [2991] = {.lex_state = 64}, - [2992] = {.lex_state = 2}, - [2993] = {.lex_state = 64}, - [2994] = {.lex_state = 64}, - [2995] = {.lex_state = 64}, - [2996] = {.lex_state = 624}, - [2997] = {.lex_state = 624}, - [2998] = {.lex_state = 624}, - [2999] = {.lex_state = 67}, - [3000] = {.lex_state = 2}, - [3001] = {.lex_state = 658}, - [3002] = {.lex_state = 2}, - [3003] = {.lex_state = 624}, - [3004] = {.lex_state = 69}, - [3005] = {.lex_state = 624}, - [3006] = {.lex_state = 624}, - [3007] = {.lex_state = 64}, - [3008] = {.lex_state = 624}, - [3009] = {.lex_state = 624}, - [3010] = {.lex_state = 624}, - [3011] = {.lex_state = 624}, - [3012] = {.lex_state = 624}, - [3013] = {.lex_state = 624}, - [3014] = {.lex_state = 64}, - [3015] = {.lex_state = 64}, - [3016] = {.lex_state = 624}, - [3017] = {.lex_state = 624}, - [3018] = {.lex_state = 624}, - [3019] = {.lex_state = 624}, - [3020] = {.lex_state = 624}, - [3021] = {.lex_state = 624}, - [3022] = {.lex_state = 624}, - [3023] = {.lex_state = 624}, - [3024] = {.lex_state = 60}, - [3025] = {.lex_state = 624}, + [2955] = {.lex_state = 2}, + [2956] = {.lex_state = 2}, + [2957] = {.lex_state = 626}, + [2958] = {.lex_state = 578}, + [2959] = {.lex_state = 578}, + [2960] = {.lex_state = 578}, + [2961] = {.lex_state = 660}, + [2962] = {.lex_state = 626}, + [2963] = {.lex_state = 2}, + [2964] = {.lex_state = 626}, + [2965] = {.lex_state = 577}, + [2966] = {.lex_state = 2}, + [2967] = {.lex_state = 2}, + [2968] = {.lex_state = 626}, + [2969] = {.lex_state = 626}, + [2970] = {.lex_state = 59}, + [2971] = {.lex_state = 59}, + [2972] = {.lex_state = 59}, + [2973] = {.lex_state = 59}, + [2974] = {.lex_state = 626}, + [2975] = {.lex_state = 63}, + [2976] = {.lex_state = 626}, + [2977] = {.lex_state = 577}, + [2978] = {.lex_state = 65}, + [2979] = {.lex_state = 578}, + [2980] = {.lex_state = 66}, + [2981] = {.lex_state = 626}, + [2982] = {.lex_state = 626}, + [2983] = {.lex_state = 626}, + [2984] = {.lex_state = 578}, + [2985] = {.lex_state = 578}, + [2986] = {.lex_state = 626}, + [2987] = {.lex_state = 626}, + [2988] = {.lex_state = 626}, + [2989] = {.lex_state = 626}, + [2990] = {.lex_state = 578}, + [2991] = {.lex_state = 578}, + [2992] = {.lex_state = 626}, + [2993] = {.lex_state = 578}, + [2994] = {.lex_state = 626}, + [2995] = {.lex_state = 626}, + [2996] = {.lex_state = 626}, + [2997] = {.lex_state = 2}, + [2998] = {.lex_state = 626}, + [2999] = {.lex_state = 63}, + [3000] = {.lex_state = 63}, + [3001] = {.lex_state = 63}, + [3002] = {.lex_state = 64}, + [3003] = {.lex_state = 63}, + [3004] = {.lex_state = 578}, + [3005] = {.lex_state = 63}, + [3006] = {.lex_state = 2}, + [3007] = {.lex_state = 2}, + [3008] = {.lex_state = 626}, + [3009] = {.lex_state = 626}, + [3010] = {.lex_state = 626}, + [3011] = {.lex_state = 626}, + [3012] = {.lex_state = 68}, + [3013] = {.lex_state = 626}, + [3014] = {.lex_state = 188}, + [3015] = {.lex_state = 578}, + [3016] = {.lex_state = 626}, + [3017] = {.lex_state = 626}, + [3018] = {.lex_state = 63}, + [3019] = {.lex_state = 63}, + [3020] = {.lex_state = 2}, + [3021] = {.lex_state = 626}, + [3022] = {.lex_state = 578}, + [3023] = {.lex_state = 577}, + [3024] = {.lex_state = 632}, + [3025] = {.lex_state = 626}, [3026] = {.lex_state = 2}, - [3027] = {.lex_state = 624}, - [3028] = {.lex_state = 577}, + [3027] = {.lex_state = 632}, + [3028] = {.lex_state = 626}, [3029] = {.lex_state = 577}, - [3030] = {.lex_state = 624}, - [3031] = {.lex_state = 624}, - [3032] = {.lex_state = 2}, - [3033] = {.lex_state = 624}, - [3034] = {.lex_state = 2}, - [3035] = {.lex_state = 2}, - [3036] = {.lex_state = 624}, - [3037] = {.lex_state = 624}, + [3030] = {.lex_state = 625}, + [3031] = {.lex_state = 59}, + [3032] = {.lex_state = 626}, + [3033] = {.lex_state = 626}, + [3034] = {.lex_state = 626}, + [3035] = {.lex_state = 632}, + [3036] = {.lex_state = 577}, + [3037] = {.lex_state = 578}, [3038] = {.lex_state = 2}, - [3039] = {.lex_state = 69}, - [3040] = {.lex_state = 577}, - [3041] = {.lex_state = 577}, - [3042] = {.lex_state = 577}, - [3043] = {.lex_state = 624}, - [3044] = {.lex_state = 577}, - [3045] = {.lex_state = 630}, - [3046] = {.lex_state = 576}, - [3047] = {.lex_state = 577}, - [3048] = {.lex_state = 577}, - [3049] = {.lex_state = 624}, - [3050] = {.lex_state = 624}, - [3051] = {.lex_state = 624}, - [3052] = {.lex_state = 624}, - [3053] = {.lex_state = 2}, - [3054] = {.lex_state = 2}, - [3055] = {.lex_state = 64}, - [3056] = {.lex_state = 2}, - [3057] = {.lex_state = 577}, - [3058] = {.lex_state = 2}, - [3059] = {.lex_state = 624}, - [3060] = {.lex_state = 624}, - [3061] = {.lex_state = 2}, - [3062] = {.lex_state = 2}, - [3063] = {.lex_state = 624}, - [3064] = {.lex_state = 630}, - [3065] = {.lex_state = 48, .external_lex_state = 2}, - [3066] = {.lex_state = 624}, - [3067] = {.lex_state = 624}, + [3039] = {.lex_state = 625}, + [3040] = {.lex_state = 578}, + [3041] = {.lex_state = 68}, + [3042] = {.lex_state = 626}, + [3043] = {.lex_state = 63}, + [3044] = {.lex_state = 578}, + [3045] = {.lex_state = 578}, + [3046] = {.lex_state = 626}, + [3047] = {.lex_state = 626}, + [3048] = {.lex_state = 626}, + [3049] = {.lex_state = 2}, + [3050] = {.lex_state = 2}, + [3051] = {.lex_state = 63}, + [3052] = {.lex_state = 626}, + [3053] = {.lex_state = 63}, + [3054] = {.lex_state = 626}, + [3055] = {.lex_state = 578}, + [3056] = {.lex_state = 626}, + [3057] = {.lex_state = 626}, + [3058] = {.lex_state = 626}, + [3059] = {.lex_state = 578}, + [3060] = {.lex_state = 577}, + [3061] = {.lex_state = 626}, + [3062] = {.lex_state = 626}, + [3063] = {.lex_state = 626}, + [3064] = {.lex_state = 59}, + [3065] = {.lex_state = 578}, + [3066] = {.lex_state = 578}, + [3067] = {.lex_state = 2}, [3068] = {.lex_state = 2}, - [3069] = {.lex_state = 577}, - [3070] = {.lex_state = 624}, - [3071] = {.lex_state = 577}, + [3069] = {.lex_state = 63}, + [3070] = {.lex_state = 2}, + [3071] = {.lex_state = 2}, [3072] = {.lex_state = 2}, - [3073] = {.lex_state = 624}, - [3074] = {.lex_state = 624}, - [3075] = {.lex_state = 66}, - [3076] = {.lex_state = 577}, - [3077] = {.lex_state = 2}, - [3078] = {.lex_state = 624}, - [3079] = {.lex_state = 577}, - [3080] = {.lex_state = 184}, - [3081] = {.lex_state = 624}, - [3082] = {.lex_state = 66}, - [3083] = {.lex_state = 2}, - [3084] = {.lex_state = 624}, - [3085] = {.lex_state = 624}, - [3086] = {.lex_state = 624}, - [3087] = {.lex_state = 577}, + [3073] = {.lex_state = 2}, + [3074] = {.lex_state = 626}, + [3075] = {.lex_state = 2}, + [3076] = {.lex_state = 626}, + [3077] = {.lex_state = 626}, + [3078] = {.lex_state = 626}, + [3079] = {.lex_state = 625}, + [3080] = {.lex_state = 626}, + [3081] = {.lex_state = 578}, + [3082] = {.lex_state = 626}, + [3083] = {.lex_state = 626}, + [3084] = {.lex_state = 626}, + [3085] = {.lex_state = 2}, + [3086] = {.lex_state = 2}, + [3087] = {.lex_state = 626}, [3088] = {.lex_state = 2}, - [3089] = {.lex_state = 624}, - [3090] = {.lex_state = 68}, - [3091] = {.lex_state = 624}, - [3092] = {.lex_state = 624}, + [3089] = {.lex_state = 578}, + [3090] = {.lex_state = 578}, + [3091] = {.lex_state = 626}, + [3092] = {.lex_state = 59}, [3093] = {.lex_state = 2}, - [3094] = {.lex_state = 624}, - [3095] = {.lex_state = 2}, - [3096] = {.lex_state = 577}, - [3097] = {.lex_state = 624}, - [3098] = {.lex_state = 624}, - [3099] = {.lex_state = 187}, - [3100] = {.lex_state = 577}, - [3101] = {.lex_state = 624}, - [3102] = {.lex_state = 577}, - [3103] = {.lex_state = 624}, - [3104] = {.lex_state = 48, .external_lex_state = 2}, - [3105] = {.lex_state = 2}, - [3106] = {.lex_state = 577}, - [3107] = {.lex_state = 624}, - [3108] = {.lex_state = 630}, - [3109] = {.lex_state = 577}, - [3110] = {.lex_state = 624}, - [3111] = {.lex_state = 624}, - [3112] = {.lex_state = 624}, - [3113] = {.lex_state = 577}, - [3114] = {.lex_state = 577}, - [3115] = {.lex_state = 577}, - [3116] = {.lex_state = 2}, - [3117] = {.lex_state = 71}, - [3118] = {.lex_state = 577}, - [3119] = {.lex_state = 190}, - [3120] = {.lex_state = 2}, - [3121] = {.lex_state = 624}, - [3122] = {.lex_state = 624}, - [3123] = {.lex_state = 624}, - [3124] = {.lex_state = 624}, - [3125] = {.lex_state = 624}, - [3126] = {.lex_state = 624}, - [3127] = {.lex_state = 68}, - [3128] = {.lex_state = 64}, - [3129] = {.lex_state = 60}, - [3130] = {.lex_state = 624}, - [3131] = {.lex_state = 2}, - [3132] = {.lex_state = 624}, - [3133] = {.lex_state = 624}, - [3134] = {.lex_state = 577}, - [3135] = {.lex_state = 624}, - [3136] = {.lex_state = 577}, - [3137] = {.lex_state = 2}, - [3138] = {.lex_state = 624}, + [3094] = {.lex_state = 626}, + [3095] = {.lex_state = 578}, + [3096] = {.lex_state = 626}, + [3097] = {.lex_state = 626}, + [3098] = {.lex_state = 626}, + [3099] = {.lex_state = 626}, + [3100] = {.lex_state = 626}, + [3101] = {.lex_state = 626}, + [3102] = {.lex_state = 626}, + [3103] = {.lex_state = 626}, + [3104] = {.lex_state = 626}, + [3105] = {.lex_state = 60}, + [3106] = {.lex_state = 626}, + [3107] = {.lex_state = 626}, + [3108] = {.lex_state = 626}, + [3109] = {.lex_state = 47, .external_lex_state = 2}, + [3110] = {.lex_state = 182}, + [3111] = {.lex_state = 626}, + [3112] = {.lex_state = 626}, + [3113] = {.lex_state = 578}, + [3114] = {.lex_state = 69}, + [3115] = {.lex_state = 626}, + [3116] = {.lex_state = 626}, + [3117] = {.lex_state = 578}, + [3118] = {.lex_state = 626}, + [3119] = {.lex_state = 626}, + [3120] = {.lex_state = 67}, + [3121] = {.lex_state = 626}, + [3122] = {.lex_state = 578}, + [3123] = {.lex_state = 69}, + [3124] = {.lex_state = 2}, + [3125] = {.lex_state = 626}, + [3126] = {.lex_state = 188}, + [3127] = {.lex_state = 626}, + [3128] = {.lex_state = 2}, + [3129] = {.lex_state = 626}, + [3130] = {.lex_state = 626}, + [3131] = {.lex_state = 626}, + [3132] = {.lex_state = 626}, + [3133] = {.lex_state = 626}, + [3134] = {.lex_state = 626}, + [3135] = {.lex_state = 626}, + [3136] = {.lex_state = 626}, + [3137] = {.lex_state = 626}, + [3138] = {.lex_state = 626}, [3139] = {.lex_state = 2}, - [3140] = {.lex_state = 2}, - [3141] = {.lex_state = 624}, - [3142] = {.lex_state = 2}, - [3143] = {.lex_state = 624}, - [3144] = {.lex_state = 2}, - [3145] = {.lex_state = 577}, - [3146] = {.lex_state = 577}, - [3147] = {.lex_state = 624}, - [3148] = {.lex_state = 624}, - [3149] = {.lex_state = 70}, - [3150] = {.lex_state = 624}, - [3151] = {.lex_state = 2}, - [3152] = {.lex_state = 624}, - [3153] = {.lex_state = 624}, - [3154] = {.lex_state = 66}, - [3155] = {.lex_state = 624}, - [3156] = {.lex_state = 624}, - [3157] = {.lex_state = 60}, - [3158] = {.lex_state = 2}, - [3159] = {.lex_state = 577}, - [3160] = {.lex_state = 66}, - [3161] = {.lex_state = 577}, - [3162] = {.lex_state = 624}, - [3163] = {.lex_state = 624}, - [3164] = {.lex_state = 70}, - [3165] = {.lex_state = 624}, - [3166] = {.lex_state = 624}, - [3167] = {.lex_state = 577}, - [3168] = {.lex_state = 624}, - [3169] = {.lex_state = 577}, - [3170] = {.lex_state = 624}, - [3171] = {.lex_state = 2}, - [3172] = {.lex_state = 2}, - [3173] = {.lex_state = 577}, - [3174] = {.lex_state = 2}, - [3175] = {.lex_state = 187}, - [3176] = {.lex_state = 624}, - [3177] = {.lex_state = 624}, - [3178] = {.lex_state = 188}, - [3179] = {.lex_state = 2}, - [3180] = {.lex_state = 624}, - [3181] = {.lex_state = 624}, - [3182] = {.lex_state = 624}, - [3183] = {.lex_state = 577}, - [3184] = {.lex_state = 577}, - [3185] = {.lex_state = 577}, - [3186] = {.lex_state = 577}, - [3187] = {.lex_state = 577}, - [3188] = {.lex_state = 577}, - [3189] = {.lex_state = 577}, - [3190] = {.lex_state = 577}, - [3191] = {.lex_state = 577}, - [3192] = {.lex_state = 577}, - [3193] = {.lex_state = 577}, - [3194] = {.lex_state = 577}, - [3195] = {.lex_state = 624}, - [3196] = {.lex_state = 624}, - [3197] = {.lex_state = 624}, - [3198] = {.lex_state = 2}, - [3199] = {.lex_state = 624}, - [3200] = {.lex_state = 184}, - [3201] = {.lex_state = 624}, - [3202] = {.lex_state = 2}, - [3203] = {.lex_state = 624}, - [3204] = {.lex_state = 624}, - [3205] = {.lex_state = 624}, - [3206] = {.lex_state = 624}, - [3207] = {.lex_state = 577}, - [3208] = {.lex_state = 624}, - [3209] = {.lex_state = 577}, - [3210] = {.lex_state = 624}, - [3211] = {.lex_state = 577}, - [3212] = {.lex_state = 624}, - [3213] = {.lex_state = 624}, - [3214] = {.lex_state = 577}, - [3215] = {.lex_state = 577}, - [3216] = {.lex_state = 2129}, - [3217] = {.lex_state = 577}, - [3218] = {.lex_state = 577}, - [3219] = {.lex_state = 2}, - [3220] = {.lex_state = 2}, - [3221] = {.lex_state = 2}, - [3222] = {.lex_state = 577}, - [3223] = {.lex_state = 577}, - [3224] = {.lex_state = 577}, - [3225] = {.lex_state = 577}, - [3226] = {.lex_state = 2}, - [3227] = {.lex_state = 577}, - [3228] = {.lex_state = 577}, - [3229] = {.lex_state = 577}, - [3230] = {.lex_state = 577}, - [3231] = {.lex_state = 2}, - [3232] = {.lex_state = 577}, - [3233] = {.lex_state = 2}, + [3140] = {.lex_state = 626}, + [3141] = {.lex_state = 626}, + [3142] = {.lex_state = 626}, + [3143] = {.lex_state = 2}, + [3144] = {.lex_state = 626}, + [3145] = {.lex_state = 626}, + [3146] = {.lex_state = 626}, + [3147] = {.lex_state = 626}, + [3148] = {.lex_state = 626}, + [3149] = {.lex_state = 626}, + [3150] = {.lex_state = 626}, + [3151] = {.lex_state = 578}, + [3152] = {.lex_state = 578}, + [3153] = {.lex_state = 578}, + [3154] = {.lex_state = 65}, + [3155] = {.lex_state = 626}, + [3156] = {.lex_state = 626}, + [3157] = {.lex_state = 185}, + [3158] = {.lex_state = 65}, + [3159] = {.lex_state = 578}, + [3160] = {.lex_state = 65}, + [3161] = {.lex_state = 578}, + [3162] = {.lex_state = 2}, + [3163] = {.lex_state = 2}, + [3164] = {.lex_state = 185}, + [3165] = {.lex_state = 626}, + [3166] = {.lex_state = 626}, + [3167] = {.lex_state = 578}, + [3168] = {.lex_state = 578}, + [3169] = {.lex_state = 626}, + [3170] = {.lex_state = 626}, + [3171] = {.lex_state = 578}, + [3172] = {.lex_state = 578}, + [3173] = {.lex_state = 578}, + [3174] = {.lex_state = 578}, + [3175] = {.lex_state = 626}, + [3176] = {.lex_state = 2}, + [3177] = {.lex_state = 626}, + [3178] = {.lex_state = 626}, + [3179] = {.lex_state = 626}, + [3180] = {.lex_state = 2}, + [3181] = {.lex_state = 2}, + [3182] = {.lex_state = 578}, + [3183] = {.lex_state = 626}, + [3184] = {.lex_state = 626}, + [3185] = {.lex_state = 186}, + [3186] = {.lex_state = 626}, + [3187] = {.lex_state = 578}, + [3188] = {.lex_state = 2}, + [3189] = {.lex_state = 2}, + [3190] = {.lex_state = 2}, + [3191] = {.lex_state = 626}, + [3192] = {.lex_state = 578}, + [3193] = {.lex_state = 626}, + [3194] = {.lex_state = 2}, + [3195] = {.lex_state = 626}, + [3196] = {.lex_state = 2}, + [3197] = {.lex_state = 626}, + [3198] = {.lex_state = 578}, + [3199] = {.lex_state = 626}, + [3200] = {.lex_state = 578}, + [3201] = {.lex_state = 578}, + [3202] = {.lex_state = 626}, + [3203] = {.lex_state = 626}, + [3204] = {.lex_state = 70}, + [3205] = {.lex_state = 626}, + [3206] = {.lex_state = 626}, + [3207] = {.lex_state = 626}, + [3208] = {.lex_state = 578}, + [3209] = {.lex_state = 626}, + [3210] = {.lex_state = 2}, + [3211] = {.lex_state = 626}, + [3212] = {.lex_state = 578}, + [3213] = {.lex_state = 578}, + [3214] = {.lex_state = 626}, + [3215] = {.lex_state = 578}, + [3216] = {.lex_state = 578}, + [3217] = {.lex_state = 578}, + [3218] = {.lex_state = 578}, + [3219] = {.lex_state = 578}, + [3220] = {.lex_state = 578}, + [3221] = {.lex_state = 578}, + [3222] = {.lex_state = 578}, + [3223] = {.lex_state = 578}, + [3224] = {.lex_state = 578}, + [3225] = {.lex_state = 578}, + [3226] = {.lex_state = 626}, + [3227] = {.lex_state = 626}, + [3228] = {.lex_state = 67}, + [3229] = {.lex_state = 2}, + [3230] = {.lex_state = 2}, + [3231] = {.lex_state = 47, .external_lex_state = 2}, + [3232] = {.lex_state = 65}, + [3233] = {.lex_state = 182}, [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}, + [3235] = {.lex_state = 2}, + [3236] = {.lex_state = 632}, + [3237] = {.lex_state = 2}, + [3238] = {.lex_state = 626}, + [3239] = {.lex_state = 626}, + [3240] = {.lex_state = 2}, + [3241] = {.lex_state = 59}, [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}, + [3243] = {.lex_state = 63}, + [3244] = {.lex_state = 59}, + [3245] = {.lex_state = 578}, + [3246] = {.lex_state = 626}, + [3247] = {.lex_state = 578}, + [3248] = {.lex_state = 578}, + [3249] = {.lex_state = 578}, + [3250] = {.lex_state = 626}, + [3251] = {.lex_state = 578}, + [3252] = {.lex_state = 578}, + [3253] = {.lex_state = 2}, + [3254] = {.lex_state = 578}, + [3255] = {.lex_state = 2131}, [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}, + [3257] = {.lex_state = 578}, + [3258] = {.lex_state = 578}, + [3259] = {.lex_state = 578}, + [3260] = {.lex_state = 96}, + [3261] = {.lex_state = 578}, + [3262] = {.lex_state = 578}, + [3263] = {.lex_state = 578}, + [3264] = {.lex_state = 578}, + [3265] = {.lex_state = 578}, + [3266] = {.lex_state = 578}, + [3267] = {.lex_state = 2}, + [3268] = {.lex_state = 578}, + [3269] = {.lex_state = 578}, + [3270] = {.lex_state = 578}, + [3271] = {.lex_state = 578}, + [3272] = {.lex_state = 578}, + [3273] = {.lex_state = 578}, [3274] = {.lex_state = 2}, - [3275] = {.lex_state = 2}, - [3276] = {.lex_state = 195}, - [3277] = {.lex_state = 190}, - [3278] = {.lex_state = 577}, - [3279] = {.lex_state = 2}, - [3280] = {.lex_state = 577}, - [3281] = {.lex_state = 577}, - [3282] = {.lex_state = 577}, - [3283] = {.lex_state = 577}, - [3284] = {.lex_state = 2}, - [3285] = {.lex_state = 2}, - [3286] = {.lex_state = 185}, - [3287] = {.lex_state = 577}, - [3288] = {.lex_state = 577}, - [3289] = {.lex_state = 577}, - [3290] = {.lex_state = 2}, - [3291] = {.lex_state = 577}, - [3292] = {.lex_state = 630}, - [3293] = {.lex_state = 124}, - [3294] = {.lex_state = 577}, - [3295] = {.lex_state = 577}, - [3296] = {.lex_state = 577}, - [3297] = {.lex_state = 577}, - [3298] = {.lex_state = 203}, - [3299] = {.lex_state = 577}, - [3300] = {.lex_state = 2}, - [3301] = {.lex_state = 577}, - [3302] = {.lex_state = 577}, - [3303] = {.lex_state = 577}, - [3304] = {.lex_state = 2}, - [3305] = {.lex_state = 2}, - [3306] = {.lex_state = 2}, - [3307] = {.lex_state = 577}, - [3308] = {.lex_state = 577}, - [3309] = {.lex_state = 577}, - [3310] = {.lex_state = 577}, - [3311] = {.lex_state = 577}, - [3312] = {.lex_state = 577}, - [3313] = {.lex_state = 577}, - [3314] = {.lex_state = 2}, - [3315] = {.lex_state = 577}, - [3316] = {.lex_state = 577}, - [3317] = {.lex_state = 577}, - [3318] = {.lex_state = 577}, - [3319] = {.lex_state = 577}, - [3320] = {.lex_state = 577}, - [3321] = {.lex_state = 577}, - [3322] = {.lex_state = 577}, - [3323] = {.lex_state = 577}, - [3324] = {.lex_state = 577}, - [3325] = {.lex_state = 577}, - [3326] = {.lex_state = 577}, - [3327] = {.lex_state = 577}, + [3275] = {.lex_state = 578}, + [3276] = {.lex_state = 578}, + [3277] = {.lex_state = 578}, + [3278] = {.lex_state = 578}, + [3279] = {.lex_state = 578}, + [3280] = {.lex_state = 578}, + [3281] = {.lex_state = 183}, + [3282] = {.lex_state = 578}, + [3283] = {.lex_state = 184}, + [3284] = {.lex_state = 578}, + [3285] = {.lex_state = 578}, + [3286] = {.lex_state = 578}, + [3287] = {.lex_state = 578}, + [3288] = {.lex_state = 578}, + [3289] = {.lex_state = 578}, + [3290] = {.lex_state = 578}, + [3291] = {.lex_state = 578}, + [3292] = {.lex_state = 632}, + [3293] = {.lex_state = 632}, + [3294] = {.lex_state = 632}, + [3295] = {.lex_state = 578}, + [3296] = {.lex_state = 578}, + [3297] = {.lex_state = 2}, + [3298] = {.lex_state = 632}, + [3299] = {.lex_state = 188}, + [3300] = {.lex_state = 578}, + [3301] = {.lex_state = 578}, + [3302] = {.lex_state = 578}, + [3303] = {.lex_state = 128}, + [3304] = {.lex_state = 578}, + [3305] = {.lex_state = 578}, + [3306] = {.lex_state = 578}, + [3307] = {.lex_state = 578}, + [3308] = {.lex_state = 578}, + [3309] = {.lex_state = 578}, + [3310] = {.lex_state = 2}, + [3311] = {.lex_state = 2}, + [3312] = {.lex_state = 76}, + [3313] = {.lex_state = 122}, + [3314] = {.lex_state = 578}, + [3315] = {.lex_state = 2131}, + [3316] = {.lex_state = 183}, + [3317] = {.lex_state = 578}, + [3318] = {.lex_state = 578}, + [3319] = {.lex_state = 578}, + [3320] = {.lex_state = 2}, + [3321] = {.lex_state = 2}, + [3322] = {.lex_state = 188}, + [3323] = {.lex_state = 188}, + [3324] = {.lex_state = 188}, + [3325] = {.lex_state = 578}, + [3326] = {.lex_state = 578}, + [3327] = {.lex_state = 78}, [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}, + [3329] = {.lex_state = 578}, + [3330] = {.lex_state = 578}, + [3331] = {.lex_state = 193}, + [3332] = {.lex_state = 2}, + [3333] = {.lex_state = 2}, + [3334] = {.lex_state = 2}, + [3335] = {.lex_state = 2}, + [3336] = {.lex_state = 2}, + [3337] = {.lex_state = 2}, + [3338] = {.lex_state = 2}, + [3339] = {.lex_state = 2}, + [3340] = {.lex_state = 578}, + [3341] = {.lex_state = 578}, + [3342] = {.lex_state = 201}, [3343] = {.lex_state = 2}, - [3344] = {.lex_state = 184}, - [3345] = {.lex_state = 2}, - [3346] = {.lex_state = 577}, + [3344] = {.lex_state = 2}, + [3345] = {.lex_state = 578}, + [3346] = {.lex_state = 578}, [3347] = {.lex_state = 2}, - [3348] = {.lex_state = 196}, - [3349] = {.lex_state = 577}, - [3350] = {.lex_state = 204}, + [3348] = {.lex_state = 578}, + [3349] = {.lex_state = 578}, + [3350] = {.lex_state = 2}, [3351] = {.lex_state = 2}, - [3352] = {.lex_state = 577}, - [3353] = {.lex_state = 186}, - [3354] = {.lex_state = 577}, - [3355] = {.lex_state = 611}, - [3356] = {.lex_state = 2}, - [3357] = {.lex_state = 208}, - [3358] = {.lex_state = 80}, - [3359] = {.lex_state = 611}, - [3360] = {.lex_state = 205}, - [3361] = {.lex_state = 189}, - [3362] = {.lex_state = 95}, - [3363] = {.lex_state = 2}, - [3364] = {.lex_state = 234}, - [3365] = {.lex_state = 577}, - [3366] = {.lex_state = 81}, - [3367] = {.lex_state = 2}, - [3368] = {.lex_state = 100}, - [3369] = {.lex_state = 124}, - [3370] = {.lex_state = 205}, - [3371] = {.lex_state = 2}, - [3372] = {.lex_state = 130}, - [3373] = {.lex_state = 100}, + [3352] = {.lex_state = 578}, + [3353] = {.lex_state = 578}, + [3354] = {.lex_state = 2}, + [3355] = {.lex_state = 2}, + [3356] = {.lex_state = 92}, + [3357] = {.lex_state = 578}, + [3358] = {.lex_state = 578}, + [3359] = {.lex_state = 578}, + [3360] = {.lex_state = 2}, + [3361] = {.lex_state = 578}, + [3362] = {.lex_state = 578}, + [3363] = {.lex_state = 578}, + [3364] = {.lex_state = 578}, + [3365] = {.lex_state = 578}, + [3366] = {.lex_state = 578}, + [3367] = {.lex_state = 578}, + [3368] = {.lex_state = 578}, + [3369] = {.lex_state = 184}, + [3370] = {.lex_state = 578}, + [3371] = {.lex_state = 578}, + [3372] = {.lex_state = 578}, + [3373] = {.lex_state = 578}, [3374] = {.lex_state = 2}, - [3375] = {.lex_state = 581}, - [3376] = {.lex_state = 130}, - [3377] = {.lex_state = 130}, - [3378] = {.lex_state = 124}, - [3379] = {.lex_state = 130}, - [3380] = {.lex_state = 124}, - [3381] = {.lex_state = 611}, - [3382] = {.lex_state = 130}, - [3383] = {.lex_state = 130}, - [3384] = {.lex_state = 2}, - [3385] = {.lex_state = 189}, - [3386] = {.lex_state = 124}, - [3387] = {.lex_state = 190}, - [3388] = {.lex_state = 80}, - [3389] = {.lex_state = 190}, - [3390] = {.lex_state = 99}, - [3391] = {.lex_state = 2}, - [3392] = {.lex_state = 197}, - [3393] = {.lex_state = 611}, + [3375] = {.lex_state = 2}, + [3376] = {.lex_state = 194}, + [3377] = {.lex_state = 2}, + [3378] = {.lex_state = 578}, + [3379] = {.lex_state = 181}, + [3380] = {.lex_state = 202}, + [3381] = {.lex_state = 578}, + [3382] = {.lex_state = 188}, + [3383] = {.lex_state = 188}, + [3384] = {.lex_state = 188}, + [3385] = {.lex_state = 188}, + [3386] = {.lex_state = 2}, + [3387] = {.lex_state = 2}, + [3388] = {.lex_state = 578}, + [3389] = {.lex_state = 578}, + [3390] = {.lex_state = 578}, + [3391] = {.lex_state = 182}, + [3392] = {.lex_state = 2}, + [3393] = {.lex_state = 2}, [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}, + [3395] = {.lex_state = 122}, + [3396] = {.lex_state = 187}, + [3397] = {.lex_state = 128}, + [3398] = {.lex_state = 232}, + [3399] = {.lex_state = 2}, + [3400] = {.lex_state = 128}, + [3401] = {.lex_state = 195}, + [3402] = {.lex_state = 2}, + [3403] = {.lex_state = 98}, + [3404] = {.lex_state = 128}, + [3405] = {.lex_state = 79}, + [3406] = {.lex_state = 2}, + [3407] = {.lex_state = 128}, + [3408] = {.lex_state = 80}, + [3409] = {.lex_state = 612}, + [3410] = {.lex_state = 2}, + [3411] = {.lex_state = 612}, + [3412] = {.lex_state = 122}, + [3413] = {.lex_state = 204}, + [3414] = {.lex_state = 122}, + [3415] = {.lex_state = 2}, + [3416] = {.lex_state = 98}, + [3417] = {.lex_state = 233}, + [3418] = {.lex_state = 578}, + [3419] = {.lex_state = 612}, + [3420] = {.lex_state = 2}, + [3421] = {.lex_state = 128}, + [3422] = {.lex_state = 79}, + [3423] = {.lex_state = 612}, + [3424] = {.lex_state = 128}, + [3425] = {.lex_state = 204}, + [3426] = {.lex_state = 578}, + [3427] = {.lex_state = 206}, + [3428] = {.lex_state = 203}, + [3429] = {.lex_state = 217}, + [3430] = {.lex_state = 93}, + [3431] = {.lex_state = 122}, + [3432] = {.lex_state = 203}, + [3433] = {.lex_state = 612}, + [3434] = {.lex_state = 582}, + [3435] = {.lex_state = 97}, + [3436] = {.lex_state = 2}, + [3437] = {.lex_state = 188}, + [3438] = {.lex_state = 187}, + [3439] = {.lex_state = 2}, + [3440] = {.lex_state = 188}, + [3441] = {.lex_state = 2073}, + [3442] = {.lex_state = 1729, .external_lex_state = 2}, + [3443] = {.lex_state = 1729, .external_lex_state = 2}, + [3444] = {.lex_state = 1729, .external_lex_state = 2}, + [3445] = {.lex_state = 1729, .external_lex_state = 2}, + [3446] = {.lex_state = 1729, .external_lex_state = 2}, + [3447] = {.lex_state = 1729, .external_lex_state = 2}, + [3448] = {.lex_state = 1729, .external_lex_state = 2}, + [3449] = {.lex_state = 1729, .external_lex_state = 2}, + [3450] = {.lex_state = 197}, + [3451] = {.lex_state = 99}, + [3452] = {.lex_state = 219}, + [3453] = {.lex_state = 100}, + [3454] = {.lex_state = 80}, + [3455] = {.lex_state = 2177}, + [3456] = {.lex_state = 218}, + [3457] = {.lex_state = 2073}, + [3458] = {.lex_state = 77}, + [3459] = {.lex_state = 2073}, + [3460] = {.lex_state = 2073}, + [3461] = {.lex_state = 1729, .external_lex_state = 2}, + [3462] = {.lex_state = 1729, .external_lex_state = 2}, + [3463] = {.lex_state = 218}, + [3464] = {.lex_state = 2132}, + [3465] = {.lex_state = 2132}, + [3466] = {.lex_state = 2132}, + [3467] = {.lex_state = 2177}, + [3468] = {.lex_state = 582}, + [3469] = {.lex_state = 582}, + [3470] = {.lex_state = 100}, + [3471] = {.lex_state = 2073}, + [3472] = {.lex_state = 2073}, + [3473] = {.lex_state = 1729, .external_lex_state = 2}, + [3474] = {.lex_state = 99}, + [3475] = {.lex_state = 234}, + [3476] = {.lex_state = 205}, + [3477] = {.lex_state = 2073}, + [3478] = {.lex_state = 582}, + [3479] = {.lex_state = 2132}, + [3480] = {.lex_state = 102}, + [3481] = {.lex_state = 2073}, + [3482] = {.lex_state = 2073}, + [3483] = {.lex_state = 2177}, + [3484] = {.lex_state = 1729, .external_lex_state = 2}, + [3485] = {.lex_state = 128}, + [3486] = {.lex_state = 2177}, + [3487] = {.lex_state = 100}, + [3488] = {.lex_state = 80}, + [3489] = {.lex_state = 1729, .external_lex_state = 2}, + [3490] = {.lex_state = 81}, + [3491] = {.lex_state = 234}, + [3492] = {.lex_state = 2073}, + [3493] = {.lex_state = 2073}, + [3494] = {.lex_state = 1729, .external_lex_state = 2}, + [3495] = {.lex_state = 100}, + [3496] = {.lex_state = 205}, + [3497] = {.lex_state = 1729, .external_lex_state = 2}, + [3498] = {.lex_state = 2073}, + [3499] = {.lex_state = 2}, + [3500] = {.lex_state = 2073}, + [3501] = {.lex_state = 2073}, + [3502] = {.lex_state = 206}, + [3503] = {.lex_state = 1729, .external_lex_state = 2}, + [3504] = {.lex_state = 80}, + [3505] = {.lex_state = 94}, + [3506] = {.lex_state = 2073}, + [3507] = {.lex_state = 2073}, + [3508] = {.lex_state = 208}, + [3509] = {.lex_state = 1729, .external_lex_state = 2}, + [3510] = {.lex_state = 206}, + [3511] = {.lex_state = 206}, + [3512] = {.lex_state = 2073}, + [3513] = {.lex_state = 2073}, + [3514] = {.lex_state = 1729, .external_lex_state = 2}, + [3515] = {.lex_state = 2073}, + [3516] = {.lex_state = 2073}, + [3517] = {.lex_state = 207}, + [3518] = {.lex_state = 1729, .external_lex_state = 2}, + [3519] = {.lex_state = 2073}, + [3520] = {.lex_state = 205}, + [3521] = {.lex_state = 2073}, + [3522] = {.lex_state = 2073}, + [3523] = {.lex_state = 2073}, + [3524] = {.lex_state = 1729, .external_lex_state = 2}, + [3525] = {.lex_state = 582}, + [3526] = {.lex_state = 2073}, + [3527] = {.lex_state = 2073}, + [3528] = {.lex_state = 1729, .external_lex_state = 2}, + [3529] = {.lex_state = 1729, .external_lex_state = 2}, + [3530] = {.lex_state = 2073}, + [3531] = {.lex_state = 196}, + [3532] = {.lex_state = 2073}, + [3533] = {.lex_state = 205}, + [3534] = {.lex_state = 582}, + [3535] = {.lex_state = 582}, + [3536] = {.lex_state = 209}, + [3537] = {.lex_state = 582}, + [3538] = {.lex_state = 88}, + [3539] = {.lex_state = 129}, + [3540] = {.lex_state = 88}, + [3541] = {.lex_state = 582}, + [3542] = {.lex_state = 101}, + [3543] = {.lex_state = 582}, + [3544] = {.lex_state = 582}, + [3545] = {.lex_state = 582}, + [3546] = {.lex_state = 582}, + [3547] = {.lex_state = 582}, + [3548] = {.lex_state = 582}, + [3549] = {.lex_state = 582}, + [3550] = {.lex_state = 80}, + [3551] = {.lex_state = 582}, + [3552] = {.lex_state = 206}, + [3553] = {.lex_state = 582}, + [3554] = {.lex_state = 101}, + [3555] = {.lex_state = 235}, + [3556] = {.lex_state = 582}, + [3557] = {.lex_state = 582}, + [3558] = {.lex_state = 219}, + [3559] = {.lex_state = 582}, + [3560] = {.lex_state = 582}, + [3561] = {.lex_state = 582}, + [3562] = {.lex_state = 582}, + [3563] = {.lex_state = 627}, + [3564] = {.lex_state = 582}, + [3565] = {.lex_state = 129}, + [3566] = {.lex_state = 582}, + [3567] = {.lex_state = 582}, + [3568] = {.lex_state = 82}, + [3569] = {.lex_state = 246}, + [3570] = {.lex_state = 235}, + [3571] = {.lex_state = 582}, + [3572] = {.lex_state = 582}, + [3573] = {.lex_state = 88}, + [3574] = {.lex_state = 101}, + [3575] = {.lex_state = 101}, + [3576] = {.lex_state = 235}, + [3577] = {.lex_state = 582}, + [3578] = {.lex_state = 582}, + [3579] = {.lex_state = 582}, + [3580] = {.lex_state = 582}, + [3581] = {.lex_state = 582}, + [3582] = {.lex_state = 582}, + [3583] = {.lex_state = 220}, + [3584] = {.lex_state = 582}, + [3585] = {.lex_state = 240}, + [3586] = {.lex_state = 219}, + [3587] = {.lex_state = 582}, + [3588] = {.lex_state = 209}, + [3589] = {.lex_state = 582}, + [3590] = {.lex_state = 582}, + [3591] = {.lex_state = 582}, + [3592] = {.lex_state = 211}, + [3593] = {.lex_state = 82}, + [3594] = {.lex_state = 129}, + [3595] = {.lex_state = 582}, + [3596] = {.lex_state = 582}, + [3597] = {.lex_state = 104}, + [3598] = {.lex_state = 211}, + [3599] = {.lex_state = 582}, + [3600] = {.lex_state = 627}, + [3601] = {.lex_state = 198}, + [3602] = {.lex_state = 235}, + [3603] = {.lex_state = 88}, + [3604] = {.lex_state = 103}, + [3605] = {.lex_state = 582}, + [3606] = {.lex_state = 582}, + [3607] = {.lex_state = 582}, + [3608] = {.lex_state = 582}, + [3609] = {.lex_state = 129}, + [3610] = {.lex_state = 129}, + [3611] = {.lex_state = 129}, + [3612] = {.lex_state = 104}, + [3613] = {.lex_state = 95}, + [3614] = {.lex_state = 219}, + [3615] = {.lex_state = 582}, + [3616] = {.lex_state = 105}, + [3617] = {.lex_state = 212}, + [3618] = {.lex_state = 241}, + [3619] = {.lex_state = 244}, + [3620] = {.lex_state = 127}, + [3621] = {.lex_state = 210}, + [3622] = {.lex_state = 244}, + [3623] = {.lex_state = 212}, + [3624] = {.lex_state = 244}, + [3625] = {.lex_state = 244}, + [3626] = {.lex_state = 83}, + [3627] = {.lex_state = 244}, + [3628] = {.lex_state = 579}, + [3629] = {.lex_state = 244}, + [3630] = {.lex_state = 212}, + [3631] = {.lex_state = 105}, + [3632] = {.lex_state = 212}, + [3633] = {.lex_state = 212}, + [3634] = {.lex_state = 105}, + [3635] = {.lex_state = 244}, + [3636] = {.lex_state = 221}, + [3637] = {.lex_state = 105}, + [3638] = {.lex_state = 83}, + [3639] = {.lex_state = 244}, + [3640] = {.lex_state = 276}, + [3641] = {.lex_state = 244}, + [3642] = {.lex_state = 244}, + [3643] = {.lex_state = 88}, + [3644] = {.lex_state = 88}, + [3645] = {.lex_state = 579}, + [3646] = {.lex_state = 210}, + [3647] = {.lex_state = 83}, + [3648] = {.lex_state = 129}, + [3649] = {.lex_state = 129}, + [3650] = {.lex_state = 247}, + [3651] = {.lex_state = 127}, + [3652] = {.lex_state = 2}, + [3653] = {.lex_state = 258}, + [3654] = {.lex_state = 244}, + [3655] = {.lex_state = 244}, + [3656] = {.lex_state = 210}, + [3657] = {.lex_state = 83}, + [3658] = {.lex_state = 105}, + [3659] = {.lex_state = 244}, + [3660] = {.lex_state = 106}, + [3661] = {.lex_state = 83}, + [3662] = {.lex_state = 221}, + [3663] = {.lex_state = 247}, + [3664] = {.lex_state = 106}, + [3665] = {.lex_state = 128}, + [3666] = {.lex_state = 276}, + [3667] = {.lex_state = 579}, + [3668] = {.lex_state = 275}, + [3669] = {.lex_state = 108}, + [3670] = {.lex_state = 122}, + [3671] = {.lex_state = 222}, + [3672] = {.lex_state = 127}, + [3673] = {.lex_state = 31}, + [3674] = {.lex_state = 45}, + [3675] = {.lex_state = 222}, + [3676] = {.lex_state = 210}, + [3677] = {.lex_state = 31}, + [3678] = {.lex_state = 122}, + [3679] = {.lex_state = 579}, + [3680] = {.lex_state = 579}, + [3681] = {.lex_state = 579}, + [3682] = {.lex_state = 122}, + [3683] = {.lex_state = 85}, + [3684] = {.lex_state = 127}, + [3685] = {.lex_state = 45}, + [3686] = {.lex_state = 88}, + [3687] = {.lex_state = 122}, + [3688] = {.lex_state = 45}, + [3689] = {.lex_state = 45}, + [3690] = {.lex_state = 45}, + [3691] = {.lex_state = 216}, + [3692] = {.lex_state = 45}, + [3693] = {.lex_state = 122}, + [3694] = {.lex_state = 31}, + [3695] = {.lex_state = 249}, + [3696] = {.lex_state = 31}, + [3697] = {.lex_state = 129}, + [3698] = {.lex_state = 242}, + [3699] = {.lex_state = 45}, + [3700] = {.lex_state = 122}, + [3701] = {.lex_state = 107}, + [3702] = {.lex_state = 45}, + [3703] = {.lex_state = 107}, + [3704] = {.lex_state = 248}, + [3705] = {.lex_state = 45}, + [3706] = {.lex_state = 45}, + [3707] = {.lex_state = 248}, + [3708] = {.lex_state = 45}, [3709] = {.lex_state = 31}, - [3710] = {.lex_state = 249}, - [3711] = {.lex_state = 124}, - [3712] = {.lex_state = 131}, - [3713] = {.lex_state = 46}, - [3714] = {.lex_state = 578}, - [3715] = {.lex_state = 578}, - [3716] = {.lex_state = 46}, - [3717] = {.lex_state = 249}, - [3718] = {.lex_state = 124}, - [3719] = {.lex_state = 212}, - [3720] = {.lex_state = 277}, - [3721] = {.lex_state = 46}, - [3722] = {.lex_state = 277}, - [3723] = {.lex_state = 260}, - [3724] = {.lex_state = 46}, - [3725] = {.lex_state = 277}, - [3726] = {.lex_state = 124}, - [3727] = {.lex_state = 46}, - [3728] = {.lex_state = 31}, - [3729] = {.lex_state = 46}, - [3730] = {.lex_state = 249}, - [3731] = {.lex_state = 276}, - [3732] = {.lex_state = 0}, - [3733] = {.lex_state = 577}, - [3734] = {.lex_state = 0}, - [3735] = {.lex_state = 0}, - [3736] = {.lex_state = 0}, - [3737] = {.lex_state = 659}, - [3738] = {.lex_state = 640}, - [3739] = {.lex_state = 625}, - [3740] = {.lex_state = 625}, - [3741] = {.lex_state = 244}, - [3742] = {.lex_state = 111}, - [3743] = {.lex_state = 276}, - [3744] = {.lex_state = 276}, - [3745] = {.lex_state = 276}, - [3746] = {.lex_state = 225}, - [3747] = {.lex_state = 182}, - [3748] = {.lex_state = 2072}, - [3749] = {.lex_state = 2072}, - [3750] = {.lex_state = 249}, - [3751] = {.lex_state = 258}, - [3752] = {.lex_state = 182}, - [3753] = {.lex_state = 31}, - [3754] = {.lex_state = 31}, - [3755] = {.lex_state = 129}, - [3756] = {.lex_state = 124}, - [3757] = {.lex_state = 124}, - [3758] = {.lex_state = 129}, - [3759] = {.lex_state = 251}, - [3760] = {.lex_state = 182}, - [3761] = {.lex_state = 0}, - [3762] = {.lex_state = 31}, - [3763] = {.lex_state = 0}, - [3764] = {.lex_state = 0}, - [3765] = {.lex_state = 201}, - [3766] = {.lex_state = 256}, + [3710] = {.lex_state = 245}, + [3711] = {.lex_state = 45}, + [3712] = {.lex_state = 129}, + [3713] = {.lex_state = 129}, + [3714] = {.lex_state = 122}, + [3715] = {.lex_state = 205}, + [3716] = {.lex_state = 45}, + [3717] = {.lex_state = 579}, + [3718] = {.lex_state = 122}, + [3719] = {.lex_state = 127}, + [3720] = {.lex_state = 276}, + [3721] = {.lex_state = 275}, + [3722] = {.lex_state = 129}, + [3723] = {.lex_state = 31}, + [3724] = {.lex_state = 88}, + [3725] = {.lex_state = 115}, + [3726] = {.lex_state = 45}, + [3727] = {.lex_state = 45}, + [3728] = {.lex_state = 259}, + [3729] = {.lex_state = 88}, + [3730] = {.lex_state = 45}, + [3731] = {.lex_state = 122}, + [3732] = {.lex_state = 45}, + [3733] = {.lex_state = 45}, + [3734] = {.lex_state = 256}, + [3735] = {.lex_state = 122}, + [3736] = {.lex_state = 122}, + [3737] = {.lex_state = 31}, + [3738] = {.lex_state = 45}, + [3739] = {.lex_state = 45}, + [3740] = {.lex_state = 31}, + [3741] = {.lex_state = 122}, + [3742] = {.lex_state = 222}, + [3743] = {.lex_state = 248}, + [3744] = {.lex_state = 213}, + [3745] = {.lex_state = 45}, + [3746] = {.lex_state = 45}, + [3747] = {.lex_state = 107}, + [3748] = {.lex_state = 579}, + [3749] = {.lex_state = 129}, + [3750] = {.lex_state = 122}, + [3751] = {.lex_state = 84}, + [3752] = {.lex_state = 259}, + [3753] = {.lex_state = 45}, + [3754] = {.lex_state = 88}, + [3755] = {.lex_state = 122}, + [3756] = {.lex_state = 129}, + [3757] = {.lex_state = 276}, + [3758] = {.lex_state = 107}, + [3759] = {.lex_state = 210}, + [3760] = {.lex_state = 45}, + [3761] = {.lex_state = 31}, + [3762] = {.lex_state = 129}, + [3763] = {.lex_state = 276}, + [3764] = {.lex_state = 222}, + [3765] = {.lex_state = 276}, + [3766] = {.lex_state = 222}, [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}, - [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}, + [3768] = {.lex_state = 276}, + [3769] = {.lex_state = 275}, + [3770] = {.lex_state = 107}, + [3771] = {.lex_state = 129}, + [3772] = {.lex_state = 248}, + [3773] = {.lex_state = 31}, + [3774] = {.lex_state = 275}, + [3775] = {.lex_state = 638}, + [3776] = {.lex_state = 243}, + [3777] = {.lex_state = 88}, + [3778] = {.lex_state = 223}, + [3779] = {.lex_state = 109}, + [3780] = {.lex_state = 275}, + [3781] = {.lex_state = 275}, + [3782] = {.lex_state = 275}, + [3783] = {.lex_state = 257}, + [3784] = {.lex_state = 180}, + [3785] = {.lex_state = 2074}, + [3786] = {.lex_state = 2074}, + [3787] = {.lex_state = 248}, + [3788] = {.lex_state = 31}, + [3789] = {.lex_state = 31}, + [3790] = {.lex_state = 180}, + [3791] = {.lex_state = 122}, + [3792] = {.lex_state = 122}, + [3793] = {.lex_state = 180}, + [3794] = {.lex_state = 275}, + [3795] = {.lex_state = 275}, + [3796] = {.lex_state = 275}, + [3797] = {.lex_state = 250}, + [3798] = {.lex_state = 31}, + [3799] = {.lex_state = 0}, + [3800] = {.lex_state = 0}, + [3801] = {.lex_state = 0}, + [3802] = {.lex_state = 31}, + [3803] = {.lex_state = 127}, + [3804] = {.lex_state = 199}, + [3805] = {.lex_state = 255}, + [3806] = {.lex_state = 127}, + [3807] = {.lex_state = 31}, + [3808] = {.lex_state = 31}, + [3809] = {.lex_state = 122}, + [3810] = {.lex_state = 88}, + [3811] = {.lex_state = 122}, + [3812] = {.lex_state = 128}, + [3813] = {.lex_state = 188}, + [3814] = {.lex_state = 122}, + [3815] = {.lex_state = 122}, + [3816] = {.lex_state = 128}, + [3817] = {.lex_state = 128}, + [3818] = {.lex_state = 31}, + [3819] = {.lex_state = 128}, + [3820] = {.lex_state = 0}, + [3821] = {.lex_state = 0}, + [3822] = {.lex_state = 0}, + [3823] = {.lex_state = 0}, + [3824] = {.lex_state = 180}, + [3825] = {.lex_state = 275}, + [3826] = {.lex_state = 2074}, + [3827] = {.lex_state = 2074}, + [3828] = {.lex_state = 122}, + [3829] = {.lex_state = 275}, + [3830] = {.lex_state = 180}, + [3831] = {.lex_state = 117}, + [3832] = {.lex_state = 122}, + [3833] = {.lex_state = 117}, + [3834] = {.lex_state = 2074}, + [3835] = {.lex_state = 2074}, + [3836] = {.lex_state = 127}, + [3837] = {.lex_state = 578}, + [3838] = {.lex_state = 248}, + [3839] = {.lex_state = 127}, + [3840] = {.lex_state = 127}, + [3841] = {.lex_state = 122}, + [3842] = {.lex_state = 122}, + [3843] = {.lex_state = 127}, + [3844] = {.lex_state = 127}, + [3845] = {.lex_state = 127}, + [3846] = {.lex_state = 122}, + [3847] = {.lex_state = 180}, + [3848] = {.lex_state = 275}, + [3849] = {.lex_state = 86}, + [3850] = {.lex_state = 86}, + [3851] = {.lex_state = 129}, + [3852] = {.lex_state = 180}, + [3853] = {.lex_state = 257}, + [3854] = {.lex_state = 112}, + [3855] = {.lex_state = 31}, + [3856] = {.lex_state = 0}, + [3857] = {.lex_state = 180}, + [3858] = {.lex_state = 2074}, + [3859] = {.lex_state = 2074}, + [3860] = {.lex_state = 129}, + [3861] = {.lex_state = 180}, + [3862] = {.lex_state = 180}, + [3863] = {.lex_state = 2074}, + [3864] = {.lex_state = 2074}, + [3865] = {.lex_state = 180}, + [3866] = {.lex_state = 180}, + [3867] = {.lex_state = 122}, + [3868] = {.lex_state = 122}, + [3869] = {.lex_state = 2074}, + [3870] = {.lex_state = 2074}, + [3871] = {.lex_state = 180}, + [3872] = {.lex_state = 180}, + [3873] = {.lex_state = 180}, + [3874] = {.lex_state = 226}, + [3875] = {.lex_state = 180}, + [3876] = {.lex_state = 2178}, + [3877] = {.lex_state = 2178}, + [3878] = {.lex_state = 180}, + [3879] = {.lex_state = 260}, + [3880] = {.lex_state = 180}, + [3881] = {.lex_state = 180}, + [3882] = {.lex_state = 237}, + [3883] = {.lex_state = 31}, + [3884] = {.lex_state = 122}, + [3885] = {.lex_state = 578}, + [3886] = {.lex_state = 638}, + [3887] = {.lex_state = 250}, + [3888] = {.lex_state = 638}, + [3889] = {.lex_state = 214}, + [3890] = {.lex_state = 122}, + [3891] = {.lex_state = 214}, + [3892] = {.lex_state = 122}, + [3893] = {.lex_state = 188}, + [3894] = {.lex_state = 200}, + [3895] = {.lex_state = 260}, + [3896] = {.lex_state = 260}, + [3897] = {.lex_state = 260}, + [3898] = {.lex_state = 31}, + [3899] = {.lex_state = 638}, + [3900] = {.lex_state = 638}, + [3901] = {.lex_state = 638}, + [3902] = {.lex_state = 122}, + [3903] = {.lex_state = 122}, + [3904] = {.lex_state = 122}, + [3905] = {.lex_state = 122}, + [3906] = {.lex_state = 255}, + [3907] = {.lex_state = 31}, + [3908] = {.lex_state = 261}, + [3909] = {.lex_state = 31}, + [3910] = {.lex_state = 275}, + [3911] = {.lex_state = 275}, + [3912] = {.lex_state = 275}, + [3913] = {.lex_state = 612}, + [3914] = {.lex_state = 0}, + [3915] = {.lex_state = 275}, + [3916] = {.lex_state = 275}, + [3917] = {.lex_state = 275}, + [3918] = {.lex_state = 116}, + [3919] = {.lex_state = 0}, + [3920] = {.lex_state = 275}, + [3921] = {.lex_state = 275}, + [3922] = {.lex_state = 275}, + [3923] = {.lex_state = 0}, + [3924] = {.lex_state = 0}, + [3925] = {.lex_state = 627}, + [3926] = {.lex_state = 627}, + [3927] = {.lex_state = 88}, + [3928] = {.lex_state = 661}, + [3929] = {.lex_state = 178}, + [3930] = {.lex_state = 87}, + [3931] = {.lex_state = 627}, + [3932] = {.lex_state = 87}, + [3933] = {.lex_state = 87}, + [3934] = {.lex_state = 129}, + [3935] = {.lex_state = 121}, + [3936] = {.lex_state = 627}, + [3937] = {.lex_state = 129}, + [3938] = {.lex_state = 129}, + [3939] = {.lex_state = 627}, + [3940] = {.lex_state = 124}, + [3941] = {.lex_state = 118}, [3942] = {.lex_state = 0}, - [3943] = {.lex_state = 217}, - [3944] = {.lex_state = 217}, - [3945] = {.lex_state = 278}, - [3946] = {.lex_state = 88}, - [3947] = {.lex_state = 131}, - [3948] = {.lex_state = 88}, - [3949] = {.lex_state = 131}, - [3950] = {.lex_state = 88}, - [3951] = {.lex_state = 0}, - [3952] = {.lex_state = 625}, - [3953] = {.lex_state = 581}, - [3954] = {.lex_state = 124}, - [3955] = {.lex_state = 180}, - [3956] = {.lex_state = 278}, - [3957] = {.lex_state = 622}, - [3958] = {.lex_state = 89}, - [3959] = {.lex_state = 0}, - [3960] = {.lex_state = 278}, - [3961] = {.lex_state = 88}, - [3962] = {.lex_state = 160}, - [3963] = {.lex_state = 0}, - [3964] = {.lex_state = 160}, - [3965] = {.lex_state = 124}, - [3966] = {.lex_state = 180}, - [3967] = {.lex_state = 278}, - [3968] = {.lex_state = 33}, - [3969] = {.lex_state = 180}, - [3970] = {.lex_state = 581}, - [3971] = {.lex_state = 120}, - [3972] = {.lex_state = 89}, - [3973] = {.lex_state = 120}, - [3974] = {.lex_state = 180}, - [3975] = {.lex_state = 278}, - [3976] = {.lex_state = 124}, - [3977] = {.lex_state = 252}, - [3978] = {.lex_state = 278}, - [3979] = {.lex_state = 180}, - [3980] = {.lex_state = 278}, - [3981] = {.lex_state = 278}, - [3982] = {.lex_state = 278}, - [3983] = {.lex_state = 0}, - [3984] = {.lex_state = 0}, - [3985] = {.lex_state = 230}, - [3986] = {.lex_state = 180}, - [3987] = {.lex_state = 278}, - [3988] = {.lex_state = 278}, - [3989] = {.lex_state = 0}, - [3990] = {.lex_state = 252}, - [3991] = {.lex_state = 180}, - [3992] = {.lex_state = 278}, - [3993] = {.lex_state = 129}, - [3994] = {.lex_state = 278}, - [3995] = {.lex_state = 230}, - [3996] = {.lex_state = 180}, - [3997] = {.lex_state = 31}, - [3998] = {.lex_state = 180}, - [3999] = {.lex_state = 180}, - [4000] = {.lex_state = 180}, - [4001] = {.lex_state = 625}, - [4002] = {.lex_state = 227}, - [4003] = {.lex_state = 180}, - [4004] = {.lex_state = 180}, - [4005] = {.lex_state = 124}, - [4006] = {.lex_state = 180}, - [4007] = {.lex_state = 625}, - [4008] = {.lex_state = 180}, - [4009] = {.lex_state = 180}, - [4010] = {.lex_state = 180}, - [4011] = {.lex_state = 180}, - [4012] = {.lex_state = 88}, - [4013] = {.lex_state = 88}, - [4014] = {.lex_state = 622}, - [4015] = {.lex_state = 217}, - [4016] = {.lex_state = 120}, - [4017] = {.lex_state = 217}, - [4018] = {.lex_state = 217}, - [4019] = {.lex_state = 278}, - [4020] = {.lex_state = 88}, - [4021] = {.lex_state = 31}, - [4022] = {.lex_state = 217}, - [4023] = {.lex_state = 276}, - [4024] = {.lex_state = 252}, - [4025] = {.lex_state = 89}, - [4026] = {.lex_state = 88}, - [4027] = {.lex_state = 33}, - [4028] = {.lex_state = 577}, - [4029] = {.lex_state = 31}, - [4030] = {.lex_state = 88}, - [4031] = {.lex_state = 88}, - [4032] = {.lex_state = 263}, - [4033] = {.lex_state = 124}, - [4034] = {.lex_state = 2}, - [4035] = {.lex_state = 263}, - [4036] = {.lex_state = 180}, - [4037] = {.lex_state = 124}, - [4038] = {.lex_state = 37}, - [4039] = {.lex_state = 46}, - [4040] = {.lex_state = 2}, - [4041] = {.lex_state = 2}, - [4042] = {.lex_state = 652}, - [4043] = {.lex_state = 121}, - [4044] = {.lex_state = 121}, - [4045] = {.lex_state = 2}, - [4046] = {.lex_state = 2}, - [4047] = {.lex_state = 278}, - [4048] = {.lex_state = 124}, - [4049] = {.lex_state = 31}, - [4050] = {.lex_state = 245}, - [4051] = {.lex_state = 268}, - [4052] = {.lex_state = 31}, - [4053] = {.lex_state = 31}, - [4054] = {.lex_state = 31}, - [4055] = {.lex_state = 149}, - [4056] = {.lex_state = 238}, - [4057] = {.lex_state = 122}, - [4058] = {.lex_state = 190}, - [4059] = {.lex_state = 126}, - [4060] = {.lex_state = 93}, - [4061] = {.lex_state = 238}, - [4062] = {.lex_state = 238}, - [4063] = {.lex_state = 0}, - [4064] = {.lex_state = 149}, - [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}, + [3943] = {.lex_state = 0}, + [3944] = {.lex_state = 118}, + [3945] = {.lex_state = 158}, + [3946] = {.lex_state = 87}, + [3947] = {.lex_state = 158}, + [3948] = {.lex_state = 122}, + [3949] = {.lex_state = 251}, + [3950] = {.lex_state = 33}, + [3951] = {.lex_state = 178}, + [3952] = {.lex_state = 277}, + [3953] = {.lex_state = 124}, + [3954] = {.lex_state = 623}, + [3955] = {.lex_state = 127}, + [3956] = {.lex_state = 2}, + [3957] = {.lex_state = 199}, + [3958] = {.lex_state = 277}, + [3959] = {.lex_state = 188}, + [3960] = {.lex_state = 122}, + [3961] = {.lex_state = 178}, + [3962] = {.lex_state = 277}, + [3963] = {.lex_state = 277}, + [3964] = {.lex_state = 224}, + [3965] = {.lex_state = 623}, + [3966] = {.lex_state = 277}, + [3967] = {.lex_state = 87}, + [3968] = {.lex_state = 0}, + [3969] = {.lex_state = 0}, + [3970] = {.lex_state = 178}, + [3971] = {.lex_state = 277}, + [3972] = {.lex_state = 122}, + [3973] = {.lex_state = 122}, + [3974] = {.lex_state = 122}, + [3975] = {.lex_state = 122}, + [3976] = {.lex_state = 118}, + [3977] = {.lex_state = 277}, + [3978] = {.lex_state = 118}, + [3979] = {.lex_state = 178}, + [3980] = {.lex_state = 277}, + [3981] = {.lex_state = 118}, + [3982] = {.lex_state = 31}, + [3983] = {.lex_state = 228}, + [3984] = {.lex_state = 277}, + [3985] = {.lex_state = 118}, + [3986] = {.lex_state = 118}, + [3987] = {.lex_state = 178}, + [3988] = {.lex_state = 277}, + [3989] = {.lex_state = 225}, + [3990] = {.lex_state = 627}, + [3991] = {.lex_state = 251}, + [3992] = {.lex_state = 582}, + [3993] = {.lex_state = 277}, + [3994] = {.lex_state = 178}, + [3995] = {.lex_state = 277}, + [3996] = {.lex_state = 228}, + [3997] = {.lex_state = 178}, + [3998] = {.lex_state = 277}, + [3999] = {.lex_state = 118}, + [4000] = {.lex_state = 122}, + [4001] = {.lex_state = 627}, + [4002] = {.lex_state = 277}, + [4003] = {.lex_state = 87}, + [4004] = {.lex_state = 178}, + [4005] = {.lex_state = 178}, + [4006] = {.lex_state = 623}, + [4007] = {.lex_state = 178}, + [4008] = {.lex_state = 178}, + [4009] = {.lex_state = 87}, + [4010] = {.lex_state = 178}, + [4011] = {.lex_state = 582}, + [4012] = {.lex_state = 31}, + [4013] = {.lex_state = 178}, + [4014] = {.lex_state = 178}, + [4015] = {.lex_state = 178}, + [4016] = {.lex_state = 215}, + [4017] = {.lex_state = 124}, + [4018] = {.lex_state = 178}, + [4019] = {.lex_state = 178}, + [4020] = {.lex_state = 178}, + [4021] = {.lex_state = 623}, + [4022] = {.lex_state = 118}, + [4023] = {.lex_state = 31}, + [4024] = {.lex_state = 277}, + [4025] = {.lex_state = 215}, + [4026] = {.lex_state = 178}, + [4027] = {.lex_state = 623}, + [4028] = {.lex_state = 215}, + [4029] = {.lex_state = 277}, + [4030] = {.lex_state = 215}, + [4031] = {.lex_state = 275}, + [4032] = {.lex_state = 215}, + [4033] = {.lex_state = 215}, + [4034] = {.lex_state = 87}, + [4035] = {.lex_state = 88}, + [4036] = {.lex_state = 2}, + [4037] = {.lex_state = 118}, + [4038] = {.lex_state = 215}, + [4039] = {.lex_state = 275}, + [4040] = {.lex_state = 122}, + [4041] = {.lex_state = 275}, + [4042] = {.lex_state = 31}, + [4043] = {.lex_state = 122}, + [4044] = {.lex_state = 215}, + [4045] = {.lex_state = 33}, + [4046] = {.lex_state = 118}, + [4047] = {.lex_state = 36}, + [4048] = {.lex_state = 87}, + [4049] = {.lex_state = 45}, + [4050] = {.lex_state = 215}, + [4051] = {.lex_state = 118}, + [4052] = {.lex_state = 215}, + [4053] = {.lex_state = 87}, + [4054] = {.lex_state = 87}, + [4055] = {.lex_state = 578}, + [4056] = {.lex_state = 262}, + [4057] = {.lex_state = 251}, + [4058] = {.lex_state = 277}, + [4059] = {.lex_state = 178}, + [4060] = {.lex_state = 275}, + [4061] = {.lex_state = 147}, + [4062] = {.lex_state = 0}, + [4063] = {.lex_state = 262}, + [4064] = {.lex_state = 2}, + [4065] = {.lex_state = 0}, + [4066] = {.lex_state = 623}, + [4067] = {.lex_state = 122}, + [4068] = {.lex_state = 88}, + [4069] = {.lex_state = 87}, + [4070] = {.lex_state = 654}, + [4071] = {.lex_state = 119}, + [4072] = {.lex_state = 87}, + [4073] = {.lex_state = 147}, + [4074] = {.lex_state = 127}, + [4075] = {.lex_state = 2}, + [4076] = {.lex_state = 627}, + [4077] = {.lex_state = 251}, + [4078] = {.lex_state = 119}, + [4079] = {.lex_state = 122}, + [4080] = {.lex_state = 277}, + [4081] = {.lex_state = 215}, + [4082] = {.lex_state = 627}, + [4083] = {.lex_state = 118}, + [4084] = {.lex_state = 2}, + [4085] = {.lex_state = 251}, + [4086] = {.lex_state = 225}, + [4087] = {.lex_state = 0}, + [4088] = {.lex_state = 0}, + [4089] = {.lex_state = 118}, + [4090] = {.lex_state = 627}, + [4091] = {.lex_state = 88}, + [4092] = {.lex_state = 277}, + [4093] = {.lex_state = 215}, + [4094] = {.lex_state = 2}, + [4095] = {.lex_state = 215}, + [4096] = {.lex_state = 224}, + [4097] = {.lex_state = 188}, + [4098] = {.lex_state = 147}, + [4099] = {.lex_state = 188}, + [4100] = {.lex_state = 578}, [4101] = {.lex_state = 31}, - [4102] = {.lex_state = 149}, - [4103] = {.lex_state = 124}, - [4104] = {.lex_state = 231}, - [4105] = {.lex_state = 190}, - [4106] = {.lex_state = 190}, - [4107] = {.lex_state = 190}, - [4108] = {.lex_state = 129}, - [4109] = {.lex_state = 190}, - [4110] = {.lex_state = 31}, - [4111] = {.lex_state = 0}, - [4112] = {.lex_state = 122}, - [4113] = {.lex_state = 190}, - [4114] = {.lex_state = 31}, - [4115] = {.lex_state = 190}, - [4116] = {.lex_state = 190}, - [4117] = {.lex_state = 190}, - [4118] = {.lex_state = 122}, - [4119] = {.lex_state = 190}, - [4120] = {.lex_state = 122}, - [4121] = {.lex_state = 190}, - [4122] = {.lex_state = 190}, - [4123] = {.lex_state = 190}, - [4124] = {.lex_state = 122}, - [4125] = {.lex_state = 122}, - [4126] = {.lex_state = 123}, - [4127] = {.lex_state = 122}, - [4128] = {.lex_state = 149}, - [4129] = {.lex_state = 31}, - [4130] = {.lex_state = 231}, - [4131] = {.lex_state = 123}, - [4132] = {.lex_state = 123}, - [4133] = {.lex_state = 252}, - [4134] = {.lex_state = 217}, - [4135] = {.lex_state = 577}, - [4136] = {.lex_state = 31}, - [4137] = {.lex_state = 31}, + [4102] = {.lex_state = 31}, + [4103] = {.lex_state = 0}, + [4104] = {.lex_state = 188}, + [4105] = {.lex_state = 188}, + [4106] = {.lex_state = 229}, + [4107] = {.lex_state = 229}, + [4108] = {.lex_state = 31}, + [4109] = {.lex_state = 122}, + [4110] = {.lex_state = 229}, + [4111] = {.lex_state = 188}, + [4112] = {.lex_state = 229}, + [4113] = {.lex_state = 122}, + [4114] = {.lex_state = 236}, + [4115] = {.lex_state = 229}, + [4116] = {.lex_state = 236}, + [4117] = {.lex_state = 578}, + [4118] = {.lex_state = 578}, + [4119] = {.lex_state = 578}, + [4120] = {.lex_state = 188}, + [4121] = {.lex_state = 122}, + [4122] = {.lex_state = 122}, + [4123] = {.lex_state = 229}, + [4124] = {.lex_state = 229}, + [4125] = {.lex_state = 31}, + [4126] = {.lex_state = 0}, + [4127] = {.lex_state = 0}, + [4128] = {.lex_state = 0}, + [4129] = {.lex_state = 0}, + [4130] = {.lex_state = 31}, + [4131] = {.lex_state = 0}, + [4132] = {.lex_state = 244}, + [4133] = {.lex_state = 31}, + [4134] = {.lex_state = 0}, + [4135] = {.lex_state = 31}, + [4136] = {.lex_state = 87}, + [4137] = {.lex_state = 244}, [4138] = {.lex_state = 31}, - [4139] = {.lex_state = 31}, - [4140] = {.lex_state = 126}, - [4141] = {.lex_state = 245}, + [4139] = {.lex_state = 263}, + [4140] = {.lex_state = 31}, + [4141] = {.lex_state = 41}, [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}, + [4143] = {.lex_state = 122}, + [4144] = {.lex_state = 236}, + [4145] = {.lex_state = 180}, + [4146] = {.lex_state = 215}, + [4147] = {.lex_state = 41}, + [4148] = {.lex_state = 147}, + [4149] = {.lex_state = 267}, + [4150] = {.lex_state = 224}, + [4151] = {.lex_state = 224}, + [4152] = {.lex_state = 251}, + [4153] = {.lex_state = 0}, + [4154] = {.lex_state = 188}, + [4155] = {.lex_state = 626}, + [4156] = {.lex_state = 236}, + [4157] = {.lex_state = 120}, + [4158] = {.lex_state = 31}, + [4159] = {.lex_state = 31}, + [4160] = {.lex_state = 41}, + [4161] = {.lex_state = 31}, + [4162] = {.lex_state = 236}, + [4163] = {.lex_state = 236}, + [4164] = {.lex_state = 129}, + [4165] = {.lex_state = 188}, + [4166] = {.lex_state = 122}, + [4167] = {.lex_state = 122}, + [4168] = {.lex_state = 188}, + [4169] = {.lex_state = 188}, + [4170] = {.lex_state = 0}, + [4171] = {.lex_state = 188}, + [4172] = {.lex_state = 0}, + [4173] = {.lex_state = 178}, + [4174] = {.lex_state = 121}, + [4175] = {.lex_state = 122}, + [4176] = {.lex_state = 31}, + [4177] = {.lex_state = 120}, + [4178] = {.lex_state = 124}, + [4179] = {.lex_state = 122}, + [4180] = {.lex_state = 121}, + [4181] = {.lex_state = 122}, + [4182] = {.lex_state = 122}, + [4183] = {.lex_state = 188}, + [4184] = {.lex_state = 0}, + [4185] = {.lex_state = 124}, + [4186] = {.lex_state = 147}, + [4187] = {.lex_state = 188}, + [4188] = {.lex_state = 188}, + [4189] = {.lex_state = 188}, + [4190] = {.lex_state = 0}, + [4191] = {.lex_state = 188}, + [4192] = {.lex_state = 0}, + [4193] = {.lex_state = 121}, + [4194] = {.lex_state = 188}, + [4195] = {.lex_state = 120}, + [4196] = {.lex_state = 147}, + [4197] = {.lex_state = 188}, + [4198] = {.lex_state = 188}, + [4199] = {.lex_state = 188}, + [4200] = {.lex_state = 188}, + [4201] = {.lex_state = 188}, + [4202] = {.lex_state = 188}, + [4203] = {.lex_state = 188}, + [4204] = {.lex_state = 120}, + [4205] = {.lex_state = 120}, + [4206] = {.lex_state = 122}, + [4207] = {.lex_state = 122}, + [4208] = {.lex_state = 31}, + [4209] = {.lex_state = 120}, + [4210] = {.lex_state = 120}, + [4211] = {.lex_state = 251}, + [4212] = {.lex_state = 120}, + [4213] = {.lex_state = 31}, + [4214] = {.lex_state = 31}, + [4215] = {.lex_state = 31}, + [4216] = {.lex_state = 31}, + [4217] = {.lex_state = 0}, + [4218] = {.lex_state = 31}, + [4219] = {.lex_state = 252}, + [4220] = {.lex_state = 122}, + [4221] = {.lex_state = 578}, + [4222] = {.lex_state = 124}, + [4223] = {.lex_state = 122}, + [4224] = {.lex_state = 120}, + [4225] = {.lex_state = 0}, + [4226] = {.lex_state = 180}, + [4227] = {.lex_state = 124}, + [4228] = {.lex_state = 124}, + [4229] = {.lex_state = 31}, + [4230] = {.lex_state = 120}, + [4231] = {.lex_state = 244}, + [4232] = {.lex_state = 31}, + [4233] = {.lex_state = 120}, + [4234] = {.lex_state = 578}, + [4235] = {.lex_state = 244}, [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}, + [4239] = {.lex_state = 124}, + [4240] = {.lex_state = 147}, + [4241] = {.lex_state = 122}, + [4242] = {.lex_state = 31}, [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}, + [4244] = {.lex_state = 623}, + [4245] = {.lex_state = 244}, + [4246] = {.lex_state = 31}, + [4247] = {.lex_state = 31}, + [4248] = {.lex_state = 626}, + [4249] = {.lex_state = 188}, + [4250] = {.lex_state = 127}, + [4251] = {.lex_state = 178}, + [4252] = {.lex_state = 626}, + [4253] = {.lex_state = 31}, + [4254] = {.lex_state = 31}, + [4255] = {.lex_state = 0}, + [4256] = {.lex_state = 0}, + [4257] = {.lex_state = 244}, + [4258] = {.lex_state = 31}, [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}, + [4260] = {.lex_state = 31}, + [4261] = {.lex_state = 147}, + [4262] = {.lex_state = 31}, + [4263] = {.lex_state = 31}, + [4264] = {.lex_state = 31}, + [4265] = {.lex_state = 244}, + [4266] = {.lex_state = 31}, + [4267] = {.lex_state = 31}, + [4268] = {.lex_state = 31}, [4269] = {.lex_state = 31}, [4270] = {.lex_state = 31}, - [4271] = {.lex_state = 0}, - [4272] = {.lex_state = 0}, + [4271] = {.lex_state = 31}, + [4272] = {.lex_state = 31}, [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}, + [4274] = {.lex_state = 229}, + [4275] = {.lex_state = 578}, + [4276] = {.lex_state = 244}, + [4277] = {.lex_state = 224}, + [4278] = {.lex_state = 224}, + [4279] = {.lex_state = 229}, + [4280] = {.lex_state = 147}, + [4281] = {.lex_state = 180}, [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}, + [4283] = {.lex_state = 244}, + [4284] = {.lex_state = 229}, + [4285] = {.lex_state = 188}, + [4286] = {.lex_state = 244}, + [4287] = {.lex_state = 122}, + [4288] = {.lex_state = 0}, + [4289] = {.lex_state = 0}, + [4290] = {.lex_state = 31}, + [4291] = {.lex_state = 244}, + [4292] = {.lex_state = 31}, [4293] = {.lex_state = 31}, - [4294] = {.lex_state = 31}, - [4295] = {.lex_state = 190}, - [4296] = {.lex_state = 190}, + [4294] = {.lex_state = 127}, + [4295] = {.lex_state = 244}, + [4296] = {.lex_state = 244}, [4297] = {.lex_state = 31}, - [4298] = {.lex_state = 124}, + [4298] = {.lex_state = 31}, [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}, + [4300] = {.lex_state = 244}, + [4301] = {.lex_state = 127}, + [4302] = {.lex_state = 224}, + [4303] = {.lex_state = 0}, + [4304] = {.lex_state = 224}, + [4305] = {.lex_state = 31}, + [4306] = {.lex_state = 215}, [4307] = {.lex_state = 31}, - [4308] = {.lex_state = 42}, + [4308] = {.lex_state = 31}, [4309] = {.lex_state = 31}, - [4310] = {.lex_state = 264}, + [4310] = {.lex_state = 88}, [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}, + [4312] = {.lex_state = 31}, + [4313] = {.lex_state = 147}, + [4314] = {.lex_state = 578}, + [4315] = {.lex_state = 147}, + [4316] = {.lex_state = 627}, + [4317] = {.lex_state = 0}, + [4318] = {.lex_state = 0}, + [4319] = {.lex_state = 31}, [4320] = {.lex_state = 31}, [4321] = {.lex_state = 31}, [4322] = {.lex_state = 31}, - [4323] = {.lex_state = 264}, + [4323] = {.lex_state = 31}, [4324] = {.lex_state = 31}, - [4325] = {.lex_state = 31}, + [4325] = {.lex_state = 224}, [4326] = {.lex_state = 31}, [4327] = {.lex_state = 31}, - [4328] = {.lex_state = 31}, - [4329] = {.lex_state = 31}, - [4330] = {.lex_state = 31}, + [4328] = {.lex_state = 188}, + [4329] = {.lex_state = 188}, + [4330] = {.lex_state = 188}, [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}, + [4332] = {.lex_state = 188}, + [4333] = {.lex_state = 224}, + [4334] = {.lex_state = 122}, + [4335] = {.lex_state = 31}, + [4336] = {.lex_state = 122}, + [4337] = {.lex_state = 224}, [4338] = {.lex_state = 31}, - [4339] = {.lex_state = 31}, + [4339] = {.lex_state = 122}, [4340] = {.lex_state = 31}, [4341] = {.lex_state = 31}, - [4342] = {.lex_state = 122}, - [4343] = {.lex_state = 245}, + [4342] = {.lex_state = 31}, + [4343] = {.lex_state = 31}, [4344] = {.lex_state = 31}, [4345] = {.lex_state = 31}, - [4346] = {.lex_state = 31}, + [4346] = {.lex_state = 263}, [4347] = {.lex_state = 31}, [4348] = {.lex_state = 31}, - [4349] = {.lex_state = 122}, - [4350] = {.lex_state = 226}, + [4349] = {.lex_state = 31}, + [4350] = {.lex_state = 31}, [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}, + [4352] = {.lex_state = 31}, + [4353] = {.lex_state = 31}, + [4354] = {.lex_state = 31}, + [4355] = {.lex_state = 31}, + [4356] = {.lex_state = 31}, + [4357] = {.lex_state = 31}, + [4358] = {.lex_state = 31}, + [4359] = {.lex_state = 147}, + [4360] = {.lex_state = 263}, + [4361] = {.lex_state = 147}, + [4362] = {.lex_state = 31}, + [4363] = {.lex_state = 147}, + [4364] = {.lex_state = 147}, + [4365] = {.lex_state = 31}, + [4366] = {.lex_state = 263}, + [4367] = {.lex_state = 31}, + [4368] = {.lex_state = 263}, [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}, + [4370] = {.lex_state = 244}, + [4371] = {.lex_state = 244}, + [4372] = {.lex_state = 244}, + [4373] = {.lex_state = 122}, + [4374] = {.lex_state = 224}, + [4375] = {.lex_state = 224}, [4376] = {.lex_state = 0}, - [4377] = {.lex_state = 124}, - [4378] = {.lex_state = 89}, - [4379] = {.lex_state = 0}, - [4380] = {.lex_state = 124}, - [4381] = {.lex_state = 93}, - [4382] = {.lex_state = 46}, - [4383] = {.lex_state = 0}, - [4384] = {.lex_state = 0}, - [4385] = {.lex_state = 0}, - [4386] = {.lex_state = 124}, - [4387] = {.lex_state = 0}, - [4388] = {.lex_state = 124}, - [4389] = {.lex_state = 0}, - [4390] = {.lex_state = 0}, - [4391] = {.lex_state = 624}, - [4392] = {.lex_state = 0}, - [4393] = {.lex_state = 123}, - [4394] = {.lex_state = 0}, - [4395] = {.lex_state = 0}, - [4396] = {.lex_state = 0}, - [4397] = {.lex_state = 0}, - [4398] = {.lex_state = 126}, - [4399] = {.lex_state = 0}, - [4400] = {.lex_state = 46}, - [4401] = {.lex_state = 34}, - [4402] = {.lex_state = 34}, - [4403] = {.lex_state = 0}, - [4404] = {.lex_state = 0}, + [4377] = {.lex_state = 0}, + [4378] = {.lex_state = 0}, + [4379] = {.lex_state = 31}, + [4380] = {.lex_state = 31}, + [4381] = {.lex_state = 31}, + [4382] = {.lex_state = 31}, + [4383] = {.lex_state = 31}, + [4384] = {.lex_state = 31}, + [4385] = {.lex_state = 31}, + [4386] = {.lex_state = 244}, + [4387] = {.lex_state = 31}, + [4388] = {.lex_state = 120}, + [4389] = {.lex_state = 229}, + [4390] = {.lex_state = 147}, + [4391] = {.lex_state = 120}, + [4392] = {.lex_state = 120}, + [4393] = {.lex_state = 31}, + [4394] = {.lex_state = 229}, + [4395] = {.lex_state = 31}, + [4396] = {.lex_state = 31}, + [4397] = {.lex_state = 31}, + [4398] = {.lex_state = 0}, + [4399] = {.lex_state = 31}, + [4400] = {.lex_state = 0}, + [4401] = {.lex_state = 0}, + [4402] = {.lex_state = 0}, + [4403] = {.lex_state = 31}, + [4404] = {.lex_state = 31}, [4405] = {.lex_state = 31}, [4406] = {.lex_state = 0}, - [4407] = {.lex_state = 123}, - [4408] = {.lex_state = 34}, + [4407] = {.lex_state = 31}, + [4408] = {.lex_state = 0}, [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}, + [4411] = {.lex_state = 0}, + [4412] = {.lex_state = 229}, + [4413] = {.lex_state = 122}, + [4414] = {.lex_state = 31}, + [4415] = {.lex_state = 122}, + [4416] = {.lex_state = 239}, + [4417] = {.lex_state = 239}, + [4418] = {.lex_state = 31}, [4419] = {.lex_state = 0}, - [4420] = {.lex_state = 0}, - [4421] = {.lex_state = 129}, - [4422] = {.lex_state = 0}, + [4420] = {.lex_state = 239}, + [4421] = {.lex_state = 0}, + [4422] = {.lex_state = 127}, [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}, + [4424] = {.lex_state = 0}, + [4425] = {.lex_state = 122}, + [4426] = {.lex_state = 45}, + [4427] = {.lex_state = 45}, + [4428] = {.lex_state = 270}, + [4429] = {.lex_state = 227}, + [4430] = {.lex_state = 147}, + [4431] = {.lex_state = 124}, [4432] = {.lex_state = 0}, [4433] = {.lex_state = 0}, - [4434] = {.lex_state = 0}, - [4435] = {.lex_state = 0}, - [4436] = {.lex_state = 124}, - [4437] = {.lex_state = 0}, - [4438] = {.lex_state = 233}, - [4439] = {.lex_state = 149}, - [4440] = {.lex_state = 0}, - [4441] = {.lex_state = 149}, + [4434] = {.lex_state = 239}, + [4435] = {.lex_state = 34}, + [4436] = {.lex_state = 122}, + [4437] = {.lex_state = 34}, + [4438] = {.lex_state = 239}, + [4439] = {.lex_state = 122}, + [4440] = {.lex_state = 122}, + [4441] = {.lex_state = 188}, [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}, + [4445] = {.lex_state = 0}, + [4446] = {.lex_state = 0}, + [4447] = {.lex_state = 270}, + [4448] = {.lex_state = 147}, + [4449] = {.lex_state = 188}, + [4450] = {.lex_state = 147}, + [4451] = {.lex_state = 0}, + [4452] = {.lex_state = 0}, + [4453] = {.lex_state = 0}, + [4454] = {.lex_state = 188}, + [4455] = {.lex_state = 188}, + [4456] = {.lex_state = 121}, + [4457] = {.lex_state = 578}, + [4458] = {.lex_state = 626}, [4459] = {.lex_state = 0}, - [4460] = {.lex_state = 31}, - [4461] = {.lex_state = 129}, - [4462] = {.lex_state = 46}, - [4463] = {.lex_state = 46}, - [4464] = {.lex_state = 149}, - [4465] = {.lex_state = 89}, - [4466] = {.lex_state = 46}, - [4467] = {.lex_state = 93}, - [4468] = {.lex_state = 123}, - [4469] = {.lex_state = 611}, - [4470] = {.lex_state = 149}, - [4471] = {.lex_state = 93}, - [4472] = {.lex_state = 123}, - [4473] = {.lex_state = 231}, - [4474] = {.lex_state = 93}, - [4475] = {.lex_state = 229}, - [4476] = {.lex_state = 190}, - [4477] = {.lex_state = 190}, - [4478] = {.lex_state = 190}, - [4479] = {.lex_state = 124}, - [4480] = {.lex_state = 124}, - [4481] = {.lex_state = 0}, - [4482] = {.lex_state = 149}, - [4483] = {.lex_state = 124}, - [4484] = {.lex_state = 149}, - [4485] = {.lex_state = 232}, - [4486] = {.lex_state = 0}, - [4487] = {.lex_state = 0}, - [4488] = {.lex_state = 0}, - [4489] = {.lex_state = 0}, - [4490] = {.lex_state = 93}, - [4491] = {.lex_state = 278}, - [4492] = {.lex_state = 0}, - [4493] = {.lex_state = 93}, - [4494] = {.lex_state = 0}, - [4495] = {.lex_state = 0}, - [4496] = {.lex_state = 124}, - [4497] = {.lex_state = 93}, - [4498] = {.lex_state = 93}, - [4499] = {.lex_state = 229}, - [4500] = {.lex_state = 0}, - [4501] = {.lex_state = 93}, - [4502] = {.lex_state = 180}, - [4503] = {.lex_state = 31}, + [4460] = {.lex_state = 147}, + [4461] = {.lex_state = 122}, + [4462] = {.lex_state = 34}, + [4463] = {.lex_state = 147}, + [4464] = {.lex_state = 122}, + [4465] = {.lex_state = 147}, + [4466] = {.lex_state = 122}, + [4467] = {.lex_state = 0}, + [4468] = {.lex_state = 122}, + [4469] = {.lex_state = 0}, + [4470] = {.lex_state = 122}, + [4471] = {.lex_state = 0}, + [4472] = {.lex_state = 88}, + [4473] = {.lex_state = 0}, + [4474] = {.lex_state = 31}, + [4475] = {.lex_state = 122}, + [4476] = {.lex_state = 0}, + [4477] = {.lex_state = 188}, + [4478] = {.lex_state = 0}, + [4479] = {.lex_state = 45}, + [4480] = {.lex_state = 0}, + [4481] = {.lex_state = 122}, + [4482] = {.lex_state = 224}, + [4483] = {.lex_state = 0}, + [4484] = {.lex_state = 0}, + [4485] = {.lex_state = 34}, + [4486] = {.lex_state = 239}, + [4487] = {.lex_state = 253}, + [4488] = {.lex_state = 227}, + [4489] = {.lex_state = 122}, + [4490] = {.lex_state = 122}, + [4491] = {.lex_state = 127}, + [4492] = {.lex_state = 147}, + [4493] = {.lex_state = 122}, + [4494] = {.lex_state = 147}, + [4495] = {.lex_state = 277}, + [4496] = {.lex_state = 147}, + [4497] = {.lex_state = 122}, + [4498] = {.lex_state = 147}, + [4499] = {.lex_state = 34}, + [4500] = {.lex_state = 147}, + [4501] = {.lex_state = 122}, + [4502] = {.lex_state = 31}, + [4503] = {.lex_state = 121}, [4504] = {.lex_state = 0}, - [4505] = {.lex_state = 124}, - [4506] = {.lex_state = 124}, + [4505] = {.lex_state = 31}, + [4506] = {.lex_state = 122}, [4507] = {.lex_state = 0}, - [4508] = {.lex_state = 0}, - [4509] = {.lex_state = 93}, - [4510] = {.lex_state = 190}, - [4511] = {.lex_state = 190}, - [4512] = {.lex_state = 93}, - [4513] = {.lex_state = 190}, - [4514] = {.lex_state = 124}, - [4515] = {.lex_state = 190}, - [4516] = {.lex_state = 190}, - [4517] = {.lex_state = 190}, - [4518] = {.lex_state = 0}, - [4519] = {.lex_state = 0}, - [4520] = {.lex_state = 149}, - [4521] = {.lex_state = 0}, - [4522] = {.lex_state = 31}, + [4508] = {.lex_state = 122}, + [4509] = {.lex_state = 0}, + [4510] = {.lex_state = 0}, + [4511] = {.lex_state = 0}, + [4512] = {.lex_state = 0}, + [4513] = {.lex_state = 31}, + [4514] = {.lex_state = 0}, + [4515] = {.lex_state = 147}, + [4516] = {.lex_state = 122}, + [4517] = {.lex_state = 0}, + [4518] = {.lex_state = 34}, + [4519] = {.lex_state = 122}, + [4520] = {.lex_state = 31}, + [4521] = {.lex_state = 122}, + [4522] = {.lex_state = 147}, [4523] = {.lex_state = 0}, - [4524] = {.lex_state = 124}, - [4525] = {.lex_state = 0}, - [4526] = {.lex_state = 124}, - [4527] = {.lex_state = 0}, - [4528] = {.lex_state = 0}, - [4529] = {.lex_state = 0}, - [4530] = {.lex_state = 278}, - [4531] = {.lex_state = 124}, - [4532] = {.lex_state = 31}, + [4524] = {.lex_state = 239}, + [4525] = {.lex_state = 227}, + [4526] = {.lex_state = 188}, + [4527] = {.lex_state = 612}, + [4528] = {.lex_state = 188}, + [4529] = {.lex_state = 188}, + [4530] = {.lex_state = 122}, + [4531] = {.lex_state = 0}, + [4532] = {.lex_state = 0}, [4533] = {.lex_state = 0}, [4534] = {.lex_state = 0}, [4535] = {.lex_state = 0}, - [4536] = {.lex_state = 124}, - [4537] = {.lex_state = 31}, + [4536] = {.lex_state = 0}, + [4537] = {.lex_state = 122}, [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}, + [4539] = {.lex_state = 122}, + [4540] = {.lex_state = 31}, + [4541] = {.lex_state = 122}, + [4542] = {.lex_state = 31}, + [4543] = {.lex_state = 239}, + [4544] = {.lex_state = 0}, + [4545] = {.lex_state = 147}, + [4546] = {.lex_state = 31}, + [4547] = {.lex_state = 121}, [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}, + [4549] = {.lex_state = 121}, + [4550] = {.lex_state = 122}, + [4551] = {.lex_state = 0}, + [4552] = {.lex_state = 0}, + [4553] = {.lex_state = 188}, + [4554] = {.lex_state = 122}, [4555] = {.lex_state = 31}, - [4556] = {.lex_state = 124}, - [4557] = {.lex_state = 124}, - [4558] = {.lex_state = 124}, - [4559] = {.lex_state = 124}, - [4560] = {.lex_state = 0}, - [4561] = {.lex_state = 0}, - [4562] = {.lex_state = 0}, - [4563] = {.lex_state = 0}, - [4564] = {.lex_state = 0}, + [4556] = {.lex_state = 188}, + [4557] = {.lex_state = 188}, + [4558] = {.lex_state = 31}, + [4559] = {.lex_state = 229}, + [4560] = {.lex_state = 122}, + [4561] = {.lex_state = 122}, + [4562] = {.lex_state = 31}, + [4563] = {.lex_state = 277}, + [4564] = {.lex_state = 631}, [4565] = {.lex_state = 0}, - [4566] = {.lex_state = 124}, - [4567] = {.lex_state = 0}, - [4568] = {.lex_state = 124}, - [4569] = {.lex_state = 124}, - [4570] = {.lex_state = 124}, - [4571] = {.lex_state = 124}, - [4572] = {.lex_state = 149}, - [4573] = {.lex_state = 271}, - [4574] = {.lex_state = 149}, - [4575] = {.lex_state = 190}, - [4576] = {.lex_state = 190}, - [4577] = {.lex_state = 31}, - [4578] = {.lex_state = 124}, - [4579] = {.lex_state = 31}, - [4580] = {.lex_state = 124}, - [4581] = {.lex_state = 124}, - [4582] = {.lex_state = 0}, - [4583] = {.lex_state = 124}, - [4584] = {.lex_state = 226}, + [4566] = {.lex_state = 0}, + [4567] = {.lex_state = 147}, + [4568] = {.lex_state = 0}, + [4569] = {.lex_state = 230}, + [4570] = {.lex_state = 45}, + [4571] = {.lex_state = 122}, + [4572] = {.lex_state = 122}, + [4573] = {.lex_state = 122}, + [4574] = {.lex_state = 188}, + [4575] = {.lex_state = 122}, + [4576] = {.lex_state = 0}, + [4577] = {.lex_state = 631}, + [4578] = {.lex_state = 0}, + [4579] = {.lex_state = 0}, + [4580] = {.lex_state = 239}, + [4581] = {.lex_state = 0}, + [4582] = {.lex_state = 121}, + [4583] = {.lex_state = 0}, + [4584] = {.lex_state = 31}, [4585] = {.lex_state = 0}, - [4586] = {.lex_state = 124}, - [4587] = {.lex_state = 31}, - [4588] = {.lex_state = 124}, - [4589] = {.lex_state = 31}, - [4590] = {.lex_state = 124}, - [4591] = {.lex_state = 31}, - [4592] = {.lex_state = 31}, - [4593] = {.lex_state = 31}, - [4594] = {.lex_state = 254}, - [4595] = {.lex_state = 124}, - [4596] = {.lex_state = 190}, - [4597] = {.lex_state = 31}, - [4598] = {.lex_state = 269}, - [4599] = {.lex_state = 46}, - [4600] = {.lex_state = 93}, - [4601] = {.lex_state = 232}, - [4602] = {.lex_state = 31}, - [4603] = {.lex_state = 34}, - [4604] = {.lex_state = 0}, - [4605] = {.lex_state = 577}, - [4606] = {.lex_state = 190}, - [4607] = {.lex_state = 124}, - [4608] = {.lex_state = 124}, - [4609] = {.lex_state = 93}, - [4610] = {.lex_state = 229}, - [4611] = {.lex_state = 0}, - [4612] = {.lex_state = 42}, - [4613] = {.lex_state = 123}, - [4614] = {.lex_state = 629}, - [4615] = {.lex_state = 124}, - [4616] = {.lex_state = 31}, + [4586] = {.lex_state = 0}, + [4587] = {.lex_state = 34}, + [4588] = {.lex_state = 0}, + [4589] = {.lex_state = 0}, + [4590] = {.lex_state = 0}, + [4591] = {.lex_state = 239}, + [4592] = {.lex_state = 239}, + [4593] = {.lex_state = 0}, + [4594] = {.lex_state = 124}, + [4595] = {.lex_state = 122}, + [4596] = {.lex_state = 121}, + [4597] = {.lex_state = 0}, + [4598] = {.lex_state = 0}, + [4599] = {.lex_state = 230}, + [4600] = {.lex_state = 0}, + [4601] = {.lex_state = 122}, + [4602] = {.lex_state = 239}, + [4603] = {.lex_state = 0}, + [4604] = {.lex_state = 268}, + [4605] = {.lex_state = 122}, + [4606] = {.lex_state = 31}, + [4607] = {.lex_state = 0}, + [4608] = {.lex_state = 45}, + [4609] = {.lex_state = 31}, + [4610] = {.lex_state = 188}, + [4611] = {.lex_state = 31}, + [4612] = {.lex_state = 188}, + [4613] = {.lex_state = 31}, + [4614] = {.lex_state = 188}, + [4615] = {.lex_state = 0}, + [4616] = {.lex_state = 0}, [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}, + [4618] = {.lex_state = 0}, + [4619] = {.lex_state = 122}, + [4620] = {.lex_state = 41}, + [4621] = {.lex_state = 239}, + [4622] = {.lex_state = 227}, + [4623] = {.lex_state = 0}, [4624] = {.lex_state = 0}, - [4625] = {.lex_state = 2182}, - [4626] = {.lex_state = 2182}, - [4627] = {.lex_state = 2182}, - [4628] = {.lex_state = 2182}, - [4629] = {.lex_state = 0}, - [4630] = {.lex_state = 2186}, - [4631] = {.lex_state = 2186}, - [4632] = {.lex_state = 2186}, - [4633] = {.lex_state = 2186}, - [4634] = {.lex_state = 0}, - [4635] = {.lex_state = 0}, - [4636] = {.lex_state = 124}, - [4637] = {.lex_state = 0}, - [4638] = {.lex_state = 0}, - [4639] = {.lex_state = 0}, - [4640] = {.lex_state = 629}, - [4641] = {.lex_state = 126}, - [4642] = {.lex_state = 0}, + [4625] = {.lex_state = 178}, + [4626] = {.lex_state = 0}, + [4627] = {.lex_state = 122}, + [4628] = {.lex_state = 0}, + [4629] = {.lex_state = 122}, + [4630] = {.lex_state = 0}, + [4631] = {.lex_state = 0}, + [4632] = {.lex_state = 578}, + [4633] = {.lex_state = 45}, + [4634] = {.lex_state = 31}, + [4635] = {.lex_state = 231}, + [4636] = {.lex_state = 0}, + [4637] = {.lex_state = 239}, + [4638] = {.lex_state = 122}, + [4639] = {.lex_state = 122}, + [4640] = {.lex_state = 0}, + [4641] = {.lex_state = 122}, + [4642] = {.lex_state = 239}, [4643] = {.lex_state = 0}, [4644] = {.lex_state = 0}, - [4645] = {.lex_state = 0}, - [4646] = {.lex_state = 2182}, + [4645] = {.lex_state = 277}, + [4646] = {.lex_state = 45}, [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}, + [4648] = {.lex_state = 239}, + [4649] = {.lex_state = 122}, + [4650] = {.lex_state = 122}, + [4651] = {.lex_state = 122}, + [4652] = {.lex_state = 0}, + [4653] = {.lex_state = 31}, + [4654] = {.lex_state = 0}, + [4655] = {.lex_state = 31}, + [4656] = {.lex_state = 0}, + [4657] = {.lex_state = 122}, + [4658] = {.lex_state = 88}, + [4659] = {.lex_state = 127}, + [4660] = {.lex_state = 0}, + [4661] = {.lex_state = 0}, [4662] = {.lex_state = 0}, - [4663] = {.lex_state = 2182}, + [4663] = {.lex_state = 31}, [4664] = {.lex_state = 0}, - [4665] = {.lex_state = 2182}, + [4665] = {.lex_state = 122}, [4666] = {.lex_state = 0}, - [4667] = {.lex_state = 0}, - [4668] = {.lex_state = 0}, - [4669] = {.lex_state = 229}, - [4670] = {.lex_state = 0}, - [4671] = {.lex_state = 229}, - [4672] = {.lex_state = 0}, - [4673] = {.lex_state = 229}, - [4674] = {.lex_state = 578}, - [4675] = {.lex_state = 0}, - [4676] = {.lex_state = 124}, - [4677] = {.lex_state = 229}, - [4678] = {.lex_state = 124}, - [4679] = {.lex_state = 0}, - [4680] = {.lex_state = 0}, - [4681] = {.lex_state = 124}, - [4682] = {.lex_state = 124}, + [4667] = {.lex_state = 147}, + [4668] = {.lex_state = 31}, + [4669] = {.lex_state = 122}, + [4670] = {.lex_state = 2184}, + [4671] = {.lex_state = 2184}, + [4672] = {.lex_state = 2184}, + [4673] = {.lex_state = 122}, + [4674] = {.lex_state = 2184}, + [4675] = {.lex_state = 2184}, + [4676] = {.lex_state = 122}, + [4677] = {.lex_state = 122}, + [4678] = {.lex_state = 227}, + [4679] = {.lex_state = 227}, + [4680] = {.lex_state = 2184}, + [4681] = {.lex_state = 122}, + [4682] = {.lex_state = 0}, [4683] = {.lex_state = 0}, - [4684] = {.lex_state = 124}, - [4685] = {.lex_state = 226}, - [4686] = {.lex_state = 0}, - [4687] = {.lex_state = 0}, - [4688] = {.lex_state = 0}, - [4689] = {.lex_state = 0}, + [4684] = {.lex_state = 2184}, + [4685] = {.lex_state = 227}, + [4686] = {.lex_state = 2184}, + [4687] = {.lex_state = 579}, + [4688] = {.lex_state = 2188}, + [4689] = {.lex_state = 2188}, [4690] = {.lex_state = 0}, [4691] = {.lex_state = 0}, - [4692] = {.lex_state = 0}, - [4693] = {.lex_state = 0}, + [4692] = {.lex_state = 122}, + [4693] = {.lex_state = 227}, [4694] = {.lex_state = 0}, - [4695] = {.lex_state = 229}, + [4695] = {.lex_state = 0}, [4696] = {.lex_state = 0}, - [4697] = {.lex_state = 229}, - [4698] = {.lex_state = 229}, + [4697] = {.lex_state = 0}, + [4698] = {.lex_state = 0}, [4699] = {.lex_state = 0}, - [4700] = {.lex_state = 123}, - [4701] = {.lex_state = 124}, - [4702] = {.lex_state = 0}, - [4703] = {.lex_state = 0}, + [4700] = {.lex_state = 0}, + [4701] = {.lex_state = 0}, + [4702] = {.lex_state = 2186}, + [4703] = {.lex_state = 224}, [4704] = {.lex_state = 0}, [4705] = {.lex_state = 0}, - [4706] = {.lex_state = 577}, + [4706] = {.lex_state = 0}, [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}, + [4708] = {.lex_state = 227}, + [4709] = {.lex_state = 0}, + [4710] = {.lex_state = 0}, + [4711] = {.lex_state = 0}, + [4712] = {.lex_state = 2184}, + [4713] = {.lex_state = 2184}, + [4714] = {.lex_state = 0}, + [4715] = {.lex_state = 122}, + [4716] = {.lex_state = 0}, + [4717] = {.lex_state = 0}, + [4718] = {.lex_state = 122}, [4719] = {.lex_state = 0}, - [4720] = {.lex_state = 124}, - [4721] = {.lex_state = 124}, - [4722] = {.lex_state = 0}, - [4723] = {.lex_state = 229}, + [4720] = {.lex_state = 0}, + [4721] = {.lex_state = 122}, + [4722] = {.lex_state = 121}, + [4723] = {.lex_state = 122}, [4724] = {.lex_state = 0}, - [4725] = {.lex_state = 2182}, - [4726] = {.lex_state = 0}, - [4727] = {.lex_state = 124}, - [4728] = {.lex_state = 2184}, - [4729] = {.lex_state = 124}, - [4730] = {.lex_state = 124}, - [4731] = {.lex_state = 124}, + [4725] = {.lex_state = 34}, + [4726] = {.lex_state = 122}, + [4727] = {.lex_state = 2186}, + [4728] = {.lex_state = 2186}, + [4729] = {.lex_state = 0}, + [4730] = {.lex_state = 0}, + [4731] = {.lex_state = 0}, [4732] = {.lex_state = 124}, - [4733] = {.lex_state = 126}, + [4733] = {.lex_state = 122}, [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}, + [4735] = {.lex_state = 0}, + [4736] = {.lex_state = 2188}, + [4737] = {.lex_state = 122}, + [4738] = {.lex_state = 122}, + [4739] = {.lex_state = 0}, + [4740] = {.lex_state = 122}, + [4741] = {.lex_state = 0}, + [4742] = {.lex_state = 227}, + [4743] = {.lex_state = 0}, + [4744] = {.lex_state = 147}, + [4745] = {.lex_state = 0}, + [4746] = {.lex_state = 122}, [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}, + [4748] = {.lex_state = 2184}, + [4749] = {.lex_state = 2184}, + [4750] = {.lex_state = 122}, + [4751] = {.lex_state = 0}, + [4752] = {.lex_state = 631}, + [4753] = {.lex_state = 0}, + [4754] = {.lex_state = 227}, + [4755] = {.lex_state = 124}, [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}, + [4757] = {.lex_state = 124}, + [4758] = {.lex_state = 0}, + [4759] = {.lex_state = 122}, + [4760] = {.lex_state = 2186}, + [4761] = {.lex_state = 0}, + [4762] = {.lex_state = 2184}, [4763] = {.lex_state = 0}, - [4764] = {.lex_state = 2184}, - [4765] = {.lex_state = 124}, - [4766] = {.lex_state = 93}, - [4767] = {.lex_state = 124}, - [4768] = {.lex_state = 124}, - [4769] = {.lex_state = 273}, - [4770] = {.lex_state = 124}, - [4771] = {.lex_state = 0}, - [4772] = {.lex_state = 1714}, - [4773] = {.lex_state = 273}, - [4774] = {.lex_state = 124}, - [4775] = {.lex_state = 2182}, - [4776] = {.lex_state = 0}, - [4777] = {.lex_state = 2182}, - [4778] = {.lex_state = 124}, + [4764] = {.lex_state = 0}, + [4765] = {.lex_state = 122}, + [4766] = {.lex_state = 0}, + [4767] = {.lex_state = 0}, + [4768] = {.lex_state = 0}, + [4769] = {.lex_state = 122}, + [4770] = {.lex_state = 121}, + [4771] = {.lex_state = 122}, + [4772] = {.lex_state = 578}, + [4773] = {.lex_state = 2188}, + [4774] = {.lex_state = 227}, + [4775] = {.lex_state = 2188}, + [4776] = {.lex_state = 2184}, + [4777] = {.lex_state = 2186}, + [4778] = {.lex_state = 2184}, [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}, - [4796] = {.lex_state = 0}, - [4797] = {.lex_state = 0}, - [4798] = {.lex_state = 31}, - [4799] = {.lex_state = 31}, + [4780] = {.lex_state = 0}, + [4781] = {.lex_state = 122}, + [4782] = {.lex_state = 122}, + [4783] = {.lex_state = 0}, + [4784] = {.lex_state = 0}, + [4785] = {.lex_state = 122}, + [4786] = {.lex_state = 227}, + [4787] = {.lex_state = 122}, + [4788] = {.lex_state = 2188}, + [4789] = {.lex_state = 122}, + [4790] = {.lex_state = 122}, + [4791] = {.lex_state = 122}, + [4792] = {.lex_state = 122}, + [4793] = {.lex_state = 227}, + [4794] = {.lex_state = 122}, + [4795] = {.lex_state = 2188}, + [4796] = {.lex_state = 1716}, + [4797] = {.lex_state = 147}, + [4798] = {.lex_state = 626}, + [4799] = {.lex_state = 2}, [4800] = {.lex_state = 0}, - [4801] = {.lex_state = 0, .external_lex_state = 3}, - [4802] = {.lex_state = 1189}, - [4803] = {.lex_state = 0}, - [4804] = {.lex_state = 31}, - [4805] = {.lex_state = 0, .external_lex_state = 3}, - [4806] = {.lex_state = 0}, - [4807] = {.lex_state = 31}, - [4808] = {.lex_state = 31}, - [4809] = {.lex_state = 0}, + [4801] = {.lex_state = 0}, + [4802] = {.lex_state = 578}, + [4803] = {.lex_state = 626}, + [4804] = {.lex_state = 122}, + [4805] = {.lex_state = 227}, + [4806] = {.lex_state = 147}, + [4807] = {.lex_state = 122}, + [4808] = {.lex_state = 0}, + [4809] = {.lex_state = 122}, [4810] = {.lex_state = 0}, - [4811] = {.lex_state = 0}, + [4811] = {.lex_state = 122}, [4812] = {.lex_state = 0}, - [4813] = {.lex_state = 577}, - [4814] = {.lex_state = 577}, - [4815] = {.lex_state = 0}, - [4816] = {.lex_state = 0}, - [4817] = {.lex_state = 31}, - [4818] = {.lex_state = 1189}, - [4819] = {.lex_state = 0}, + [4813] = {.lex_state = 272}, + [4814] = {.lex_state = 2184}, + [4815] = {.lex_state = 2188}, + [4816] = {.lex_state = 2188}, + [4817] = {.lex_state = 227}, + [4818] = {.lex_state = 272}, + [4819] = {.lex_state = 122}, [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}, + [4821] = {.lex_state = 122}, + [4822] = {.lex_state = 227}, + [4823] = {.lex_state = 0}, + [4824] = {.lex_state = 122}, + [4825] = {.lex_state = 0}, [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}, - [4840] = {.lex_state = 0}, - [4841] = {.lex_state = 2184}, - [4842] = {.lex_state = 0}, - [4843] = {.lex_state = 0}, - [4844] = {.lex_state = 577}, - [4845] = {.lex_state = 577}, + [4827] = {.lex_state = 0}, + [4828] = {.lex_state = 239}, + [4829] = {.lex_state = 122}, + [4830] = {.lex_state = 31}, + [4831] = {.lex_state = 31}, + [4832] = {.lex_state = 0}, + [4833] = {.lex_state = 227}, + [4834] = {.lex_state = 122}, + [4835] = {.lex_state = 0}, + [4836] = {.lex_state = 2184}, + [4837] = {.lex_state = 147}, + [4838] = {.lex_state = 122}, + [4839] = {.lex_state = 0}, + [4840] = {.lex_state = 1191}, + [4841] = {.lex_state = 31}, + [4842] = {.lex_state = 230}, + [4843] = {.lex_state = 1191}, + [4844] = {.lex_state = 623}, + [4845] = {.lex_state = 0, .external_lex_state = 3}, [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}, + [4847] = {.lex_state = 0}, + [4848] = {.lex_state = 626}, + [4849] = {.lex_state = 0}, + [4850] = {.lex_state = 0}, + [4851] = {.lex_state = 0}, [4852] = {.lex_state = 0}, - [4853] = {.lex_state = 233}, + [4853] = {.lex_state = 0}, [4854] = {.lex_state = 0}, - [4855] = {.lex_state = 0}, - [4856] = {.lex_state = 577}, - [4857] = {.lex_state = 577}, - [4858] = {.lex_state = 0}, + [4855] = {.lex_state = 578}, + [4856] = {.lex_state = 578}, + [4857] = {.lex_state = 0}, + [4858] = {.lex_state = 2186}, [4859] = {.lex_state = 0}, - [4860] = {.lex_state = 0, .external_lex_state = 3}, - [4861] = {.lex_state = 232}, - [4862] = {.lex_state = 2}, + [4860] = {.lex_state = 31}, + [4861] = {.lex_state = 31}, + [4862] = {.lex_state = 31}, [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}, - [4873] = {.lex_state = 0}, - [4874] = {.lex_state = 577}, - [4875] = {.lex_state = 577}, + [4864] = {.lex_state = 1191}, + [4865] = {.lex_state = 0, .external_lex_state = 3}, + [4866] = {.lex_state = 0}, + [4867] = {.lex_state = 31}, + [4868] = {.lex_state = 1191}, + [4869] = {.lex_state = 0}, + [4870] = {.lex_state = 1191}, + [4871] = {.lex_state = 623}, + [4872] = {.lex_state = 0}, + [4873] = {.lex_state = 578}, + [4874] = {.lex_state = 578}, + [4875] = {.lex_state = 31}, [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}, + [4877] = {.lex_state = 31}, + [4878] = {.lex_state = 623}, + [4879] = {.lex_state = 0, .external_lex_state = 3}, + [4880] = {.lex_state = 2184}, + [4881] = {.lex_state = 0}, + [4882] = {.lex_state = 0}, + [4883] = {.lex_state = 0}, + [4884] = {.lex_state = 45}, + [4885] = {.lex_state = 121}, [4886] = {.lex_state = 0}, - [4887] = {.lex_state = 0}, - [4888] = {.lex_state = 577}, - [4889] = {.lex_state = 577}, - [4890] = {.lex_state = 577}, + [4887] = {.lex_state = 578}, + [4888] = {.lex_state = 578}, + [4889] = {.lex_state = 31}, + [4890] = {.lex_state = 1695}, [4891] = {.lex_state = 31}, - [4892] = {.lex_state = 0, .external_lex_state = 3}, - [4893] = {.lex_state = 31}, + [4892] = {.lex_state = 2188}, + [4893] = {.lex_state = 0, .external_lex_state = 3}, [4894] = {.lex_state = 0}, - [4895] = {.lex_state = 577}, - [4896] = {.lex_state = 577}, - [4897] = {.lex_state = 31}, + [4895] = {.lex_state = 29}, + [4896] = {.lex_state = 230}, + [4897] = {.lex_state = 230}, [4898] = {.lex_state = 0}, - [4899] = {.lex_state = 0, .external_lex_state = 3}, - [4900] = {.lex_state = 0}, + [4899] = {.lex_state = 578}, + [4900] = {.lex_state = 578}, [4901] = {.lex_state = 0}, - [4902] = {.lex_state = 577}, - [4903] = {.lex_state = 577}, - [4904] = {.lex_state = 0}, - [4905] = {.lex_state = 2184}, - [4906] = {.lex_state = 0, .external_lex_state = 3}, - [4907] = {.lex_state = 0}, + [4902] = {.lex_state = 227}, + [4903] = {.lex_state = 0, .external_lex_state = 3}, + [4904] = {.lex_state = 2188}, + [4905] = {.lex_state = 1191}, + [4906] = {.lex_state = 31}, + [4907] = {.lex_state = 578}, [4908] = {.lex_state = 0}, - [4909] = {.lex_state = 577}, - [4910] = {.lex_state = 577}, - [4911] = {.lex_state = 0}, - [4912] = {.lex_state = 0, .external_lex_state = 3}, - [4913] = {.lex_state = 0}, - [4914] = {.lex_state = 577}, - [4915] = {.lex_state = 577}, - [4916] = {.lex_state = 0, .external_lex_state = 4}, - [4917] = {.lex_state = 31}, - [4918] = {.lex_state = 229}, - [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}, + [4909] = {.lex_state = 578}, + [4910] = {.lex_state = 578}, + [4911] = {.lex_state = 0, .external_lex_state = 3}, + [4912] = {.lex_state = 31}, + [4913] = {.lex_state = 0, .external_lex_state = 3}, + [4914] = {.lex_state = 0, .external_lex_state = 3}, + [4915] = {.lex_state = 227}, + [4916] = {.lex_state = 45}, + [4917] = {.lex_state = 0}, + [4918] = {.lex_state = 0}, + [4919] = {.lex_state = 578}, + [4920] = {.lex_state = 578}, + [4921] = {.lex_state = 121}, + [4922] = {.lex_state = 623}, + [4923] = {.lex_state = 0, .external_lex_state = 3}, + [4924] = {.lex_state = 227}, + [4925] = {.lex_state = 0}, + [4926] = {.lex_state = 578}, + [4927] = {.lex_state = 578}, + [4928] = {.lex_state = 2}, [4929] = {.lex_state = 0}, - [4930] = {.lex_state = 0}, + [4930] = {.lex_state = 0, .external_lex_state = 3}, [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}, + [4933] = {.lex_state = 578}, + [4934] = {.lex_state = 578}, + [4935] = {.lex_state = 2199}, + [4936] = {.lex_state = 0, .external_lex_state = 3}, + [4937] = {.lex_state = 2188}, + [4938] = {.lex_state = 0}, + [4939] = {.lex_state = 578}, + [4940] = {.lex_state = 578}, [4941] = {.lex_state = 0}, [4942] = {.lex_state = 0}, - [4943] = {.lex_state = 624}, - [4944] = {.lex_state = 0}, - [4945] = {.lex_state = 577}, - [4946] = {.lex_state = 229}, - [4947] = {.lex_state = 0}, - [4948] = {.lex_state = 2182}, - [4949] = {.lex_state = 0}, - [4950] = {.lex_state = 622}, - [4951] = {.lex_state = 148}, - [4952] = {.lex_state = 1189}, - [4953] = {.lex_state = 31}, - [4954] = {.lex_state = 274}, + [4943] = {.lex_state = 0, .external_lex_state = 3}, + [4944] = {.lex_state = 29}, + [4945] = {.lex_state = 0}, + [4946] = {.lex_state = 578}, + [4947] = {.lex_state = 578}, + [4948] = {.lex_state = 0}, + [4949] = {.lex_state = 227}, + [4950] = {.lex_state = 0, .external_lex_state = 3}, + [4951] = {.lex_state = 31}, + [4952] = {.lex_state = 0}, + [4953] = {.lex_state = 578}, + [4954] = {.lex_state = 578}, [4955] = {.lex_state = 0}, - [4956] = {.lex_state = 577}, - [4957] = {.lex_state = 148}, + [4956] = {.lex_state = 0, .external_lex_state = 3}, + [4957] = {.lex_state = 31}, [4958] = {.lex_state = 0}, - [4959] = {.lex_state = 622}, - [4960] = {.lex_state = 622}, - [4961] = {.lex_state = 0}, - [4962] = {.lex_state = 1189}, - [4963] = {.lex_state = 148}, + [4959] = {.lex_state = 578}, + [4960] = {.lex_state = 578}, + [4961] = {.lex_state = 31}, + [4962] = {.lex_state = 0, .external_lex_state = 3}, + [4963] = {.lex_state = 31}, [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 = 578}, + [4966] = {.lex_state = 578}, + [4967] = {.lex_state = 0}, + [4968] = {.lex_state = 0, .external_lex_state = 4}, + [4969] = {.lex_state = 0}, + [4970] = {.lex_state = 31}, + [4971] = {.lex_state = 666}, [4972] = {.lex_state = 0}, - [4973] = {.lex_state = 1689}, - [4974] = {.lex_state = 0}, + [4973] = {.lex_state = 1691}, + [4974] = {.lex_state = 1695}, [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}, + [4977] = {.lex_state = 146}, + [4978] = {.lex_state = 121}, + [4979] = {.lex_state = 0}, + [4980] = {.lex_state = 273}, + [4981] = {.lex_state = 0}, + [4982] = {.lex_state = 0}, + [4983] = {.lex_state = 0}, + [4984] = {.lex_state = 31}, [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}, - [5003] = {.lex_state = 0}, - [5004] = {.lex_state = 31}, - [5005] = {.lex_state = 2}, - [5006] = {.lex_state = 31}, + [4986] = {.lex_state = 623}, + [4987] = {.lex_state = 0}, + [4988] = {.lex_state = 0}, + [4989] = {.lex_state = 31}, + [4990] = {.lex_state = 0}, + [4991] = {.lex_state = 578}, + [4992] = {.lex_state = 0}, + [4993] = {.lex_state = 227}, + [4994] = {.lex_state = 626}, + [4995] = {.lex_state = 578}, + [4996] = {.lex_state = 31}, + [4997] = {.lex_state = 0, .external_lex_state = 3}, + [4998] = {.lex_state = 0}, + [4999] = {.lex_state = 1191}, + [5000] = {.lex_state = 0}, + [5001] = {.lex_state = 0}, + [5002] = {.lex_state = 623}, + [5003] = {.lex_state = 2}, + [5004] = {.lex_state = 230}, + [5005] = {.lex_state = 0}, + [5006] = {.lex_state = 0}, [5007] = {.lex_state = 0}, - [5008] = {.lex_state = 0}, - [5009] = {.lex_state = 123}, + [5008] = {.lex_state = 2186}, + [5009] = {.lex_state = 0}, [5010] = {.lex_state = 0}, - [5011] = {.lex_state = 0}, - [5012] = {.lex_state = 0}, - [5013] = {.lex_state = 0}, + [5011] = {.lex_state = 31}, + [5012] = {.lex_state = 623}, + [5013] = {.lex_state = 623}, [5014] = {.lex_state = 0}, - [5015] = {.lex_state = 0}, + [5015] = {.lex_state = 2}, [5016] = {.lex_state = 0}, - [5017] = {.lex_state = 0}, + [5017] = {.lex_state = 31}, [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}, + [5019] = {.lex_state = 2}, + [5020] = {.lex_state = 31}, + [5021] = {.lex_state = 1191}, + [5022] = {.lex_state = 1191}, + [5023] = {.lex_state = 0}, + [5024] = {.lex_state = 0}, [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}, + [5026] = {.lex_state = 121}, + [5027] = {.lex_state = 227}, + [5028] = {.lex_state = 31}, + [5029] = {.lex_state = 666}, + [5030] = {.lex_state = 0}, + [5031] = {.lex_state = 0}, + [5032] = {.lex_state = 230}, + [5033] = {.lex_state = 31}, + [5034] = {.lex_state = 0}, + [5035] = {.lex_state = 623}, + [5036] = {.lex_state = 0}, + [5037] = {.lex_state = 0}, + [5038] = {.lex_state = 0, .external_lex_state = 3}, + [5039] = {.lex_state = 623}, [5040] = {.lex_state = 0}, - [5041] = {.lex_state = 0}, - [5042] = {.lex_state = 1189}, - [5043] = {.lex_state = 0}, - [5044] = {.lex_state = 0}, - [5045] = {.lex_state = 148}, - [5046] = {.lex_state = 31}, + [5041] = {.lex_state = 227}, + [5042] = {.lex_state = 31}, + [5043] = {.lex_state = 0, .external_lex_state = 4}, + [5044] = {.lex_state = 578}, + [5045] = {.lex_state = 31}, + [5046] = {.lex_state = 0}, [5047] = {.lex_state = 0}, - [5048] = {.lex_state = 2182}, - [5049] = {.lex_state = 31}, - [5050] = {.lex_state = 229}, - [5051] = {.lex_state = 0}, - [5052] = {.lex_state = 31}, - [5053] = {.lex_state = 0}, + [5048] = {.lex_state = 31}, + [5049] = {.lex_state = 623}, + [5050] = {.lex_state = 0}, + [5051] = {.lex_state = 1191}, + [5052] = {.lex_state = 29}, + [5053] = {.lex_state = 31}, [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 = 31}, + [5056] = {.lex_state = 146}, + [5057] = {.lex_state = 2}, + [5058] = {.lex_state = 31}, + [5059] = {.lex_state = 623}, + [5060] = {.lex_state = 0}, + [5061] = {.lex_state = 227}, + [5062] = {.lex_state = 227}, + [5063] = {.lex_state = 0}, + [5064] = {.lex_state = 0}, + [5065] = {.lex_state = 230}, + [5066] = {.lex_state = 578}, + [5067] = {.lex_state = 578}, + [5068] = {.lex_state = 237}, + [5069] = {.lex_state = 0}, + [5070] = {.lex_state = 0}, + [5071] = {.lex_state = 0}, + [5072] = {.lex_state = 1191}, + [5073] = {.lex_state = 0}, [5074] = {.lex_state = 0}, - [5075] = {.lex_state = 232}, - [5076] = {.lex_state = 0}, - [5077] = {.lex_state = 232}, - [5078] = {.lex_state = 577}, - [5079] = {.lex_state = 577}, + [5075] = {.lex_state = 0}, + [5076] = {.lex_state = 227}, + [5077] = {.lex_state = 1716}, + [5078] = {.lex_state = 230}, + [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}, - [5091] = {.lex_state = 0}, - [5092] = {.lex_state = 622}, - [5093] = {.lex_state = 622}, - [5094] = {.lex_state = 0, .external_lex_state = 4}, + [5082] = {.lex_state = 0}, + [5083] = {.lex_state = 121}, + [5084] = {.lex_state = 29}, + [5085] = {.lex_state = 2184}, + [5086] = {.lex_state = 0}, + [5087] = {.lex_state = 231}, + [5088] = {.lex_state = 0}, + [5089] = {.lex_state = 31}, + [5090] = {.lex_state = 29}, + [5091] = {.lex_state = 121}, + [5092] = {.lex_state = 2184}, + [5093] = {.lex_state = 0}, + [5094] = {.lex_state = 0}, [5095] = {.lex_state = 0}, - [5096] = {.lex_state = 1689}, - [5097] = {.lex_state = 1693}, - [5098] = {.lex_state = 0}, - [5099] = {.lex_state = 624}, - [5100] = {.lex_state = 123}, - [5101] = {.lex_state = 31}, - [5102] = {.lex_state = 0}, - [5103] = {.lex_state = 2}, - [5104] = {.lex_state = 31}, - [5105] = {.lex_state = 31}, + [5096] = {.lex_state = 1191}, + [5097] = {.lex_state = 0}, + [5098] = {.lex_state = 146}, + [5099] = {.lex_state = 0}, + [5100] = {.lex_state = 0}, + [5101] = {.lex_state = 0}, + [5102] = {.lex_state = 31}, + [5103] = {.lex_state = 2186}, + [5104] = {.lex_state = 230}, + [5105] = {.lex_state = 230}, [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}, + [5108] = {.lex_state = 1691}, + [5109] = {.lex_state = 1695}, + [5110] = {.lex_state = 0, .external_lex_state = 3}, + [5111] = {.lex_state = 578}, + [5112] = {.lex_state = 626}, + [5113] = {.lex_state = 623}, + [5114] = {.lex_state = 230}, + [5115] = {.lex_state = 578}, + [5116] = {.lex_state = 0}, + [5117] = {.lex_state = 0}, + [5118] = {.lex_state = 230}, + [5119] = {.lex_state = 0}, + [5120] = {.lex_state = 230}, + [5121] = {.lex_state = 0}, + [5122] = {.lex_state = 0}, + [5123] = {.lex_state = 0}, + [5124] = {.lex_state = 227}, + [5125] = {.lex_state = 29}, + [5126] = {.lex_state = 0, .external_lex_state = 3}, + [5127] = {.lex_state = 227}, + [5128] = {.lex_state = 0}, + [5129] = {.lex_state = 578}, + [5130] = {.lex_state = 0}, + [5131] = {.lex_state = 29}, + [5132] = {.lex_state = 2}, + [5133] = {.lex_state = 31}, + [5134] = {.lex_state = 578}, + [5135] = {.lex_state = 578}, + [5136] = {.lex_state = 121}, + [5137] = {.lex_state = 0}, + [5138] = {.lex_state = 29}, + [5139] = {.lex_state = 0}, + [5140] = {.lex_state = 29}, + [5141] = {.lex_state = 0}, + [5142] = {.lex_state = 0}, + [5143] = {.lex_state = 31}, + [5144] = {.lex_state = 227}, + [5145] = {.lex_state = 0}, + [5146] = {.lex_state = 31}, + [5147] = {.lex_state = 0, .external_lex_state = 4}, + [5148] = {.lex_state = 0}, + [5149] = {.lex_state = 1691}, + [5150] = {.lex_state = 1695}, + [5151] = {.lex_state = 146}, + [5152] = {.lex_state = 626}, + [5153] = {.lex_state = 0}, + [5154] = {.lex_state = 0}, + [5155] = {.lex_state = 0, .external_lex_state = 4}, + [5156] = {.lex_state = 0}, + [5157] = {.lex_state = 1691}, + [5158] = {.lex_state = 1695}, + [5159] = {.lex_state = 0, .external_lex_state = 4}, [5160] = {.lex_state = 0}, - [5161] = {.lex_state = 29}, - [5162] = {.lex_state = 0}, - [5163] = {.lex_state = 0}, - [5164] = {.lex_state = 577}, - [5165] = {.lex_state = 0}, - [5166] = {.lex_state = 239}, - [5167] = {.lex_state = 0}, - [5168] = {.lex_state = 0}, - [5169] = {.lex_state = 0}, - [5170] = {.lex_state = 2186}, - [5171] = {.lex_state = 275}, - [5172] = {.lex_state = 0}, - [5173] = {.lex_state = 31}, - [5174] = {.lex_state = 0}, - [5175] = {.lex_state = 31}, - [5176] = {.lex_state = 0}, - [5177] = {.lex_state = 0}, - [5178] = {.lex_state = 0}, - [5179] = {.lex_state = 31}, - [5180] = {.lex_state = 0}, - [5181] = {.lex_state = 0}, - [5182] = {.lex_state = 1189}, - [5183] = {.lex_state = 0}, - [5184] = {.lex_state = 31}, - [5185] = {.lex_state = 0}, - [5186] = {.lex_state = 0}, - [5187] = {.lex_state = 577}, - [5188] = {.lex_state = 577}, - [5189] = {.lex_state = 31}, - [5190] = {.lex_state = 0}, - [5191] = {.lex_state = 0}, - [5192] = {.lex_state = 232}, - [5193] = {.lex_state = 1189}, - [5194] = {.lex_state = 622}, - [5195] = {.lex_state = 622}, - [5196] = {.lex_state = 1189}, - [5197] = {.lex_state = 622}, - [5198] = {.lex_state = 31}, - [5199] = {.lex_state = 232}, - [5200] = {.lex_state = 622}, - [5201] = {.lex_state = 29}, - [5202] = {.lex_state = 0}, - [5203] = {(TSStateId)(-1),}, + [5161] = {.lex_state = 1691}, + [5162] = {.lex_state = 1695}, + [5163] = {.lex_state = 0, .external_lex_state = 4}, + [5164] = {.lex_state = 0}, + [5165] = {.lex_state = 1691}, + [5166] = {.lex_state = 1695}, + [5167] = {.lex_state = 0, .external_lex_state = 4}, + [5168] = {.lex_state = 1691}, + [5169] = {.lex_state = 1695}, + [5170] = {.lex_state = 0, .external_lex_state = 4}, + [5171] = {.lex_state = 1691}, + [5172] = {.lex_state = 1695}, + [5173] = {.lex_state = 0, .external_lex_state = 4}, + [5174] = {.lex_state = 1691}, + [5175] = {.lex_state = 1695}, + [5176] = {.lex_state = 0, .external_lex_state = 4}, + [5177] = {.lex_state = 1691}, + [5178] = {.lex_state = 1695}, + [5179] = {.lex_state = 0, .external_lex_state = 4}, + [5180] = {.lex_state = 1691}, + [5181] = {.lex_state = 1695}, + [5182] = {.lex_state = 0, .external_lex_state = 4}, + [5183] = {.lex_state = 1691}, + [5184] = {.lex_state = 1695}, + [5185] = {.lex_state = 0, .external_lex_state = 4}, + [5186] = {.lex_state = 1691}, + [5187] = {.lex_state = 1695}, + [5188] = {.lex_state = 0, .external_lex_state = 4}, + [5189] = {.lex_state = 1691}, + [5190] = {.lex_state = 1695}, + [5191] = {.lex_state = 0, .external_lex_state = 4}, + [5192] = {.lex_state = 1691}, + [5193] = {.lex_state = 1695}, + [5194] = {.lex_state = 0, .external_lex_state = 4}, + [5195] = {.lex_state = 1691}, + [5196] = {.lex_state = 1695}, + [5197] = {.lex_state = 0, .external_lex_state = 4}, + [5198] = {.lex_state = 1691}, + [5199] = {.lex_state = 1695}, + [5200] = {.lex_state = 0, .external_lex_state = 4}, + [5201] = {.lex_state = 1691}, + [5202] = {.lex_state = 1695}, + [5203] = {.lex_state = 0, .external_lex_state = 4}, + [5204] = {.lex_state = 1691}, + [5205] = {.lex_state = 1695}, + [5206] = {.lex_state = 0, .external_lex_state = 4}, + [5207] = {.lex_state = 1691}, + [5208] = {.lex_state = 1695}, + [5209] = {.lex_state = 0, .external_lex_state = 3}, + [5210] = {.lex_state = 0}, + [5211] = {.lex_state = 0}, + [5212] = {.lex_state = 0, .external_lex_state = 3}, + [5213] = {.lex_state = 623}, + [5214] = {.lex_state = 31}, + [5215] = {.lex_state = 578}, + [5216] = {.lex_state = 0}, + [5217] = {.lex_state = 0}, + [5218] = {.lex_state = 227}, + [5219] = {.lex_state = 31}, + [5220] = {.lex_state = 0}, + [5221] = {.lex_state = 578}, + [5222] = {.lex_state = 578}, + [5223] = {.lex_state = 578}, + [5224] = {.lex_state = 578}, + [5225] = {.lex_state = 0}, + [5226] = {.lex_state = 0}, + [5227] = {.lex_state = 31}, + [5228] = {.lex_state = 0}, + [5229] = {.lex_state = 1691}, + [5230] = {.lex_state = 0}, + [5231] = {.lex_state = 31}, + [5232] = {.lex_state = 0}, + [5233] = {.lex_state = 1191}, + [5234] = {.lex_state = 29}, + [5235] = {.lex_state = 0}, + [5236] = {.lex_state = 31}, + [5237] = {.lex_state = 623}, + [5238] = {.lex_state = 0}, + [5239] = {.lex_state = 0}, + [5240] = {.lex_state = 578}, + [5241] = {.lex_state = 578}, + [5242] = {.lex_state = 623}, + [5243] = {.lex_state = 0}, + [5244] = {.lex_state = 31}, + [5245] = {.lex_state = 1191}, + [5246] = {.lex_state = 623}, + [5247] = {.lex_state = 31}, + [5248] = {.lex_state = 623}, + [5249] = {.lex_state = 0}, + [5250] = {.lex_state = 0}, + [5251] = {.lex_state = 0}, + [5252] = {.lex_state = 0}, + [5253] = {.lex_state = 0}, + [5254] = {.lex_state = 0}, + [5255] = {.lex_state = 31}, + [5256] = {.lex_state = 31}, + [5257] = {.lex_state = 274}, + [5258] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -38322,76 +38507,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__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), + [sym_nu_script] = STATE(5005), + [sym_shebang] = STATE(47), + [sym__block_body_statement] = STATE(4303), + [sym__declaration] = STATE(4523), + [sym_decl_alias] = STATE(4544), + [sym_stmt_let] = STATE(4536), + [sym_stmt_mut] = STATE(4536), + [sym_stmt_const] = STATE(4536), + [sym_assignment] = STATE(4536), + [sym__mutable_assignment_pattern] = STATE(4478), + [sym__statement] = STATE(4523), + [sym_pipeline] = STATE(4536), + [sym__block_body] = STATE(5082), + [sym_cmd_identifier] = STATE(2923), + [aux_sym__repeat_newline] = STATE(4577), + [sym_attribute_list] = STATE(4457), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4544), + [sym_decl_export] = STATE(4544), + [sym_decl_extern] = STATE(4544), + [sym_decl_module] = STATE(4544), + [sym_decl_use] = STATE(4544), + [sym__ctrl_statement] = STATE(4536), + [sym__ctrl_expression] = STATE(3263), + [sym_ctrl_for] = STATE(4624), + [sym_ctrl_loop] = STATE(4624), + [sym_ctrl_while] = STATE(4624), + [sym_ctrl_if] = STATE(3264), + [sym_ctrl_match] = STATE(3264), + [sym_ctrl_try] = STATE(3264), + [sym__stmt_let_shortcut] = STATE(3269), + [sym_pipe_element] = STATE(2993), + [sym_where_command] = STATE(3263), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1321), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1321), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(896), + [sym_val_range] = STATE(1321), + [sym__value] = STATE(1321), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1318), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(117), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3263), [sym_comment] = STATE(1), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(280), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -38454,85 +38640,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__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5153), + [sym_cmd_identifier] = STATE(2632), + [aux_sym__repeat_newline] = STATE(26), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(42), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym__match_pattern_record_body] = STATE(5069), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(771), + [sym__spread_parenthesized] = STATE(4677), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym__spread_variable] = STATE(4681), [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_val_cellpath] = STATE(903), + [sym_val_number] = STATE(1217), + [sym__val_number_decimal] = STATE(109), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(1217), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(1217), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym__spread_record] = STATE(4677), + [sym_record_body] = STATE(5216), + [sym_record_entry] = STATE(4665), + [sym__record_key] = STATE(4944), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym__types_body_repeat1] = STATE(491), + [aux_sym__match_pattern_record_body_repeat1] = STATE(785), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(850), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38599,83 +38786,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), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4947), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5121), + [sym_cmd_identifier] = STATE(2632), + [aux_sym__repeat_newline] = STATE(20), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(52), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(771), + [sym__spread_parenthesized] = STATE(4677), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(427), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(1217), + [sym__val_number_decimal] = STATE(109), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(1217), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(1217), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym__spread_record] = STATE(4677), + [sym_record_body] = STATE(5128), + [sym_record_entry] = STATE(4651), + [sym__record_key] = STATE(4944), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym__types_body_repeat1] = STATE(642), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(850), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38742,83 +38930,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(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5094), + [sym_cmd_identifier] = STATE(2632), [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(64), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5053), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(36), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(771), + [sym__spread_parenthesized] = STATE(4677), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(427), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(1217), + [sym__val_number_decimal] = STATE(109), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(1217), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(1217), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym__spread_record] = STATE(4677), + [sym_record_body] = STATE(4901), + [sym_record_entry] = STATE(4651), + [sym__record_key] = STATE(4944), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym__types_body_repeat1] = STATE(642), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(850), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38885,83 +39074,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__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5226), + [sym_cmd_identifier] = STATE(2632), + [aux_sym__repeat_newline] = STATE(26), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4995), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(771), + [sym__spread_parenthesized] = STATE(4677), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(427), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(1217), + [sym__val_number_decimal] = STATE(109), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(1217), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(1217), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym__spread_record] = STATE(4677), + [sym_record_body] = STATE(5216), + [sym_record_entry] = STATE(4651), + [sym__record_key] = STATE(4944), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym__types_body_repeat1] = STATE(642), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(850), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39028,83 +39218,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_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5066), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5037), + [sym_cmd_identifier] = STATE(2632), + [aux_sym__repeat_newline] = STATE(16), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(36), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(771), + [sym__spread_parenthesized] = STATE(4677), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(427), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(1217), + [sym__val_number_decimal] = STATE(109), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(1217), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(1217), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym__spread_record] = STATE(4677), + [sym_record_body] = STATE(4901), + [sym_record_entry] = STATE(4651), + [sym__record_key] = STATE(4944), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym__types_body_repeat1] = STATE(642), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(850), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39171,83 +39362,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_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5066), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5153), + [sym_cmd_identifier] = STATE(2632), + [aux_sym__repeat_newline] = STATE(26), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(42), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(771), + [sym__spread_parenthesized] = STATE(4677), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(427), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(1217), + [sym__val_number_decimal] = STATE(109), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(1217), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(1217), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym__spread_record] = STATE(4677), + [sym_record_body] = STATE(5216), + [sym_record_entry] = STATE(4651), + [sym__record_key] = STATE(4944), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym__types_body_repeat1] = STATE(642), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(850), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39314,83 +39506,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_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4995), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5121), + [sym_cmd_identifier] = STATE(2632), + [aux_sym__repeat_newline] = STATE(20), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(52), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(771), + [sym__spread_parenthesized] = STATE(4677), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(427), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(1217), + [sym__val_number_decimal] = STATE(109), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(1217), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(1217), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym__spread_record] = STATE(4677), + [sym_record_body] = STATE(5099), + [sym_record_entry] = STATE(4651), + [sym__record_key] = STATE(4944), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym__types_body_repeat1] = STATE(642), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(850), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39457,83 +39650,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_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5176), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5047), + [sym_cmd_identifier] = STATE(2632), + [aux_sym__repeat_newline] = STATE(20), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(52), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(771), + [sym__spread_parenthesized] = STATE(4677), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(427), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(1217), + [sym__val_number_decimal] = STATE(109), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(1217), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(1217), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym__spread_record] = STATE(4677), + [sym_record_body] = STATE(5128), + [sym_record_entry] = STATE(4651), + [sym__record_key] = STATE(4944), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym__types_body_repeat1] = STATE(642), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(850), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39600,83 +39794,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), - [aux_sym__repeat_newline] = STATE(20), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(57), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5012), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5230), + [sym_cmd_identifier] = STATE(2632), + [aux_sym__repeat_newline] = STATE(23), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(39), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(771), + [sym__spread_parenthesized] = STATE(4677), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(427), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(1217), + [sym__val_number_decimal] = STATE(109), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(1217), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(1217), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym__spread_record] = STATE(4677), + [sym_record_body] = STATE(5235), + [sym_record_entry] = STATE(4651), + [sym__record_key] = STATE(4944), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym__types_body_repeat1] = STATE(642), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(850), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39743,83 +39938,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_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__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(4975), + [sym_cmd_identifier] = STATE(2632), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(53), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(771), + [sym__spread_parenthesized] = STATE(4677), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(427), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(1217), + [sym__val_number_decimal] = STATE(109), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(1217), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(1217), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym__spread_record] = STATE(4677), + [sym_record_body] = STATE(4979), + [sym_record_entry] = STATE(4651), + [sym__record_key] = STATE(4944), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym__types_body_repeat1] = STATE(642), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(850), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39886,83 +40082,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_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5015), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5030), + [sym_cmd_identifier] = STATE(2632), + [aux_sym__repeat_newline] = STATE(25), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(46), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(771), + [sym__spread_parenthesized] = STATE(4677), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(427), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(1217), + [sym__val_number_decimal] = STATE(109), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(1217), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(1217), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym__spread_record] = STATE(4677), + [sym_record_body] = STATE(5095), + [sym_record_entry] = STATE(4651), + [sym__record_key] = STATE(4944), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym__types_body_repeat1] = STATE(642), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(850), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40029,83 +40226,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_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4947), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5094), + [sym_cmd_identifier] = STATE(2632), + [aux_sym__repeat_newline] = STATE(16), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(36), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(771), + [sym__spread_parenthesized] = STATE(4677), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(427), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(1217), + [sym__val_number_decimal] = STATE(109), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(1217), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(1217), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym__spread_record] = STATE(4677), + [sym_record_body] = STATE(4992), + [sym_record_entry] = STATE(4651), + [sym__record_key] = STATE(4944), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym__types_body_repeat1] = STATE(642), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(850), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40172,83 +40370,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), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4941), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5050), + [sym_cmd_identifier] = STATE(2632), + [aux_sym__repeat_newline] = STATE(24), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(58), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(771), + [sym__spread_parenthesized] = STATE(4677), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(427), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(1217), + [sym__val_number_decimal] = STATE(109), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(1217), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(1217), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym__spread_record] = STATE(4677), + [sym_record_body] = STATE(5210), + [sym_record_entry] = STATE(4651), + [sym__record_key] = STATE(4944), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym__types_body_repeat1] = STATE(642), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(850), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40315,83 +40514,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_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5043), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5050), + [sym_cmd_identifier] = STATE(2632), + [aux_sym__repeat_newline] = STATE(24), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(58), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(771), + [sym__spread_parenthesized] = STATE(4677), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(427), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(1217), + [sym__val_number_decimal] = STATE(109), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(1217), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(1217), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym__spread_record] = STATE(4677), + [sym_record_body] = STATE(5060), + [sym_record_entry] = STATE(4651), + [sym__record_key] = STATE(4944), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym__types_body_repeat1] = STATE(642), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(850), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40458,75 +40658,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(16)] = { - [sym__block_body_statement] = STATE(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__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5253), + [sym_cmd_identifier] = STATE(2748), + [aux_sym__repeat_newline] = STATE(1357), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), [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__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -40589,75 +40790,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(17)] = { - [sym__block_body_statement] = STATE(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(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5094), + [sym_cmd_identifier] = STATE(2748), + [aux_sym__repeat_newline] = STATE(16), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(36), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -40720,75 +40922,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(18)] = { - [sym__block_body_statement] = STATE(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(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5121), + [sym_cmd_identifier] = STATE(2748), + [aux_sym__repeat_newline] = STATE(20), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(52), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -40851,75 +41054,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(19)] = { - [sym__block_body_statement] = STATE(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(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5047), + [sym_cmd_identifier] = STATE(2748), + [aux_sym__repeat_newline] = STATE(20), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(52), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -40982,75 +41186,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(20)] = { - [sym__block_body_statement] = STATE(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(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5228), + [sym_cmd_identifier] = STATE(2748), + [aux_sym__repeat_newline] = STATE(1357), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(61), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41113,75 +41318,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(21)] = { - [sym__block_body_statement] = STATE(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(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5037), + [sym_cmd_identifier] = STATE(2748), + [aux_sym__repeat_newline] = STATE(16), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(36), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41244,75 +41450,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(22)] = { - [sym__block_body_statement] = STATE(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(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5007), + [sym_cmd_identifier] = STATE(2748), + [aux_sym__repeat_newline] = STATE(1357), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(55), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41375,75 +41582,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(23)] = { - [sym__block_body_statement] = STATE(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(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5252), + [sym_cmd_identifier] = STATE(2748), + [aux_sym__repeat_newline] = STATE(1357), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(41), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41506,75 +41714,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(24)] = { - [sym__block_body_statement] = STATE(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(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5080), + [sym_cmd_identifier] = STATE(2748), + [aux_sym__repeat_newline] = STATE(1357), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(60), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41637,75 +41846,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(25)] = { - [sym__block_body_statement] = STATE(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(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(4851), + [sym_cmd_identifier] = STATE(2748), + [aux_sym__repeat_newline] = STATE(1357), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(48), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41768,75 +41978,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(26)] = { - [sym__block_body_statement] = STATE(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(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5116), + [sym_cmd_identifier] = STATE(2748), + [aux_sym__repeat_newline] = STATE(1357), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym_parameter_pipes] = STATE(67), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41899,73 +42110,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__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(4846), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), [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(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42028,73 +42240,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__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(4989), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), [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(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42135,7 +42348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(347), + [anon_sym_RPAREN2] = ACTIONS(335), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42157,73 +42370,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__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(5143), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), [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(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42255,7 +42469,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(349), + [anon_sym_RPAREN] = ACTIONS(347), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -42264,7 +42478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(351), + [anon_sym_RPAREN2] = ACTIONS(349), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42286,73 +42500,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__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(5025), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), [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(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42384,7 +42599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(353), + [anon_sym_RPAREN] = ACTIONS(351), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -42393,7 +42608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(355), + [anon_sym_RPAREN2] = ACTIONS(353), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42415,73 +42630,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__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(5048), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), [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(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42513,7 +42729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(355), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -42522,7 +42738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(359), + [anon_sym_RPAREN2] = ACTIONS(357), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42544,73 +42760,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__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(5146), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), [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(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42642,7 +42859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(361), + [anon_sym_RPAREN] = ACTIONS(359), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -42651,7 +42868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(363), + [anon_sym_RPAREN2] = ACTIONS(361), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42673,73 +42890,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__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(5102), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), [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(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42771,7 +42989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(365), + [anon_sym_RPAREN] = ACTIONS(363), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -42780,7 +42998,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(349), [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 +43020,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__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(5227), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), [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(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42900,7 +43119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(367), + [anon_sym_RPAREN] = ACTIONS(365), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -42909,7 +43128,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(367), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42931,73 +43150,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__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(4861), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), [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(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43059,78 +43279,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(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(4931), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -43140,9 +43361,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 +43378,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 +43403,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_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(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(5143), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), [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(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -43268,9 +43490,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 +43507,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 +43532,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__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(4846), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), [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(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43443,78 +43666,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(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5254), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -43524,9 +43748,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 +43765,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 +43790,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_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(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(5256), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), [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(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -43652,9 +43877,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 +43894,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 +43919,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(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(4847), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [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(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -43780,9 +44006,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 +44023,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,78 +44048,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(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(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5154), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [sym_comment] = STATE(42), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -43955,329 +44182,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] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5000), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [sym_comment] = STATE(43), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [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(385), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(44)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5081), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(44), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [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(387), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [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_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(45), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -44312,7 +44284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(385), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -44338,74 +44310,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(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), + [STATE(44)] = { + [sym__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(4963), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(44), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44437,7 +44410,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(391), + [anon_sym_RPAREN] = ACTIONS(387), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44466,74 +44439,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(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), + [STATE(45)] = { + [sym__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(5017), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(45), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44565,7 +44539,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,79 +44568,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(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), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [STATE(46)] = { + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(4857), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(46), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -44676,9 +44651,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), @@ -44693,19 +44668,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(395), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(391), [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), @@ -44718,78 +44693,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [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), + [STATE(47)] = { + [sym__block_body_statement] = STATE(4303), + [sym__declaration] = STATE(4523), + [sym_decl_alias] = STATE(4544), + [sym_stmt_let] = STATE(4536), + [sym_stmt_mut] = STATE(4536), + [sym_stmt_const] = STATE(4536), + [sym_assignment] = STATE(4536), + [sym__mutable_assignment_pattern] = STATE(4478), + [sym__statement] = STATE(4523), + [sym_pipeline] = STATE(4536), + [sym__block_body] = STATE(5081), + [sym_cmd_identifier] = STATE(2923), + [sym_attribute_list] = STATE(4457), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4544), + [sym_decl_export] = STATE(4544), + [sym_decl_extern] = STATE(4544), + [sym_decl_module] = STATE(4544), + [sym_decl_use] = STATE(4544), + [sym__ctrl_statement] = STATE(4536), + [sym__ctrl_expression] = STATE(3263), + [sym_ctrl_for] = STATE(4624), + [sym_ctrl_loop] = STATE(4624), + [sym_ctrl_while] = STATE(4624), + [sym_ctrl_if] = STATE(3264), + [sym_ctrl_match] = STATE(3264), + [sym_ctrl_try] = STATE(3264), + [sym__stmt_let_shortcut] = STATE(3269), + [sym_pipe_element] = STATE(2993), + [sym_where_command] = STATE(3263), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1321), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1321), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(896), + [sym_val_range] = STATE(1321), + [sym__value] = STATE(1321), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1318), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(117), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3263), + [sym_comment] = STATE(47), [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), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(280), + [ts_builtin_sym_end] = ACTIONS(393), + [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(48)] = { + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(4881), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(48), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -44824,7 +44929,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(395), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -44850,74 +44955,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), + [STATE(49)] = { + [sym__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(4841), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(49), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44949,7 +45055,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(397), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44978,74 +45084,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(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), + [STATE(50)] = { + [sym__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5046), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(51), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(4906), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(50), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45077,7 +45184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(399), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -45106,74 +45213,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(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), + [STATE(51)] = { + [sym__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5049), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(52), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(5025), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(51), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45205,7 +45313,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(401), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -45234,74 +45342,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(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), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(52)] = { + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(4853), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(52), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -45336,7 +45445,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(403), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -45362,202 +45471,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), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(55)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5013), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [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), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(53)] = { + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5010), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(53), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -45592,7 +45574,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(405), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -45618,74 +45600,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), + [STATE(54)] = { + [sym__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(5011), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(54), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45717,7 +45700,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(407), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -45746,74 +45729,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(57)] = { - [sym__block_body_statement] = 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), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(55)] = { + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5024), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(55), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -45848,7 +45832,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(409), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -45874,74 +45858,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), + [STATE(56)] = { + [sym__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(5028), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(56), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45973,7 +45958,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(411), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46002,74 +45987,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(59)] = { - [sym__block_body_statement] = 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), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(57)] = { + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5079), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(57), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46104,7 +46090,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(413), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46130,202 +46116,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), - [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(419), - [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(61)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4964), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(61), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(58)] = { + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5086), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(58), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46360,7 +46219,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(415), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46386,74 +46245,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), + [STATE(59)] = { + [sym__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(5089), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(59), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46485,7 +46345,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(417), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46514,74 +46374,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(63)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4974), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(63), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(60)] = { + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5101), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(60), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46616,7 +46477,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(419), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46642,74 +46503,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(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), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(61)] = { + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5243), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(61), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46744,7 +46606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(421), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46770,74 +46632,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), + [STATE(62)] = { + [sym__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(5236), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(62), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46869,7 +46732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(429), + [anon_sym_RPAREN] = ACTIONS(423), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46898,79 +46761,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(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), - [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(63)] = { + [sym__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(4860), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(63), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -46980,9 +46844,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), @@ -46997,19 +46861,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(425), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(431), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(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), @@ -47022,78 +46886,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(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), + [STATE(64)] = { + [sym__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(4875), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(64), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47125,7 +46990,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(427), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47154,74 +47019,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), + [STATE(65)] = { + [sym__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(4889), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(65), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47253,7 +47119,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(429), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47282,74 +47148,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(69)] = { - [sym__block_body_statement] = 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), - [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), + [STATE(66)] = { + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5073), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(66), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -47384,7 +47251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(437), + [anon_sym_RBRACE] = ACTIONS(431), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -47410,79 +47277,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(70)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4846), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(70), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [STATE(67)] = { + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5117), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(67), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -47492,9 +47360,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -47509,19 +47377,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(433), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -47534,206 +47402,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(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), + [STATE(68)] = { + [sym__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4938), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(72), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(4876), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(68), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47765,7 +47506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(443), + [anon_sym_RPAREN] = ACTIONS(435), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47794,79 +47535,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(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_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(73), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [STATE(69)] = { + [sym__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(4989), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(69), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -47876,9 +47618,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 +47635,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(437), [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 +47660,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(74)] = { - [sym__block_body_statement] = STATE(4029), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(74), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [STATE(70)] = { + [sym__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(5102), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(70), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48003,9 +47747,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 +47764,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(439), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -48045,83 +47789,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(75)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4891), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(75), - [aux_sym_pipeline_repeat1] = STATE(188), - [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), + [STATE(71)] = { + [sym__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(5247), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(71), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48131,9 +47876,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -48148,11 +47893,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(441), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -48172,82 +47918,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(76)] = { - [sym__block_body_statement] = STATE(4029), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(76), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym__block_body_repeat2] = STATE(86), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [STATE(72)] = { + [sym__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(5045), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(72), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48257,9 +48005,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -48274,19 +48022,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(443), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(459), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -48299,77 +48047,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(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), + [STATE(73)] = { + [sym__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(77), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(5048), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(73), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -48401,7 +48151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(445), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -48430,74 +48180,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(78)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5052), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(78), - [aux_sym_pipeline_repeat1] = STATE(188), - [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), + [STATE(74)] = { + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(4912), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(433), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(74), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(86), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -48557,201 +48308,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(79)] = { - [sym__block_body_statement] = STATE(4066), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(79), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(1370), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(459), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(21), - [anon_sym_use] = ACTIONS(23), - [anon_sym_export_DASHenv] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_module] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_loop] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [sym__newline] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(63), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(80)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [STATE(75)] = { + [sym__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4835), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(80), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(4877), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(75), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -48811,79 +48436,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(81)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4876), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(81), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [STATE(76)] = { + [sym__block_body_statement] = STATE(4042), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(433), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(1350), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(284), + [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), @@ -48893,9 +48518,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(457), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -48910,11 +48535,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_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -48934,76 +48560,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(82)] = { - [sym__block_body_statement] = STATE(4066), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(82), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), + [STATE(77)] = { + [sym__block_body_statement] = STATE(4153), + [sym__declaration] = STATE(4523), + [sym_decl_alias] = STATE(4544), + [sym_stmt_let] = STATE(4536), + [sym_stmt_mut] = STATE(4536), + [sym_stmt_const] = STATE(4536), + [sym_assignment] = STATE(4536), + [sym__mutable_assignment_pattern] = STATE(4478), + [sym__statement] = STATE(4523), + [sym_pipeline] = STATE(4536), + [sym_cmd_identifier] = STATE(2923), + [sym_attribute_list] = STATE(4457), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4544), + [sym_decl_export] = STATE(4544), + [sym_decl_extern] = STATE(4544), + [sym_decl_module] = STATE(4544), + [sym_decl_use] = STATE(4544), + [sym__ctrl_statement] = STATE(4536), + [sym__ctrl_expression] = STATE(3263), + [sym_ctrl_for] = STATE(4624), + [sym_ctrl_loop] = STATE(4624), + [sym_ctrl_while] = STATE(4624), + [sym_ctrl_if] = STATE(3264), + [sym_ctrl_match] = STATE(3264), + [sym_ctrl_try] = STATE(3264), + [sym__stmt_let_shortcut] = STATE(3269), + [sym_pipe_element] = STATE(2993), + [sym_where_command] = STATE(3263), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1321), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1321), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(896), + [sym_val_range] = STATE(1321), + [sym__value] = STATE(1321), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1318), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(117), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3263), + [sym_comment] = STATE(77), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(1366), + [aux_sym__block_body_repeat2] = STATE(82), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(280), + [ts_builtin_sym_end] = ACTIONS(459), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -49030,6 +48659,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -49061,72 +48692,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(78)] = { + [sym__block_body_statement_parenthesized] = STATE(3802), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(78), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(1350), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(83), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -49153,9 +48786,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(283), [aux_sym_cmd_identifier_token4] = ACTIONS(283), [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(461), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -49184,72 +48820,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(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), + [STATE(79)] = { + [sym__block_body_statement] = STATE(4042), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(79), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(1350), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -49276,12 +48914,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(283), [aux_sym_cmd_identifier_token4] = ACTIONS(283), [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(459), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -49307,72 +48948,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(85)] = { - [sym__block_body_statement] = STATE(3918), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(85), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), + [STATE(80)] = { + [sym__block_body_statement] = STATE(3982), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym__block_body] = STATE(5219), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(433), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(80), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(86), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -49399,6 +49043,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(283), [aux_sym_cmd_identifier_token4] = ACTIONS(283), [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), @@ -49430,77 +49076,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(86)] = { - [sym__block_body_statement] = STATE(3918), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(86), + [STATE(81)] = { + [sym__block_body_statement_parenthesized] = STATE(3818), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym__parenthesized_body] = STATE(4996), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(81), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(333), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(343), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(82)] = { + [sym__block_body_statement] = STATE(4376), + [sym__declaration] = STATE(4523), + [sym_decl_alias] = STATE(4544), + [sym_stmt_let] = STATE(4536), + [sym_stmt_mut] = STATE(4536), + [sym_stmt_const] = STATE(4536), + [sym_assignment] = STATE(4536), + [sym__mutable_assignment_pattern] = STATE(4478), + [sym__statement] = STATE(4523), + [sym_pipeline] = STATE(4536), + [sym_cmd_identifier] = STATE(2923), + [sym_attribute_list] = STATE(4457), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4544), + [sym_decl_export] = STATE(4544), + [sym_decl_extern] = STATE(4544), + [sym_decl_module] = STATE(4544), + [sym_decl_use] = STATE(4544), + [sym__ctrl_statement] = STATE(4536), + [sym__ctrl_expression] = STATE(3263), + [sym_ctrl_for] = STATE(4624), + [sym_ctrl_loop] = STATE(4624), + [sym_ctrl_while] = STATE(4624), + [sym_ctrl_if] = STATE(3264), + [sym_ctrl_match] = STATE(3264), + [sym_ctrl_try] = STATE(3264), + [sym__stmt_let_shortcut] = STATE(3269), + [sym_pipe_element] = STATE(2993), + [sym_where_command] = STATE(3263), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1321), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1321), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(896), + [sym_val_range] = STATE(1321), + [sym__value] = STATE(1321), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1318), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(117), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3263), + [sym_comment] = STATE(82), [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [aux_sym__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(280), + [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(3855), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(87), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -49510,9 +49409,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -49529,14 +49428,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -49549,76 +49448,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(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), + [STATE(84)] = { + [sym__block_body_statement] = STATE(4012), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(433), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(84), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -49676,72 +49576,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(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), + [STATE(85)] = { + [sym__block_body_statement] = STATE(4616), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), [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), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(138), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(85), + [aux_sym_pipeline_repeat1] = STATE(183), + [aux_sym__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(463), [anon_sym_alias] = ACTIONS(466), [anon_sym_let] = ACTIONS(469), @@ -49799,200 +49700,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(598), }, - [STATE(89)] = { - [sym__block_body_statement] = STATE(4152), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(89), + [STATE(86)] = { + [sym__block_body_statement] = STATE(4042), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(433), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(86), [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(90)] = { - [sym__block_body_statement_parenthesized] = STATE(3820), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(90), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(91), - [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__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(284), + [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), @@ -50002,9 +49781,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(457), [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 +49800,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 +49820,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), + [STATE(87)] = { + [sym__block_body_statement_parenthesized] = STATE(4217), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), [sym_val_variable] = STATE(471), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(91), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(138), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(87), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(601), [anon_sym_alias] = ACTIONS(604), [anon_sym_let] = ACTIONS(607), @@ -50168,6 +49948,502 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(736), }, + [STATE(88)] = { + [sym__block_body_statement_parenthesized] = STATE(3802), + [sym__declaration_parenthesized] = STATE(4502), + [sym_decl_alias_parenthesized] = STATE(4505), + [sym_stmt_let_parenthesized] = STATE(4513), + [sym_stmt_mut_parenthesized] = STATE(4513), + [sym_stmt_const_parenthesized] = STATE(4513), + [sym_assignment_parenthesized] = STATE(4513), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), + [sym__statement_parenthesized] = STATE(4502), + [sym_pipeline_parenthesized] = STATE(4513), + [sym_cmd_identifier] = STATE(2876), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4505), + [sym_decl_export] = STATE(4505), + [sym_decl_extern] = STATE(4505), + [sym_decl_module] = STATE(4505), + [sym_decl_use] = STATE(4505), + [sym__ctrl_statement] = STATE(4513), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(441), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym__parenthesized_body_repeat2] = STATE(87), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(333), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(343), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(89)] = { + [sym__block_body_statement] = STATE(4042), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(89), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(90)] = { + [sym__block_body_statement] = STATE(4012), + [sym__declaration] = STATE(4266), + [sym_decl_alias] = STATE(4267), + [sym_stmt_let] = STATE(4268), + [sym_stmt_mut] = STATE(4268), + [sym_stmt_const] = STATE(4268), + [sym_assignment] = STATE(4268), + [sym__mutable_assignment_pattern] = STATE(4270), + [sym__statement] = STATE(4266), + [sym_pipeline] = STATE(4268), + [sym_cmd_identifier] = STATE(2748), + [sym_attribute_list] = STATE(4632), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4267), + [sym_decl_export] = STATE(4267), + [sym_decl_extern] = STATE(4267), + [sym_decl_module] = STATE(4267), + [sym_decl_use] = STATE(4267), + [sym__ctrl_statement] = STATE(4268), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_for] = STATE(4272), + [sym_ctrl_loop] = STATE(4272), + [sym_ctrl_while] = STATE(4272), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(445), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(90), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(281), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(91)] = { + [sym__block_body_statement] = STATE(4153), + [sym__declaration] = STATE(4523), + [sym_decl_alias] = STATE(4544), + [sym_stmt_let] = STATE(4536), + [sym_stmt_mut] = STATE(4536), + [sym_stmt_const] = STATE(4536), + [sym_assignment] = STATE(4536), + [sym__mutable_assignment_pattern] = STATE(4478), + [sym__statement] = STATE(4523), + [sym_pipeline] = STATE(4536), + [sym_cmd_identifier] = STATE(2923), + [sym_attribute_list] = STATE(4457), + [sym_attribute] = STATE(4724), + [sym_decl_def] = STATE(4544), + [sym_decl_export] = STATE(4544), + [sym_decl_extern] = STATE(4544), + [sym_decl_module] = STATE(4544), + [sym_decl_use] = STATE(4544), + [sym__ctrl_statement] = STATE(4536), + [sym__ctrl_expression] = STATE(3263), + [sym_ctrl_for] = STATE(4624), + [sym_ctrl_loop] = STATE(4624), + [sym_ctrl_while] = STATE(4624), + [sym_ctrl_if] = STATE(3264), + [sym_ctrl_match] = STATE(3264), + [sym_ctrl_try] = STATE(3264), + [sym__stmt_let_shortcut] = STATE(3269), + [sym_pipe_element] = STATE(2993), + [sym_where_command] = STATE(3263), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1321), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1321), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(896), + [sym_val_range] = STATE(1321), + [sym__value] = STATE(1321), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1318), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(117), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3263), + [sym_comment] = STATE(91), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(3885), + [aux_sym_pipe_element_repeat2] = STATE(280), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_use] = ACTIONS(23), + [anon_sym_export_DASHenv] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(27), + [anon_sym_module] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_loop] = ACTIONS(33), + [anon_sym_while] = ACTIONS(35), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(63), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, [STATE(92)] = { [sym_comment] = STATE(92), [anon_sym_in] = ACTIONS(739), @@ -50252,9 +50528,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 +50637,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 +50664,6 @@ 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(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -50438,6 +50713,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 +50746,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), @@ -50496,6 +50772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(95)] = { [sym_comment] = STATE(95), + [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -50543,7 +50820,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), @@ -50578,9 +50854,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(759), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token1] = ACTIONS(759), [aux_sym__immediate_decimal_token5] = ACTIONS(761), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), @@ -50604,6 +50880,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(96)] = { [sym_comment] = STATE(96), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(767), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_COLON2] = ACTIONS(763), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(97)] = { + [sym_comment] = STATE(97), + [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -50651,7 +51036,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), @@ -50686,10 +51070,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(769), [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(771), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -50710,9 +51094,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(97)] = { - [sym_comment] = STATE(97), - [ts_builtin_sym_end] = ACTIONS(749), + [STATE(98)] = { + [sym_comment] = STATE(98), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -50762,6 +51145,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), @@ -50794,10 +51178,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(773), [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(775), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -50818,332 +51202,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(98)] = { - [sym_comment] = STATE(98), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(775), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_COLON2] = ACTIONS(771), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(99)] = { [sym_comment] = STATE(99), - [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 +51251,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 +51286,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 +51310,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(102)] = { - [sym_comment] = STATE(102), + [STATE(100)] = { + [sym_comment] = STATE(100), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -51299,9 +51359,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), @@ -51336,7 +51396,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,115 +51418,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), + [STATE(101)] = { + [sym_comment] = STATE(101), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -51515,6 +51469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -51549,10 +51504,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(845), - [aux_sym__immediate_decimal_token5] = ACTIONS(847), + [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), @@ -51571,329 +51526,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(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), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(853), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(108)] = { - [sym_comment] = STATE(108), + [STATE(102)] = { + [sym_comment] = STATE(102), + [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -51943,7 +51578,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -51978,9 +51612,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(771), [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 +51633,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(103)] = { + [sym_comment] = STATE(103), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -52189,10 +51716,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(785), + [aux_sym__immediate_decimal_token5] = ACTIONS(787), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -52213,9 +51740,971 @@ 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(104)] = { + [sym_comment] = STATE(104), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_COLON2] = ACTIONS(789), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(789), + [anon_sym_out_GT_GT] = ACTIONS(789), + [anon_sym_e_GT_GT] = ACTIONS(789), + [anon_sym_o_GT_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(105)] = { + [sym_comment] = STATE(105), + [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(775), + [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(106)] = { + [sym_comment] = STATE(106), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_COLON2] = ACTIONS(763), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(107)] = { + [sym_comment] = STATE(107), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(793), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(108)] = { + [sym_expr_parenthesized] = STATE(2636), + [sym__spread_parenthesized] = STATE(3096), + [sym_val_range] = STATE(3097), + [sym__val_range] = STATE(4622), + [sym__value] = STATE(3097), + [sym_val_nothing] = STATE(3058), + [sym_val_bool] = STATE(2767), + [sym__spread_variable] = STATE(3098), + [sym_val_variable] = STATE(2641), + [sym_val_cellpath] = STATE(3058), + [sym_val_number] = STATE(3058), + [sym__val_number_decimal] = STATE(2386), + [sym__val_number] = STATE(3061), + [sym_val_duration] = STATE(3058), + [sym_val_filesize] = STATE(3058), + [sym_val_binary] = STATE(3058), + [sym_val_string] = STATE(3058), + [sym__raw_str] = STATE(2455), + [sym__str_double_quotes] = STATE(2455), + [sym__str_single_quotes] = STATE(2455), + [sym__str_back_ticks] = STATE(2455), + [sym_val_interpolated] = STATE(3058), + [sym__inter_single_quotes] = STATE(3082), + [sym__inter_double_quotes] = STATE(3083), + [sym_val_list] = STATE(3058), + [sym__spread_list] = STATE(3096), + [sym_val_record] = STATE(3058), + [sym_val_table] = STATE(3058), + [sym_val_closure] = STATE(3058), + [sym__cmd_arg] = STATE(3099), + [sym_redirection] = STATE(3100), + [sym__flag] = STATE(3101), + [sym_short_flag] = STATE(3102), + [sym_long_flag] = STATE(3102), + [sym_unquoted] = STATE(2685), + [sym__unquoted_with_expr] = STATE(3104), + [sym__unquoted_anonymous_prefix] = STATE(4622), + [sym_comment] = STATE(108), + [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(109)] = { + [sym_comment] = STATE(109), + [anon_sym_in] = ACTIONS(858), + [anon_sym_STAR_STAR] = ACTIONS(860), + [anon_sym_PLUS_PLUS] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(862), + [anon_sym_SLASH] = ACTIONS(862), + [anon_sym_mod] = ACTIONS(860), + [anon_sym_SLASH_SLASH] = ACTIONS(860), + [anon_sym_PLUS] = ACTIONS(862), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_bit_DASHshl] = ACTIONS(860), + [anon_sym_bit_DASHshr] = ACTIONS(860), + [anon_sym_EQ_TILDE] = ACTIONS(860), + [anon_sym_BANG_TILDE] = ACTIONS(860), + [anon_sym_like] = ACTIONS(860), + [anon_sym_not_DASHlike] = ACTIONS(860), + [anon_sym_bit_DASHand] = ACTIONS(860), + [anon_sym_bit_DASHxor] = ACTIONS(860), + [anon_sym_bit_DASHor] = ACTIONS(860), + [anon_sym_and] = ACTIONS(860), + [anon_sym_xor] = ACTIONS(860), + [anon_sym_or] = ACTIONS(860), + [anon_sym_in2] = ACTIONS(860), + [anon_sym_not_DASHin] = ACTIONS(860), + [anon_sym_has] = ACTIONS(860), + [anon_sym_not_DASHhas] = ACTIONS(860), + [anon_sym_starts_DASHwith] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(860), + [anon_sym_ends_DASHwith] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(860), + [anon_sym_EQ_EQ] = ACTIONS(860), + [anon_sym_BANG_EQ] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(862), + [anon_sym_LT_EQ] = ACTIONS(860), + [anon_sym_GT] = ACTIONS(862), + [anon_sym_GT_EQ] = ACTIONS(860), + [aux_sym_cmd_identifier_token6] = ACTIONS(864), + [sym__newline] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(858), + [anon_sym_err_GT_PIPE] = ACTIONS(858), + [anon_sym_out_GT_PIPE] = ACTIONS(858), + [anon_sym_e_GT_PIPE] = ACTIONS(858), + [anon_sym_o_GT_PIPE] = ACTIONS(858), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), + [anon_sym_GT2] = ACTIONS(858), + [anon_sym_DASH2] = ACTIONS(858), + [anon_sym_RBRACE] = ACTIONS(858), + [anon_sym_STAR2] = ACTIONS(858), + [anon_sym_and2] = ACTIONS(858), + [anon_sym_xor2] = ACTIONS(858), + [anon_sym_or2] = ACTIONS(858), + [anon_sym_not_DASHin2] = ACTIONS(858), + [anon_sym_has2] = ACTIONS(858), + [anon_sym_not_DASHhas2] = ACTIONS(858), + [anon_sym_starts_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), + [anon_sym_ends_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), + [anon_sym_EQ_EQ2] = ACTIONS(858), + [anon_sym_BANG_EQ2] = ACTIONS(858), + [anon_sym_LT2] = ACTIONS(858), + [anon_sym_LT_EQ2] = ACTIONS(858), + [anon_sym_GT_EQ2] = ACTIONS(858), + [anon_sym_EQ_TILDE2] = ACTIONS(858), + [anon_sym_BANG_TILDE2] = ACTIONS(858), + [anon_sym_like2] = ACTIONS(858), + [anon_sym_not_DASHlike2] = ACTIONS(858), + [anon_sym_STAR_STAR2] = ACTIONS(858), + [anon_sym_PLUS_PLUS2] = ACTIONS(858), + [anon_sym_SLASH2] = ACTIONS(858), + [anon_sym_mod2] = ACTIONS(858), + [anon_sym_SLASH_SLASH2] = ACTIONS(858), + [anon_sym_PLUS2] = ACTIONS(858), + [anon_sym_bit_DASHshl2] = ACTIONS(858), + [anon_sym_bit_DASHshr2] = ACTIONS(858), + [anon_sym_bit_DASHand2] = ACTIONS(858), + [anon_sym_bit_DASHxor2] = ACTIONS(858), + [anon_sym_bit_DASHor2] = ACTIONS(858), + [anon_sym_DOT_DOT2] = ACTIONS(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(870), + [sym_duration_unit] = ACTIONS(872), + [anon_sym_COLON2] = ACTIONS(858), + [anon_sym_err_GT] = ACTIONS(858), + [anon_sym_out_GT] = ACTIONS(858), + [anon_sym_e_GT] = ACTIONS(858), + [anon_sym_o_GT] = ACTIONS(858), + [anon_sym_err_PLUSout_GT] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT] = ACTIONS(858), + [anon_sym_o_PLUSe_GT] = ACTIONS(858), + [anon_sym_e_PLUSo_GT] = ACTIONS(858), + [anon_sym_err_GT_GT] = ACTIONS(858), + [anon_sym_out_GT_GT] = ACTIONS(858), + [anon_sym_e_GT_GT] = ACTIONS(858), + [anon_sym_o_GT_GT] = ACTIONS(858), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(858), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(858), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(110)] = { + [sym_expr_parenthesized] = STATE(2636), + [sym__spread_parenthesized] = STATE(3096), + [sym_val_range] = STATE(3097), + [sym__val_range] = STATE(4622), + [sym__value] = STATE(3097), + [sym_val_nothing] = STATE(3058), + [sym_val_bool] = STATE(2767), + [sym__spread_variable] = STATE(3098), + [sym_val_variable] = STATE(2641), + [sym_val_cellpath] = STATE(3058), + [sym_val_number] = STATE(3058), + [sym__val_number_decimal] = STATE(2386), + [sym__val_number] = STATE(3061), + [sym_val_duration] = STATE(3058), + [sym_val_filesize] = STATE(3058), + [sym_val_binary] = STATE(3058), + [sym_val_string] = STATE(3058), + [sym__raw_str] = STATE(2455), + [sym__str_double_quotes] = STATE(2455), + [sym__str_single_quotes] = STATE(2455), + [sym__str_back_ticks] = STATE(2455), + [sym_val_interpolated] = STATE(3058), + [sym__inter_single_quotes] = STATE(3082), + [sym__inter_double_quotes] = STATE(3083), + [sym_val_list] = STATE(3058), + [sym__spread_list] = STATE(3096), + [sym_val_record] = STATE(3058), + [sym_val_table] = STATE(3058), + [sym_val_closure] = STATE(3058), + [sym__cmd_arg] = STATE(3099), + [sym_redirection] = STATE(3100), + [sym__flag] = STATE(3101), + [sym_short_flag] = STATE(3102), + [sym_long_flag] = STATE(3102), + [sym_unquoted] = STATE(2685), + [sym__unquoted_with_expr] = STATE(3104), + [sym__unquoted_anonymous_prefix] = STATE(4622), + [sym_comment] = STATE(110), + [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(874), + [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(111)] = { [sym_comment] = STATE(111), - [ts_builtin_sym_end] = ACTIONS(741), + [ts_builtin_sym_end] = ACTIONS(765), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(112)] = { + [sym_comment] = STATE(112), + [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(779), + [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(113)] = { + [sym_comment] = STATE(113), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -52265,6 +52754,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), @@ -52299,9 +52789,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(757), [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), @@ -52320,115 +52810,434 @@ 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(112)] = { - [sym_comment] = STATE(112), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(864), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [STATE(114)] = { + [sym_comment] = STATE(114), + [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(878), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(880), + [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(113)] = { - [sym_comment] = STATE(113), + [STATE(115)] = { + [sym_comment] = STATE(115), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_RPAREN] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(882), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(116)] = { + [sym_comment] = STATE(116), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(789), + [anon_sym_out_GT_GT] = ACTIONS(789), + [anon_sym_e_GT_GT] = ACTIONS(789), + [anon_sym_o_GT_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(117)] = { + [sym_comment] = STATE(117), + [ts_builtin_sym_end] = ACTIONS(884), + [anon_sym_in] = ACTIONS(858), + [anon_sym_STAR_STAR] = ACTIONS(886), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_STAR] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_mod] = ACTIONS(886), + [anon_sym_SLASH_SLASH] = ACTIONS(886), + [anon_sym_PLUS] = ACTIONS(888), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_bit_DASHshl] = ACTIONS(886), + [anon_sym_bit_DASHshr] = ACTIONS(886), + [anon_sym_EQ_TILDE] = ACTIONS(886), + [anon_sym_BANG_TILDE] = ACTIONS(886), + [anon_sym_like] = ACTIONS(886), + [anon_sym_not_DASHlike] = ACTIONS(886), + [anon_sym_bit_DASHand] = ACTIONS(886), + [anon_sym_bit_DASHxor] = ACTIONS(886), + [anon_sym_bit_DASHor] = ACTIONS(886), + [anon_sym_and] = ACTIONS(886), + [anon_sym_xor] = ACTIONS(886), + [anon_sym_or] = ACTIONS(886), + [anon_sym_in2] = ACTIONS(886), + [anon_sym_not_DASHin] = ACTIONS(886), + [anon_sym_has] = ACTIONS(886), + [anon_sym_not_DASHhas] = ACTIONS(886), + [anon_sym_starts_DASHwith] = ACTIONS(886), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(886), + [anon_sym_ends_DASHwith] = ACTIONS(886), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(886), + [anon_sym_EQ_EQ] = ACTIONS(886), + [anon_sym_BANG_EQ] = ACTIONS(886), + [anon_sym_LT] = ACTIONS(888), + [anon_sym_LT_EQ] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(888), + [anon_sym_GT_EQ] = ACTIONS(886), + [aux_sym_cmd_identifier_token6] = ACTIONS(890), + [sym__newline] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(858), + [anon_sym_err_GT_PIPE] = ACTIONS(858), + [anon_sym_out_GT_PIPE] = ACTIONS(858), + [anon_sym_e_GT_PIPE] = ACTIONS(858), + [anon_sym_o_GT_PIPE] = ACTIONS(858), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), + [anon_sym_GT2] = ACTIONS(858), + [anon_sym_DASH2] = ACTIONS(858), + [anon_sym_STAR2] = ACTIONS(858), + [anon_sym_and2] = ACTIONS(858), + [anon_sym_xor2] = ACTIONS(858), + [anon_sym_or2] = ACTIONS(858), + [anon_sym_not_DASHin2] = ACTIONS(858), + [anon_sym_has2] = ACTIONS(858), + [anon_sym_not_DASHhas2] = ACTIONS(858), + [anon_sym_starts_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), + [anon_sym_ends_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), + [anon_sym_EQ_EQ2] = ACTIONS(858), + [anon_sym_BANG_EQ2] = ACTIONS(858), + [anon_sym_LT2] = ACTIONS(858), + [anon_sym_LT_EQ2] = ACTIONS(858), + [anon_sym_GT_EQ2] = ACTIONS(858), + [anon_sym_EQ_TILDE2] = ACTIONS(858), + [anon_sym_BANG_TILDE2] = ACTIONS(858), + [anon_sym_like2] = ACTIONS(858), + [anon_sym_not_DASHlike2] = ACTIONS(858), + [anon_sym_STAR_STAR2] = ACTIONS(858), + [anon_sym_PLUS_PLUS2] = ACTIONS(858), + [anon_sym_SLASH2] = ACTIONS(858), + [anon_sym_mod2] = ACTIONS(858), + [anon_sym_SLASH_SLASH2] = ACTIONS(858), + [anon_sym_PLUS2] = ACTIONS(858), + [anon_sym_bit_DASHshl2] = ACTIONS(858), + [anon_sym_bit_DASHshr2] = ACTIONS(858), + [anon_sym_bit_DASHand2] = ACTIONS(858), + [anon_sym_bit_DASHxor2] = ACTIONS(858), + [anon_sym_bit_DASHor2] = ACTIONS(858), + [anon_sym_DOT_DOT2] = ACTIONS(892), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(894), + [anon_sym_DOT_DOT_LT2] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(896), + [sym_duration_unit] = ACTIONS(898), + [anon_sym_err_GT] = ACTIONS(858), + [anon_sym_out_GT] = ACTIONS(858), + [anon_sym_e_GT] = ACTIONS(858), + [anon_sym_o_GT] = ACTIONS(858), + [anon_sym_err_PLUSout_GT] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT] = ACTIONS(858), + [anon_sym_o_PLUSe_GT] = ACTIONS(858), + [anon_sym_e_PLUSo_GT] = ACTIONS(858), + [anon_sym_err_GT_GT] = ACTIONS(858), + [anon_sym_out_GT_GT] = ACTIONS(858), + [anon_sym_e_GT_GT] = ACTIONS(858), + [anon_sym_o_GT_GT] = ACTIONS(858), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(858), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(858), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(118)] = { + [sym_comment] = STATE(118), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -52476,9 +53285,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,7 +53322,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(761), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -52534,540 +53342,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(114)] = { - [sym_comment] = STATE(114), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(866), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(115)] = { - [sym_comment] = STATE(115), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(870), - [anon_sym_STAR] = ACTIONS(872), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_mod] = ACTIONS(870), - [anon_sym_SLASH_SLASH] = ACTIONS(870), - [anon_sym_PLUS] = ACTIONS(872), - [anon_sym_DASH] = ACTIONS(870), - [anon_sym_bit_DASHshl] = ACTIONS(870), - [anon_sym_bit_DASHshr] = ACTIONS(870), - [anon_sym_EQ_TILDE] = ACTIONS(870), - [anon_sym_BANG_TILDE] = ACTIONS(870), - [anon_sym_like] = ACTIONS(870), - [anon_sym_not_DASHlike] = ACTIONS(870), - [anon_sym_bit_DASHand] = ACTIONS(870), - [anon_sym_bit_DASHxor] = ACTIONS(870), - [anon_sym_bit_DASHor] = ACTIONS(870), - [anon_sym_and] = ACTIONS(870), - [anon_sym_xor] = ACTIONS(870), - [anon_sym_or] = ACTIONS(870), - [anon_sym_in2] = ACTIONS(870), - [anon_sym_not_DASHin] = ACTIONS(870), - [anon_sym_has] = ACTIONS(870), - [anon_sym_not_DASHhas] = ACTIONS(870), - [anon_sym_starts_DASHwith] = ACTIONS(870), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(870), - [anon_sym_ends_DASHwith] = ACTIONS(870), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(870), - [anon_sym_EQ_EQ] = ACTIONS(870), - [anon_sym_BANG_EQ] = ACTIONS(870), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LT_EQ] = ACTIONS(870), - [anon_sym_GT] = ACTIONS(872), - [anon_sym_GT_EQ] = ACTIONS(870), - [aux_sym_cmd_identifier_token6] = ACTIONS(874), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(880), - [sym_duration_unit] = ACTIONS(882), - [anon_sym_COLON2] = ACTIONS(868), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(116)] = { - [sym_comment] = STATE(116), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(890), - [sym_duration_unit] = ACTIONS(892), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(117)] = { - [sym_comment] = STATE(117), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(118)] = { - [sym_comment] = STATE(118), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(119)] = { + [sym_expr_parenthesized] = STATE(2636), + [sym__spread_parenthesized] = STATE(3096), + [sym_val_range] = STATE(3097), + [sym__val_range] = STATE(4622), + [sym__value] = STATE(3097), + [sym_val_nothing] = STATE(3058), + [sym_val_bool] = STATE(2767), + [sym__spread_variable] = STATE(3098), + [sym_val_variable] = STATE(2641), + [sym_val_cellpath] = STATE(3058), + [sym_val_number] = STATE(3058), + [sym__val_number_decimal] = STATE(2386), + [sym__val_number] = STATE(3061), + [sym_val_duration] = STATE(3058), + [sym_val_filesize] = STATE(3058), + [sym_val_binary] = STATE(3058), + [sym_val_string] = STATE(3058), + [sym__raw_str] = STATE(2455), + [sym__str_double_quotes] = STATE(2455), + [sym__str_single_quotes] = STATE(2455), + [sym__str_back_ticks] = STATE(2455), + [sym_val_interpolated] = STATE(3058), + [sym__inter_single_quotes] = STATE(3082), + [sym__inter_double_quotes] = STATE(3083), + [sym_val_list] = STATE(3058), + [sym__spread_list] = STATE(3096), + [sym_val_record] = STATE(3058), + [sym_val_table] = STATE(3058), + [sym_val_closure] = STATE(3058), + [sym__cmd_arg] = STATE(3246), + [sym_redirection] = STATE(3100), + [sym__flag] = STATE(3101), + [sym_short_flag] = STATE(3102), + [sym_long_flag] = STATE(3102), + [sym_unquoted] = STATE(2685), + [sym__unquoted_with_expr] = STATE(3104), + [sym__unquoted_anonymous_prefix] = STATE(4622), [sym_comment] = STATE(119), + [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(900), + [sym__space] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(900), + [anon_sym_PIPE] = ACTIONS(900), + [anon_sym_err_GT_PIPE] = ACTIONS(900), + [anon_sym_out_GT_PIPE] = ACTIONS(900), + [anon_sym_e_GT_PIPE] = ACTIONS(900), + [anon_sym_o_GT_PIPE] = ACTIONS(900), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(900), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(900), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(900), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_RPAREN] = ACTIONS(900), + [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(120)] = { + [sym_comment] = STATE(120), + [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -53151,7 +53534,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(862), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -53172,433 +53554,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(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_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), [anon_sym_POUND] = ACTIONS(103), }, [STATE(122)] = { + [sym_expr_parenthesized] = STATE(2776), + [sym__spread_parenthesized] = STATE(3175), + [sym_val_range] = STATE(3177), + [sym__val_range] = STATE(4429), + [sym__value] = STATE(3177), + [sym_val_nothing] = STATE(3205), + [sym_val_bool] = STATE(2871), + [sym__spread_variable] = STATE(3178), + [sym_val_variable] = STATE(2712), + [sym_val_cellpath] = STATE(3205), + [sym_val_number] = STATE(3205), + [sym__val_number_decimal] = STATE(2414), + [sym__val_number] = STATE(3207), + [sym_val_duration] = STATE(3205), + [sym_val_filesize] = STATE(3205), + [sym_val_binary] = STATE(3205), + [sym_val_string] = STATE(3205), + [sym__raw_str] = STATE(2501), + [sym__str_double_quotes] = STATE(2501), + [sym__str_single_quotes] = STATE(2501), + [sym__str_back_ticks] = STATE(2501), + [sym_val_interpolated] = STATE(3205), + [sym__inter_single_quotes] = STATE(3155), + [sym__inter_double_quotes] = STATE(3156), + [sym_val_list] = STATE(3205), + [sym__spread_list] = STATE(3175), + [sym_val_record] = STATE(3205), + [sym_val_table] = STATE(3205), + [sym_val_closure] = STATE(3205), + [sym__cmd_arg] = STATE(3250), + [sym_redirection] = STATE(3191), + [sym__flag] = STATE(3193), + [sym_short_flag] = STATE(3195), + [sym_long_flag] = STATE(3195), + [sym_unquoted] = STATE(2936), + [sym__unquoted_with_expr] = STATE(3197), + [sym__unquoted_anonymous_prefix] = STATE(4429), [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), + [ts_builtin_sym_end] = ACTIONS(874), + [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(804), + [sym__space] = ACTIONS(874), + [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(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(123)] = { [sym_comment] = STATE(123), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [ts_builtin_sym_end] = ACTIONS(765), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), [anon_sym_POUND] = ACTIONS(103), }, [STATE(124)] = { [sym_comment] = STATE(124), - [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -53636,7 +53911,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), @@ -53680,8 +53954,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(960), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(962), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -53704,536 +53980,430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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), + [ts_builtin_sym_end] = ACTIONS(791), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(789), + [anon_sym_out_GT_GT] = ACTIONS(789), + [anon_sym_e_GT_GT] = ACTIONS(789), + [anon_sym_o_GT_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), [anon_sym_POUND] = ACTIONS(103), }, [STATE(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), + [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(964), + [aux_sym__immediate_decimal_token5] = ACTIONS(966), + [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(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [anon_sym_in] = ACTIONS(858), + [anon_sym_STAR_STAR] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_mod] = ACTIONS(968), + [anon_sym_SLASH_SLASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_bit_DASHshl] = ACTIONS(968), + [anon_sym_bit_DASHshr] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(968), + [anon_sym_BANG_TILDE] = ACTIONS(968), + [anon_sym_like] = ACTIONS(968), + [anon_sym_not_DASHlike] = ACTIONS(968), + [anon_sym_bit_DASHand] = ACTIONS(968), + [anon_sym_bit_DASHxor] = ACTIONS(968), + [anon_sym_bit_DASHor] = ACTIONS(968), + [anon_sym_and] = ACTIONS(968), + [anon_sym_xor] = ACTIONS(968), + [anon_sym_or] = ACTIONS(968), + [anon_sym_in2] = ACTIONS(968), + [anon_sym_not_DASHin] = ACTIONS(968), + [anon_sym_has] = ACTIONS(968), + [anon_sym_not_DASHhas] = ACTIONS(968), + [anon_sym_starts_DASHwith] = ACTIONS(968), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(968), + [anon_sym_ends_DASHwith] = ACTIONS(968), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_GT_EQ] = ACTIONS(968), + [aux_sym_cmd_identifier_token6] = ACTIONS(972), + [sym__newline] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(858), + [anon_sym_err_GT_PIPE] = ACTIONS(858), + [anon_sym_out_GT_PIPE] = ACTIONS(858), + [anon_sym_e_GT_PIPE] = ACTIONS(858), + [anon_sym_o_GT_PIPE] = ACTIONS(858), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), + [anon_sym_RPAREN] = ACTIONS(858), + [anon_sym_GT2] = ACTIONS(858), + [anon_sym_DASH2] = ACTIONS(858), + [anon_sym_STAR2] = ACTIONS(858), + [anon_sym_and2] = ACTIONS(858), + [anon_sym_xor2] = ACTIONS(858), + [anon_sym_or2] = ACTIONS(858), + [anon_sym_not_DASHin2] = ACTIONS(858), + [anon_sym_has2] = ACTIONS(858), + [anon_sym_not_DASHhas2] = ACTIONS(858), + [anon_sym_starts_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), + [anon_sym_ends_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), + [anon_sym_EQ_EQ2] = ACTIONS(858), + [anon_sym_BANG_EQ2] = ACTIONS(858), + [anon_sym_LT2] = ACTIONS(858), + [anon_sym_LT_EQ2] = ACTIONS(858), + [anon_sym_GT_EQ2] = ACTIONS(858), + [anon_sym_EQ_TILDE2] = ACTIONS(858), + [anon_sym_BANG_TILDE2] = ACTIONS(858), + [anon_sym_like2] = ACTIONS(858), + [anon_sym_not_DASHlike2] = ACTIONS(858), + [anon_sym_STAR_STAR2] = ACTIONS(858), + [anon_sym_PLUS_PLUS2] = ACTIONS(858), + [anon_sym_SLASH2] = ACTIONS(858), + [anon_sym_mod2] = ACTIONS(858), + [anon_sym_SLASH_SLASH2] = ACTIONS(858), + [anon_sym_PLUS2] = ACTIONS(858), + [anon_sym_bit_DASHshl2] = ACTIONS(858), + [anon_sym_bit_DASHshr2] = ACTIONS(858), + [anon_sym_bit_DASHand2] = ACTIONS(858), + [anon_sym_bit_DASHxor2] = ACTIONS(858), + [anon_sym_bit_DASHor2] = ACTIONS(858), + [anon_sym_DOT_DOT2] = ACTIONS(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(974), + [sym_duration_unit] = ACTIONS(976), + [anon_sym_err_GT] = ACTIONS(858), + [anon_sym_out_GT] = ACTIONS(858), + [anon_sym_e_GT] = ACTIONS(858), + [anon_sym_o_GT] = ACTIONS(858), + [anon_sym_err_PLUSout_GT] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT] = ACTIONS(858), + [anon_sym_o_PLUSe_GT] = ACTIONS(858), + [anon_sym_e_PLUSo_GT] = ACTIONS(858), + [anon_sym_err_GT_GT] = ACTIONS(858), + [anon_sym_out_GT_GT] = ACTIONS(858), + [anon_sym_e_GT_GT] = ACTIONS(858), + [anon_sym_o_GT_GT] = ACTIONS(858), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(858), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(858), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(858), [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_in] = ACTIONS(858), + [anon_sym_STAR_STAR] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_mod] = ACTIONS(968), + [anon_sym_SLASH_SLASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_bit_DASHshl] = ACTIONS(968), + [anon_sym_bit_DASHshr] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(968), + [anon_sym_BANG_TILDE] = ACTIONS(968), + [anon_sym_like] = ACTIONS(968), + [anon_sym_not_DASHlike] = ACTIONS(968), + [anon_sym_bit_DASHand] = ACTIONS(968), + [anon_sym_bit_DASHxor] = ACTIONS(968), + [anon_sym_bit_DASHor] = ACTIONS(968), + [anon_sym_and] = ACTIONS(968), + [anon_sym_xor] = ACTIONS(968), + [anon_sym_or] = ACTIONS(968), + [anon_sym_in2] = ACTIONS(968), + [anon_sym_not_DASHin] = ACTIONS(968), + [anon_sym_has] = ACTIONS(968), + [anon_sym_not_DASHhas] = ACTIONS(968), + [anon_sym_starts_DASHwith] = ACTIONS(968), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(968), + [anon_sym_ends_DASHwith] = ACTIONS(968), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_GT_EQ] = ACTIONS(968), + [aux_sym_cmd_identifier_token6] = ACTIONS(972), + [sym__newline] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(858), + [anon_sym_err_GT_PIPE] = ACTIONS(858), + [anon_sym_out_GT_PIPE] = ACTIONS(858), + [anon_sym_e_GT_PIPE] = ACTIONS(858), + [anon_sym_o_GT_PIPE] = ACTIONS(858), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), + [anon_sym_GT2] = ACTIONS(858), + [anon_sym_DASH2] = ACTIONS(858), + [anon_sym_RBRACE] = ACTIONS(858), + [anon_sym_STAR2] = ACTIONS(858), + [anon_sym_and2] = ACTIONS(858), + [anon_sym_xor2] = ACTIONS(858), + [anon_sym_or2] = ACTIONS(858), + [anon_sym_not_DASHin2] = ACTIONS(858), + [anon_sym_has2] = ACTIONS(858), + [anon_sym_not_DASHhas2] = ACTIONS(858), + [anon_sym_starts_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), + [anon_sym_ends_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), + [anon_sym_EQ_EQ2] = ACTIONS(858), + [anon_sym_BANG_EQ2] = ACTIONS(858), + [anon_sym_LT2] = ACTIONS(858), + [anon_sym_LT_EQ2] = ACTIONS(858), + [anon_sym_GT_EQ2] = ACTIONS(858), + [anon_sym_EQ_TILDE2] = ACTIONS(858), + [anon_sym_BANG_TILDE2] = ACTIONS(858), + [anon_sym_like2] = ACTIONS(858), + [anon_sym_not_DASHlike2] = ACTIONS(858), + [anon_sym_STAR_STAR2] = ACTIONS(858), + [anon_sym_PLUS_PLUS2] = ACTIONS(858), + [anon_sym_SLASH2] = ACTIONS(858), + [anon_sym_mod2] = ACTIONS(858), + [anon_sym_SLASH_SLASH2] = ACTIONS(858), + [anon_sym_PLUS2] = ACTIONS(858), + [anon_sym_bit_DASHshl2] = ACTIONS(858), + [anon_sym_bit_DASHshr2] = ACTIONS(858), + [anon_sym_bit_DASHand2] = ACTIONS(858), + [anon_sym_bit_DASHxor2] = ACTIONS(858), + [anon_sym_bit_DASHor2] = ACTIONS(858), + [anon_sym_DOT_DOT2] = ACTIONS(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(978), + [sym_duration_unit] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(858), + [anon_sym_out_GT] = ACTIONS(858), + [anon_sym_e_GT] = ACTIONS(858), + [anon_sym_o_GT] = ACTIONS(858), + [anon_sym_err_PLUSout_GT] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT] = ACTIONS(858), + [anon_sym_o_PLUSe_GT] = ACTIONS(858), + [anon_sym_e_PLUSo_GT] = ACTIONS(858), + [anon_sym_err_GT_GT] = ACTIONS(858), + [anon_sym_out_GT_GT] = ACTIONS(858), + [anon_sym_e_GT_GT] = ACTIONS(858), + [anon_sym_o_GT_GT] = ACTIONS(858), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(858), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(858), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(858), [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(958), }, [STATE(129)] = { [sym_comment] = STATE(129), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(130)] = { - [sym_comment] = STATE(130), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -54271,6 +54441,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 +54451,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 +54486,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 +54508,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(130)] = { + [sym_comment] = STATE(130), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(982), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(131)] = { [sym_comment] = STATE(131), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_RPAREN] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(132)] = { + [sym_comment] = STATE(132), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(789), + [anon_sym_out_GT_GT] = ACTIONS(789), + [anon_sym_e_GT_GT] = ACTIONS(789), + [anon_sym_o_GT_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(133)] = { + [sym_comment] = STATE(133), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -54377,6 +54865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(749), [aux_sym_cmd_identifier_token6] = ACTIONS(747), [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), [anon_sym_PIPE] = ACTIONS(747), [anon_sym_err_GT_PIPE] = ACTIONS(747), [anon_sym_out_GT_PIPE] = ACTIONS(747), @@ -54422,8 +54911,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_token1] = ACTIONS(964), - [aux_sym__immediate_decimal_token5] = ACTIONS(966), + [aux_sym__immediate_decimal_token5] = ACTIONS(880), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -54444,218 +54932,6 @@ 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(132)] = { - [sym_comment] = STATE(132), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_mod] = ACTIONS(970), - [anon_sym_SLASH_SLASH] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_bit_DASHshl] = ACTIONS(970), - [anon_sym_bit_DASHshr] = ACTIONS(970), - [anon_sym_EQ_TILDE] = ACTIONS(970), - [anon_sym_BANG_TILDE] = ACTIONS(970), - [anon_sym_like] = ACTIONS(970), - [anon_sym_not_DASHlike] = ACTIONS(970), - [anon_sym_bit_DASHand] = ACTIONS(970), - [anon_sym_bit_DASHxor] = ACTIONS(970), - [anon_sym_bit_DASHor] = ACTIONS(970), - [anon_sym_and] = ACTIONS(970), - [anon_sym_xor] = ACTIONS(970), - [anon_sym_or] = ACTIONS(970), - [anon_sym_in2] = ACTIONS(970), - [anon_sym_not_DASHin] = ACTIONS(970), - [anon_sym_has] = ACTIONS(970), - [anon_sym_not_DASHhas] = ACTIONS(970), - [anon_sym_starts_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(970), - [anon_sym_ends_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(970), - [anon_sym_EQ_EQ] = ACTIONS(970), - [anon_sym_BANG_EQ] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(974), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [sym_filesize_unit] = ACTIONS(980), - [sym_duration_unit] = ACTIONS(982), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(133)] = { - [sym_comment] = STATE(133), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(134)] = { [sym_comment] = STATE(134), [anon_sym_in] = ACTIONS(747), @@ -54695,7 +54971,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 +55016,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(962), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -54763,422 +55039,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(135)] = { [sym_comment] = STATE(135), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(984), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(789), + [anon_sym_out_GT_GT] = ACTIONS(789), + [anon_sym_e_GT_GT] = ACTIONS(789), + [anon_sym_o_GT_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), [anon_sym_POUND] = ACTIONS(103), }, [STATE(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_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), [anon_sym_POUND] = ACTIONS(103), }, [STATE(137)] = { [sym_comment] = STATE(137), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(984), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), [anon_sym_POUND] = ACTIONS(103), }, [STATE(138)] = { [sym_comment] = STATE(138), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [anon_sym_in] = ACTIONS(858), + [anon_sym_STAR_STAR] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_mod] = ACTIONS(968), + [anon_sym_SLASH_SLASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_bit_DASHshl] = ACTIONS(968), + [anon_sym_bit_DASHshr] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(968), + [anon_sym_BANG_TILDE] = ACTIONS(968), + [anon_sym_like] = ACTIONS(968), + [anon_sym_not_DASHlike] = ACTIONS(968), + [anon_sym_bit_DASHand] = ACTIONS(968), + [anon_sym_bit_DASHxor] = ACTIONS(968), + [anon_sym_bit_DASHor] = ACTIONS(968), + [anon_sym_and] = ACTIONS(968), + [anon_sym_xor] = ACTIONS(968), + [anon_sym_or] = ACTIONS(968), + [anon_sym_in2] = ACTIONS(968), + [anon_sym_not_DASHin] = ACTIONS(968), + [anon_sym_has] = ACTIONS(968), + [anon_sym_not_DASHhas] = ACTIONS(968), + [anon_sym_starts_DASHwith] = ACTIONS(968), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(968), + [anon_sym_ends_DASHwith] = ACTIONS(968), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_GT_EQ] = ACTIONS(968), + [aux_sym_cmd_identifier_token6] = ACTIONS(972), + [sym__newline] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(858), + [anon_sym_err_GT_PIPE] = ACTIONS(858), + [anon_sym_out_GT_PIPE] = ACTIONS(858), + [anon_sym_e_GT_PIPE] = ACTIONS(858), + [anon_sym_o_GT_PIPE] = ACTIONS(858), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), + [anon_sym_GT2] = ACTIONS(858), + [anon_sym_DASH2] = ACTIONS(858), + [anon_sym_STAR2] = ACTIONS(858), + [anon_sym_and2] = ACTIONS(858), + [anon_sym_xor2] = ACTIONS(858), + [anon_sym_or2] = ACTIONS(858), + [anon_sym_not_DASHin2] = ACTIONS(858), + [anon_sym_has2] = ACTIONS(858), + [anon_sym_not_DASHhas2] = ACTIONS(858), + [anon_sym_starts_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), + [anon_sym_ends_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), + [anon_sym_EQ_EQ2] = ACTIONS(858), + [anon_sym_BANG_EQ2] = ACTIONS(858), + [anon_sym_LT2] = ACTIONS(858), + [anon_sym_LT_EQ2] = ACTIONS(858), + [anon_sym_GT_EQ2] = ACTIONS(858), + [anon_sym_EQ_TILDE2] = ACTIONS(858), + [anon_sym_BANG_TILDE2] = ACTIONS(858), + [anon_sym_like2] = ACTIONS(858), + [anon_sym_not_DASHlike2] = ACTIONS(858), + [anon_sym_STAR_STAR2] = ACTIONS(858), + [anon_sym_PLUS_PLUS2] = ACTIONS(858), + [anon_sym_SLASH2] = ACTIONS(858), + [anon_sym_mod2] = ACTIONS(858), + [anon_sym_SLASH_SLASH2] = ACTIONS(858), + [anon_sym_PLUS2] = ACTIONS(858), + [anon_sym_bit_DASHshl2] = ACTIONS(858), + [anon_sym_bit_DASHshr2] = ACTIONS(858), + [anon_sym_bit_DASHand2] = ACTIONS(858), + [anon_sym_bit_DASHxor2] = ACTIONS(858), + [anon_sym_bit_DASHor2] = ACTIONS(858), + [anon_sym_DOT_DOT2] = ACTIONS(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(986), + [sym_duration_unit] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(858), + [anon_sym_out_GT] = ACTIONS(858), + [anon_sym_e_GT] = ACTIONS(858), + [anon_sym_o_GT] = ACTIONS(858), + [anon_sym_err_PLUSout_GT] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT] = ACTIONS(858), + [anon_sym_o_PLUSe_GT] = ACTIONS(858), + [anon_sym_e_PLUSo_GT] = ACTIONS(858), + [anon_sym_err_GT_GT] = ACTIONS(858), + [anon_sym_out_GT_GT] = ACTIONS(858), + [anon_sym_e_GT_GT] = ACTIONS(858), + [anon_sym_o_GT_GT] = ACTIONS(858), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(858), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(858), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(858), [anon_sym_POUND] = ACTIONS(103), }, [STATE(139)] = { @@ -55220,6 +55496,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), @@ -55265,7 +55542,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), @@ -55288,418 +55564,418 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(140)] = { [sym_comment] = STATE(140), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(739), + [anon_sym_out_GT_GT] = ACTIONS(739), + [anon_sym_e_GT_GT] = ACTIONS(739), + [anon_sym_o_GT_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, [STATE(141)] = { [sym_comment] = STATE(141), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(990), - [sym_duration_unit] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(763), + [anon_sym_out_GT_GT] = ACTIONS(763), + [anon_sym_e_GT_GT] = ACTIONS(763), + [anon_sym_o_GT_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), [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_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(789), + [anon_sym_out_GT_GT] = ACTIONS(789), + [anon_sym_e_GT_GT] = ACTIONS(789), + [anon_sym_o_GT_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), [anon_sym_POUND] = ACTIONS(103), }, [STATE(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(858), + [anon_sym_STAR_STAR] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_mod] = ACTIONS(968), + [anon_sym_SLASH_SLASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_bit_DASHshl] = ACTIONS(968), + [anon_sym_bit_DASHshr] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(968), + [anon_sym_BANG_TILDE] = ACTIONS(968), + [anon_sym_like] = ACTIONS(968), + [anon_sym_not_DASHlike] = ACTIONS(968), + [anon_sym_bit_DASHand] = ACTIONS(968), + [anon_sym_bit_DASHxor] = ACTIONS(968), + [anon_sym_bit_DASHor] = ACTIONS(968), + [anon_sym_and] = ACTIONS(968), + [anon_sym_xor] = ACTIONS(968), + [anon_sym_or] = ACTIONS(968), + [anon_sym_in2] = ACTIONS(968), + [anon_sym_not_DASHin] = ACTIONS(968), + [anon_sym_has] = ACTIONS(968), + [anon_sym_not_DASHhas] = ACTIONS(968), + [anon_sym_starts_DASHwith] = ACTIONS(968), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(968), + [anon_sym_ends_DASHwith] = ACTIONS(968), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_GT_EQ] = ACTIONS(968), + [aux_sym_cmd_identifier_token6] = ACTIONS(972), + [sym__newline] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(858), + [anon_sym_err_GT_PIPE] = ACTIONS(858), + [anon_sym_out_GT_PIPE] = ACTIONS(858), + [anon_sym_e_GT_PIPE] = ACTIONS(858), + [anon_sym_o_GT_PIPE] = ACTIONS(858), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), + [anon_sym_GT2] = ACTIONS(858), + [anon_sym_DASH2] = ACTIONS(858), + [anon_sym_STAR2] = ACTIONS(858), + [anon_sym_and2] = ACTIONS(858), + [anon_sym_xor2] = ACTIONS(858), + [anon_sym_or2] = ACTIONS(858), + [anon_sym_not_DASHin2] = ACTIONS(858), + [anon_sym_has2] = ACTIONS(858), + [anon_sym_not_DASHhas2] = ACTIONS(858), + [anon_sym_starts_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), + [anon_sym_ends_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), + [anon_sym_EQ_EQ2] = ACTIONS(858), + [anon_sym_BANG_EQ2] = ACTIONS(858), + [anon_sym_LT2] = ACTIONS(858), + [anon_sym_LT_EQ2] = ACTIONS(858), + [anon_sym_GT_EQ2] = ACTIONS(858), + [anon_sym_EQ_TILDE2] = ACTIONS(858), + [anon_sym_BANG_TILDE2] = ACTIONS(858), + [anon_sym_like2] = ACTIONS(858), + [anon_sym_not_DASHlike2] = ACTIONS(858), + [anon_sym_STAR_STAR2] = ACTIONS(858), + [anon_sym_PLUS_PLUS2] = ACTIONS(858), + [anon_sym_SLASH2] = ACTIONS(858), + [anon_sym_mod2] = ACTIONS(858), + [anon_sym_SLASH_SLASH2] = ACTIONS(858), + [anon_sym_PLUS2] = ACTIONS(858), + [anon_sym_bit_DASHshl2] = ACTIONS(858), + [anon_sym_bit_DASHshr2] = ACTIONS(858), + [anon_sym_bit_DASHand2] = ACTIONS(858), + [anon_sym_bit_DASHxor2] = ACTIONS(858), + [anon_sym_bit_DASHor2] = ACTIONS(858), + [anon_sym_DOT_DOT2] = ACTIONS(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(990), + [sym_duration_unit] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(858), + [anon_sym_out_GT] = ACTIONS(858), + [anon_sym_e_GT] = ACTIONS(858), + [anon_sym_o_GT] = ACTIONS(858), + [anon_sym_err_PLUSout_GT] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT] = ACTIONS(858), + [anon_sym_o_PLUSe_GT] = ACTIONS(858), + [anon_sym_e_PLUSo_GT] = ACTIONS(858), + [anon_sym_err_GT_GT] = ACTIONS(858), + [anon_sym_out_GT_GT] = ACTIONS(858), + [anon_sym_e_GT_GT] = ACTIONS(858), + [anon_sym_o_GT_GT] = ACTIONS(858), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(858), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(858), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(858), [anon_sym_POUND] = ACTIONS(103), }, [STATE(144)] = { @@ -55804,210 +56080,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), }, [STATE(145)] = { + [sym_pipeline_parenthesized] = STATE(4418), + [sym_cmd_identifier] = STATE(2876), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), [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(189), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), + [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(1006), + [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_parenthesized] = STATE(4423), + [sym_cmd_identifier] = STATE(2876), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), [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), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), + [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(1006), + [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(147)] = { [sym_comment] = STATE(147), - [anon_sym_in] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(1008), [anon_sym_STAR_STAR] = ACTIONS(1010), [anon_sym_PLUS_PLUS] = ACTIONS(1010), [anon_sym_STAR] = ACTIONS(1012), @@ -56043,71 +56319,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__newline] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_GT2] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_STAR2] = ACTIONS(1008), + [anon_sym_and2] = ACTIONS(1008), + [anon_sym_xor2] = ACTIONS(1008), + [anon_sym_or2] = ACTIONS(1008), + [anon_sym_not_DASHin2] = ACTIONS(1008), + [anon_sym_has2] = ACTIONS(1008), + [anon_sym_not_DASHhas2] = ACTIONS(1008), + [anon_sym_starts_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), + [anon_sym_ends_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), + [anon_sym_EQ_EQ2] = ACTIONS(1008), + [anon_sym_BANG_EQ2] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1008), + [anon_sym_LT_EQ2] = ACTIONS(1008), + [anon_sym_GT_EQ2] = ACTIONS(1008), + [anon_sym_EQ_TILDE2] = ACTIONS(1008), + [anon_sym_BANG_TILDE2] = ACTIONS(1008), + [anon_sym_like2] = ACTIONS(1008), + [anon_sym_not_DASHlike2] = ACTIONS(1008), + [anon_sym_STAR_STAR2] = ACTIONS(1008), + [anon_sym_PLUS_PLUS2] = ACTIONS(1008), + [anon_sym_SLASH2] = ACTIONS(1008), + [anon_sym_mod2] = ACTIONS(1008), + [anon_sym_SLASH_SLASH2] = ACTIONS(1008), + [anon_sym_PLUS2] = ACTIONS(1008), + [anon_sym_bit_DASHshl2] = ACTIONS(1008), + [anon_sym_bit_DASHshr2] = ACTIONS(1008), + [anon_sym_bit_DASHand2] = ACTIONS(1008), + [anon_sym_bit_DASHxor2] = ACTIONS(1008), + [anon_sym_bit_DASHor2] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1008), + [anon_sym_out_GT] = ACTIONS(1008), + [anon_sym_e_GT] = ACTIONS(1008), + [anon_sym_o_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT] = ACTIONS(1008), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), [anon_sym_POUND] = ACTIONS(103), }, [STATE(148)] = { + [sym_pipeline_parenthesized] = STATE(4609), + [sym_cmd_identifier] = STATE(2876), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(138), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), [sym_comment] = STATE(148), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(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(1006), + [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(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1022), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_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(149)] = { + [sym_pipeline_parenthesized] = STATE(4606), + [sym_cmd_identifier] = STATE(2876), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(149), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), + [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(1006), + [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(150)] = { + [sym_pipeline_parenthesized] = STATE(4609), + [sym_cmd_identifier] = STATE(2876), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), + [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(1006), + [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(151)] = { + [sym_comment] = STATE(151), [anon_sym_in] = ACTIONS(996), [anon_sym_STAR_STAR] = ACTIONS(1010), [anon_sym_PLUS_PLUS] = ACTIONS(1010), @@ -56207,356 +56786,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_pipeline] = STATE(4661), + [sym_cmd_identifier] = STATE(2923), + [sym__ctrl_expression] = STATE(3263), + [sym_ctrl_if] = STATE(3264), + [sym_ctrl_match] = STATE(3264), + [sym_ctrl_try] = STATE(3264), + [sym__stmt_let_shortcut] = STATE(3269), + [sym_pipe_element] = STATE(2993), + [sym_where_command] = STATE(3263), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1321), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1321), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(896), + [sym_val_range] = STATE(1321), + [sym__value] = STATE(1321), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1318), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(117), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3263), [sym_comment] = STATE(152), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(280), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1024), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -56582,7 +56859,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(1026), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -56611,152 +56888,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_pipeline] = STATE(4229), + [sym_cmd_identifier] = STATE(2748), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(138), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [sym_comment] = STATE(153), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(154)] = { - [sym_pipeline] = STATE(4212), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(154), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(183), [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(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -56768,7 +56946,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(1028), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -56782,7 +56960,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -56790,10 +56968,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(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1022), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -56810,53 +56988,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(155)] = { - [sym_pipeline] = STATE(4294), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(155), - [aux_sym_pipeline_repeat1] = STATE(185), + [STATE(154)] = { + [sym_pipeline] = STATE(4340), + [sym_cmd_identifier] = STATE(2748), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(138), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(154), + [aux_sym_pipeline_repeat1] = STATE(183), [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(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -56868,7 +57047,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(1028), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -56882,7 +57061,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -56890,10 +57069,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(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1022), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -56910,53 +57089,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), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(155)] = { + [sym_pipeline] = STATE(4229), + [sym_cmd_identifier] = STATE(2748), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(155), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -56982,7 +57162,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57010,53 +57190,256 @@ 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_comment] = STATE(156), + [anon_sym_in] = ACTIONS(1008), + [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(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_GT2] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_STAR2] = ACTIONS(1008), + [anon_sym_and2] = ACTIONS(1008), + [anon_sym_xor2] = ACTIONS(1008), + [anon_sym_or2] = ACTIONS(1008), + [anon_sym_not_DASHin2] = ACTIONS(1008), + [anon_sym_has2] = ACTIONS(1008), + [anon_sym_not_DASHhas2] = ACTIONS(1008), + [anon_sym_starts_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), + [anon_sym_ends_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), + [anon_sym_EQ_EQ2] = ACTIONS(1008), + [anon_sym_BANG_EQ2] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1008), + [anon_sym_LT_EQ2] = ACTIONS(1008), + [anon_sym_GT_EQ2] = ACTIONS(1008), + [anon_sym_EQ_TILDE2] = ACTIONS(1008), + [anon_sym_BANG_TILDE2] = ACTIONS(1008), + [anon_sym_like2] = ACTIONS(1008), + [anon_sym_not_DASHlike2] = ACTIONS(1008), + [anon_sym_STAR_STAR2] = ACTIONS(1008), + [anon_sym_PLUS_PLUS2] = ACTIONS(1008), + [anon_sym_SLASH2] = ACTIONS(1008), + [anon_sym_mod2] = ACTIONS(1008), + [anon_sym_SLASH_SLASH2] = ACTIONS(1008), + [anon_sym_PLUS2] = ACTIONS(1008), + [anon_sym_bit_DASHshl2] = ACTIONS(1008), + [anon_sym_bit_DASHshr2] = ACTIONS(1008), + [anon_sym_bit_DASHand2] = ACTIONS(1008), + [anon_sym_bit_DASHxor2] = ACTIONS(1008), + [anon_sym_bit_DASHor2] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1008), + [anon_sym_out_GT] = ACTIONS(1008), + [anon_sym_e_GT] = ACTIONS(1008), + [anon_sym_o_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT] = ACTIONS(1008), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(103), + }, [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), - [aux_sym_pipeline_repeat1] = STATE(185), + [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(158)] = { + [sym_pipeline] = STATE(4242), + [sym_cmd_identifier] = STATE(2748), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(138), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(158), + [aux_sym_pipeline_repeat1] = STATE(183), [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(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57068,7 +57451,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(1028), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -57082,7 +57465,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57090,10 +57473,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(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1022), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57110,53 +57493,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), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(159)] = { + [sym_pipeline] = STATE(4340), + [sym_cmd_identifier] = STATE(2748), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(159), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57182,7 +57566,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57210,153 +57594,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), - [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(160)] = { - [sym_pipeline] = STATE(4518), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), + [sym_pipeline] = STATE(4538), + [sym_cmd_identifier] = STATE(2923), + [sym__ctrl_expression] = STATE(3263), + [sym_ctrl_if] = STATE(3264), + [sym_ctrl_match] = STATE(3264), + [sym_ctrl_try] = STATE(3264), + [sym__stmt_let_shortcut] = STATE(3269), + [sym_pipe_element] = STATE(2993), + [sym_where_command] = STATE(3263), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1321), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1321), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(896), + [sym_val_range] = STATE(1321), + [sym__value] = STATE(1321), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1318), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(117), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3263), [sym_comment] = STATE(160), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(280), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1024), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -57382,7 +57667,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(1026), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -57411,52 +57696,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_pipeline] = STATE(4414), + [sym_cmd_identifier] = STATE(2748), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [sym_comment] = STATE(161), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57468,9 +57754,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), @@ -57482,18 +57768,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(1006), [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), @@ -57506,57 +57792,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(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_pipeline] = STATE(4254), + [sym_cmd_identifier] = STATE(2748), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [sym_comment] = STATE(162), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57568,9 +57855,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), @@ -57582,18 +57869,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(1006), [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), @@ -57606,157 +57893,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(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), - [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), + [ts_builtin_sym_end] = ACTIONS(1030), + [anon_sym_in] = ACTIONS(1008), + [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(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_GT2] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_STAR2] = ACTIONS(1008), + [anon_sym_and2] = ACTIONS(1008), + [anon_sym_xor2] = ACTIONS(1008), + [anon_sym_or2] = ACTIONS(1008), + [anon_sym_not_DASHin2] = ACTIONS(1008), + [anon_sym_has2] = ACTIONS(1008), + [anon_sym_not_DASHhas2] = ACTIONS(1008), + [anon_sym_starts_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), + [anon_sym_ends_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), + [anon_sym_EQ_EQ2] = ACTIONS(1008), + [anon_sym_BANG_EQ2] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1008), + [anon_sym_LT_EQ2] = ACTIONS(1008), + [anon_sym_GT_EQ2] = ACTIONS(1008), + [anon_sym_EQ_TILDE2] = ACTIONS(1008), + [anon_sym_BANG_TILDE2] = ACTIONS(1008), + [anon_sym_like2] = ACTIONS(1008), + [anon_sym_not_DASHlike2] = ACTIONS(1008), + [anon_sym_STAR_STAR2] = ACTIONS(1008), + [anon_sym_PLUS_PLUS2] = ACTIONS(1008), + [anon_sym_SLASH2] = ACTIONS(1008), + [anon_sym_mod2] = ACTIONS(1008), + [anon_sym_SLASH_SLASH2] = ACTIONS(1008), + [anon_sym_PLUS2] = ACTIONS(1008), + [anon_sym_bit_DASHshl2] = ACTIONS(1008), + [anon_sym_bit_DASHshr2] = ACTIONS(1008), + [anon_sym_bit_DASHand2] = ACTIONS(1008), + [anon_sym_bit_DASHxor2] = ACTIONS(1008), + [anon_sym_bit_DASHor2] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1008), + [anon_sym_out_GT] = ACTIONS(1008), + [anon_sym_e_GT] = ACTIONS(1008), + [anon_sym_o_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT] = ACTIONS(1008), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(103), }, [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_pipeline_parenthesized] = STATE(4540), + [sym_cmd_identifier] = STATE(2876), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(138), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), [sym_comment] = STATE(164), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57768,7 +58057,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(1016), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), @@ -57782,7 +58071,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57790,10 +58079,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(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1022), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57811,63 +58100,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(165)] = { - [sym_pipeline] = STATE(4409), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), [sym_comment] = STATE(165), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), + [anon_sym_in] = ACTIONS(1008), + [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(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_GT2] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_STAR2] = ACTIONS(1008), + [anon_sym_and2] = ACTIONS(1008), + [anon_sym_xor2] = ACTIONS(1008), + [anon_sym_or2] = ACTIONS(1008), + [anon_sym_not_DASHin2] = ACTIONS(1008), + [anon_sym_has2] = ACTIONS(1008), + [anon_sym_not_DASHhas2] = ACTIONS(1008), + [anon_sym_starts_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), + [anon_sym_ends_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), + [anon_sym_EQ_EQ2] = ACTIONS(1008), + [anon_sym_BANG_EQ2] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1008), + [anon_sym_LT_EQ2] = ACTIONS(1008), + [anon_sym_GT_EQ2] = ACTIONS(1008), + [anon_sym_EQ_TILDE2] = ACTIONS(1008), + [anon_sym_BANG_TILDE2] = ACTIONS(1008), + [anon_sym_like2] = ACTIONS(1008), + [anon_sym_not_DASHlike2] = ACTIONS(1008), + [anon_sym_STAR_STAR2] = ACTIONS(1008), + [anon_sym_PLUS_PLUS2] = ACTIONS(1008), + [anon_sym_SLASH2] = ACTIONS(1008), + [anon_sym_mod2] = ACTIONS(1008), + [anon_sym_SLASH_SLASH2] = ACTIONS(1008), + [anon_sym_PLUS2] = ACTIONS(1008), + [anon_sym_bit_DASHshl2] = ACTIONS(1008), + [anon_sym_bit_DASHshr2] = ACTIONS(1008), + [anon_sym_bit_DASHand2] = ACTIONS(1008), + [anon_sym_bit_DASHxor2] = ACTIONS(1008), + [anon_sym_bit_DASHor2] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1008), + [anon_sym_out_GT] = ACTIONS(1008), + [anon_sym_e_GT] = ACTIONS(1008), + [anon_sym_o_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT] = ACTIONS(1008), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(166)] = { + [sym_comment] = STATE(166), + [anon_sym_in] = ACTIONS(996), + [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(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(167)] = { + [sym_pipeline] = STATE(4662), + [sym_cmd_identifier] = STATE(2923), + [sym__ctrl_expression] = STATE(3263), + [sym_ctrl_if] = STATE(3264), + [sym_ctrl_match] = STATE(3264), + [sym_ctrl_try] = STATE(3264), + [sym__stmt_let_shortcut] = STATE(3269), + [sym_pipe_element] = STATE(2993), + [sym_where_command] = STATE(3263), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1321), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1321), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(896), + [sym_val_range] = STATE(1321), + [sym__value] = STATE(1321), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1318), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(117), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3263), + [sym_comment] = STATE(167), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(280), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1024), + [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), @@ -57882,7 +58374,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(1026), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -57910,153 +58402,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(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), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_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(168)] = { + [sym_pipeline] = STATE(4414), + [sym_cmd_identifier] = STATE(2748), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(138), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(168), + [aux_sym_pipeline_repeat1] = STATE(183), + [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(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58068,7 +58461,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(1028), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58082,7 +58475,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58090,10 +58483,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(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1022), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58110,53 +58503,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(169)] = { + [sym_pipeline] = STATE(4242), + [sym_cmd_identifier] = STATE(2748), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(169), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58182,7 +58576,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58210,53 +58604,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(169)] = { - [sym_pipeline] = STATE(4311), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(169), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), + [STATE(170)] = { + [sym_pipeline] = STATE(4254), + [sym_cmd_identifier] = STATE(2748), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(138), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(170), + [aux_sym_pipeline_repeat1] = STATE(183), + [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(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58268,7 +58663,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(1028), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58282,7 +58677,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58290,10 +58685,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(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1022), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58310,53 +58705,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(171)] = { + [sym_pipeline] = STATE(4414), + [sym_cmd_identifier] = STATE(2748), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(171), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58382,7 +58778,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58410,53 +58806,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), + [STATE(172)] = { + [sym_pipeline_parenthesized] = STATE(4418), + [sym_cmd_identifier] = STATE(2876), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [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), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(138), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(172), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58468,7 +58865,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(1016), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), @@ -58482,7 +58879,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58490,10 +58887,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(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1022), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58510,253 +58907,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(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_pipeline] = STATE(4607), + [sym_cmd_identifier] = STATE(2923), + [sym__ctrl_expression] = STATE(3263), + [sym_ctrl_if] = STATE(3264), + [sym_ctrl_match] = STATE(3264), + [sym_ctrl_try] = STATE(3264), + [sym__stmt_let_shortcut] = STATE(3269), + [sym_pipe_element] = STATE(2993), + [sym_where_command] = STATE(3263), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1321), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1321), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(896), + [sym_val_range] = STATE(1321), + [sym__value] = STATE(1321), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1318), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(117), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3263), [sym_comment] = STATE(173), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(280), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1024), + [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(1026), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(174)] = { - [sym_pipeline] = STATE(4212), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline_parenthesized] = STATE(4423), + [sym_cmd_identifier] = STATE(2876), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(138), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), [sym_comment] = STATE(174), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58768,9 +59067,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(1016), [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), @@ -58782,18 +59081,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(1006), [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(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1022), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58806,57 +59105,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(175)] = { - [sym_pipeline] = STATE(4294), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline] = STATE(4229), + [sym_cmd_identifier] = STATE(2748), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), [sym_comment] = STATE(175), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58868,7 +59168,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(457), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58882,7 +59182,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58890,10 +59190,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), @@ -58911,52 +59211,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(176)] = { - [sym_pipeline] = STATE(4304), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline_parenthesized] = STATE(4540), + [sym_cmd_identifier] = STATE(2876), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), [sym_comment] = STATE(176), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58968,9 +59269,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), @@ -58982,18 +59283,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(1006), [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), @@ -59006,57 +59307,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(177)] = { - [sym_pipeline] = STATE(4311), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline] = STATE(4623), + [sym_cmd_identifier] = STATE(2923), + [sym__ctrl_expression] = STATE(3263), + [sym_ctrl_if] = STATE(3264), + [sym_ctrl_match] = STATE(3264), + [sym_ctrl_try] = STATE(3264), + [sym__stmt_let_shortcut] = STATE(3269), + [sym_pipe_element] = STATE(2993), + [sym_where_command] = STATE(3263), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1321), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1321), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(896), + [sym_val_range] = STATE(1321), + [sym__value] = STATE(1321), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1318), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(117), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3263), [sym_comment] = STATE(177), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(280), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1024), + [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(1026), + [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(178)] = { + [sym_pipeline] = STATE(4340), + [sym_cmd_identifier] = STATE(2748), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59068,7 +59471,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(457), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -59082,7 +59485,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59090,10 +59493,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), @@ -59110,53 +59513,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(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_comment] = STATE(178), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [STATE(179)] = { + [sym_pipeline] = STATE(4254), + [sym_cmd_identifier] = STATE(2748), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(179), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59168,7 +59572,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(457), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -59182,7 +59586,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59190,10 +59594,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), @@ -59210,53 +59614,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(179)] = { - [sym_pipeline_parenthesized] = STATE(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), + [STATE(180)] = { + [sym_pipeline_parenthesized] = STATE(4606), + [sym_cmd_identifier] = STATE(2876), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3022), + [sym_where_command_parenthesized] = STATE(3252), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(179), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(138), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(180), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59268,7 +59673,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(1016), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), @@ -59282,7 +59687,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59290,10 +59695,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(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1022), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59310,53 +59715,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(180)] = { - [sym_pipeline_parenthesized] = STATE(4460), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(180), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [STATE(181)] = { + [sym_pipeline] = STATE(4242), + [sym_cmd_identifier] = STATE(2748), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2860), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59368,9 +59774,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), @@ -59382,18 +59788,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(1006), [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), @@ -59406,57 +59812,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(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), + [STATE(182)] = { + [sym_cmd_identifier] = STATE(2876), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3285), + [sym_where_command_parenthesized] = STATE(3252), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(181), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(143), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(182), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [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(183)] = { + [sym_cmd_identifier] = STATE(2748), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2928), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(138), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(183), + [aux_sym_pipeline_repeat1] = STATE(187), + [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(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59468,9 +59974,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(1028), [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), @@ -59482,18 +59988,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(1006), [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(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1022), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59506,57 +60012,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(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(182)] = { - [sym_pipeline_parenthesized] = STATE(4617), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(182), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [STATE(184)] = { + [sym_cmd_identifier] = STATE(2748), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2928), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(184), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59568,9 +60074,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), @@ -59582,18 +60088,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(1006), [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), @@ -59606,57 +60112,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(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_comment] = STATE(183), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), + [STATE(185)] = { + [sym_cmd_identifier] = STATE(2923), + [sym__ctrl_expression] = STATE(3263), + [sym_ctrl_if] = STATE(3264), + [sym_ctrl_match] = STATE(3264), + [sym_ctrl_try] = STATE(3264), + [sym__stmt_let_shortcut] = STATE(3269), + [sym_pipe_element] = STATE(2984), + [sym_where_command] = STATE(3263), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1321), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1321), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(896), + [sym_val_range] = STATE(1321), + [sym__value] = STATE(1321), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1318), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(117), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3263), + [sym_comment] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(280), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1024), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -59682,7 +60188,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(1026), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -59710,151 +60216,353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(184)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2846), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(184), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(287), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [STATE(186)] = { + [sym_comment] = STATE(186), + [anon_sym_in] = ACTIONS(1008), + [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(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_GT2] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_STAR2] = ACTIONS(1008), + [anon_sym_and2] = ACTIONS(1008), + [anon_sym_xor2] = ACTIONS(1008), + [anon_sym_or2] = ACTIONS(1008), + [anon_sym_not_DASHin2] = ACTIONS(1008), + [anon_sym_has2] = ACTIONS(1008), + [anon_sym_not_DASHhas2] = ACTIONS(1008), + [anon_sym_starts_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), + [anon_sym_ends_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), + [anon_sym_EQ_EQ2] = ACTIONS(1008), + [anon_sym_BANG_EQ2] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1008), + [anon_sym_LT_EQ2] = ACTIONS(1008), + [anon_sym_GT_EQ2] = ACTIONS(1008), + [anon_sym_EQ_TILDE2] = ACTIONS(1008), + [anon_sym_BANG_TILDE2] = ACTIONS(1008), + [anon_sym_like2] = ACTIONS(1008), + [anon_sym_not_DASHlike2] = ACTIONS(1008), + [anon_sym_STAR_STAR2] = ACTIONS(1008), + [anon_sym_PLUS_PLUS2] = ACTIONS(1008), + [anon_sym_SLASH2] = ACTIONS(1008), + [anon_sym_mod2] = ACTIONS(1008), + [anon_sym_SLASH_SLASH2] = ACTIONS(1008), + [anon_sym_PLUS2] = ACTIONS(1008), + [anon_sym_bit_DASHshl2] = ACTIONS(1008), + [anon_sym_bit_DASHshr2] = ACTIONS(1008), + [anon_sym_bit_DASHand2] = ACTIONS(1008), + [anon_sym_bit_DASHxor2] = ACTIONS(1008), + [anon_sym_bit_DASHor2] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1008), + [anon_sym_out_GT] = ACTIONS(1008), + [anon_sym_e_GT] = ACTIONS(1008), + [anon_sym_o_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT] = ACTIONS(1008), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(103), }, - [STATE(185)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2846), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(185), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(187)] = { + [sym_cmd_identifier] = STATE(2748), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(3302), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(143), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(187), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(290), + [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(188)] = { + [sym_comment] = STATE(188), + [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(189)] = { + [sym_cmd_identifier] = STATE(2876), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3095), + [sym_where_command_parenthesized] = STATE(3252), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(189), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59866,9 +60574,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(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), @@ -59880,18 +60588,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59904,155 +60612,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(186)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(3228), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(186), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(280), - [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), - }, - [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), + [STATE(190)] = { + [sym_cmd_identifier] = STATE(2876), + [sym__ctrl_expression_parenthesized] = STATE(3252), + [sym_ctrl_if_parenthesized] = STATE(3287), + [sym_ctrl_match] = STATE(3287), + [sym_ctrl_try_parenthesized] = STATE(3287), + [sym__stmt_let_shortcut] = STATE(3288), + [sym_pipe_element_parenthesized] = STATE(3095), + [sym_where_command_parenthesized] = STATE(3252), [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), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(138), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3300), + [sym_comment] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -60064,7 +60674,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(1016), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), @@ -60078,7 +60688,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -60086,10 +60696,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(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1022), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60106,52 +60716,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(188)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2846), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(188), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(290), + [STATE(191)] = { + [sym_cmd_identifier] = STATE(2748), + [sym__ctrl_expression] = STATE(3167), + [sym_ctrl_if] = STATE(3168), + [sym_ctrl_match] = STATE(3168), + [sym_ctrl_try] = STATE(3168), + [sym__stmt_let_shortcut] = STATE(3171), + [sym_pipe_element] = STATE(2928), + [sym_where_command] = STATE(3167), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3167), + [sym_comment] = STATE(191), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1004), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -60177,7 +60788,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -60205,8 +60816,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(189)] = { - [sym_comment] = STATE(189), + [STATE(192)] = { + [sym_comment] = STATE(192), + [anon_sym_in] = ACTIONS(1008), + [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(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_GT2] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_STAR2] = ACTIONS(1008), + [anon_sym_and2] = ACTIONS(1008), + [anon_sym_xor2] = ACTIONS(1008), + [anon_sym_or2] = ACTIONS(1008), + [anon_sym_not_DASHin2] = ACTIONS(1008), + [anon_sym_has2] = ACTIONS(1008), + [anon_sym_not_DASHhas2] = ACTIONS(1008), + [anon_sym_starts_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), + [anon_sym_ends_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), + [anon_sym_EQ_EQ2] = ACTIONS(1008), + [anon_sym_BANG_EQ2] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1008), + [anon_sym_LT_EQ2] = ACTIONS(1008), + [anon_sym_GT_EQ2] = ACTIONS(1008), + [anon_sym_EQ_TILDE2] = ACTIONS(1008), + [anon_sym_BANG_TILDE2] = ACTIONS(1008), + [anon_sym_like2] = ACTIONS(1008), + [anon_sym_not_DASHlike2] = ACTIONS(1008), + [anon_sym_STAR_STAR2] = ACTIONS(1008), + [anon_sym_PLUS_PLUS2] = ACTIONS(1008), + [anon_sym_SLASH2] = ACTIONS(1008), + [anon_sym_mod2] = ACTIONS(1008), + [anon_sym_SLASH_SLASH2] = ACTIONS(1008), + [anon_sym_PLUS2] = ACTIONS(1008), + [anon_sym_bit_DASHshl2] = ACTIONS(1008), + [anon_sym_bit_DASHshr2] = ACTIONS(1008), + [anon_sym_bit_DASHand2] = ACTIONS(1008), + [anon_sym_bit_DASHxor2] = ACTIONS(1008), + [anon_sym_bit_DASHor2] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1008), + [anon_sym_out_GT] = ACTIONS(1008), + [anon_sym_e_GT] = ACTIONS(1008), + [anon_sym_o_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT] = ACTIONS(1008), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(193)] = { + [sym_comment] = STATE(193), [anon_sym_in] = ACTIONS(996), [anon_sym_STAR_STAR] = ACTIONS(1010), [anon_sym_PLUS_PLUS] = ACTIONS(1010), @@ -60304,247 +61014,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(194)] = { + [sym_expr_parenthesized] = STATE(3775), + [sym__spread_parenthesized] = STATE(3096), + [sym_val_range] = STATE(3097), + [sym__val_range] = STATE(4622), + [sym__value] = STATE(3097), + [sym_val_nothing] = STATE(3058), + [sym_val_bool] = STATE(3946), + [sym__spread_variable] = STATE(3098), + [sym_val_variable] = STATE(3886), + [sym_val_cellpath] = STATE(3058), + [sym_val_number] = STATE(3058), + [sym__val_number_decimal] = STATE(3408), + [sym__val_number] = STATE(3061), + [sym_val_duration] = STATE(3058), + [sym_val_filesize] = STATE(3058), + [sym_val_binary] = STATE(3058), + [sym_val_string] = STATE(3058), + [sym__raw_str] = STATE(2455), + [sym__str_double_quotes] = STATE(2455), + [sym__str_single_quotes] = STATE(2455), + [sym__str_back_ticks] = STATE(2455), + [sym_val_interpolated] = STATE(3058), + [sym__inter_single_quotes] = STATE(3082), + [sym__inter_double_quotes] = STATE(3083), + [sym_val_list] = STATE(3058), + [sym__spread_list] = STATE(3096), + [sym_val_record] = STATE(3058), + [sym_val_table] = STATE(3058), + [sym_val_closure] = STATE(3058), + [sym__cmd_arg] = STATE(3099), + [sym_redirection] = STATE(3100), + [sym__flag] = STATE(3101), + [sym_short_flag] = STATE(3102), + [sym_long_flag] = STATE(3102), + [sym_unquoted] = STATE(2685), + [sym__unquoted_with_expr] = STATE(3104), + [sym__unquoted_anonymous_prefix] = STATE(4622), + [sym_comment] = STATE(194), + [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(874), + [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(856), }, - [STATE(191)] = { - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2938), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(191), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(192)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2976), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(192), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [STATE(195)] = { + [sym_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(1405), + [sym_ctrl_if_parenthesized] = STATE(3261), + [sym_block] = STATE(3262), + [sym__expression_parenthesized] = STATE(3262), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3262), + [sym_comment] = STATE(195), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -60561,30 +61163,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(271), [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), + [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_true] = ACTIONS(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(1006), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(1264), [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_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), @@ -60597,242 +61199,47 @@ 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(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), - }, - [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_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_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), - }, - [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_comment] = STATE(195), + [STATE(196)] = { + [sym_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(202), + [sym_ctrl_if_parenthesized] = STATE(3372), + [sym_block] = STATE(3373), + [sym__expression_parenthesized] = STATE(3373), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3373), + [sym_comment] = STATE(196), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -60853,26 +61260,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(1006), [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), @@ -60889,43 +61296,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(196)] = { - [sym_cmd_identifier] = STATE(2905), + [STATE(197)] = { + [sym_cmd_identifier] = STATE(2863), [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_comment] = STATE(196), + [sym_ctrl_if_parenthesized] = STATE(3257), + [sym_block] = STATE(3258), + [sym__expression_parenthesized] = STATE(3258), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3258), + [sym_comment] = STATE(197), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -60946,26 +61353,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(1006), [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), @@ -60982,43 +61389,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(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_comment] = STATE(197), + [STATE(198)] = { + [sym_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(204), + [sym_ctrl_if_parenthesized] = STATE(3257), + [sym_block] = STATE(3258), + [sym__expression_parenthesized] = STATE(3258), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3258), + [sym_comment] = STATE(198), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -61039,26 +61446,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(1006), [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), @@ -61075,43 +61482,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(198)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(203), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), - [sym_comment] = STATE(198), + [STATE(199)] = { + [sym_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(206), + [sym_ctrl_if_parenthesized] = STATE(3261), + [sym_block] = STATE(3262), + [sym__expression_parenthesized] = STATE(3262), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3262), + [sym_comment] = STATE(199), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -61132,26 +61539,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(1006), [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), @@ -61168,43 +61575,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(199)] = { - [sym_cmd_identifier] = STATE(2905), + [STATE(200)] = { + [sym_cmd_identifier] = STATE(2863), [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_comment] = STATE(199), + [sym_ctrl_if_parenthesized] = STATE(3295), + [sym_block] = STATE(3306), + [sym__expression_parenthesized] = STATE(3306), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3306), + [sym_comment] = STATE(200), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -61225,26 +61632,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(1006), [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), @@ -61261,43 +61668,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(200)] = { - [sym_cmd_identifier] = STATE(2905), + [STATE(201)] = { + [sym_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(208), + [sym_ctrl_if_parenthesized] = STATE(3295), + [sym_block] = STATE(3306), + [sym__expression_parenthesized] = STATE(3306), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3306), + [sym_comment] = STATE(201), + [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(1006), + [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(202)] = { + [sym_cmd_identifier] = STATE(2863), [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_comment] = STATE(200), + [sym_ctrl_if_parenthesized] = STATE(3381), + [sym_block] = STATE(3388), + [sym__expression_parenthesized] = STATE(3388), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3388), + [sym_comment] = STATE(202), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -61318,26 +61818,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(1006), [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), @@ -61354,43 +61854,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(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_comment] = STATE(201), + [STATE(203)] = { + [sym_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(209), + [sym_ctrl_if_parenthesized] = STATE(3381), + [sym_block] = STATE(3388), + [sym__expression_parenthesized] = STATE(3388), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3388), + [sym_comment] = STATE(203), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -61411,26 +61911,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(1006), [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), @@ -61447,43 +61947,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(202)] = { - [sym_cmd_identifier] = STATE(2905), + [STATE(204)] = { + [sym_cmd_identifier] = STATE(2863), [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_comment] = STATE(202), + [sym_ctrl_if_parenthesized] = STATE(3378), + [sym_block] = STATE(3278), + [sym__expression_parenthesized] = STATE(3278), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3278), + [sym_comment] = STATE(204), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -61504,26 +62004,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(1006), [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), @@ -61540,43 +62040,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(203)] = { - [sym_cmd_identifier] = STATE(2905), + [STATE(205)] = { + [sym_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(211), + [sym_ctrl_if_parenthesized] = STATE(3378), + [sym_block] = STATE(3278), + [sym__expression_parenthesized] = STATE(3278), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3278), + [sym_comment] = STATE(205), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_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(1006), + [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(206)] = { + [sym_cmd_identifier] = STATE(2863), [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_comment] = STATE(203), + [sym_ctrl_if_parenthesized] = STATE(3318), + [sym_block] = STATE(3340), + [sym__expression_parenthesized] = STATE(3340), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3340), + [sym_comment] = STATE(206), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -61597,26 +62190,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(1006), [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), @@ -61633,43 +62226,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(204)] = { - [sym_cmd_identifier] = STATE(2905), + [STATE(207)] = { + [sym_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(212), + [sym_ctrl_if_parenthesized] = STATE(3318), + [sym_block] = STATE(3340), + [sym__expression_parenthesized] = STATE(3340), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3340), + [sym_comment] = STATE(207), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_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(1006), + [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(208)] = { + [sym_cmd_identifier] = STATE(2863), [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_comment] = STATE(204), + [sym_ctrl_if_parenthesized] = STATE(3268), + [sym_block] = STATE(3275), + [sym__expression_parenthesized] = STATE(3275), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3275), + [sym_comment] = STATE(208), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -61690,26 +62376,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(1006), [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), @@ -61726,43 +62412,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(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_comment] = STATE(205), + [STATE(209)] = { + [sym_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(1405), + [sym_ctrl_if_parenthesized] = STATE(3279), + [sym_block] = STATE(3282), + [sym__expression_parenthesized] = STATE(3282), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3282), + [sym_comment] = STATE(209), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -61783,26 +62469,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(1006), [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), @@ -61819,43 +62505,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(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_comment] = STATE(206), + [STATE(210)] = { + [sym_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(213), + [sym_ctrl_if_parenthesized] = STATE(3279), + [sym_block] = STATE(3282), + [sym__expression_parenthesized] = STATE(3282), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3282), + [sym_comment] = STATE(210), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -61870,32 +62556,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(1006), [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), @@ -61912,43 +62598,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(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_comment] = STATE(207), + [STATE(211)] = { + [sym_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(1405), + [sym_ctrl_if_parenthesized] = STATE(3314), + [sym_block] = STATE(3254), + [sym__expression_parenthesized] = STATE(3254), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3254), + [sym_comment] = STATE(211), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -61963,32 +62649,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(1006), [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), @@ -62005,43 +62691,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(208)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(214), - [sym_ctrl_if_parenthesized] = STATE(3315), - [sym_block] = STATE(3316), - [sym__expression_parenthesized] = STATE(3316), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__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_comment] = STATE(208), + [STATE(212)] = { + [sym_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(1405), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_block] = STATE(3277), + [sym__expression_parenthesized] = STATE(3277), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3277), + [sym_comment] = STATE(212), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -62056,32 +62742,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(1006), [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), @@ -62098,43 +62784,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(209)] = { - [sym_cmd_identifier] = STATE(2905), + [STATE(213)] = { + [sym_cmd_identifier] = STATE(2863), [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_comment] = STATE(209), + [sym_ctrl_if_parenthesized] = STATE(3317), + [sym_block] = STATE(3319), + [sym__expression_parenthesized] = STATE(3319), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3319), + [sym_comment] = STATE(213), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -62149,497 +62835,125 @@ 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(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(1006), + [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(214)] = { + [sym_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(265), + [sym_ctrl_if_parenthesized] = STATE(3270), + [sym_block] = STATE(3272), + [sym__expression_parenthesized] = STATE(3272), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3272), + [sym_comment] = STATE(214), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_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(1006), [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_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_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(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_comment] = STATE(210), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(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_comment] = STATE(211), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(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_comment] = STATE(212), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(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_comment] = STATE(213), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(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_comment] = STATE(214), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_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), @@ -62657,41 +62971,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(2863), + [aux_sym__repeat_newline] = STATE(197), + [sym_ctrl_if_parenthesized] = STATE(3346), + [sym_block] = STATE(3349), + [sym__expression_parenthesized] = STATE(3349), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3349), [sym_comment] = STATE(215), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62707,32 +63021,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(1006), [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), @@ -62750,41 +63064,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(2863), + [aux_sym__repeat_newline] = STATE(219), + [sym_ctrl_if_parenthesized] = STATE(3270), + [sym_block] = STATE(3272), + [sym__expression_parenthesized] = STATE(3272), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3272), [sym_comment] = STATE(216), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62800,32 +63114,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62843,41 +63157,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(2863), + [aux_sym__repeat_newline] = STATE(222), + [sym_ctrl_if_parenthesized] = STATE(3346), + [sym_block] = STATE(3349), + [sym__expression_parenthesized] = STATE(3349), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3349), [sym_comment] = STATE(217), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62893,32 +63207,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62936,41 +63250,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(2863), + [aux_sym__repeat_newline] = STATE(224), + [sym_ctrl_if_parenthesized] = STATE(3352), + [sym_block] = STATE(3371), + [sym__expression_parenthesized] = STATE(3371), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3371), [sym_comment] = STATE(218), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62986,32 +63300,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63029,41 +63343,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(2863), + [aux_sym__repeat_newline] = STATE(1405), + [sym_ctrl_if_parenthesized] = STATE(3389), + [sym_block] = STATE(3265), + [sym__expression_parenthesized] = STATE(3265), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3265), [sym_comment] = STATE(219), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63079,32 +63393,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63122,41 +63436,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(2863), + [aux_sym__repeat_newline] = STATE(226), + [sym_ctrl_if_parenthesized] = STATE(3389), + [sym_block] = STATE(3265), + [sym__expression_parenthesized] = STATE(3265), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3265), [sym_comment] = STATE(220), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63172,32 +63486,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63215,41 +63529,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(2863), + [aux_sym__repeat_newline] = STATE(266), + [sym_ctrl_if_parenthesized] = STATE(3372), + [sym_block] = STATE(3373), + [sym__expression_parenthesized] = STATE(3373), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3373), [sym_comment] = STATE(221), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63265,32 +63579,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63308,41 +63622,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), + [sym_cmd_identifier] = STATE(2863), [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_ctrl_if_parenthesized] = STATE(3257), + [sym_block] = STATE(3258), + [sym__expression_parenthesized] = STATE(3258), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3258), [sym_comment] = STATE(222), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63358,32 +63672,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63401,41 +63715,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), - [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_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(230), + [sym_ctrl_if_parenthesized] = STATE(3257), + [sym_block] = STATE(3258), + [sym__expression_parenthesized] = STATE(3258), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3258), [sym_comment] = STATE(223), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63451,32 +63765,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63494,41 +63808,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), + [sym_cmd_identifier] = STATE(2863), [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_ctrl_if_parenthesized] = STATE(3261), + [sym_block] = STATE(3262), + [sym__expression_parenthesized] = STATE(3262), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3262), [sym_comment] = STATE(224), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63544,32 +63858,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63587,41 +63901,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(2863), + [aux_sym__repeat_newline] = STATE(232), + [sym_ctrl_if_parenthesized] = STATE(3261), + [sym_block] = STATE(3262), + [sym__expression_parenthesized] = STATE(3262), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3262), [sym_comment] = STATE(225), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63637,32 +63951,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63680,41 +63994,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(2863), + [aux_sym__repeat_newline] = STATE(1405), + [sym_ctrl_if_parenthesized] = STATE(3295), + [sym_block] = STATE(3306), + [sym__expression_parenthesized] = STATE(3306), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3306), [sym_comment] = STATE(226), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63730,32 +64044,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63773,41 +64087,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(2863), + [aux_sym__repeat_newline] = STATE(234), + [sym_ctrl_if_parenthesized] = STATE(3295), + [sym_block] = STATE(3306), + [sym__expression_parenthesized] = STATE(3306), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3306), [sym_comment] = STATE(227), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63823,32 +64137,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63866,41 +64180,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(2863), + [aux_sym__repeat_newline] = STATE(200), + [sym_ctrl_if_parenthesized] = STATE(3389), + [sym_block] = STATE(3265), + [sym__expression_parenthesized] = STATE(3265), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3265), [sym_comment] = STATE(228), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63916,32 +64230,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(1006), [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 +64273,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(2863), + [aux_sym__repeat_newline] = STATE(235), + [sym_ctrl_if_parenthesized] = STATE(3381), + [sym_block] = STATE(3388), + [sym__expression_parenthesized] = STATE(3388), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3388), [sym_comment] = STATE(229), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64009,32 +64323,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64052,41 +64366,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), + [sym_cmd_identifier] = STATE(2863), [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_ctrl_if_parenthesized] = STATE(3378), + [sym_block] = STATE(3278), + [sym__expression_parenthesized] = STATE(3278), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3278), [sym_comment] = STATE(230), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64102,32 +64416,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64145,41 +64459,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(2863), + [aux_sym__repeat_newline] = STATE(237), + [sym_ctrl_if_parenthesized] = STATE(3378), + [sym_block] = STATE(3278), + [sym__expression_parenthesized] = STATE(3278), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3278), [sym_comment] = STATE(231), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64195,32 +64509,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64238,41 +64552,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(2863), + [aux_sym__repeat_newline] = STATE(1405), + [sym_ctrl_if_parenthesized] = STATE(3318), + [sym_block] = STATE(3340), + [sym__expression_parenthesized] = STATE(3340), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3340), [sym_comment] = STATE(232), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64288,32 +64602,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64331,41 +64645,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), - [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_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(238), + [sym_ctrl_if_parenthesized] = STATE(3318), + [sym_block] = STATE(3340), + [sym__expression_parenthesized] = STATE(3340), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3340), [sym_comment] = STATE(233), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64381,32 +64695,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64424,41 +64738,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(2863), + [aux_sym__repeat_newline] = STATE(1405), + [sym_ctrl_if_parenthesized] = STATE(3268), + [sym_block] = STATE(3275), + [sym__expression_parenthesized] = STATE(3275), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3275), [sym_comment] = STATE(234), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64474,32 +64788,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64517,41 +64831,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), - [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_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(1405), + [sym_ctrl_if_parenthesized] = STATE(3279), + [sym_block] = STATE(3282), + [sym__expression_parenthesized] = STATE(3282), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3282), [sym_comment] = STATE(235), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64567,32 +64881,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64610,41 +64924,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(2863), + [aux_sym__repeat_newline] = STATE(239), + [sym_ctrl_if_parenthesized] = STATE(3279), + [sym_block] = STATE(3282), + [sym__expression_parenthesized] = STATE(3282), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3282), [sym_comment] = STATE(236), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64660,32 +64974,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64703,41 +65017,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), + [sym_cmd_identifier] = STATE(2863), [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_ctrl_if_parenthesized] = STATE(3314), + [sym_block] = STATE(3254), + [sym__expression_parenthesized] = STATE(3254), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3254), [sym_comment] = STATE(237), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64753,32 +65067,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64796,41 +65110,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(2863), + [aux_sym__repeat_newline] = STATE(1405), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_block] = STATE(3277), + [sym__expression_parenthesized] = STATE(3277), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3277), [sym_comment] = STATE(238), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64846,32 +65160,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64889,41 +65203,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), + [sym_cmd_identifier] = STATE(2863), [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_ctrl_if_parenthesized] = STATE(3317), + [sym_block] = STATE(3319), + [sym__expression_parenthesized] = STATE(3319), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3319), [sym_comment] = STATE(239), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64939,32 +65253,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64982,41 +65296,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(2863), + [aux_sym__repeat_newline] = STATE(195), + [sym_ctrl_if_parenthesized] = STATE(3352), + [sym_block] = STATE(3371), + [sym__expression_parenthesized] = STATE(3371), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3371), [sym_comment] = STATE(240), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65032,32 +65346,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(1006), [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 +65389,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(2863), + [aux_sym__repeat_newline] = STATE(244), + [sym_ctrl_if_parenthesized] = STATE(3270), + [sym_block] = STATE(3272), + [sym__expression_parenthesized] = STATE(3272), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3272), [sym_comment] = STATE(241), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65125,32 +65439,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(1016), [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(1006), [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), @@ -65168,41 +65482,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(2863), + [aux_sym__repeat_newline] = STATE(247), + [sym_ctrl_if_parenthesized] = STATE(3346), + [sym_block] = STATE(3349), + [sym__expression_parenthesized] = STATE(3349), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3349), [sym_comment] = STATE(242), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65218,32 +65532,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(1016), [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(1006), [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), @@ -65261,41 +65575,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(2863), + [aux_sym__repeat_newline] = STATE(249), + [sym_ctrl_if_parenthesized] = STATE(3352), + [sym_block] = STATE(3371), + [sym__expression_parenthesized] = STATE(3371), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3371), [sym_comment] = STATE(243), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65311,32 +65625,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(1016), [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(1006), [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), @@ -65354,41 +65668,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(2863), + [aux_sym__repeat_newline] = STATE(1405), + [sym_ctrl_if_parenthesized] = STATE(3389), + [sym_block] = STATE(3265), + [sym__expression_parenthesized] = STATE(3265), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3265), [sym_comment] = STATE(244), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65404,32 +65718,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(1016), [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(1006), [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), @@ -65447,41 +65761,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(2863), + [aux_sym__repeat_newline] = STATE(251), + [sym_ctrl_if_parenthesized] = STATE(3389), + [sym_block] = STATE(3265), + [sym__expression_parenthesized] = STATE(3265), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3265), [sym_comment] = STATE(245), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65497,32 +65811,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(1016), [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(1006), [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), @@ -65540,41 +65854,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(2863), + [aux_sym__repeat_newline] = STATE(253), + [sym_ctrl_if_parenthesized] = STATE(3372), + [sym_block] = STATE(3373), + [sym__expression_parenthesized] = STATE(3373), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3373), [sym_comment] = STATE(246), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65590,32 +65904,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(1016), [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(1006), [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), @@ -65633,41 +65947,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), + [sym_cmd_identifier] = STATE(2863), [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_ctrl_if_parenthesized] = STATE(3257), + [sym_block] = STATE(3258), + [sym__expression_parenthesized] = STATE(3258), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3258), [sym_comment] = STATE(247), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65683,32 +65997,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(1016), [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(1006), [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), @@ -65726,41 +66040,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(2863), + [aux_sym__repeat_newline] = STATE(255), + [sym_ctrl_if_parenthesized] = STATE(3257), + [sym_block] = STATE(3258), + [sym__expression_parenthesized] = STATE(3258), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3258), [sym_comment] = STATE(248), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65776,32 +66090,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(1016), [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(1006), [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), @@ -65819,41 +66133,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), + [sym_cmd_identifier] = STATE(2863), [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_ctrl_if_parenthesized] = STATE(3261), + [sym_block] = STATE(3262), + [sym__expression_parenthesized] = STATE(3262), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3262), [sym_comment] = STATE(249), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65869,32 +66183,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(1016), [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(1006), [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), @@ -65912,41 +66226,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(250)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__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_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(257), + [sym_ctrl_if_parenthesized] = STATE(3261), + [sym_block] = STATE(3262), + [sym__expression_parenthesized] = STATE(3262), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3262), [sym_comment] = STATE(250), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65962,32 +66276,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(1016), [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(1006), [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), @@ -66005,41 +66319,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(251)] = { - [sym_cmd_identifier] = STATE(2905), - [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_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(1405), + [sym_ctrl_if_parenthesized] = STATE(3295), + [sym_block] = STATE(3306), + [sym__expression_parenthesized] = STATE(3306), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3306), [sym_comment] = STATE(251), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66055,32 +66369,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(1016), [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(1006), [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), @@ -66098,41 +66412,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(252)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3289), - [sym_block] = STATE(3291), - [sym__expression_parenthesized] = STATE(3291), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__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_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(259), + [sym_ctrl_if_parenthesized] = STATE(3295), + [sym_block] = STATE(3306), + [sym__expression_parenthesized] = STATE(3306), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3306), [sym_comment] = STATE(252), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66148,32 +66462,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(1016), [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(1006), [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), @@ -66191,41 +66505,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(253)] = { - [sym_cmd_identifier] = STATE(2905), + [sym_cmd_identifier] = STATE(2863), [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_ctrl_if_parenthesized] = STATE(3381), + [sym_block] = STATE(3388), + [sym__expression_parenthesized] = STATE(3388), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3388), [sym_comment] = STATE(253), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66241,32 +66555,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(1016), [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(1006), [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), @@ -66284,41 +66598,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(254)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3297), - [sym_block] = STATE(3299), - [sym__expression_parenthesized] = STATE(3299), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__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_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(260), + [sym_ctrl_if_parenthesized] = STATE(3381), + [sym_block] = STATE(3388), + [sym__expression_parenthesized] = STATE(3388), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3388), [sym_comment] = STATE(254), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66334,32 +66648,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(1016), [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(1006), [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), @@ -66377,41 +66691,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(255)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(257), - [sym_ctrl_if_parenthesized] = STATE(3354), - [sym_block] = STATE(3217), - [sym__expression_parenthesized] = STATE(3217), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__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_cmd_identifier] = STATE(2863), + [aux_sym__repeat_newline] = STATE(1405), + [sym_ctrl_if_parenthesized] = STATE(3378), + [sym_block] = STATE(3278), + [sym__expression_parenthesized] = STATE(3278), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3278), [sym_comment] = STATE(255), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66427,32 +66741,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(1016), [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(1006), [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), @@ -66470,41 +66784,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(2863), + [aux_sym__repeat_newline] = STATE(262), + [sym_ctrl_if_parenthesized] = STATE(3378), + [sym_block] = STATE(3278), + [sym__expression_parenthesized] = STATE(3278), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3278), [sym_comment] = STATE(256), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66520,32 +66834,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(1016), [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(1006), [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), @@ -66563,41 +66877,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), + [sym_cmd_identifier] = STATE(2863), [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_ctrl_if_parenthesized] = STATE(3318), + [sym_block] = STATE(3340), + [sym__expression_parenthesized] = STATE(3340), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3340), [sym_comment] = STATE(257), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66613,32 +66927,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(1016), [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(1006), [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), @@ -66656,41 +66970,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(258)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(264), - [sym_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(2863), + [aux_sym__repeat_newline] = STATE(263), + [sym_ctrl_if_parenthesized] = STATE(3318), + [sym_block] = STATE(3340), + [sym__expression_parenthesized] = STATE(3340), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3340), [sym_comment] = STATE(258), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66706,32 +67020,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(1016), [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(1006), [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), @@ -66749,41 +67063,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(2863), + [aux_sym__repeat_newline] = STATE(1405), + [sym_ctrl_if_parenthesized] = STATE(3268), + [sym_block] = STATE(3275), + [sym__expression_parenthesized] = STATE(3275), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3275), [sym_comment] = STATE(259), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66799,32 +67113,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(1016), [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(1006), [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), @@ -66842,41 +67156,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), + [sym_cmd_identifier] = STATE(2863), [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_ctrl_if_parenthesized] = STATE(3279), + [sym_block] = STATE(3282), + [sym__expression_parenthesized] = STATE(3282), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3282), [sym_comment] = STATE(260), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66892,32 +67206,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(1016), [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(1006), [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), @@ -66935,41 +67249,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(2863), + [aux_sym__repeat_newline] = STATE(264), + [sym_ctrl_if_parenthesized] = STATE(3279), + [sym_block] = STATE(3282), + [sym__expression_parenthesized] = STATE(3282), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3282), [sym_comment] = STATE(261), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66985,32 +67299,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(1016), [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(1006), [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), @@ -67028,41 +67342,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), + [sym_cmd_identifier] = STATE(2863), [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_ctrl_if_parenthesized] = STATE(3314), + [sym_block] = STATE(3254), + [sym__expression_parenthesized] = STATE(3254), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3254), [sym_comment] = STATE(262), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67078,32 +67392,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(1016), [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(1006), [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), @@ -67121,41 +67435,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(2863), + [aux_sym__repeat_newline] = STATE(1405), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_block] = STATE(3277), + [sym__expression_parenthesized] = STATE(3277), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3277), [sym_comment] = STATE(263), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67171,32 +67485,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(1016), [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(1006), [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), @@ -67214,41 +67528,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), + [sym_cmd_identifier] = STATE(2863), [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_ctrl_if_parenthesized] = STATE(3317), + [sym_block] = STATE(3319), + [sym__expression_parenthesized] = STATE(3319), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3319), [sym_comment] = STATE(264), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67264,32 +67578,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(1016), [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(1006), [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), @@ -67307,41 +67621,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(2863), + [aux_sym__repeat_newline] = STATE(1405), + [sym_ctrl_if_parenthesized] = STATE(3389), + [sym_block] = STATE(3265), + [sym__expression_parenthesized] = STATE(3265), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3265), [sym_comment] = STATE(265), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67363,26 +67677,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(1006), [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), @@ -67400,41 +67714,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), + [sym_cmd_identifier] = STATE(2863), [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_ctrl_if_parenthesized] = STATE(3381), + [sym_block] = STATE(3388), + [sym__expression_parenthesized] = STATE(3388), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2134), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3388), [sym_comment] = STATE(266), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67450,32 +67764,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(1272), [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(1006), [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67541,9 +67855,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), @@ -67576,17 +67890,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(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), }, [STATE(268)] = { [sym_comment] = STATE(268), - [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -67636,6 +67949,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), @@ -67668,10 +67982,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(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), @@ -67725,9 +68039,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), @@ -67760,16 +68074,17 @@ 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), }, [STATE(270)] = { [sym_comment] = STATE(270), + [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -67817,7 +68132,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), @@ -67852,10 +68166,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(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), @@ -67909,9 +68223,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), @@ -67944,10 +68258,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(1302), [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(1304), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), @@ -68036,471 +68350,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1296), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1298), + [aux_sym__immediate_decimal_token1] = ACTIONS(1306), + [aux_sym__immediate_decimal_token5] = ACTIONS(1308), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, [STATE(273)] = { [sym_comment] = STATE(273), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1300), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(274)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(274), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(275)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__expression_parenthesized] = STATE(2260), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3232), - [sym_comment] = STATE(275), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(276)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(307), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(276), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1302), - [aux_sym__val_number_decimal_token2] = ACTIONS(1304), - [aux_sym__val_number_decimal_token3] = ACTIONS(1306), - [aux_sym__val_number_decimal_token4] = ACTIONS(1306), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(277)] = { - [sym_comment] = STATE(277), - [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), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -68550,6 +68409,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,14 +68444,286 @@ 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(1292), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(279)] = { - [sym_comment] = STATE(279), + [STATE(274)] = { + [sym_comment] = STATE(274), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_RPAREN] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(1310), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(275)] = { + [sym_comment] = STATE(275), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(1312), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(276)] = { + [sym_comment] = STATE(276), + [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(1314), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1316), + [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(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -68641,7 +68773,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), @@ -68676,47 +68807,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(1278), + [aux_sym__immediate_decimal_token1] = ACTIONS(1318), + [aux_sym__immediate_decimal_token5] = ACTIONS(1320), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(280)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3079), - [sym_comment] = STATE(280), - [aux_sym_pipe_element_repeat2] = STATE(1392), + [STATE(278)] = { + [sym_cmd_identifier] = STATE(2863), + [sym_ctrl_if] = STATE(3247), + [sym_block] = STATE(3249), + [sym__expression] = STATE(3249), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2219), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(297), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3249), + [sym_comment] = STATE(278), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(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(1006), + [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(1322), + [aux_sym__val_number_decimal_token2] = ACTIONS(1324), + [aux_sym__val_number_decimal_token3] = ACTIONS(1326), + [aux_sym__val_number_decimal_token4] = ACTIONS(1326), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(279)] = { + [sym_cmd_identifier] = STATE(2876), + [sym__expression_parenthesized] = STATE(2258), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(143), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3266), + [sym_comment] = STATE(279), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1392), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -68745,17 +68968,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(1006), [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_decimal_token1] = ACTIONS(1328), + [aux_sym__val_number_decimal_token2] = ACTIONS(1330), + [aux_sym__val_number_decimal_token3] = ACTIONS(1332), + [aux_sym__val_number_decimal_token4] = ACTIONS(1332), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68768,46 +68991,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(281)] = { - [sym_cmd_identifier] = STATE(2895), - [sym__expression] = STATE(2262), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3334), - [sym_comment] = STATE(281), - [aux_sym_pipe_element_repeat2] = STATE(1392), + [STATE(280)] = { + [sym_cmd_identifier] = STATE(2923), + [sym__expression] = STATE(2261), + [sym_expr_unary] = STATE(1321), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1321), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(896), + [sym_val_range] = STATE(1321), + [sym__value] = STATE(1321), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1318), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(117), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3305), + [sym_comment] = STATE(280), + [aux_sym_pipe_element_repeat2] = STATE(1391), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -68836,7 +69059,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(1026), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -68863,133 +69086,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(282)] = { - [sym_comment] = STATE(282), - [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(1298), - [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(281)] = { + [sym_cmd_identifier] = STATE(2748), + [sym__expression] = STATE(2255), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(128), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3151), + [sym_comment] = STATE(281), + [aux_sym_pipe_element_repeat2] = STATE(1391), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69018,17 +69150,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69041,137 +69173,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(284)] = { - [sym_comment] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1322), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(285)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(285), + [STATE(282)] = { + [sym_cmd_identifier] = STATE(2876), + [sym__expression_parenthesized] = STATE(2258), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3266), + [sym_comment] = STATE(282), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1392), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69186,31 +69227,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(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(1006), [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(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(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), @@ -69223,137 +69264,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(209), + [anon_sym_CARET] = ACTIONS(343), [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), + [STATE(283)] = { + [sym_comment] = STATE(283), + [ts_builtin_sym_end] = ACTIONS(765), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(1334), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(287)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3079), - [sym_comment] = STATE(287), - [aux_sym_pipe_element_repeat2] = STATE(1392), + [STATE(284)] = { + [sym_cmd_identifier] = STATE(2748), + [sym__expression] = STATE(2255), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3151), + [sym_comment] = STATE(284), + [aux_sym_pipe_element_repeat2] = STATE(1391), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69382,17 +69423,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(1006), [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), @@ -69409,42 +69450,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(288)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(288), + [STATE(285)] = { + [sym_cmd_identifier] = STATE(2863), + [sym_ctrl_if] = STATE(3247), + [sym_block] = STATE(3249), + [sym__expression] = STATE(3249), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2219), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(296), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3249), + [sym_comment] = STATE(285), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69459,31 +69500,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(1032), + [anon_sym_if] = ACTIONS(457), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [anon_sym_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(1006), [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), @@ -69500,42 +69541,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(289)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__expression_parenthesized] = STATE(2260), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3232), - [sym_comment] = STATE(289), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), + [STATE(286)] = { + [sym_comment] = STATE(286), + [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(1300), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(287)] = { + [sym_cmd_identifier] = STATE(3042), + [sym_ctrl_if] = STATE(3307), + [sym_block] = STATE(3308), + [sym__expression] = STATE(3308), + [sym_expr_unary] = STATE(1321), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1321), + [sym__expr_binary_expression] = STATE(2213), + [sym_expr_parenthesized] = STATE(896), + [sym_val_range] = STATE(1321), + [sym__value] = STATE(1321), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1318), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(309), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_command] = STATE(3308), + [sym_comment] = STATE(287), + [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(1336), + [anon_sym_false] = ACTIONS(1336), + [anon_sym_null] = ACTIONS(1338), + [aux_sym_cmd_identifier_token3] = ACTIONS(1340), + [aux_sym_cmd_identifier_token4] = ACTIONS(1340), + [aux_sym_cmd_identifier_token5] = ACTIONS(1340), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(1342), + [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(1344), + [aux_sym__val_number_decimal_token2] = ACTIONS(1346), + [aux_sym__val_number_decimal_token3] = ACTIONS(1348), + [aux_sym__val_number_decimal_token4] = ACTIONS(1348), + [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(288)] = { + [sym_cmd_identifier] = STATE(2876), + [sym__expression_parenthesized] = STATE(2258), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2114), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(138), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4458), + [sym__command_parenthesized] = STATE(3266), + [sym_comment] = STATE(288), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1392), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69564,17 +69787,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(1006), [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_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1022), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69591,42 +69814,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(289)] = { + [sym_comment] = STATE(289), + [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(1304), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_POUND] = ACTIONS(103), + }, [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(2748), + [sym__expression] = STATE(2255), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(143), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3151), [sym_comment] = STATE(290), - [aux_sym_pipe_element_repeat2] = STATE(1392), + [aux_sym_pipe_element_repeat2] = STATE(1391), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69655,17 +69969,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1328), + [aux_sym__val_number_decimal_token2] = ACTIONS(1330), + [aux_sym__val_number_decimal_token3] = ACTIONS(1332), + [aux_sym__val_number_decimal_token4] = ACTIONS(1332), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69683,132 +69997,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(291)] = { - [sym_cmd_identifier] = STATE(2929), - [sym_ctrl_if] = STATE(3301), - [sym_block] = STATE(3302), - [sym__expression] = STATE(3302), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_command] = STATE(3302), + [sym_cmd_identifier] = STATE(2863), + [sym_ctrl_if] = STATE(3247), + [sym_block] = STATE(3249), + [sym__expression] = STATE(3249), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2219), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(317), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3249), [sym_comment] = STATE(291), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(39), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(1326), - [anon_sym_false] = ACTIONS(1326), - [anon_sym_null] = ACTIONS(1328), - [aux_sym_cmd_identifier_token3] = ACTIONS(1330), - [aux_sym_cmd_identifier_token4] = ACTIONS(1330), - [aux_sym_cmd_identifier_token5] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_DOT_DOT] = ACTIONS(69), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(1334), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1338), - [aux_sym__val_number_decimal_token4] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), + [anon_sym_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(1350), + [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(1006), + [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(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1278), + [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(211), }, [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(2748), + [sym__expression] = STATE(2255), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(138), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_env_var] = STATE(4803), + [sym_command] = STATE(3151), [sym_comment] = STATE(292), - [aux_sym_pipe_element_repeat2] = STATE(1392), + [aux_sym_pipe_element_repeat2] = STATE(1391), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69837,17 +70151,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(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1022), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69865,188 +70179,459 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(293)] = { + [sym_cmd_identifier] = STATE(2863), + [sym_ctrl_if] = STATE(3247), + [sym_block] = STATE(3249), + [sym__expression] = STATE(3249), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2219), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_command] = STATE(3249), [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(1028), + [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(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(791), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), [anon_sym_POUND] = ACTIONS(103), }, [STATE(295)] = { [sym_comment] = STATE(295), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(1352), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(296)] = { + [sym_comment] = STATE(296), + [anon_sym_in] = ACTIONS(858), + [anon_sym_STAR_STAR] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_mod] = ACTIONS(968), + [anon_sym_SLASH_SLASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_bit_DASHshl] = ACTIONS(968), + [anon_sym_bit_DASHshr] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(968), + [anon_sym_BANG_TILDE] = ACTIONS(968), + [anon_sym_like] = ACTIONS(968), + [anon_sym_not_DASHlike] = ACTIONS(968), + [anon_sym_bit_DASHand] = ACTIONS(968), + [anon_sym_bit_DASHxor] = ACTIONS(968), + [anon_sym_bit_DASHor] = ACTIONS(968), + [anon_sym_and] = ACTIONS(968), + [anon_sym_xor] = ACTIONS(968), + [anon_sym_or] = ACTIONS(968), + [anon_sym_in2] = ACTIONS(968), + [anon_sym_not_DASHin] = ACTIONS(968), + [anon_sym_has] = ACTIONS(968), + [anon_sym_not_DASHhas] = ACTIONS(968), + [anon_sym_starts_DASHwith] = ACTIONS(968), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(968), + [anon_sym_ends_DASHwith] = ACTIONS(968), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_GT_EQ] = ACTIONS(968), + [aux_sym_cmd_identifier_token6] = ACTIONS(972), + [sym__newline] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(858), + [anon_sym_err_GT_PIPE] = ACTIONS(858), + [anon_sym_out_GT_PIPE] = ACTIONS(858), + [anon_sym_e_GT_PIPE] = ACTIONS(858), + [anon_sym_o_GT_PIPE] = ACTIONS(858), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), + [anon_sym_RPAREN] = ACTIONS(858), + [anon_sym_GT2] = ACTIONS(858), + [anon_sym_DASH2] = ACTIONS(858), + [anon_sym_STAR2] = ACTIONS(858), + [anon_sym_and2] = ACTIONS(858), + [anon_sym_xor2] = ACTIONS(858), + [anon_sym_or2] = ACTIONS(858), + [anon_sym_not_DASHin2] = ACTIONS(858), + [anon_sym_has2] = ACTIONS(858), + [anon_sym_not_DASHhas2] = ACTIONS(858), + [anon_sym_starts_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), + [anon_sym_ends_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), + [anon_sym_EQ_EQ2] = ACTIONS(858), + [anon_sym_BANG_EQ2] = ACTIONS(858), + [anon_sym_LT2] = ACTIONS(858), + [anon_sym_LT_EQ2] = ACTIONS(858), + [anon_sym_GT_EQ2] = ACTIONS(858), + [anon_sym_EQ_TILDE2] = ACTIONS(858), + [anon_sym_BANG_TILDE2] = ACTIONS(858), + [anon_sym_like2] = ACTIONS(858), + [anon_sym_not_DASHlike2] = ACTIONS(858), + [anon_sym_STAR_STAR2] = ACTIONS(858), + [anon_sym_PLUS_PLUS2] = ACTIONS(858), + [anon_sym_SLASH2] = ACTIONS(858), + [anon_sym_mod2] = ACTIONS(858), + [anon_sym_SLASH_SLASH2] = ACTIONS(858), + [anon_sym_PLUS2] = ACTIONS(858), + [anon_sym_bit_DASHshl2] = ACTIONS(858), + [anon_sym_bit_DASHshr2] = ACTIONS(858), + [anon_sym_bit_DASHand2] = ACTIONS(858), + [anon_sym_bit_DASHxor2] = ACTIONS(858), + [anon_sym_bit_DASHor2] = ACTIONS(858), + [anon_sym_DOT_DOT2] = ACTIONS(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(1354), + [sym_duration_unit] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(297)] = { + [sym_comment] = STATE(297), + [anon_sym_in] = ACTIONS(858), + [anon_sym_STAR_STAR] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_mod] = ACTIONS(968), + [anon_sym_SLASH_SLASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_bit_DASHshl] = ACTIONS(968), + [anon_sym_bit_DASHshr] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(968), + [anon_sym_BANG_TILDE] = ACTIONS(968), + [anon_sym_like] = ACTIONS(968), + [anon_sym_not_DASHlike] = ACTIONS(968), + [anon_sym_bit_DASHand] = ACTIONS(968), + [anon_sym_bit_DASHxor] = ACTIONS(968), + [anon_sym_bit_DASHor] = ACTIONS(968), + [anon_sym_and] = ACTIONS(968), + [anon_sym_xor] = ACTIONS(968), + [anon_sym_or] = ACTIONS(968), + [anon_sym_in2] = ACTIONS(968), + [anon_sym_not_DASHin] = ACTIONS(968), + [anon_sym_has] = ACTIONS(968), + [anon_sym_not_DASHhas] = ACTIONS(968), + [anon_sym_starts_DASHwith] = ACTIONS(968), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(968), + [anon_sym_ends_DASHwith] = ACTIONS(968), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_GT_EQ] = ACTIONS(968), + [aux_sym_cmd_identifier_token6] = ACTIONS(972), + [sym__newline] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(858), + [anon_sym_err_GT_PIPE] = ACTIONS(858), + [anon_sym_out_GT_PIPE] = ACTIONS(858), + [anon_sym_e_GT_PIPE] = ACTIONS(858), + [anon_sym_o_GT_PIPE] = ACTIONS(858), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), + [anon_sym_GT2] = ACTIONS(858), + [anon_sym_DASH2] = ACTIONS(858), + [anon_sym_RBRACE] = ACTIONS(858), + [anon_sym_STAR2] = ACTIONS(858), + [anon_sym_and2] = ACTIONS(858), + [anon_sym_xor2] = ACTIONS(858), + [anon_sym_or2] = ACTIONS(858), + [anon_sym_not_DASHin2] = ACTIONS(858), + [anon_sym_has2] = ACTIONS(858), + [anon_sym_not_DASHhas2] = ACTIONS(858), + [anon_sym_starts_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), + [anon_sym_ends_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), + [anon_sym_EQ_EQ2] = ACTIONS(858), + [anon_sym_BANG_EQ2] = ACTIONS(858), + [anon_sym_LT2] = ACTIONS(858), + [anon_sym_LT_EQ2] = ACTIONS(858), + [anon_sym_GT_EQ2] = ACTIONS(858), + [anon_sym_EQ_TILDE2] = ACTIONS(858), + [anon_sym_BANG_TILDE2] = ACTIONS(858), + [anon_sym_like2] = ACTIONS(858), + [anon_sym_not_DASHlike2] = ACTIONS(858), + [anon_sym_STAR_STAR2] = ACTIONS(858), + [anon_sym_PLUS_PLUS2] = ACTIONS(858), + [anon_sym_SLASH2] = ACTIONS(858), + [anon_sym_mod2] = ACTIONS(858), + [anon_sym_SLASH_SLASH2] = ACTIONS(858), + [anon_sym_PLUS2] = ACTIONS(858), + [anon_sym_bit_DASHshl2] = ACTIONS(858), + [anon_sym_bit_DASHshr2] = ACTIONS(858), + [anon_sym_bit_DASHand2] = ACTIONS(858), + [anon_sym_bit_DASHxor2] = ACTIONS(858), + [anon_sym_bit_DASHor2] = ACTIONS(858), + [anon_sym_DOT_DOT2] = ACTIONS(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(1358), + [sym_duration_unit] = ACTIONS(1360), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(298)] = { + [sym_comment] = STATE(298), + [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -70130,13 +70715,642 @@ 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(1310), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(296)] = { - [sym_comment] = STATE(296), + [STATE(299)] = { + [sym_comment] = STATE(299), + [ts_builtin_sym_end] = ACTIONS(765), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(300)] = { + [sym_comment] = STATE(300), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(301)] = { + [sym_comment] = STATE(301), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_RPAREN] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(302)] = { + [sym_comment] = STATE(302), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(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(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(305)] = { + [sym_comment] = STATE(305), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(306)] = { + [sym_comment] = STATE(306), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -70217,197 +71431,106 @@ 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(1362), [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(1364), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(297)] = { - [sym_comment] = STATE(297), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(298)] = { - [sym_comment] = STATE(298), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), + [STATE(307)] = { + [sym_comment] = STATE(307), + [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(1366), + [aux_sym__immediate_decimal_token5] = ACTIONS(1368), + [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(749), + [STATE(308)] = { + [sym_comment] = STATE(308), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -70491,372 +71614,103 @@ 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(1316), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(300)] = { - [sym_comment] = STATE(300), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(301)] = { - [sym_comment] = STATE(301), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(302)] = { - [sym_comment] = STATE(302), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(303)] = { - [sym_comment] = STATE(303), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), + [STATE(309)] = { + [sym_comment] = STATE(309), + [ts_builtin_sym_end] = ACTIONS(884), + [anon_sym_in] = ACTIONS(858), + [anon_sym_STAR_STAR] = ACTIONS(886), + [anon_sym_PLUS_PLUS] = ACTIONS(886), + [anon_sym_STAR] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(888), + [anon_sym_mod] = ACTIONS(886), + [anon_sym_SLASH_SLASH] = ACTIONS(886), + [anon_sym_PLUS] = ACTIONS(888), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_bit_DASHshl] = ACTIONS(886), + [anon_sym_bit_DASHshr] = ACTIONS(886), + [anon_sym_EQ_TILDE] = ACTIONS(886), + [anon_sym_BANG_TILDE] = ACTIONS(886), + [anon_sym_like] = ACTIONS(886), + [anon_sym_not_DASHlike] = ACTIONS(886), + [anon_sym_bit_DASHand] = ACTIONS(886), + [anon_sym_bit_DASHxor] = ACTIONS(886), + [anon_sym_bit_DASHor] = ACTIONS(886), + [anon_sym_and] = ACTIONS(886), + [anon_sym_xor] = ACTIONS(886), + [anon_sym_or] = ACTIONS(886), + [anon_sym_in2] = ACTIONS(886), + [anon_sym_not_DASHin] = ACTIONS(886), + [anon_sym_has] = ACTIONS(886), + [anon_sym_not_DASHhas] = ACTIONS(886), + [anon_sym_starts_DASHwith] = ACTIONS(886), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(886), + [anon_sym_ends_DASHwith] = ACTIONS(886), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(886), + [anon_sym_EQ_EQ] = ACTIONS(886), + [anon_sym_BANG_EQ] = ACTIONS(886), + [anon_sym_LT] = ACTIONS(888), + [anon_sym_LT_EQ] = ACTIONS(886), + [anon_sym_GT] = ACTIONS(888), + [anon_sym_GT_EQ] = ACTIONS(886), + [aux_sym_cmd_identifier_token6] = ACTIONS(890), + [sym__newline] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(858), + [anon_sym_err_GT_PIPE] = ACTIONS(858), + [anon_sym_out_GT_PIPE] = ACTIONS(858), + [anon_sym_e_GT_PIPE] = ACTIONS(858), + [anon_sym_o_GT_PIPE] = ACTIONS(858), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), + [anon_sym_GT2] = ACTIONS(858), + [anon_sym_DASH2] = ACTIONS(858), + [anon_sym_STAR2] = ACTIONS(858), + [anon_sym_and2] = ACTIONS(858), + [anon_sym_xor2] = ACTIONS(858), + [anon_sym_or2] = ACTIONS(858), + [anon_sym_not_DASHin2] = ACTIONS(858), + [anon_sym_has2] = ACTIONS(858), + [anon_sym_not_DASHhas2] = ACTIONS(858), + [anon_sym_starts_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), + [anon_sym_ends_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), + [anon_sym_EQ_EQ2] = ACTIONS(858), + [anon_sym_BANG_EQ2] = ACTIONS(858), + [anon_sym_LT2] = ACTIONS(858), + [anon_sym_LT_EQ2] = ACTIONS(858), + [anon_sym_GT_EQ2] = ACTIONS(858), + [anon_sym_EQ_TILDE2] = ACTIONS(858), + [anon_sym_BANG_TILDE2] = ACTIONS(858), + [anon_sym_like2] = ACTIONS(858), + [anon_sym_not_DASHlike2] = ACTIONS(858), + [anon_sym_STAR_STAR2] = ACTIONS(858), + [anon_sym_PLUS_PLUS2] = ACTIONS(858), + [anon_sym_SLASH2] = ACTIONS(858), + [anon_sym_mod2] = ACTIONS(858), + [anon_sym_SLASH_SLASH2] = ACTIONS(858), + [anon_sym_PLUS2] = ACTIONS(858), + [anon_sym_bit_DASHshl2] = ACTIONS(858), + [anon_sym_bit_DASHshr2] = ACTIONS(858), + [anon_sym_bit_DASHand2] = ACTIONS(858), + [anon_sym_bit_DASHxor2] = ACTIONS(858), + [anon_sym_bit_DASHor2] = ACTIONS(858), + [anon_sym_DOT_DOT2] = ACTIONS(892), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(894), + [anon_sym_DOT_DOT_LT2] = ACTIONS(894), + [sym_filesize_unit] = ACTIONS(1370), + [sym_duration_unit] = ACTIONS(1372), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(304)] = { - [sym_comment] = STATE(304), + [STATE(310)] = { + [sym_comment] = STATE(310), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -70894,7 +71748,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), @@ -70904,7 +71757,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), @@ -70941,282 +71793,369 @@ 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(1364), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(305)] = { - [sym_comment] = STATE(305), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), + [STATE(311)] = { + [sym_comment] = STATE(311), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(1374), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), [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), + [STATE(312)] = { + [sym_comment] = STATE(312), + [anon_sym_in] = ACTIONS(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), [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), + [STATE(313)] = { + [sym_comment] = STATE(313), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(308)] = { - [sym_comment] = STATE(308), + [STATE(314)] = { + [sym_comment] = STATE(314), + [anon_sym_in] = ACTIONS(858), + [anon_sym_STAR_STAR] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_mod] = ACTIONS(968), + [anon_sym_SLASH_SLASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_bit_DASHshl] = ACTIONS(968), + [anon_sym_bit_DASHshr] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(968), + [anon_sym_BANG_TILDE] = ACTIONS(968), + [anon_sym_like] = ACTIONS(968), + [anon_sym_not_DASHlike] = ACTIONS(968), + [anon_sym_bit_DASHand] = ACTIONS(968), + [anon_sym_bit_DASHxor] = ACTIONS(968), + [anon_sym_bit_DASHor] = ACTIONS(968), + [anon_sym_and] = ACTIONS(968), + [anon_sym_xor] = ACTIONS(968), + [anon_sym_or] = ACTIONS(968), + [anon_sym_in2] = ACTIONS(968), + [anon_sym_not_DASHin] = ACTIONS(968), + [anon_sym_has] = ACTIONS(968), + [anon_sym_not_DASHhas] = ACTIONS(968), + [anon_sym_starts_DASHwith] = ACTIONS(968), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(968), + [anon_sym_ends_DASHwith] = ACTIONS(968), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_GT_EQ] = ACTIONS(968), + [aux_sym_cmd_identifier_token6] = ACTIONS(972), + [sym__newline] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(858), + [anon_sym_err_GT_PIPE] = ACTIONS(858), + [anon_sym_out_GT_PIPE] = ACTIONS(858), + [anon_sym_e_GT_PIPE] = ACTIONS(858), + [anon_sym_o_GT_PIPE] = ACTIONS(858), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), + [anon_sym_GT2] = ACTIONS(858), + [anon_sym_DASH2] = ACTIONS(858), + [anon_sym_STAR2] = ACTIONS(858), + [anon_sym_and2] = ACTIONS(858), + [anon_sym_xor2] = ACTIONS(858), + [anon_sym_or2] = ACTIONS(858), + [anon_sym_not_DASHin2] = ACTIONS(858), + [anon_sym_has2] = ACTIONS(858), + [anon_sym_not_DASHhas2] = ACTIONS(858), + [anon_sym_starts_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), + [anon_sym_ends_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), + [anon_sym_EQ_EQ2] = ACTIONS(858), + [anon_sym_BANG_EQ2] = ACTIONS(858), + [anon_sym_LT2] = ACTIONS(858), + [anon_sym_LT_EQ2] = ACTIONS(858), + [anon_sym_GT_EQ2] = ACTIONS(858), + [anon_sym_EQ_TILDE2] = ACTIONS(858), + [anon_sym_BANG_TILDE2] = ACTIONS(858), + [anon_sym_like2] = ACTIONS(858), + [anon_sym_not_DASHlike2] = ACTIONS(858), + [anon_sym_STAR_STAR2] = ACTIONS(858), + [anon_sym_PLUS_PLUS2] = ACTIONS(858), + [anon_sym_SLASH2] = ACTIONS(858), + [anon_sym_mod2] = ACTIONS(858), + [anon_sym_SLASH_SLASH2] = ACTIONS(858), + [anon_sym_PLUS2] = ACTIONS(858), + [anon_sym_bit_DASHshl2] = ACTIONS(858), + [anon_sym_bit_DASHshr2] = ACTIONS(858), + [anon_sym_bit_DASHand2] = ACTIONS(858), + [anon_sym_bit_DASHxor2] = ACTIONS(858), + [anon_sym_bit_DASHor2] = ACTIONS(858), + [anon_sym_DOT_DOT2] = ACTIONS(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(1376), + [sym_duration_unit] = ACTIONS(1378), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(315)] = { + [sym_comment] = STATE(315), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -71254,6 +72193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(741), [aux_sym_cmd_identifier_token6] = ACTIONS(739), [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), [anon_sym_PIPE] = ACTIONS(739), [anon_sym_err_GT_PIPE] = ACTIONS(739), [anon_sym_out_GT_PIPE] = ACTIONS(739), @@ -71297,551 +72237,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1358), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1360), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(309)] = { - [sym_comment] = STATE(309), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1362), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(310)] = { - [sym_comment] = STATE(310), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1364), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(311)] = { - [sym_comment] = STATE(311), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(1366), - [sym_duration_unit] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(312)] = { - [sym_comment] = STATE(312), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(313)] = { - [sym_comment] = STATE(313), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(314)] = { - [sym_comment] = STATE(314), - [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(315)] = { - [sym_comment] = STATE(315), + [STATE(316)] = { + [sym_comment] = STATE(316), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -71924,707 +72327,618 @@ 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), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(317)] = { [sym_comment] = STATE(317), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), + [anon_sym_in] = ACTIONS(858), + [anon_sym_STAR_STAR] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_mod] = ACTIONS(968), + [anon_sym_SLASH_SLASH] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_bit_DASHshl] = ACTIONS(968), + [anon_sym_bit_DASHshr] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(968), + [anon_sym_BANG_TILDE] = ACTIONS(968), + [anon_sym_like] = ACTIONS(968), + [anon_sym_not_DASHlike] = ACTIONS(968), + [anon_sym_bit_DASHand] = ACTIONS(968), + [anon_sym_bit_DASHxor] = ACTIONS(968), + [anon_sym_bit_DASHor] = ACTIONS(968), + [anon_sym_and] = ACTIONS(968), + [anon_sym_xor] = ACTIONS(968), + [anon_sym_or] = ACTIONS(968), + [anon_sym_in2] = ACTIONS(968), + [anon_sym_not_DASHin] = ACTIONS(968), + [anon_sym_has] = ACTIONS(968), + [anon_sym_not_DASHhas] = ACTIONS(968), + [anon_sym_starts_DASHwith] = ACTIONS(968), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(968), + [anon_sym_ends_DASHwith] = ACTIONS(968), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_GT_EQ] = ACTIONS(968), + [aux_sym_cmd_identifier_token6] = ACTIONS(972), + [sym__newline] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(858), + [anon_sym_err_GT_PIPE] = ACTIONS(858), + [anon_sym_out_GT_PIPE] = ACTIONS(858), + [anon_sym_e_GT_PIPE] = ACTIONS(858), + [anon_sym_o_GT_PIPE] = ACTIONS(858), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), + [anon_sym_GT2] = ACTIONS(858), + [anon_sym_DASH2] = ACTIONS(858), + [anon_sym_STAR2] = ACTIONS(858), + [anon_sym_and2] = ACTIONS(858), + [anon_sym_xor2] = ACTIONS(858), + [anon_sym_or2] = ACTIONS(858), + [anon_sym_not_DASHin2] = ACTIONS(858), + [anon_sym_has2] = ACTIONS(858), + [anon_sym_not_DASHhas2] = ACTIONS(858), + [anon_sym_starts_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), + [anon_sym_ends_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), + [anon_sym_EQ_EQ2] = ACTIONS(858), + [anon_sym_BANG_EQ2] = ACTIONS(858), + [anon_sym_LT2] = ACTIONS(858), + [anon_sym_LT_EQ2] = ACTIONS(858), + [anon_sym_GT_EQ2] = ACTIONS(858), + [anon_sym_EQ_TILDE2] = ACTIONS(858), + [anon_sym_BANG_TILDE2] = ACTIONS(858), + [anon_sym_like2] = ACTIONS(858), + [anon_sym_not_DASHlike2] = ACTIONS(858), + [anon_sym_STAR_STAR2] = ACTIONS(858), + [anon_sym_PLUS_PLUS2] = ACTIONS(858), + [anon_sym_SLASH2] = ACTIONS(858), + [anon_sym_mod2] = ACTIONS(858), + [anon_sym_SLASH_SLASH2] = ACTIONS(858), + [anon_sym_PLUS2] = ACTIONS(858), + [anon_sym_bit_DASHshl2] = ACTIONS(858), + [anon_sym_bit_DASHshr2] = ACTIONS(858), + [anon_sym_bit_DASHand2] = ACTIONS(858), + [anon_sym_bit_DASHxor2] = ACTIONS(858), + [anon_sym_bit_DASHor2] = ACTIONS(858), + [anon_sym_DOT_DOT2] = ACTIONS(866), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), + [anon_sym_DOT_DOT_LT2] = ACTIONS(868), + [sym_filesize_unit] = ACTIONS(1380), + [sym_duration_unit] = ACTIONS(1382), [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_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), [anon_sym_POUND] = ACTIONS(103), }, [STATE(319)] = { [sym_comment] = STATE(319), - [anon_sym_in] = ACTIONS(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(763), + [anon_sym_STAR_STAR] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_mod] = ACTIONS(765), + [anon_sym_SLASH_SLASH] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_bit_DASHshl] = ACTIONS(765), + [anon_sym_bit_DASHshr] = ACTIONS(765), + [anon_sym_EQ_TILDE] = ACTIONS(765), + [anon_sym_BANG_TILDE] = ACTIONS(765), + [anon_sym_like] = ACTIONS(765), + [anon_sym_not_DASHlike] = ACTIONS(765), + [anon_sym_bit_DASHand] = ACTIONS(765), + [anon_sym_bit_DASHxor] = ACTIONS(765), + [anon_sym_bit_DASHor] = ACTIONS(765), + [anon_sym_and] = ACTIONS(765), + [anon_sym_xor] = ACTIONS(765), + [anon_sym_or] = ACTIONS(765), + [anon_sym_in2] = ACTIONS(765), + [anon_sym_not_DASHin] = ACTIONS(765), + [anon_sym_has] = ACTIONS(765), + [anon_sym_not_DASHhas] = ACTIONS(765), + [anon_sym_starts_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), + [anon_sym_ends_DASHwith] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), + [anon_sym_EQ_EQ] = ACTIONS(765), + [anon_sym_BANG_EQ] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_GT_EQ] = ACTIONS(765), + [aux_sym_cmd_identifier_token6] = ACTIONS(763), + [sym__newline] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_err_GT_PIPE] = ACTIONS(763), + [anon_sym_out_GT_PIPE] = ACTIONS(763), + [anon_sym_e_GT_PIPE] = ACTIONS(763), + [anon_sym_o_GT_PIPE] = ACTIONS(763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(763), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(763), + [anon_sym_xor2] = ACTIONS(763), + [anon_sym_or2] = ACTIONS(763), + [anon_sym_not_DASHin2] = ACTIONS(763), + [anon_sym_has2] = ACTIONS(763), + [anon_sym_not_DASHhas2] = ACTIONS(763), + [anon_sym_starts_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), + [anon_sym_ends_DASHwith2] = ACTIONS(763), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), + [anon_sym_EQ_EQ2] = ACTIONS(763), + [anon_sym_BANG_EQ2] = ACTIONS(763), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(763), + [anon_sym_GT_EQ2] = ACTIONS(763), + [anon_sym_EQ_TILDE2] = ACTIONS(763), + [anon_sym_BANG_TILDE2] = ACTIONS(763), + [anon_sym_like2] = ACTIONS(763), + [anon_sym_not_DASHlike2] = ACTIONS(763), + [anon_sym_STAR_STAR2] = ACTIONS(763), + [anon_sym_PLUS_PLUS2] = ACTIONS(763), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(763), + [anon_sym_SLASH_SLASH2] = ACTIONS(763), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(763), + [anon_sym_bit_DASHshr2] = ACTIONS(763), + [anon_sym_bit_DASHand2] = ACTIONS(763), + [anon_sym_bit_DASHxor2] = ACTIONS(763), + [anon_sym_bit_DASHor2] = ACTIONS(763), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), [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(4342), + [sym__match_pattern_expression] = STATE(4285), + [sym__match_pattern_value] = STATE(4441), + [sym__match_pattern_list_body] = STATE(4658), + [sym__match_pattern_list] = STATE(4454), + [sym__match_pattern_rest] = STATE(5063), + [sym__match_pattern_record] = STATE(4455), + [sym_expr_parenthesized] = STATE(3890), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4528), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4529), + [sym_val_bool] = STATE(4025), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3892), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4529), + [sym__val_number_decimal] = STATE(3427), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4529), + [sym_val_filesize] = STATE(4529), + [sym_val_binary] = STATE(4529), + [sym_val_string] = STATE(4529), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4491), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(5225), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym__table_head] = STATE(3723), + [sym_val_table] = STATE(4529), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(3893), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [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(4035), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1420), + [aux_sym_list_body_repeat1] = STATE(515), + [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(4342), + [sym__match_pattern_expression] = STATE(4285), + [sym__match_pattern_value] = STATE(4441), + [sym__match_pattern_list_body] = STATE(4658), + [sym__match_pattern_list] = STATE(4454), + [sym__match_pattern_rest] = STATE(5063), + [sym__match_pattern_record] = STATE(4455), + [sym_expr_parenthesized] = STATE(3890), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4528), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4529), + [sym_val_bool] = STATE(4025), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3892), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4529), + [sym__val_number_decimal] = STATE(3427), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4529), + [sym_val_filesize] = STATE(4529), + [sym_val_binary] = STATE(4529), + [sym_val_string] = STATE(4529), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4491), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(5141), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym__table_head] = STATE(3723), + [sym_val_table] = STATE(4529), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(3893), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [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(4035), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1420), + [aux_sym_list_body_repeat1] = STATE(515), + [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(4342), + [sym__match_pattern_expression] = STATE(4285), + [sym__match_pattern_value] = STATE(4441), + [sym__match_pattern_list_body] = STATE(4658), + [sym__match_pattern_list] = STATE(4454), + [sym__match_pattern_rest] = STATE(5063), + [sym__match_pattern_record] = STATE(4455), + [sym_expr_parenthesized] = STATE(3890), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4528), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4529), + [sym_val_bool] = STATE(4025), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3892), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4529), + [sym__val_number_decimal] = STATE(3427), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4529), + [sym_val_filesize] = STATE(4529), + [sym_val_binary] = STATE(4529), + [sym_val_string] = STATE(4529), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4491), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(5016), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym__table_head] = STATE(3723), + [sym_val_table] = STATE(4529), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(3893), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [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(4035), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1420), + [aux_sym_list_body_repeat1] = STATE(515), + [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), + [anon_sym_in] = ACTIONS(1008), + [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(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_GT2] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_STAR2] = ACTIONS(1008), + [anon_sym_and2] = ACTIONS(1008), + [anon_sym_xor2] = ACTIONS(1008), + [anon_sym_or2] = ACTIONS(1008), + [anon_sym_not_DASHin2] = ACTIONS(1008), + [anon_sym_has2] = ACTIONS(1008), + [anon_sym_not_DASHhas2] = ACTIONS(1008), + [anon_sym_starts_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), + [anon_sym_ends_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), + [anon_sym_EQ_EQ2] = ACTIONS(1008), + [anon_sym_BANG_EQ2] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1008), + [anon_sym_LT_EQ2] = ACTIONS(1008), + [anon_sym_GT_EQ2] = ACTIONS(1008), + [anon_sym_EQ_TILDE2] = ACTIONS(1008), + [anon_sym_BANG_TILDE2] = ACTIONS(1008), + [anon_sym_like2] = ACTIONS(1008), + [anon_sym_not_DASHlike2] = ACTIONS(1008), + [anon_sym_STAR_STAR2] = ACTIONS(1008), + [anon_sym_PLUS_PLUS2] = ACTIONS(1008), + [anon_sym_SLASH2] = ACTIONS(1008), + [anon_sym_mod2] = ACTIONS(1008), + [anon_sym_SLASH_SLASH2] = ACTIONS(1008), + [anon_sym_PLUS2] = ACTIONS(1008), + [anon_sym_bit_DASHshl2] = ACTIONS(1008), + [anon_sym_bit_DASHshr2] = ACTIONS(1008), + [anon_sym_bit_DASHand2] = ACTIONS(1008), + [anon_sym_bit_DASHxor2] = ACTIONS(1008), + [anon_sym_bit_DASHor2] = ACTIONS(1008), [anon_sym_POUND] = ACTIONS(103), }, [STATE(324)] = { @@ -72799,7 +73113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(326)] = { [sym_comment] = STATE(326), - [anon_sym_in] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(1008), [anon_sym_STAR_STAR] = ACTIONS(1010), [anon_sym_PLUS_PLUS] = ACTIONS(1010), [anon_sym_STAR] = ACTIONS(1012), @@ -72835,136 +73149,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__newline] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_GT2] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_STAR2] = ACTIONS(1008), + [anon_sym_and2] = ACTIONS(1008), + [anon_sym_xor2] = ACTIONS(1008), + [anon_sym_or2] = ACTIONS(1008), + [anon_sym_not_DASHin2] = ACTIONS(1008), + [anon_sym_has2] = ACTIONS(1008), + [anon_sym_not_DASHhas2] = ACTIONS(1008), + [anon_sym_starts_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), + [anon_sym_ends_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), + [anon_sym_EQ_EQ2] = ACTIONS(1008), + [anon_sym_BANG_EQ2] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1008), + [anon_sym_LT_EQ2] = ACTIONS(1008), + [anon_sym_GT_EQ2] = ACTIONS(1008), + [anon_sym_EQ_TILDE2] = ACTIONS(1008), + [anon_sym_BANG_TILDE2] = ACTIONS(1008), + [anon_sym_like2] = ACTIONS(1008), + [anon_sym_not_DASHlike2] = ACTIONS(1008), + [anon_sym_STAR_STAR2] = ACTIONS(1008), + [anon_sym_PLUS_PLUS2] = ACTIONS(1008), + [anon_sym_SLASH2] = ACTIONS(1008), + [anon_sym_mod2] = ACTIONS(1008), + [anon_sym_SLASH_SLASH2] = ACTIONS(1008), + [anon_sym_PLUS2] = ACTIONS(1008), + [anon_sym_bit_DASHshl2] = ACTIONS(1008), + [anon_sym_bit_DASHshr2] = ACTIONS(1008), + [anon_sym_bit_DASHand2] = ACTIONS(1008), + [anon_sym_bit_DASHxor2] = ACTIONS(1008), + [anon_sym_bit_DASHor2] = ACTIONS(1008), [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), + [ts_builtin_sym_end] = ACTIONS(1030), + [anon_sym_in] = ACTIONS(1008), + [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(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_GT2] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_STAR2] = ACTIONS(1008), + [anon_sym_and2] = ACTIONS(1008), + [anon_sym_xor2] = ACTIONS(1008), + [anon_sym_or2] = ACTIONS(1008), + [anon_sym_not_DASHin2] = ACTIONS(1008), + [anon_sym_has2] = ACTIONS(1008), + [anon_sym_not_DASHhas2] = ACTIONS(1008), + [anon_sym_starts_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), + [anon_sym_ends_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), + [anon_sym_EQ_EQ2] = ACTIONS(1008), + [anon_sym_BANG_EQ2] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1008), + [anon_sym_LT_EQ2] = ACTIONS(1008), + [anon_sym_GT_EQ2] = ACTIONS(1008), + [anon_sym_EQ_TILDE2] = ACTIONS(1008), + [anon_sym_BANG_TILDE2] = ACTIONS(1008), + [anon_sym_like2] = ACTIONS(1008), + [anon_sym_not_DASHlike2] = ACTIONS(1008), + [anon_sym_STAR_STAR2] = ACTIONS(1008), + [anon_sym_PLUS_PLUS2] = ACTIONS(1008), + [anon_sym_SLASH2] = ACTIONS(1008), + [anon_sym_mod2] = ACTIONS(1008), + [anon_sym_SLASH_SLASH2] = ACTIONS(1008), + [anon_sym_PLUS2] = ACTIONS(1008), + [anon_sym_bit_DASHshl2] = ACTIONS(1008), + [anon_sym_bit_DASHshr2] = ACTIONS(1008), + [anon_sym_bit_DASHand2] = ACTIONS(1008), + [anon_sym_bit_DASHxor2] = ACTIONS(1008), + [anon_sym_bit_DASHor2] = ACTIONS(1008), [anon_sym_POUND] = ACTIONS(103), }, [STATE(328)] = { @@ -73054,90 +73368,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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_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), @@ -73220,8 +73450,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(996), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(330)] = { + [sym_comment] = STATE(330), + [anon_sym_in] = ACTIONS(1008), + [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(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_GT2] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_STAR2] = ACTIONS(1008), + [anon_sym_and2] = ACTIONS(1008), + [anon_sym_xor2] = ACTIONS(1008), + [anon_sym_or2] = ACTIONS(1008), + [anon_sym_not_DASHin2] = ACTIONS(1008), + [anon_sym_has2] = ACTIONS(1008), + [anon_sym_not_DASHhas2] = ACTIONS(1008), + [anon_sym_starts_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), + [anon_sym_ends_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), + [anon_sym_EQ_EQ2] = ACTIONS(1008), + [anon_sym_BANG_EQ2] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1008), + [anon_sym_LT_EQ2] = ACTIONS(1008), + [anon_sym_GT_EQ2] = ACTIONS(1008), + [anon_sym_EQ_TILDE2] = ACTIONS(1008), + [anon_sym_BANG_TILDE2] = ACTIONS(1008), + [anon_sym_like2] = ACTIONS(1008), + [anon_sym_not_DASHlike2] = ACTIONS(1008), + [anon_sym_STAR_STAR2] = ACTIONS(1008), + [anon_sym_PLUS_PLUS2] = ACTIONS(1008), + [anon_sym_SLASH2] = ACTIONS(1008), + [anon_sym_mod2] = ACTIONS(1008), + [anon_sym_SLASH_SLASH2] = ACTIONS(1008), + [anon_sym_PLUS2] = ACTIONS(1008), + [anon_sym_bit_DASHshl2] = ACTIONS(1008), + [anon_sym_bit_DASHshr2] = ACTIONS(1008), + [anon_sym_bit_DASHand2] = ACTIONS(1008), + [anon_sym_bit_DASHxor2] = ACTIONS(1008), + [anon_sym_bit_DASHor2] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(331)] = { [sym_comment] = STATE(331), + [anon_sym_in] = ACTIONS(1008), + [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(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_GT2] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_STAR2] = ACTIONS(1008), + [anon_sym_and2] = ACTIONS(1008), + [anon_sym_xor2] = ACTIONS(1008), + [anon_sym_or2] = ACTIONS(1008), + [anon_sym_not_DASHin2] = ACTIONS(1008), + [anon_sym_has2] = ACTIONS(1008), + [anon_sym_not_DASHhas2] = ACTIONS(1008), + [anon_sym_starts_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), + [anon_sym_ends_DASHwith2] = ACTIONS(1008), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), + [anon_sym_EQ_EQ2] = ACTIONS(1008), + [anon_sym_BANG_EQ2] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1008), + [anon_sym_LT_EQ2] = ACTIONS(1008), + [anon_sym_GT_EQ2] = ACTIONS(1008), + [anon_sym_EQ_TILDE2] = ACTIONS(1008), + [anon_sym_BANG_TILDE2] = ACTIONS(1008), + [anon_sym_like2] = ACTIONS(1008), + [anon_sym_not_DASHlike2] = ACTIONS(1008), + [anon_sym_STAR_STAR2] = ACTIONS(1008), + [anon_sym_PLUS_PLUS2] = ACTIONS(1008), + [anon_sym_SLASH2] = ACTIONS(1008), + [anon_sym_mod2] = ACTIONS(1008), + [anon_sym_SLASH_SLASH2] = ACTIONS(1008), + [anon_sym_PLUS2] = ACTIONS(1008), + [anon_sym_bit_DASHshl2] = ACTIONS(1008), + [anon_sym_bit_DASHshr2] = ACTIONS(1008), + [anon_sym_bit_DASHand2] = ACTIONS(1008), + [anon_sym_bit_DASHxor2] = ACTIONS(1008), + [anon_sym_bit_DASHor2] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(332)] = { + [sym_comment] = STATE(332), [anon_sym_in] = ACTIONS(996), [anon_sym_STAR_STAR] = ACTIONS(1010), [anon_sym_PLUS_PLUS] = ACTIONS(1010), @@ -73303,2499 +73700,2814 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(996), [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_POUND] = ACTIONS(103), - }, [STATE(333)] = { - [sym_cell_path] = STATE(368), - [sym_path] = STATE(339), + [sym__path_suffix] = STATE(390), [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), - [anon_sym_POUND] = ACTIONS(103), + [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_QMARK2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_DOT2] = ACTIONS(1442), + [anon_sym_err_GT] = ACTIONS(1442), + [anon_sym_out_GT] = ACTIONS(1442), + [anon_sym_e_GT] = ACTIONS(1442), + [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(334)] = { + [sym_cell_path] = STATE(411), + [sym_path] = STATE(396), [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(343), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_PLUS_EQ] = ACTIONS(1452), + [anon_sym_DASH_EQ] = ACTIONS(1452), + [anon_sym_STAR_EQ] = ACTIONS(1452), + [anon_sym_SLASH_EQ] = ACTIONS(1452), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1452), + [anon_sym_in] = ACTIONS(1452), + [sym__newline] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_err_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_GT_PIPE] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1452), + [anon_sym_xor2] = ACTIONS(1452), + [anon_sym_or2] = ACTIONS(1452), + [anon_sym_not_DASHin2] = ACTIONS(1452), + [anon_sym_has2] = ACTIONS(1452), + [anon_sym_not_DASHhas2] = ACTIONS(1452), + [anon_sym_starts_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), + [anon_sym_ends_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), + [anon_sym_EQ_EQ2] = ACTIONS(1452), + [anon_sym_BANG_EQ2] = ACTIONS(1452), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1452), + [anon_sym_GT_EQ2] = ACTIONS(1452), + [anon_sym_EQ_TILDE2] = ACTIONS(1452), + [anon_sym_BANG_TILDE2] = ACTIONS(1452), + [anon_sym_like2] = ACTIONS(1452), + [anon_sym_not_DASHlike2] = ACTIONS(1452), + [anon_sym_STAR_STAR2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS2] = ACTIONS(1450), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1452), + [anon_sym_SLASH_SLASH2] = ACTIONS(1452), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1452), + [anon_sym_bit_DASHshr2] = ACTIONS(1452), + [anon_sym_bit_DASHand2] = ACTIONS(1452), + [anon_sym_bit_DASHxor2] = ACTIONS(1452), + [anon_sym_bit_DASHor2] = ACTIONS(1452), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [anon_sym_COLON2] = ACTIONS(1452), + [anon_sym_DOT2] = ACTIONS(1454), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1452), + [anon_sym_out_GT_GT] = ACTIONS(1452), + [anon_sym_e_GT_GT] = ACTIONS(1452), + [anon_sym_o_GT_GT] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(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), + [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_RBRACK] = ACTIONS(1456), + [anon_sym_GT2] = ACTIONS(1456), + [anon_sym_DASH2] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_DOT_DOT] = 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(1460), + [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(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_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_QMARK2] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_DOT2] = ACTIONS(1442), + [anon_sym_err_GT] = ACTIONS(1442), + [anon_sym_out_GT] = ACTIONS(1442), + [anon_sym_e_GT] = ACTIONS(1442), + [anon_sym_o_GT] = ACTIONS(1442), + [anon_sym_err_PLUSout_GT] = ACTIONS(1442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1442), + [anon_sym_o_PLUSe_GT] = ACTIONS(1442), + [anon_sym_e_PLUSo_GT] = ACTIONS(1442), + [anon_sym_err_GT_GT] = ACTIONS(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(337)] = { - [sym__path_suffix] = STATE(388), + [sym_cell_path] = STATE(373), + [sym_path] = STATE(349), [sym_comment] = STATE(337), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_PLUS_EQ] = ACTIONS(1448), - [anon_sym_DASH_EQ] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1448), - [anon_sym_SLASH_EQ] = ACTIONS(1448), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_COLON2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__where_predicate_lhs_repeat1] = STATE(366), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_PLUS_EQ] = ACTIONS(1450), + [anon_sym_DASH_EQ] = ACTIONS(1450), + [anon_sym_STAR_EQ] = ACTIONS(1450), + [anon_sym_SLASH_EQ] = ACTIONS(1450), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1450), + [anon_sym_in] = ACTIONS(1450), + [sym__newline] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_err_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_GT_PIPE] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1450), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1450), + [anon_sym_xor2] = ACTIONS(1450), + [anon_sym_or2] = ACTIONS(1450), + [anon_sym_not_DASHin2] = ACTIONS(1450), + [anon_sym_has2] = ACTIONS(1450), + [anon_sym_not_DASHhas2] = ACTIONS(1450), + [anon_sym_starts_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1450), + [anon_sym_ends_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1450), + [anon_sym_EQ_EQ2] = ACTIONS(1450), + [anon_sym_BANG_EQ2] = ACTIONS(1450), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1450), + [anon_sym_GT_EQ2] = ACTIONS(1450), + [anon_sym_EQ_TILDE2] = ACTIONS(1450), + [anon_sym_BANG_TILDE2] = ACTIONS(1450), + [anon_sym_like2] = ACTIONS(1450), + [anon_sym_not_DASHlike2] = ACTIONS(1450), + [anon_sym_STAR_STAR2] = ACTIONS(1450), + [anon_sym_PLUS_PLUS2] = ACTIONS(1450), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1450), + [anon_sym_SLASH_SLASH2] = ACTIONS(1450), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1450), + [anon_sym_bit_DASHshr2] = ACTIONS(1450), + [anon_sym_bit_DASHand2] = ACTIONS(1450), + [anon_sym_bit_DASHxor2] = ACTIONS(1450), + [anon_sym_bit_DASHor2] = ACTIONS(1450), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [sym__entry_separator] = ACTIONS(1452), + [anon_sym_COLON2] = ACTIONS(1450), + [anon_sym_DOT2] = ACTIONS(1466), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1450), + [anon_sym_out_GT_GT] = ACTIONS(1450), + [anon_sym_e_GT_GT] = ACTIONS(1450), + [anon_sym_o_GT_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(338)] = { - [sym_path] = STATE(385), + [aux_sym__repeat_newline] = STATE(4342), + [sym_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4491), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(4985), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym__table_head] = STATE(3694), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [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), + [aux_sym__types_body_repeat1] = STATE(459), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(515), + [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(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_EQ] = ACTIONS(1496), + [anon_sym_PLUS_EQ] = ACTIONS(1496), + [anon_sym_DASH_EQ] = ACTIONS(1496), + [anon_sym_STAR_EQ] = ACTIONS(1496), + [anon_sym_SLASH_EQ] = ACTIONS(1496), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1496), + [anon_sym_in] = ACTIONS(1496), + [sym__newline] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_err_GT_PIPE] = ACTIONS(1496), + [anon_sym_out_GT_PIPE] = ACTIONS(1496), + [anon_sym_e_GT_PIPE] = ACTIONS(1496), + [anon_sym_o_GT_PIPE] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1496), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_and2] = ACTIONS(1496), + [anon_sym_xor2] = ACTIONS(1496), + [anon_sym_or2] = ACTIONS(1496), + [anon_sym_not_DASHin2] = ACTIONS(1496), + [anon_sym_has2] = ACTIONS(1496), + [anon_sym_not_DASHhas2] = ACTIONS(1496), + [anon_sym_starts_DASHwith2] = ACTIONS(1496), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1496), + [anon_sym_ends_DASHwith2] = ACTIONS(1496), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1496), + [anon_sym_EQ_EQ2] = ACTIONS(1496), + [anon_sym_BANG_EQ2] = ACTIONS(1496), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1496), + [anon_sym_GT_EQ2] = ACTIONS(1496), + [anon_sym_EQ_TILDE2] = ACTIONS(1496), + [anon_sym_BANG_TILDE2] = ACTIONS(1496), + [anon_sym_like2] = ACTIONS(1496), + [anon_sym_not_DASHlike2] = ACTIONS(1496), + [anon_sym_STAR_STAR2] = ACTIONS(1496), + [anon_sym_PLUS_PLUS2] = ACTIONS(1496), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1496), + [anon_sym_SLASH_SLASH2] = ACTIONS(1496), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1496), + [anon_sym_bit_DASHshr2] = ACTIONS(1496), + [anon_sym_bit_DASHand2] = ACTIONS(1496), + [anon_sym_bit_DASHxor2] = ACTIONS(1496), + [anon_sym_bit_DASHor2] = ACTIONS(1496), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [sym__entry_separator] = ACTIONS(1498), + [anon_sym_COLON2] = ACTIONS(1496), + [anon_sym_QMARK2] = ACTIONS(1496), + [anon_sym_BANG] = 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)] = { [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_EQ] = ACTIONS(1500), + [anon_sym_PLUS_EQ] = ACTIONS(1500), + [anon_sym_DASH_EQ] = ACTIONS(1500), + [anon_sym_STAR_EQ] = ACTIONS(1500), + [anon_sym_SLASH_EQ] = ACTIONS(1500), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1500), + [anon_sym_in] = ACTIONS(1500), + [sym__newline] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_err_GT_PIPE] = ACTIONS(1500), + [anon_sym_out_GT_PIPE] = ACTIONS(1500), + [anon_sym_e_GT_PIPE] = ACTIONS(1500), + [anon_sym_o_GT_PIPE] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1500), + [anon_sym_GT2] = ACTIONS(1500), + [anon_sym_DASH2] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_STAR2] = ACTIONS(1500), + [anon_sym_and2] = ACTIONS(1500), + [anon_sym_xor2] = ACTIONS(1500), + [anon_sym_or2] = ACTIONS(1500), + [anon_sym_not_DASHin2] = ACTIONS(1500), + [anon_sym_has2] = ACTIONS(1500), + [anon_sym_not_DASHhas2] = ACTIONS(1500), + [anon_sym_starts_DASHwith2] = ACTIONS(1500), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1500), + [anon_sym_ends_DASHwith2] = ACTIONS(1500), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1500), + [anon_sym_EQ_EQ2] = ACTIONS(1500), + [anon_sym_BANG_EQ2] = ACTIONS(1500), + [anon_sym_LT2] = ACTIONS(1500), + [anon_sym_LT_EQ2] = ACTIONS(1500), + [anon_sym_GT_EQ2] = ACTIONS(1500), + [anon_sym_EQ_TILDE2] = ACTIONS(1500), + [anon_sym_BANG_TILDE2] = ACTIONS(1500), + [anon_sym_like2] = ACTIONS(1500), + [anon_sym_not_DASHlike2] = ACTIONS(1500), + [anon_sym_STAR_STAR2] = ACTIONS(1500), + [anon_sym_PLUS_PLUS2] = ACTIONS(1500), + [anon_sym_SLASH2] = ACTIONS(1500), + [anon_sym_mod2] = ACTIONS(1500), + [anon_sym_SLASH_SLASH2] = ACTIONS(1500), + [anon_sym_PLUS2] = ACTIONS(1500), + [anon_sym_bit_DASHshl2] = ACTIONS(1500), + [anon_sym_bit_DASHshr2] = ACTIONS(1500), + [anon_sym_bit_DASHand2] = ACTIONS(1500), + [anon_sym_bit_DASHxor2] = ACTIONS(1500), + [anon_sym_bit_DASHor2] = ACTIONS(1500), + [anon_sym_DOT_DOT2] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), + [sym__entry_separator] = ACTIONS(1502), + [anon_sym_COLON2] = ACTIONS(1500), + [anon_sym_QMARK2] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DOT2] = ACTIONS(1500), + [anon_sym_err_GT] = ACTIONS(1500), + [anon_sym_out_GT] = ACTIONS(1500), + [anon_sym_e_GT] = ACTIONS(1500), + [anon_sym_o_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT] = ACTIONS(1500), + [anon_sym_err_GT_GT] = ACTIONS(1500), + [anon_sym_out_GT_GT] = ACTIONS(1500), + [anon_sym_e_GT_GT] = ACTIONS(1500), + [anon_sym_o_GT_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1500), [anon_sym_POUND] = ACTIONS(103), }, [STATE(341)] = { [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_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_QMARK2] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DOT2] = ACTIONS(1504), + [anon_sym_err_GT] = ACTIONS(1504), + [anon_sym_out_GT] = ACTIONS(1504), + [anon_sym_e_GT] = ACTIONS(1504), + [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(342)] = { + [sym_path] = STATE(396), [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(342), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1510), + [anon_sym_in] = ACTIONS(1510), + [sym__newline] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_err_GT_PIPE] = ACTIONS(1510), + [anon_sym_out_GT_PIPE] = ACTIONS(1510), + [anon_sym_e_GT_PIPE] = ACTIONS(1510), + [anon_sym_o_GT_PIPE] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), + [anon_sym_RPAREN] = ACTIONS(1510), + [anon_sym_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(343)] = { + [sym_path] = STATE(396), [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(342), + [anon_sym_EQ] = ACTIONS(1515), + [anon_sym_PLUS_EQ] = ACTIONS(1517), + [anon_sym_DASH_EQ] = ACTIONS(1517), + [anon_sym_STAR_EQ] = ACTIONS(1517), + [anon_sym_SLASH_EQ] = ACTIONS(1517), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1517), + [anon_sym_in] = ACTIONS(1517), + [sym__newline] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1517), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_err_GT_PIPE] = ACTIONS(1517), + [anon_sym_out_GT_PIPE] = ACTIONS(1517), + [anon_sym_e_GT_PIPE] = ACTIONS(1517), + [anon_sym_o_GT_PIPE] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1517), + [anon_sym_RPAREN] = ACTIONS(1517), + [anon_sym_GT2] = ACTIONS(1515), + [anon_sym_DASH2] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1517), + [anon_sym_STAR2] = ACTIONS(1515), + [anon_sym_and2] = ACTIONS(1517), + [anon_sym_xor2] = ACTIONS(1517), + [anon_sym_or2] = ACTIONS(1517), + [anon_sym_not_DASHin2] = ACTIONS(1517), + [anon_sym_has2] = ACTIONS(1517), + [anon_sym_not_DASHhas2] = ACTIONS(1517), + [anon_sym_starts_DASHwith2] = ACTIONS(1517), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1517), + [anon_sym_ends_DASHwith2] = ACTIONS(1517), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1517), + [anon_sym_EQ_EQ2] = ACTIONS(1517), + [anon_sym_BANG_EQ2] = ACTIONS(1517), + [anon_sym_LT2] = ACTIONS(1515), + [anon_sym_LT_EQ2] = ACTIONS(1517), + [anon_sym_GT_EQ2] = ACTIONS(1517), + [anon_sym_EQ_TILDE2] = ACTIONS(1517), + [anon_sym_BANG_TILDE2] = ACTIONS(1517), + [anon_sym_like2] = ACTIONS(1517), + [anon_sym_not_DASHlike2] = ACTIONS(1517), + [anon_sym_STAR_STAR2] = ACTIONS(1517), + [anon_sym_PLUS_PLUS2] = ACTIONS(1515), + [anon_sym_SLASH2] = ACTIONS(1515), + [anon_sym_mod2] = ACTIONS(1517), + [anon_sym_SLASH_SLASH2] = ACTIONS(1517), + [anon_sym_PLUS2] = ACTIONS(1515), + [anon_sym_bit_DASHshl2] = ACTIONS(1517), + [anon_sym_bit_DASHshr2] = ACTIONS(1517), + [anon_sym_bit_DASHand2] = ACTIONS(1517), + [anon_sym_bit_DASHxor2] = ACTIONS(1517), + [anon_sym_bit_DASHor2] = ACTIONS(1517), + [anon_sym_DOT_DOT2] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1517), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1517), + [anon_sym_COLON2] = ACTIONS(1517), + [anon_sym_DOT2] = ACTIONS(1454), + [anon_sym_err_GT] = ACTIONS(1515), + [anon_sym_out_GT] = ACTIONS(1515), + [anon_sym_e_GT] = ACTIONS(1515), + [anon_sym_o_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT] = ACTIONS(1515), + [anon_sym_err_GT_GT] = ACTIONS(1517), + [anon_sym_out_GT_GT] = ACTIONS(1517), + [anon_sym_e_GT_GT] = ACTIONS(1517), + [anon_sym_o_GT_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(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_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(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), + [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(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_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(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), + [aux_sym__repeat_newline] = STATE(4342), + [sym_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4491), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(5009), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym__table_head] = STATE(3673), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [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), + [aux_sym__types_body_repeat1] = STATE(459), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(515), + [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(1531), + [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(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), + [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_QMARK2] = ACTIONS(1498), + [anon_sym_BANG] = 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(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(349)] = { [sym_comment] = STATE(349), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1516), - [anon_sym_in] = ACTIONS(1516), - [sym__newline] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_err_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_GT_PIPE] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1516), - [anon_sym_xor2] = ACTIONS(1516), - [anon_sym_or2] = ACTIONS(1516), - [anon_sym_not_DASHin2] = ACTIONS(1516), - [anon_sym_has2] = ACTIONS(1516), - [anon_sym_not_DASHhas2] = ACTIONS(1516), - [anon_sym_starts_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1516), - [anon_sym_ends_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1516), - [anon_sym_EQ_EQ2] = ACTIONS(1516), - [anon_sym_BANG_EQ2] = ACTIONS(1516), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1516), - [anon_sym_GT_EQ2] = ACTIONS(1516), - [anon_sym_EQ_TILDE2] = ACTIONS(1516), - [anon_sym_BANG_TILDE2] = ACTIONS(1516), - [anon_sym_like2] = ACTIONS(1516), - [anon_sym_not_DASHlike2] = ACTIONS(1516), - [anon_sym_STAR_STAR2] = ACTIONS(1516), - [anon_sym_PLUS_PLUS2] = ACTIONS(1514), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1516), - [anon_sym_SLASH_SLASH2] = ACTIONS(1516), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1516), - [anon_sym_bit_DASHshr2] = ACTIONS(1516), - [anon_sym_bit_DASHand2] = ACTIONS(1516), - [anon_sym_bit_DASHxor2] = ACTIONS(1516), - [anon_sym_bit_DASHor2] = ACTIONS(1516), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [anon_sym_COLON2] = ACTIONS(1516), - [anon_sym_QMARK2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1516), - [anon_sym_out_GT_GT] = ACTIONS(1516), - [anon_sym_e_GT_GT] = ACTIONS(1516), - [anon_sym_o_GT_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1533), + [anon_sym_PLUS_EQ] = ACTIONS(1533), + [anon_sym_DASH_EQ] = ACTIONS(1533), + [anon_sym_STAR_EQ] = ACTIONS(1533), + [anon_sym_SLASH_EQ] = ACTIONS(1533), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1533), + [anon_sym_in] = ACTIONS(1533), + [sym__newline] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_err_GT_PIPE] = ACTIONS(1533), + [anon_sym_out_GT_PIPE] = ACTIONS(1533), + [anon_sym_e_GT_PIPE] = ACTIONS(1533), + [anon_sym_o_GT_PIPE] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1533), + [anon_sym_RBRACK] = ACTIONS(1533), + [anon_sym_GT2] = ACTIONS(1533), + [anon_sym_DASH2] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_DOT_DOT] = ACTIONS(1533), + [anon_sym_STAR2] = ACTIONS(1533), + [anon_sym_and2] = ACTIONS(1533), + [anon_sym_xor2] = ACTIONS(1533), + [anon_sym_or2] = ACTIONS(1533), + [anon_sym_not_DASHin2] = ACTIONS(1533), + [anon_sym_has2] = ACTIONS(1533), + [anon_sym_not_DASHhas2] = ACTIONS(1533), + [anon_sym_starts_DASHwith2] = ACTIONS(1533), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1533), + [anon_sym_ends_DASHwith2] = ACTIONS(1533), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1533), + [anon_sym_EQ_EQ2] = ACTIONS(1533), + [anon_sym_BANG_EQ2] = ACTIONS(1533), + [anon_sym_LT2] = ACTIONS(1533), + [anon_sym_LT_EQ2] = ACTIONS(1533), + [anon_sym_GT_EQ2] = ACTIONS(1533), + [anon_sym_EQ_TILDE2] = ACTIONS(1533), + [anon_sym_BANG_TILDE2] = ACTIONS(1533), + [anon_sym_like2] = ACTIONS(1533), + [anon_sym_not_DASHlike2] = ACTIONS(1533), + [anon_sym_STAR_STAR2] = ACTIONS(1533), + [anon_sym_PLUS_PLUS2] = ACTIONS(1533), + [anon_sym_SLASH2] = ACTIONS(1533), + [anon_sym_mod2] = ACTIONS(1533), + [anon_sym_SLASH_SLASH2] = ACTIONS(1533), + [anon_sym_PLUS2] = ACTIONS(1533), + [anon_sym_bit_DASHshl2] = ACTIONS(1533), + [anon_sym_bit_DASHshr2] = ACTIONS(1533), + [anon_sym_bit_DASHand2] = ACTIONS(1533), + [anon_sym_bit_DASHxor2] = ACTIONS(1533), + [anon_sym_bit_DASHor2] = ACTIONS(1533), + [anon_sym_DOT_DOT2] = ACTIONS(1533), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1535), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1535), + [sym__entry_separator] = ACTIONS(1535), + [anon_sym_COLON2] = ACTIONS(1533), + [anon_sym_DOT2] = ACTIONS(1533), + [anon_sym_err_GT] = ACTIONS(1533), + [anon_sym_out_GT] = ACTIONS(1533), + [anon_sym_e_GT] = ACTIONS(1533), + [anon_sym_o_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT] = ACTIONS(1533), + [anon_sym_err_GT_GT] = ACTIONS(1533), + [anon_sym_out_GT_GT] = ACTIONS(1533), + [anon_sym_e_GT_GT] = ACTIONS(1533), + [anon_sym_o_GT_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1533), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(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), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_PLUS_EQ] = ACTIONS(1502), + [anon_sym_DASH_EQ] = ACTIONS(1502), + [anon_sym_STAR_EQ] = ACTIONS(1502), + [anon_sym_SLASH_EQ] = ACTIONS(1502), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1502), + [anon_sym_in] = ACTIONS(1502), + [sym__newline] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_err_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_GT_PIPE] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), + [anon_sym_RPAREN] = ACTIONS(1502), + [anon_sym_GT2] = ACTIONS(1500), + [anon_sym_DASH2] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_STAR2] = ACTIONS(1500), + [anon_sym_and2] = ACTIONS(1502), + [anon_sym_xor2] = ACTIONS(1502), + [anon_sym_or2] = ACTIONS(1502), + [anon_sym_not_DASHin2] = ACTIONS(1502), + [anon_sym_has2] = ACTIONS(1502), + [anon_sym_not_DASHhas2] = ACTIONS(1502), + [anon_sym_starts_DASHwith2] = ACTIONS(1502), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1502), + [anon_sym_ends_DASHwith2] = ACTIONS(1502), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1502), + [anon_sym_EQ_EQ2] = ACTIONS(1502), + [anon_sym_BANG_EQ2] = ACTIONS(1502), + [anon_sym_LT2] = ACTIONS(1500), + [anon_sym_LT_EQ2] = ACTIONS(1502), + [anon_sym_GT_EQ2] = ACTIONS(1502), + [anon_sym_EQ_TILDE2] = ACTIONS(1502), + [anon_sym_BANG_TILDE2] = ACTIONS(1502), + [anon_sym_like2] = ACTIONS(1502), + [anon_sym_not_DASHlike2] = ACTIONS(1502), + [anon_sym_STAR_STAR2] = ACTIONS(1502), + [anon_sym_PLUS_PLUS2] = ACTIONS(1500), + [anon_sym_SLASH2] = ACTIONS(1500), + [anon_sym_mod2] = ACTIONS(1502), + [anon_sym_SLASH_SLASH2] = ACTIONS(1502), + [anon_sym_PLUS2] = ACTIONS(1500), + [anon_sym_bit_DASHshl2] = ACTIONS(1502), + [anon_sym_bit_DASHshr2] = ACTIONS(1502), + [anon_sym_bit_DASHand2] = ACTIONS(1502), + [anon_sym_bit_DASHxor2] = ACTIONS(1502), + [anon_sym_bit_DASHor2] = ACTIONS(1502), + [anon_sym_DOT_DOT2] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), + [anon_sym_COLON2] = ACTIONS(1502), + [anon_sym_QMARK2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DOT2] = ACTIONS(1500), + [anon_sym_err_GT] = ACTIONS(1500), + [anon_sym_out_GT] = ACTIONS(1500), + [anon_sym_e_GT] = ACTIONS(1500), + [anon_sym_o_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT] = ACTIONS(1500), + [anon_sym_err_GT_GT] = ACTIONS(1502), + [anon_sym_out_GT_GT] = ACTIONS(1502), + [anon_sym_e_GT_GT] = ACTIONS(1502), + [anon_sym_o_GT_GT] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(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_EQ] = ACTIONS(1537), + [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_RBRACK] = ACTIONS(1537), + [anon_sym_GT2] = ACTIONS(1537), + [anon_sym_DASH2] = ACTIONS(1537), + [anon_sym_RBRACE] = ACTIONS(1537), + [anon_sym_DOT_DOT] = ACTIONS(1537), + [anon_sym_STAR2] = ACTIONS(1537), + [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(1537), + [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(1537), + [anon_sym_mod2] = ACTIONS(1537), + [anon_sym_SLASH_SLASH2] = ACTIONS(1537), + [anon_sym_PLUS2] = ACTIONS(1537), + [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(1537), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1539), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1539), + [sym__entry_separator] = ACTIONS(1539), + [anon_sym_COLON2] = ACTIONS(1537), + [anon_sym_DOT2] = ACTIONS(1537), + [anon_sym_err_GT] = ACTIONS(1537), + [anon_sym_out_GT] = ACTIONS(1537), + [anon_sym_e_GT] = ACTIONS(1537), + [anon_sym_o_GT] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT] = ACTIONS(1537), + [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(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_EQ] = ACTIONS(1541), + [anon_sym_PLUS_EQ] = ACTIONS(1541), + [anon_sym_DASH_EQ] = ACTIONS(1541), + [anon_sym_STAR_EQ] = ACTIONS(1541), + [anon_sym_SLASH_EQ] = ACTIONS(1541), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1541), + [anon_sym_in] = ACTIONS(1541), + [sym__newline] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1541), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_err_GT_PIPE] = ACTIONS(1541), + [anon_sym_out_GT_PIPE] = ACTIONS(1541), + [anon_sym_e_GT_PIPE] = ACTIONS(1541), + [anon_sym_o_GT_PIPE] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1541), + [anon_sym_RBRACK] = ACTIONS(1541), + [anon_sym_GT2] = ACTIONS(1541), + [anon_sym_DASH2] = ACTIONS(1541), + [anon_sym_RBRACE] = ACTIONS(1541), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_STAR2] = ACTIONS(1541), + [anon_sym_and2] = ACTIONS(1541), + [anon_sym_xor2] = ACTIONS(1541), + [anon_sym_or2] = ACTIONS(1541), + [anon_sym_not_DASHin2] = ACTIONS(1541), + [anon_sym_has2] = ACTIONS(1541), + [anon_sym_not_DASHhas2] = ACTIONS(1541), + [anon_sym_starts_DASHwith2] = ACTIONS(1541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1541), + [anon_sym_ends_DASHwith2] = ACTIONS(1541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1541), + [anon_sym_EQ_EQ2] = ACTIONS(1541), + [anon_sym_BANG_EQ2] = ACTIONS(1541), + [anon_sym_LT2] = ACTIONS(1541), + [anon_sym_LT_EQ2] = ACTIONS(1541), + [anon_sym_GT_EQ2] = ACTIONS(1541), + [anon_sym_EQ_TILDE2] = ACTIONS(1541), + [anon_sym_BANG_TILDE2] = ACTIONS(1541), + [anon_sym_like2] = ACTIONS(1541), + [anon_sym_not_DASHlike2] = ACTIONS(1541), + [anon_sym_STAR_STAR2] = ACTIONS(1541), + [anon_sym_PLUS_PLUS2] = ACTIONS(1541), + [anon_sym_SLASH2] = ACTIONS(1541), + [anon_sym_mod2] = ACTIONS(1541), + [anon_sym_SLASH_SLASH2] = ACTIONS(1541), + [anon_sym_PLUS2] = ACTIONS(1541), + [anon_sym_bit_DASHshl2] = ACTIONS(1541), + [anon_sym_bit_DASHshr2] = ACTIONS(1541), + [anon_sym_bit_DASHand2] = ACTIONS(1541), + [anon_sym_bit_DASHxor2] = ACTIONS(1541), + [anon_sym_bit_DASHor2] = ACTIONS(1541), + [anon_sym_DOT_DOT2] = ACTIONS(1541), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1543), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1543), + [sym__entry_separator] = ACTIONS(1543), + [anon_sym_COLON2] = ACTIONS(1541), + [anon_sym_DOT2] = ACTIONS(1541), + [anon_sym_err_GT] = ACTIONS(1541), + [anon_sym_out_GT] = ACTIONS(1541), + [anon_sym_e_GT] = ACTIONS(1541), + [anon_sym_o_GT] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT] = ACTIONS(1541), + [anon_sym_err_GT_GT] = ACTIONS(1541), + [anon_sym_out_GT_GT] = ACTIONS(1541), + [anon_sym_e_GT_GT] = ACTIONS(1541), + [anon_sym_o_GT_GT] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1541), [anon_sym_POUND] = ACTIONS(103), }, [STATE(353)] = { - [sym_path] = STATE(385), + [aux_sym__repeat_newline] = STATE(4342), + [sym_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4491), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(4988), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym__table_head] = STATE(3737), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [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), + [aux_sym__types_body_repeat1] = STATE(459), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(515), + [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(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(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), + [aux_sym__repeat_newline] = STATE(4342), + [sym_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4491), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(5141), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym__table_head] = STATE(3761), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [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), + [aux_sym__types_body_repeat1] = STATE(459), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(515), + [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(1547), + [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(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_EQ] = ACTIONS(1504), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [sym__newline] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1506), + [anon_sym_err_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_GT_PIPE] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), + [anon_sym_RPAREN] = ACTIONS(1506), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1506), + [anon_sym_xor2] = ACTIONS(1506), + [anon_sym_or2] = ACTIONS(1506), + [anon_sym_not_DASHin2] = ACTIONS(1506), + [anon_sym_has2] = ACTIONS(1506), + [anon_sym_not_DASHhas2] = ACTIONS(1506), + [anon_sym_starts_DASHwith2] = ACTIONS(1506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1506), + [anon_sym_ends_DASHwith2] = ACTIONS(1506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1506), + [anon_sym_EQ_EQ2] = ACTIONS(1506), + [anon_sym_BANG_EQ2] = ACTIONS(1506), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1506), + [anon_sym_GT_EQ2] = ACTIONS(1506), + [anon_sym_EQ_TILDE2] = ACTIONS(1506), + [anon_sym_BANG_TILDE2] = ACTIONS(1506), + [anon_sym_like2] = ACTIONS(1506), + [anon_sym_not_DASHlike2] = ACTIONS(1506), + [anon_sym_STAR_STAR2] = ACTIONS(1506), + [anon_sym_PLUS_PLUS2] = ACTIONS(1504), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1506), + [anon_sym_SLASH_SLASH2] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1506), + [anon_sym_bit_DASHshr2] = ACTIONS(1506), + [anon_sym_bit_DASHand2] = ACTIONS(1506), + [anon_sym_bit_DASHxor2] = ACTIONS(1506), + [anon_sym_bit_DASHor2] = ACTIONS(1506), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [anon_sym_COLON2] = ACTIONS(1506), + [anon_sym_QMARK2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DOT2] = ACTIONS(1504), + [anon_sym_err_GT] = ACTIONS(1504), + [anon_sym_out_GT] = ACTIONS(1504), + [anon_sym_e_GT] = ACTIONS(1504), + [anon_sym_o_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT] = ACTIONS(1504), + [anon_sym_err_GT_GT] = ACTIONS(1506), + [anon_sym_out_GT_GT] = ACTIONS(1506), + [anon_sym_e_GT_GT] = ACTIONS(1506), + [anon_sym_o_GT_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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(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(357)] = { [sym_comment] = STATE(357), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_PLUS_EQ] = ACTIONS(1535), - [anon_sym_DASH_EQ] = ACTIONS(1535), - [anon_sym_STAR_EQ] = ACTIONS(1535), - [anon_sym_SLASH_EQ] = ACTIONS(1535), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [sym__newline] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_PIPE] = ACTIONS(1535), - [anon_sym_err_GT_PIPE] = ACTIONS(1535), - [anon_sym_out_GT_PIPE] = ACTIONS(1535), - [anon_sym_e_GT_PIPE] = ACTIONS(1535), - [anon_sym_o_GT_PIPE] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), - [anon_sym_RBRACK] = ACTIONS(1535), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1535), - [anon_sym_xor2] = ACTIONS(1535), - [anon_sym_or2] = ACTIONS(1535), - [anon_sym_not_DASHin2] = ACTIONS(1535), - [anon_sym_has2] = ACTIONS(1535), - [anon_sym_not_DASHhas2] = ACTIONS(1535), - [anon_sym_starts_DASHwith2] = ACTIONS(1535), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), - [anon_sym_ends_DASHwith2] = ACTIONS(1535), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), - [anon_sym_EQ_EQ2] = ACTIONS(1535), - [anon_sym_BANG_EQ2] = ACTIONS(1535), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1535), - [anon_sym_GT_EQ2] = ACTIONS(1535), - [anon_sym_EQ_TILDE2] = ACTIONS(1535), - [anon_sym_BANG_TILDE2] = ACTIONS(1535), - [anon_sym_like2] = ACTIONS(1535), - [anon_sym_not_DASHlike2] = ACTIONS(1535), - [anon_sym_STAR_STAR2] = ACTIONS(1535), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1535), - [anon_sym_SLASH_SLASH2] = ACTIONS(1535), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1535), - [anon_sym_bit_DASHshr2] = ACTIONS(1535), - [anon_sym_bit_DASHand2] = ACTIONS(1535), - [anon_sym_bit_DASHxor2] = ACTIONS(1535), - [anon_sym_bit_DASHor2] = ACTIONS(1535), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [sym__entry_separator] = ACTIONS(1537), - [anon_sym_COLON2] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1535), - [anon_sym_out_GT_GT] = ACTIONS(1535), - [anon_sym_e_GT_GT] = ACTIONS(1535), - [anon_sym_o_GT_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), + [anon_sym_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(358)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4926), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3675), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(358), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1539), - [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(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(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), + [aux_sym__repeat_newline] = STATE(4342), + [sym_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4491), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(5225), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym__table_head] = STATE(3761), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [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), + [aux_sym__types_body_repeat1] = STATE(459), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(515), + [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(1549), + [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(360)] = { + [aux_sym__repeat_newline] = STATE(4342), + [sym_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4491), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(4948), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym__table_head] = STATE(3677), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [sym_comment] = STATE(360), - [anon_sym_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1543), - [anon_sym_in] = ACTIONS(1543), - [sym__newline] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_PIPE] = ACTIONS(1543), - [anon_sym_err_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_GT_PIPE] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1543), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1543), - [anon_sym_xor2] = ACTIONS(1543), - [anon_sym_or2] = ACTIONS(1543), - [anon_sym_not_DASHin2] = ACTIONS(1543), - [anon_sym_has2] = ACTIONS(1543), - [anon_sym_not_DASHhas2] = ACTIONS(1543), - [anon_sym_starts_DASHwith2] = ACTIONS(1543), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1543), - [anon_sym_ends_DASHwith2] = ACTIONS(1543), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1543), - [anon_sym_EQ_EQ2] = ACTIONS(1543), - [anon_sym_BANG_EQ2] = ACTIONS(1543), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1543), - [anon_sym_GT_EQ2] = ACTIONS(1543), - [anon_sym_EQ_TILDE2] = ACTIONS(1543), - [anon_sym_BANG_TILDE2] = ACTIONS(1543), - [anon_sym_like2] = ACTIONS(1543), - [anon_sym_not_DASHlike2] = ACTIONS(1543), - [anon_sym_STAR_STAR2] = ACTIONS(1543), - [anon_sym_PLUS_PLUS2] = ACTIONS(1543), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1543), - [anon_sym_SLASH_SLASH2] = ACTIONS(1543), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1543), - [anon_sym_bit_DASHshr2] = ACTIONS(1543), - [anon_sym_bit_DASHand2] = ACTIONS(1543), - [anon_sym_bit_DASHxor2] = ACTIONS(1543), - [anon_sym_bit_DASHor2] = ACTIONS(1543), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [sym__entry_separator] = ACTIONS(1545), - [anon_sym_COLON2] = ACTIONS(1543), - [anon_sym_QMARK2] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1543), - [anon_sym_out_GT_GT] = ACTIONS(1543), - [anon_sym_e_GT_GT] = ACTIONS(1543), - [anon_sym_o_GT_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym__types_body_repeat1] = STATE(459), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(515), + [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(361)] = { + [aux_sym__repeat_newline] = STATE(4342), + [sym_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4491), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(5046), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym__table_head] = STATE(3773), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [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(459), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(515), + [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(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(4342), + [sym_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4491), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(5139), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym__table_head] = STATE(3767), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [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(459), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(515), + [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(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(4342), + [sym_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4491), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(4849), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym__table_head] = STATE(3740), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [sym_comment] = STATE(363), - [aux_sym__where_predicate_lhs_repeat1] = STATE(364), - [anon_sym_EQ] = ACTIONS(1458), + [aux_sym__types_body_repeat1] = STATE(459), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(515), + [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(1557), + [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)] = { + [aux_sym__repeat_newline] = STATE(4342), + [sym_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4491), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(4869), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym__table_head] = STATE(3696), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), + [sym_comment] = STATE(364), + [aux_sym__types_body_repeat1] = STATE(459), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(515), + [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(1559), + [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(365)] = { + [aux_sym__repeat_newline] = STATE(4342), + [sym_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4491), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(5097), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym__table_head] = STATE(3709), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), + [sym_comment] = STATE(365), + [aux_sym__types_body_repeat1] = STATE(459), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(515), + [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(1561), + [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(366)] = { + [sym_path] = STATE(349), + [sym_comment] = STATE(366), + [aux_sym__where_predicate_lhs_repeat1] = STATE(367), + [anon_sym_EQ] = ACTIONS(1515), + [anon_sym_PLUS_EQ] = ACTIONS(1515), + [anon_sym_DASH_EQ] = ACTIONS(1515), + [anon_sym_STAR_EQ] = ACTIONS(1515), + [anon_sym_SLASH_EQ] = ACTIONS(1515), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1515), + [anon_sym_in] = ACTIONS(1515), + [sym__newline] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_err_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_GT_PIPE] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), + [anon_sym_GT2] = ACTIONS(1515), + [anon_sym_DASH2] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_STAR2] = ACTIONS(1515), + [anon_sym_and2] = ACTIONS(1515), + [anon_sym_xor2] = ACTIONS(1515), + [anon_sym_or2] = ACTIONS(1515), + [anon_sym_not_DASHin2] = ACTIONS(1515), + [anon_sym_has2] = ACTIONS(1515), + [anon_sym_not_DASHhas2] = ACTIONS(1515), + [anon_sym_starts_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1515), + [anon_sym_ends_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1515), + [anon_sym_EQ_EQ2] = ACTIONS(1515), + [anon_sym_BANG_EQ2] = ACTIONS(1515), + [anon_sym_LT2] = ACTIONS(1515), + [anon_sym_LT_EQ2] = ACTIONS(1515), + [anon_sym_GT_EQ2] = ACTIONS(1515), + [anon_sym_EQ_TILDE2] = ACTIONS(1515), + [anon_sym_BANG_TILDE2] = ACTIONS(1515), + [anon_sym_like2] = ACTIONS(1515), + [anon_sym_not_DASHlike2] = ACTIONS(1515), + [anon_sym_STAR_STAR2] = ACTIONS(1515), + [anon_sym_PLUS_PLUS2] = ACTIONS(1515), + [anon_sym_SLASH2] = ACTIONS(1515), + [anon_sym_mod2] = ACTIONS(1515), + [anon_sym_SLASH_SLASH2] = ACTIONS(1515), + [anon_sym_PLUS2] = ACTIONS(1515), + [anon_sym_bit_DASHshl2] = ACTIONS(1515), + [anon_sym_bit_DASHshr2] = ACTIONS(1515), + [anon_sym_bit_DASHand2] = ACTIONS(1515), + [anon_sym_bit_DASHxor2] = ACTIONS(1515), + [anon_sym_bit_DASHor2] = ACTIONS(1515), + [anon_sym_DOT_DOT2] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1517), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1517), + [sym__entry_separator] = ACTIONS(1517), + [anon_sym_COLON2] = ACTIONS(1515), + [anon_sym_DOT2] = ACTIONS(1466), + [anon_sym_err_GT] = ACTIONS(1515), + [anon_sym_out_GT] = ACTIONS(1515), + [anon_sym_e_GT] = ACTIONS(1515), + [anon_sym_o_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT] = ACTIONS(1515), + [anon_sym_err_GT_GT] = ACTIONS(1515), + [anon_sym_out_GT_GT] = ACTIONS(1515), + [anon_sym_e_GT_GT] = ACTIONS(1515), + [anon_sym_o_GT_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(367)] = { + [sym_path] = STATE(349), + [sym_comment] = STATE(367), + [aux_sym__where_predicate_lhs_repeat1] = STATE(367), + [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(1563), + [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(368)] = { + [sym_comment] = STATE(368), + [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 +76525,11 @@ 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_RPAREN] = ACTIONS(1458), + [anon_sym_GT2] = ACTIONS(1456), + [anon_sym_DASH2] = ACTIONS(1456), [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_STAR2] = ACTIONS(1458), + [anon_sym_STAR2] = ACTIONS(1456), [anon_sym_and2] = ACTIONS(1458), [anon_sym_xor2] = ACTIONS(1458), [anon_sym_or2] = ACTIONS(1458), @@ -75829,7 +76542,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 +76550,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_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_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_BANG] = ACTIONS(1566), + [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,4292 +76582,3285 @@ 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), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(369)] = { [sym_comment] = STATE(369), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1560), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), + [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_BANG] = ACTIONS(1460), + [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(370)] = { - [sym_cell_path] = STATE(453), - [sym_path] = STATE(417), + [sym__match_pattern_expression] = STATE(4328), + [sym__match_pattern_value] = STATE(4441), + [sym__match_pattern_list] = STATE(4454), + [sym__match_pattern_record] = STATE(4455), + [sym_expr_parenthesized] = STATE(3890), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4528), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4529), + [sym_val_bool] = STATE(4025), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3892), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4529), + [sym__val_number_decimal] = STATE(3427), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4529), + [sym_val_filesize] = STATE(4529), + [sym_val_binary] = STATE(4529), + [sym_val_string] = STATE(4529), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4550), + [sym__spread_list] = STATE(4821), + [sym_val_entry] = STATE(4521), + [sym_val_record] = STATE(4550), + [sym_val_table] = STATE(4529), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(3813), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [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(2120), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1415), + [aux_sym_list_body_repeat1] = STATE(508), + [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(1568), + [anon_sym_LBRACK] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_DOT_DOT] = ACTIONS(1572), + [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__path_suffix] = STATE(419), [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), + [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_QMARK2] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1576), + [anon_sym_DOT2] = ACTIONS(1442), + [anon_sym_err_GT] = ACTIONS(1442), + [anon_sym_out_GT] = ACTIONS(1442), + [anon_sym_e_GT] = ACTIONS(1442), + [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(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), - }, - [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_PLUS_EQ] = ACTIONS(1448), - [anon_sym_DASH_EQ] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1448), - [anon_sym_SLASH_EQ] = ACTIONS(1448), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(375)] = { - [sym_comment] = STATE(375), - [ts_builtin_sym_end] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1476), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1474), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(376)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4944), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(376), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [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), - }, + [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(1578), + [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(373)] = { + [sym_comment] = STATE(373), + [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(374)] = { + [sym_cell_path] = STATE(443), + [sym_path] = STATE(425), + [sym_comment] = STATE(374), + [aux_sym__where_predicate_lhs_repeat1] = STATE(377), + [ts_builtin_sym_end] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_PLUS_EQ] = ACTIONS(1452), + [anon_sym_DASH_EQ] = ACTIONS(1452), + [anon_sym_STAR_EQ] = ACTIONS(1452), + [anon_sym_SLASH_EQ] = ACTIONS(1452), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1452), + [anon_sym_in] = ACTIONS(1452), + [sym__newline] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_err_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_GT_PIPE] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1452), + [anon_sym_xor2] = ACTIONS(1452), + [anon_sym_or2] = ACTIONS(1452), + [anon_sym_not_DASHin2] = ACTIONS(1452), + [anon_sym_has2] = ACTIONS(1452), + [anon_sym_not_DASHhas2] = ACTIONS(1452), + [anon_sym_starts_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), + [anon_sym_ends_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), + [anon_sym_EQ_EQ2] = ACTIONS(1452), + [anon_sym_BANG_EQ2] = ACTIONS(1452), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1452), + [anon_sym_GT_EQ2] = ACTIONS(1452), + [anon_sym_EQ_TILDE2] = ACTIONS(1452), + [anon_sym_BANG_TILDE2] = ACTIONS(1452), + [anon_sym_like2] = ACTIONS(1452), + [anon_sym_not_DASHlike2] = ACTIONS(1452), + [anon_sym_STAR_STAR2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS2] = ACTIONS(1450), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1452), + [anon_sym_SLASH_SLASH2] = ACTIONS(1452), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1452), + [anon_sym_bit_DASHshr2] = ACTIONS(1452), + [anon_sym_bit_DASHand2] = ACTIONS(1452), + [anon_sym_bit_DASHxor2] = ACTIONS(1452), + [anon_sym_bit_DASHor2] = ACTIONS(1452), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [anon_sym_DOT2] = ACTIONS(1584), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1452), + [anon_sym_out_GT_GT] = ACTIONS(1452), + [anon_sym_e_GT_GT] = ACTIONS(1452), + [anon_sym_o_GT_GT] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(375)] = { + [sym_comment] = STATE(375), + [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(376)] = { + [sym_comment] = STATE(376), + [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_QMARK2] = ACTIONS(1498), + [anon_sym_BANG] = 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(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(377)] = { - [sym__expr_parenthesized_immediate] = STATE(692), - [sym__immediate_decimal] = STATE(675), - [sym_val_variable] = STATE(692), + [sym_path] = STATE(425), [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(383), + [ts_builtin_sym_end] = ACTIONS(1517), + [anon_sym_EQ] = ACTIONS(1515), + [anon_sym_PLUS_EQ] = ACTIONS(1517), + [anon_sym_DASH_EQ] = ACTIONS(1517), + [anon_sym_STAR_EQ] = ACTIONS(1517), + [anon_sym_SLASH_EQ] = ACTIONS(1517), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1517), + [anon_sym_in] = ACTIONS(1517), + [sym__newline] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1517), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_err_GT_PIPE] = ACTIONS(1517), + [anon_sym_out_GT_PIPE] = ACTIONS(1517), + [anon_sym_e_GT_PIPE] = ACTIONS(1517), + [anon_sym_o_GT_PIPE] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1517), + [anon_sym_GT2] = ACTIONS(1515), + [anon_sym_DASH2] = ACTIONS(1515), + [anon_sym_STAR2] = ACTIONS(1515), + [anon_sym_and2] = ACTIONS(1517), + [anon_sym_xor2] = ACTIONS(1517), + [anon_sym_or2] = ACTIONS(1517), + [anon_sym_not_DASHin2] = ACTIONS(1517), + [anon_sym_has2] = ACTIONS(1517), + [anon_sym_not_DASHhas2] = ACTIONS(1517), + [anon_sym_starts_DASHwith2] = ACTIONS(1517), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1517), + [anon_sym_ends_DASHwith2] = ACTIONS(1517), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1517), + [anon_sym_EQ_EQ2] = ACTIONS(1517), + [anon_sym_BANG_EQ2] = ACTIONS(1517), + [anon_sym_LT2] = ACTIONS(1515), + [anon_sym_LT_EQ2] = ACTIONS(1517), + [anon_sym_GT_EQ2] = ACTIONS(1517), + [anon_sym_EQ_TILDE2] = ACTIONS(1517), + [anon_sym_BANG_TILDE2] = ACTIONS(1517), + [anon_sym_like2] = ACTIONS(1517), + [anon_sym_not_DASHlike2] = ACTIONS(1517), + [anon_sym_STAR_STAR2] = ACTIONS(1517), + [anon_sym_PLUS_PLUS2] = ACTIONS(1515), + [anon_sym_SLASH2] = ACTIONS(1515), + [anon_sym_mod2] = ACTIONS(1517), + [anon_sym_SLASH_SLASH2] = ACTIONS(1517), + [anon_sym_PLUS2] = ACTIONS(1515), + [anon_sym_bit_DASHshl2] = ACTIONS(1517), + [anon_sym_bit_DASHshr2] = ACTIONS(1517), + [anon_sym_bit_DASHand2] = ACTIONS(1517), + [anon_sym_bit_DASHxor2] = ACTIONS(1517), + [anon_sym_bit_DASHor2] = ACTIONS(1517), + [anon_sym_DOT_DOT2] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1517), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1517), + [anon_sym_DOT2] = ACTIONS(1584), + [anon_sym_err_GT] = ACTIONS(1515), + [anon_sym_out_GT] = ACTIONS(1515), + [anon_sym_e_GT] = ACTIONS(1515), + [anon_sym_o_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT] = ACTIONS(1515), + [anon_sym_err_GT_GT] = ACTIONS(1517), + [anon_sym_out_GT_GT] = ACTIONS(1517), + [anon_sym_e_GT_GT] = ACTIONS(1517), + [anon_sym_o_GT_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(3), }, [STATE(378)] = { - [sym__expr_parenthesized_immediate] = STATE(698), - [sym__immediate_decimal] = STATE(705), - [sym_val_variable] = STATE(698), + [sym_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4550), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(4942), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [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), + [aux_sym__types_body_repeat1] = STATE(459), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(515), + [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(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), + [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_QMARK2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DOT2] = ACTIONS(1504), + [anon_sym_err_GT] = ACTIONS(1504), + [anon_sym_out_GT] = ACTIONS(1504), + [anon_sym_e_GT] = ACTIONS(1504), + [anon_sym_o_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT] = ACTIONS(1504), + [anon_sym_err_GT_GT] = ACTIONS(1506), + [anon_sym_out_GT_GT] = ACTIONS(1506), + [anon_sym_e_GT_GT] = ACTIONS(1506), + [anon_sym_o_GT_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(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_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4550), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(5249), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [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), + [aux_sym__types_body_repeat1] = STATE(459), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(515), + [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(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(381)] = { - [sym_path] = STATE(417), + [sym_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4550), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(4849), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [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), + [aux_sym__types_body_repeat1] = STATE(459), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(515), + [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(1557), + [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_path] = STATE(417), + [sym_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4550), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(5016), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [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), + [aux_sym__types_body_repeat1] = STATE(459), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(515), + [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(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_path] = STATE(425), [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(383), + [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(1596), + [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(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), + [ts_builtin_sym_end] = ACTIONS(1502), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_PLUS_EQ] = ACTIONS(1502), + [anon_sym_DASH_EQ] = ACTIONS(1502), + [anon_sym_STAR_EQ] = ACTIONS(1502), + [anon_sym_SLASH_EQ] = ACTIONS(1502), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1502), + [anon_sym_in] = ACTIONS(1502), + [sym__newline] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_err_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_GT_PIPE] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), + [anon_sym_GT2] = ACTIONS(1500), + [anon_sym_DASH2] = ACTIONS(1500), + [anon_sym_STAR2] = ACTIONS(1500), + [anon_sym_and2] = ACTIONS(1502), + [anon_sym_xor2] = ACTIONS(1502), + [anon_sym_or2] = ACTIONS(1502), + [anon_sym_not_DASHin2] = ACTIONS(1502), + [anon_sym_has2] = ACTIONS(1502), + [anon_sym_not_DASHhas2] = ACTIONS(1502), + [anon_sym_starts_DASHwith2] = ACTIONS(1502), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1502), + [anon_sym_ends_DASHwith2] = ACTIONS(1502), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1502), + [anon_sym_EQ_EQ2] = ACTIONS(1502), + [anon_sym_BANG_EQ2] = ACTIONS(1502), + [anon_sym_LT2] = ACTIONS(1500), + [anon_sym_LT_EQ2] = ACTIONS(1502), + [anon_sym_GT_EQ2] = ACTIONS(1502), + [anon_sym_EQ_TILDE2] = ACTIONS(1502), + [anon_sym_BANG_TILDE2] = ACTIONS(1502), + [anon_sym_like2] = ACTIONS(1502), + [anon_sym_not_DASHlike2] = ACTIONS(1502), + [anon_sym_STAR_STAR2] = ACTIONS(1502), + [anon_sym_PLUS_PLUS2] = ACTIONS(1500), + [anon_sym_SLASH2] = ACTIONS(1500), + [anon_sym_mod2] = ACTIONS(1502), + [anon_sym_SLASH_SLASH2] = ACTIONS(1502), + [anon_sym_PLUS2] = ACTIONS(1500), + [anon_sym_bit_DASHshl2] = ACTIONS(1502), + [anon_sym_bit_DASHshr2] = ACTIONS(1502), + [anon_sym_bit_DASHand2] = ACTIONS(1502), + [anon_sym_bit_DASHxor2] = ACTIONS(1502), + [anon_sym_bit_DASHor2] = ACTIONS(1502), + [anon_sym_DOT_DOT2] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), + [anon_sym_QMARK2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DOT2] = ACTIONS(1500), + [anon_sym_err_GT] = ACTIONS(1500), + [anon_sym_out_GT] = ACTIONS(1500), + [anon_sym_e_GT] = ACTIONS(1500), + [anon_sym_o_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT] = ACTIONS(1500), + [anon_sym_err_GT_GT] = ACTIONS(1502), + [anon_sym_out_GT_GT] = ACTIONS(1502), + [anon_sym_e_GT_GT] = ACTIONS(1502), + [anon_sym_o_GT_GT] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(385)] = { + [sym__expr_parenthesized_immediate] = STATE(690), + [sym__immediate_decimal] = STATE(672), + [sym_val_variable] = STATE(690), [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_in] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1603), + [anon_sym_DASH2] = ACTIONS(1603), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1603), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_has2] = ACTIONS(1599), + [anon_sym_not_DASHhas2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1603), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_like2] = ACTIONS(1599), + [anon_sym_not_DASHlike2] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1603), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1603), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(1607), + [aux_sym__immediate_decimal_token1] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1611), + [anon_sym_err_GT] = ACTIONS(1603), + [anon_sym_out_GT] = ACTIONS(1603), + [anon_sym_e_GT] = ACTIONS(1603), + [anon_sym_o_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT] = ACTIONS(1603), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [STATE(386)] = { - [sym_expr_parenthesized] = STATE(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__expr_parenthesized_immediate] = STATE(690), + [sym__immediate_decimal] = STATE(511), + [sym_val_variable] = STATE(690), [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), + [anon_sym_in] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1603), + [anon_sym_DASH2] = ACTIONS(1603), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1603), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_has2] = ACTIONS(1599), + [anon_sym_not_DASHhas2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1603), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_like2] = ACTIONS(1599), + [anon_sym_not_DASHlike2] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1603), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1603), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(1613), + [aux_sym__immediate_decimal_token1] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1611), + [anon_sym_err_GT] = ACTIONS(1603), + [anon_sym_out_GT] = ACTIONS(1603), + [anon_sym_e_GT] = ACTIONS(1603), + [anon_sym_o_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT] = ACTIONS(1603), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), + [sym__unquoted_pattern] = ACTIONS(1615), + [anon_sym_POUND] = ACTIONS(3), }, [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), - [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(1541), + [anon_sym_PLUS_EQ] = ACTIONS(1543), + [anon_sym_DASH_EQ] = ACTIONS(1543), + [anon_sym_STAR_EQ] = ACTIONS(1543), + [anon_sym_SLASH_EQ] = ACTIONS(1543), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1543), + [anon_sym_in] = ACTIONS(1543), + [sym__newline] = ACTIONS(1543), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1543), + [anon_sym_err_GT_PIPE] = ACTIONS(1543), + [anon_sym_out_GT_PIPE] = ACTIONS(1543), + [anon_sym_e_GT_PIPE] = ACTIONS(1543), + [anon_sym_o_GT_PIPE] = ACTIONS(1543), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1543), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1543), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1543), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1543), + [anon_sym_RPAREN] = ACTIONS(1543), + [anon_sym_GT2] = ACTIONS(1541), + [anon_sym_DASH2] = ACTIONS(1541), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_STAR2] = ACTIONS(1541), + [anon_sym_and2] = ACTIONS(1543), + [anon_sym_xor2] = ACTIONS(1543), + [anon_sym_or2] = ACTIONS(1543), + [anon_sym_not_DASHin2] = ACTIONS(1543), + [anon_sym_has2] = ACTIONS(1543), + [anon_sym_not_DASHhas2] = ACTIONS(1543), + [anon_sym_starts_DASHwith2] = ACTIONS(1543), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1543), + [anon_sym_ends_DASHwith2] = ACTIONS(1543), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1543), + [anon_sym_EQ_EQ2] = ACTIONS(1543), + [anon_sym_BANG_EQ2] = ACTIONS(1543), + [anon_sym_LT2] = ACTIONS(1541), + [anon_sym_LT_EQ2] = ACTIONS(1543), + [anon_sym_GT_EQ2] = ACTIONS(1543), + [anon_sym_EQ_TILDE2] = ACTIONS(1543), + [anon_sym_BANG_TILDE2] = ACTIONS(1543), + [anon_sym_like2] = ACTIONS(1543), + [anon_sym_not_DASHlike2] = ACTIONS(1543), + [anon_sym_STAR_STAR2] = ACTIONS(1543), + [anon_sym_PLUS_PLUS2] = ACTIONS(1541), + [anon_sym_SLASH2] = ACTIONS(1541), + [anon_sym_mod2] = ACTIONS(1543), + [anon_sym_SLASH_SLASH2] = ACTIONS(1543), + [anon_sym_PLUS2] = ACTIONS(1541), + [anon_sym_bit_DASHshl2] = ACTIONS(1543), + [anon_sym_bit_DASHshr2] = ACTIONS(1543), + [anon_sym_bit_DASHand2] = ACTIONS(1543), + [anon_sym_bit_DASHxor2] = ACTIONS(1543), + [anon_sym_bit_DASHor2] = ACTIONS(1543), + [anon_sym_DOT_DOT2] = ACTIONS(1541), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1543), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1543), + [anon_sym_COLON2] = ACTIONS(1543), + [anon_sym_DOT2] = ACTIONS(1541), + [anon_sym_err_GT] = ACTIONS(1541), + [anon_sym_out_GT] = ACTIONS(1541), + [anon_sym_e_GT] = ACTIONS(1541), + [anon_sym_o_GT] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT] = ACTIONS(1541), + [anon_sym_err_GT_GT] = ACTIONS(1543), + [anon_sym_out_GT_GT] = ACTIONS(1543), + [anon_sym_e_GT_GT] = ACTIONS(1543), + [anon_sym_o_GT_GT] = ACTIONS(1543), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1543), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1543), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1543), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1543), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(388)] = { + [sym_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4550), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(4869), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [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), + [aux_sym__types_body_repeat1] = STATE(459), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(515), + [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(1559), + [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__expr_parenthesized_immediate] = STATE(698), - [sym__immediate_decimal] = STATE(645), - [sym_val_variable] = STATE(698), + [sym__expr_parenthesized_immediate] = STATE(688), + [sym__immediate_decimal] = STATE(689), + [sym_val_variable] = STATE(688), [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_in] = ACTIONS(1617), + [sym__newline] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1617), + [anon_sym_PIPE] = ACTIONS(1617), + [anon_sym_err_GT_PIPE] = ACTIONS(1617), + [anon_sym_out_GT_PIPE] = ACTIONS(1617), + [anon_sym_e_GT_PIPE] = ACTIONS(1617), + [anon_sym_o_GT_PIPE] = ACTIONS(1617), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1617), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1617), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1617), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1617), + [anon_sym_RPAREN] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1619), + [anon_sym_DASH2] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_RBRACE] = ACTIONS(1617), + [anon_sym_STAR2] = ACTIONS(1619), + [anon_sym_and2] = ACTIONS(1617), + [anon_sym_xor2] = ACTIONS(1617), + [anon_sym_or2] = ACTIONS(1617), + [anon_sym_not_DASHin2] = ACTIONS(1617), + [anon_sym_has2] = ACTIONS(1617), + [anon_sym_not_DASHhas2] = ACTIONS(1617), + [anon_sym_starts_DASHwith2] = ACTIONS(1617), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1617), + [anon_sym_ends_DASHwith2] = ACTIONS(1617), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1617), + [anon_sym_EQ_EQ2] = ACTIONS(1617), + [anon_sym_BANG_EQ2] = ACTIONS(1617), + [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT_EQ2] = ACTIONS(1617), + [anon_sym_GT_EQ2] = ACTIONS(1617), + [anon_sym_EQ_TILDE2] = ACTIONS(1617), + [anon_sym_BANG_TILDE2] = ACTIONS(1617), + [anon_sym_like2] = ACTIONS(1617), + [anon_sym_not_DASHlike2] = ACTIONS(1617), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1617), + [anon_sym_PLUS_PLUS2] = ACTIONS(1617), + [anon_sym_SLASH2] = ACTIONS(1619), + [anon_sym_mod2] = ACTIONS(1617), + [anon_sym_SLASH_SLASH2] = ACTIONS(1617), + [anon_sym_PLUS2] = ACTIONS(1619), + [anon_sym_bit_DASHshl2] = ACTIONS(1617), + [anon_sym_bit_DASHshr2] = ACTIONS(1617), + [anon_sym_bit_DASHand2] = ACTIONS(1617), + [anon_sym_bit_DASHxor2] = ACTIONS(1617), + [anon_sym_bit_DASHor2] = ACTIONS(1617), + [anon_sym_DOT] = ACTIONS(1621), + [aux_sym__immediate_decimal_token1] = ACTIONS(1609), + [aux_sym__immediate_decimal_token2] = ACTIONS(1609), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1611), + [anon_sym_err_GT] = ACTIONS(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(1617), + [anon_sym_out_GT_GT] = ACTIONS(1617), + [anon_sym_e_GT_GT] = ACTIONS(1617), + [anon_sym_o_GT_GT] = ACTIONS(1617), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1617), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1617), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1617), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1617), [anon_sym_POUND] = ACTIONS(3), }, [STATE(390)] = { [sym_comment] = STATE(390), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_PLUS_EQ] = ACTIONS(1537), - [anon_sym_DASH_EQ] = ACTIONS(1537), - [anon_sym_STAR_EQ] = ACTIONS(1537), - [anon_sym_SLASH_EQ] = ACTIONS(1537), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_COLON2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [anon_sym_EQ] = ACTIONS(1537), + [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_RPAREN] = ACTIONS(1539), + [anon_sym_GT2] = ACTIONS(1537), + [anon_sym_DASH2] = ACTIONS(1537), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_STAR2] = ACTIONS(1537), + [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(1537), + [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(1537), + [anon_sym_SLASH2] = ACTIONS(1537), + [anon_sym_mod2] = ACTIONS(1539), + [anon_sym_SLASH_SLASH2] = ACTIONS(1539), + [anon_sym_PLUS2] = ACTIONS(1537), + [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(1537), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1539), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1539), + [anon_sym_COLON2] = ACTIONS(1539), + [anon_sym_DOT2] = ACTIONS(1537), + [anon_sym_err_GT] = ACTIONS(1537), + [anon_sym_out_GT] = ACTIONS(1537), + [anon_sym_e_GT] = ACTIONS(1537), + [anon_sym_o_GT] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT] = ACTIONS(1537), + [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(3), }, [STATE(391)] = { + [sym_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4550), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(4883), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [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_repeat1] = STATE(459), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(515), + [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(1623), + [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(392)] = { [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), + [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(393)] = { [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), + [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(394)] = { + [sym_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4550), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(5018), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [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(459), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(515), + [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(1625), + [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_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4550), + [sym__spread_list] = STATE(4821), + [sym_list_body] = STATE(5225), + [sym_val_entry] = STATE(4595), + [sym_val_record] = STATE(4550), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [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_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(459), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(515), + [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(1549), + [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(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), + [anon_sym_EQ] = ACTIONS(1533), + [anon_sym_PLUS_EQ] = ACTIONS(1535), + [anon_sym_DASH_EQ] = ACTIONS(1535), + [anon_sym_STAR_EQ] = ACTIONS(1535), + [anon_sym_SLASH_EQ] = ACTIONS(1535), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1535), + [anon_sym_in] = ACTIONS(1535), + [sym__newline] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_err_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_GT_PIPE] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), + [anon_sym_RPAREN] = ACTIONS(1535), + [anon_sym_GT2] = ACTIONS(1533), + [anon_sym_DASH2] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1535), + [anon_sym_STAR2] = ACTIONS(1533), + [anon_sym_and2] = ACTIONS(1535), + [anon_sym_xor2] = ACTIONS(1535), + [anon_sym_or2] = ACTIONS(1535), + [anon_sym_not_DASHin2] = ACTIONS(1535), + [anon_sym_has2] = ACTIONS(1535), + [anon_sym_not_DASHhas2] = ACTIONS(1535), + [anon_sym_starts_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), + [anon_sym_ends_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), + [anon_sym_EQ_EQ2] = ACTIONS(1535), + [anon_sym_BANG_EQ2] = ACTIONS(1535), + [anon_sym_LT2] = ACTIONS(1533), + [anon_sym_LT_EQ2] = ACTIONS(1535), + [anon_sym_GT_EQ2] = ACTIONS(1535), + [anon_sym_EQ_TILDE2] = ACTIONS(1535), + [anon_sym_BANG_TILDE2] = ACTIONS(1535), + [anon_sym_like2] = ACTIONS(1535), + [anon_sym_not_DASHlike2] = ACTIONS(1535), + [anon_sym_STAR_STAR2] = ACTIONS(1535), + [anon_sym_PLUS_PLUS2] = ACTIONS(1533), + [anon_sym_SLASH2] = ACTIONS(1533), + [anon_sym_mod2] = ACTIONS(1535), + [anon_sym_SLASH_SLASH2] = ACTIONS(1535), + [anon_sym_PLUS2] = ACTIONS(1533), + [anon_sym_bit_DASHshl2] = ACTIONS(1535), + [anon_sym_bit_DASHshr2] = ACTIONS(1535), + [anon_sym_bit_DASHand2] = ACTIONS(1535), + [anon_sym_bit_DASHxor2] = ACTIONS(1535), + [anon_sym_bit_DASHor2] = ACTIONS(1535), + [anon_sym_DOT_DOT2] = ACTIONS(1533), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1535), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1535), + [anon_sym_COLON2] = ACTIONS(1535), + [anon_sym_DOT2] = ACTIONS(1533), + [anon_sym_err_GT] = ACTIONS(1533), + [anon_sym_out_GT] = ACTIONS(1533), + [anon_sym_e_GT] = ACTIONS(1533), + [anon_sym_o_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT] = ACTIONS(1533), + [anon_sym_err_GT_GT] = ACTIONS(1535), + [anon_sym_out_GT_GT] = ACTIONS(1535), + [anon_sym_e_GT_GT] = ACTIONS(1535), + [anon_sym_o_GT_GT] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(397)] = { [sym_comment] = STATE(397), - [aux_sym__types_body_repeat2] = STATE(1475), - [anon_sym_EQ] = ACTIONS(1617), - [anon_sym_PLUS_EQ] = ACTIONS(1617), - [anon_sym_DASH_EQ] = ACTIONS(1617), - [anon_sym_STAR_EQ] = ACTIONS(1617), - [anon_sym_SLASH_EQ] = ACTIONS(1617), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1617), - [anon_sym_in] = ACTIONS(1619), - [sym__newline] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_err_GT_PIPE] = ACTIONS(1619), - [anon_sym_out_GT_PIPE] = ACTIONS(1619), - [anon_sym_e_GT_PIPE] = ACTIONS(1619), - [anon_sym_o_GT_PIPE] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1619), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_RBRACE] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1619), - [anon_sym_xor2] = ACTIONS(1619), - [anon_sym_or2] = ACTIONS(1619), - [anon_sym_not_DASHin2] = ACTIONS(1619), - [anon_sym_has2] = ACTIONS(1619), - [anon_sym_not_DASHhas2] = ACTIONS(1619), - [anon_sym_starts_DASHwith2] = ACTIONS(1619), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1619), - [anon_sym_ends_DASHwith2] = ACTIONS(1619), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1619), - [anon_sym_EQ_EQ2] = ACTIONS(1619), - [anon_sym_BANG_EQ2] = ACTIONS(1619), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1619), - [anon_sym_GT_EQ2] = ACTIONS(1619), - [anon_sym_EQ_TILDE2] = ACTIONS(1619), - [anon_sym_BANG_TILDE2] = ACTIONS(1619), - [anon_sym_like2] = ACTIONS(1619), - [anon_sym_not_DASHlike2] = ACTIONS(1619), - [anon_sym_STAR_STAR2] = ACTIONS(1619), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1619), - [anon_sym_SLASH_SLASH2] = ACTIONS(1619), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1619), - [anon_sym_bit_DASHshr2] = ACTIONS(1619), - [anon_sym_bit_DASHand2] = ACTIONS(1619), - [anon_sym_bit_DASHxor2] = ACTIONS(1619), - [anon_sym_bit_DASHor2] = ACTIONS(1619), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [sym__entry_separator] = ACTIONS(1627), - [anon_sym_COLON2] = ACTIONS(1629), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1619), - [anon_sym_out_GT_GT] = ACTIONS(1619), - [anon_sym_e_GT_GT] = ACTIONS(1619), - [anon_sym_o_GT_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1619), + [aux_sym__types_body_repeat2] = STATE(1460), + [anon_sym_EQ] = ACTIONS(1627), + [anon_sym_PLUS_EQ] = ACTIONS(1627), + [anon_sym_DASH_EQ] = ACTIONS(1627), + [anon_sym_STAR_EQ] = ACTIONS(1627), + [anon_sym_SLASH_EQ] = ACTIONS(1627), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1627), + [anon_sym_in] = ACTIONS(1629), + [sym__newline] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_err_GT_PIPE] = ACTIONS(1629), + [anon_sym_out_GT_PIPE] = ACTIONS(1629), + [anon_sym_e_GT_PIPE] = ACTIONS(1629), + [anon_sym_o_GT_PIPE] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), + [anon_sym_GT2] = ACTIONS(1629), + [anon_sym_DASH2] = ACTIONS(1629), + [anon_sym_RBRACE] = ACTIONS(1631), + [anon_sym_STAR2] = ACTIONS(1629), + [anon_sym_and2] = ACTIONS(1629), + [anon_sym_xor2] = ACTIONS(1629), + [anon_sym_or2] = ACTIONS(1629), + [anon_sym_not_DASHin2] = ACTIONS(1629), + [anon_sym_has2] = ACTIONS(1629), + [anon_sym_not_DASHhas2] = ACTIONS(1629), + [anon_sym_starts_DASHwith2] = ACTIONS(1629), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1629), + [anon_sym_ends_DASHwith2] = ACTIONS(1629), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1629), + [anon_sym_EQ_EQ2] = ACTIONS(1629), + [anon_sym_BANG_EQ2] = ACTIONS(1629), + [anon_sym_LT2] = ACTIONS(1629), + [anon_sym_LT_EQ2] = ACTIONS(1629), + [anon_sym_GT_EQ2] = ACTIONS(1629), + [anon_sym_EQ_TILDE2] = ACTIONS(1629), + [anon_sym_BANG_TILDE2] = ACTIONS(1629), + [anon_sym_like2] = ACTIONS(1629), + [anon_sym_not_DASHlike2] = ACTIONS(1629), + [anon_sym_STAR_STAR2] = ACTIONS(1629), + [anon_sym_PLUS_PLUS2] = ACTIONS(1629), + [anon_sym_SLASH2] = ACTIONS(1629), + [anon_sym_mod2] = ACTIONS(1629), + [anon_sym_SLASH_SLASH2] = ACTIONS(1629), + [anon_sym_PLUS2] = ACTIONS(1629), + [anon_sym_bit_DASHshl2] = ACTIONS(1629), + [anon_sym_bit_DASHshr2] = ACTIONS(1629), + [anon_sym_bit_DASHand2] = ACTIONS(1629), + [anon_sym_bit_DASHxor2] = ACTIONS(1629), + [anon_sym_bit_DASHor2] = ACTIONS(1629), + [anon_sym_DOT_DOT2] = ACTIONS(1633), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), + [sym__entry_separator] = ACTIONS(1637), + [anon_sym_COLON2] = ACTIONS(1639), + [anon_sym_err_GT] = ACTIONS(1629), + [anon_sym_out_GT] = ACTIONS(1629), + [anon_sym_e_GT] = ACTIONS(1629), + [anon_sym_o_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT] = ACTIONS(1629), + [anon_sym_err_GT_GT] = ACTIONS(1629), + [anon_sym_out_GT_GT] = ACTIONS(1629), + [anon_sym_e_GT_GT] = ACTIONS(1629), + [anon_sym_o_GT_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1629), [anon_sym_POUND] = ACTIONS(103), }, [STATE(398)] = { - [sym__expr_parenthesized_immediate] = STATE(742), - [sym__immediate_decimal] = STATE(959), - [sym_val_variable] = STATE(742), [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), + [ts_builtin_sym_end] = ACTIONS(1458), + [anon_sym_EQ] = ACTIONS(1456), + [anon_sym_PLUS_EQ] = ACTIONS(1458), + [anon_sym_DASH_EQ] = ACTIONS(1458), + [anon_sym_STAR_EQ] = ACTIONS(1458), + [anon_sym_SLASH_EQ] = ACTIONS(1458), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1458), + [anon_sym_in] = ACTIONS(1458), + [sym__newline] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_err_GT_PIPE] = ACTIONS(1458), + [anon_sym_out_GT_PIPE] = ACTIONS(1458), + [anon_sym_e_GT_PIPE] = ACTIONS(1458), + [anon_sym_o_GT_PIPE] = ACTIONS(1458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1458), + [anon_sym_GT2] = ACTIONS(1456), + [anon_sym_DASH2] = ACTIONS(1456), + [anon_sym_STAR2] = ACTIONS(1456), + [anon_sym_and2] = ACTIONS(1458), + [anon_sym_xor2] = ACTIONS(1458), + [anon_sym_or2] = ACTIONS(1458), + [anon_sym_not_DASHin2] = ACTIONS(1458), + [anon_sym_has2] = ACTIONS(1458), + [anon_sym_not_DASHhas2] = ACTIONS(1458), + [anon_sym_starts_DASHwith2] = ACTIONS(1458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1458), + [anon_sym_ends_DASHwith2] = ACTIONS(1458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1458), + [anon_sym_EQ_EQ2] = ACTIONS(1458), + [anon_sym_BANG_EQ2] = ACTIONS(1458), + [anon_sym_LT2] = ACTIONS(1456), + [anon_sym_LT_EQ2] = ACTIONS(1458), + [anon_sym_GT_EQ2] = ACTIONS(1458), + [anon_sym_EQ_TILDE2] = ACTIONS(1458), + [anon_sym_BANG_TILDE2] = ACTIONS(1458), + [anon_sym_like2] = ACTIONS(1458), + [anon_sym_not_DASHlike2] = ACTIONS(1458), + [anon_sym_STAR_STAR2] = ACTIONS(1458), + [anon_sym_PLUS_PLUS2] = ACTIONS(1456), + [anon_sym_SLASH2] = ACTIONS(1456), + [anon_sym_mod2] = ACTIONS(1458), + [anon_sym_SLASH_SLASH2] = ACTIONS(1458), + [anon_sym_PLUS2] = ACTIONS(1456), + [anon_sym_bit_DASHshl2] = ACTIONS(1458), + [anon_sym_bit_DASHshr2] = ACTIONS(1458), + [anon_sym_bit_DASHand2] = ACTIONS(1458), + [anon_sym_bit_DASHxor2] = ACTIONS(1458), + [anon_sym_bit_DASHor2] = ACTIONS(1458), + [anon_sym_DOT_DOT2] = ACTIONS(1456), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1458), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1641), + [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(399)] = { - [sym_cell_path] = STATE(466), - [sym_path] = STATE(441), + [sym__path_suffix] = STATE(448), [sym_comment] = STATE(399), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_COLON2] = ACTIONS(1641), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [anon_sym_in] = ACTIONS(1444), + [sym__newline] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_err_GT_PIPE] = ACTIONS(1444), + [anon_sym_out_GT_PIPE] = ACTIONS(1444), + [anon_sym_e_GT_PIPE] = ACTIONS(1444), + [anon_sym_o_GT_PIPE] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1444), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_GT2] = ACTIONS(1442), + [anon_sym_DASH2] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_STAR2] = ACTIONS(1442), + [anon_sym_and2] = ACTIONS(1444), + [anon_sym_xor2] = ACTIONS(1444), + [anon_sym_or2] = ACTIONS(1444), + [anon_sym_not_DASHin2] = ACTIONS(1444), + [anon_sym_has2] = ACTIONS(1444), + [anon_sym_not_DASHhas2] = ACTIONS(1444), + [anon_sym_starts_DASHwith2] = ACTIONS(1444), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1444), + [anon_sym_ends_DASHwith2] = ACTIONS(1444), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1444), + [anon_sym_EQ_EQ2] = ACTIONS(1444), + [anon_sym_BANG_EQ2] = ACTIONS(1444), + [anon_sym_LT2] = ACTIONS(1442), + [anon_sym_LT_EQ2] = ACTIONS(1444), + [anon_sym_GT_EQ2] = ACTIONS(1444), + [anon_sym_EQ_TILDE2] = ACTIONS(1444), + [anon_sym_BANG_TILDE2] = ACTIONS(1444), + [anon_sym_like2] = ACTIONS(1444), + [anon_sym_not_DASHlike2] = ACTIONS(1444), + [anon_sym_STAR_STAR2] = ACTIONS(1444), + [anon_sym_PLUS_PLUS2] = ACTIONS(1444), + [anon_sym_SLASH2] = ACTIONS(1442), + [anon_sym_mod2] = ACTIONS(1444), + [anon_sym_SLASH_SLASH2] = ACTIONS(1444), + [anon_sym_PLUS2] = ACTIONS(1442), + [anon_sym_bit_DASHshl2] = ACTIONS(1444), + [anon_sym_bit_DASHshr2] = ACTIONS(1444), + [anon_sym_bit_DASHand2] = ACTIONS(1444), + [anon_sym_bit_DASHxor2] = ACTIONS(1444), + [anon_sym_bit_DASHor2] = ACTIONS(1444), + [anon_sym_DOT_DOT2] = ACTIONS(1442), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), + [anon_sym_COLON2] = ACTIONS(1444), + [anon_sym_QMARK2] = ACTIONS(1643), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_DOT2] = ACTIONS(1442), + [anon_sym_err_GT] = ACTIONS(1442), + [anon_sym_out_GT] = ACTIONS(1442), + [anon_sym_e_GT] = ACTIONS(1442), + [anon_sym_o_GT] = ACTIONS(1442), + [anon_sym_err_PLUSout_GT] = ACTIONS(1442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1442), + [anon_sym_o_PLUSe_GT] = ACTIONS(1442), + [anon_sym_e_PLUSo_GT] = ACTIONS(1442), + [anon_sym_err_GT_GT] = ACTIONS(1444), + [anon_sym_out_GT_GT] = ACTIONS(1444), + [anon_sym_e_GT_GT] = ACTIONS(1444), + [anon_sym_o_GT_GT] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1444), [anon_sym_POUND] = ACTIONS(3), }, [STATE(400)] = { - [sym__expr_parenthesized_immediate] = STATE(721), - [sym__immediate_decimal] = STATE(722), - [sym_val_variable] = STATE(721), + [sym__expr_parenthesized_immediate] = STATE(780), + [sym__immediate_decimal] = STATE(961), + [sym_val_variable] = STATE(780), [sym_comment] = STATE(400), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), + [anon_sym_in] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1603), + [anon_sym_DASH2] = ACTIONS(1603), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1603), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_has2] = ACTIONS(1599), + [anon_sym_not_DASHhas2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1603), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_like2] = ACTIONS(1599), + [anon_sym_not_DASHlike2] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1603), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1603), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), [aux_sym__immediate_decimal_token1] = ACTIONS(1647), [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [aux_sym__immediate_decimal_token3] = ACTIONS(1649), + [aux_sym__immediate_decimal_token4] = ACTIONS(1649), + [anon_sym_err_GT] = ACTIONS(1603), + [anon_sym_out_GT] = ACTIONS(1603), + [anon_sym_e_GT] = ACTIONS(1603), + [anon_sym_o_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT] = ACTIONS(1603), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), + [sym__unquoted_pattern] = ACTIONS(1615), [anon_sym_POUND] = ACTIONS(3), }, [STATE(401)] = { - [sym__expr_parenthesized_immediate] = STATE(929), - [sym__immediate_decimal] = STATE(673), - [sym_val_variable] = STATE(929), + [sym__expr_parenthesized_immediate] = STATE(958), + [sym__immediate_decimal] = STATE(675), + [sym_val_variable] = STATE(958), [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), + [ts_builtin_sym_end] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_GT2] = ACTIONS(1603), + [anon_sym_DASH2] = ACTIONS(1603), + [anon_sym_STAR2] = ACTIONS(1603), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_has2] = ACTIONS(1599), + [anon_sym_not_DASHhas2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1603), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_like2] = ACTIONS(1599), + [anon_sym_not_DASHlike2] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1603), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1603), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(1655), + [aux_sym__immediate_decimal_token1] = ACTIONS(1657), + [aux_sym__immediate_decimal_token2] = ACTIONS(1657), + [aux_sym__immediate_decimal_token3] = ACTIONS(1659), + [aux_sym__immediate_decimal_token4] = ACTIONS(1659), + [anon_sym_err_GT] = ACTIONS(1603), + [anon_sym_out_GT] = ACTIONS(1603), + [anon_sym_e_GT] = ACTIONS(1603), + [anon_sym_o_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT] = ACTIONS(1603), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), [sym__unquoted_pattern] = ACTIONS(1615), [anon_sym_POUND] = ACTIONS(3), }, [STATE(402)] = { + [sym__expr_parenthesized_immediate] = STATE(717), + [sym__immediate_decimal] = STATE(718), + [sym_val_variable] = STATE(717), [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_in] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_RPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1663), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_has2] = ACTIONS(1661), + [anon_sym_not_DASHhas2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1663), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_like2] = ACTIONS(1661), + [anon_sym_not_DASHlike2] = ACTIONS(1661), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1663), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [aux_sym__immediate_decimal_token1] = ACTIONS(1665), + [aux_sym__immediate_decimal_token2] = ACTIONS(1665), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1611), + [anon_sym_err_GT] = ACTIONS(1663), + [anon_sym_out_GT] = ACTIONS(1663), + [anon_sym_e_GT] = ACTIONS(1663), + [anon_sym_o_GT] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT] = ACTIONS(1663), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), [anon_sym_POUND] = ACTIONS(3), }, [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), + [ts_builtin_sym_end] = ACTIONS(1458), + [anon_sym_EQ] = ACTIONS(1456), + [anon_sym_PLUS_EQ] = ACTIONS(1458), + [anon_sym_DASH_EQ] = ACTIONS(1458), + [anon_sym_STAR_EQ] = ACTIONS(1458), + [anon_sym_SLASH_EQ] = ACTIONS(1458), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1458), + [anon_sym_in] = ACTIONS(1458), + [sym__newline] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_err_GT_PIPE] = ACTIONS(1458), + [anon_sym_out_GT_PIPE] = ACTIONS(1458), + [anon_sym_e_GT_PIPE] = ACTIONS(1458), + [anon_sym_o_GT_PIPE] = ACTIONS(1458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1458), + [anon_sym_GT2] = ACTIONS(1456), + [anon_sym_DASH2] = ACTIONS(1456), + [anon_sym_STAR2] = ACTIONS(1456), + [anon_sym_and2] = ACTIONS(1458), + [anon_sym_xor2] = ACTIONS(1458), + [anon_sym_or2] = ACTIONS(1458), + [anon_sym_not_DASHin2] = ACTIONS(1458), + [anon_sym_has2] = ACTIONS(1458), + [anon_sym_not_DASHhas2] = ACTIONS(1458), + [anon_sym_starts_DASHwith2] = ACTIONS(1458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1458), + [anon_sym_ends_DASHwith2] = ACTIONS(1458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1458), + [anon_sym_EQ_EQ2] = ACTIONS(1458), + [anon_sym_BANG_EQ2] = ACTIONS(1458), + [anon_sym_LT2] = ACTIONS(1456), + [anon_sym_LT_EQ2] = ACTIONS(1458), + [anon_sym_GT_EQ2] = ACTIONS(1458), + [anon_sym_EQ_TILDE2] = ACTIONS(1458), + [anon_sym_BANG_TILDE2] = ACTIONS(1458), + [anon_sym_like2] = ACTIONS(1458), + [anon_sym_not_DASHlike2] = ACTIONS(1458), + [anon_sym_STAR_STAR2] = ACTIONS(1458), + [anon_sym_PLUS_PLUS2] = ACTIONS(1456), + [anon_sym_SLASH2] = ACTIONS(1456), + [anon_sym_mod2] = ACTIONS(1458), + [anon_sym_SLASH_SLASH2] = ACTIONS(1458), + [anon_sym_PLUS2] = ACTIONS(1456), + [anon_sym_bit_DASHshl2] = ACTIONS(1458), + [anon_sym_bit_DASHshr2] = ACTIONS(1458), + [anon_sym_bit_DASHand2] = ACTIONS(1458), + [anon_sym_bit_DASHxor2] = ACTIONS(1458), + [anon_sym_bit_DASHor2] = ACTIONS(1458), + [anon_sym_DOT_DOT2] = ACTIONS(1456), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1458), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1458), + [anon_sym_QMARK2] = ACTIONS(1667), + [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(404)] = { + [sym__expr_parenthesized_immediate] = STATE(722), + [sym__immediate_decimal] = STATE(723), + [sym_val_variable] = STATE(722), [sym_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [anon_sym_in] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1671), + [anon_sym_DASH2] = ACTIONS(1671), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1671), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_has2] = ACTIONS(1669), + [anon_sym_not_DASHhas2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1671), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_like2] = ACTIONS(1669), + [anon_sym_not_DASHlike2] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1671), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1671), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [aux_sym__immediate_decimal_token1] = ACTIONS(1665), + [aux_sym__immediate_decimal_token2] = ACTIONS(1665), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1611), + [anon_sym_err_GT] = ACTIONS(1671), + [anon_sym_out_GT] = ACTIONS(1671), + [anon_sym_e_GT] = ACTIONS(1671), + [anon_sym_o_GT] = ACTIONS(1671), + [anon_sym_err_PLUSout_GT] = ACTIONS(1671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1671), + [anon_sym_o_PLUSe_GT] = ACTIONS(1671), + [anon_sym_e_PLUSo_GT] = ACTIONS(1671), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), }, [STATE(405)] = { + [sym__expr_parenthesized_immediate] = STATE(724), + [sym__immediate_decimal] = STATE(725), + [sym_val_variable] = STATE(724), [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_in] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1673), + [anon_sym_RBRACE] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1675), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_has2] = ACTIONS(1673), + [anon_sym_not_DASHhas2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1675), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_like2] = ACTIONS(1673), + [anon_sym_not_DASHlike2] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1675), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1675), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [aux_sym__immediate_decimal_token1] = ACTIONS(1665), + [aux_sym__immediate_decimal_token2] = ACTIONS(1665), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1611), + [anon_sym_err_GT] = ACTIONS(1675), + [anon_sym_out_GT] = ACTIONS(1675), + [anon_sym_e_GT] = ACTIONS(1675), + [anon_sym_o_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT] = ACTIONS(1675), + [anon_sym_err_GT_GT] = ACTIONS(1673), + [anon_sym_out_GT_GT] = ACTIONS(1673), + [anon_sym_e_GT_GT] = ACTIONS(1673), + [anon_sym_o_GT_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), [anon_sym_POUND] = ACTIONS(3), }, [STATE(406)] = { - [sym__path_suffix] = STATE(437), + [sym__expr_parenthesized_immediate] = STATE(726), + [sym__immediate_decimal] = STATE(953), + [sym_val_variable] = STATE(726), [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_in] = ACTIONS(1677), + [sym__newline] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_err_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_GT_PIPE] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), + [anon_sym_RPAREN] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1679), + [anon_sym_DASH2] = ACTIONS(1679), + [anon_sym_LBRACE] = ACTIONS(1677), + [anon_sym_RBRACE] = ACTIONS(1677), + [anon_sym_STAR2] = ACTIONS(1679), + [anon_sym_and2] = ACTIONS(1677), + [anon_sym_xor2] = ACTIONS(1677), + [anon_sym_or2] = ACTIONS(1677), + [anon_sym_not_DASHin2] = ACTIONS(1677), + [anon_sym_has2] = ACTIONS(1677), + [anon_sym_not_DASHhas2] = ACTIONS(1677), + [anon_sym_starts_DASHwith2] = ACTIONS(1677), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1677), + [anon_sym_ends_DASHwith2] = ACTIONS(1677), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1677), + [anon_sym_EQ_EQ2] = ACTIONS(1677), + [anon_sym_BANG_EQ2] = ACTIONS(1677), + [anon_sym_LT2] = ACTIONS(1679), + [anon_sym_LT_EQ2] = ACTIONS(1677), + [anon_sym_GT_EQ2] = ACTIONS(1677), + [anon_sym_EQ_TILDE2] = ACTIONS(1677), + [anon_sym_BANG_TILDE2] = ACTIONS(1677), + [anon_sym_like2] = ACTIONS(1677), + [anon_sym_not_DASHlike2] = ACTIONS(1677), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1677), + [anon_sym_PLUS_PLUS2] = ACTIONS(1677), + [anon_sym_SLASH2] = ACTIONS(1679), + [anon_sym_mod2] = ACTIONS(1677), + [anon_sym_SLASH_SLASH2] = ACTIONS(1677), + [anon_sym_PLUS2] = ACTIONS(1679), + [anon_sym_bit_DASHshl2] = ACTIONS(1677), + [anon_sym_bit_DASHshr2] = ACTIONS(1677), + [anon_sym_bit_DASHand2] = ACTIONS(1677), + [anon_sym_bit_DASHxor2] = ACTIONS(1677), + [anon_sym_bit_DASHor2] = ACTIONS(1677), + [aux_sym__immediate_decimal_token1] = ACTIONS(1665), + [aux_sym__immediate_decimal_token2] = ACTIONS(1665), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1611), + [anon_sym_err_GT] = ACTIONS(1679), + [anon_sym_out_GT] = ACTIONS(1679), + [anon_sym_e_GT] = ACTIONS(1679), + [anon_sym_o_GT] = ACTIONS(1679), + [anon_sym_err_PLUSout_GT] = ACTIONS(1679), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1679), + [anon_sym_o_PLUSe_GT] = ACTIONS(1679), + [anon_sym_e_PLUSo_GT] = ACTIONS(1679), + [anon_sym_err_GT_GT] = ACTIONS(1677), + [anon_sym_out_GT_GT] = ACTIONS(1677), + [anon_sym_e_GT_GT] = ACTIONS(1677), + [anon_sym_o_GT_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), [anon_sym_POUND] = ACTIONS(3), }, [STATE(407)] = { - [sym__expr_parenthesized_immediate] = STATE(723), - [sym__immediate_decimal] = STATE(954), - [sym_val_variable] = STATE(723), + [sym_cell_path] = STATE(470), + [sym_path] = STATE(454), [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(429), + [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_GT2] = ACTIONS(1683), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1681), + [anon_sym_RBRACE] = ACTIONS(1681), + [anon_sym_EQ_GT] = 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_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), + [anon_sym_DOT_DOT2] = ACTIONS(1683), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1681), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1681), + [anon_sym_COLON2] = ACTIONS(1681), + [anon_sym_DOT2] = ACTIONS(1685), + [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(408)] = { - [sym__expr_parenthesized_immediate] = STATE(736), - [sym__immediate_decimal] = STATE(737), - [sym_val_variable] = STATE(736), + [sym_cell_path] = STATE(475), + [sym_path] = STATE(454), [sym_comment] = STATE(408), - [anon_sym_in] = ACTIONS(1667), - [sym__newline] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1667), - [anon_sym_err_GT_PIPE] = ACTIONS(1667), - [anon_sym_out_GT_PIPE] = ACTIONS(1667), - [anon_sym_e_GT_PIPE] = ACTIONS(1667), - [anon_sym_o_GT_PIPE] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), - [anon_sym_RPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_has2] = ACTIONS(1667), - [anon_sym_not_DASHhas2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1669), - [anon_sym_LT_EQ2] = ACTIONS(1667), - [anon_sym_GT_EQ2] = ACTIONS(1667), - [anon_sym_EQ_TILDE2] = ACTIONS(1667), - [anon_sym_BANG_TILDE2] = ACTIONS(1667), - [anon_sym_like2] = ACTIONS(1667), - [anon_sym_not_DASHlike2] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1588), - [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(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(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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(429), + [anon_sym_in] = ACTIONS(1687), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_RPAREN] = ACTIONS(1687), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_EQ_GT] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_has2] = ACTIONS(1687), + [anon_sym_not_DASHhas2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_like2] = ACTIONS(1687), + [anon_sym_not_DASHlike2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [anon_sym_COLON2] = ACTIONS(1687), + [anon_sym_DOT2] = ACTIONS(1685), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(3), }, [STATE(409)] = { - [sym__expr_parenthesized_immediate] = STATE(738), - [sym__immediate_decimal] = STATE(739), - [sym_val_variable] = STATE(738), + [sym__expr_parenthesized_immediate] = STATE(726), + [sym__immediate_decimal] = STATE(925), + [sym_val_variable] = STATE(726), [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), + [anon_sym_in] = ACTIONS(1677), + [sym__newline] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_err_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_GT_PIPE] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), + [anon_sym_RPAREN] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1679), + [anon_sym_DASH2] = ACTIONS(1679), + [anon_sym_RBRACE] = ACTIONS(1677), + [anon_sym_STAR2] = ACTIONS(1679), + [anon_sym_and2] = ACTIONS(1677), + [anon_sym_xor2] = ACTIONS(1677), + [anon_sym_or2] = ACTIONS(1677), + [anon_sym_not_DASHin2] = ACTIONS(1677), + [anon_sym_has2] = ACTIONS(1677), + [anon_sym_not_DASHhas2] = ACTIONS(1677), + [anon_sym_starts_DASHwith2] = ACTIONS(1677), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1677), + [anon_sym_ends_DASHwith2] = ACTIONS(1677), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1677), + [anon_sym_EQ_EQ2] = ACTIONS(1677), + [anon_sym_BANG_EQ2] = ACTIONS(1677), + [anon_sym_LT2] = ACTIONS(1679), + [anon_sym_LT_EQ2] = ACTIONS(1677), + [anon_sym_GT_EQ2] = ACTIONS(1677), + [anon_sym_EQ_TILDE2] = ACTIONS(1677), + [anon_sym_BANG_TILDE2] = ACTIONS(1677), + [anon_sym_like2] = ACTIONS(1677), + [anon_sym_not_DASHlike2] = ACTIONS(1677), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1677), + [anon_sym_PLUS_PLUS2] = ACTIONS(1677), + [anon_sym_SLASH2] = ACTIONS(1679), + [anon_sym_mod2] = ACTIONS(1677), + [anon_sym_SLASH_SLASH2] = ACTIONS(1677), + [anon_sym_PLUS2] = ACTIONS(1679), + [anon_sym_bit_DASHshl2] = ACTIONS(1677), + [anon_sym_bit_DASHshr2] = ACTIONS(1677), + [anon_sym_bit_DASHand2] = ACTIONS(1677), + [anon_sym_bit_DASHxor2] = ACTIONS(1677), + [anon_sym_bit_DASHor2] = ACTIONS(1677), [aux_sym__immediate_decimal_token1] = ACTIONS(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), + [aux_sym__immediate_decimal_token3] = ACTIONS(1649), + [aux_sym__immediate_decimal_token4] = ACTIONS(1649), + [anon_sym_err_GT] = ACTIONS(1679), + [anon_sym_out_GT] = ACTIONS(1679), + [anon_sym_e_GT] = ACTIONS(1679), + [anon_sym_o_GT] = ACTIONS(1679), + [anon_sym_err_PLUSout_GT] = ACTIONS(1679), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1679), + [anon_sym_o_PLUSe_GT] = ACTIONS(1679), + [anon_sym_e_PLUSo_GT] = ACTIONS(1679), + [anon_sym_err_GT_GT] = ACTIONS(1677), + [anon_sym_out_GT_GT] = ACTIONS(1677), + [anon_sym_e_GT_GT] = ACTIONS(1677), + [anon_sym_o_GT_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), + [sym__unquoted_pattern] = ACTIONS(1691), [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(780), + [sym__immediate_decimal] = STATE(926), + [sym_val_variable] = STATE(780), [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(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1603), + [anon_sym_DASH2] = ACTIONS(1603), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1603), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_has2] = ACTIONS(1599), + [anon_sym_not_DASHhas2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1603), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_like2] = ACTIONS(1599), + [anon_sym_not_DASHlike2] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1603), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1603), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(1665), + [aux_sym__immediate_decimal_token2] = ACTIONS(1665), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1611), + [anon_sym_err_GT] = ACTIONS(1603), + [anon_sym_out_GT] = ACTIONS(1603), + [anon_sym_e_GT] = ACTIONS(1603), + [anon_sym_o_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT] = ACTIONS(1603), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [STATE(411)] = { - [sym__expr_parenthesized_immediate] = STATE(742), - [sym__immediate_decimal] = STATE(925), - [sym_val_variable] = STATE(742), [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_POUND] = ACTIONS(3), - }, - [STATE(412)] = { - [sym_cell_path] = STATE(465), - [sym_path] = STATE(441), - [sym_comment] = STATE(412), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1679), - [sym__newline] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_err_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_GT_PIPE] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1679), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_EQ_GT] = ACTIONS(1679), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1679), - [anon_sym_xor2] = ACTIONS(1679), - [anon_sym_or2] = ACTIONS(1679), - [anon_sym_not_DASHin2] = ACTIONS(1679), - [anon_sym_has2] = ACTIONS(1679), - [anon_sym_not_DASHhas2] = ACTIONS(1679), - [anon_sym_starts_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1679), - [anon_sym_ends_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1679), - [anon_sym_EQ_EQ2] = ACTIONS(1679), - [anon_sym_BANG_EQ2] = ACTIONS(1679), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1679), - [anon_sym_GT_EQ2] = ACTIONS(1679), - [anon_sym_EQ_TILDE2] = ACTIONS(1679), - [anon_sym_BANG_TILDE2] = ACTIONS(1679), - [anon_sym_like2] = ACTIONS(1679), - [anon_sym_not_DASHlike2] = ACTIONS(1679), - [anon_sym_STAR_STAR2] = ACTIONS(1679), - [anon_sym_PLUS_PLUS2] = ACTIONS(1679), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1679), - [anon_sym_SLASH_SLASH2] = ACTIONS(1679), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1679), - [anon_sym_bit_DASHshr2] = ACTIONS(1679), - [anon_sym_bit_DASHand2] = ACTIONS(1679), - [anon_sym_bit_DASHxor2] = ACTIONS(1679), - [anon_sym_bit_DASHor2] = ACTIONS(1679), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1679), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1679), - [anon_sym_COLON2] = ACTIONS(1679), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1679), - [anon_sym_out_GT_GT] = ACTIONS(1679), - [anon_sym_e_GT_GT] = ACTIONS(1679), - [anon_sym_o_GT_GT] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(413)] = { - [sym_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_PLUS_EQ] = ACTIONS(1537), - [anon_sym_DASH_EQ] = ACTIONS(1537), - [anon_sym_STAR_EQ] = ACTIONS(1537), - [anon_sym_SLASH_EQ] = ACTIONS(1537), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(414)] = { - [sym_cell_path] = STATE(492), - [sym_path] = STATE(441), - [sym_comment] = STATE(414), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1434), - [sym__newline] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_err_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_GT_PIPE] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_EQ_GT] = ACTIONS(1434), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1434), - [anon_sym_xor2] = ACTIONS(1434), - [anon_sym_or2] = ACTIONS(1434), - [anon_sym_not_DASHin2] = ACTIONS(1434), - [anon_sym_has2] = ACTIONS(1434), - [anon_sym_not_DASHhas2] = ACTIONS(1434), - [anon_sym_starts_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), - [anon_sym_ends_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), - [anon_sym_EQ_EQ2] = ACTIONS(1434), - [anon_sym_BANG_EQ2] = ACTIONS(1434), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1434), - [anon_sym_GT_EQ2] = ACTIONS(1434), - [anon_sym_EQ_TILDE2] = ACTIONS(1434), - [anon_sym_BANG_TILDE2] = ACTIONS(1434), - [anon_sym_like2] = ACTIONS(1434), - [anon_sym_not_DASHlike2] = ACTIONS(1434), - [anon_sym_STAR_STAR2] = ACTIONS(1434), - [anon_sym_PLUS_PLUS2] = ACTIONS(1434), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1434), - [anon_sym_SLASH_SLASH2] = ACTIONS(1434), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1434), - [anon_sym_bit_DASHshr2] = ACTIONS(1434), - [anon_sym_bit_DASHand2] = ACTIONS(1434), - [anon_sym_bit_DASHxor2] = ACTIONS(1434), - [anon_sym_bit_DASHor2] = ACTIONS(1434), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1434), - [anon_sym_out_GT_GT] = ACTIONS(1434), - [anon_sym_e_GT_GT] = ACTIONS(1434), - [anon_sym_o_GT_GT] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), - [anon_sym_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), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(416)] = { - [sym__expr_parenthesized_immediate] = STATE(1343), - [sym__immediate_decimal] = STATE(1090), - [sym_val_variable] = STATE(1343), - [sym_comment] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [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_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_POUND] = ACTIONS(3), - }, - [STATE(418)] = { - [sym__expr_parenthesized_immediate] = STATE(1311), - [sym__immediate_decimal] = STATE(1068), - [sym_val_variable] = STATE(1311), - [sym_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token3] = ACTIONS(1685), - [aux_sym__immediate_decimal_token4] = ACTIONS(1685), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(419)] = { - [sym__expr_parenthesized_immediate] = STATE(918), - [sym__immediate_decimal] = STATE(920), - [sym_val_variable] = STATE(918), - [sym_comment] = STATE(419), - [ts_builtin_sym_end] = ACTIONS(1582), + [anon_sym_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), @@ -80167,10 +79873,11 @@ 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_RPAREN] = ACTIONS(1582), + [anon_sym_GT2] = ACTIONS(1580), + [anon_sym_DASH2] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_STAR2] = ACTIONS(1580), [anon_sym_and2] = ACTIONS(1582), [anon_sym_xor2] = ACTIONS(1582), [anon_sym_or2] = ACTIONS(1582), @@ -80183,38 +79890,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(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), - [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_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), @@ -80225,84 +79930,617 @@ 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(420)] = { - [sym_path] = STATE(441), - [sym_comment] = STATE(420), - [aux_sym__where_predicate_lhs_repeat1] = STATE(420), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_RPAREN] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1526), - [anon_sym_LBRACE] = ACTIONS(1526), - [anon_sym_RBRACE] = ACTIONS(1526), - [anon_sym_EQ_GT] = ACTIONS(1526), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1526), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_COLON2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1689), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), + [STATE(412)] = { + [sym__expr_parenthesized_immediate] = STATE(776), + [sym__immediate_decimal] = STATE(777), + [sym_val_variable] = STATE(776), + [sym_comment] = STATE(412), + [anon_sym_in] = ACTIONS(1617), + [sym__newline] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1617), + [anon_sym_PIPE] = ACTIONS(1617), + [anon_sym_err_GT_PIPE] = ACTIONS(1617), + [anon_sym_out_GT_PIPE] = ACTIONS(1617), + [anon_sym_e_GT_PIPE] = ACTIONS(1617), + [anon_sym_o_GT_PIPE] = ACTIONS(1617), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1617), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1617), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1617), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1617), + [anon_sym_RPAREN] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1619), + [anon_sym_DASH2] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_RBRACE] = ACTIONS(1617), + [anon_sym_STAR2] = ACTIONS(1619), + [anon_sym_and2] = ACTIONS(1617), + [anon_sym_xor2] = ACTIONS(1617), + [anon_sym_or2] = ACTIONS(1617), + [anon_sym_not_DASHin2] = ACTIONS(1617), + [anon_sym_has2] = ACTIONS(1617), + [anon_sym_not_DASHhas2] = ACTIONS(1617), + [anon_sym_starts_DASHwith2] = ACTIONS(1617), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1617), + [anon_sym_ends_DASHwith2] = ACTIONS(1617), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1617), + [anon_sym_EQ_EQ2] = ACTIONS(1617), + [anon_sym_BANG_EQ2] = ACTIONS(1617), + [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT_EQ2] = ACTIONS(1617), + [anon_sym_GT_EQ2] = ACTIONS(1617), + [anon_sym_EQ_TILDE2] = ACTIONS(1617), + [anon_sym_BANG_TILDE2] = ACTIONS(1617), + [anon_sym_like2] = ACTIONS(1617), + [anon_sym_not_DASHlike2] = ACTIONS(1617), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1617), + [anon_sym_PLUS_PLUS2] = ACTIONS(1617), + [anon_sym_SLASH2] = ACTIONS(1619), + [anon_sym_mod2] = ACTIONS(1617), + [anon_sym_SLASH_SLASH2] = ACTIONS(1617), + [anon_sym_PLUS2] = ACTIONS(1619), + [anon_sym_bit_DASHshl2] = ACTIONS(1617), + [anon_sym_bit_DASHshr2] = ACTIONS(1617), + [anon_sym_bit_DASHand2] = ACTIONS(1617), + [anon_sym_bit_DASHxor2] = ACTIONS(1617), + [anon_sym_bit_DASHor2] = ACTIONS(1617), + [aux_sym__immediate_decimal_token1] = ACTIONS(1665), + [aux_sym__immediate_decimal_token2] = ACTIONS(1665), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1611), + [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(1617), + [anon_sym_out_GT_GT] = ACTIONS(1617), + [anon_sym_e_GT_GT] = ACTIONS(1617), + [anon_sym_o_GT_GT] = ACTIONS(1617), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1617), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1617), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1617), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1617), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(421)] = { - [sym_comment] = STATE(421), + [STATE(413)] = { + [sym_comment] = STATE(413), + [anon_sym_if] = 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(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(1693), + [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(414)] = { + [sym_path] = STATE(454), + [sym_comment] = STATE(414), + [aux_sym__where_predicate_lhs_repeat1] = STATE(414), + [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(1695), + [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(415)] = { + [sym_comment] = STATE(415), + [anon_sym_in] = ACTIONS(1502), + [sym__newline] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_err_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_GT_PIPE] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), + [anon_sym_RPAREN] = ACTIONS(1502), + [anon_sym_GT2] = ACTIONS(1500), + [anon_sym_DASH2] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_EQ_GT] = ACTIONS(1502), + [anon_sym_STAR2] = ACTIONS(1500), + [anon_sym_and2] = ACTIONS(1502), + [anon_sym_xor2] = ACTIONS(1502), + [anon_sym_or2] = ACTIONS(1502), + [anon_sym_not_DASHin2] = ACTIONS(1502), + [anon_sym_has2] = ACTIONS(1502), + [anon_sym_not_DASHhas2] = ACTIONS(1502), + [anon_sym_starts_DASHwith2] = ACTIONS(1502), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1502), + [anon_sym_ends_DASHwith2] = ACTIONS(1502), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1502), + [anon_sym_EQ_EQ2] = ACTIONS(1502), + [anon_sym_BANG_EQ2] = ACTIONS(1502), + [anon_sym_LT2] = ACTIONS(1500), + [anon_sym_LT_EQ2] = ACTIONS(1502), + [anon_sym_GT_EQ2] = ACTIONS(1502), + [anon_sym_EQ_TILDE2] = ACTIONS(1502), + [anon_sym_BANG_TILDE2] = ACTIONS(1502), + [anon_sym_like2] = ACTIONS(1502), + [anon_sym_not_DASHlike2] = ACTIONS(1502), + [anon_sym_STAR_STAR2] = ACTIONS(1502), + [anon_sym_PLUS_PLUS2] = ACTIONS(1502), + [anon_sym_SLASH2] = ACTIONS(1500), + [anon_sym_mod2] = ACTIONS(1502), + [anon_sym_SLASH_SLASH2] = ACTIONS(1502), + [anon_sym_PLUS2] = ACTIONS(1500), + [anon_sym_bit_DASHshl2] = ACTIONS(1502), + [anon_sym_bit_DASHshr2] = ACTIONS(1502), + [anon_sym_bit_DASHand2] = ACTIONS(1502), + [anon_sym_bit_DASHxor2] = ACTIONS(1502), + [anon_sym_bit_DASHor2] = ACTIONS(1502), + [anon_sym_DOT_DOT2] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), + [anon_sym_COLON2] = ACTIONS(1502), + [anon_sym_QMARK2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DOT2] = ACTIONS(1500), + [anon_sym_err_GT] = ACTIONS(1500), + [anon_sym_out_GT] = ACTIONS(1500), + [anon_sym_e_GT] = ACTIONS(1500), + [anon_sym_o_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT] = ACTIONS(1500), + [anon_sym_err_GT_GT] = ACTIONS(1502), + [anon_sym_out_GT_GT] = ACTIONS(1502), + [anon_sym_e_GT_GT] = ACTIONS(1502), + [anon_sym_o_GT_GT] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(416)] = { + [sym_comment] = STATE(416), + [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_QMARK2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DOT2] = ACTIONS(1504), + [anon_sym_err_GT] = ACTIONS(1504), + [anon_sym_out_GT] = ACTIONS(1504), + [anon_sym_e_GT] = ACTIONS(1504), + [anon_sym_o_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT] = ACTIONS(1504), + [anon_sym_err_GT_GT] = ACTIONS(1506), + [anon_sym_out_GT_GT] = ACTIONS(1506), + [anon_sym_e_GT_GT] = ACTIONS(1506), + [anon_sym_o_GT_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(417)] = { + [sym__expr_parenthesized_immediate] = STATE(949), + [sym__immediate_decimal] = STATE(955), + [sym_val_variable] = STATE(949), + [sym_comment] = STATE(417), + [ts_builtin_sym_end] = ACTIONS(1617), + [anon_sym_in] = ACTIONS(1617), + [sym__newline] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1617), + [anon_sym_PIPE] = ACTIONS(1617), + [anon_sym_err_GT_PIPE] = ACTIONS(1617), + [anon_sym_out_GT_PIPE] = ACTIONS(1617), + [anon_sym_e_GT_PIPE] = ACTIONS(1617), + [anon_sym_o_GT_PIPE] = ACTIONS(1617), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1617), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1617), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1617), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_GT2] = ACTIONS(1619), + [anon_sym_DASH2] = ACTIONS(1619), + [anon_sym_STAR2] = ACTIONS(1619), + [anon_sym_and2] = ACTIONS(1617), + [anon_sym_xor2] = ACTIONS(1617), + [anon_sym_or2] = ACTIONS(1617), + [anon_sym_not_DASHin2] = ACTIONS(1617), + [anon_sym_has2] = ACTIONS(1617), + [anon_sym_not_DASHhas2] = ACTIONS(1617), + [anon_sym_starts_DASHwith2] = ACTIONS(1617), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1617), + [anon_sym_ends_DASHwith2] = ACTIONS(1617), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1617), + [anon_sym_EQ_EQ2] = ACTIONS(1617), + [anon_sym_BANG_EQ2] = ACTIONS(1617), + [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT_EQ2] = ACTIONS(1617), + [anon_sym_GT_EQ2] = ACTIONS(1617), + [anon_sym_EQ_TILDE2] = ACTIONS(1617), + [anon_sym_BANG_TILDE2] = ACTIONS(1617), + [anon_sym_like2] = ACTIONS(1617), + [anon_sym_not_DASHlike2] = ACTIONS(1617), + [anon_sym_LPAREN2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1617), + [anon_sym_PLUS_PLUS2] = ACTIONS(1617), + [anon_sym_SLASH2] = ACTIONS(1619), + [anon_sym_mod2] = ACTIONS(1617), + [anon_sym_SLASH_SLASH2] = ACTIONS(1617), + [anon_sym_PLUS2] = ACTIONS(1619), + [anon_sym_bit_DASHshl2] = ACTIONS(1617), + [anon_sym_bit_DASHshr2] = ACTIONS(1617), + [anon_sym_bit_DASHand2] = ACTIONS(1617), + [anon_sym_bit_DASHxor2] = ACTIONS(1617), + [anon_sym_bit_DASHor2] = ACTIONS(1617), + [anon_sym_DOT] = ACTIONS(1698), + [aux_sym__immediate_decimal_token1] = ACTIONS(1657), + [aux_sym__immediate_decimal_token2] = ACTIONS(1657), + [aux_sym__immediate_decimal_token3] = ACTIONS(1659), + [aux_sym__immediate_decimal_token4] = ACTIONS(1659), + [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(1617), + [anon_sym_out_GT_GT] = ACTIONS(1617), + [anon_sym_e_GT_GT] = ACTIONS(1617), + [anon_sym_o_GT_GT] = ACTIONS(1617), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1617), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1617), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1617), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1617), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(418)] = { + [sym_comment] = STATE(418), + [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] = ACTIONS(1700), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1702), + [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(419)] = { + [sym_comment] = STATE(419), + [ts_builtin_sym_end] = ACTIONS(1539), + [anon_sym_EQ] = ACTIONS(1537), + [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(1537), + [anon_sym_DASH2] = ACTIONS(1537), + [anon_sym_STAR2] = ACTIONS(1537), + [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(1537), + [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(1537), + [anon_sym_SLASH2] = ACTIONS(1537), + [anon_sym_mod2] = ACTIONS(1539), + [anon_sym_SLASH_SLASH2] = ACTIONS(1539), + [anon_sym_PLUS2] = ACTIONS(1537), + [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(1537), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1539), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1539), + [anon_sym_DOT2] = ACTIONS(1537), + [anon_sym_err_GT] = ACTIONS(1537), + [anon_sym_out_GT] = ACTIONS(1537), + [anon_sym_e_GT] = ACTIONS(1537), + [anon_sym_o_GT] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT] = ACTIONS(1537), + [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(3), + }, + [STATE(420)] = { + [sym_comment] = STATE(420), [anon_sym_in] = ACTIONS(741), [sym__newline] = ACTIONS(741), [anon_sym_SEMI] = ACTIONS(741), @@ -80352,10 +80590,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(741), [anon_sym_bit_DASHor2] = ACTIONS(741), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1692), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1694), + [aux_sym__immediate_decimal_token1] = ACTIONS(1704), + [aux_sym__immediate_decimal_token5] = ACTIONS(1706), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -80377,844 +80615,995 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(421)] = { + [sym_comment] = STATE(421), + [ts_builtin_sym_end] = ACTIONS(1543), + [anon_sym_EQ] = ACTIONS(1541), + [anon_sym_PLUS_EQ] = ACTIONS(1543), + [anon_sym_DASH_EQ] = ACTIONS(1543), + [anon_sym_STAR_EQ] = ACTIONS(1543), + [anon_sym_SLASH_EQ] = ACTIONS(1543), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1543), + [anon_sym_in] = ACTIONS(1543), + [sym__newline] = ACTIONS(1543), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1543), + [anon_sym_err_GT_PIPE] = ACTIONS(1543), + [anon_sym_out_GT_PIPE] = ACTIONS(1543), + [anon_sym_e_GT_PIPE] = ACTIONS(1543), + [anon_sym_o_GT_PIPE] = ACTIONS(1543), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1543), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1543), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1543), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1543), + [anon_sym_GT2] = ACTIONS(1541), + [anon_sym_DASH2] = ACTIONS(1541), + [anon_sym_STAR2] = ACTIONS(1541), + [anon_sym_and2] = ACTIONS(1543), + [anon_sym_xor2] = ACTIONS(1543), + [anon_sym_or2] = ACTIONS(1543), + [anon_sym_not_DASHin2] = ACTIONS(1543), + [anon_sym_has2] = ACTIONS(1543), + [anon_sym_not_DASHhas2] = ACTIONS(1543), + [anon_sym_starts_DASHwith2] = ACTIONS(1543), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1543), + [anon_sym_ends_DASHwith2] = ACTIONS(1543), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1543), + [anon_sym_EQ_EQ2] = ACTIONS(1543), + [anon_sym_BANG_EQ2] = ACTIONS(1543), + [anon_sym_LT2] = ACTIONS(1541), + [anon_sym_LT_EQ2] = ACTIONS(1543), + [anon_sym_GT_EQ2] = ACTIONS(1543), + [anon_sym_EQ_TILDE2] = ACTIONS(1543), + [anon_sym_BANG_TILDE2] = ACTIONS(1543), + [anon_sym_like2] = ACTIONS(1543), + [anon_sym_not_DASHlike2] = ACTIONS(1543), + [anon_sym_STAR_STAR2] = ACTIONS(1543), + [anon_sym_PLUS_PLUS2] = ACTIONS(1541), + [anon_sym_SLASH2] = ACTIONS(1541), + [anon_sym_mod2] = ACTIONS(1543), + [anon_sym_SLASH_SLASH2] = ACTIONS(1543), + [anon_sym_PLUS2] = ACTIONS(1541), + [anon_sym_bit_DASHshl2] = ACTIONS(1543), + [anon_sym_bit_DASHshr2] = ACTIONS(1543), + [anon_sym_bit_DASHand2] = ACTIONS(1543), + [anon_sym_bit_DASHxor2] = ACTIONS(1543), + [anon_sym_bit_DASHor2] = ACTIONS(1543), + [anon_sym_DOT_DOT2] = ACTIONS(1541), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1543), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1543), + [anon_sym_DOT2] = ACTIONS(1541), + [anon_sym_err_GT] = ACTIONS(1541), + [anon_sym_out_GT] = ACTIONS(1541), + [anon_sym_e_GT] = ACTIONS(1541), + [anon_sym_o_GT] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT] = ACTIONS(1541), + [anon_sym_err_GT_GT] = ACTIONS(1543), + [anon_sym_out_GT_GT] = ACTIONS(1543), + [anon_sym_e_GT_GT] = ACTIONS(1543), + [anon_sym_o_GT_GT] = ACTIONS(1543), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1543), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1543), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1543), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1543), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(422)] = { + [sym__expr_parenthesized_immediate] = STATE(1302), + [sym__immediate_decimal] = STATE(994), + [sym_val_variable] = STATE(1302), [sym_comment] = STATE(422), - [anon_sym_in] = ACTIONS(749), - [sym__newline] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_err_GT_PIPE] = ACTIONS(749), - [anon_sym_out_GT_PIPE] = ACTIONS(749), - [anon_sym_e_GT_PIPE] = ACTIONS(749), - [anon_sym_o_GT_PIPE] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(749), - [anon_sym_RBRACE] = ACTIONS(749), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(749), - [anon_sym_xor2] = ACTIONS(749), - [anon_sym_or2] = ACTIONS(749), - [anon_sym_not_DASHin2] = ACTIONS(749), - [anon_sym_has2] = ACTIONS(749), - [anon_sym_not_DASHhas2] = ACTIONS(749), - [anon_sym_starts_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), - [anon_sym_ends_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), - [anon_sym_EQ_EQ2] = ACTIONS(749), - [anon_sym_BANG_EQ2] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(749), - [anon_sym_GT_EQ2] = ACTIONS(749), - [anon_sym_EQ_TILDE2] = ACTIONS(749), - [anon_sym_BANG_TILDE2] = ACTIONS(749), - [anon_sym_like2] = ACTIONS(749), - [anon_sym_not_DASHlike2] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR_STAR2] = ACTIONS(749), - [anon_sym_PLUS_PLUS2] = ACTIONS(749), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(749), - [anon_sym_SLASH_SLASH2] = ACTIONS(749), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(749), - [anon_sym_bit_DASHshr2] = ACTIONS(749), - [anon_sym_bit_DASHand2] = ACTIONS(749), - [anon_sym_bit_DASHxor2] = ACTIONS(749), - [anon_sym_bit_DASHor2] = ACTIONS(749), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1696), - [aux_sym__immediate_decimal_token5] = ACTIONS(1698), - [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), + [ts_builtin_sym_end] = ACTIONS(1677), + [anon_sym_in] = ACTIONS(1677), + [sym__newline] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_err_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_GT_PIPE] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_GT2] = ACTIONS(1679), + [anon_sym_DASH2] = ACTIONS(1679), + [anon_sym_STAR2] = ACTIONS(1679), + [anon_sym_and2] = ACTIONS(1677), + [anon_sym_xor2] = ACTIONS(1677), + [anon_sym_or2] = ACTIONS(1677), + [anon_sym_not_DASHin2] = ACTIONS(1677), + [anon_sym_has2] = ACTIONS(1677), + [anon_sym_not_DASHhas2] = ACTIONS(1677), + [anon_sym_starts_DASHwith2] = ACTIONS(1677), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1677), + [anon_sym_ends_DASHwith2] = ACTIONS(1677), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1677), + [anon_sym_EQ_EQ2] = ACTIONS(1677), + [anon_sym_BANG_EQ2] = ACTIONS(1677), + [anon_sym_LT2] = ACTIONS(1679), + [anon_sym_LT_EQ2] = ACTIONS(1677), + [anon_sym_GT_EQ2] = ACTIONS(1677), + [anon_sym_EQ_TILDE2] = ACTIONS(1677), + [anon_sym_BANG_TILDE2] = ACTIONS(1677), + [anon_sym_like2] = ACTIONS(1677), + [anon_sym_not_DASHlike2] = ACTIONS(1677), + [anon_sym_LPAREN2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1677), + [anon_sym_PLUS_PLUS2] = ACTIONS(1677), + [anon_sym_SLASH2] = ACTIONS(1679), + [anon_sym_mod2] = ACTIONS(1677), + [anon_sym_SLASH_SLASH2] = ACTIONS(1677), + [anon_sym_PLUS2] = ACTIONS(1679), + [anon_sym_bit_DASHshl2] = ACTIONS(1677), + [anon_sym_bit_DASHshr2] = ACTIONS(1677), + [anon_sym_bit_DASHand2] = ACTIONS(1677), + [anon_sym_bit_DASHxor2] = ACTIONS(1677), + [anon_sym_bit_DASHor2] = ACTIONS(1677), + [aux_sym__immediate_decimal_token1] = ACTIONS(1708), + [aux_sym__immediate_decimal_token2] = ACTIONS(1708), + [aux_sym__immediate_decimal_token3] = ACTIONS(1710), + [aux_sym__immediate_decimal_token4] = ACTIONS(1710), + [anon_sym_err_GT] = ACTIONS(1679), + [anon_sym_out_GT] = ACTIONS(1679), + [anon_sym_e_GT] = ACTIONS(1679), + [anon_sym_o_GT] = ACTIONS(1679), + [anon_sym_err_PLUSout_GT] = ACTIONS(1679), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1679), + [anon_sym_o_PLUSe_GT] = ACTIONS(1679), + [anon_sym_e_PLUSo_GT] = ACTIONS(1679), + [anon_sym_err_GT_GT] = ACTIONS(1677), + [anon_sym_out_GT_GT] = ACTIONS(1677), + [anon_sym_e_GT_GT] = ACTIONS(1677), + [anon_sym_o_GT_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), + [sym__unquoted_pattern] = ACTIONS(1691), [anon_sym_POUND] = ACTIONS(3), }, [STATE(423)] = { - [sym_path] = STATE(441), + [sym__expr_parenthesized_immediate] = STATE(958), + [sym__immediate_decimal] = STATE(959), + [sym_val_variable] = STATE(958), [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), + [ts_builtin_sym_end] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_GT2] = ACTIONS(1603), + [anon_sym_DASH2] = ACTIONS(1603), + [anon_sym_STAR2] = ACTIONS(1603), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_has2] = ACTIONS(1599), + [anon_sym_not_DASHhas2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1603), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_like2] = ACTIONS(1599), + [anon_sym_not_DASHlike2] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1603), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1603), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(1712), + [aux_sym__immediate_decimal_token1] = ACTIONS(1657), + [aux_sym__immediate_decimal_token2] = ACTIONS(1657), + [aux_sym__immediate_decimal_token3] = ACTIONS(1659), + [aux_sym__immediate_decimal_token4] = ACTIONS(1659), + [anon_sym_err_GT] = ACTIONS(1603), + [anon_sym_out_GT] = ACTIONS(1603), + [anon_sym_e_GT] = ACTIONS(1603), + [anon_sym_o_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT] = ACTIONS(1603), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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_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(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), + [ts_builtin_sym_end] = ACTIONS(1535), + [anon_sym_EQ] = ACTIONS(1533), + [anon_sym_PLUS_EQ] = ACTIONS(1535), + [anon_sym_DASH_EQ] = ACTIONS(1535), + [anon_sym_STAR_EQ] = ACTIONS(1535), + [anon_sym_SLASH_EQ] = ACTIONS(1535), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1535), + [anon_sym_in] = ACTIONS(1535), + [sym__newline] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_err_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_GT_PIPE] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), + [anon_sym_GT2] = ACTIONS(1533), + [anon_sym_DASH2] = ACTIONS(1533), + [anon_sym_STAR2] = ACTIONS(1533), + [anon_sym_and2] = ACTIONS(1535), + [anon_sym_xor2] = ACTIONS(1535), + [anon_sym_or2] = ACTIONS(1535), + [anon_sym_not_DASHin2] = ACTIONS(1535), + [anon_sym_has2] = ACTIONS(1535), + [anon_sym_not_DASHhas2] = ACTIONS(1535), + [anon_sym_starts_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), + [anon_sym_ends_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), + [anon_sym_EQ_EQ2] = ACTIONS(1535), + [anon_sym_BANG_EQ2] = ACTIONS(1535), + [anon_sym_LT2] = ACTIONS(1533), + [anon_sym_LT_EQ2] = ACTIONS(1535), + [anon_sym_GT_EQ2] = ACTIONS(1535), + [anon_sym_EQ_TILDE2] = ACTIONS(1535), + [anon_sym_BANG_TILDE2] = ACTIONS(1535), + [anon_sym_like2] = ACTIONS(1535), + [anon_sym_not_DASHlike2] = ACTIONS(1535), + [anon_sym_STAR_STAR2] = ACTIONS(1535), + [anon_sym_PLUS_PLUS2] = ACTIONS(1533), + [anon_sym_SLASH2] = ACTIONS(1533), + [anon_sym_mod2] = ACTIONS(1535), + [anon_sym_SLASH_SLASH2] = ACTIONS(1535), + [anon_sym_PLUS2] = ACTIONS(1533), + [anon_sym_bit_DASHshl2] = ACTIONS(1535), + [anon_sym_bit_DASHshr2] = ACTIONS(1535), + [anon_sym_bit_DASHand2] = ACTIONS(1535), + [anon_sym_bit_DASHxor2] = ACTIONS(1535), + [anon_sym_bit_DASHor2] = ACTIONS(1535), + [anon_sym_DOT_DOT2] = ACTIONS(1533), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1535), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1535), + [anon_sym_DOT2] = ACTIONS(1533), + [anon_sym_err_GT] = ACTIONS(1533), + [anon_sym_out_GT] = ACTIONS(1533), + [anon_sym_e_GT] = ACTIONS(1533), + [anon_sym_o_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT] = ACTIONS(1533), + [anon_sym_err_GT_GT] = ACTIONS(1535), + [anon_sym_out_GT_GT] = ACTIONS(1535), + [anon_sym_e_GT_GT] = ACTIONS(1535), + [anon_sym_o_GT_GT] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), [anon_sym_POUND] = ACTIONS(3), }, [STATE(426)] = { + [sym_cell_path] = STATE(478), + [sym_path] = STATE(454), [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(429), + [anon_sym_in] = ACTIONS(1452), + [sym__newline] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_err_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_GT_PIPE] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_EQ_GT] = ACTIONS(1452), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1452), + [anon_sym_xor2] = ACTIONS(1452), + [anon_sym_or2] = ACTIONS(1452), + [anon_sym_not_DASHin2] = ACTIONS(1452), + [anon_sym_has2] = ACTIONS(1452), + [anon_sym_not_DASHhas2] = ACTIONS(1452), + [anon_sym_starts_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), + [anon_sym_ends_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), + [anon_sym_EQ_EQ2] = ACTIONS(1452), + [anon_sym_BANG_EQ2] = ACTIONS(1452), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1452), + [anon_sym_GT_EQ2] = ACTIONS(1452), + [anon_sym_EQ_TILDE2] = ACTIONS(1452), + [anon_sym_BANG_TILDE2] = ACTIONS(1452), + [anon_sym_like2] = ACTIONS(1452), + [anon_sym_not_DASHlike2] = ACTIONS(1452), + [anon_sym_STAR_STAR2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS2] = ACTIONS(1452), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1452), + [anon_sym_SLASH_SLASH2] = ACTIONS(1452), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1452), + [anon_sym_bit_DASHshr2] = ACTIONS(1452), + [anon_sym_bit_DASHand2] = ACTIONS(1452), + [anon_sym_bit_DASHxor2] = ACTIONS(1452), + [anon_sym_bit_DASHor2] = ACTIONS(1452), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [anon_sym_DOT2] = ACTIONS(1685), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1452), + [anon_sym_out_GT_GT] = ACTIONS(1452), + [anon_sym_e_GT_GT] = ACTIONS(1452), + [anon_sym_o_GT_GT] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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_EQ] = ACTIONS(1627), + [anon_sym_PLUS_EQ] = ACTIONS(1714), + [anon_sym_DASH_EQ] = ACTIONS(1714), + [anon_sym_STAR_EQ] = ACTIONS(1714), + [anon_sym_SLASH_EQ] = ACTIONS(1714), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(1716), + [sym__newline] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_err_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_GT_PIPE] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), + [anon_sym_GT2] = ACTIONS(1629), + [anon_sym_DASH2] = ACTIONS(1629), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_STAR2] = ACTIONS(1629), + [anon_sym_and2] = ACTIONS(1716), + [anon_sym_xor2] = ACTIONS(1716), + [anon_sym_or2] = ACTIONS(1716), + [anon_sym_not_DASHin2] = ACTIONS(1716), + [anon_sym_has2] = ACTIONS(1716), + [anon_sym_not_DASHhas2] = ACTIONS(1716), + [anon_sym_starts_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), + [anon_sym_ends_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), + [anon_sym_EQ_EQ2] = ACTIONS(1716), + [anon_sym_BANG_EQ2] = ACTIONS(1716), + [anon_sym_LT2] = ACTIONS(1629), + [anon_sym_LT_EQ2] = ACTIONS(1716), + [anon_sym_GT_EQ2] = ACTIONS(1716), + [anon_sym_EQ_TILDE2] = ACTIONS(1716), + [anon_sym_BANG_TILDE2] = ACTIONS(1716), + [anon_sym_like2] = ACTIONS(1716), + [anon_sym_not_DASHlike2] = ACTIONS(1716), + [anon_sym_STAR_STAR2] = ACTIONS(1716), + [anon_sym_PLUS_PLUS2] = ACTIONS(1629), + [anon_sym_SLASH2] = ACTIONS(1629), + [anon_sym_mod2] = ACTIONS(1716), + [anon_sym_SLASH_SLASH2] = ACTIONS(1716), + [anon_sym_PLUS2] = ACTIONS(1629), + [anon_sym_bit_DASHshl2] = ACTIONS(1716), + [anon_sym_bit_DASHshr2] = ACTIONS(1716), + [anon_sym_bit_DASHand2] = ACTIONS(1716), + [anon_sym_bit_DASHxor2] = ACTIONS(1716), + [anon_sym_bit_DASHor2] = ACTIONS(1716), + [anon_sym_DOT_DOT2] = ACTIONS(1633), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), + [anon_sym_COLON2] = ACTIONS(1718), + [anon_sym_err_GT] = ACTIONS(1629), + [anon_sym_out_GT] = ACTIONS(1629), + [anon_sym_e_GT] = ACTIONS(1629), + [anon_sym_o_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT] = ACTIONS(1629), + [anon_sym_err_GT_GT] = ACTIONS(1716), + [anon_sym_out_GT_GT] = ACTIONS(1716), + [anon_sym_e_GT_GT] = ACTIONS(1716), + [anon_sym_o_GT_GT] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), [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_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(429)] = { + [sym_path] = STATE(454), [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(414), + [anon_sym_in] = ACTIONS(1517), + [sym__newline] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1517), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_err_GT_PIPE] = ACTIONS(1517), + [anon_sym_out_GT_PIPE] = ACTIONS(1517), + [anon_sym_e_GT_PIPE] = ACTIONS(1517), + [anon_sym_o_GT_PIPE] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1517), + [anon_sym_RPAREN] = ACTIONS(1517), + [anon_sym_GT2] = ACTIONS(1515), + [anon_sym_DASH2] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1517), + [anon_sym_EQ_GT] = ACTIONS(1517), + [anon_sym_STAR2] = ACTIONS(1515), + [anon_sym_and2] = ACTIONS(1517), + [anon_sym_xor2] = ACTIONS(1517), + [anon_sym_or2] = ACTIONS(1517), + [anon_sym_not_DASHin2] = ACTIONS(1517), + [anon_sym_has2] = ACTIONS(1517), + [anon_sym_not_DASHhas2] = ACTIONS(1517), + [anon_sym_starts_DASHwith2] = ACTIONS(1517), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1517), + [anon_sym_ends_DASHwith2] = ACTIONS(1517), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1517), + [anon_sym_EQ_EQ2] = ACTIONS(1517), + [anon_sym_BANG_EQ2] = ACTIONS(1517), + [anon_sym_LT2] = ACTIONS(1515), + [anon_sym_LT_EQ2] = ACTIONS(1517), + [anon_sym_GT_EQ2] = ACTIONS(1517), + [anon_sym_EQ_TILDE2] = ACTIONS(1517), + [anon_sym_BANG_TILDE2] = ACTIONS(1517), + [anon_sym_like2] = ACTIONS(1517), + [anon_sym_not_DASHlike2] = ACTIONS(1517), + [anon_sym_STAR_STAR2] = ACTIONS(1517), + [anon_sym_PLUS_PLUS2] = ACTIONS(1517), + [anon_sym_SLASH2] = ACTIONS(1515), + [anon_sym_mod2] = ACTIONS(1517), + [anon_sym_SLASH_SLASH2] = ACTIONS(1517), + [anon_sym_PLUS2] = ACTIONS(1515), + [anon_sym_bit_DASHshl2] = ACTIONS(1517), + [anon_sym_bit_DASHshr2] = ACTIONS(1517), + [anon_sym_bit_DASHand2] = ACTIONS(1517), + [anon_sym_bit_DASHxor2] = ACTIONS(1517), + [anon_sym_bit_DASHor2] = ACTIONS(1517), + [anon_sym_DOT_DOT2] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1517), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1517), + [anon_sym_COLON2] = ACTIONS(1517), + [anon_sym_DOT2] = ACTIONS(1685), + [anon_sym_err_GT] = ACTIONS(1515), + [anon_sym_out_GT] = ACTIONS(1515), + [anon_sym_e_GT] = ACTIONS(1515), + [anon_sym_o_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT] = ACTIONS(1515), + [anon_sym_err_GT_GT] = ACTIONS(1517), + [anon_sym_out_GT_GT] = ACTIONS(1517), + [anon_sym_e_GT_GT] = ACTIONS(1517), + [anon_sym_o_GT_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(3), }, [STATE(430)] = { - [sym__expr_parenthesized_immediate] = STATE(929), - [sym__immediate_decimal] = STATE(934), - [sym_val_variable] = STATE(929), + [sym__expr_parenthesized_immediate] = STATE(1294), + [sym__immediate_decimal] = STATE(989), + [sym_val_variable] = STATE(1294), [sym_comment] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1702), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), + [ts_builtin_sym_end] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_GT2] = ACTIONS(1603), + [anon_sym_DASH2] = ACTIONS(1603), + [anon_sym_STAR2] = ACTIONS(1603), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_has2] = ACTIONS(1599), + [anon_sym_not_DASHhas2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1603), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_like2] = ACTIONS(1599), + [anon_sym_not_DASHlike2] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1603), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1603), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(1708), + [aux_sym__immediate_decimal_token2] = ACTIONS(1708), + [aux_sym__immediate_decimal_token3] = ACTIONS(1710), + [aux_sym__immediate_decimal_token4] = ACTIONS(1710), + [anon_sym_err_GT] = ACTIONS(1603), + [anon_sym_out_GT] = ACTIONS(1603), + [anon_sym_e_GT] = ACTIONS(1603), + [anon_sym_o_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT] = ACTIONS(1603), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), + [sym__unquoted_pattern] = ACTIONS(1615), [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_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_QMARK2] = ACTIONS(1498), + [anon_sym_BANG] = 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(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), [anon_sym_POUND] = ACTIONS(3), }, [STATE(432)] = { [sym_comment] = STATE(432), - [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_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(433)] = { [sym_comment] = STATE(433), + [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(1716), + [sym__newline] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_err_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_GT_PIPE] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_GT2] = ACTIONS(1629), + [anon_sym_DASH2] = ACTIONS(1629), + [anon_sym_STAR2] = ACTIONS(1629), + [anon_sym_and2] = ACTIONS(1716), + [anon_sym_xor2] = ACTIONS(1716), + [anon_sym_or2] = ACTIONS(1716), + [anon_sym_not_DASHin2] = ACTIONS(1716), + [anon_sym_has2] = ACTIONS(1716), + [anon_sym_not_DASHhas2] = ACTIONS(1716), + [anon_sym_starts_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), + [anon_sym_ends_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), + [anon_sym_EQ_EQ2] = ACTIONS(1716), + [anon_sym_BANG_EQ2] = ACTIONS(1716), + [anon_sym_LT2] = ACTIONS(1629), + [anon_sym_LT_EQ2] = ACTIONS(1716), + [anon_sym_GT_EQ2] = ACTIONS(1716), + [anon_sym_EQ_TILDE2] = ACTIONS(1716), + [anon_sym_BANG_TILDE2] = ACTIONS(1716), + [anon_sym_like2] = ACTIONS(1716), + [anon_sym_not_DASHlike2] = ACTIONS(1716), + [anon_sym_STAR_STAR2] = ACTIONS(1716), + [anon_sym_PLUS_PLUS2] = ACTIONS(1629), + [anon_sym_SLASH2] = ACTIONS(1629), + [anon_sym_mod2] = ACTIONS(1716), + [anon_sym_SLASH_SLASH2] = ACTIONS(1716), + [anon_sym_PLUS2] = ACTIONS(1629), + [anon_sym_bit_DASHshl2] = ACTIONS(1716), + [anon_sym_bit_DASHshr2] = ACTIONS(1716), + [anon_sym_bit_DASHand2] = ACTIONS(1716), + [anon_sym_bit_DASHxor2] = ACTIONS(1716), + [anon_sym_bit_DASHor2] = ACTIONS(1716), + [anon_sym_DOT_DOT2] = ACTIONS(1633), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), + [anon_sym_err_GT] = ACTIONS(1629), + [anon_sym_out_GT] = ACTIONS(1629), + [anon_sym_e_GT] = ACTIONS(1629), + [anon_sym_o_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT] = ACTIONS(1629), + [anon_sym_err_GT_GT] = ACTIONS(1716), + [anon_sym_out_GT_GT] = ACTIONS(1716), + [anon_sym_e_GT_GT] = ACTIONS(1716), + [anon_sym_o_GT_GT] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(434)] = { + [sym_comment] = STATE(434), [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(741), [sym__newline] = ACTIONS(741), @@ -81263,10 +81652,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(1724), + [aux_sym__immediate_decimal_token5] = ACTIONS(1726), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -81288,687 +81677,615 @@ 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), - [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), + [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_BANG] = ACTIONS(1728), + [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(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_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(1702), + [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(437)] = { + [sym__expr_parenthesized_immediate] = STATE(1300), + [sym__immediate_decimal] = STATE(1301), + [sym_val_variable] = STATE(1300), [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), + [ts_builtin_sym_end] = ACTIONS(1673), + [anon_sym_in] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_GT2] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1675), + [anon_sym_STAR2] = ACTIONS(1675), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_has2] = ACTIONS(1673), + [anon_sym_not_DASHhas2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1675), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_like2] = ACTIONS(1673), + [anon_sym_not_DASHlike2] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1675), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1675), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [aux_sym__immediate_decimal_token1] = ACTIONS(1730), + [aux_sym__immediate_decimal_token2] = ACTIONS(1730), + [aux_sym__immediate_decimal_token3] = ACTIONS(1659), + [aux_sym__immediate_decimal_token4] = ACTIONS(1659), + [anon_sym_err_GT] = ACTIONS(1675), + [anon_sym_out_GT] = ACTIONS(1675), + [anon_sym_e_GT] = ACTIONS(1675), + [anon_sym_o_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT] = ACTIONS(1675), + [anon_sym_err_GT_GT] = ACTIONS(1673), + [anon_sym_out_GT_GT] = ACTIONS(1673), + [anon_sym_e_GT_GT] = ACTIONS(1673), + [anon_sym_o_GT_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), [anon_sym_POUND] = ACTIONS(3), }, [STATE(438)] = { + [sym__expr_parenthesized_immediate] = STATE(1302), + [sym__immediate_decimal] = STATE(1303), + [sym_val_variable] = STATE(1302), [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), + [ts_builtin_sym_end] = ACTIONS(1677), + [anon_sym_in] = ACTIONS(1677), + [sym__newline] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_PIPE] = ACTIONS(1677), + [anon_sym_err_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_GT_PIPE] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_GT2] = ACTIONS(1679), + [anon_sym_DASH2] = ACTIONS(1679), + [anon_sym_STAR2] = ACTIONS(1679), + [anon_sym_and2] = ACTIONS(1677), + [anon_sym_xor2] = ACTIONS(1677), + [anon_sym_or2] = ACTIONS(1677), + [anon_sym_not_DASHin2] = ACTIONS(1677), + [anon_sym_has2] = ACTIONS(1677), + [anon_sym_not_DASHhas2] = ACTIONS(1677), + [anon_sym_starts_DASHwith2] = ACTIONS(1677), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1677), + [anon_sym_ends_DASHwith2] = ACTIONS(1677), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1677), + [anon_sym_EQ_EQ2] = ACTIONS(1677), + [anon_sym_BANG_EQ2] = ACTIONS(1677), + [anon_sym_LT2] = ACTIONS(1679), + [anon_sym_LT_EQ2] = ACTIONS(1677), + [anon_sym_GT_EQ2] = ACTIONS(1677), + [anon_sym_EQ_TILDE2] = ACTIONS(1677), + [anon_sym_BANG_TILDE2] = ACTIONS(1677), + [anon_sym_like2] = ACTIONS(1677), + [anon_sym_not_DASHlike2] = ACTIONS(1677), + [anon_sym_LPAREN2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1677), + [anon_sym_PLUS_PLUS2] = ACTIONS(1677), + [anon_sym_SLASH2] = ACTIONS(1679), + [anon_sym_mod2] = ACTIONS(1677), + [anon_sym_SLASH_SLASH2] = ACTIONS(1677), + [anon_sym_PLUS2] = ACTIONS(1679), + [anon_sym_bit_DASHshl2] = ACTIONS(1677), + [anon_sym_bit_DASHshr2] = ACTIONS(1677), + [anon_sym_bit_DASHand2] = ACTIONS(1677), + [anon_sym_bit_DASHxor2] = ACTIONS(1677), + [anon_sym_bit_DASHor2] = ACTIONS(1677), + [aux_sym__immediate_decimal_token1] = ACTIONS(1730), + [aux_sym__immediate_decimal_token2] = ACTIONS(1730), + [aux_sym__immediate_decimal_token3] = ACTIONS(1659), + [aux_sym__immediate_decimal_token4] = ACTIONS(1659), + [anon_sym_err_GT] = ACTIONS(1679), + [anon_sym_out_GT] = ACTIONS(1679), + [anon_sym_e_GT] = ACTIONS(1679), + [anon_sym_o_GT] = ACTIONS(1679), + [anon_sym_err_PLUSout_GT] = ACTIONS(1679), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1679), + [anon_sym_o_PLUSe_GT] = ACTIONS(1679), + [anon_sym_e_PLUSo_GT] = ACTIONS(1679), + [anon_sym_err_GT_GT] = ACTIONS(1677), + [anon_sym_out_GT_GT] = ACTIONS(1677), + [anon_sym_e_GT_GT] = ACTIONS(1677), + [anon_sym_o_GT_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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_in] = ACTIONS(765), + [sym__newline] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_err_GT_PIPE] = ACTIONS(765), + [anon_sym_out_GT_PIPE] = ACTIONS(765), + [anon_sym_e_GT_PIPE] = ACTIONS(765), + [anon_sym_o_GT_PIPE] = ACTIONS(765), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(765), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(765), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(765), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(765), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(765), + [anon_sym_xor2] = ACTIONS(765), + [anon_sym_or2] = ACTIONS(765), + [anon_sym_not_DASHin2] = ACTIONS(765), + [anon_sym_has2] = ACTIONS(765), + [anon_sym_not_DASHhas2] = ACTIONS(765), + [anon_sym_starts_DASHwith2] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(765), + [anon_sym_ends_DASHwith2] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(765), + [anon_sym_EQ_EQ2] = ACTIONS(765), + [anon_sym_BANG_EQ2] = ACTIONS(765), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(765), + [anon_sym_GT_EQ2] = ACTIONS(765), + [anon_sym_EQ_TILDE2] = ACTIONS(765), + [anon_sym_BANG_TILDE2] = ACTIONS(765), + [anon_sym_like2] = ACTIONS(765), + [anon_sym_not_DASHlike2] = ACTIONS(765), + [anon_sym_LPAREN2] = ACTIONS(765), + [anon_sym_STAR_STAR2] = ACTIONS(765), + [anon_sym_PLUS_PLUS2] = ACTIONS(765), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(765), + [anon_sym_SLASH_SLASH2] = ACTIONS(765), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(765), + [anon_sym_bit_DASHshr2] = ACTIONS(765), + [anon_sym_bit_DASHand2] = ACTIONS(765), + [anon_sym_bit_DASHxor2] = ACTIONS(765), + [anon_sym_bit_DASHor2] = ACTIONS(765), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(1732), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(765), + [anon_sym_out_GT_GT] = ACTIONS(765), + [anon_sym_e_GT_GT] = ACTIONS(765), + [anon_sym_o_GT_GT] = ACTIONS(765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(765), + [sym__unquoted_pattern] = ACTIONS(763), [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), + [ts_builtin_sym_end] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1716), + [sym__newline] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_err_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_GT_PIPE] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), + [anon_sym_GT2] = ACTIONS(1629), + [anon_sym_DASH2] = ACTIONS(1629), + [anon_sym_STAR2] = ACTIONS(1629), + [anon_sym_and2] = ACTIONS(1716), + [anon_sym_xor2] = ACTIONS(1716), + [anon_sym_or2] = ACTIONS(1716), + [anon_sym_not_DASHin2] = ACTIONS(1716), + [anon_sym_has2] = ACTIONS(1716), + [anon_sym_not_DASHhas2] = ACTIONS(1716), + [anon_sym_starts_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), + [anon_sym_ends_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), + [anon_sym_EQ_EQ2] = ACTIONS(1716), + [anon_sym_BANG_EQ2] = ACTIONS(1716), + [anon_sym_LT2] = ACTIONS(1629), + [anon_sym_LT_EQ2] = ACTIONS(1716), + [anon_sym_GT_EQ2] = ACTIONS(1716), + [anon_sym_EQ_TILDE2] = ACTIONS(1716), + [anon_sym_BANG_TILDE2] = ACTIONS(1716), + [anon_sym_like2] = ACTIONS(1716), + [anon_sym_not_DASHlike2] = ACTIONS(1716), + [anon_sym_STAR_STAR2] = ACTIONS(1716), + [anon_sym_PLUS_PLUS2] = ACTIONS(1629), + [anon_sym_SLASH2] = ACTIONS(1629), + [anon_sym_mod2] = ACTIONS(1716), + [anon_sym_SLASH_SLASH2] = ACTIONS(1716), + [anon_sym_PLUS2] = ACTIONS(1629), + [anon_sym_bit_DASHshl2] = ACTIONS(1716), + [anon_sym_bit_DASHshr2] = ACTIONS(1716), + [anon_sym_bit_DASHand2] = ACTIONS(1716), + [anon_sym_bit_DASHxor2] = ACTIONS(1716), + [anon_sym_bit_DASHor2] = ACTIONS(1716), + [anon_sym_DOT_DOT2] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), + [anon_sym_err_GT] = ACTIONS(1629), + [anon_sym_out_GT] = ACTIONS(1629), + [anon_sym_e_GT] = ACTIONS(1629), + [anon_sym_o_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT] = ACTIONS(1629), + [anon_sym_err_GT_GT] = ACTIONS(1716), + [anon_sym_out_GT_GT] = ACTIONS(1716), + [anon_sym_e_GT_GT] = ACTIONS(1716), + [anon_sym_o_GT_GT] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), [anon_sym_POUND] = ACTIONS(3), }, [STATE(441)] = { [sym_comment] = STATE(441), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_EQ_GT] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1464), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), + [anon_sym_EQ] = ACTIONS(1742), + [anon_sym_PLUS_EQ] = ACTIONS(1744), + [anon_sym_DASH_EQ] = ACTIONS(1744), + [anon_sym_STAR_EQ] = ACTIONS(1744), + [anon_sym_SLASH_EQ] = ACTIONS(1744), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1716), + [sym__newline] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_err_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_GT_PIPE] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_GT2] = ACTIONS(1629), + [anon_sym_DASH2] = ACTIONS(1629), + [anon_sym_STAR2] = ACTIONS(1629), + [anon_sym_and2] = ACTIONS(1716), + [anon_sym_xor2] = ACTIONS(1716), + [anon_sym_or2] = ACTIONS(1716), + [anon_sym_not_DASHin2] = ACTIONS(1716), + [anon_sym_has2] = ACTIONS(1716), + [anon_sym_not_DASHhas2] = ACTIONS(1716), + [anon_sym_starts_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), + [anon_sym_ends_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), + [anon_sym_EQ_EQ2] = ACTIONS(1716), + [anon_sym_BANG_EQ2] = ACTIONS(1716), + [anon_sym_LT2] = ACTIONS(1629), + [anon_sym_LT_EQ2] = ACTIONS(1716), + [anon_sym_GT_EQ2] = ACTIONS(1716), + [anon_sym_EQ_TILDE2] = ACTIONS(1716), + [anon_sym_BANG_TILDE2] = ACTIONS(1716), + [anon_sym_like2] = ACTIONS(1716), + [anon_sym_not_DASHlike2] = ACTIONS(1716), + [anon_sym_STAR_STAR2] = ACTIONS(1716), + [anon_sym_PLUS_PLUS2] = ACTIONS(1629), + [anon_sym_SLASH2] = ACTIONS(1629), + [anon_sym_mod2] = ACTIONS(1716), + [anon_sym_SLASH_SLASH2] = ACTIONS(1716), + [anon_sym_PLUS2] = ACTIONS(1629), + [anon_sym_bit_DASHshl2] = ACTIONS(1716), + [anon_sym_bit_DASHshr2] = ACTIONS(1716), + [anon_sym_bit_DASHand2] = ACTIONS(1716), + [anon_sym_bit_DASHxor2] = ACTIONS(1716), + [anon_sym_bit_DASHor2] = ACTIONS(1716), + [anon_sym_DOT_DOT2] = ACTIONS(1633), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), + [anon_sym_err_GT] = ACTIONS(1629), + [anon_sym_out_GT] = ACTIONS(1629), + [anon_sym_e_GT] = ACTIONS(1629), + [anon_sym_o_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT] = ACTIONS(1629), + [anon_sym_err_GT_GT] = ACTIONS(1716), + [anon_sym_out_GT_GT] = ACTIONS(1716), + [anon_sym_e_GT_GT] = ACTIONS(1716), + [anon_sym_o_GT_GT] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), [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), + [anon_sym_in] = ACTIONS(1746), + [sym__newline] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_PIPE] = ACTIONS(1746), + [anon_sym_err_GT_PIPE] = ACTIONS(1746), + [anon_sym_out_GT_PIPE] = ACTIONS(1746), + [anon_sym_e_GT_PIPE] = ACTIONS(1746), + [anon_sym_o_GT_PIPE] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_GT2] = ACTIONS(1748), + [anon_sym_DASH2] = ACTIONS(1746), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_STAR2] = ACTIONS(1748), + [anon_sym_and2] = ACTIONS(1746), + [anon_sym_xor2] = ACTIONS(1746), + [anon_sym_or2] = ACTIONS(1746), + [anon_sym_not_DASHin2] = ACTIONS(1746), + [anon_sym_has2] = ACTIONS(1746), + [anon_sym_not_DASHhas2] = ACTIONS(1746), + [anon_sym_starts_DASHwith2] = ACTIONS(1746), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1746), + [anon_sym_ends_DASHwith2] = ACTIONS(1746), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1746), + [anon_sym_EQ_EQ2] = ACTIONS(1746), + [anon_sym_BANG_EQ2] = ACTIONS(1746), + [anon_sym_LT2] = ACTIONS(1748), + [anon_sym_LT_EQ2] = ACTIONS(1746), + [anon_sym_GT_EQ2] = ACTIONS(1746), + [anon_sym_EQ_TILDE2] = ACTIONS(1746), + [anon_sym_BANG_TILDE2] = ACTIONS(1746), + [anon_sym_like2] = ACTIONS(1746), + [anon_sym_not_DASHlike2] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_STAR_STAR2] = ACTIONS(1746), + [anon_sym_PLUS_PLUS2] = ACTIONS(1746), + [anon_sym_SLASH2] = ACTIONS(1748), + [anon_sym_mod2] = ACTIONS(1746), + [anon_sym_SLASH_SLASH2] = ACTIONS(1746), + [anon_sym_PLUS2] = ACTIONS(1748), + [anon_sym_bit_DASHshl2] = ACTIONS(1746), + [anon_sym_bit_DASHshr2] = ACTIONS(1746), + [anon_sym_bit_DASHand2] = ACTIONS(1746), + [anon_sym_bit_DASHxor2] = ACTIONS(1746), + [anon_sym_bit_DASHor2] = ACTIONS(1746), + [anon_sym_DOT_DOT2] = ACTIONS(1748), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1746), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1746), + [aux_sym__immediate_decimal_token1] = ACTIONS(1750), + [aux_sym__immediate_decimal_token5] = ACTIONS(1752), + [anon_sym_err_GT] = ACTIONS(1748), + [anon_sym_out_GT] = ACTIONS(1748), + [anon_sym_e_GT] = ACTIONS(1748), + [anon_sym_o_GT] = ACTIONS(1748), + [anon_sym_err_PLUSout_GT] = ACTIONS(1748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1748), + [anon_sym_o_PLUSe_GT] = ACTIONS(1748), + [anon_sym_e_PLUSo_GT] = ACTIONS(1748), + [anon_sym_err_GT_GT] = ACTIONS(1746), + [anon_sym_out_GT_GT] = ACTIONS(1746), + [anon_sym_e_GT_GT] = ACTIONS(1746), + [anon_sym_o_GT_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), + [sym__unquoted_pattern] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(3), }, [STATE(443)] = { - [sym__expr_parenthesized_immediate] = STATE(1269), - [sym__immediate_decimal] = STATE(1271), - [sym_val_variable] = STATE(1269), [sym_comment] = STATE(443), [ts_builtin_sym_end] = ACTIONS(1582), + [anon_sym_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 +82298,9 @@ 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_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 +82313,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), @@ -82040,136 +82354,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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_in] = ACTIONS(1754), + [sym__newline] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_err_GT_PIPE] = ACTIONS(1754), + [anon_sym_out_GT_PIPE] = ACTIONS(1754), + [anon_sym_e_GT_PIPE] = ACTIONS(1754), + [anon_sym_o_GT_PIPE] = ACTIONS(1754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_GT2] = ACTIONS(1756), + [anon_sym_DASH2] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_STAR2] = ACTIONS(1756), + [anon_sym_and2] = ACTIONS(1754), + [anon_sym_xor2] = ACTIONS(1754), + [anon_sym_or2] = ACTIONS(1754), + [anon_sym_not_DASHin2] = ACTIONS(1754), + [anon_sym_has2] = ACTIONS(1754), + [anon_sym_not_DASHhas2] = ACTIONS(1754), + [anon_sym_starts_DASHwith2] = ACTIONS(1754), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1754), + [anon_sym_ends_DASHwith2] = ACTIONS(1754), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1754), + [anon_sym_EQ_EQ2] = ACTIONS(1754), + [anon_sym_BANG_EQ2] = ACTIONS(1754), + [anon_sym_LT2] = ACTIONS(1756), + [anon_sym_LT_EQ2] = ACTIONS(1754), + [anon_sym_GT_EQ2] = ACTIONS(1754), + [anon_sym_EQ_TILDE2] = ACTIONS(1754), + [anon_sym_BANG_TILDE2] = ACTIONS(1754), + [anon_sym_like2] = ACTIONS(1754), + [anon_sym_not_DASHlike2] = ACTIONS(1754), + [anon_sym_LPAREN2] = ACTIONS(1754), + [anon_sym_STAR_STAR2] = ACTIONS(1754), + [anon_sym_PLUS_PLUS2] = ACTIONS(1754), + [anon_sym_SLASH2] = ACTIONS(1756), + [anon_sym_mod2] = ACTIONS(1754), + [anon_sym_SLASH_SLASH2] = ACTIONS(1754), + [anon_sym_PLUS2] = ACTIONS(1756), + [anon_sym_bit_DASHshl2] = ACTIONS(1754), + [anon_sym_bit_DASHshr2] = ACTIONS(1754), + [anon_sym_bit_DASHand2] = ACTIONS(1754), + [anon_sym_bit_DASHxor2] = ACTIONS(1754), + [anon_sym_bit_DASHor2] = ACTIONS(1754), + [anon_sym_DOT_DOT2] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1758), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1754), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1754), + [aux_sym__immediate_decimal_token5] = ACTIONS(1760), + [anon_sym_err_GT] = ACTIONS(1756), + [anon_sym_out_GT] = ACTIONS(1756), + [anon_sym_e_GT] = ACTIONS(1756), + [anon_sym_o_GT] = ACTIONS(1756), + [anon_sym_err_PLUSout_GT] = ACTIONS(1756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), + [anon_sym_o_PLUSe_GT] = ACTIONS(1756), + [anon_sym_e_PLUSo_GT] = ACTIONS(1756), + [anon_sym_err_GT_GT] = ACTIONS(1754), + [anon_sym_out_GT_GT] = ACTIONS(1754), + [anon_sym_e_GT_GT] = ACTIONS(1754), + [anon_sym_o_GT_GT] = ACTIONS(1754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), + [sym__unquoted_pattern] = ACTIONS(1756), [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_EQ] = ACTIONS(1627), + [anon_sym_PLUS_EQ] = ACTIONS(1714), + [anon_sym_DASH_EQ] = ACTIONS(1714), + [anon_sym_STAR_EQ] = ACTIONS(1714), + [anon_sym_SLASH_EQ] = ACTIONS(1714), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(1716), + [sym__newline] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_err_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_GT_PIPE] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), + [anon_sym_GT2] = ACTIONS(1629), + [anon_sym_DASH2] = ACTIONS(1629), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_STAR2] = ACTIONS(1629), + [anon_sym_and2] = ACTIONS(1716), + [anon_sym_xor2] = ACTIONS(1716), + [anon_sym_or2] = ACTIONS(1716), + [anon_sym_not_DASHin2] = ACTIONS(1716), + [anon_sym_has2] = ACTIONS(1716), + [anon_sym_not_DASHhas2] = ACTIONS(1716), + [anon_sym_starts_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), + [anon_sym_ends_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), + [anon_sym_EQ_EQ2] = ACTIONS(1716), + [anon_sym_BANG_EQ2] = ACTIONS(1716), + [anon_sym_LT2] = ACTIONS(1629), + [anon_sym_LT_EQ2] = ACTIONS(1716), + [anon_sym_GT_EQ2] = ACTIONS(1716), + [anon_sym_EQ_TILDE2] = ACTIONS(1716), + [anon_sym_BANG_TILDE2] = ACTIONS(1716), + [anon_sym_like2] = ACTIONS(1716), + [anon_sym_not_DASHlike2] = ACTIONS(1716), + [anon_sym_STAR_STAR2] = ACTIONS(1716), + [anon_sym_PLUS_PLUS2] = ACTIONS(1629), + [anon_sym_SLASH2] = ACTIONS(1629), + [anon_sym_mod2] = ACTIONS(1716), + [anon_sym_SLASH_SLASH2] = ACTIONS(1716), + [anon_sym_PLUS2] = ACTIONS(1629), + [anon_sym_bit_DASHshl2] = ACTIONS(1716), + [anon_sym_bit_DASHshr2] = ACTIONS(1716), + [anon_sym_bit_DASHand2] = ACTIONS(1716), + [anon_sym_bit_DASHxor2] = ACTIONS(1716), + [anon_sym_bit_DASHor2] = ACTIONS(1716), + [anon_sym_DOT_DOT2] = ACTIONS(1633), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), + [anon_sym_err_GT] = ACTIONS(1629), + [anon_sym_out_GT] = ACTIONS(1629), + [anon_sym_e_GT] = ACTIONS(1629), + [anon_sym_o_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT] = ACTIONS(1629), + [anon_sym_err_GT_GT] = ACTIONS(1716), + [anon_sym_out_GT_GT] = ACTIONS(1716), + [anon_sym_e_GT_GT] = ACTIONS(1716), + [anon_sym_o_GT_GT] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(446)] = { + [sym__expr_parenthesized_immediate] = STATE(1290), + [sym__immediate_decimal] = STATE(1291), + [sym_val_variable] = STATE(1290), + [sym_comment] = STATE(446), + [ts_builtin_sym_end] = ACTIONS(1617), + [anon_sym_in] = ACTIONS(1617), + [sym__newline] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1617), + [anon_sym_PIPE] = ACTIONS(1617), + [anon_sym_err_GT_PIPE] = ACTIONS(1617), + [anon_sym_out_GT_PIPE] = ACTIONS(1617), + [anon_sym_e_GT_PIPE] = ACTIONS(1617), + [anon_sym_o_GT_PIPE] = ACTIONS(1617), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1617), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1617), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1617), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(1651), [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_and2] = ACTIONS(1617), + [anon_sym_xor2] = ACTIONS(1617), + [anon_sym_or2] = ACTIONS(1617), + [anon_sym_not_DASHin2] = ACTIONS(1617), + [anon_sym_has2] = ACTIONS(1617), + [anon_sym_not_DASHhas2] = ACTIONS(1617), + [anon_sym_starts_DASHwith2] = ACTIONS(1617), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1617), + [anon_sym_ends_DASHwith2] = ACTIONS(1617), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1617), + [anon_sym_EQ_EQ2] = ACTIONS(1617), + [anon_sym_BANG_EQ2] = ACTIONS(1617), [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_LT_EQ2] = ACTIONS(1617), + [anon_sym_GT_EQ2] = ACTIONS(1617), + [anon_sym_EQ_TILDE2] = ACTIONS(1617), + [anon_sym_BANG_TILDE2] = ACTIONS(1617), + [anon_sym_like2] = ACTIONS(1617), + [anon_sym_not_DASHlike2] = ACTIONS(1617), + [anon_sym_LPAREN2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1617), + [anon_sym_PLUS_PLUS2] = ACTIONS(1617), [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_mod2] = ACTIONS(1617), + [anon_sym_SLASH_SLASH2] = ACTIONS(1617), [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_bit_DASHshl2] = ACTIONS(1617), + [anon_sym_bit_DASHshr2] = ACTIONS(1617), + [anon_sym_bit_DASHand2] = ACTIONS(1617), + [anon_sym_bit_DASHxor2] = ACTIONS(1617), + [anon_sym_bit_DASHor2] = ACTIONS(1617), + [aux_sym__immediate_decimal_token1] = ACTIONS(1730), + [aux_sym__immediate_decimal_token2] = ACTIONS(1730), + [aux_sym__immediate_decimal_token3] = ACTIONS(1659), + [aux_sym__immediate_decimal_token4] = ACTIONS(1659), [anon_sym_err_GT] = ACTIONS(1619), [anon_sym_out_GT] = ACTIONS(1619), [anon_sym_e_GT] = ACTIONS(1619), @@ -82178,618 +82567,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_err_GT_GT] = ACTIONS(1617), + [anon_sym_out_GT_GT] = ACTIONS(1617), + [anon_sym_e_GT_GT] = ACTIONS(1617), + [anon_sym_o_GT_GT] = ACTIONS(1617), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1617), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1617), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1617), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1617), [anon_sym_POUND] = ACTIONS(3), }, [STATE(447)] = { + [sym__expr_parenthesized_immediate] = STATE(1296), + [sym__immediate_decimal] = STATE(1297), + [sym_val_variable] = STATE(1296), [sym_comment] = STATE(447), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_EQ_GT] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1537), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_COLON2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [ts_builtin_sym_end] = ACTIONS(1661), + [anon_sym_in] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_GT2] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_STAR2] = ACTIONS(1663), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_has2] = ACTIONS(1661), + [anon_sym_not_DASHhas2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1663), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_like2] = ACTIONS(1661), + [anon_sym_not_DASHlike2] = ACTIONS(1661), + [anon_sym_LPAREN2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1663), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [aux_sym__immediate_decimal_token1] = ACTIONS(1730), + [aux_sym__immediate_decimal_token2] = ACTIONS(1730), + [aux_sym__immediate_decimal_token3] = ACTIONS(1659), + [aux_sym__immediate_decimal_token4] = ACTIONS(1659), + [anon_sym_err_GT] = ACTIONS(1663), + [anon_sym_out_GT] = ACTIONS(1663), + [anon_sym_e_GT] = ACTIONS(1663), + [anon_sym_o_GT] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT] = ACTIONS(1663), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), [anon_sym_POUND] = ACTIONS(3), }, [STATE(448)] = { - [sym__expr_parenthesized_immediate] = STATE(1336), - [sym__immediate_decimal] = STATE(1337), - [sym_val_variable] = STATE(1336), [sym_comment] = STATE(448), - [ts_builtin_sym_end] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [sym__newline] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1667), - [anon_sym_err_GT_PIPE] = ACTIONS(1667), - [anon_sym_out_GT_PIPE] = ACTIONS(1667), - [anon_sym_e_GT_PIPE] = ACTIONS(1667), - [anon_sym_o_GT_PIPE] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_has2] = ACTIONS(1667), - [anon_sym_not_DASHhas2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1669), - [anon_sym_LT_EQ2] = ACTIONS(1667), - [anon_sym_GT_EQ2] = ACTIONS(1667), - [anon_sym_EQ_TILDE2] = ACTIONS(1667), - [anon_sym_BANG_TILDE2] = ACTIONS(1667), - [anon_sym_like2] = ACTIONS(1667), - [anon_sym_not_DASHlike2] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_bit_DASHshl2] = ACTIONS(1667), - [anon_sym_bit_DASHshr2] = ACTIONS(1667), - [anon_sym_bit_DASHand2] = ACTIONS(1667), - [anon_sym_bit_DASHxor2] = ACTIONS(1667), - [anon_sym_bit_DASHor2] = ACTIONS(1667), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1667), - [anon_sym_out_GT_GT] = ACTIONS(1667), - [anon_sym_e_GT_GT] = ACTIONS(1667), - [anon_sym_o_GT_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1667), + [anon_sym_if] = 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_RPAREN] = ACTIONS(1539), + [anon_sym_GT2] = ACTIONS(1537), + [anon_sym_DASH2] = ACTIONS(1539), + [anon_sym_LBRACE] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_EQ_GT] = ACTIONS(1539), + [anon_sym_STAR2] = ACTIONS(1537), + [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(1537), + [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(1537), + [anon_sym_mod2] = ACTIONS(1539), + [anon_sym_SLASH_SLASH2] = ACTIONS(1539), + [anon_sym_PLUS2] = ACTIONS(1537), + [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(1537), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1539), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1539), + [anon_sym_COLON2] = ACTIONS(1539), + [anon_sym_DOT2] = ACTIONS(1537), + [anon_sym_err_GT] = ACTIONS(1537), + [anon_sym_out_GT] = ACTIONS(1537), + [anon_sym_e_GT] = ACTIONS(1537), + [anon_sym_o_GT] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT] = ACTIONS(1537), + [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(3), }, [STATE(449)] = { - [sym__expr_parenthesized_immediate] = STATE(1339), - [sym__immediate_decimal] = STATE(1340), - [sym_val_variable] = STATE(1339), + [sym__expr_parenthesized_immediate] = STATE(1298), + [sym__immediate_decimal] = STATE(1299), + [sym_val_variable] = STATE(1298), [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), + [ts_builtin_sym_end] = ACTIONS(1669), + [anon_sym_in] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_GT2] = ACTIONS(1671), + [anon_sym_DASH2] = ACTIONS(1671), + [anon_sym_STAR2] = ACTIONS(1671), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_has2] = ACTIONS(1669), + [anon_sym_not_DASHhas2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1671), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_like2] = ACTIONS(1669), + [anon_sym_not_DASHlike2] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1671), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1671), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [aux_sym__immediate_decimal_token1] = ACTIONS(1730), + [aux_sym__immediate_decimal_token2] = ACTIONS(1730), + [aux_sym__immediate_decimal_token3] = ACTIONS(1659), + [aux_sym__immediate_decimal_token4] = ACTIONS(1659), + [anon_sym_err_GT] = ACTIONS(1671), + [anon_sym_out_GT] = ACTIONS(1671), + [anon_sym_e_GT] = ACTIONS(1671), + [anon_sym_o_GT] = ACTIONS(1671), + [anon_sym_err_PLUSout_GT] = ACTIONS(1671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1671), + [anon_sym_o_PLUSe_GT] = ACTIONS(1671), + [anon_sym_e_PLUSo_GT] = ACTIONS(1671), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), }, [STATE(450)] = { - [sym__expr_parenthesized_immediate] = STATE(1341), - [sym__immediate_decimal] = STATE(1342), - [sym_val_variable] = STATE(1341), [sym_comment] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_STAR2] = ACTIONS(1677), - [anon_sym_and2] = ACTIONS(1675), - [anon_sym_xor2] = ACTIONS(1675), - [anon_sym_or2] = ACTIONS(1675), - [anon_sym_not_DASHin2] = ACTIONS(1675), - [anon_sym_has2] = ACTIONS(1675), - [anon_sym_not_DASHhas2] = ACTIONS(1675), - [anon_sym_starts_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1675), - [anon_sym_ends_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1675), - [anon_sym_EQ_EQ2] = ACTIONS(1675), - [anon_sym_BANG_EQ2] = ACTIONS(1675), - [anon_sym_LT2] = ACTIONS(1677), - [anon_sym_LT_EQ2] = ACTIONS(1675), - [anon_sym_GT_EQ2] = ACTIONS(1675), - [anon_sym_EQ_TILDE2] = ACTIONS(1675), - [anon_sym_BANG_TILDE2] = ACTIONS(1675), - [anon_sym_like2] = ACTIONS(1675), - [anon_sym_not_DASHlike2] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1675), - [anon_sym_PLUS_PLUS2] = ACTIONS(1675), - [anon_sym_SLASH2] = ACTIONS(1677), - [anon_sym_mod2] = ACTIONS(1675), - [anon_sym_SLASH_SLASH2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1677), - [anon_sym_bit_DASHshl2] = ACTIONS(1675), - [anon_sym_bit_DASHshr2] = ACTIONS(1675), - [anon_sym_bit_DASHand2] = ACTIONS(1675), - [anon_sym_bit_DASHxor2] = ACTIONS(1675), - [anon_sym_bit_DASHor2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1677), - [anon_sym_out_GT] = ACTIONS(1677), - [anon_sym_e_GT] = ACTIONS(1677), - [anon_sym_o_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT] = ACTIONS(1677), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(451)] = { - [sym__expr_parenthesized_immediate] = STATE(1343), - [sym__immediate_decimal] = STATE(1344), - [sym_val_variable] = STATE(1343), - [sym_comment] = STATE(451), - [ts_builtin_sym_end] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(452)] = { - [sym__expr_parenthesized_immediate] = STATE(1311), - [sym__immediate_decimal] = STATE(1318), - [sym_val_variable] = STATE(1311), - [sym_comment] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(453)] = { - [sym_comment] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(1558), - [anon_sym_DASH_EQ] = ACTIONS(1558), - [anon_sym_STAR_EQ] = ACTIONS(1558), - [anon_sym_SLASH_EQ] = ACTIONS(1558), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1558), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1556), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1556), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(454)] = { - [sym_comment] = STATE(454), [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(749), [sym__newline] = ACTIONS(749), @@ -82838,10 +82852,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(1762), [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(1764), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -82863,104 +82877,404 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(451)] = { + [sym__expr_parenthesized_immediate] = STATE(4712), + [sym_comment] = STATE(451), + [anon_sym_in] = ACTIONS(884), + [sym__newline] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(884), + [anon_sym_err_GT_PIPE] = ACTIONS(884), + [anon_sym_out_GT_PIPE] = ACTIONS(884), + [anon_sym_e_GT_PIPE] = ACTIONS(884), + [anon_sym_o_GT_PIPE] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(884), + [anon_sym_GT2] = ACTIONS(858), + [anon_sym_DASH2] = ACTIONS(884), + [anon_sym_RBRACE] = ACTIONS(884), + [anon_sym_STAR2] = ACTIONS(858), + [anon_sym_and2] = ACTIONS(884), + [anon_sym_xor2] = ACTIONS(884), + [anon_sym_or2] = ACTIONS(884), + [anon_sym_not_DASHin2] = ACTIONS(884), + [anon_sym_has2] = ACTIONS(884), + [anon_sym_not_DASHhas2] = ACTIONS(884), + [anon_sym_starts_DASHwith2] = ACTIONS(884), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(884), + [anon_sym_ends_DASHwith2] = ACTIONS(884), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(884), + [anon_sym_EQ_EQ2] = ACTIONS(884), + [anon_sym_BANG_EQ2] = ACTIONS(884), + [anon_sym_LT2] = ACTIONS(858), + [anon_sym_LT_EQ2] = ACTIONS(884), + [anon_sym_GT_EQ2] = ACTIONS(884), + [anon_sym_EQ_TILDE2] = ACTIONS(884), + [anon_sym_BANG_TILDE2] = ACTIONS(884), + [anon_sym_like2] = ACTIONS(884), + [anon_sym_not_DASHlike2] = ACTIONS(884), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(884), + [anon_sym_PLUS_PLUS2] = ACTIONS(884), + [anon_sym_SLASH2] = ACTIONS(858), + [anon_sym_mod2] = ACTIONS(884), + [anon_sym_SLASH_SLASH2] = ACTIONS(884), + [anon_sym_PLUS2] = ACTIONS(858), + [anon_sym_bit_DASHshl2] = ACTIONS(884), + [anon_sym_bit_DASHshr2] = ACTIONS(884), + [anon_sym_bit_DASHand2] = ACTIONS(884), + [anon_sym_bit_DASHxor2] = ACTIONS(884), + [anon_sym_bit_DASHor2] = ACTIONS(884), + [anon_sym_DOT_DOT2] = ACTIONS(1768), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), + [sym_filesize_unit] = ACTIONS(1772), + [sym_duration_unit] = ACTIONS(1774), + [anon_sym_err_GT] = ACTIONS(858), + [anon_sym_out_GT] = ACTIONS(858), + [anon_sym_e_GT] = ACTIONS(858), + [anon_sym_o_GT] = ACTIONS(858), + [anon_sym_err_PLUSout_GT] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT] = ACTIONS(858), + [anon_sym_o_PLUSe_GT] = ACTIONS(858), + [anon_sym_e_PLUSo_GT] = ACTIONS(858), + [anon_sym_err_GT_GT] = ACTIONS(884), + [anon_sym_out_GT_GT] = ACTIONS(884), + [anon_sym_e_GT_GT] = ACTIONS(884), + [anon_sym_o_GT_GT] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), + [sym__unquoted_pattern] = ACTIONS(1776), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(452)] = { + [sym_comment] = STATE(452), + [anon_sym_if] = ACTIONS(1543), + [anon_sym_in] = ACTIONS(1543), + [sym__newline] = ACTIONS(1543), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1543), + [anon_sym_err_GT_PIPE] = ACTIONS(1543), + [anon_sym_out_GT_PIPE] = ACTIONS(1543), + [anon_sym_e_GT_PIPE] = ACTIONS(1543), + [anon_sym_o_GT_PIPE] = ACTIONS(1543), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1543), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1543), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1543), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1543), + [anon_sym_RPAREN] = ACTIONS(1543), + [anon_sym_GT2] = ACTIONS(1541), + [anon_sym_DASH2] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_EQ_GT] = ACTIONS(1543), + [anon_sym_STAR2] = ACTIONS(1541), + [anon_sym_and2] = ACTIONS(1543), + [anon_sym_xor2] = ACTIONS(1543), + [anon_sym_or2] = ACTIONS(1543), + [anon_sym_not_DASHin2] = ACTIONS(1543), + [anon_sym_has2] = ACTIONS(1543), + [anon_sym_not_DASHhas2] = ACTIONS(1543), + [anon_sym_starts_DASHwith2] = ACTIONS(1543), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1543), + [anon_sym_ends_DASHwith2] = ACTIONS(1543), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1543), + [anon_sym_EQ_EQ2] = ACTIONS(1543), + [anon_sym_BANG_EQ2] = ACTIONS(1543), + [anon_sym_LT2] = ACTIONS(1541), + [anon_sym_LT_EQ2] = ACTIONS(1543), + [anon_sym_GT_EQ2] = ACTIONS(1543), + [anon_sym_EQ_TILDE2] = ACTIONS(1543), + [anon_sym_BANG_TILDE2] = ACTIONS(1543), + [anon_sym_like2] = ACTIONS(1543), + [anon_sym_not_DASHlike2] = ACTIONS(1543), + [anon_sym_STAR_STAR2] = ACTIONS(1543), + [anon_sym_PLUS_PLUS2] = ACTIONS(1543), + [anon_sym_SLASH2] = ACTIONS(1541), + [anon_sym_mod2] = ACTIONS(1543), + [anon_sym_SLASH_SLASH2] = ACTIONS(1543), + [anon_sym_PLUS2] = ACTIONS(1541), + [anon_sym_bit_DASHshl2] = ACTIONS(1543), + [anon_sym_bit_DASHshr2] = ACTIONS(1543), + [anon_sym_bit_DASHand2] = ACTIONS(1543), + [anon_sym_bit_DASHxor2] = ACTIONS(1543), + [anon_sym_bit_DASHor2] = ACTIONS(1543), + [anon_sym_DOT_DOT2] = ACTIONS(1541), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1543), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1543), + [anon_sym_COLON2] = ACTIONS(1543), + [anon_sym_DOT2] = ACTIONS(1541), + [anon_sym_err_GT] = ACTIONS(1541), + [anon_sym_out_GT] = ACTIONS(1541), + [anon_sym_e_GT] = ACTIONS(1541), + [anon_sym_o_GT] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT] = ACTIONS(1541), + [anon_sym_err_GT_GT] = ACTIONS(1543), + [anon_sym_out_GT_GT] = ACTIONS(1543), + [anon_sym_e_GT_GT] = ACTIONS(1543), + [anon_sym_o_GT_GT] = ACTIONS(1543), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1543), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1543), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1543), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1543), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(453)] = { + [sym__expr_parenthesized_immediate] = STATE(1294), + [sym__immediate_decimal] = STATE(1305), + [sym_val_variable] = STATE(1294), + [sym_comment] = STATE(453), + [ts_builtin_sym_end] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1651), + [anon_sym_GT2] = ACTIONS(1603), + [anon_sym_DASH2] = ACTIONS(1603), + [anon_sym_STAR2] = ACTIONS(1603), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_has2] = ACTIONS(1599), + [anon_sym_not_DASHhas2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1603), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_like2] = ACTIONS(1599), + [anon_sym_not_DASHlike2] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1603), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1603), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(1730), + [aux_sym__immediate_decimal_token2] = ACTIONS(1730), + [aux_sym__immediate_decimal_token3] = ACTIONS(1659), + [aux_sym__immediate_decimal_token4] = ACTIONS(1659), + [anon_sym_err_GT] = ACTIONS(1603), + [anon_sym_out_GT] = ACTIONS(1603), + [anon_sym_e_GT] = ACTIONS(1603), + [anon_sym_o_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT] = ACTIONS(1603), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(454)] = { + [sym_comment] = STATE(454), + [anon_sym_if] = ACTIONS(1535), + [anon_sym_in] = ACTIONS(1535), + [sym__newline] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_err_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_GT_PIPE] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), + [anon_sym_RPAREN] = ACTIONS(1535), + [anon_sym_GT2] = ACTIONS(1533), + [anon_sym_DASH2] = ACTIONS(1535), + [anon_sym_LBRACE] = ACTIONS(1535), + [anon_sym_RBRACE] = ACTIONS(1535), + [anon_sym_EQ_GT] = ACTIONS(1535), + [anon_sym_STAR2] = ACTIONS(1533), + [anon_sym_and2] = ACTIONS(1535), + [anon_sym_xor2] = ACTIONS(1535), + [anon_sym_or2] = ACTIONS(1535), + [anon_sym_not_DASHin2] = ACTIONS(1535), + [anon_sym_has2] = ACTIONS(1535), + [anon_sym_not_DASHhas2] = ACTIONS(1535), + [anon_sym_starts_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), + [anon_sym_ends_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), + [anon_sym_EQ_EQ2] = ACTIONS(1535), + [anon_sym_BANG_EQ2] = ACTIONS(1535), + [anon_sym_LT2] = ACTIONS(1533), + [anon_sym_LT_EQ2] = ACTIONS(1535), + [anon_sym_GT_EQ2] = ACTIONS(1535), + [anon_sym_EQ_TILDE2] = ACTIONS(1535), + [anon_sym_BANG_TILDE2] = ACTIONS(1535), + [anon_sym_like2] = ACTIONS(1535), + [anon_sym_not_DASHlike2] = ACTIONS(1535), + [anon_sym_STAR_STAR2] = ACTIONS(1535), + [anon_sym_PLUS_PLUS2] = ACTIONS(1535), + [anon_sym_SLASH2] = ACTIONS(1533), + [anon_sym_mod2] = ACTIONS(1535), + [anon_sym_SLASH_SLASH2] = ACTIONS(1535), + [anon_sym_PLUS2] = ACTIONS(1533), + [anon_sym_bit_DASHshl2] = ACTIONS(1535), + [anon_sym_bit_DASHshr2] = ACTIONS(1535), + [anon_sym_bit_DASHand2] = ACTIONS(1535), + [anon_sym_bit_DASHxor2] = ACTIONS(1535), + [anon_sym_bit_DASHor2] = ACTIONS(1535), + [anon_sym_DOT_DOT2] = ACTIONS(1533), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1535), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1535), + [anon_sym_COLON2] = ACTIONS(1535), + [anon_sym_DOT2] = ACTIONS(1533), + [anon_sym_err_GT] = ACTIONS(1533), + [anon_sym_out_GT] = ACTIONS(1533), + [anon_sym_e_GT] = ACTIONS(1533), + [anon_sym_o_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT] = ACTIONS(1533), + [anon_sym_err_GT_GT] = ACTIONS(1535), + [anon_sym_out_GT_GT] = ACTIONS(1535), + [anon_sym_e_GT_GT] = ACTIONS(1535), + [anon_sym_o_GT_GT] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(455)] = { - [sym_cmd_identifier] = STATE(4308), - [sym__match_pattern_record_body] = STATE(5085), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4048), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4971), [sym_comment] = STATE(455), - [aux_sym__types_body_repeat1] = STATE(625), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), - [anon_sym_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_in] = ACTIONS(1754), + [sym__newline] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_err_GT_PIPE] = ACTIONS(1754), + [anon_sym_out_GT_PIPE] = ACTIONS(1754), + [anon_sym_e_GT_PIPE] = ACTIONS(1754), + [anon_sym_o_GT_PIPE] = ACTIONS(1754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_GT2] = ACTIONS(1756), + [anon_sym_DASH2] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_STAR2] = ACTIONS(1756), + [anon_sym_and2] = ACTIONS(1754), + [anon_sym_xor2] = ACTIONS(1754), + [anon_sym_or2] = ACTIONS(1754), + [anon_sym_not_DASHin2] = ACTIONS(1754), + [anon_sym_has2] = ACTIONS(1754), + [anon_sym_not_DASHhas2] = ACTIONS(1754), + [anon_sym_starts_DASHwith2] = ACTIONS(1754), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1754), + [anon_sym_ends_DASHwith2] = ACTIONS(1754), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1754), + [anon_sym_EQ_EQ2] = ACTIONS(1754), + [anon_sym_BANG_EQ2] = ACTIONS(1754), + [anon_sym_LT2] = ACTIONS(1756), + [anon_sym_LT_EQ2] = ACTIONS(1754), + [anon_sym_GT_EQ2] = ACTIONS(1754), + [anon_sym_EQ_TILDE2] = ACTIONS(1754), + [anon_sym_BANG_TILDE2] = ACTIONS(1754), + [anon_sym_like2] = ACTIONS(1754), + [anon_sym_not_DASHlike2] = ACTIONS(1754), + [anon_sym_LPAREN2] = ACTIONS(1754), + [anon_sym_STAR_STAR2] = ACTIONS(1754), + [anon_sym_PLUS_PLUS2] = ACTIONS(1754), + [anon_sym_SLASH2] = ACTIONS(1756), + [anon_sym_mod2] = ACTIONS(1754), + [anon_sym_SLASH_SLASH2] = ACTIONS(1754), + [anon_sym_PLUS2] = ACTIONS(1756), + [anon_sym_bit_DASHshl2] = ACTIONS(1754), + [anon_sym_bit_DASHshr2] = ACTIONS(1754), + [anon_sym_bit_DASHand2] = ACTIONS(1754), + [anon_sym_bit_DASHxor2] = ACTIONS(1754), + [anon_sym_bit_DASHor2] = ACTIONS(1754), + [anon_sym_DOT_DOT2] = ACTIONS(1756), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1754), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1754), + [aux_sym__immediate_decimal_token5] = ACTIONS(1760), + [anon_sym_err_GT] = ACTIONS(1756), + [anon_sym_out_GT] = ACTIONS(1756), + [anon_sym_e_GT] = ACTIONS(1756), + [anon_sym_o_GT] = ACTIONS(1756), + [anon_sym_err_PLUSout_GT] = ACTIONS(1756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), + [anon_sym_o_PLUSe_GT] = ACTIONS(1756), + [anon_sym_e_PLUSo_GT] = ACTIONS(1756), + [anon_sym_err_GT_GT] = ACTIONS(1754), + [anon_sym_out_GT_GT] = ACTIONS(1754), + [anon_sym_e_GT_GT] = ACTIONS(1754), + [anon_sym_o_GT_GT] = ACTIONS(1754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), + [sym__unquoted_pattern] = ACTIONS(1756), [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_cmd_identifier] = STATE(4141), + [sym__match_pattern_record_body] = STATE(5250), + [sym_expr_parenthesized] = STATE(5138), + [sym__spread_parenthesized] = STATE(4677), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(4143), + [sym_val_number] = STATE(5138), + [sym__val_number_decimal] = STATE(1947), + [sym__val_number] = STATE(700), + [sym_val_string] = STATE(5138), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_interpolated] = STATE(5138), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym__spread_record] = STATE(4677), + [sym_record_entry] = STATE(4657), + [sym__record_key] = STATE(4944), [sym_comment] = STATE(456), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__types_body_repeat1] = STATE(529), + [aux_sym__match_pattern_record_body_repeat1] = STATE(785), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -82981,60 +83295,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1778), + [anon_sym_false] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1780), + [aux_sym_cmd_identifier_token4] = ACTIONS(1780), + [aux_sym_cmd_identifier_token5] = ACTIONS(1780), + [sym__newline] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1786), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1788), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(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(1790), + [aux_sym__val_number_decimal_token2] = ACTIONS(1792), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), [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(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), [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(1802), }, [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_cmd_identifier] = STATE(4141), + [sym_expr_parenthesized] = STATE(5138), + [sym__spread_parenthesized] = STATE(4677), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(5138), + [sym_val_number] = STATE(5138), + [sym__val_number_decimal] = STATE(1947), + [sym__val_number] = STATE(700), + [sym_val_string] = STATE(5138), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_interpolated] = STATE(5138), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym__spread_record] = STATE(4677), + [sym_record_body] = STATE(5145), + [sym_record_entry] = STATE(4651), + [sym__record_key] = STATE(4944), [sym_comment] = STATE(457), - [aux_sym__types_body_repeat1] = STATE(625), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), + [aux_sym__types_body_repeat1] = STATE(642), + [aux_sym_record_body_repeat1] = STATE(850), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83055,60 +83369,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1778), + [anon_sym_false] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1780), + [aux_sym_cmd_identifier_token4] = ACTIONS(1780), + [aux_sym_cmd_identifier_token5] = ACTIONS(1780), + [sym__newline] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1804), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1806), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(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(1790), + [aux_sym__val_number_decimal_token2] = ACTIONS(1792), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), [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(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), [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(1802), }, [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_cmd_identifier] = STATE(4141), + [sym_expr_parenthesized] = STATE(5138), + [sym__spread_parenthesized] = STATE(4677), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(5138), + [sym_val_number] = STATE(5138), + [sym__val_number_decimal] = STATE(1947), + [sym__val_number] = STATE(700), + [sym_val_string] = STATE(5138), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_interpolated] = STATE(5138), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym__spread_record] = STATE(4677), + [sym_record_body] = STATE(5216), + [sym_record_entry] = STATE(4651), + [sym__record_key] = STATE(4944), [sym_comment] = STATE(458), - [aux_sym__types_body_repeat1] = STATE(625), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), + [aux_sym__types_body_repeat1] = STATE(642), + [aux_sym_record_body_repeat1] = STATE(850), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83129,208 +83443,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1778), + [anon_sym_false] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1780), + [aux_sym_cmd_identifier_token4] = ACTIONS(1780), + [aux_sym_cmd_identifier_token5] = ACTIONS(1780), + [sym__newline] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1804), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1800), + [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_decimal_token1] = ACTIONS(1790), + [aux_sym__val_number_decimal_token2] = ACTIONS(1792), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), [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(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), [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(1802), }, [STATE(459)] = { + [sym_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4550), + [sym__spread_list] = STATE(4821), + [sym_val_entry] = STATE(4521), + [sym_val_record] = STATE(4550), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [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), + [aux_sym__types_body_repeat1] = STATE(2120), + [aux_sym_list_body_repeat1] = STATE(508), + [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(1568), + [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(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_in] = ACTIONS(741), + [sym__newline] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_err_GT_PIPE] = ACTIONS(741), + [anon_sym_out_GT_PIPE] = ACTIONS(741), + [anon_sym_e_GT_PIPE] = ACTIONS(741), + [anon_sym_o_GT_PIPE] = ACTIONS(741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(741), + [anon_sym_xor2] = ACTIONS(741), + [anon_sym_or2] = ACTIONS(741), + [anon_sym_not_DASHin2] = ACTIONS(741), + [anon_sym_has2] = ACTIONS(741), + [anon_sym_not_DASHhas2] = ACTIONS(741), + [anon_sym_starts_DASHwith2] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), + [anon_sym_ends_DASHwith2] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), + [anon_sym_EQ_EQ2] = ACTIONS(741), + [anon_sym_BANG_EQ2] = ACTIONS(741), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(741), + [anon_sym_GT_EQ2] = ACTIONS(741), + [anon_sym_EQ_TILDE2] = ACTIONS(741), + [anon_sym_BANG_TILDE2] = ACTIONS(741), + [anon_sym_like2] = ACTIONS(741), + [anon_sym_not_DASHlike2] = ACTIONS(741), + [anon_sym_LPAREN2] = ACTIONS(741), + [anon_sym_STAR_STAR2] = ACTIONS(741), + [anon_sym_PLUS_PLUS2] = ACTIONS(741), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(741), + [anon_sym_SLASH_SLASH2] = ACTIONS(741), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(741), + [anon_sym_bit_DASHshr2] = ACTIONS(741), + [anon_sym_bit_DASHand2] = ACTIONS(741), + [anon_sym_bit_DASHxor2] = ACTIONS(741), + [anon_sym_bit_DASHor2] = ACTIONS(741), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(741), + [anon_sym_out_GT_GT] = ACTIONS(741), + [anon_sym_e_GT_GT] = ACTIONS(741), + [anon_sym_o_GT_GT] = ACTIONS(741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), + [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), - [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_cmd_identifier] = STATE(4141), + [sym__match_pattern_record_body] = STATE(5069), + [sym_expr_parenthesized] = STATE(5138), + [sym__spread_parenthesized] = STATE(4677), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(4143), + [sym_val_number] = STATE(5138), + [sym__val_number_decimal] = STATE(1947), + [sym__val_number] = STATE(700), + [sym_val_string] = STATE(5138), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_interpolated] = STATE(5138), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym__spread_record] = STATE(4677), + [sym_record_entry] = STATE(4657), + [sym__record_key] = STATE(4944), [sym_comment] = STATE(461), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__types_body_repeat1] = STATE(529), + [aux_sym__match_pattern_record_body_repeat1] = STATE(785), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83351,504 +83665,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1778), + [anon_sym_false] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1780), + [aux_sym_cmd_identifier_token4] = ACTIONS(1780), + [aux_sym_cmd_identifier_token5] = ACTIONS(1780), + [sym__newline] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1786), [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_decimal_token1] = ACTIONS(1790), + [aux_sym__val_number_decimal_token2] = ACTIONS(1792), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), [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(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), [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(1802), }, [STATE(462)] = { [sym_comment] = STATE(462), - [anon_sym_in] = ACTIONS(851), - [sym__newline] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_err_GT_PIPE] = ACTIONS(851), - [anon_sym_out_GT_PIPE] = ACTIONS(851), - [anon_sym_e_GT_PIPE] = ACTIONS(851), - [anon_sym_o_GT_PIPE] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(851), - [anon_sym_RPAREN] = ACTIONS(851), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(851), - [anon_sym_RBRACE] = ACTIONS(851), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(851), - [anon_sym_xor2] = ACTIONS(851), - [anon_sym_or2] = ACTIONS(851), - [anon_sym_not_DASHin2] = ACTIONS(851), - [anon_sym_has2] = ACTIONS(851), - [anon_sym_not_DASHhas2] = ACTIONS(851), - [anon_sym_starts_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(851), - [anon_sym_ends_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(851), - [anon_sym_EQ_EQ2] = ACTIONS(851), - [anon_sym_BANG_EQ2] = ACTIONS(851), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(851), - [anon_sym_GT_EQ2] = ACTIONS(851), - [anon_sym_EQ_TILDE2] = ACTIONS(851), - [anon_sym_BANG_TILDE2] = ACTIONS(851), - [anon_sym_like2] = ACTIONS(851), - [anon_sym_not_DASHlike2] = ACTIONS(851), - [anon_sym_LPAREN2] = ACTIONS(851), - [anon_sym_STAR_STAR2] = ACTIONS(851), - [anon_sym_PLUS_PLUS2] = ACTIONS(851), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(851), - [anon_sym_SLASH_SLASH2] = ACTIONS(851), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(851), - [anon_sym_bit_DASHshr2] = ACTIONS(851), - [anon_sym_bit_DASHand2] = ACTIONS(851), - [anon_sym_bit_DASHxor2] = ACTIONS(851), - [anon_sym_bit_DASHor2] = ACTIONS(851), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(851), - [anon_sym_out_GT_GT] = ACTIONS(851), - [anon_sym_e_GT_GT] = ACTIONS(851), - [anon_sym_o_GT_GT] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(851), - [sym__unquoted_pattern] = ACTIONS(849), + [anon_sym_in] = ACTIONS(1812), + [sym__newline] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_err_GT_PIPE] = ACTIONS(1812), + [anon_sym_out_GT_PIPE] = ACTIONS(1812), + [anon_sym_e_GT_PIPE] = ACTIONS(1812), + [anon_sym_o_GT_PIPE] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1812), + [anon_sym_RPAREN] = ACTIONS(1812), + [anon_sym_GT2] = ACTIONS(1814), + [anon_sym_DASH2] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1812), + [anon_sym_RBRACE] = ACTIONS(1812), + [anon_sym_STAR2] = ACTIONS(1814), + [anon_sym_and2] = ACTIONS(1812), + [anon_sym_xor2] = ACTIONS(1812), + [anon_sym_or2] = ACTIONS(1812), + [anon_sym_not_DASHin2] = ACTIONS(1812), + [anon_sym_has2] = ACTIONS(1812), + [anon_sym_not_DASHhas2] = ACTIONS(1812), + [anon_sym_starts_DASHwith2] = ACTIONS(1812), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1812), + [anon_sym_ends_DASHwith2] = ACTIONS(1812), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1812), + [anon_sym_EQ_EQ2] = ACTIONS(1812), + [anon_sym_BANG_EQ2] = ACTIONS(1812), + [anon_sym_LT2] = ACTIONS(1814), + [anon_sym_LT_EQ2] = ACTIONS(1812), + [anon_sym_GT_EQ2] = ACTIONS(1812), + [anon_sym_EQ_TILDE2] = ACTIONS(1812), + [anon_sym_BANG_TILDE2] = ACTIONS(1812), + [anon_sym_like2] = ACTIONS(1812), + [anon_sym_not_DASHlike2] = ACTIONS(1812), + [anon_sym_LPAREN2] = ACTIONS(1812), + [anon_sym_STAR_STAR2] = ACTIONS(1812), + [anon_sym_PLUS_PLUS2] = ACTIONS(1812), + [anon_sym_SLASH2] = ACTIONS(1814), + [anon_sym_mod2] = ACTIONS(1812), + [anon_sym_SLASH_SLASH2] = ACTIONS(1812), + [anon_sym_PLUS2] = ACTIONS(1814), + [anon_sym_bit_DASHshl2] = ACTIONS(1812), + [anon_sym_bit_DASHshr2] = ACTIONS(1812), + [anon_sym_bit_DASHand2] = ACTIONS(1812), + [anon_sym_bit_DASHxor2] = ACTIONS(1812), + [anon_sym_bit_DASHor2] = ACTIONS(1812), + [anon_sym_DOT_DOT2] = ACTIONS(1814), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1812), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1812), + [aux_sym__immediate_decimal_token5] = ACTIONS(1816), + [anon_sym_err_GT] = ACTIONS(1814), + [anon_sym_out_GT] = ACTIONS(1814), + [anon_sym_e_GT] = ACTIONS(1814), + [anon_sym_o_GT] = ACTIONS(1814), + [anon_sym_err_PLUSout_GT] = ACTIONS(1814), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1814), + [anon_sym_o_PLUSe_GT] = ACTIONS(1814), + [anon_sym_e_PLUSo_GT] = ACTIONS(1814), + [anon_sym_err_GT_GT] = ACTIONS(1812), + [anon_sym_out_GT_GT] = ACTIONS(1812), + [anon_sym_e_GT_GT] = ACTIONS(1812), + [anon_sym_o_GT_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1812), + [sym__unquoted_pattern] = ACTIONS(1814), [anon_sym_POUND] = ACTIONS(3), }, [STATE(463)] = { - [sym__expr_parenthesized_immediate] = STATE(4775), + [sym_cmd_identifier] = STATE(4141), + [sym_expr_parenthesized] = STATE(5138), + [sym__spread_parenthesized] = STATE(4677), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(5138), + [sym_val_number] = STATE(5138), + [sym__val_number_decimal] = STATE(1947), + [sym__val_number] = STATE(700), + [sym_val_string] = STATE(5138), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_interpolated] = STATE(5138), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym__spread_record] = STATE(4677), + [sym_record_body] = STATE(4852), + [sym_record_entry] = STATE(4651), + [sym__record_key] = STATE(4944), [sym_comment] = STATE(463), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(1812), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1814), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1814), - [sym_filesize_unit] = ACTIONS(1816), - [sym_duration_unit] = ACTIONS(1818), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(464)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4583), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(464), - [aux_sym__types_body_repeat1] = STATE(2117), - [aux_sym_list_body_repeat1] = STATE(630), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [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_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), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(467)] = { - [sym_comment] = STATE(467), - [anon_sym_in] = ACTIONS(773), - [sym__newline] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_err_GT_PIPE] = ACTIONS(773), - [anon_sym_out_GT_PIPE] = ACTIONS(773), - [anon_sym_e_GT_PIPE] = ACTIONS(773), - [anon_sym_o_GT_PIPE] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(773), - [anon_sym_xor2] = ACTIONS(773), - [anon_sym_or2] = ACTIONS(773), - [anon_sym_not_DASHin2] = ACTIONS(773), - [anon_sym_has2] = ACTIONS(773), - [anon_sym_not_DASHhas2] = ACTIONS(773), - [anon_sym_starts_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), - [anon_sym_ends_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), - [anon_sym_EQ_EQ2] = ACTIONS(773), - [anon_sym_BANG_EQ2] = ACTIONS(773), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(773), - [anon_sym_GT_EQ2] = ACTIONS(773), - [anon_sym_EQ_TILDE2] = ACTIONS(773), - [anon_sym_BANG_TILDE2] = ACTIONS(773), - [anon_sym_like2] = ACTIONS(773), - [anon_sym_not_DASHlike2] = ACTIONS(773), - [anon_sym_LPAREN2] = ACTIONS(773), - [anon_sym_STAR_STAR2] = ACTIONS(773), - [anon_sym_PLUS_PLUS2] = ACTIONS(773), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(773), - [anon_sym_SLASH_SLASH2] = ACTIONS(773), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(773), - [anon_sym_bit_DASHshr2] = ACTIONS(773), - [anon_sym_bit_DASHand2] = ACTIONS(773), - [anon_sym_bit_DASHxor2] = ACTIONS(773), - [anon_sym_bit_DASHor2] = ACTIONS(773), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(773), - [anon_sym_out_GT_GT] = ACTIONS(773), - [anon_sym_e_GT_GT] = ACTIONS(773), - [anon_sym_o_GT_GT] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), - [sym__unquoted_pattern] = ACTIONS(771), - [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), + [aux_sym__types_body_repeat1] = STATE(642), + [aux_sym_record_body_repeat1] = STATE(850), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83869,334 +83813,335 @@ 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(1778), + [anon_sym_false] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1780), + [aux_sym_cmd_identifier_token4] = ACTIONS(1780), + [aux_sym_cmd_identifier_token5] = ACTIONS(1780), + [sym__newline] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1804), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1818), [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(1790), + [aux_sym__val_number_decimal_token2] = ACTIONS(1792), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), [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(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), [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(1802), }, - [STATE(469)] = { - [sym_comment] = STATE(469), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(741), - [sym__newline] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_err_GT_PIPE] = ACTIONS(741), - [anon_sym_out_GT_PIPE] = ACTIONS(741), - [anon_sym_e_GT_PIPE] = ACTIONS(741), - [anon_sym_o_GT_PIPE] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(741), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(741), - [anon_sym_xor2] = ACTIONS(741), - [anon_sym_or2] = ACTIONS(741), - [anon_sym_not_DASHin2] = ACTIONS(741), - [anon_sym_has2] = ACTIONS(741), - [anon_sym_not_DASHhas2] = ACTIONS(741), - [anon_sym_starts_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), - [anon_sym_ends_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), - [anon_sym_EQ_EQ2] = ACTIONS(741), - [anon_sym_BANG_EQ2] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(741), - [anon_sym_GT_EQ2] = ACTIONS(741), - [anon_sym_EQ_TILDE2] = ACTIONS(741), - [anon_sym_BANG_TILDE2] = ACTIONS(741), - [anon_sym_like2] = ACTIONS(741), - [anon_sym_not_DASHlike2] = ACTIONS(741), - [anon_sym_LPAREN2] = ACTIONS(741), - [anon_sym_STAR_STAR2] = ACTIONS(741), - [anon_sym_PLUS_PLUS2] = ACTIONS(741), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(741), - [anon_sym_SLASH_SLASH2] = ACTIONS(741), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(741), - [anon_sym_bit_DASHshr2] = ACTIONS(741), - [anon_sym_bit_DASHand2] = ACTIONS(741), - [anon_sym_bit_DASHxor2] = ACTIONS(741), - [anon_sym_bit_DASHor2] = ACTIONS(741), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1712), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(741), - [anon_sym_out_GT_GT] = ACTIONS(741), - [anon_sym_e_GT_GT] = ACTIONS(741), - [anon_sym_o_GT_GT] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), - [sym__unquoted_pattern] = ACTIONS(739), + [STATE(464)] = { + [sym__expr_parenthesized_immediate] = STATE(4762), + [sym_comment] = STATE(464), + [ts_builtin_sym_end] = ACTIONS(884), + [anon_sym_in] = ACTIONS(884), + [sym__newline] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(884), + [anon_sym_err_GT_PIPE] = ACTIONS(884), + [anon_sym_out_GT_PIPE] = ACTIONS(884), + [anon_sym_e_GT_PIPE] = ACTIONS(884), + [anon_sym_o_GT_PIPE] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), + [anon_sym_GT2] = ACTIONS(858), + [anon_sym_DASH2] = ACTIONS(884), + [anon_sym_STAR2] = ACTIONS(858), + [anon_sym_and2] = ACTIONS(884), + [anon_sym_xor2] = ACTIONS(884), + [anon_sym_or2] = ACTIONS(884), + [anon_sym_not_DASHin2] = ACTIONS(884), + [anon_sym_has2] = ACTIONS(884), + [anon_sym_not_DASHhas2] = ACTIONS(884), + [anon_sym_starts_DASHwith2] = ACTIONS(884), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(884), + [anon_sym_ends_DASHwith2] = ACTIONS(884), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(884), + [anon_sym_EQ_EQ2] = ACTIONS(884), + [anon_sym_BANG_EQ2] = ACTIONS(884), + [anon_sym_LT2] = ACTIONS(858), + [anon_sym_LT_EQ2] = ACTIONS(884), + [anon_sym_GT_EQ2] = ACTIONS(884), + [anon_sym_EQ_TILDE2] = ACTIONS(884), + [anon_sym_BANG_TILDE2] = ACTIONS(884), + [anon_sym_like2] = ACTIONS(884), + [anon_sym_not_DASHlike2] = ACTIONS(884), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(884), + [anon_sym_PLUS_PLUS2] = ACTIONS(884), + [anon_sym_SLASH2] = ACTIONS(858), + [anon_sym_mod2] = ACTIONS(884), + [anon_sym_SLASH_SLASH2] = ACTIONS(884), + [anon_sym_PLUS2] = ACTIONS(858), + [anon_sym_bit_DASHshl2] = ACTIONS(884), + [anon_sym_bit_DASHshr2] = ACTIONS(884), + [anon_sym_bit_DASHand2] = ACTIONS(884), + [anon_sym_bit_DASHxor2] = ACTIONS(884), + [anon_sym_bit_DASHor2] = ACTIONS(884), + [anon_sym_DOT_DOT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), + [sym_filesize_unit] = ACTIONS(1824), + [sym_duration_unit] = ACTIONS(1826), + [anon_sym_err_GT] = ACTIONS(858), + [anon_sym_out_GT] = ACTIONS(858), + [anon_sym_e_GT] = ACTIONS(858), + [anon_sym_o_GT] = ACTIONS(858), + [anon_sym_err_PLUSout_GT] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT] = ACTIONS(858), + [anon_sym_o_PLUSe_GT] = ACTIONS(858), + [anon_sym_e_PLUSo_GT] = ACTIONS(858), + [anon_sym_err_GT_GT] = ACTIONS(884), + [anon_sym_out_GT_GT] = ACTIONS(884), + [anon_sym_e_GT_GT] = ACTIONS(884), + [anon_sym_o_GT_GT] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), + [sym__unquoted_pattern] = ACTIONS(1828), [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(465)] = { + [sym_comment] = STATE(465), + [ts_builtin_sym_end] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym__newline] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_err_GT_PIPE] = ACTIONS(765), + [anon_sym_out_GT_PIPE] = ACTIONS(765), + [anon_sym_e_GT_PIPE] = ACTIONS(765), + [anon_sym_o_GT_PIPE] = ACTIONS(765), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(765), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(765), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(765), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(765), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(765), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(765), + [anon_sym_xor2] = ACTIONS(765), + [anon_sym_or2] = ACTIONS(765), + [anon_sym_not_DASHin2] = ACTIONS(765), + [anon_sym_has2] = ACTIONS(765), + [anon_sym_not_DASHhas2] = ACTIONS(765), + [anon_sym_starts_DASHwith2] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(765), + [anon_sym_ends_DASHwith2] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(765), + [anon_sym_EQ_EQ2] = ACTIONS(765), + [anon_sym_BANG_EQ2] = ACTIONS(765), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(765), + [anon_sym_GT_EQ2] = ACTIONS(765), + [anon_sym_EQ_TILDE2] = ACTIONS(765), + [anon_sym_BANG_TILDE2] = ACTIONS(765), + [anon_sym_like2] = ACTIONS(765), + [anon_sym_not_DASHlike2] = ACTIONS(765), + [anon_sym_LPAREN2] = ACTIONS(765), + [anon_sym_STAR_STAR2] = ACTIONS(765), + [anon_sym_PLUS_PLUS2] = ACTIONS(765), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(765), + [anon_sym_SLASH_SLASH2] = ACTIONS(765), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(765), + [anon_sym_bit_DASHshr2] = ACTIONS(765), + [anon_sym_bit_DASHand2] = ACTIONS(765), + [anon_sym_bit_DASHxor2] = ACTIONS(765), + [anon_sym_bit_DASHor2] = ACTIONS(765), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(1830), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(765), + [anon_sym_out_GT_GT] = ACTIONS(765), + [anon_sym_e_GT_GT] = ACTIONS(765), + [anon_sym_o_GT_GT] = ACTIONS(765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(765), + [sym__unquoted_pattern] = ACTIONS(763), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(471)] = { - [sym_comment] = STATE(471), - [anon_sym_EQ] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1830), - [anon_sym_DASH_EQ] = ACTIONS(1830), - [anon_sym_STAR_EQ] = ACTIONS(1830), - [anon_sym_SLASH_EQ] = ACTIONS(1830), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1830), - [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(466)] = { + [sym_comment] = STATE(466), + [anon_sym_in] = ACTIONS(765), + [sym__newline] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_err_GT_PIPE] = ACTIONS(765), + [anon_sym_out_GT_PIPE] = ACTIONS(765), + [anon_sym_e_GT_PIPE] = ACTIONS(765), + [anon_sym_o_GT_PIPE] = ACTIONS(765), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(765), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(765), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(765), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(765), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(765), + [anon_sym_xor2] = ACTIONS(765), + [anon_sym_or2] = ACTIONS(765), + [anon_sym_not_DASHin2] = ACTIONS(765), + [anon_sym_has2] = ACTIONS(765), + [anon_sym_not_DASHhas2] = ACTIONS(765), + [anon_sym_starts_DASHwith2] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(765), + [anon_sym_ends_DASHwith2] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(765), + [anon_sym_EQ_EQ2] = ACTIONS(765), + [anon_sym_BANG_EQ2] = ACTIONS(765), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(765), + [anon_sym_GT_EQ2] = ACTIONS(765), + [anon_sym_EQ_TILDE2] = ACTIONS(765), + [anon_sym_BANG_TILDE2] = ACTIONS(765), + [anon_sym_like2] = ACTIONS(765), + [anon_sym_not_DASHlike2] = ACTIONS(765), + [anon_sym_LPAREN2] = ACTIONS(765), + [anon_sym_STAR_STAR2] = ACTIONS(765), + [anon_sym_PLUS_PLUS2] = ACTIONS(765), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(765), + [anon_sym_SLASH_SLASH2] = ACTIONS(765), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(765), + [anon_sym_bit_DASHshr2] = ACTIONS(765), + [anon_sym_bit_DASHand2] = ACTIONS(765), + [anon_sym_bit_DASHxor2] = ACTIONS(765), + [anon_sym_bit_DASHor2] = ACTIONS(765), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(765), + [anon_sym_out_GT_GT] = ACTIONS(765), + [anon_sym_e_GT_GT] = ACTIONS(765), + [anon_sym_o_GT_GT] = ACTIONS(765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(765), + [sym__unquoted_pattern] = ACTIONS(763), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(472)] = { - [sym_comment] = STATE(472), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(773), - [sym__newline] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_err_GT_PIPE] = ACTIONS(773), - [anon_sym_out_GT_PIPE] = ACTIONS(773), - [anon_sym_e_GT_PIPE] = ACTIONS(773), - [anon_sym_o_GT_PIPE] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(773), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(773), - [anon_sym_xor2] = ACTIONS(773), - [anon_sym_or2] = ACTIONS(773), - [anon_sym_not_DASHin2] = ACTIONS(773), - [anon_sym_has2] = ACTIONS(773), - [anon_sym_not_DASHhas2] = ACTIONS(773), - [anon_sym_starts_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), - [anon_sym_ends_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), - [anon_sym_EQ_EQ2] = ACTIONS(773), - [anon_sym_BANG_EQ2] = ACTIONS(773), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(773), - [anon_sym_GT_EQ2] = ACTIONS(773), - [anon_sym_EQ_TILDE2] = ACTIONS(773), - [anon_sym_BANG_TILDE2] = ACTIONS(773), - [anon_sym_like2] = ACTIONS(773), - [anon_sym_not_DASHlike2] = ACTIONS(773), - [anon_sym_LPAREN2] = ACTIONS(773), - [anon_sym_STAR_STAR2] = ACTIONS(773), - [anon_sym_PLUS_PLUS2] = ACTIONS(773), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(773), - [anon_sym_SLASH_SLASH2] = ACTIONS(773), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(773), - [anon_sym_bit_DASHshr2] = ACTIONS(773), - [anon_sym_bit_DASHand2] = ACTIONS(773), - [anon_sym_bit_DASHxor2] = ACTIONS(773), - [anon_sym_bit_DASHor2] = ACTIONS(773), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1832), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(773), - [anon_sym_out_GT_GT] = ACTIONS(773), - [anon_sym_e_GT_GT] = ACTIONS(773), - [anon_sym_o_GT_GT] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), - [sym__unquoted_pattern] = ACTIONS(771), + [STATE(467)] = { + [sym_comment] = STATE(467), + [anon_sym_in] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_RBRACE] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_LPAREN2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(791), + [anon_sym_out_GT_GT] = ACTIONS(791), + [anon_sym_e_GT_GT] = ACTIONS(791), + [anon_sym_o_GT_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [sym__unquoted_pattern] = ACTIONS(789), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(473)] = { - [sym_comment] = STATE(473), + [STATE(468)] = { + [sym_comment] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(749), [sym__newline] = ACTIONS(749), [anon_sym_SEMI] = ACTIONS(749), @@ -84209,10 +84154,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 +84191,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(1764), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -84269,104 +84213,252 @@ 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), + [STATE(469)] = { + [sym_cmd_identifier] = STATE(4141), + [sym_expr_parenthesized] = STATE(5138), + [sym__spread_parenthesized] = STATE(4677), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(5138), + [sym_val_number] = STATE(5138), + [sym__val_number_decimal] = STATE(1947), + [sym__val_number] = STATE(700), + [sym_val_string] = STATE(5138), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_interpolated] = STATE(5138), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym__spread_record] = STATE(4677), + [sym_record_body] = STATE(5060), + [sym_record_entry] = STATE(4651), + [sym__record_key] = STATE(4944), + [sym_comment] = STATE(469), + [aux_sym__types_body_repeat1] = STATE(642), + [aux_sym_record_body_repeat1] = STATE(850), + [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(1778), + [anon_sym_false] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1780), + [aux_sym_cmd_identifier_token4] = ACTIONS(1780), + [aux_sym_cmd_identifier_token5] = ACTIONS(1780), + [sym__newline] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1804), + [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(1790), + [aux_sym__val_number_decimal_token2] = ACTIONS(1792), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [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(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), + [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(1802), + }, + [STATE(470)] = { + [sym_comment] = STATE(470), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_RPAREN] = ACTIONS(1687), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_EQ_GT] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_has2] = ACTIONS(1687), + [anon_sym_not_DASHhas2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_like2] = ACTIONS(1687), + [anon_sym_not_DASHlike2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [anon_sym_COLON2] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(471)] = { + [sym_comment] = STATE(471), [anon_sym_EQ] = ACTIONS(1834), [anon_sym_PLUS_EQ] = ACTIONS(1836), [anon_sym_DASH_EQ] = ACTIONS(1836), [anon_sym_STAR_EQ] = ACTIONS(1836), [anon_sym_SLASH_EQ] = ACTIONS(1836), [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1836), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [anon_sym_in] = ACTIONS(1716), + [sym__newline] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_err_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_GT_PIPE] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), + [anon_sym_GT2] = ACTIONS(1629), + [anon_sym_DASH2] = ACTIONS(1629), + [anon_sym_STAR2] = ACTIONS(1629), + [anon_sym_and2] = ACTIONS(1716), + [anon_sym_xor2] = ACTIONS(1716), + [anon_sym_or2] = ACTIONS(1716), + [anon_sym_not_DASHin2] = ACTIONS(1716), + [anon_sym_has2] = ACTIONS(1716), + [anon_sym_not_DASHhas2] = ACTIONS(1716), + [anon_sym_starts_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), + [anon_sym_ends_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), + [anon_sym_EQ_EQ2] = ACTIONS(1716), + [anon_sym_BANG_EQ2] = ACTIONS(1716), + [anon_sym_LT2] = ACTIONS(1629), + [anon_sym_LT_EQ2] = ACTIONS(1716), + [anon_sym_GT_EQ2] = ACTIONS(1716), + [anon_sym_EQ_TILDE2] = ACTIONS(1716), + [anon_sym_BANG_TILDE2] = ACTIONS(1716), + [anon_sym_like2] = ACTIONS(1716), + [anon_sym_not_DASHlike2] = ACTIONS(1716), + [anon_sym_STAR_STAR2] = ACTIONS(1716), + [anon_sym_PLUS_PLUS2] = ACTIONS(1629), + [anon_sym_SLASH2] = ACTIONS(1629), + [anon_sym_mod2] = ACTIONS(1716), + [anon_sym_SLASH_SLASH2] = ACTIONS(1716), + [anon_sym_PLUS2] = ACTIONS(1629), + [anon_sym_bit_DASHshl2] = ACTIONS(1716), + [anon_sym_bit_DASHshr2] = ACTIONS(1716), + [anon_sym_bit_DASHand2] = ACTIONS(1716), + [anon_sym_bit_DASHxor2] = ACTIONS(1716), + [anon_sym_bit_DASHor2] = ACTIONS(1716), + [anon_sym_DOT_DOT2] = ACTIONS(1633), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), + [anon_sym_err_GT] = ACTIONS(1629), + [anon_sym_out_GT] = ACTIONS(1629), + [anon_sym_e_GT] = ACTIONS(1629), + [anon_sym_o_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT] = ACTIONS(1629), + [anon_sym_err_GT_GT] = ACTIONS(1716), + [anon_sym_out_GT_GT] = ACTIONS(1716), + [anon_sym_e_GT_GT] = ACTIONS(1716), + [anon_sym_o_GT_GT] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(475)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5053), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(475), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [STATE(472)] = { + [sym_cmd_identifier] = STATE(4141), + [sym_expr_parenthesized] = STATE(5138), + [sym__spread_parenthesized] = STATE(4677), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(5138), + [sym_val_number] = STATE(5138), + [sym__val_number_decimal] = STATE(1947), + [sym__val_number] = STATE(700), + [sym_val_string] = STATE(5138), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_interpolated] = STATE(5138), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym__spread_record] = STATE(4677), + [sym_record_body] = STATE(5210), + [sym_record_entry] = STATE(4651), + [sym__record_key] = STATE(4944), + [sym_comment] = STATE(472), + [aux_sym__types_body_repeat1] = STATE(642), + [aux_sym_record_body_repeat1] = STATE(850), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -84387,625 +84479,261 @@ 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(1778), + [anon_sym_false] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1780), + [aux_sym_cmd_identifier_token4] = ACTIONS(1780), + [aux_sym_cmd_identifier_token5] = ACTIONS(1780), + [sym__newline] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1804), [anon_sym_DASH2] = ACTIONS(175), [anon_sym_RBRACE] = ACTIONS(1838), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1790), + [aux_sym__val_number_decimal_token2] = ACTIONS(1792), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), [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(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(476)] = { - [sym_comment] = STATE(476), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(773), - [sym__newline] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_err_GT_PIPE] = ACTIONS(773), - [anon_sym_out_GT_PIPE] = ACTIONS(773), - [anon_sym_e_GT_PIPE] = ACTIONS(773), - [anon_sym_o_GT_PIPE] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(773), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(773), - [anon_sym_xor2] = ACTIONS(773), - [anon_sym_or2] = ACTIONS(773), - [anon_sym_not_DASHin2] = ACTIONS(773), - [anon_sym_has2] = ACTIONS(773), - [anon_sym_not_DASHhas2] = ACTIONS(773), - [anon_sym_starts_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), - [anon_sym_ends_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), - [anon_sym_EQ_EQ2] = ACTIONS(773), - [anon_sym_BANG_EQ2] = ACTIONS(773), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(773), - [anon_sym_GT_EQ2] = ACTIONS(773), - [anon_sym_EQ_TILDE2] = ACTIONS(773), - [anon_sym_BANG_TILDE2] = ACTIONS(773), - [anon_sym_like2] = ACTIONS(773), - [anon_sym_not_DASHlike2] = ACTIONS(773), - [anon_sym_LPAREN2] = ACTIONS(773), - [anon_sym_STAR_STAR2] = ACTIONS(773), - [anon_sym_PLUS_PLUS2] = ACTIONS(773), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(773), - [anon_sym_SLASH_SLASH2] = ACTIONS(773), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(773), - [anon_sym_bit_DASHshr2] = ACTIONS(773), - [anon_sym_bit_DASHand2] = ACTIONS(773), - [anon_sym_bit_DASHxor2] = ACTIONS(773), - [anon_sym_bit_DASHor2] = ACTIONS(773), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(773), - [anon_sym_out_GT_GT] = ACTIONS(773), - [anon_sym_e_GT_GT] = ACTIONS(773), - [anon_sym_o_GT_GT] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), - [sym__unquoted_pattern] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(477)] = { - [sym_comment] = STATE(477), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_DOT_DOT2] = ACTIONS(1728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(1840), - [aux_sym__immediate_decimal_token5] = ACTIONS(1842), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(478)] = { - [sym_cell_path] = STATE(935), - [sym_path] = STATE(783), - [sym_comment] = STATE(478), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_DOT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(479)] = { - [sym_comment] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1468), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(480)] = { - [sym_comment] = STATE(480), - [ts_builtin_sym_end] = ACTIONS(1480), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1480), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1802), }, - [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), + [STATE(473)] = { + [sym_cmd_identifier] = STATE(4141), + [sym__match_pattern_record_body] = STATE(5088), + [sym_expr_parenthesized] = STATE(5138), + [sym__spread_parenthesized] = STATE(4677), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(4143), + [sym_val_number] = STATE(5138), + [sym__val_number_decimal] = STATE(1947), + [sym__val_number] = STATE(700), + [sym_val_string] = STATE(5138), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_interpolated] = STATE(5138), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym__spread_record] = STATE(4677), + [sym_record_entry] = STATE(4657), + [sym__record_key] = STATE(4944), + [sym_comment] = STATE(473), + [aux_sym__types_body_repeat1] = STATE(529), + [aux_sym__match_pattern_record_body_repeat1] = STATE(785), + [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(1778), + [anon_sym_false] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1780), + [aux_sym_cmd_identifier_token4] = ACTIONS(1780), + [aux_sym_cmd_identifier_token5] = ACTIONS(1780), + [sym__newline] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1840), + [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(1790), + [aux_sym__val_number_decimal_token2] = ACTIONS(1792), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [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(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), + [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(1802), }, - [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), + [STATE(474)] = { + [sym_comment] = STATE(474), + [anon_sym_EQ] = ACTIONS(1842), + [anon_sym_PLUS_EQ] = ACTIONS(1844), + [anon_sym_DASH_EQ] = ACTIONS(1844), + [anon_sym_STAR_EQ] = ACTIONS(1844), + [anon_sym_SLASH_EQ] = ACTIONS(1844), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1844), + [anon_sym_in] = ACTIONS(1716), + [sym__newline] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_err_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_GT_PIPE] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), + [anon_sym_GT2] = ACTIONS(1629), + [anon_sym_DASH2] = ACTIONS(1629), + [anon_sym_STAR2] = ACTIONS(1629), + [anon_sym_and2] = ACTIONS(1716), + [anon_sym_xor2] = ACTIONS(1716), + [anon_sym_or2] = ACTIONS(1716), + [anon_sym_not_DASHin2] = ACTIONS(1716), + [anon_sym_has2] = ACTIONS(1716), + [anon_sym_not_DASHhas2] = ACTIONS(1716), + [anon_sym_starts_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), + [anon_sym_ends_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), + [anon_sym_EQ_EQ2] = ACTIONS(1716), + [anon_sym_BANG_EQ2] = ACTIONS(1716), + [anon_sym_LT2] = ACTIONS(1629), + [anon_sym_LT_EQ2] = ACTIONS(1716), + [anon_sym_GT_EQ2] = ACTIONS(1716), + [anon_sym_EQ_TILDE2] = ACTIONS(1716), + [anon_sym_BANG_TILDE2] = ACTIONS(1716), + [anon_sym_like2] = ACTIONS(1716), + [anon_sym_not_DASHlike2] = ACTIONS(1716), + [anon_sym_STAR_STAR2] = ACTIONS(1716), + [anon_sym_PLUS_PLUS2] = ACTIONS(1629), + [anon_sym_SLASH2] = ACTIONS(1629), + [anon_sym_mod2] = ACTIONS(1716), + [anon_sym_SLASH_SLASH2] = ACTIONS(1716), + [anon_sym_PLUS2] = ACTIONS(1629), + [anon_sym_bit_DASHshl2] = ACTIONS(1716), + [anon_sym_bit_DASHshr2] = ACTIONS(1716), + [anon_sym_bit_DASHand2] = ACTIONS(1716), + [anon_sym_bit_DASHxor2] = ACTIONS(1716), + [anon_sym_bit_DASHor2] = ACTIONS(1716), + [anon_sym_DOT_DOT2] = ACTIONS(1633), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), + [anon_sym_err_GT] = ACTIONS(1629), + [anon_sym_out_GT] = ACTIONS(1629), + [anon_sym_e_GT] = ACTIONS(1629), + [anon_sym_o_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT] = ACTIONS(1629), + [anon_sym_err_GT_GT] = ACTIONS(1716), + [anon_sym_out_GT_GT] = ACTIONS(1716), + [anon_sym_e_GT_GT] = ACTIONS(1716), + [anon_sym_o_GT_GT] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), [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_comment] = STATE(475), + [anon_sym_if] = ACTIONS(1846), + [anon_sym_in] = ACTIONS(1846), + [sym__newline] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_err_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_GT_PIPE] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), + [anon_sym_RPAREN] = ACTIONS(1846), + [anon_sym_GT2] = ACTIONS(1848), + [anon_sym_DASH2] = ACTIONS(1846), + [anon_sym_LBRACE] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_EQ_GT] = ACTIONS(1846), + [anon_sym_STAR2] = ACTIONS(1848), + [anon_sym_and2] = ACTIONS(1846), + [anon_sym_xor2] = ACTIONS(1846), + [anon_sym_or2] = ACTIONS(1846), + [anon_sym_not_DASHin2] = ACTIONS(1846), + [anon_sym_has2] = ACTIONS(1846), + [anon_sym_not_DASHhas2] = ACTIONS(1846), + [anon_sym_starts_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), + [anon_sym_ends_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), + [anon_sym_EQ_EQ2] = ACTIONS(1846), + [anon_sym_BANG_EQ2] = ACTIONS(1846), + [anon_sym_LT2] = ACTIONS(1848), + [anon_sym_LT_EQ2] = ACTIONS(1846), + [anon_sym_GT_EQ2] = ACTIONS(1846), + [anon_sym_EQ_TILDE2] = ACTIONS(1846), + [anon_sym_BANG_TILDE2] = ACTIONS(1846), + [anon_sym_like2] = ACTIONS(1846), + [anon_sym_not_DASHlike2] = ACTIONS(1846), + [anon_sym_STAR_STAR2] = ACTIONS(1846), + [anon_sym_PLUS_PLUS2] = ACTIONS(1846), + [anon_sym_SLASH2] = ACTIONS(1848), + [anon_sym_mod2] = ACTIONS(1846), + [anon_sym_SLASH_SLASH2] = ACTIONS(1846), + [anon_sym_PLUS2] = ACTIONS(1848), + [anon_sym_bit_DASHshl2] = ACTIONS(1846), + [anon_sym_bit_DASHshr2] = ACTIONS(1846), + [anon_sym_bit_DASHand2] = ACTIONS(1846), + [anon_sym_bit_DASHxor2] = ACTIONS(1846), + [anon_sym_bit_DASHor2] = ACTIONS(1846), + [anon_sym_DOT_DOT2] = ACTIONS(1848), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1846), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1846), + [anon_sym_COLON2] = ACTIONS(1846), + [anon_sym_err_GT] = ACTIONS(1848), + [anon_sym_out_GT] = ACTIONS(1848), + [anon_sym_e_GT] = ACTIONS(1848), + [anon_sym_o_GT] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT] = ACTIONS(1848), + [anon_sym_err_GT_GT] = ACTIONS(1846), + [anon_sym_out_GT_GT] = ACTIONS(1846), + [anon_sym_e_GT_GT] = ACTIONS(1846), + [anon_sym_o_GT_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(484)] = { - [sym_cell_path] = STATE(923), - [sym_path] = STATE(441), - [sym_comment] = STATE(484), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), + [STATE(476)] = { + [sym_comment] = STATE(476), + [anon_sym_if] = ACTIONS(1850), [anon_sym_in] = ACTIONS(1850), [sym__newline] = ACTIONS(1850), [anon_sym_SEMI] = ACTIONS(1850), @@ -85019,12 +84747,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_GT2] = ACTIONS(1852), [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_STAR2] = ACTIONS(1852), [anon_sym_and2] = ACTIONS(1850), [anon_sym_xor2] = ACTIONS(1850), [anon_sym_or2] = ACTIONS(1850), @@ -85037,7 +84765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LT2] = ACTIONS(1852), [anon_sym_LT_EQ2] = ACTIONS(1850), [anon_sym_GT_EQ2] = ACTIONS(1850), [anon_sym_EQ_TILDE2] = ACTIONS(1850), @@ -85046,24 +84774,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SLASH2] = ACTIONS(1852), [anon_sym_mod2] = ACTIONS(1850), [anon_sym_SLASH_SLASH2] = ACTIONS(1850), - [anon_sym_PLUS2] = ACTIONS(1853), + [anon_sym_PLUS2] = ACTIONS(1852), [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_DOT_DOT2] = ACTIONS(1852), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1850), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1850), + [anon_sym_err_GT] = ACTIONS(1852), + [anon_sym_out_GT] = ACTIONS(1852), + [anon_sym_e_GT] = ACTIONS(1852), + [anon_sym_o_GT] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT] = ACTIONS(1852), [anon_sym_err_GT_GT] = ACTIONS(1850), [anon_sym_out_GT_GT] = ACTIONS(1850), [anon_sym_e_GT_GT] = ACTIONS(1850), @@ -85074,84 +84804,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1850), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(485)] = { - [sym_cell_path] = STATE(936), - [sym_path] = STATE(441), - [sym_comment] = STATE(485), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1858), - [sym__newline] = ACTIONS(1858), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_err_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_GT_PIPE] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), - [anon_sym_RPAREN] = ACTIONS(1858), - [anon_sym_GT2] = ACTIONS(1860), - [anon_sym_DASH2] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_EQ_GT] = ACTIONS(1858), - [anon_sym_STAR2] = ACTIONS(1860), - [anon_sym_and2] = ACTIONS(1858), - [anon_sym_xor2] = ACTIONS(1858), - [anon_sym_or2] = ACTIONS(1858), - [anon_sym_not_DASHin2] = ACTIONS(1858), - [anon_sym_has2] = ACTIONS(1858), - [anon_sym_not_DASHhas2] = ACTIONS(1858), - [anon_sym_starts_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1858), - [anon_sym_ends_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1858), - [anon_sym_EQ_EQ2] = ACTIONS(1858), - [anon_sym_BANG_EQ2] = ACTIONS(1858), - [anon_sym_LT2] = ACTIONS(1860), - [anon_sym_LT_EQ2] = ACTIONS(1858), - [anon_sym_GT_EQ2] = ACTIONS(1858), - [anon_sym_EQ_TILDE2] = ACTIONS(1858), - [anon_sym_BANG_TILDE2] = ACTIONS(1858), - [anon_sym_like2] = ACTIONS(1858), - [anon_sym_not_DASHlike2] = ACTIONS(1858), - [anon_sym_STAR_STAR2] = ACTIONS(1858), - [anon_sym_PLUS_PLUS2] = ACTIONS(1858), - [anon_sym_SLASH2] = ACTIONS(1860), - [anon_sym_mod2] = ACTIONS(1858), - [anon_sym_SLASH_SLASH2] = ACTIONS(1858), - [anon_sym_PLUS2] = ACTIONS(1860), - [anon_sym_bit_DASHshl2] = ACTIONS(1858), - [anon_sym_bit_DASHshr2] = ACTIONS(1858), - [anon_sym_bit_DASHand2] = ACTIONS(1858), - [anon_sym_bit_DASHxor2] = ACTIONS(1858), - [anon_sym_bit_DASHor2] = ACTIONS(1858), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1860), - [anon_sym_out_GT] = ACTIONS(1860), - [anon_sym_e_GT] = ACTIONS(1860), - [anon_sym_o_GT] = ACTIONS(1860), - [anon_sym_err_PLUSout_GT] = ACTIONS(1860), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1860), - [anon_sym_o_PLUSe_GT] = ACTIONS(1860), - [anon_sym_e_PLUSo_GT] = ACTIONS(1860), - [anon_sym_err_GT_GT] = ACTIONS(1858), - [anon_sym_out_GT_GT] = ACTIONS(1858), - [anon_sym_e_GT_GT] = ACTIONS(1858), - [anon_sym_o_GT_GT] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), + [STATE(477)] = { + [sym_cell_path] = STATE(916), + [sym_path] = STATE(791), + [sym_comment] = STATE(477), + [aux_sym__where_predicate_lhs_repeat1] = STATE(532), + [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_GT2] = ACTIONS(1683), + [anon_sym_DASH2] = 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_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), + [anon_sym_DOT_DOT2] = ACTIONS(1683), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1681), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1681), + [anon_sym_DOT2] = ACTIONS(1854), + [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(486)] = { - [sym_cell_path] = STATE(724), - [sym_path] = STATE(441), - [sym_comment] = STATE(486), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), + [STATE(478)] = { + [sym_comment] = STATE(478), + [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(479)] = { + [sym_cell_path] = STATE(940), + [sym_path] = STATE(454), + [sym_comment] = STATE(479), + [aux_sym__where_predicate_lhs_repeat1] = STATE(429), + [anon_sym_in] = ACTIONS(1856), + [sym__newline] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_err_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_GT_PIPE] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), + [anon_sym_RPAREN] = ACTIONS(1856), + [anon_sym_GT2] = ACTIONS(1858), + [anon_sym_DASH2] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_EQ_GT] = ACTIONS(1856), + [anon_sym_STAR2] = ACTIONS(1858), + [anon_sym_and2] = ACTIONS(1856), + [anon_sym_xor2] = ACTIONS(1856), + [anon_sym_or2] = ACTIONS(1856), + [anon_sym_not_DASHin2] = ACTIONS(1856), + [anon_sym_has2] = ACTIONS(1856), + [anon_sym_not_DASHhas2] = ACTIONS(1856), + [anon_sym_starts_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), + [anon_sym_ends_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), + [anon_sym_EQ_EQ2] = ACTIONS(1856), + [anon_sym_BANG_EQ2] = ACTIONS(1856), + [anon_sym_LT2] = ACTIONS(1858), + [anon_sym_LT_EQ2] = ACTIONS(1856), + [anon_sym_GT_EQ2] = ACTIONS(1856), + [anon_sym_EQ_TILDE2] = ACTIONS(1856), + [anon_sym_BANG_TILDE2] = ACTIONS(1856), + [anon_sym_like2] = ACTIONS(1856), + [anon_sym_not_DASHlike2] = ACTIONS(1856), + [anon_sym_STAR_STAR2] = ACTIONS(1856), + [anon_sym_PLUS_PLUS2] = ACTIONS(1856), + [anon_sym_SLASH2] = ACTIONS(1858), + [anon_sym_mod2] = ACTIONS(1856), + [anon_sym_SLASH_SLASH2] = ACTIONS(1856), + [anon_sym_PLUS2] = ACTIONS(1858), + [anon_sym_bit_DASHshl2] = ACTIONS(1856), + [anon_sym_bit_DASHshr2] = ACTIONS(1856), + [anon_sym_bit_DASHand2] = ACTIONS(1856), + [anon_sym_bit_DASHxor2] = ACTIONS(1856), + [anon_sym_bit_DASHor2] = ACTIONS(1856), + [anon_sym_DOT2] = ACTIONS(1860), + [anon_sym_err_GT] = ACTIONS(1858), + [anon_sym_out_GT] = ACTIONS(1858), + [anon_sym_e_GT] = ACTIONS(1858), + [anon_sym_o_GT] = ACTIONS(1858), + [anon_sym_err_PLUSout_GT] = ACTIONS(1858), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1858), + [anon_sym_o_PLUSe_GT] = ACTIONS(1858), + [anon_sym_e_PLUSo_GT] = ACTIONS(1858), + [anon_sym_err_GT_GT] = ACTIONS(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(480)] = { + [sym_cell_path] = STATE(901), + [sym_path] = STATE(454), + [sym_comment] = STATE(480), + [aux_sym__where_predicate_lhs_repeat1] = STATE(429), [anon_sym_in] = ACTIONS(1862), [sym__newline] = ACTIONS(1862), [anon_sym_SEMI] = ACTIONS(1862), @@ -85165,12 +85041,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_GT2] = ACTIONS(1865), [anon_sym_DASH2] = ACTIONS(1862), [anon_sym_LBRACE] = ACTIONS(1862), [anon_sym_RBRACE] = ACTIONS(1862), [anon_sym_EQ_GT] = ACTIONS(1862), - [anon_sym_STAR2] = ACTIONS(1864), + [anon_sym_STAR2] = ACTIONS(1865), [anon_sym_and2] = ACTIONS(1862), [anon_sym_xor2] = ACTIONS(1862), [anon_sym_or2] = ACTIONS(1862), @@ -85183,7 +85059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1862), [anon_sym_EQ_EQ2] = ACTIONS(1862), [anon_sym_BANG_EQ2] = ACTIONS(1862), - [anon_sym_LT2] = ACTIONS(1864), + [anon_sym_LT2] = ACTIONS(1865), [anon_sym_LT_EQ2] = ACTIONS(1862), [anon_sym_GT_EQ2] = ACTIONS(1862), [anon_sym_EQ_TILDE2] = ACTIONS(1862), @@ -85192,24 +85068,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHlike2] = ACTIONS(1862), [anon_sym_STAR_STAR2] = ACTIONS(1862), [anon_sym_PLUS_PLUS2] = ACTIONS(1862), - [anon_sym_SLASH2] = ACTIONS(1864), + [anon_sym_SLASH2] = ACTIONS(1865), [anon_sym_mod2] = ACTIONS(1862), [anon_sym_SLASH_SLASH2] = ACTIONS(1862), - [anon_sym_PLUS2] = ACTIONS(1864), + [anon_sym_PLUS2] = ACTIONS(1865), [anon_sym_bit_DASHshl2] = ACTIONS(1862), [anon_sym_bit_DASHshr2] = ACTIONS(1862), [anon_sym_bit_DASHand2] = ACTIONS(1862), [anon_sym_bit_DASHxor2] = ACTIONS(1862), [anon_sym_bit_DASHor2] = ACTIONS(1862), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1864), - [anon_sym_out_GT] = ACTIONS(1864), - [anon_sym_e_GT] = ACTIONS(1864), - [anon_sym_o_GT] = ACTIONS(1864), - [anon_sym_err_PLUSout_GT] = ACTIONS(1864), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1864), - [anon_sym_o_PLUSe_GT] = ACTIONS(1864), - [anon_sym_e_PLUSo_GT] = ACTIONS(1864), + [anon_sym_DOT2] = ACTIONS(1860), + [anon_sym_err_GT] = ACTIONS(1865), + [anon_sym_out_GT] = ACTIONS(1865), + [anon_sym_e_GT] = ACTIONS(1865), + [anon_sym_o_GT] = ACTIONS(1865), + [anon_sym_err_PLUSout_GT] = ACTIONS(1865), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1865), + [anon_sym_o_PLUSe_GT] = ACTIONS(1865), + [anon_sym_e_PLUSo_GT] = ACTIONS(1865), [anon_sym_err_GT_GT] = ACTIONS(1862), [anon_sym_out_GT_GT] = ACTIONS(1862), [anon_sym_e_GT_GT] = ACTIONS(1862), @@ -85220,14783 +85096,14795 @@ 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(481)] = { + [sym__path_suffix] = STATE(894), + [sym_comment] = STATE(481), + [ts_builtin_sym_end] = ACTIONS(1444), + [anon_sym_in] = ACTIONS(1444), + [sym__newline] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_err_GT_PIPE] = ACTIONS(1444), + [anon_sym_out_GT_PIPE] = ACTIONS(1444), + [anon_sym_e_GT_PIPE] = ACTIONS(1444), + [anon_sym_o_GT_PIPE] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1444), + [anon_sym_GT2] = ACTIONS(1442), + [anon_sym_DASH2] = ACTIONS(1444), + [anon_sym_STAR2] = ACTIONS(1442), + [anon_sym_and2] = ACTIONS(1444), + [anon_sym_xor2] = ACTIONS(1444), + [anon_sym_or2] = ACTIONS(1444), + [anon_sym_not_DASHin2] = ACTIONS(1444), + [anon_sym_has2] = ACTIONS(1444), + [anon_sym_not_DASHhas2] = ACTIONS(1444), + [anon_sym_starts_DASHwith2] = ACTIONS(1444), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1444), + [anon_sym_ends_DASHwith2] = ACTIONS(1444), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1444), + [anon_sym_EQ_EQ2] = ACTIONS(1444), + [anon_sym_BANG_EQ2] = ACTIONS(1444), + [anon_sym_LT2] = ACTIONS(1442), + [anon_sym_LT_EQ2] = ACTIONS(1444), + [anon_sym_GT_EQ2] = ACTIONS(1444), + [anon_sym_EQ_TILDE2] = ACTIONS(1444), + [anon_sym_BANG_TILDE2] = ACTIONS(1444), + [anon_sym_like2] = ACTIONS(1444), + [anon_sym_not_DASHlike2] = ACTIONS(1444), + [anon_sym_STAR_STAR2] = ACTIONS(1444), + [anon_sym_PLUS_PLUS2] = ACTIONS(1444), + [anon_sym_SLASH2] = ACTIONS(1442), + [anon_sym_mod2] = ACTIONS(1444), + [anon_sym_SLASH_SLASH2] = ACTIONS(1444), + [anon_sym_PLUS2] = ACTIONS(1442), + [anon_sym_bit_DASHshl2] = ACTIONS(1444), + [anon_sym_bit_DASHshr2] = ACTIONS(1444), + [anon_sym_bit_DASHand2] = ACTIONS(1444), + [anon_sym_bit_DASHxor2] = ACTIONS(1444), + [anon_sym_bit_DASHor2] = ACTIONS(1444), + [anon_sym_DOT_DOT2] = ACTIONS(1442), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), + [anon_sym_QMARK2] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_DOT2] = ACTIONS(1442), + [anon_sym_err_GT] = ACTIONS(1442), + [anon_sym_out_GT] = ACTIONS(1442), + [anon_sym_e_GT] = ACTIONS(1442), + [anon_sym_o_GT] = ACTIONS(1442), + [anon_sym_err_PLUSout_GT] = ACTIONS(1442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1442), + [anon_sym_o_PLUSe_GT] = ACTIONS(1442), + [anon_sym_e_PLUSo_GT] = ACTIONS(1442), + [anon_sym_err_GT_GT] = ACTIONS(1444), + [anon_sym_out_GT_GT] = ACTIONS(1444), + [anon_sym_e_GT_GT] = ACTIONS(1444), + [anon_sym_o_GT_GT] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(482)] = { + [sym_comment] = STATE(482), + [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(483)] = { + [sym_comment] = STATE(483), + [ts_builtin_sym_end] = ACTIONS(765), + [anon_sym_in] = ACTIONS(765), + [sym__newline] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_err_GT_PIPE] = ACTIONS(765), + [anon_sym_out_GT_PIPE] = ACTIONS(765), + [anon_sym_e_GT_PIPE] = ACTIONS(765), + [anon_sym_o_GT_PIPE] = ACTIONS(765), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(765), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(765), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(765), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(765), + [anon_sym_GT2] = ACTIONS(763), + [anon_sym_DASH2] = ACTIONS(765), + [anon_sym_STAR2] = ACTIONS(763), + [anon_sym_and2] = ACTIONS(765), + [anon_sym_xor2] = ACTIONS(765), + [anon_sym_or2] = ACTIONS(765), + [anon_sym_not_DASHin2] = ACTIONS(765), + [anon_sym_has2] = ACTIONS(765), + [anon_sym_not_DASHhas2] = ACTIONS(765), + [anon_sym_starts_DASHwith2] = ACTIONS(765), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(765), + [anon_sym_ends_DASHwith2] = ACTIONS(765), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(765), + [anon_sym_EQ_EQ2] = ACTIONS(765), + [anon_sym_BANG_EQ2] = ACTIONS(765), + [anon_sym_LT2] = ACTIONS(763), + [anon_sym_LT_EQ2] = ACTIONS(765), + [anon_sym_GT_EQ2] = ACTIONS(765), + [anon_sym_EQ_TILDE2] = ACTIONS(765), + [anon_sym_BANG_TILDE2] = ACTIONS(765), + [anon_sym_like2] = ACTIONS(765), + [anon_sym_not_DASHlike2] = ACTIONS(765), + [anon_sym_LPAREN2] = ACTIONS(765), + [anon_sym_STAR_STAR2] = ACTIONS(765), + [anon_sym_PLUS_PLUS2] = ACTIONS(765), + [anon_sym_SLASH2] = ACTIONS(763), + [anon_sym_mod2] = ACTIONS(765), + [anon_sym_SLASH_SLASH2] = ACTIONS(765), + [anon_sym_PLUS2] = ACTIONS(763), + [anon_sym_bit_DASHshl2] = ACTIONS(765), + [anon_sym_bit_DASHshr2] = ACTIONS(765), + [anon_sym_bit_DASHand2] = ACTIONS(765), + [anon_sym_bit_DASHxor2] = ACTIONS(765), + [anon_sym_bit_DASHor2] = ACTIONS(765), + [anon_sym_DOT_DOT2] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [sym_filesize_unit] = ACTIONS(763), + [sym_duration_unit] = ACTIONS(765), + [anon_sym_err_GT] = ACTIONS(763), + [anon_sym_out_GT] = ACTIONS(763), + [anon_sym_e_GT] = ACTIONS(763), + [anon_sym_o_GT] = ACTIONS(763), + [anon_sym_err_PLUSout_GT] = ACTIONS(763), + [anon_sym_out_PLUSerr_GT] = ACTIONS(763), + [anon_sym_o_PLUSe_GT] = ACTIONS(763), + [anon_sym_e_PLUSo_GT] = ACTIONS(763), + [anon_sym_err_GT_GT] = ACTIONS(765), + [anon_sym_out_GT_GT] = ACTIONS(765), + [anon_sym_e_GT_GT] = ACTIONS(765), + [anon_sym_o_GT_GT] = ACTIONS(765), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(765), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(765), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(765), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(765), + [sym__unquoted_pattern] = ACTIONS(763), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(484)] = { + [sym_cell_path] = STATE(869), + [sym_path] = STATE(454), + [sym_comment] = STATE(484), + [aux_sym__where_predicate_lhs_repeat1] = STATE(429), + [anon_sym_in] = ACTIONS(1872), + [sym__newline] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1872), + [anon_sym_err_GT_PIPE] = ACTIONS(1872), + [anon_sym_out_GT_PIPE] = ACTIONS(1872), + [anon_sym_e_GT_PIPE] = ACTIONS(1872), + [anon_sym_o_GT_PIPE] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1872), + [anon_sym_RPAREN] = ACTIONS(1872), + [anon_sym_GT2] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_EQ_GT] = ACTIONS(1872), + [anon_sym_STAR2] = ACTIONS(1874), + [anon_sym_and2] = ACTIONS(1872), + [anon_sym_xor2] = ACTIONS(1872), + [anon_sym_or2] = ACTIONS(1872), + [anon_sym_not_DASHin2] = ACTIONS(1872), + [anon_sym_has2] = ACTIONS(1872), + [anon_sym_not_DASHhas2] = ACTIONS(1872), + [anon_sym_starts_DASHwith2] = ACTIONS(1872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1872), + [anon_sym_ends_DASHwith2] = ACTIONS(1872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1872), + [anon_sym_EQ_EQ2] = ACTIONS(1872), + [anon_sym_BANG_EQ2] = ACTIONS(1872), + [anon_sym_LT2] = ACTIONS(1874), + [anon_sym_LT_EQ2] = ACTIONS(1872), + [anon_sym_GT_EQ2] = ACTIONS(1872), + [anon_sym_EQ_TILDE2] = ACTIONS(1872), + [anon_sym_BANG_TILDE2] = ACTIONS(1872), + [anon_sym_like2] = ACTIONS(1872), + [anon_sym_not_DASHlike2] = ACTIONS(1872), + [anon_sym_STAR_STAR2] = ACTIONS(1872), + [anon_sym_PLUS_PLUS2] = ACTIONS(1872), + [anon_sym_SLASH2] = ACTIONS(1874), + [anon_sym_mod2] = ACTIONS(1872), + [anon_sym_SLASH_SLASH2] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1874), + [anon_sym_bit_DASHshl2] = ACTIONS(1872), + [anon_sym_bit_DASHshr2] = ACTIONS(1872), + [anon_sym_bit_DASHand2] = ACTIONS(1872), + [anon_sym_bit_DASHxor2] = ACTIONS(1872), + [anon_sym_bit_DASHor2] = ACTIONS(1872), + [anon_sym_DOT2] = ACTIONS(1860), + [anon_sym_err_GT] = ACTIONS(1874), + [anon_sym_out_GT] = ACTIONS(1874), + [anon_sym_e_GT] = ACTIONS(1874), + [anon_sym_o_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT] = ACTIONS(1874), + [anon_sym_err_GT_GT] = ACTIONS(1872), + [anon_sym_out_GT_GT] = ACTIONS(1872), + [anon_sym_e_GT_GT] = ACTIONS(1872), + [anon_sym_o_GT_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(485)] = { + [sym_comment] = STATE(485), + [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(486)] = { + [sym_comment] = STATE(486), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1876), + [sym__newline] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1876), + [anon_sym_err_GT_PIPE] = ACTIONS(1876), + [anon_sym_out_GT_PIPE] = ACTIONS(1876), + [anon_sym_e_GT_PIPE] = ACTIONS(1876), + [anon_sym_o_GT_PIPE] = ACTIONS(1876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1876), + [anon_sym_RPAREN] = ACTIONS(1876), + [anon_sym_GT2] = ACTIONS(1878), + [anon_sym_DASH2] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1876), + [anon_sym_RBRACE] = ACTIONS(1876), + [anon_sym_EQ_GT] = ACTIONS(1876), + [anon_sym_STAR2] = ACTIONS(1878), + [anon_sym_and2] = ACTIONS(1876), + [anon_sym_xor2] = ACTIONS(1876), + [anon_sym_or2] = ACTIONS(1876), + [anon_sym_not_DASHin2] = ACTIONS(1876), + [anon_sym_has2] = ACTIONS(1876), + [anon_sym_not_DASHhas2] = ACTIONS(1876), + [anon_sym_starts_DASHwith2] = ACTIONS(1876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1876), + [anon_sym_ends_DASHwith2] = ACTIONS(1876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1876), + [anon_sym_EQ_EQ2] = ACTIONS(1876), + [anon_sym_BANG_EQ2] = ACTIONS(1876), + [anon_sym_LT2] = ACTIONS(1878), + [anon_sym_LT_EQ2] = ACTIONS(1876), + [anon_sym_GT_EQ2] = ACTIONS(1876), + [anon_sym_EQ_TILDE2] = ACTIONS(1876), + [anon_sym_BANG_TILDE2] = ACTIONS(1876), + [anon_sym_like2] = ACTIONS(1876), + [anon_sym_not_DASHlike2] = ACTIONS(1876), + [anon_sym_STAR_STAR2] = ACTIONS(1876), + [anon_sym_PLUS_PLUS2] = ACTIONS(1876), + [anon_sym_SLASH2] = ACTIONS(1878), + [anon_sym_mod2] = ACTIONS(1876), + [anon_sym_SLASH_SLASH2] = ACTIONS(1876), + [anon_sym_PLUS2] = ACTIONS(1878), + [anon_sym_bit_DASHshl2] = ACTIONS(1876), + [anon_sym_bit_DASHshr2] = ACTIONS(1876), + [anon_sym_bit_DASHand2] = ACTIONS(1876), + [anon_sym_bit_DASHxor2] = ACTIONS(1876), + [anon_sym_bit_DASHor2] = ACTIONS(1876), + [anon_sym_DOT_DOT2] = ACTIONS(1878), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1876), + [anon_sym_err_GT] = ACTIONS(1878), + [anon_sym_out_GT] = ACTIONS(1878), + [anon_sym_e_GT] = ACTIONS(1878), + [anon_sym_o_GT] = ACTIONS(1878), + [anon_sym_err_PLUSout_GT] = ACTIONS(1878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1878), + [anon_sym_o_PLUSe_GT] = ACTIONS(1878), + [anon_sym_e_PLUSo_GT] = ACTIONS(1878), + [anon_sym_err_GT_GT] = ACTIONS(1876), + [anon_sym_out_GT_GT] = ACTIONS(1876), + [anon_sym_e_GT_GT] = ACTIONS(1876), + [anon_sym_o_GT_GT] = ACTIONS(1876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(487)] = { + [sym_cell_path] = STATE(784), + [sym_path] = STATE(454), [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(429), + [anon_sym_in] = ACTIONS(1880), + [sym__newline] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_err_GT_PIPE] = ACTIONS(1880), + [anon_sym_out_GT_PIPE] = ACTIONS(1880), + [anon_sym_e_GT_PIPE] = ACTIONS(1880), + [anon_sym_o_GT_PIPE] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1880), + [anon_sym_GT2] = ACTIONS(1882), + [anon_sym_DASH2] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1880), + [anon_sym_EQ_GT] = ACTIONS(1880), + [anon_sym_STAR2] = ACTIONS(1882), + [anon_sym_and2] = ACTIONS(1880), + [anon_sym_xor2] = ACTIONS(1880), + [anon_sym_or2] = ACTIONS(1880), + [anon_sym_not_DASHin2] = ACTIONS(1880), + [anon_sym_has2] = ACTIONS(1880), + [anon_sym_not_DASHhas2] = ACTIONS(1880), + [anon_sym_starts_DASHwith2] = ACTIONS(1880), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1880), + [anon_sym_ends_DASHwith2] = ACTIONS(1880), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1880), + [anon_sym_EQ_EQ2] = ACTIONS(1880), + [anon_sym_BANG_EQ2] = ACTIONS(1880), + [anon_sym_LT2] = ACTIONS(1882), + [anon_sym_LT_EQ2] = ACTIONS(1880), + [anon_sym_GT_EQ2] = ACTIONS(1880), + [anon_sym_EQ_TILDE2] = ACTIONS(1880), + [anon_sym_BANG_TILDE2] = ACTIONS(1880), + [anon_sym_like2] = ACTIONS(1880), + [anon_sym_not_DASHlike2] = ACTIONS(1880), + [anon_sym_STAR_STAR2] = ACTIONS(1880), + [anon_sym_PLUS_PLUS2] = ACTIONS(1880), + [anon_sym_SLASH2] = ACTIONS(1882), + [anon_sym_mod2] = ACTIONS(1880), + [anon_sym_SLASH_SLASH2] = ACTIONS(1880), + [anon_sym_PLUS2] = ACTIONS(1882), + [anon_sym_bit_DASHshl2] = ACTIONS(1880), + [anon_sym_bit_DASHshr2] = ACTIONS(1880), + [anon_sym_bit_DASHand2] = ACTIONS(1880), + [anon_sym_bit_DASHxor2] = ACTIONS(1880), + [anon_sym_bit_DASHor2] = ACTIONS(1880), + [anon_sym_DOT2] = ACTIONS(1860), + [anon_sym_err_GT] = ACTIONS(1882), + [anon_sym_out_GT] = ACTIONS(1882), + [anon_sym_e_GT] = ACTIONS(1882), + [anon_sym_o_GT] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT] = ACTIONS(1882), + [anon_sym_err_GT_GT] = ACTIONS(1880), + [anon_sym_out_GT_GT] = ACTIONS(1880), + [anon_sym_e_GT_GT] = ACTIONS(1880), + [anon_sym_o_GT_GT] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1880), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [sym__newline] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_err_GT_PIPE] = ACTIONS(1754), + [anon_sym_out_GT_PIPE] = ACTIONS(1754), + [anon_sym_e_GT_PIPE] = ACTIONS(1754), + [anon_sym_o_GT_PIPE] = ACTIONS(1754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), + [anon_sym_GT2] = ACTIONS(1756), + [anon_sym_DASH2] = ACTIONS(1754), + [anon_sym_STAR2] = ACTIONS(1756), + [anon_sym_and2] = ACTIONS(1754), + [anon_sym_xor2] = ACTIONS(1754), + [anon_sym_or2] = ACTIONS(1754), + [anon_sym_not_DASHin2] = ACTIONS(1754), + [anon_sym_has2] = ACTIONS(1754), + [anon_sym_not_DASHhas2] = ACTIONS(1754), + [anon_sym_starts_DASHwith2] = ACTIONS(1754), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1754), + [anon_sym_ends_DASHwith2] = ACTIONS(1754), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1754), + [anon_sym_EQ_EQ2] = ACTIONS(1754), + [anon_sym_BANG_EQ2] = ACTIONS(1754), + [anon_sym_LT2] = ACTIONS(1756), + [anon_sym_LT_EQ2] = ACTIONS(1754), + [anon_sym_GT_EQ2] = ACTIONS(1754), + [anon_sym_EQ_TILDE2] = ACTIONS(1754), + [anon_sym_BANG_TILDE2] = ACTIONS(1754), + [anon_sym_like2] = ACTIONS(1754), + [anon_sym_not_DASHlike2] = ACTIONS(1754), + [anon_sym_LPAREN2] = ACTIONS(1754), + [anon_sym_STAR_STAR2] = ACTIONS(1754), + [anon_sym_PLUS_PLUS2] = ACTIONS(1754), + [anon_sym_SLASH2] = ACTIONS(1756), + [anon_sym_mod2] = ACTIONS(1754), + [anon_sym_SLASH_SLASH2] = ACTIONS(1754), + [anon_sym_PLUS2] = ACTIONS(1756), + [anon_sym_bit_DASHshl2] = ACTIONS(1754), + [anon_sym_bit_DASHshr2] = ACTIONS(1754), + [anon_sym_bit_DASHand2] = ACTIONS(1754), + [anon_sym_bit_DASHxor2] = ACTIONS(1754), + [anon_sym_bit_DASHor2] = ACTIONS(1754), + [anon_sym_DOT_DOT2] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1884), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1754), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1754), + [aux_sym__immediate_decimal_token5] = ACTIONS(1886), + [anon_sym_err_GT] = ACTIONS(1756), + [anon_sym_out_GT] = ACTIONS(1756), + [anon_sym_e_GT] = ACTIONS(1756), + [anon_sym_o_GT] = ACTIONS(1756), + [anon_sym_err_PLUSout_GT] = ACTIONS(1756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), + [anon_sym_o_PLUSe_GT] = ACTIONS(1756), + [anon_sym_e_PLUSo_GT] = ACTIONS(1756), + [anon_sym_err_GT_GT] = ACTIONS(1754), + [anon_sym_out_GT_GT] = ACTIONS(1754), + [anon_sym_e_GT_GT] = ACTIONS(1754), + [anon_sym_o_GT_GT] = ACTIONS(1754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), + [sym__unquoted_pattern] = ACTIONS(1756), [anon_sym_POUND] = ACTIONS(3), }, [STATE(489)] = { - [sym_cell_path] = STATE(899), - [sym_path] = STATE(441), + [sym_cell_path] = STATE(930), + [sym_path] = STATE(454), [sym_comment] = STATE(489), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1866), - [sym__newline] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_err_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_GT_PIPE] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_GT2] = ACTIONS(1868), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_EQ_GT] = ACTIONS(1866), - [anon_sym_STAR2] = ACTIONS(1868), - [anon_sym_and2] = ACTIONS(1866), - [anon_sym_xor2] = ACTIONS(1866), - [anon_sym_or2] = ACTIONS(1866), - [anon_sym_not_DASHin2] = ACTIONS(1866), - [anon_sym_has2] = ACTIONS(1866), - [anon_sym_not_DASHhas2] = ACTIONS(1866), - [anon_sym_starts_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), - [anon_sym_ends_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), - [anon_sym_EQ_EQ2] = ACTIONS(1866), - [anon_sym_BANG_EQ2] = ACTIONS(1866), - [anon_sym_LT2] = ACTIONS(1868), - [anon_sym_LT_EQ2] = ACTIONS(1866), - [anon_sym_GT_EQ2] = ACTIONS(1866), - [anon_sym_EQ_TILDE2] = ACTIONS(1866), - [anon_sym_BANG_TILDE2] = ACTIONS(1866), - [anon_sym_like2] = ACTIONS(1866), - [anon_sym_not_DASHlike2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [aux_sym__where_predicate_lhs_repeat1] = STATE(429), + [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(1860), + [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(490)] = { [sym_comment] = STATE(490), - [anon_sym_in] = ACTIONS(1870), - [sym__newline] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_err_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_GT_PIPE] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), - [anon_sym_RPAREN] = ACTIONS(1870), - [anon_sym_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [anon_sym_DOT_DOT2] = ACTIONS(1872), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1870), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1872), - [anon_sym_out_GT] = ACTIONS(1872), - [anon_sym_e_GT] = ACTIONS(1872), - [anon_sym_o_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT] = ACTIONS(1872), - [anon_sym_err_GT_GT] = ACTIONS(1870), - [anon_sym_out_GT_GT] = ACTIONS(1870), - [anon_sym_e_GT_GT] = ACTIONS(1870), - [anon_sym_o_GT_GT] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), - [sym__unquoted_pattern] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(1746), + [sym__newline] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_PIPE] = ACTIONS(1746), + [anon_sym_err_GT_PIPE] = ACTIONS(1746), + [anon_sym_out_GT_PIPE] = ACTIONS(1746), + [anon_sym_e_GT_PIPE] = ACTIONS(1746), + [anon_sym_o_GT_PIPE] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_GT2] = ACTIONS(1748), + [anon_sym_DASH2] = ACTIONS(1746), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_STAR2] = ACTIONS(1748), + [anon_sym_and2] = ACTIONS(1746), + [anon_sym_xor2] = ACTIONS(1746), + [anon_sym_or2] = ACTIONS(1746), + [anon_sym_not_DASHin2] = ACTIONS(1746), + [anon_sym_has2] = ACTIONS(1746), + [anon_sym_not_DASHhas2] = ACTIONS(1746), + [anon_sym_starts_DASHwith2] = ACTIONS(1746), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1746), + [anon_sym_ends_DASHwith2] = ACTIONS(1746), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1746), + [anon_sym_EQ_EQ2] = ACTIONS(1746), + [anon_sym_BANG_EQ2] = ACTIONS(1746), + [anon_sym_LT2] = ACTIONS(1748), + [anon_sym_LT_EQ2] = ACTIONS(1746), + [anon_sym_GT_EQ2] = ACTIONS(1746), + [anon_sym_EQ_TILDE2] = ACTIONS(1746), + [anon_sym_BANG_TILDE2] = ACTIONS(1746), + [anon_sym_like2] = ACTIONS(1746), + [anon_sym_not_DASHlike2] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_STAR_STAR2] = ACTIONS(1746), + [anon_sym_PLUS_PLUS2] = ACTIONS(1746), + [anon_sym_SLASH2] = ACTIONS(1748), + [anon_sym_mod2] = ACTIONS(1746), + [anon_sym_SLASH_SLASH2] = ACTIONS(1746), + [anon_sym_PLUS2] = ACTIONS(1748), + [anon_sym_bit_DASHshl2] = ACTIONS(1746), + [anon_sym_bit_DASHshr2] = ACTIONS(1746), + [anon_sym_bit_DASHand2] = ACTIONS(1746), + [anon_sym_bit_DASHxor2] = ACTIONS(1746), + [anon_sym_bit_DASHor2] = ACTIONS(1746), + [anon_sym_DOT_DOT2] = ACTIONS(1748), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1746), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1746), + [anon_sym_err_GT] = ACTIONS(1748), + [anon_sym_out_GT] = ACTIONS(1748), + [anon_sym_e_GT] = ACTIONS(1748), + [anon_sym_o_GT] = ACTIONS(1748), + [anon_sym_err_PLUSout_GT] = ACTIONS(1748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1748), + [anon_sym_o_PLUSe_GT] = ACTIONS(1748), + [anon_sym_e_PLUSo_GT] = ACTIONS(1748), + [anon_sym_err_GT_GT] = ACTIONS(1746), + [anon_sym_out_GT_GT] = ACTIONS(1746), + [anon_sym_e_GT_GT] = ACTIONS(1746), + [anon_sym_o_GT_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), + [sym__unquoted_pattern] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(3), }, [STATE(491)] = { + [sym_cmd_identifier] = STATE(4141), + [sym_expr_parenthesized] = STATE(5138), + [sym__spread_parenthesized] = STATE(4677), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(4334), + [sym_val_number] = STATE(5138), + [sym__val_number_decimal] = STATE(1947), + [sym__val_number] = STATE(700), + [sym_val_string] = STATE(5138), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_interpolated] = STATE(5138), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym__spread_record] = STATE(4677), + [sym_record_entry] = STATE(4530), + [sym__record_key] = STATE(4944), [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), + [aux_sym__types_body_repeat1] = STATE(1494), + [aux_sym__match_pattern_record_body_repeat1] = STATE(889), + [aux_sym_record_body_repeat1] = STATE(871), + [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(1778), + [anon_sym_false] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1780), + [aux_sym_cmd_identifier_token4] = ACTIONS(1780), + [aux_sym_cmd_identifier_token5] = ACTIONS(1780), + [sym__newline] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1786), + [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(1790), + [aux_sym__val_number_decimal_token2] = ACTIONS(1792), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [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(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), + [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(1802), }, [STATE(492)] = { [sym_comment] = STATE(492), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_RPAREN] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_EQ_GT] = ACTIONS(1558), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1558), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_COLON2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), + [anon_sym_in] = ACTIONS(1812), + [sym__newline] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_err_GT_PIPE] = ACTIONS(1812), + [anon_sym_out_GT_PIPE] = ACTIONS(1812), + [anon_sym_e_GT_PIPE] = ACTIONS(1812), + [anon_sym_o_GT_PIPE] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1812), + [anon_sym_RPAREN] = ACTIONS(1812), + [anon_sym_GT2] = ACTIONS(1814), + [anon_sym_DASH2] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1812), + [anon_sym_RBRACE] = ACTIONS(1812), + [anon_sym_STAR2] = ACTIONS(1814), + [anon_sym_and2] = ACTIONS(1812), + [anon_sym_xor2] = ACTIONS(1812), + [anon_sym_or2] = ACTIONS(1812), + [anon_sym_not_DASHin2] = ACTIONS(1812), + [anon_sym_has2] = ACTIONS(1812), + [anon_sym_not_DASHhas2] = ACTIONS(1812), + [anon_sym_starts_DASHwith2] = ACTIONS(1812), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1812), + [anon_sym_ends_DASHwith2] = ACTIONS(1812), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1812), + [anon_sym_EQ_EQ2] = ACTIONS(1812), + [anon_sym_BANG_EQ2] = ACTIONS(1812), + [anon_sym_LT2] = ACTIONS(1814), + [anon_sym_LT_EQ2] = ACTIONS(1812), + [anon_sym_GT_EQ2] = ACTIONS(1812), + [anon_sym_EQ_TILDE2] = ACTIONS(1812), + [anon_sym_BANG_TILDE2] = ACTIONS(1812), + [anon_sym_like2] = ACTIONS(1812), + [anon_sym_not_DASHlike2] = ACTIONS(1812), + [anon_sym_LPAREN2] = ACTIONS(1812), + [anon_sym_STAR_STAR2] = ACTIONS(1812), + [anon_sym_PLUS_PLUS2] = ACTIONS(1812), + [anon_sym_SLASH2] = ACTIONS(1814), + [anon_sym_mod2] = ACTIONS(1812), + [anon_sym_SLASH_SLASH2] = ACTIONS(1812), + [anon_sym_PLUS2] = ACTIONS(1814), + [anon_sym_bit_DASHshl2] = ACTIONS(1812), + [anon_sym_bit_DASHshr2] = ACTIONS(1812), + [anon_sym_bit_DASHand2] = ACTIONS(1812), + [anon_sym_bit_DASHxor2] = ACTIONS(1812), + [anon_sym_bit_DASHor2] = ACTIONS(1812), + [anon_sym_DOT_DOT2] = ACTIONS(1814), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1812), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1812), + [anon_sym_err_GT] = ACTIONS(1814), + [anon_sym_out_GT] = ACTIONS(1814), + [anon_sym_e_GT] = ACTIONS(1814), + [anon_sym_o_GT] = ACTIONS(1814), + [anon_sym_err_PLUSout_GT] = ACTIONS(1814), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1814), + [anon_sym_o_PLUSe_GT] = ACTIONS(1814), + [anon_sym_e_PLUSo_GT] = ACTIONS(1814), + [anon_sym_err_GT_GT] = ACTIONS(1812), + [anon_sym_out_GT_GT] = ACTIONS(1812), + [anon_sym_e_GT_GT] = ACTIONS(1812), + [anon_sym_o_GT_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1812), + [sym__unquoted_pattern] = ACTIONS(1814), [anon_sym_POUND] = ACTIONS(3), }, [STATE(493)] = { - [sym_cell_path] = STATE(735), - [sym_path] = STATE(441), [sym_comment] = STATE(493), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1878), - [sym__newline] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_err_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_GT_PIPE] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1878), - [anon_sym_RPAREN] = ACTIONS(1878), - [anon_sym_GT2] = ACTIONS(1880), - [anon_sym_DASH2] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_EQ_GT] = ACTIONS(1878), - [anon_sym_STAR2] = ACTIONS(1880), - [anon_sym_and2] = ACTIONS(1878), - [anon_sym_xor2] = ACTIONS(1878), - [anon_sym_or2] = ACTIONS(1878), - [anon_sym_not_DASHin2] = ACTIONS(1878), - [anon_sym_has2] = ACTIONS(1878), - [anon_sym_not_DASHhas2] = ACTIONS(1878), - [anon_sym_starts_DASHwith2] = ACTIONS(1878), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1878), - [anon_sym_ends_DASHwith2] = ACTIONS(1878), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1878), - [anon_sym_EQ_EQ2] = ACTIONS(1878), - [anon_sym_BANG_EQ2] = ACTIONS(1878), - [anon_sym_LT2] = ACTIONS(1880), - [anon_sym_LT_EQ2] = ACTIONS(1878), - [anon_sym_GT_EQ2] = ACTIONS(1878), - [anon_sym_EQ_TILDE2] = ACTIONS(1878), - [anon_sym_BANG_TILDE2] = ACTIONS(1878), - [anon_sym_like2] = ACTIONS(1878), - [anon_sym_not_DASHlike2] = ACTIONS(1878), - [anon_sym_STAR_STAR2] = ACTIONS(1878), - [anon_sym_PLUS_PLUS2] = ACTIONS(1878), - [anon_sym_SLASH2] = ACTIONS(1880), - [anon_sym_mod2] = ACTIONS(1878), - [anon_sym_SLASH_SLASH2] = ACTIONS(1878), - [anon_sym_PLUS2] = ACTIONS(1880), - [anon_sym_bit_DASHshl2] = ACTIONS(1878), - [anon_sym_bit_DASHshr2] = ACTIONS(1878), - [anon_sym_bit_DASHand2] = ACTIONS(1878), - [anon_sym_bit_DASHxor2] = ACTIONS(1878), - [anon_sym_bit_DASHor2] = ACTIONS(1878), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1880), - [anon_sym_out_GT] = ACTIONS(1880), - [anon_sym_e_GT] = ACTIONS(1880), - [anon_sym_o_GT] = ACTIONS(1880), - [anon_sym_err_PLUSout_GT] = ACTIONS(1880), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1880), - [anon_sym_o_PLUSe_GT] = ACTIONS(1880), - [anon_sym_e_PLUSo_GT] = ACTIONS(1880), - [anon_sym_err_GT_GT] = ACTIONS(1878), - [anon_sym_out_GT_GT] = ACTIONS(1878), - [anon_sym_e_GT_GT] = ACTIONS(1878), - [anon_sym_o_GT_GT] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1878), + [ts_builtin_sym_end] = ACTIONS(791), + [anon_sym_in] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_LPAREN2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(791), + [anon_sym_out_GT_GT] = ACTIONS(791), + [anon_sym_e_GT_GT] = ACTIONS(791), + [anon_sym_o_GT_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [sym__unquoted_pattern] = ACTIONS(789), [anon_sym_POUND] = ACTIONS(3), }, [STATE(494)] = { - [sym_cell_path] = STATE(932), - [sym_path] = STATE(783), + [sym_cell_path] = STATE(910), + [sym_path] = STATE(791), [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(532), + [ts_builtin_sym_end] = ACTIONS(1452), + [anon_sym_in] = ACTIONS(1452), + [sym__newline] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_err_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_GT_PIPE] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1452), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1452), + [anon_sym_xor2] = ACTIONS(1452), + [anon_sym_or2] = ACTIONS(1452), + [anon_sym_not_DASHin2] = ACTIONS(1452), + [anon_sym_has2] = ACTIONS(1452), + [anon_sym_not_DASHhas2] = ACTIONS(1452), + [anon_sym_starts_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), + [anon_sym_ends_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), + [anon_sym_EQ_EQ2] = ACTIONS(1452), + [anon_sym_BANG_EQ2] = ACTIONS(1452), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1452), + [anon_sym_GT_EQ2] = ACTIONS(1452), + [anon_sym_EQ_TILDE2] = ACTIONS(1452), + [anon_sym_BANG_TILDE2] = ACTIONS(1452), + [anon_sym_like2] = ACTIONS(1452), + [anon_sym_not_DASHlike2] = ACTIONS(1452), + [anon_sym_STAR_STAR2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS2] = ACTIONS(1452), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1452), + [anon_sym_SLASH_SLASH2] = ACTIONS(1452), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1452), + [anon_sym_bit_DASHshr2] = ACTIONS(1452), + [anon_sym_bit_DASHand2] = ACTIONS(1452), + [anon_sym_bit_DASHxor2] = ACTIONS(1452), + [anon_sym_bit_DASHor2] = ACTIONS(1452), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [anon_sym_DOT2] = ACTIONS(1854), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1452), + [anon_sym_out_GT_GT] = ACTIONS(1452), + [anon_sym_e_GT_GT] = ACTIONS(1452), + [anon_sym_o_GT_GT] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), [anon_sym_POUND] = ACTIONS(3), }, [STATE(495)] = { + [sym_cell_path] = STATE(938), + [sym_path] = STATE(454), [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(429), + [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_DOT2] = ACTIONS(1860), + [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(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), + [ts_builtin_sym_end] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1746), + [sym__newline] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_PIPE] = ACTIONS(1746), + [anon_sym_err_GT_PIPE] = ACTIONS(1746), + [anon_sym_out_GT_PIPE] = ACTIONS(1746), + [anon_sym_e_GT_PIPE] = ACTIONS(1746), + [anon_sym_o_GT_PIPE] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1746), + [anon_sym_GT2] = ACTIONS(1748), + [anon_sym_DASH2] = ACTIONS(1746), + [anon_sym_STAR2] = ACTIONS(1748), + [anon_sym_and2] = ACTIONS(1746), + [anon_sym_xor2] = ACTIONS(1746), + [anon_sym_or2] = ACTIONS(1746), + [anon_sym_not_DASHin2] = ACTIONS(1746), + [anon_sym_has2] = ACTIONS(1746), + [anon_sym_not_DASHhas2] = ACTIONS(1746), + [anon_sym_starts_DASHwith2] = ACTIONS(1746), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1746), + [anon_sym_ends_DASHwith2] = ACTIONS(1746), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1746), + [anon_sym_EQ_EQ2] = ACTIONS(1746), + [anon_sym_BANG_EQ2] = ACTIONS(1746), + [anon_sym_LT2] = ACTIONS(1748), + [anon_sym_LT_EQ2] = ACTIONS(1746), + [anon_sym_GT_EQ2] = ACTIONS(1746), + [anon_sym_EQ_TILDE2] = ACTIONS(1746), + [anon_sym_BANG_TILDE2] = ACTIONS(1746), + [anon_sym_like2] = ACTIONS(1746), + [anon_sym_not_DASHlike2] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_STAR_STAR2] = ACTIONS(1746), + [anon_sym_PLUS_PLUS2] = ACTIONS(1746), + [anon_sym_SLASH2] = ACTIONS(1748), + [anon_sym_mod2] = ACTIONS(1746), + [anon_sym_SLASH_SLASH2] = ACTIONS(1746), + [anon_sym_PLUS2] = ACTIONS(1748), + [anon_sym_bit_DASHshl2] = ACTIONS(1746), + [anon_sym_bit_DASHshr2] = ACTIONS(1746), + [anon_sym_bit_DASHand2] = ACTIONS(1746), + [anon_sym_bit_DASHxor2] = ACTIONS(1746), + [anon_sym_bit_DASHor2] = ACTIONS(1746), + [anon_sym_DOT_DOT2] = ACTIONS(1748), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1746), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1746), + [aux_sym__immediate_decimal_token1] = ACTIONS(1896), + [aux_sym__immediate_decimal_token5] = ACTIONS(1898), + [anon_sym_err_GT] = ACTIONS(1748), + [anon_sym_out_GT] = ACTIONS(1748), + [anon_sym_e_GT] = ACTIONS(1748), + [anon_sym_o_GT] = ACTIONS(1748), + [anon_sym_err_PLUSout_GT] = ACTIONS(1748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1748), + [anon_sym_o_PLUSe_GT] = ACTIONS(1748), + [anon_sym_e_PLUSo_GT] = ACTIONS(1748), + [anon_sym_err_GT_GT] = ACTIONS(1746), + [anon_sym_out_GT_GT] = ACTIONS(1746), + [anon_sym_e_GT_GT] = ACTIONS(1746), + [anon_sym_o_GT_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), + [sym__unquoted_pattern] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(3), }, [STATE(497)] = { - [sym_cell_path] = STATE(930), - [sym_path] = STATE(441), [sym_comment] = STATE(497), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1882), - [sym__newline] = ACTIONS(1882), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_err_GT_PIPE] = ACTIONS(1882), - [anon_sym_out_GT_PIPE] = ACTIONS(1882), - [anon_sym_e_GT_PIPE] = ACTIONS(1882), - [anon_sym_o_GT_PIPE] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), - [anon_sym_RPAREN] = ACTIONS(1882), - [anon_sym_GT2] = ACTIONS(1884), - [anon_sym_DASH2] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_EQ_GT] = ACTIONS(1882), - [anon_sym_STAR2] = ACTIONS(1884), - [anon_sym_and2] = ACTIONS(1882), - [anon_sym_xor2] = ACTIONS(1882), - [anon_sym_or2] = ACTIONS(1882), - [anon_sym_not_DASHin2] = ACTIONS(1882), - [anon_sym_has2] = ACTIONS(1882), - [anon_sym_not_DASHhas2] = ACTIONS(1882), - [anon_sym_starts_DASHwith2] = ACTIONS(1882), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), - [anon_sym_ends_DASHwith2] = ACTIONS(1882), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), - [anon_sym_EQ_EQ2] = ACTIONS(1882), - [anon_sym_BANG_EQ2] = ACTIONS(1882), - [anon_sym_LT2] = ACTIONS(1884), - [anon_sym_LT_EQ2] = ACTIONS(1882), - [anon_sym_GT_EQ2] = ACTIONS(1882), - [anon_sym_EQ_TILDE2] = ACTIONS(1882), - [anon_sym_BANG_TILDE2] = ACTIONS(1882), - [anon_sym_like2] = ACTIONS(1882), - [anon_sym_not_DASHlike2] = ACTIONS(1882), - [anon_sym_STAR_STAR2] = ACTIONS(1882), - [anon_sym_PLUS_PLUS2] = ACTIONS(1882), - [anon_sym_SLASH2] = ACTIONS(1884), - [anon_sym_mod2] = ACTIONS(1882), - [anon_sym_SLASH_SLASH2] = ACTIONS(1882), - [anon_sym_PLUS2] = ACTIONS(1884), - [anon_sym_bit_DASHshl2] = ACTIONS(1882), - [anon_sym_bit_DASHshr2] = ACTIONS(1882), - [anon_sym_bit_DASHand2] = ACTIONS(1882), - [anon_sym_bit_DASHxor2] = ACTIONS(1882), - [anon_sym_bit_DASHor2] = ACTIONS(1882), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1884), - [anon_sym_out_GT] = ACTIONS(1884), - [anon_sym_e_GT] = ACTIONS(1884), - [anon_sym_o_GT] = ACTIONS(1884), - [anon_sym_err_PLUSout_GT] = ACTIONS(1884), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), - [anon_sym_o_PLUSe_GT] = ACTIONS(1884), - [anon_sym_e_PLUSo_GT] = ACTIONS(1884), - [anon_sym_err_GT_GT] = ACTIONS(1882), - [anon_sym_out_GT_GT] = ACTIONS(1882), - [anon_sym_e_GT_GT] = ACTIONS(1882), - [anon_sym_o_GT_GT] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), + [anon_sym_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_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_LPAREN2] = 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_DOT_DOT2] = ACTIONS(1902), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1900), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1900), + [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), + [sym__unquoted_pattern] = ACTIONS(1902), [anon_sym_POUND] = ACTIONS(3), }, [STATE(498)] = { + [sym_cell_path] = STATE(957), + [sym_path] = STATE(791), [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(532), + [ts_builtin_sym_end] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_has2] = ACTIONS(1687), + [anon_sym_not_DASHhas2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_like2] = ACTIONS(1687), + [anon_sym_not_DASHlike2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [anon_sym_DOT2] = ACTIONS(1854), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(3), }, [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(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(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(1502), + [anon_sym_in] = ACTIONS(1502), + [sym__newline] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_err_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_GT_PIPE] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), + [anon_sym_GT2] = ACTIONS(1500), + [anon_sym_DASH2] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_STAR2] = ACTIONS(1500), + [anon_sym_and2] = ACTIONS(1502), + [anon_sym_xor2] = ACTIONS(1502), + [anon_sym_or2] = ACTIONS(1502), + [anon_sym_not_DASHin2] = ACTIONS(1502), + [anon_sym_has2] = ACTIONS(1502), + [anon_sym_not_DASHhas2] = ACTIONS(1502), + [anon_sym_starts_DASHwith2] = ACTIONS(1502), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1502), + [anon_sym_ends_DASHwith2] = ACTIONS(1502), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1502), + [anon_sym_EQ_EQ2] = ACTIONS(1502), + [anon_sym_BANG_EQ2] = ACTIONS(1502), + [anon_sym_LT2] = ACTIONS(1500), + [anon_sym_LT_EQ2] = ACTIONS(1502), + [anon_sym_GT_EQ2] = ACTIONS(1502), + [anon_sym_EQ_TILDE2] = ACTIONS(1502), + [anon_sym_BANG_TILDE2] = ACTIONS(1502), + [anon_sym_like2] = ACTIONS(1502), + [anon_sym_not_DASHlike2] = ACTIONS(1502), + [anon_sym_STAR_STAR2] = ACTIONS(1502), + [anon_sym_PLUS_PLUS2] = ACTIONS(1502), + [anon_sym_SLASH2] = ACTIONS(1500), + [anon_sym_mod2] = ACTIONS(1502), + [anon_sym_SLASH_SLASH2] = ACTIONS(1502), + [anon_sym_PLUS2] = ACTIONS(1500), + [anon_sym_bit_DASHshl2] = ACTIONS(1502), + [anon_sym_bit_DASHshr2] = ACTIONS(1502), + [anon_sym_bit_DASHand2] = ACTIONS(1502), + [anon_sym_bit_DASHxor2] = ACTIONS(1502), + [anon_sym_bit_DASHor2] = ACTIONS(1502), + [anon_sym_DOT_DOT2] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), + [anon_sym_QMARK2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DOT2] = ACTIONS(1500), + [anon_sym_err_GT] = ACTIONS(1500), + [anon_sym_out_GT] = ACTIONS(1500), + [anon_sym_e_GT] = ACTIONS(1500), + [anon_sym_o_GT] = ACTIONS(1500), + [anon_sym_err_PLUSout_GT] = ACTIONS(1500), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), + [anon_sym_o_PLUSe_GT] = ACTIONS(1500), + [anon_sym_e_PLUSo_GT] = ACTIONS(1500), + [anon_sym_err_GT_GT] = ACTIONS(1502), + [anon_sym_out_GT_GT] = ACTIONS(1502), + [anon_sym_e_GT_GT] = ACTIONS(1502), + [anon_sym_o_GT_GT] = ACTIONS(1502), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [ts_builtin_sym_end] = ACTIONS(1498), + [anon_sym_in] = ACTIONS(1498), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1498), + [anon_sym_LBRACE] = 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_QMARK2] = ACTIONS(1498), + [anon_sym_BANG] = 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(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), - [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), + [ts_builtin_sym_end] = ACTIONS(1506), + [anon_sym_in] = ACTIONS(1506), + [sym__newline] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1506), + [anon_sym_err_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_GT_PIPE] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), + [anon_sym_GT2] = ACTIONS(1504), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_STAR2] = ACTIONS(1504), + [anon_sym_and2] = ACTIONS(1506), + [anon_sym_xor2] = ACTIONS(1506), + [anon_sym_or2] = ACTIONS(1506), + [anon_sym_not_DASHin2] = ACTIONS(1506), + [anon_sym_has2] = ACTIONS(1506), + [anon_sym_not_DASHhas2] = ACTIONS(1506), + [anon_sym_starts_DASHwith2] = ACTIONS(1506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1506), + [anon_sym_ends_DASHwith2] = ACTIONS(1506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1506), + [anon_sym_EQ_EQ2] = ACTIONS(1506), + [anon_sym_BANG_EQ2] = ACTIONS(1506), + [anon_sym_LT2] = ACTIONS(1504), + [anon_sym_LT_EQ2] = ACTIONS(1506), + [anon_sym_GT_EQ2] = ACTIONS(1506), + [anon_sym_EQ_TILDE2] = ACTIONS(1506), + [anon_sym_BANG_TILDE2] = ACTIONS(1506), + [anon_sym_like2] = ACTIONS(1506), + [anon_sym_not_DASHlike2] = ACTIONS(1506), + [anon_sym_STAR_STAR2] = ACTIONS(1506), + [anon_sym_PLUS_PLUS2] = ACTIONS(1506), + [anon_sym_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1506), + [anon_sym_SLASH_SLASH2] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1504), + [anon_sym_bit_DASHshl2] = ACTIONS(1506), + [anon_sym_bit_DASHshr2] = ACTIONS(1506), + [anon_sym_bit_DASHand2] = ACTIONS(1506), + [anon_sym_bit_DASHxor2] = ACTIONS(1506), + [anon_sym_bit_DASHor2] = ACTIONS(1506), + [anon_sym_DOT_DOT2] = ACTIONS(1504), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), + [anon_sym_QMARK2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DOT2] = ACTIONS(1504), + [anon_sym_err_GT] = ACTIONS(1504), + [anon_sym_out_GT] = ACTIONS(1504), + [anon_sym_e_GT] = ACTIONS(1504), + [anon_sym_o_GT] = ACTIONS(1504), + [anon_sym_err_PLUSout_GT] = ACTIONS(1504), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), + [anon_sym_o_PLUSe_GT] = ACTIONS(1504), + [anon_sym_e_PLUSo_GT] = ACTIONS(1504), + [anon_sym_err_GT_GT] = ACTIONS(1506), + [anon_sym_out_GT_GT] = ACTIONS(1506), + [anon_sym_e_GT_GT] = ACTIONS(1506), + [anon_sym_o_GT_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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), + [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(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), + [aux_sym__repeat_newline] = STATE(512), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1135), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(772), + [sym__unquoted_with_expr] = STATE(1020), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(504), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1136), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(764), + [sym__unquoted_with_expr] = STATE(1062), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(505), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1064), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(768), + [sym__unquoted_with_expr] = STATE(1066), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(506), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(507), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_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_else] = ACTIONS(1926), + [anon_sym_catch] = ACTIONS(1926), + [anon_sym_in] = ACTIONS(1926), + [sym__newline] = ACTIONS(1928), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_err_GT_PIPE] = ACTIONS(1926), + [anon_sym_out_GT_PIPE] = ACTIONS(1926), + [anon_sym_e_GT_PIPE] = ACTIONS(1926), + [anon_sym_o_GT_PIPE] = ACTIONS(1926), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1926), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1926), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1926), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1926), + [anon_sym_COLON] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_RPAREN] = ACTIONS(1926), + [anon_sym_GT2] = ACTIONS(1931), + [anon_sym_DASH2] = ACTIONS(1926), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_STAR2] = ACTIONS(1931), + [anon_sym_and2] = ACTIONS(1926), + [anon_sym_xor2] = ACTIONS(1926), + [anon_sym_or2] = ACTIONS(1926), + [anon_sym_not_DASHin2] = ACTIONS(1926), + [anon_sym_has2] = ACTIONS(1926), + [anon_sym_not_DASHhas2] = ACTIONS(1926), + [anon_sym_starts_DASHwith2] = ACTIONS(1926), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1926), + [anon_sym_ends_DASHwith2] = ACTIONS(1926), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1926), + [anon_sym_EQ_EQ2] = ACTIONS(1926), + [anon_sym_BANG_EQ2] = ACTIONS(1926), + [anon_sym_LT2] = ACTIONS(1931), + [anon_sym_LT_EQ2] = ACTIONS(1926), + [anon_sym_GT_EQ2] = ACTIONS(1926), + [anon_sym_EQ_TILDE2] = ACTIONS(1926), + [anon_sym_BANG_TILDE2] = ACTIONS(1926), + [anon_sym_like2] = ACTIONS(1926), + [anon_sym_not_DASHlike2] = ACTIONS(1926), + [anon_sym_STAR_STAR2] = ACTIONS(1926), + [anon_sym_PLUS_PLUS2] = ACTIONS(1926), + [anon_sym_SLASH2] = ACTIONS(1931), + [anon_sym_mod2] = ACTIONS(1926), + [anon_sym_SLASH_SLASH2] = ACTIONS(1926), + [anon_sym_PLUS2] = ACTIONS(1931), + [anon_sym_bit_DASHshl2] = ACTIONS(1926), + [anon_sym_bit_DASHshr2] = ACTIONS(1926), + [anon_sym_bit_DASHand2] = ACTIONS(1926), + [anon_sym_bit_DASHxor2] = ACTIONS(1926), + [anon_sym_bit_DASHor2] = ACTIONS(1926), + [anon_sym_err_GT] = ACTIONS(1931), + [anon_sym_out_GT] = ACTIONS(1931), + [anon_sym_e_GT] = ACTIONS(1931), + [anon_sym_o_GT] = ACTIONS(1931), + [anon_sym_err_PLUSout_GT] = ACTIONS(1931), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1931), + [anon_sym_o_PLUSe_GT] = ACTIONS(1931), + [anon_sym_e_PLUSo_GT] = ACTIONS(1931), + [anon_sym_err_GT_GT] = ACTIONS(1926), + [anon_sym_out_GT_GT] = ACTIONS(1926), + [anon_sym_e_GT_GT] = ACTIONS(1926), + [anon_sym_o_GT_GT] = ACTIONS(1926), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1926), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1926), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1926), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1926), [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_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4550), + [sym__spread_list] = STATE(4821), + [sym_val_entry] = STATE(4619), + [sym_val_record] = STATE(4550), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [sym_comment] = STATE(508), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_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), + [aux_sym_list_body_repeat1] = STATE(509), + [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(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_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4550), + [sym__spread_list] = STATE(4821), + [sym_val_entry] = STATE(4781), + [sym_val_record] = STATE(4550), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), [sym_comment] = STATE(509), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_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), + [aux_sym_list_body_repeat1] = STATE(509), + [anon_sym_true] = ACTIONS(1933), + [anon_sym_false] = ACTIONS(1933), + [anon_sym_null] = ACTIONS(1936), + [aux_sym_cmd_identifier_token3] = ACTIONS(1939), + [aux_sym_cmd_identifier_token4] = ACTIONS(1939), + [aux_sym_cmd_identifier_token5] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1954), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1960), + [anon_sym_DOT_DOT_LT] = ACTIONS(1960), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1966), + [aux_sym__val_number_decimal_token2] = ACTIONS(1969), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), + [aux_sym__val_number_token1] = ACTIONS(1975), + [aux_sym__val_number_token2] = ACTIONS(1975), + [aux_sym__val_number_token3] = ACTIONS(1975), + [anon_sym_0b] = ACTIONS(1978), + [anon_sym_0o] = ACTIONS(1981), + [anon_sym_0x] = ACTIONS(1981), + [sym_val_date] = ACTIONS(1984), + [anon_sym_DQUOTE] = ACTIONS(1987), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_BQUOTE] = ACTIONS(1993), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1996), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2002), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2005), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2008), }, [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), - [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_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_DOT_DOT2] = ACTIONS(2017), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2019), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2019), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [sym__unquoted_pattern] = ACTIONS(1615), [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), - [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_in] = ACTIONS(2021), + [sym__newline] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_err_GT_PIPE] = ACTIONS(2021), + [anon_sym_out_GT_PIPE] = ACTIONS(2021), + [anon_sym_e_GT_PIPE] = ACTIONS(2021), + [anon_sym_o_GT_PIPE] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2021), + [anon_sym_GT2] = ACTIONS(2023), + [anon_sym_DASH2] = ACTIONS(2021), + [anon_sym_RBRACE] = ACTIONS(2021), + [anon_sym_STAR2] = ACTIONS(2023), + [anon_sym_and2] = ACTIONS(2021), + [anon_sym_xor2] = ACTIONS(2021), + [anon_sym_or2] = ACTIONS(2021), + [anon_sym_not_DASHin2] = ACTIONS(2021), + [anon_sym_has2] = ACTIONS(2021), + [anon_sym_not_DASHhas2] = ACTIONS(2021), + [anon_sym_starts_DASHwith2] = ACTIONS(2021), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2021), + [anon_sym_ends_DASHwith2] = ACTIONS(2021), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2021), + [anon_sym_EQ_EQ2] = ACTIONS(2021), + [anon_sym_BANG_EQ2] = ACTIONS(2021), + [anon_sym_LT2] = ACTIONS(2023), + [anon_sym_LT_EQ2] = ACTIONS(2021), + [anon_sym_GT_EQ2] = ACTIONS(2021), + [anon_sym_EQ_TILDE2] = ACTIONS(2021), + [anon_sym_BANG_TILDE2] = ACTIONS(2021), + [anon_sym_like2] = ACTIONS(2021), + [anon_sym_not_DASHlike2] = ACTIONS(2021), + [anon_sym_LPAREN2] = ACTIONS(2025), + [anon_sym_STAR_STAR2] = ACTIONS(2021), + [anon_sym_PLUS_PLUS2] = ACTIONS(2021), + [anon_sym_SLASH2] = ACTIONS(2023), + [anon_sym_mod2] = ACTIONS(2021), + [anon_sym_SLASH_SLASH2] = ACTIONS(2021), + [anon_sym_PLUS2] = ACTIONS(2023), + [anon_sym_bit_DASHshl2] = ACTIONS(2021), + [anon_sym_bit_DASHshr2] = ACTIONS(2021), + [anon_sym_bit_DASHand2] = ACTIONS(2021), + [anon_sym_bit_DASHxor2] = ACTIONS(2021), + [anon_sym_bit_DASHor2] = ACTIONS(2021), + [anon_sym_DOT_DOT2] = ACTIONS(2027), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2029), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2029), + [anon_sym_err_GT] = ACTIONS(2023), + [anon_sym_out_GT] = ACTIONS(2023), + [anon_sym_e_GT] = ACTIONS(2023), + [anon_sym_o_GT] = ACTIONS(2023), + [anon_sym_err_PLUSout_GT] = ACTIONS(2023), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2023), + [anon_sym_o_PLUSe_GT] = ACTIONS(2023), + [anon_sym_e_PLUSo_GT] = ACTIONS(2023), + [anon_sym_err_GT_GT] = ACTIONS(2021), + [anon_sym_out_GT_GT] = ACTIONS(2021), + [anon_sym_e_GT_GT] = ACTIONS(2021), + [anon_sym_o_GT_GT] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2021), + [sym__unquoted_pattern] = ACTIONS(2031), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(512)] = { + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1145), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(769), + [sym__unquoted_with_expr] = STATE(1069), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(512), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(513)] = { + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1149), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(770), + [sym__unquoted_with_expr] = STATE(1071), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(513), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(514)] = { + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1153), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(796), + [sym__unquoted_with_expr] = STATE(1074), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(514), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(515)] = { + [sym_expr_parenthesized] = STATE(4067), + [sym__spread_parenthesized] = STATE(4821), + [sym_val_range] = STATE(4824), + [sym__val_range] = STATE(4635), + [sym__value] = STATE(4824), + [sym_val_nothing] = STATE(4550), + [sym_val_bool] = STATE(4304), + [sym__spread_variable] = STATE(4834), + [sym_val_variable] = STATE(3884), + [sym_val_cellpath] = STATE(4550), + [sym_val_number] = STATE(4550), + [sym__val_number_decimal] = STATE(3476), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4550), + [sym_val_filesize] = STATE(4550), + [sym_val_binary] = STATE(4550), + [sym_val_string] = STATE(4550), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_interpolated] = STATE(4550), + [sym__inter_single_quotes] = STATE(4537), + [sym__inter_double_quotes] = STATE(4539), + [sym_val_list] = STATE(4550), + [sym__spread_list] = STATE(4821), + [sym_val_entry] = STATE(4541), + [sym_val_record] = STATE(4550), + [sym_val_table] = STATE(4550), + [sym_val_closure] = STATE(4550), + [sym__unquoted_in_list] = STATE(4220), + [sym__unquoted_in_list_with_expr] = STATE(4824), + [sym__unquoted_anonymous_prefix] = STATE(4635), + [sym_comment] = STATE(515), + [aux_sym_list_body_repeat1] = STATE(509), + [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(516)] = { + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1160), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(797), + [sym__unquoted_with_expr] = STATE(1076), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(516), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(517)] = { + [aux_sym__repeat_newline] = STATE(643), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1262), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(852), + [sym__unquoted_with_expr] = STATE(1101), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(517), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(518)] = { + [aux_sym__repeat_newline] = STATE(644), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1205), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(853), + [sym__unquoted_with_expr] = STATE(1102), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(518), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [aux_sym__repeat_newline] = STATE(645), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1207), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(855), + [sym__unquoted_with_expr] = STATE(1103), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(519), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [aux_sym__repeat_newline] = STATE(646), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1211), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(856), + [sym__unquoted_with_expr] = STATE(1104), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [aux_sym__repeat_newline] = STATE(648), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1213), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(858), + [sym__unquoted_with_expr] = STATE(1105), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [aux_sym__repeat_newline] = STATE(649), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1215), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(860), + [sym__unquoted_with_expr] = STATE(1106), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [aux_sym__repeat_newline] = STATE(650), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1218), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(862), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [aux_sym__repeat_newline] = STATE(651), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1221), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(866), + [sym__unquoted_with_expr] = STATE(1109), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [aux_sym__repeat_newline] = STATE(652), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1110), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(868), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [aux_sym__repeat_newline] = STATE(653), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1225), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(870), + [sym__unquoted_with_expr] = STATE(1115), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [aux_sym__repeat_newline] = STATE(654), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1230), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(872), + [sym__unquoted_with_expr] = STATE(1116), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [aux_sym__repeat_newline] = STATE(655), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1233), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(875), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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_cmd_identifier] = STATE(4141), + [sym_expr_parenthesized] = STATE(5138), + [sym__spread_parenthesized] = STATE(4677), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(4334), + [sym_val_number] = STATE(5138), + [sym__val_number_decimal] = STATE(1947), + [sym__val_number] = STATE(700), + [sym_val_string] = STATE(5138), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_interpolated] = STATE(5138), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym__spread_record] = STATE(4677), + [sym_record_entry] = STATE(4415), + [sym__record_key] = STATE(4944), [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), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_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(1494), + [aux_sym__match_pattern_record_body_repeat1] = STATE(889), + [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(1778), + [anon_sym_false] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1780), + [aux_sym_cmd_identifier_token4] = ACTIONS(1780), + [aux_sym_cmd_identifier_token5] = ACTIONS(1780), + [sym__newline] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1786), + [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(1790), + [aux_sym__val_number_decimal_token2] = ACTIONS(1792), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), [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(1802), }, [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), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_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(1754), + [anon_sym_in] = ACTIONS(1754), + [sym__newline] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_err_GT_PIPE] = ACTIONS(1754), + [anon_sym_out_GT_PIPE] = ACTIONS(1754), + [anon_sym_e_GT_PIPE] = ACTIONS(1754), + [anon_sym_o_GT_PIPE] = ACTIONS(1754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), + [anon_sym_GT2] = ACTIONS(1756), + [anon_sym_DASH2] = ACTIONS(1754), + [anon_sym_STAR2] = ACTIONS(1756), + [anon_sym_and2] = ACTIONS(1754), + [anon_sym_xor2] = ACTIONS(1754), + [anon_sym_or2] = ACTIONS(1754), + [anon_sym_not_DASHin2] = ACTIONS(1754), + [anon_sym_has2] = ACTIONS(1754), + [anon_sym_not_DASHhas2] = ACTIONS(1754), + [anon_sym_starts_DASHwith2] = ACTIONS(1754), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1754), + [anon_sym_ends_DASHwith2] = ACTIONS(1754), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1754), + [anon_sym_EQ_EQ2] = ACTIONS(1754), + [anon_sym_BANG_EQ2] = ACTIONS(1754), + [anon_sym_LT2] = ACTIONS(1756), + [anon_sym_LT_EQ2] = ACTIONS(1754), + [anon_sym_GT_EQ2] = ACTIONS(1754), + [anon_sym_EQ_TILDE2] = ACTIONS(1754), + [anon_sym_BANG_TILDE2] = ACTIONS(1754), + [anon_sym_like2] = ACTIONS(1754), + [anon_sym_not_DASHlike2] = ACTIONS(1754), + [anon_sym_LPAREN2] = ACTIONS(1754), + [anon_sym_STAR_STAR2] = ACTIONS(1754), + [anon_sym_PLUS_PLUS2] = ACTIONS(1754), + [anon_sym_SLASH2] = ACTIONS(1756), + [anon_sym_mod2] = ACTIONS(1754), + [anon_sym_SLASH_SLASH2] = ACTIONS(1754), + [anon_sym_PLUS2] = ACTIONS(1756), + [anon_sym_bit_DASHshl2] = ACTIONS(1754), + [anon_sym_bit_DASHshr2] = ACTIONS(1754), + [anon_sym_bit_DASHand2] = ACTIONS(1754), + [anon_sym_bit_DASHxor2] = ACTIONS(1754), + [anon_sym_bit_DASHor2] = ACTIONS(1754), + [anon_sym_DOT_DOT2] = ACTIONS(1756), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1754), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1754), + [aux_sym__immediate_decimal_token5] = ACTIONS(1886), + [anon_sym_err_GT] = ACTIONS(1756), + [anon_sym_out_GT] = ACTIONS(1756), + [anon_sym_e_GT] = ACTIONS(1756), + [anon_sym_o_GT] = ACTIONS(1756), + [anon_sym_err_PLUSout_GT] = ACTIONS(1756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), + [anon_sym_o_PLUSe_GT] = ACTIONS(1756), + [anon_sym_e_PLUSo_GT] = ACTIONS(1756), + [anon_sym_err_GT_GT] = ACTIONS(1754), + [anon_sym_out_GT_GT] = ACTIONS(1754), + [anon_sym_e_GT_GT] = ACTIONS(1754), + [anon_sym_o_GT_GT] = ACTIONS(1754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), + [sym__unquoted_pattern] = ACTIONS(1756), [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), + [aux_sym__repeat_newline] = STATE(656), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1235), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(876), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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_path] = STATE(791), [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(533), + [ts_builtin_sym_end] = ACTIONS(1517), + [anon_sym_in] = ACTIONS(1517), + [sym__newline] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1517), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_err_GT_PIPE] = ACTIONS(1517), + [anon_sym_out_GT_PIPE] = ACTIONS(1517), + [anon_sym_e_GT_PIPE] = ACTIONS(1517), + [anon_sym_o_GT_PIPE] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1517), + [anon_sym_GT2] = ACTIONS(1515), + [anon_sym_DASH2] = ACTIONS(1517), + [anon_sym_STAR2] = ACTIONS(1515), + [anon_sym_and2] = ACTIONS(1517), + [anon_sym_xor2] = ACTIONS(1517), + [anon_sym_or2] = ACTIONS(1517), + [anon_sym_not_DASHin2] = ACTIONS(1517), + [anon_sym_has2] = ACTIONS(1517), + [anon_sym_not_DASHhas2] = ACTIONS(1517), + [anon_sym_starts_DASHwith2] = ACTIONS(1517), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1517), + [anon_sym_ends_DASHwith2] = ACTIONS(1517), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1517), + [anon_sym_EQ_EQ2] = ACTIONS(1517), + [anon_sym_BANG_EQ2] = ACTIONS(1517), + [anon_sym_LT2] = ACTIONS(1515), + [anon_sym_LT_EQ2] = ACTIONS(1517), + [anon_sym_GT_EQ2] = ACTIONS(1517), + [anon_sym_EQ_TILDE2] = ACTIONS(1517), + [anon_sym_BANG_TILDE2] = ACTIONS(1517), + [anon_sym_like2] = ACTIONS(1517), + [anon_sym_not_DASHlike2] = ACTIONS(1517), + [anon_sym_STAR_STAR2] = ACTIONS(1517), + [anon_sym_PLUS_PLUS2] = ACTIONS(1517), + [anon_sym_SLASH2] = ACTIONS(1515), + [anon_sym_mod2] = ACTIONS(1517), + [anon_sym_SLASH_SLASH2] = ACTIONS(1517), + [anon_sym_PLUS2] = ACTIONS(1515), + [anon_sym_bit_DASHshl2] = ACTIONS(1517), + [anon_sym_bit_DASHshr2] = ACTIONS(1517), + [anon_sym_bit_DASHand2] = ACTIONS(1517), + [anon_sym_bit_DASHxor2] = ACTIONS(1517), + [anon_sym_bit_DASHor2] = ACTIONS(1517), + [anon_sym_DOT_DOT2] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1517), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1517), + [anon_sym_DOT2] = ACTIONS(1854), + [anon_sym_err_GT] = ACTIONS(1515), + [anon_sym_out_GT] = ACTIONS(1515), + [anon_sym_e_GT] = ACTIONS(1515), + [anon_sym_o_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT] = ACTIONS(1515), + [anon_sym_err_GT_GT] = ACTIONS(1517), + [anon_sym_out_GT_GT] = ACTIONS(1517), + [anon_sym_e_GT_GT] = ACTIONS(1517), + [anon_sym_o_GT_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(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_path] = STATE(791), [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(533), + [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(2033), + [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(534)] = { + [aux_sym__repeat_newline] = STATE(547), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2003), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(852), + [sym__unquoted_with_expr] = STATE(1101), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(534), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(534)] = { - [aux_sym__repeat_newline] = STATE(621), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1986), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(534), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(535)] = { + [aux_sym__repeat_newline] = STATE(548), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2004), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(853), + [sym__unquoted_with_expr] = STATE(1102), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(535), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(535)] = { - [aux_sym__repeat_newline] = STATE(600), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1241), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1116), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(535), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(536)] = { + [aux_sym__repeat_newline] = STATE(549), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2006), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(855), + [sym__unquoted_with_expr] = STATE(1103), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(536), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(536)] = { - [aux_sym__repeat_newline] = STATE(622), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1987), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(536), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(537)] = { + [aux_sym__repeat_newline] = STATE(550), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2008), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(856), + [sym__unquoted_with_expr] = STATE(1104), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(537), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(537)] = { - [aux_sym__repeat_newline] = STATE(623), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1988), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1089), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(537), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(538)] = { + [aux_sym__repeat_newline] = STATE(551), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2009), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(858), + [sym__unquoted_with_expr] = STATE(1105), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(538), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(538)] = { - [aux_sym__repeat_newline] = STATE(624), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1989), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(538), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(539)] = { + [aux_sym__repeat_newline] = STATE(552), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2010), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(860), + [sym__unquoted_with_expr] = STATE(1106), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(539), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(539)] = { - [aux_sym__repeat_newline] = STATE(626), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1104), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(777), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(539), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(540)] = { + [aux_sym__repeat_newline] = STATE(553), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2011), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(862), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(540), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [aux_sym__repeat_newline] = STATE(554), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2012), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(866), + [sym__unquoted_with_expr] = STATE(1109), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [aux_sym__repeat_newline] = STATE(555), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1110), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(868), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [aux_sym__repeat_newline] = STATE(556), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2013), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(870), + [sym__unquoted_with_expr] = STATE(1115), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(557), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2014), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(872), + [sym__unquoted_with_expr] = STATE(1116), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(558), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2015), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(875), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(559), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2016), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(876), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2018), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(811), + [sym__unquoted_with_expr] = STATE(1124), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2020), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(812), + [sym__unquoted_with_expr] = STATE(1127), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1967), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(813), + [sym__unquoted_with_expr] = STATE(966), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2023), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(814), + [sym__unquoted_with_expr] = STATE(968), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2025), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(815), + [sym__unquoted_with_expr] = STATE(971), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2027), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(816), + [sym__unquoted_with_expr] = STATE(977), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2029), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(981), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2031), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(819), + [sym__unquoted_with_expr] = STATE(985), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(988), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(820), + [sym__unquoted_with_expr] = STATE(990), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2033), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(821), + [sym__unquoted_with_expr] = STATE(995), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2035), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(822), + [sym__unquoted_with_expr] = STATE(997), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2037), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(823), + [sym__unquoted_with_expr] = STATE(999), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2039), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(824), + [sym__unquoted_with_expr] = STATE(1001), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(573), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2041), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(826), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(574), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2042), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(829), + [sym__unquoted_with_expr] = STATE(1004), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(575), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2043), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(830), + [sym__unquoted_with_expr] = STATE(1006), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(576), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2044), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(832), + [sym__unquoted_with_expr] = STATE(1008), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(577), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2045), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(883), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(578), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2046), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(886), + [sym__unquoted_with_expr] = STATE(1012), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(579), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2110), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(892), + [sym__unquoted_with_expr] = STATE(1013), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(580), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2047), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(786), + [sym__unquoted_with_expr] = STATE(1016), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(581), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1017), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(773), + [sym__unquoted_with_expr] = STATE(1019), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(569)] = { - [aux_sym__repeat_newline] = STATE(585), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1601), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(582), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2048), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(772), + [sym__unquoted_with_expr] = STATE(1020), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(570)] = { - [aux_sym__repeat_newline] = STATE(586), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1602), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1014), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(583), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2049), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(774), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(571)] = { - [aux_sym__repeat_newline] = STATE(587), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1603), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(584), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2050), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(1026), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(585), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2051), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(834), + [sym__unquoted_with_expr] = STATE(1028), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2064), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(799), + [sym__unquoted_with_expr] = STATE(1047), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2066), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(828), + [sym__unquoted_with_expr] = STATE(1049), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2068), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(861), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2070), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(730), + [sym__unquoted_with_expr] = STATE(1054), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2072), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(731), + [sym__unquoted_with_expr] = STATE(1056), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2074), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(762), + [sym__unquoted_with_expr] = STATE(1059), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2076), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(763), + [sym__unquoted_with_expr] = STATE(1060), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2078), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(764), + [sym__unquoted_with_expr] = STATE(1062), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1064), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(768), + [sym__unquoted_with_expr] = STATE(1066), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2080), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(769), + [sym__unquoted_with_expr] = STATE(1069), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(583)] = { - [aux_sym__repeat_newline] = STATE(643), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1993), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1116), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2082), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(770), + [sym__unquoted_with_expr] = STATE(1071), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(583), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(584)] = { - [aux_sym__repeat_newline] = STATE(646), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1994), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1120), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2084), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(796), + [sym__unquoted_with_expr] = STATE(1074), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(584), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(585)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1626), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(851), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(2086), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(797), + [sym__unquoted_with_expr] = STATE(1076), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), [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_LBRACK] = ACTIONS(157), - [anon_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), + [ts_builtin_sym_end] = ACTIONS(1812), + [anon_sym_in] = ACTIONS(1812), + [sym__newline] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_err_GT_PIPE] = ACTIONS(1812), + [anon_sym_out_GT_PIPE] = ACTIONS(1812), + [anon_sym_e_GT_PIPE] = ACTIONS(1812), + [anon_sym_o_GT_PIPE] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1812), + [anon_sym_GT2] = ACTIONS(1814), + [anon_sym_DASH2] = ACTIONS(1812), + [anon_sym_STAR2] = ACTIONS(1814), + [anon_sym_and2] = ACTIONS(1812), + [anon_sym_xor2] = ACTIONS(1812), + [anon_sym_or2] = ACTIONS(1812), + [anon_sym_not_DASHin2] = ACTIONS(1812), + [anon_sym_has2] = ACTIONS(1812), + [anon_sym_not_DASHhas2] = ACTIONS(1812), + [anon_sym_starts_DASHwith2] = ACTIONS(1812), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1812), + [anon_sym_ends_DASHwith2] = ACTIONS(1812), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1812), + [anon_sym_EQ_EQ2] = ACTIONS(1812), + [anon_sym_BANG_EQ2] = ACTIONS(1812), + [anon_sym_LT2] = ACTIONS(1814), + [anon_sym_LT_EQ2] = ACTIONS(1812), + [anon_sym_GT_EQ2] = ACTIONS(1812), + [anon_sym_EQ_TILDE2] = ACTIONS(1812), + [anon_sym_BANG_TILDE2] = ACTIONS(1812), + [anon_sym_like2] = ACTIONS(1812), + [anon_sym_not_DASHlike2] = ACTIONS(1812), + [anon_sym_LPAREN2] = ACTIONS(1812), + [anon_sym_STAR_STAR2] = ACTIONS(1812), + [anon_sym_PLUS_PLUS2] = ACTIONS(1812), + [anon_sym_SLASH2] = ACTIONS(1814), + [anon_sym_mod2] = ACTIONS(1812), + [anon_sym_SLASH_SLASH2] = ACTIONS(1812), + [anon_sym_PLUS2] = ACTIONS(1814), + [anon_sym_bit_DASHshl2] = ACTIONS(1812), + [anon_sym_bit_DASHshr2] = ACTIONS(1812), + [anon_sym_bit_DASHand2] = ACTIONS(1812), + [anon_sym_bit_DASHxor2] = ACTIONS(1812), + [anon_sym_bit_DASHor2] = ACTIONS(1812), + [anon_sym_DOT_DOT2] = ACTIONS(1814), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1812), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1812), + [aux_sym__immediate_decimal_token5] = ACTIONS(2054), + [anon_sym_err_GT] = ACTIONS(1814), + [anon_sym_out_GT] = ACTIONS(1814), + [anon_sym_e_GT] = ACTIONS(1814), + [anon_sym_o_GT] = ACTIONS(1814), + [anon_sym_err_PLUSout_GT] = ACTIONS(1814), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1814), + [anon_sym_o_PLUSe_GT] = ACTIONS(1814), + [anon_sym_e_PLUSo_GT] = ACTIONS(1814), + [anon_sym_err_GT_GT] = ACTIONS(1812), + [anon_sym_out_GT_GT] = ACTIONS(1812), + [anon_sym_e_GT_GT] = ACTIONS(1812), + [anon_sym_o_GT_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1812), + [sym__unquoted_pattern] = ACTIONS(1814), [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), + [aux_sym__repeat_newline] = STATE(600), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1674), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym__unquoted_with_expr] = STATE(1102), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(601), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1511), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(855), + [sym__unquoted_with_expr] = STATE(1103), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(602), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1513), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(856), + [sym__unquoted_with_expr] = STATE(1104), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(603), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1514), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(858), + [sym__unquoted_with_expr] = STATE(1105), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(604), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1515), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(860), + [sym__unquoted_with_expr] = STATE(1106), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(605), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1516), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(862), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(606), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1517), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(866), + [sym__unquoted_with_expr] = STATE(1109), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(607), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1110), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(868), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(608), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1518), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(870), + [sym__unquoted_with_expr] = STATE(1115), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(609), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1519), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(872), + [sym__unquoted_with_expr] = STATE(1116), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(610), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1520), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(875), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(611), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1522), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(876), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(599)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1188), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(804), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1526), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(811), + [sym__unquoted_with_expr] = STATE(1124), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(599), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(600)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1201), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1528), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(812), + [sym__unquoted_with_expr] = STATE(1127), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(601)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1217), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1530), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(813), + [sym__unquoted_with_expr] = STATE(966), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(601), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1532), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(814), + [sym__unquoted_with_expr] = STATE(968), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1534), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(815), + [sym__unquoted_with_expr] = STATE(971), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1536), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(816), + [sym__unquoted_with_expr] = STATE(977), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1538), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(981), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(606)] = { - [aux_sym__repeat_newline] = STATE(635), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1161), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1540), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(819), + [sym__unquoted_with_expr] = STATE(985), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(606), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(988), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(820), + [sym__unquoted_with_expr] = STATE(990), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(608)] = { - [aux_sym__repeat_newline] = STATE(638), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1171), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1542), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(821), + [sym__unquoted_with_expr] = STATE(995), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1544), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(822), + [sym__unquoted_with_expr] = STATE(997), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1546), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(823), + [sym__unquoted_with_expr] = STATE(999), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1548), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(824), + [sym__unquoted_with_expr] = STATE(1001), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(625), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1550), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(826), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(626), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1551), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(829), + [sym__unquoted_with_expr] = STATE(1004), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(627), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1552), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(830), + [sym__unquoted_with_expr] = STATE(1006), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(615)] = { + [aux_sym__repeat_newline] = STATE(628), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1553), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(832), + [sym__unquoted_with_expr] = STATE(1008), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(629), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1554), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(883), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(630), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1555), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(886), + [sym__unquoted_with_expr] = STATE(1012), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(631), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1556), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(892), + [sym__unquoted_with_expr] = STATE(1013), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [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(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [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(1924), [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(632), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1557), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(786), + [sym__unquoted_with_expr] = STATE(1016), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(633), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1017), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(773), + [sym__unquoted_with_expr] = STATE(1019), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(634), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1558), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(772), + [sym__unquoted_with_expr] = STATE(1020), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(622)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2006), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(799), - [sym__unquoted_with_expr] = STATE(993), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(635), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1559), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(774), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(622), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(623)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2008), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(800), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(636), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1560), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(1026), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(623), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(624)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2010), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(637), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1562), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(834), + [sym__unquoted_with_expr] = STATE(1028), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(624), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(625)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4298), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4586), - [sym__record_key] = STATE(4971), + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1578), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(799), + [sym__unquoted_with_expr] = STATE(1047), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [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(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [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(1924), [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), - [sym__unquoted_with_expr] = STATE(1000), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1580), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(828), + [sym__unquoted_with_expr] = STATE(1049), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(626), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1582), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(861), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(627), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1584), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(730), + [sym__unquoted_with_expr] = STATE(1054), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(628), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1586), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(731), + [sym__unquoted_with_expr] = STATE(1056), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [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), + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1588), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(762), + [sym__unquoted_with_expr] = STATE(1059), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1590), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(763), + [sym__unquoted_with_expr] = STATE(1060), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1592), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(764), + [sym__unquoted_with_expr] = STATE(1062), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1064), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(768), + [sym__unquoted_with_expr] = STATE(1066), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1594), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(769), + [sym__unquoted_with_expr] = STATE(1069), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1596), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(770), + [sym__unquoted_with_expr] = STATE(1071), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1598), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(796), + [sym__unquoted_with_expr] = STATE(1074), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1600), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(797), + [sym__unquoted_with_expr] = STATE(1076), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1212), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(799), + [sym__unquoted_with_expr] = STATE(1047), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1220), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(828), + [sym__unquoted_with_expr] = STATE(1049), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1226), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(861), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1234), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(730), + [sym__unquoted_with_expr] = STATE(1054), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(642)] = { + [sym_cmd_identifier] = STATE(4141), + [sym_expr_parenthesized] = STATE(5138), + [sym__spread_parenthesized] = STATE(4677), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(5138), + [sym_val_number] = STATE(5138), + [sym__val_number_decimal] = STATE(1947), + [sym__val_number] = STATE(700), + [sym_val_string] = STATE(5138), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_interpolated] = STATE(5138), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym__spread_record] = STATE(4677), + [sym_record_entry] = STATE(4466), + [sym__record_key] = STATE(4944), [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), + [aux_sym__types_body_repeat1] = STATE(1494), + [aux_sym_record_body_repeat1] = STATE(871), + [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(1778), + [anon_sym_false] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1780), + [aux_sym_cmd_identifier_token4] = ACTIONS(1780), + [aux_sym_cmd_identifier_token5] = ACTIONS(1780), + [sym__newline] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1804), + [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(1790), + [aux_sym__val_number_decimal_token2] = ACTIONS(1792), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [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(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), + [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(1802), }, [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1249), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(811), + [sym__unquoted_with_expr] = STATE(1124), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1254), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(812), + [sym__unquoted_with_expr] = STATE(1127), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(645)] = { + [aux_sym__repeat_newline] = STATE(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1261), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(813), + [sym__unquoted_with_expr] = STATE(966), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1912), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1165), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(814), + [sym__unquoted_with_expr] = STATE(968), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1242), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(731), + [sym__unquoted_with_expr] = STATE(1056), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1195), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(815), + [sym__unquoted_with_expr] = STATE(971), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(648), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1250), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(816), + [sym__unquoted_with_expr] = STATE(977), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(649), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1150), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(981), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1193), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(819), + [sym__unquoted_with_expr] = STATE(985), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(651), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(988), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(820), + [sym__unquoted_with_expr] = STATE(990), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(652), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1253), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(821), + [sym__unquoted_with_expr] = STATE(995), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(653), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1142), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(822), + [sym__unquoted_with_expr] = STATE(997), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(654), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1154), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(823), + [sym__unquoted_with_expr] = STATE(999), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1163), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(824), + [sym__unquoted_with_expr] = STATE(1001), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(656), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(638), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1177), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(826), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1912), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), + [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), + [aux_sym__repeat_newline] = STATE(639), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1183), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym__unquoted_with_expr] = STATE(1004), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(658), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(640), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1191), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(830), + [sym__unquoted_with_expr] = STATE(1006), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(659), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [aux_sym__repeat_newline] = STATE(641), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1200), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym__unquoted_with_expr] = STATE(1008), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(660), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(647), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1209), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(883), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(661), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(666), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1219), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(886), + [sym__unquoted_with_expr] = STATE(1012), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(662), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(670), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1228), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(892), + [sym__unquoted_with_expr] = STATE(1013), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(663), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(664)] = { + [aux_sym__repeat_newline] = STATE(505), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1243), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(786), + [sym__unquoted_with_expr] = STATE(1016), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1912), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(506), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1017), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(773), + [sym__unquoted_with_expr] = STATE(1019), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1252), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(762), + [sym__unquoted_with_expr] = STATE(1059), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(513), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1141), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(774), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(514), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1143), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(1026), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1152), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(834), + [sym__unquoted_with_expr] = STATE(1028), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(2208), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1202), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(763), + [sym__unquoted_with_expr] = STATE(1060), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(599), + [sym_expr_unary] = STATE(1131), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1131), + [sym__expr_binary_expression_parenthesized] = STATE(1671), + [sym_expr_parenthesized] = STATE(851), + [sym_val_range] = STATE(1131), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(1131), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(852), + [sym__unquoted_with_expr] = STATE(1101), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(671), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [sym__newline] = ACTIONS(1910), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2062), [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(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(672)] = { [sym_comment] = STATE(672), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2064), - [aux_sym__immediate_decimal_token5] = ACTIONS(2066), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(2021), + [sym__newline] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_err_GT_PIPE] = ACTIONS(2021), + [anon_sym_out_GT_PIPE] = ACTIONS(2021), + [anon_sym_e_GT_PIPE] = ACTIONS(2021), + [anon_sym_o_GT_PIPE] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2021), + [anon_sym_GT2] = ACTIONS(2023), + [anon_sym_DASH2] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2021), + [anon_sym_RBRACE] = ACTIONS(2021), + [anon_sym_STAR2] = ACTIONS(2023), + [anon_sym_and2] = ACTIONS(2021), + [anon_sym_xor2] = ACTIONS(2021), + [anon_sym_or2] = ACTIONS(2021), + [anon_sym_not_DASHin2] = ACTIONS(2021), + [anon_sym_has2] = ACTIONS(2021), + [anon_sym_not_DASHhas2] = ACTIONS(2021), + [anon_sym_starts_DASHwith2] = ACTIONS(2021), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2021), + [anon_sym_ends_DASHwith2] = ACTIONS(2021), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2021), + [anon_sym_EQ_EQ2] = ACTIONS(2021), + [anon_sym_BANG_EQ2] = ACTIONS(2021), + [anon_sym_LT2] = ACTIONS(2023), + [anon_sym_LT_EQ2] = ACTIONS(2021), + [anon_sym_GT_EQ2] = ACTIONS(2021), + [anon_sym_EQ_TILDE2] = ACTIONS(2021), + [anon_sym_BANG_TILDE2] = ACTIONS(2021), + [anon_sym_like2] = ACTIONS(2021), + [anon_sym_not_DASHlike2] = ACTIONS(2021), + [anon_sym_STAR_STAR2] = ACTIONS(2021), + [anon_sym_PLUS_PLUS2] = ACTIONS(2021), + [anon_sym_SLASH2] = ACTIONS(2023), + [anon_sym_mod2] = ACTIONS(2021), + [anon_sym_SLASH_SLASH2] = ACTIONS(2021), + [anon_sym_PLUS2] = ACTIONS(2023), + [anon_sym_bit_DASHshl2] = ACTIONS(2021), + [anon_sym_bit_DASHshr2] = ACTIONS(2021), + [anon_sym_bit_DASHand2] = ACTIONS(2021), + [anon_sym_bit_DASHxor2] = ACTIONS(2021), + [anon_sym_bit_DASHor2] = ACTIONS(2021), + [anon_sym_DOT_DOT2] = ACTIONS(2074), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2076), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2076), + [anon_sym_err_GT] = ACTIONS(2023), + [anon_sym_out_GT] = ACTIONS(2023), + [anon_sym_e_GT] = ACTIONS(2023), + [anon_sym_o_GT] = ACTIONS(2023), + [anon_sym_err_PLUSout_GT] = ACTIONS(2023), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2023), + [anon_sym_o_PLUSe_GT] = ACTIONS(2023), + [anon_sym_e_PLUSo_GT] = ACTIONS(2023), + [anon_sym_err_GT_GT] = ACTIONS(2021), + [anon_sym_out_GT_GT] = ACTIONS(2021), + [anon_sym_e_GT_GT] = ACTIONS(2021), + [anon_sym_o_GT_GT] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2021), [anon_sym_POUND] = ACTIONS(3), }, [STATE(673)] = { [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), + [ts_builtin_sym_end] = ACTIONS(2011), + [anon_sym_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_DOT_DOT2] = ACTIONS(2078), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2080), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2080), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [sym__unquoted_pattern] = ACTIONS(1615), [anon_sym_POUND] = ACTIONS(3), }, [STATE(674)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), + [sym__expr_parenthesized_immediate] = STATE(4713), [sym_comment] = STATE(674), - [anon_sym_in] = ACTIONS(2072), - [sym__newline] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_err_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_GT_PIPE] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_GT2] = ACTIONS(2074), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_EQ_GT] = ACTIONS(2072), - [anon_sym_STAR2] = ACTIONS(2074), - [anon_sym_and2] = ACTIONS(2072), - [anon_sym_xor2] = ACTIONS(2072), - [anon_sym_or2] = ACTIONS(2072), - [anon_sym_not_DASHin2] = ACTIONS(2072), - [anon_sym_has2] = ACTIONS(2072), - [anon_sym_not_DASHhas2] = ACTIONS(2072), - [anon_sym_starts_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2072), - [anon_sym_ends_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2072), - [anon_sym_EQ_EQ2] = ACTIONS(2072), - [anon_sym_BANG_EQ2] = ACTIONS(2072), - [anon_sym_LT2] = ACTIONS(2074), - [anon_sym_LT_EQ2] = ACTIONS(2072), - [anon_sym_GT_EQ2] = ACTIONS(2072), - [anon_sym_EQ_TILDE2] = ACTIONS(2072), - [anon_sym_BANG_TILDE2] = ACTIONS(2072), - [anon_sym_like2] = ACTIONS(2072), - [anon_sym_not_DASHlike2] = ACTIONS(2072), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2072), - [anon_sym_PLUS_PLUS2] = ACTIONS(2072), - [anon_sym_SLASH2] = ACTIONS(2074), - [anon_sym_mod2] = ACTIONS(2072), - [anon_sym_SLASH_SLASH2] = ACTIONS(2072), - [anon_sym_PLUS2] = ACTIONS(2074), - [anon_sym_bit_DASHshl2] = ACTIONS(2072), - [anon_sym_bit_DASHshr2] = ACTIONS(2072), - [anon_sym_bit_DASHand2] = ACTIONS(2072), - [anon_sym_bit_DASHxor2] = ACTIONS(2072), - [anon_sym_bit_DASHor2] = ACTIONS(2072), - [anon_sym_err_GT] = ACTIONS(2074), - [anon_sym_out_GT] = ACTIONS(2074), - [anon_sym_e_GT] = ACTIONS(2074), - [anon_sym_o_GT] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT] = ACTIONS(2074), - [anon_sym_err_GT_GT] = ACTIONS(2072), - [anon_sym_out_GT_GT] = ACTIONS(2072), - [anon_sym_e_GT_GT] = ACTIONS(2072), - [anon_sym_o_GT_GT] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(675)] = { [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), + [ts_builtin_sym_end] = ACTIONS(2021), + [anon_sym_in] = ACTIONS(2021), + [sym__newline] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_err_GT_PIPE] = ACTIONS(2021), + [anon_sym_out_GT_PIPE] = ACTIONS(2021), + [anon_sym_e_GT_PIPE] = ACTIONS(2021), + [anon_sym_o_GT_PIPE] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2021), + [anon_sym_GT2] = ACTIONS(2023), + [anon_sym_DASH2] = ACTIONS(2021), + [anon_sym_STAR2] = ACTIONS(2023), + [anon_sym_and2] = ACTIONS(2021), + [anon_sym_xor2] = ACTIONS(2021), + [anon_sym_or2] = ACTIONS(2021), + [anon_sym_not_DASHin2] = ACTIONS(2021), + [anon_sym_has2] = ACTIONS(2021), + [anon_sym_not_DASHhas2] = ACTIONS(2021), + [anon_sym_starts_DASHwith2] = ACTIONS(2021), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2021), + [anon_sym_ends_DASHwith2] = ACTIONS(2021), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2021), + [anon_sym_EQ_EQ2] = ACTIONS(2021), + [anon_sym_BANG_EQ2] = ACTIONS(2021), + [anon_sym_LT2] = ACTIONS(2023), + [anon_sym_LT_EQ2] = ACTIONS(2021), + [anon_sym_GT_EQ2] = ACTIONS(2021), + [anon_sym_EQ_TILDE2] = ACTIONS(2021), + [anon_sym_BANG_TILDE2] = ACTIONS(2021), + [anon_sym_like2] = ACTIONS(2021), + [anon_sym_not_DASHlike2] = ACTIONS(2021), + [anon_sym_LPAREN2] = ACTIONS(2025), + [anon_sym_STAR_STAR2] = ACTIONS(2021), + [anon_sym_PLUS_PLUS2] = ACTIONS(2021), + [anon_sym_SLASH2] = ACTIONS(2023), + [anon_sym_mod2] = ACTIONS(2021), + [anon_sym_SLASH_SLASH2] = ACTIONS(2021), + [anon_sym_PLUS2] = ACTIONS(2023), + [anon_sym_bit_DASHshl2] = ACTIONS(2021), + [anon_sym_bit_DASHshr2] = ACTIONS(2021), + [anon_sym_bit_DASHand2] = ACTIONS(2021), + [anon_sym_bit_DASHxor2] = ACTIONS(2021), + [anon_sym_bit_DASHor2] = ACTIONS(2021), + [anon_sym_DOT_DOT2] = ACTIONS(2086), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2088), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2088), + [anon_sym_err_GT] = ACTIONS(2023), + [anon_sym_out_GT] = ACTIONS(2023), + [anon_sym_e_GT] = ACTIONS(2023), + [anon_sym_o_GT] = ACTIONS(2023), + [anon_sym_err_PLUSout_GT] = ACTIONS(2023), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2023), + [anon_sym_o_PLUSe_GT] = ACTIONS(2023), + [anon_sym_e_PLUSo_GT] = ACTIONS(2023), + [anon_sym_err_GT_GT] = ACTIONS(2021), + [anon_sym_out_GT_GT] = ACTIONS(2021), + [anon_sym_e_GT_GT] = ACTIONS(2021), + [anon_sym_o_GT_GT] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2021), + [sym__unquoted_pattern] = ACTIONS(2031), [anon_sym_POUND] = ACTIONS(3), }, [STATE(676)] = { + [sym__expr_parenthesized_immediate] = STATE(4713), [sym_comment] = STATE(676), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_in] = ACTIONS(2084), - [sym__newline] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_err_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_GT_PIPE] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(2084), - [anon_sym_GT2] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2084), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_EQ_GT] = ACTIONS(2084), - [anon_sym_STAR2] = ACTIONS(2086), - [anon_sym_and2] = ACTIONS(2084), - [anon_sym_xor2] = ACTIONS(2084), - [anon_sym_or2] = ACTIONS(2084), - [anon_sym_not_DASHin2] = ACTIONS(2084), - [anon_sym_has2] = ACTIONS(2084), - [anon_sym_not_DASHhas2] = ACTIONS(2084), - [anon_sym_starts_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2084), - [anon_sym_ends_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2084), - [anon_sym_EQ_EQ2] = ACTIONS(2084), - [anon_sym_BANG_EQ2] = ACTIONS(2084), - [anon_sym_LT2] = ACTIONS(2086), - [anon_sym_LT_EQ2] = ACTIONS(2084), - [anon_sym_GT_EQ2] = ACTIONS(2084), - [anon_sym_EQ_TILDE2] = ACTIONS(2084), - [anon_sym_BANG_TILDE2] = ACTIONS(2084), - [anon_sym_like2] = ACTIONS(2084), - [anon_sym_not_DASHlike2] = ACTIONS(2084), - [anon_sym_LPAREN2] = ACTIONS(2084), - [anon_sym_STAR_STAR2] = ACTIONS(2084), - [anon_sym_PLUS_PLUS2] = ACTIONS(2084), - [anon_sym_SLASH2] = ACTIONS(2086), - [anon_sym_mod2] = ACTIONS(2084), - [anon_sym_SLASH_SLASH2] = ACTIONS(2084), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_bit_DASHshl2] = ACTIONS(2084), - [anon_sym_bit_DASHshr2] = ACTIONS(2084), - [anon_sym_bit_DASHand2] = ACTIONS(2084), - [anon_sym_bit_DASHxor2] = ACTIONS(2084), - [anon_sym_bit_DASHor2] = ACTIONS(2084), - [anon_sym_err_GT] = ACTIONS(2086), - [anon_sym_out_GT] = ACTIONS(2086), - [anon_sym_e_GT] = ACTIONS(2086), - [anon_sym_o_GT] = ACTIONS(2086), - [anon_sym_err_PLUSout_GT] = ACTIONS(2086), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2086), - [anon_sym_o_PLUSe_GT] = ACTIONS(2086), - [anon_sym_e_PLUSo_GT] = ACTIONS(2086), - [anon_sym_err_GT_GT] = ACTIONS(2084), - [anon_sym_out_GT_GT] = ACTIONS(2084), - [anon_sym_e_GT_GT] = ACTIONS(2084), - [anon_sym_o_GT_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(677)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(4713), [sym_comment] = STATE(677), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(678)] = { + [sym__expr_parenthesized_immediate] = STATE(4713), [sym_comment] = STATE(678), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_DOT_DOT2] = ACTIONS(1728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(679)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(679), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(884), + [anon_sym_in] = ACTIONS(884), + [sym__newline] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(884), + [anon_sym_err_GT_PIPE] = ACTIONS(884), + [anon_sym_out_GT_PIPE] = ACTIONS(884), + [anon_sym_e_GT_PIPE] = ACTIONS(884), + [anon_sym_o_GT_PIPE] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(884), + [anon_sym_GT2] = ACTIONS(858), + [anon_sym_DASH2] = ACTIONS(884), + [anon_sym_LBRACE] = ACTIONS(884), + [anon_sym_RBRACE] = ACTIONS(884), + [anon_sym_EQ_GT] = ACTIONS(884), + [anon_sym_STAR2] = ACTIONS(858), + [anon_sym_and2] = ACTIONS(884), + [anon_sym_xor2] = ACTIONS(884), + [anon_sym_or2] = ACTIONS(884), + [anon_sym_not_DASHin2] = ACTIONS(884), + [anon_sym_has2] = ACTIONS(884), + [anon_sym_not_DASHhas2] = ACTIONS(884), + [anon_sym_starts_DASHwith2] = ACTIONS(884), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(884), + [anon_sym_ends_DASHwith2] = ACTIONS(884), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(884), + [anon_sym_EQ_EQ2] = ACTIONS(884), + [anon_sym_BANG_EQ2] = ACTIONS(884), + [anon_sym_LT2] = ACTIONS(858), + [anon_sym_LT_EQ2] = ACTIONS(884), + [anon_sym_GT_EQ2] = ACTIONS(884), + [anon_sym_EQ_TILDE2] = ACTIONS(884), + [anon_sym_BANG_TILDE2] = ACTIONS(884), + [anon_sym_like2] = ACTIONS(884), + [anon_sym_not_DASHlike2] = ACTIONS(884), + [anon_sym_STAR_STAR2] = ACTIONS(884), + [anon_sym_PLUS_PLUS2] = ACTIONS(884), + [anon_sym_SLASH2] = ACTIONS(858), + [anon_sym_mod2] = ACTIONS(884), + [anon_sym_SLASH_SLASH2] = ACTIONS(884), + [anon_sym_PLUS2] = ACTIONS(858), + [anon_sym_bit_DASHshl2] = ACTIONS(884), + [anon_sym_bit_DASHshr2] = ACTIONS(884), + [anon_sym_bit_DASHand2] = ACTIONS(884), + [anon_sym_bit_DASHxor2] = ACTIONS(884), + [anon_sym_bit_DASHor2] = ACTIONS(884), + [anon_sym_COLON2] = ACTIONS(884), + [anon_sym_err_GT] = ACTIONS(858), + [anon_sym_out_GT] = ACTIONS(858), + [anon_sym_e_GT] = ACTIONS(858), + [anon_sym_o_GT] = ACTIONS(858), + [anon_sym_err_PLUSout_GT] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT] = ACTIONS(858), + [anon_sym_o_PLUSe_GT] = ACTIONS(858), + [anon_sym_e_PLUSo_GT] = ACTIONS(858), + [anon_sym_err_GT_GT] = ACTIONS(884), + [anon_sym_out_GT_GT] = ACTIONS(884), + [anon_sym_e_GT_GT] = ACTIONS(884), + [anon_sym_o_GT_GT] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), [anon_sym_POUND] = ACTIONS(3), }, [STATE(680)] = { [sym_comment] = STATE(680), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_in] = ACTIONS(2090), + [sym__newline] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_err_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_GT_PIPE] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2090), + [anon_sym_GT2] = ACTIONS(2092), + [anon_sym_DASH2] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_EQ_GT] = ACTIONS(2090), + [anon_sym_STAR2] = ACTIONS(2092), + [anon_sym_and2] = ACTIONS(2090), + [anon_sym_xor2] = ACTIONS(2090), + [anon_sym_or2] = ACTIONS(2090), + [anon_sym_not_DASHin2] = ACTIONS(2090), + [anon_sym_has2] = ACTIONS(2090), + [anon_sym_not_DASHhas2] = ACTIONS(2090), + [anon_sym_starts_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), + [anon_sym_ends_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), + [anon_sym_EQ_EQ2] = ACTIONS(2090), + [anon_sym_BANG_EQ2] = ACTIONS(2090), + [anon_sym_LT2] = ACTIONS(2092), + [anon_sym_LT_EQ2] = ACTIONS(2090), + [anon_sym_GT_EQ2] = ACTIONS(2090), + [anon_sym_EQ_TILDE2] = ACTIONS(2090), + [anon_sym_BANG_TILDE2] = ACTIONS(2090), + [anon_sym_like2] = ACTIONS(2090), + [anon_sym_not_DASHlike2] = ACTIONS(2090), + [anon_sym_STAR_STAR2] = ACTIONS(2090), + [anon_sym_PLUS_PLUS2] = ACTIONS(2090), + [anon_sym_SLASH2] = ACTIONS(2092), + [anon_sym_mod2] = ACTIONS(2090), + [anon_sym_SLASH_SLASH2] = ACTIONS(2090), + [anon_sym_PLUS2] = ACTIONS(2092), + [anon_sym_bit_DASHshl2] = ACTIONS(2090), + [anon_sym_bit_DASHshr2] = ACTIONS(2090), + [anon_sym_bit_DASHand2] = ACTIONS(2090), + [anon_sym_bit_DASHxor2] = ACTIONS(2090), + [anon_sym_bit_DASHor2] = ACTIONS(2090), + [anon_sym_LBRACK2] = ACTIONS(2094), + [anon_sym_err_GT] = ACTIONS(2092), + [anon_sym_out_GT] = ACTIONS(2092), + [anon_sym_e_GT] = ACTIONS(2092), + [anon_sym_o_GT] = ACTIONS(2092), + [anon_sym_err_PLUSout_GT] = ACTIONS(2092), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), + [anon_sym_o_PLUSe_GT] = ACTIONS(2092), + [anon_sym_e_PLUSo_GT] = ACTIONS(2092), + [anon_sym_err_GT_GT] = ACTIONS(2090), + [anon_sym_out_GT_GT] = ACTIONS(2090), + [anon_sym_e_GT_GT] = ACTIONS(2090), + [anon_sym_o_GT_GT] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), [anon_sym_POUND] = ACTIONS(3), }, [STATE(681)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(681), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(1754), + [sym__newline] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_err_GT_PIPE] = ACTIONS(1754), + [anon_sym_out_GT_PIPE] = ACTIONS(1754), + [anon_sym_e_GT_PIPE] = ACTIONS(1754), + [anon_sym_o_GT_PIPE] = ACTIONS(1754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_GT2] = ACTIONS(1756), + [anon_sym_DASH2] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_STAR2] = ACTIONS(1756), + [anon_sym_and2] = ACTIONS(1754), + [anon_sym_xor2] = ACTIONS(1754), + [anon_sym_or2] = ACTIONS(1754), + [anon_sym_not_DASHin2] = ACTIONS(1754), + [anon_sym_has2] = ACTIONS(1754), + [anon_sym_not_DASHhas2] = ACTIONS(1754), + [anon_sym_starts_DASHwith2] = ACTIONS(1754), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1754), + [anon_sym_ends_DASHwith2] = ACTIONS(1754), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1754), + [anon_sym_EQ_EQ2] = ACTIONS(1754), + [anon_sym_BANG_EQ2] = ACTIONS(1754), + [anon_sym_LT2] = ACTIONS(1756), + [anon_sym_LT_EQ2] = ACTIONS(1754), + [anon_sym_GT_EQ2] = ACTIONS(1754), + [anon_sym_EQ_TILDE2] = ACTIONS(1754), + [anon_sym_BANG_TILDE2] = ACTIONS(1754), + [anon_sym_like2] = ACTIONS(1754), + [anon_sym_not_DASHlike2] = ACTIONS(1754), + [anon_sym_LPAREN2] = ACTIONS(1754), + [anon_sym_STAR_STAR2] = ACTIONS(1754), + [anon_sym_PLUS_PLUS2] = ACTIONS(1754), + [anon_sym_SLASH2] = ACTIONS(1756), + [anon_sym_mod2] = ACTIONS(1754), + [anon_sym_SLASH_SLASH2] = ACTIONS(1754), + [anon_sym_PLUS2] = ACTIONS(1756), + [anon_sym_bit_DASHshl2] = ACTIONS(1754), + [anon_sym_bit_DASHshr2] = ACTIONS(1754), + [anon_sym_bit_DASHand2] = ACTIONS(1754), + [anon_sym_bit_DASHxor2] = ACTIONS(1754), + [anon_sym_bit_DASHor2] = ACTIONS(1754), + [anon_sym_DOT] = ACTIONS(2096), + [aux_sym__immediate_decimal_token5] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(1756), + [anon_sym_out_GT] = ACTIONS(1756), + [anon_sym_e_GT] = ACTIONS(1756), + [anon_sym_o_GT] = ACTIONS(1756), + [anon_sym_err_PLUSout_GT] = ACTIONS(1756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), + [anon_sym_o_PLUSe_GT] = ACTIONS(1756), + [anon_sym_e_PLUSo_GT] = ACTIONS(1756), + [anon_sym_err_GT_GT] = ACTIONS(1754), + [anon_sym_out_GT_GT] = ACTIONS(1754), + [anon_sym_e_GT_GT] = ACTIONS(1754), + [anon_sym_o_GT_GT] = ACTIONS(1754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), + [sym__unquoted_pattern] = ACTIONS(1756), [anon_sym_POUND] = ACTIONS(3), }, [STATE(682)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(4713), [sym_comment] = STATE(682), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(683)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(4713), [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(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(684)] = { + [sym__expr_parenthesized_immediate] = STATE(4713), [sym_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(1870), - [anon_sym_in] = ACTIONS(1870), - [sym__newline] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_err_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_GT_PIPE] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), - [anon_sym_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [anon_sym_DOT_DOT2] = ACTIONS(1872), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1870), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1872), - [anon_sym_out_GT] = ACTIONS(1872), - [anon_sym_e_GT] = ACTIONS(1872), - [anon_sym_o_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT] = ACTIONS(1872), - [anon_sym_err_GT_GT] = ACTIONS(1870), - [anon_sym_out_GT_GT] = ACTIONS(1870), - [anon_sym_e_GT_GT] = ACTIONS(1870), - [anon_sym_o_GT_GT] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), - [sym__unquoted_pattern] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(685)] = { + [sym__expr_parenthesized_immediate] = STATE(4713), [sym_comment] = STATE(685), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_in] = ACTIONS(2092), - [sym__newline] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_err_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_GT_PIPE] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2092), - [anon_sym_RPAREN] = ACTIONS(2092), - [anon_sym_GT2] = ACTIONS(2094), - [anon_sym_DASH2] = ACTIONS(2092), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2092), - [anon_sym_EQ_GT] = ACTIONS(2092), - [anon_sym_STAR2] = ACTIONS(2094), - [anon_sym_and2] = ACTIONS(2092), - [anon_sym_xor2] = ACTIONS(2092), - [anon_sym_or2] = ACTIONS(2092), - [anon_sym_not_DASHin2] = ACTIONS(2092), - [anon_sym_has2] = ACTIONS(2092), - [anon_sym_not_DASHhas2] = ACTIONS(2092), - [anon_sym_starts_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2092), - [anon_sym_ends_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2092), - [anon_sym_EQ_EQ2] = ACTIONS(2092), - [anon_sym_BANG_EQ2] = ACTIONS(2092), - [anon_sym_LT2] = ACTIONS(2094), - [anon_sym_LT_EQ2] = ACTIONS(2092), - [anon_sym_GT_EQ2] = ACTIONS(2092), - [anon_sym_EQ_TILDE2] = ACTIONS(2092), - [anon_sym_BANG_TILDE2] = ACTIONS(2092), - [anon_sym_like2] = ACTIONS(2092), - [anon_sym_not_DASHlike2] = ACTIONS(2092), - [anon_sym_LPAREN2] = ACTIONS(2092), - [anon_sym_STAR_STAR2] = ACTIONS(2092), - [anon_sym_PLUS_PLUS2] = ACTIONS(2092), - [anon_sym_SLASH2] = ACTIONS(2094), - [anon_sym_mod2] = ACTIONS(2092), - [anon_sym_SLASH_SLASH2] = ACTIONS(2092), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_bit_DASHshl2] = ACTIONS(2092), - [anon_sym_bit_DASHshr2] = ACTIONS(2092), - [anon_sym_bit_DASHand2] = ACTIONS(2092), - [anon_sym_bit_DASHxor2] = ACTIONS(2092), - [anon_sym_bit_DASHor2] = ACTIONS(2092), - [anon_sym_err_GT] = ACTIONS(2094), - [anon_sym_out_GT] = ACTIONS(2094), - [anon_sym_e_GT] = ACTIONS(2094), - [anon_sym_o_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT] = ACTIONS(2094), - [anon_sym_err_GT_GT] = ACTIONS(2092), - [anon_sym_out_GT_GT] = ACTIONS(2092), - [anon_sym_e_GT_GT] = ACTIONS(2092), - [anon_sym_o_GT_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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_POUND] = ACTIONS(3), - }, - [STATE(691)] = { - [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_POUND] = ACTIONS(3), - }, - [STATE(692)] = { - [sym_comment] = STATE(692), [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), + [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(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_RBRACE] = ACTIONS(2102), + [anon_sym_STAR2] = ACTIONS(2104), [anon_sym_and2] = ACTIONS(2100), [anon_sym_xor2] = ACTIONS(2100), [anon_sym_or2] = ACTIONS(2100), @@ -100009,7 +99897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LT2] = ACTIONS(2104), [anon_sym_LT_EQ2] = ACTIONS(2100), [anon_sym_GT_EQ2] = ACTIONS(2100), [anon_sym_EQ_TILDE2] = ACTIONS(2100), @@ -100018,536 +99906,537 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SLASH2] = ACTIONS(2104), [anon_sym_mod2] = ACTIONS(2100), [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), [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_DOT_DOT2] = ACTIONS(1633), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), + [anon_sym_err_GT] = ACTIONS(2106), + [anon_sym_out_GT] = ACTIONS(2106), + [anon_sym_e_GT] = ACTIONS(2106), + [anon_sym_o_GT] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT] = ACTIONS(2106), + [anon_sym_err_GT_GT] = ACTIONS(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(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), + [STATE(687)] = { + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(687), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(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), + [STATE(688)] = { + [sym_comment] = STATE(688), + [anon_sym_in] = ACTIONS(2108), + [sym__newline] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2108), + [anon_sym_PIPE] = ACTIONS(2108), + [anon_sym_err_GT_PIPE] = ACTIONS(2108), + [anon_sym_out_GT_PIPE] = ACTIONS(2108), + [anon_sym_e_GT_PIPE] = ACTIONS(2108), + [anon_sym_o_GT_PIPE] = ACTIONS(2108), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2108), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2108), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2108), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2108), + [anon_sym_RPAREN] = ACTIONS(2108), + [anon_sym_GT2] = ACTIONS(2110), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_RBRACE] = ACTIONS(2108), + [anon_sym_STAR2] = ACTIONS(2110), + [anon_sym_and2] = ACTIONS(2108), + [anon_sym_xor2] = ACTIONS(2108), + [anon_sym_or2] = ACTIONS(2108), + [anon_sym_not_DASHin2] = ACTIONS(2108), + [anon_sym_has2] = ACTIONS(2108), + [anon_sym_not_DASHhas2] = ACTIONS(2108), + [anon_sym_starts_DASHwith2] = ACTIONS(2108), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2108), + [anon_sym_ends_DASHwith2] = ACTIONS(2108), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2108), + [anon_sym_EQ_EQ2] = ACTIONS(2108), + [anon_sym_BANG_EQ2] = ACTIONS(2108), + [anon_sym_LT2] = ACTIONS(2110), + [anon_sym_LT_EQ2] = ACTIONS(2108), + [anon_sym_GT_EQ2] = ACTIONS(2108), + [anon_sym_EQ_TILDE2] = ACTIONS(2108), + [anon_sym_BANG_TILDE2] = ACTIONS(2108), + [anon_sym_like2] = ACTIONS(2108), + [anon_sym_not_DASHlike2] = ACTIONS(2108), + [anon_sym_STAR_STAR2] = ACTIONS(2108), + [anon_sym_PLUS_PLUS2] = ACTIONS(2108), + [anon_sym_SLASH2] = ACTIONS(2110), + [anon_sym_mod2] = ACTIONS(2108), + [anon_sym_SLASH_SLASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_bit_DASHshl2] = ACTIONS(2108), + [anon_sym_bit_DASHshr2] = ACTIONS(2108), + [anon_sym_bit_DASHand2] = ACTIONS(2108), + [anon_sym_bit_DASHxor2] = ACTIONS(2108), + [anon_sym_bit_DASHor2] = ACTIONS(2108), + [anon_sym_DOT_DOT2] = ACTIONS(2112), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2114), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2114), + [anon_sym_err_GT] = ACTIONS(2110), + [anon_sym_out_GT] = ACTIONS(2110), + [anon_sym_e_GT] = ACTIONS(2110), + [anon_sym_o_GT] = ACTIONS(2110), + [anon_sym_err_PLUSout_GT] = ACTIONS(2110), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2110), + [anon_sym_o_PLUSe_GT] = ACTIONS(2110), + [anon_sym_e_PLUSo_GT] = ACTIONS(2110), + [anon_sym_err_GT_GT] = ACTIONS(2108), + [anon_sym_out_GT_GT] = ACTIONS(2108), + [anon_sym_e_GT_GT] = ACTIONS(2108), + [anon_sym_o_GT_GT] = ACTIONS(2108), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2108), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2108), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2108), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2108), [anon_sym_POUND] = ACTIONS(3), }, - [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), + [STATE(689)] = { + [sym_comment] = STATE(689), + [anon_sym_in] = ACTIONS(2116), + [sym__newline] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2116), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_err_GT_PIPE] = ACTIONS(2116), + [anon_sym_out_GT_PIPE] = ACTIONS(2116), + [anon_sym_e_GT_PIPE] = ACTIONS(2116), + [anon_sym_o_GT_PIPE] = ACTIONS(2116), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2116), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2116), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2116), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2116), + [anon_sym_RPAREN] = ACTIONS(2116), + [anon_sym_GT2] = ACTIONS(2118), + [anon_sym_DASH2] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2116), + [anon_sym_RBRACE] = ACTIONS(2116), + [anon_sym_STAR2] = ACTIONS(2118), + [anon_sym_and2] = ACTIONS(2116), + [anon_sym_xor2] = ACTIONS(2116), + [anon_sym_or2] = ACTIONS(2116), + [anon_sym_not_DASHin2] = ACTIONS(2116), + [anon_sym_has2] = ACTIONS(2116), + [anon_sym_not_DASHhas2] = ACTIONS(2116), + [anon_sym_starts_DASHwith2] = ACTIONS(2116), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2116), + [anon_sym_ends_DASHwith2] = ACTIONS(2116), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2116), + [anon_sym_EQ_EQ2] = ACTIONS(2116), + [anon_sym_BANG_EQ2] = ACTIONS(2116), + [anon_sym_LT2] = ACTIONS(2118), + [anon_sym_LT_EQ2] = ACTIONS(2116), + [anon_sym_GT_EQ2] = ACTIONS(2116), + [anon_sym_EQ_TILDE2] = ACTIONS(2116), + [anon_sym_BANG_TILDE2] = ACTIONS(2116), + [anon_sym_like2] = ACTIONS(2116), + [anon_sym_not_DASHlike2] = ACTIONS(2116), + [anon_sym_STAR_STAR2] = ACTIONS(2116), + [anon_sym_PLUS_PLUS2] = ACTIONS(2116), + [anon_sym_SLASH2] = ACTIONS(2118), + [anon_sym_mod2] = ACTIONS(2116), + [anon_sym_SLASH_SLASH2] = ACTIONS(2116), + [anon_sym_PLUS2] = ACTIONS(2118), + [anon_sym_bit_DASHshl2] = ACTIONS(2116), + [anon_sym_bit_DASHshr2] = ACTIONS(2116), + [anon_sym_bit_DASHand2] = ACTIONS(2116), + [anon_sym_bit_DASHxor2] = ACTIONS(2116), + [anon_sym_bit_DASHor2] = ACTIONS(2116), + [anon_sym_DOT_DOT2] = ACTIONS(2120), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2122), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2122), + [anon_sym_err_GT] = ACTIONS(2118), + [anon_sym_out_GT] = ACTIONS(2118), + [anon_sym_e_GT] = ACTIONS(2118), + [anon_sym_o_GT] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT] = ACTIONS(2118), + [anon_sym_err_GT_GT] = ACTIONS(2116), + [anon_sym_out_GT_GT] = ACTIONS(2116), + [anon_sym_e_GT_GT] = ACTIONS(2116), + [anon_sym_o_GT_GT] = ACTIONS(2116), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2116), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2116), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2116), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2116), [anon_sym_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), + [STATE(690)] = { + [sym_comment] = STATE(690), + [anon_sym_in] = ACTIONS(2124), + [sym__newline] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_PIPE] = ACTIONS(2124), + [anon_sym_err_GT_PIPE] = ACTIONS(2124), + [anon_sym_out_GT_PIPE] = ACTIONS(2124), + [anon_sym_e_GT_PIPE] = ACTIONS(2124), + [anon_sym_o_GT_PIPE] = ACTIONS(2124), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2124), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2124), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2124), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2124), + [anon_sym_RPAREN] = ACTIONS(2124), + [anon_sym_GT2] = ACTIONS(2126), + [anon_sym_DASH2] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_RBRACE] = ACTIONS(2124), + [anon_sym_STAR2] = ACTIONS(2126), + [anon_sym_and2] = ACTIONS(2124), + [anon_sym_xor2] = ACTIONS(2124), + [anon_sym_or2] = ACTIONS(2124), + [anon_sym_not_DASHin2] = ACTIONS(2124), + [anon_sym_has2] = ACTIONS(2124), + [anon_sym_not_DASHhas2] = ACTIONS(2124), + [anon_sym_starts_DASHwith2] = ACTIONS(2124), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2124), + [anon_sym_ends_DASHwith2] = ACTIONS(2124), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2124), + [anon_sym_EQ_EQ2] = ACTIONS(2124), + [anon_sym_BANG_EQ2] = ACTIONS(2124), + [anon_sym_LT2] = ACTIONS(2126), + [anon_sym_LT_EQ2] = ACTIONS(2124), + [anon_sym_GT_EQ2] = ACTIONS(2124), + [anon_sym_EQ_TILDE2] = ACTIONS(2124), + [anon_sym_BANG_TILDE2] = ACTIONS(2124), + [anon_sym_like2] = ACTIONS(2124), + [anon_sym_not_DASHlike2] = ACTIONS(2124), + [anon_sym_STAR_STAR2] = ACTIONS(2124), + [anon_sym_PLUS_PLUS2] = ACTIONS(2124), + [anon_sym_SLASH2] = ACTIONS(2126), + [anon_sym_mod2] = ACTIONS(2124), + [anon_sym_SLASH_SLASH2] = ACTIONS(2124), + [anon_sym_PLUS2] = ACTIONS(2126), + [anon_sym_bit_DASHshl2] = ACTIONS(2124), + [anon_sym_bit_DASHshr2] = ACTIONS(2124), + [anon_sym_bit_DASHand2] = ACTIONS(2124), + [anon_sym_bit_DASHxor2] = ACTIONS(2124), + [anon_sym_bit_DASHor2] = ACTIONS(2124), + [anon_sym_DOT_DOT2] = ACTIONS(2128), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2130), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2130), + [anon_sym_err_GT] = ACTIONS(2126), + [anon_sym_out_GT] = ACTIONS(2126), + [anon_sym_e_GT] = ACTIONS(2126), + [anon_sym_o_GT] = ACTIONS(2126), + [anon_sym_err_PLUSout_GT] = ACTIONS(2126), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2126), + [anon_sym_o_PLUSe_GT] = ACTIONS(2126), + [anon_sym_e_PLUSo_GT] = ACTIONS(2126), + [anon_sym_err_GT_GT] = ACTIONS(2124), + [anon_sym_out_GT_GT] = ACTIONS(2124), + [anon_sym_e_GT_GT] = ACTIONS(2124), + [anon_sym_o_GT_GT] = ACTIONS(2124), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2124), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2124), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2124), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2124), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(697)] = { - [sym_comment] = STATE(697), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [STATE(691)] = { + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(691), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(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), + [STATE(692)] = { + [sym_comment] = STATE(692), + [ts_builtin_sym_end] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1746), + [sym__newline] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_PIPE] = ACTIONS(1746), + [anon_sym_err_GT_PIPE] = ACTIONS(1746), + [anon_sym_out_GT_PIPE] = ACTIONS(1746), + [anon_sym_e_GT_PIPE] = ACTIONS(1746), + [anon_sym_o_GT_PIPE] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1746), + [anon_sym_GT2] = ACTIONS(1748), + [anon_sym_DASH2] = ACTIONS(1746), + [anon_sym_STAR2] = ACTIONS(1748), + [anon_sym_and2] = ACTIONS(1746), + [anon_sym_xor2] = ACTIONS(1746), + [anon_sym_or2] = ACTIONS(1746), + [anon_sym_not_DASHin2] = ACTIONS(1746), + [anon_sym_has2] = ACTIONS(1746), + [anon_sym_not_DASHhas2] = ACTIONS(1746), + [anon_sym_starts_DASHwith2] = ACTIONS(1746), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1746), + [anon_sym_ends_DASHwith2] = ACTIONS(1746), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1746), + [anon_sym_EQ_EQ2] = ACTIONS(1746), + [anon_sym_BANG_EQ2] = ACTIONS(1746), + [anon_sym_LT2] = ACTIONS(1748), + [anon_sym_LT_EQ2] = ACTIONS(1746), + [anon_sym_GT_EQ2] = ACTIONS(1746), + [anon_sym_EQ_TILDE2] = ACTIONS(1746), + [anon_sym_BANG_TILDE2] = ACTIONS(1746), + [anon_sym_like2] = ACTIONS(1746), + [anon_sym_not_DASHlike2] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_STAR_STAR2] = ACTIONS(1746), + [anon_sym_PLUS_PLUS2] = ACTIONS(1746), + [anon_sym_SLASH2] = ACTIONS(1748), + [anon_sym_mod2] = ACTIONS(1746), + [anon_sym_SLASH_SLASH2] = ACTIONS(1746), + [anon_sym_PLUS2] = ACTIONS(1748), + [anon_sym_bit_DASHshl2] = ACTIONS(1746), + [anon_sym_bit_DASHshr2] = ACTIONS(1746), + [anon_sym_bit_DASHand2] = ACTIONS(1746), + [anon_sym_bit_DASHxor2] = ACTIONS(1746), + [anon_sym_bit_DASHor2] = ACTIONS(1746), + [anon_sym_DOT_DOT2] = ACTIONS(1748), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1746), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1746), + [anon_sym_err_GT] = ACTIONS(1748), + [anon_sym_out_GT] = ACTIONS(1748), + [anon_sym_e_GT] = ACTIONS(1748), + [anon_sym_o_GT] = ACTIONS(1748), + [anon_sym_err_PLUSout_GT] = ACTIONS(1748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1748), + [anon_sym_o_PLUSe_GT] = ACTIONS(1748), + [anon_sym_e_PLUSo_GT] = ACTIONS(1748), + [anon_sym_err_GT_GT] = ACTIONS(1746), + [anon_sym_out_GT_GT] = ACTIONS(1746), + [anon_sym_e_GT_GT] = ACTIONS(1746), + [anon_sym_o_GT_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), + [sym__unquoted_pattern] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(699)] = { - [sym_comment] = STATE(699), - [anon_sym_if] = ACTIONS(2128), - [anon_sym_in] = ACTIONS(2128), - [sym__newline] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2128), - [anon_sym_PIPE] = ACTIONS(2128), - [anon_sym_err_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_GT_PIPE] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2128), - [anon_sym_RPAREN] = ACTIONS(2128), - [anon_sym_GT2] = ACTIONS(2130), - [anon_sym_DASH2] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_RBRACE] = ACTIONS(2128), - [anon_sym_EQ_GT] = ACTIONS(2128), - [anon_sym_STAR2] = ACTIONS(2130), - [anon_sym_and2] = ACTIONS(2128), - [anon_sym_xor2] = ACTIONS(2128), - [anon_sym_or2] = ACTIONS(2128), - [anon_sym_not_DASHin2] = ACTIONS(2128), - [anon_sym_has2] = ACTIONS(2128), - [anon_sym_not_DASHhas2] = ACTIONS(2128), - [anon_sym_starts_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2128), - [anon_sym_ends_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2128), - [anon_sym_EQ_EQ2] = ACTIONS(2128), - [anon_sym_BANG_EQ2] = ACTIONS(2128), - [anon_sym_LT2] = ACTIONS(2130), - [anon_sym_LT_EQ2] = ACTIONS(2128), - [anon_sym_GT_EQ2] = ACTIONS(2128), - [anon_sym_EQ_TILDE2] = ACTIONS(2128), - [anon_sym_BANG_TILDE2] = ACTIONS(2128), - [anon_sym_like2] = ACTIONS(2128), - [anon_sym_not_DASHlike2] = ACTIONS(2128), - [anon_sym_STAR_STAR2] = ACTIONS(2128), - [anon_sym_PLUS_PLUS2] = ACTIONS(2128), - [anon_sym_SLASH2] = ACTIONS(2130), - [anon_sym_mod2] = ACTIONS(2128), - [anon_sym_SLASH_SLASH2] = ACTIONS(2128), - [anon_sym_PLUS2] = ACTIONS(2130), - [anon_sym_bit_DASHshl2] = ACTIONS(2128), - [anon_sym_bit_DASHshr2] = ACTIONS(2128), - [anon_sym_bit_DASHand2] = ACTIONS(2128), - [anon_sym_bit_DASHxor2] = ACTIONS(2128), - [anon_sym_bit_DASHor2] = ACTIONS(2128), - [anon_sym_LBRACK2] = ACTIONS(2132), - [anon_sym_err_GT] = ACTIONS(2130), - [anon_sym_out_GT] = ACTIONS(2130), - [anon_sym_e_GT] = ACTIONS(2130), - [anon_sym_o_GT] = ACTIONS(2130), - [anon_sym_err_PLUSout_GT] = ACTIONS(2130), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2130), - [anon_sym_o_PLUSe_GT] = ACTIONS(2130), - [anon_sym_e_PLUSo_GT] = ACTIONS(2130), - [anon_sym_err_GT_GT] = ACTIONS(2128), - [anon_sym_out_GT_GT] = ACTIONS(2128), - [anon_sym_e_GT_GT] = ACTIONS(2128), - [anon_sym_o_GT_GT] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2128), + [STATE(693)] = { + [sym__expr_parenthesized_immediate] = STATE(5092), + [sym_comment] = STATE(693), + [anon_sym_in] = ACTIONS(2132), + [sym__newline] = ACTIONS(2132), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_err_GT_PIPE] = ACTIONS(2132), + [anon_sym_out_GT_PIPE] = ACTIONS(2132), + [anon_sym_e_GT_PIPE] = ACTIONS(2132), + [anon_sym_o_GT_PIPE] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2132), + [anon_sym_RPAREN] = ACTIONS(2132), + [anon_sym_GT2] = ACTIONS(2134), + [anon_sym_DASH2] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_RBRACE] = ACTIONS(2132), + [anon_sym_EQ_GT] = ACTIONS(2132), + [anon_sym_STAR2] = ACTIONS(2134), + [anon_sym_and2] = ACTIONS(2132), + [anon_sym_xor2] = ACTIONS(2132), + [anon_sym_or2] = ACTIONS(2132), + [anon_sym_not_DASHin2] = ACTIONS(2132), + [anon_sym_has2] = ACTIONS(2132), + [anon_sym_not_DASHhas2] = ACTIONS(2132), + [anon_sym_starts_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2132), + [anon_sym_ends_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2132), + [anon_sym_EQ_EQ2] = ACTIONS(2132), + [anon_sym_BANG_EQ2] = ACTIONS(2132), + [anon_sym_LT2] = ACTIONS(2134), + [anon_sym_LT_EQ2] = ACTIONS(2132), + [anon_sym_GT_EQ2] = ACTIONS(2132), + [anon_sym_EQ_TILDE2] = ACTIONS(2132), + [anon_sym_BANG_TILDE2] = ACTIONS(2132), + [anon_sym_like2] = ACTIONS(2132), + [anon_sym_not_DASHlike2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2132), + [anon_sym_PLUS_PLUS2] = ACTIONS(2132), + [anon_sym_SLASH2] = ACTIONS(2134), + [anon_sym_mod2] = ACTIONS(2132), + [anon_sym_SLASH_SLASH2] = ACTIONS(2132), + [anon_sym_PLUS2] = ACTIONS(2134), + [anon_sym_bit_DASHshl2] = ACTIONS(2132), + [anon_sym_bit_DASHshr2] = ACTIONS(2132), + [anon_sym_bit_DASHand2] = ACTIONS(2132), + [anon_sym_bit_DASHxor2] = ACTIONS(2132), + [anon_sym_bit_DASHor2] = ACTIONS(2132), + [anon_sym_err_GT] = ACTIONS(2134), + [anon_sym_out_GT] = ACTIONS(2134), + [anon_sym_e_GT] = ACTIONS(2134), + [anon_sym_o_GT] = ACTIONS(2134), + [anon_sym_err_PLUSout_GT] = ACTIONS(2134), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2134), + [anon_sym_o_PLUSe_GT] = ACTIONS(2134), + [anon_sym_e_PLUSo_GT] = ACTIONS(2134), + [anon_sym_err_GT_GT] = ACTIONS(2132), + [anon_sym_out_GT_GT] = ACTIONS(2132), + [anon_sym_e_GT_GT] = ACTIONS(2132), + [anon_sym_o_GT_GT] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2132), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(700)] = { - [sym_comment] = STATE(700), - [anon_sym_in] = ACTIONS(2134), + [STATE(694)] = { + [sym__expr_parenthesized_immediate] = STATE(5092), + [sym_comment] = STATE(694), + [anon_sym_in] = ACTIONS(2136), [sym__newline] = ACTIONS(2136), [anon_sym_SEMI] = ACTIONS(2136), [anon_sym_PIPE] = ACTIONS(2136), @@ -100561,51 +100450,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DASH2] = ACTIONS(2136), [anon_sym_LBRACE] = ACTIONS(2136), [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_EQ_GT] = ACTIONS(2136), [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(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_and2] = ACTIONS(2136), + [anon_sym_xor2] = ACTIONS(2136), + [anon_sym_or2] = ACTIONS(2136), + [anon_sym_not_DASHin2] = ACTIONS(2136), + [anon_sym_has2] = ACTIONS(2136), + [anon_sym_not_DASHhas2] = ACTIONS(2136), + [anon_sym_starts_DASHwith2] = ACTIONS(2136), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2136), + [anon_sym_ends_DASHwith2] = ACTIONS(2136), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2136), + [anon_sym_EQ_EQ2] = ACTIONS(2136), + [anon_sym_BANG_EQ2] = ACTIONS(2136), [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(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_LT_EQ2] = ACTIONS(2136), + [anon_sym_GT_EQ2] = ACTIONS(2136), + [anon_sym_EQ_TILDE2] = ACTIONS(2136), + [anon_sym_BANG_TILDE2] = ACTIONS(2136), + [anon_sym_like2] = ACTIONS(2136), + [anon_sym_not_DASHlike2] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2136), + [anon_sym_PLUS_PLUS2] = ACTIONS(2136), [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), + [anon_sym_mod2] = ACTIONS(2136), + [anon_sym_SLASH_SLASH2] = ACTIONS(2136), [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_bit_DASHshl2] = ACTIONS(2136), + [anon_sym_bit_DASHshr2] = ACTIONS(2136), + [anon_sym_bit_DASHand2] = ACTIONS(2136), + [anon_sym_bit_DASHxor2] = ACTIONS(2136), + [anon_sym_bit_DASHor2] = ACTIONS(2136), + [anon_sym_err_GT] = ACTIONS(2138), + [anon_sym_out_GT] = ACTIONS(2138), + [anon_sym_e_GT] = ACTIONS(2138), + [anon_sym_o_GT] = ACTIONS(2138), + [anon_sym_err_PLUSout_GT] = ACTIONS(2138), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), + [anon_sym_o_PLUSe_GT] = ACTIONS(2138), + [anon_sym_e_PLUSo_GT] = ACTIONS(2138), [anon_sym_err_GT_GT] = ACTIONS(2136), [anon_sym_out_GT_GT] = ACTIONS(2136), [anon_sym_e_GT_GT] = ACTIONS(2136), @@ -100616,80 +100504,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(701)] = { - [sym_comment] = STATE(701), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [STATE(695)] = { + [sym_comment] = STATE(695), + [anon_sym_if] = ACTIONS(2140), + [anon_sym_in] = ACTIONS(2140), + [sym__newline] = ACTIONS(2140), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_err_GT_PIPE] = ACTIONS(2140), + [anon_sym_out_GT_PIPE] = ACTIONS(2140), + [anon_sym_e_GT_PIPE] = ACTIONS(2140), + [anon_sym_o_GT_PIPE] = ACTIONS(2140), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2140), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2140), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2140), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2140), + [anon_sym_RPAREN] = ACTIONS(2140), + [anon_sym_GT2] = ACTIONS(2142), + [anon_sym_DASH2] = ACTIONS(2140), + [anon_sym_LBRACE] = ACTIONS(2140), + [anon_sym_RBRACE] = ACTIONS(2140), + [anon_sym_EQ_GT] = ACTIONS(2140), + [anon_sym_STAR2] = ACTIONS(2142), + [anon_sym_and2] = ACTIONS(2140), + [anon_sym_xor2] = ACTIONS(2140), + [anon_sym_or2] = ACTIONS(2140), + [anon_sym_not_DASHin2] = ACTIONS(2140), + [anon_sym_has2] = ACTIONS(2140), + [anon_sym_not_DASHhas2] = ACTIONS(2140), + [anon_sym_starts_DASHwith2] = ACTIONS(2140), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2140), + [anon_sym_ends_DASHwith2] = ACTIONS(2140), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2140), + [anon_sym_EQ_EQ2] = ACTIONS(2140), + [anon_sym_BANG_EQ2] = ACTIONS(2140), + [anon_sym_LT2] = ACTIONS(2142), + [anon_sym_LT_EQ2] = ACTIONS(2140), + [anon_sym_GT_EQ2] = ACTIONS(2140), + [anon_sym_EQ_TILDE2] = ACTIONS(2140), + [anon_sym_BANG_TILDE2] = ACTIONS(2140), + [anon_sym_like2] = ACTIONS(2140), + [anon_sym_not_DASHlike2] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_STAR_STAR2] = ACTIONS(2140), + [anon_sym_PLUS_PLUS2] = ACTIONS(2140), + [anon_sym_SLASH2] = ACTIONS(2142), + [anon_sym_mod2] = ACTIONS(2140), + [anon_sym_SLASH_SLASH2] = ACTIONS(2140), + [anon_sym_PLUS2] = ACTIONS(2142), + [anon_sym_bit_DASHshl2] = ACTIONS(2140), + [anon_sym_bit_DASHshr2] = ACTIONS(2140), + [anon_sym_bit_DASHand2] = ACTIONS(2140), + [anon_sym_bit_DASHxor2] = ACTIONS(2140), + [anon_sym_bit_DASHor2] = ACTIONS(2140), + [anon_sym_err_GT] = ACTIONS(2142), + [anon_sym_out_GT] = ACTIONS(2142), + [anon_sym_e_GT] = ACTIONS(2142), + [anon_sym_o_GT] = ACTIONS(2142), + [anon_sym_err_PLUSout_GT] = ACTIONS(2142), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2142), + [anon_sym_o_PLUSe_GT] = ACTIONS(2142), + [anon_sym_e_PLUSo_GT] = ACTIONS(2142), + [anon_sym_err_GT_GT] = ACTIONS(2140), + [anon_sym_out_GT_GT] = ACTIONS(2140), + [anon_sym_e_GT_GT] = ACTIONS(2140), + [anon_sym_o_GT_GT] = ACTIONS(2140), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2140), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2140), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2140), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2140), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(702)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), - [sym_comment] = STATE(702), + [STATE(696)] = { + [sym_comment] = STATE(696), + [anon_sym_else] = ACTIONS(2144), + [anon_sym_catch] = ACTIONS(2144), [anon_sym_in] = ACTIONS(2144), [sym__newline] = ACTIONS(2144), [anon_sym_SEMI] = ACTIONS(2144), @@ -100702,12 +100591,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_COLON] = ACTIONS(2144), + [anon_sym_LBRACK] = 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), @@ -100728,7 +100617,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -100758,9 +100646,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(703)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), - [sym_comment] = STATE(703), + [STATE(697)] = { + [sym_comment] = STATE(697), + [anon_sym_if] = ACTIONS(2148), [anon_sym_in] = ACTIONS(2148), [sym__newline] = ACTIONS(2148), [anon_sym_SEMI] = ACTIONS(2148), @@ -100799,7 +100687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2148), [anon_sym_like2] = ACTIONS(2148), [anon_sym_not_DASHlike2] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(1752), + [anon_sym_LPAREN2] = ACTIONS(2148), [anon_sym_STAR_STAR2] = ACTIONS(2148), [anon_sym_PLUS_PLUS2] = ACTIONS(2148), [anon_sym_SLASH2] = ACTIONS(2150), @@ -100829,8 +100717,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2148), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(704)] = { - [sym_comment] = STATE(704), + [STATE(698)] = { + [sym_comment] = STATE(698), [anon_sym_in] = ACTIONS(2152), [sym__newline] = ACTIONS(2152), [anon_sym_SEMI] = ACTIONS(2152), @@ -100900,1137 +100788,576 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(705)] = { - [sym_comment] = STATE(705), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(2160), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2162), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2162), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(706)] = { - [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_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_in] = ACTIONS(2170), - [sym__newline] = ACTIONS(2170), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_err_GT_PIPE] = ACTIONS(2170), - [anon_sym_out_GT_PIPE] = ACTIONS(2170), - [anon_sym_e_GT_PIPE] = ACTIONS(2170), - [anon_sym_o_GT_PIPE] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2170), - [anon_sym_RPAREN] = ACTIONS(2170), - [anon_sym_GT2] = ACTIONS(2172), - [anon_sym_DASH2] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2170), - [anon_sym_EQ_GT] = ACTIONS(2170), - [anon_sym_STAR2] = ACTIONS(2172), - [anon_sym_and2] = ACTIONS(2170), - [anon_sym_xor2] = ACTIONS(2170), - [anon_sym_or2] = ACTIONS(2170), - [anon_sym_not_DASHin2] = ACTIONS(2170), - [anon_sym_has2] = ACTIONS(2170), - [anon_sym_not_DASHhas2] = ACTIONS(2170), - [anon_sym_starts_DASHwith2] = ACTIONS(2170), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2170), - [anon_sym_ends_DASHwith2] = ACTIONS(2170), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2170), - [anon_sym_EQ_EQ2] = ACTIONS(2170), - [anon_sym_BANG_EQ2] = ACTIONS(2170), - [anon_sym_LT2] = ACTIONS(2172), - [anon_sym_LT_EQ2] = ACTIONS(2170), - [anon_sym_GT_EQ2] = ACTIONS(2170), - [anon_sym_EQ_TILDE2] = ACTIONS(2170), - [anon_sym_BANG_TILDE2] = ACTIONS(2170), - [anon_sym_like2] = ACTIONS(2170), - [anon_sym_not_DASHlike2] = ACTIONS(2170), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2170), - [anon_sym_PLUS_PLUS2] = ACTIONS(2170), - [anon_sym_SLASH2] = ACTIONS(2172), - [anon_sym_mod2] = ACTIONS(2170), - [anon_sym_SLASH_SLASH2] = ACTIONS(2170), - [anon_sym_PLUS2] = ACTIONS(2172), - [anon_sym_bit_DASHshl2] = ACTIONS(2170), - [anon_sym_bit_DASHshr2] = ACTIONS(2170), - [anon_sym_bit_DASHand2] = ACTIONS(2170), - [anon_sym_bit_DASHxor2] = ACTIONS(2170), - [anon_sym_bit_DASHor2] = ACTIONS(2170), - [anon_sym_err_GT] = ACTIONS(2172), - [anon_sym_out_GT] = ACTIONS(2172), - [anon_sym_e_GT] = ACTIONS(2172), - [anon_sym_o_GT] = ACTIONS(2172), - [anon_sym_err_PLUSout_GT] = ACTIONS(2172), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2172), - [anon_sym_o_PLUSe_GT] = ACTIONS(2172), - [anon_sym_e_PLUSo_GT] = ACTIONS(2172), - [anon_sym_err_GT_GT] = ACTIONS(2170), - [anon_sym_out_GT_GT] = ACTIONS(2170), - [anon_sym_e_GT_GT] = ACTIONS(2170), - [anon_sym_o_GT_GT] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2170), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(711)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(711), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_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), - [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), + [STATE(699)] = { + [sym_comment] = STATE(699), + [ts_builtin_sym_end] = ACTIONS(1812), + [anon_sym_in] = ACTIONS(1812), + [sym__newline] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_err_GT_PIPE] = ACTIONS(1812), + [anon_sym_out_GT_PIPE] = ACTIONS(1812), + [anon_sym_e_GT_PIPE] = ACTIONS(1812), + [anon_sym_o_GT_PIPE] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1812), + [anon_sym_GT2] = ACTIONS(1814), + [anon_sym_DASH2] = ACTIONS(1812), + [anon_sym_STAR2] = ACTIONS(1814), + [anon_sym_and2] = ACTIONS(1812), + [anon_sym_xor2] = ACTIONS(1812), + [anon_sym_or2] = ACTIONS(1812), + [anon_sym_not_DASHin2] = ACTIONS(1812), + [anon_sym_has2] = ACTIONS(1812), + [anon_sym_not_DASHhas2] = ACTIONS(1812), + [anon_sym_starts_DASHwith2] = ACTIONS(1812), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1812), + [anon_sym_ends_DASHwith2] = ACTIONS(1812), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1812), + [anon_sym_EQ_EQ2] = ACTIONS(1812), + [anon_sym_BANG_EQ2] = ACTIONS(1812), + [anon_sym_LT2] = ACTIONS(1814), + [anon_sym_LT_EQ2] = ACTIONS(1812), + [anon_sym_GT_EQ2] = ACTIONS(1812), + [anon_sym_EQ_TILDE2] = ACTIONS(1812), + [anon_sym_BANG_TILDE2] = ACTIONS(1812), + [anon_sym_like2] = ACTIONS(1812), + [anon_sym_not_DASHlike2] = ACTIONS(1812), + [anon_sym_LPAREN2] = ACTIONS(1812), + [anon_sym_STAR_STAR2] = ACTIONS(1812), + [anon_sym_PLUS_PLUS2] = ACTIONS(1812), + [anon_sym_SLASH2] = ACTIONS(1814), + [anon_sym_mod2] = ACTIONS(1812), + [anon_sym_SLASH_SLASH2] = ACTIONS(1812), + [anon_sym_PLUS2] = ACTIONS(1814), + [anon_sym_bit_DASHshl2] = ACTIONS(1812), + [anon_sym_bit_DASHshr2] = ACTIONS(1812), + [anon_sym_bit_DASHand2] = ACTIONS(1812), + [anon_sym_bit_DASHxor2] = ACTIONS(1812), + [anon_sym_bit_DASHor2] = ACTIONS(1812), + [anon_sym_DOT_DOT2] = ACTIONS(1814), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1812), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1812), + [anon_sym_err_GT] = ACTIONS(1814), + [anon_sym_out_GT] = ACTIONS(1814), + [anon_sym_e_GT] = ACTIONS(1814), + [anon_sym_o_GT] = ACTIONS(1814), + [anon_sym_err_PLUSout_GT] = ACTIONS(1814), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1814), + [anon_sym_o_PLUSe_GT] = ACTIONS(1814), + [anon_sym_e_PLUSo_GT] = ACTIONS(1814), + [anon_sym_err_GT_GT] = ACTIONS(1812), + [anon_sym_out_GT_GT] = ACTIONS(1812), + [anon_sym_e_GT_GT] = ACTIONS(1812), + [anon_sym_o_GT_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1812), + [sym__unquoted_pattern] = ACTIONS(1814), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(714)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(714), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_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), + [STATE(700)] = { + [sym_comment] = STATE(700), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_in] = ACTIONS(2160), + [sym__newline] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_err_GT_PIPE] = ACTIONS(2160), + [anon_sym_out_GT_PIPE] = ACTIONS(2160), + [anon_sym_e_GT_PIPE] = ACTIONS(2160), + [anon_sym_o_GT_PIPE] = ACTIONS(2160), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2160), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2160), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2160), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2160), + [anon_sym_RPAREN] = ACTIONS(2160), + [anon_sym_GT2] = ACTIONS(2162), + [anon_sym_DASH2] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_EQ_GT] = ACTIONS(2160), + [anon_sym_STAR2] = ACTIONS(2162), + [anon_sym_and2] = ACTIONS(2160), + [anon_sym_xor2] = ACTIONS(2160), + [anon_sym_or2] = ACTIONS(2160), + [anon_sym_not_DASHin2] = ACTIONS(2160), + [anon_sym_has2] = ACTIONS(2160), + [anon_sym_not_DASHhas2] = ACTIONS(2160), + [anon_sym_starts_DASHwith2] = ACTIONS(2160), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2160), + [anon_sym_ends_DASHwith2] = ACTIONS(2160), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2160), + [anon_sym_EQ_EQ2] = ACTIONS(2160), + [anon_sym_BANG_EQ2] = ACTIONS(2160), + [anon_sym_LT2] = ACTIONS(2162), + [anon_sym_LT_EQ2] = ACTIONS(2160), + [anon_sym_GT_EQ2] = ACTIONS(2160), + [anon_sym_EQ_TILDE2] = ACTIONS(2160), + [anon_sym_BANG_TILDE2] = ACTIONS(2160), + [anon_sym_like2] = ACTIONS(2160), + [anon_sym_not_DASHlike2] = ACTIONS(2160), + [anon_sym_STAR_STAR2] = ACTIONS(2160), + [anon_sym_PLUS_PLUS2] = ACTIONS(2160), + [anon_sym_SLASH2] = ACTIONS(2162), + [anon_sym_mod2] = ACTIONS(2160), + [anon_sym_SLASH_SLASH2] = ACTIONS(2160), + [anon_sym_PLUS2] = ACTIONS(2162), + [anon_sym_bit_DASHshl2] = ACTIONS(2160), + [anon_sym_bit_DASHshr2] = ACTIONS(2160), + [anon_sym_bit_DASHand2] = ACTIONS(2160), + [anon_sym_bit_DASHxor2] = ACTIONS(2160), + [anon_sym_bit_DASHor2] = ACTIONS(2160), + [anon_sym_COLON2] = ACTIONS(2160), + [anon_sym_err_GT] = ACTIONS(2162), + [anon_sym_out_GT] = ACTIONS(2162), + [anon_sym_e_GT] = ACTIONS(2162), + [anon_sym_o_GT] = ACTIONS(2162), + [anon_sym_err_PLUSout_GT] = ACTIONS(2162), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2162), + [anon_sym_o_PLUSe_GT] = ACTIONS(2162), + [anon_sym_e_PLUSo_GT] = ACTIONS(2162), + [anon_sym_err_GT_GT] = ACTIONS(2160), + [anon_sym_out_GT_GT] = ACTIONS(2160), + [anon_sym_e_GT_GT] = ACTIONS(2160), + [anon_sym_o_GT_GT] = ACTIONS(2160), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2160), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2160), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2160), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2160), [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), + [STATE(701)] = { + [sym_comment] = STATE(701), + [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_LPAREN2] = 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_DOT_DOT2] = ACTIONS(1902), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1900), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1900), + [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), + [sym__unquoted_pattern] = ACTIONS(1902), [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), + [STATE(702)] = { + [sym_comment] = STATE(702), + [anon_sym_in] = ACTIONS(1716), + [sym__newline] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_err_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_GT_PIPE] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_GT2] = ACTIONS(1629), + [anon_sym_DASH2] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_STAR2] = ACTIONS(1629), + [anon_sym_and2] = ACTIONS(1716), + [anon_sym_xor2] = ACTIONS(1716), + [anon_sym_or2] = ACTIONS(1716), + [anon_sym_not_DASHin2] = ACTIONS(1716), + [anon_sym_has2] = ACTIONS(1716), + [anon_sym_not_DASHhas2] = ACTIONS(1716), + [anon_sym_starts_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), + [anon_sym_ends_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), + [anon_sym_EQ_EQ2] = ACTIONS(1716), + [anon_sym_BANG_EQ2] = ACTIONS(1716), + [anon_sym_LT2] = ACTIONS(1629), + [anon_sym_LT_EQ2] = ACTIONS(1716), + [anon_sym_GT_EQ2] = ACTIONS(1716), + [anon_sym_EQ_TILDE2] = ACTIONS(1716), + [anon_sym_BANG_TILDE2] = ACTIONS(1716), + [anon_sym_like2] = ACTIONS(1716), + [anon_sym_not_DASHlike2] = ACTIONS(1716), + [anon_sym_STAR_STAR2] = ACTIONS(1716), + [anon_sym_PLUS_PLUS2] = ACTIONS(1716), + [anon_sym_SLASH2] = ACTIONS(1629), + [anon_sym_mod2] = ACTIONS(1716), + [anon_sym_SLASH_SLASH2] = ACTIONS(1716), + [anon_sym_PLUS2] = ACTIONS(1629), + [anon_sym_bit_DASHshl2] = ACTIONS(1716), + [anon_sym_bit_DASHshr2] = ACTIONS(1716), + [anon_sym_bit_DASHand2] = ACTIONS(1716), + [anon_sym_bit_DASHxor2] = ACTIONS(1716), + [anon_sym_bit_DASHor2] = ACTIONS(1716), + [anon_sym_DOT_DOT2] = ACTIONS(1633), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), + [anon_sym_err_GT] = ACTIONS(1629), + [anon_sym_out_GT] = ACTIONS(1629), + [anon_sym_e_GT] = ACTIONS(1629), + [anon_sym_o_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT] = ACTIONS(1629), + [anon_sym_err_GT_GT] = ACTIONS(1716), + [anon_sym_out_GT_GT] = ACTIONS(1716), + [anon_sym_e_GT_GT] = ACTIONS(1716), + [anon_sym_o_GT_GT] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(717)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2189), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(717), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_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), + [STATE(703)] = { + [sym_comment] = STATE(703), + [anon_sym_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_DOT_DOT2] = ACTIONS(2164), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2166), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2166), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), [anon_sym_POUND] = ACTIONS(3), - [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), - [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), + [STATE(704)] = { + [sym_comment] = STATE(704), + [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_BANG] = ACTIONS(2168), + [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), - [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(705)] = { + [sym_comment] = STATE(705), + [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(2170), + [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(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(706)] = { + [sym_comment] = STATE(706), + [anon_sym_in] = ACTIONS(1746), + [sym__newline] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_PIPE] = ACTIONS(1746), + [anon_sym_err_GT_PIPE] = ACTIONS(1746), + [anon_sym_out_GT_PIPE] = ACTIONS(1746), + [anon_sym_e_GT_PIPE] = ACTIONS(1746), + [anon_sym_o_GT_PIPE] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_GT2] = ACTIONS(1748), + [anon_sym_DASH2] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_STAR2] = ACTIONS(1748), + [anon_sym_and2] = ACTIONS(1746), + [anon_sym_xor2] = ACTIONS(1746), + [anon_sym_or2] = ACTIONS(1746), + [anon_sym_not_DASHin2] = ACTIONS(1746), + [anon_sym_has2] = ACTIONS(1746), + [anon_sym_not_DASHhas2] = ACTIONS(1746), + [anon_sym_starts_DASHwith2] = ACTIONS(1746), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1746), + [anon_sym_ends_DASHwith2] = ACTIONS(1746), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1746), + [anon_sym_EQ_EQ2] = ACTIONS(1746), + [anon_sym_BANG_EQ2] = ACTIONS(1746), + [anon_sym_LT2] = ACTIONS(1748), + [anon_sym_LT_EQ2] = ACTIONS(1746), + [anon_sym_GT_EQ2] = ACTIONS(1746), + [anon_sym_EQ_TILDE2] = ACTIONS(1746), + [anon_sym_BANG_TILDE2] = ACTIONS(1746), + [anon_sym_like2] = ACTIONS(1746), + [anon_sym_not_DASHlike2] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_STAR_STAR2] = ACTIONS(1746), + [anon_sym_PLUS_PLUS2] = ACTIONS(1746), + [anon_sym_SLASH2] = ACTIONS(1748), + [anon_sym_mod2] = ACTIONS(1746), + [anon_sym_SLASH_SLASH2] = ACTIONS(1746), + [anon_sym_PLUS2] = ACTIONS(1748), + [anon_sym_bit_DASHshl2] = ACTIONS(1746), + [anon_sym_bit_DASHshr2] = ACTIONS(1746), + [anon_sym_bit_DASHand2] = ACTIONS(1746), + [anon_sym_bit_DASHxor2] = ACTIONS(1746), + [anon_sym_bit_DASHor2] = ACTIONS(1746), + [aux_sym__immediate_decimal_token1] = ACTIONS(2172), + [aux_sym__immediate_decimal_token5] = ACTIONS(2174), + [anon_sym_err_GT] = ACTIONS(1748), + [anon_sym_out_GT] = ACTIONS(1748), + [anon_sym_e_GT] = ACTIONS(1748), + [anon_sym_o_GT] = ACTIONS(1748), + [anon_sym_err_PLUSout_GT] = ACTIONS(1748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1748), + [anon_sym_o_PLUSe_GT] = ACTIONS(1748), + [anon_sym_e_PLUSo_GT] = ACTIONS(1748), + [anon_sym_err_GT_GT] = ACTIONS(1746), + [anon_sym_out_GT_GT] = ACTIONS(1746), + [anon_sym_e_GT_GT] = ACTIONS(1746), + [anon_sym_o_GT_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), + [sym__unquoted_pattern] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(721)] = { - [sym_comment] = STATE(721), - [anon_sym_if] = ACTIONS(2100), + [STATE(707)] = { + [sym_comment] = STATE(707), [anon_sym_in] = ACTIONS(2100), [sym__newline] = ACTIONS(2100), [anon_sym_SEMI] = ACTIONS(2100), @@ -102044,12 +101371,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_GT2] = ACTIONS(2104), [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_STAR2] = ACTIONS(2104), [anon_sym_and2] = ACTIONS(2100), [anon_sym_xor2] = ACTIONS(2100), [anon_sym_or2] = ACTIONS(2100), @@ -102062,7 +101388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LT2] = ACTIONS(2104), [anon_sym_LT_EQ2] = ACTIONS(2100), [anon_sym_GT_EQ2] = ACTIONS(2100), [anon_sym_EQ_TILDE2] = ACTIONS(2100), @@ -102071,23 +101397,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SLASH2] = ACTIONS(2104), [anon_sym_mod2] = ACTIONS(2100), [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), [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_DOT_DOT2] = ACTIONS(1633), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), + [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(2100), [anon_sym_out_GT_GT] = ACTIONS(2100), [anon_sym_e_GT_GT] = ACTIONS(2100), @@ -102098,358 +101427,643 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), [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(708)] = { + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(708), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(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(709)] = { + [sym__expr_parenthesized_immediate] = STATE(5092), + [sym_comment] = STATE(709), + [anon_sym_in] = ACTIONS(2176), + [sym__newline] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2176), + [anon_sym_err_GT_PIPE] = ACTIONS(2176), + [anon_sym_out_GT_PIPE] = ACTIONS(2176), + [anon_sym_e_GT_PIPE] = ACTIONS(2176), + [anon_sym_o_GT_PIPE] = ACTIONS(2176), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2176), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2176), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2176), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2176), + [anon_sym_RPAREN] = ACTIONS(2176), + [anon_sym_GT2] = ACTIONS(2178), + [anon_sym_DASH2] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_EQ_GT] = ACTIONS(2176), + [anon_sym_STAR2] = ACTIONS(2178), + [anon_sym_and2] = ACTIONS(2176), + [anon_sym_xor2] = ACTIONS(2176), + [anon_sym_or2] = ACTIONS(2176), + [anon_sym_not_DASHin2] = ACTIONS(2176), + [anon_sym_has2] = ACTIONS(2176), + [anon_sym_not_DASHhas2] = ACTIONS(2176), + [anon_sym_starts_DASHwith2] = ACTIONS(2176), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2176), + [anon_sym_ends_DASHwith2] = ACTIONS(2176), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2176), + [anon_sym_EQ_EQ2] = ACTIONS(2176), + [anon_sym_BANG_EQ2] = ACTIONS(2176), + [anon_sym_LT2] = ACTIONS(2178), + [anon_sym_LT_EQ2] = ACTIONS(2176), + [anon_sym_GT_EQ2] = ACTIONS(2176), + [anon_sym_EQ_TILDE2] = ACTIONS(2176), + [anon_sym_BANG_TILDE2] = ACTIONS(2176), + [anon_sym_like2] = ACTIONS(2176), + [anon_sym_not_DASHlike2] = ACTIONS(2176), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2176), + [anon_sym_PLUS_PLUS2] = ACTIONS(2176), + [anon_sym_SLASH2] = ACTIONS(2178), + [anon_sym_mod2] = ACTIONS(2176), + [anon_sym_SLASH_SLASH2] = ACTIONS(2176), + [anon_sym_PLUS2] = ACTIONS(2178), + [anon_sym_bit_DASHshl2] = ACTIONS(2176), + [anon_sym_bit_DASHshr2] = ACTIONS(2176), + [anon_sym_bit_DASHand2] = ACTIONS(2176), + [anon_sym_bit_DASHxor2] = ACTIONS(2176), + [anon_sym_bit_DASHor2] = ACTIONS(2176), + [anon_sym_err_GT] = ACTIONS(2178), + [anon_sym_out_GT] = ACTIONS(2178), + [anon_sym_e_GT] = ACTIONS(2178), + [anon_sym_o_GT] = ACTIONS(2178), + [anon_sym_err_PLUSout_GT] = ACTIONS(2178), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2178), + [anon_sym_o_PLUSe_GT] = ACTIONS(2178), + [anon_sym_e_PLUSo_GT] = ACTIONS(2178), + [anon_sym_err_GT_GT] = ACTIONS(2176), + [anon_sym_out_GT_GT] = ACTIONS(2176), + [anon_sym_e_GT_GT] = ACTIONS(2176), + [anon_sym_o_GT_GT] = ACTIONS(2176), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2176), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2176), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2176), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2176), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(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(710)] = { + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(710), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(725)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1288), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(974), - [sym__unquoted_with_expr] = STATE(1312), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(725), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [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), + [STATE(711)] = { + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(711), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), - [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), + [STATE(712)] = { + [sym__expr_parenthesized_immediate] = STATE(5092), + [sym_comment] = STATE(712), + [anon_sym_in] = ACTIONS(2180), + [sym__newline] = ACTIONS(2180), + [anon_sym_SEMI] = ACTIONS(2180), + [anon_sym_PIPE] = ACTIONS(2180), + [anon_sym_err_GT_PIPE] = ACTIONS(2180), + [anon_sym_out_GT_PIPE] = ACTIONS(2180), + [anon_sym_e_GT_PIPE] = ACTIONS(2180), + [anon_sym_o_GT_PIPE] = ACTIONS(2180), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2180), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2180), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2180), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2180), + [anon_sym_RPAREN] = ACTIONS(2180), + [anon_sym_GT2] = ACTIONS(2182), + [anon_sym_DASH2] = ACTIONS(2180), + [anon_sym_LBRACE] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2180), + [anon_sym_EQ_GT] = ACTIONS(2180), + [anon_sym_STAR2] = ACTIONS(2182), + [anon_sym_and2] = ACTIONS(2180), + [anon_sym_xor2] = ACTIONS(2180), + [anon_sym_or2] = ACTIONS(2180), + [anon_sym_not_DASHin2] = ACTIONS(2180), + [anon_sym_has2] = ACTIONS(2180), + [anon_sym_not_DASHhas2] = ACTIONS(2180), + [anon_sym_starts_DASHwith2] = ACTIONS(2180), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2180), + [anon_sym_ends_DASHwith2] = ACTIONS(2180), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2180), + [anon_sym_EQ_EQ2] = ACTIONS(2180), + [anon_sym_BANG_EQ2] = ACTIONS(2180), + [anon_sym_LT2] = ACTIONS(2182), + [anon_sym_LT_EQ2] = ACTIONS(2180), + [anon_sym_GT_EQ2] = ACTIONS(2180), + [anon_sym_EQ_TILDE2] = ACTIONS(2180), + [anon_sym_BANG_TILDE2] = ACTIONS(2180), + [anon_sym_like2] = ACTIONS(2180), + [anon_sym_not_DASHlike2] = ACTIONS(2180), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2180), + [anon_sym_PLUS_PLUS2] = ACTIONS(2180), + [anon_sym_SLASH2] = ACTIONS(2182), + [anon_sym_mod2] = ACTIONS(2180), + [anon_sym_SLASH_SLASH2] = ACTIONS(2180), + [anon_sym_PLUS2] = ACTIONS(2182), + [anon_sym_bit_DASHshl2] = ACTIONS(2180), + [anon_sym_bit_DASHshr2] = ACTIONS(2180), + [anon_sym_bit_DASHand2] = ACTIONS(2180), + [anon_sym_bit_DASHxor2] = ACTIONS(2180), + [anon_sym_bit_DASHor2] = ACTIONS(2180), + [anon_sym_err_GT] = ACTIONS(2182), + [anon_sym_out_GT] = ACTIONS(2182), + [anon_sym_e_GT] = ACTIONS(2182), + [anon_sym_o_GT] = ACTIONS(2182), + [anon_sym_err_PLUSout_GT] = ACTIONS(2182), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2182), + [anon_sym_o_PLUSe_GT] = ACTIONS(2182), + [anon_sym_e_PLUSo_GT] = ACTIONS(2182), + [anon_sym_err_GT_GT] = ACTIONS(2180), + [anon_sym_out_GT_GT] = ACTIONS(2180), + [anon_sym_e_GT_GT] = ACTIONS(2180), + [anon_sym_o_GT_GT] = ACTIONS(2180), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2180), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2180), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2180), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2180), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(727)] = { - [sym_comment] = STATE(727), + [STATE(713)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2176), + [sym_expr_parenthesized] = STATE(1955), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1976), + [sym_val_variable] = STATE(1958), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1739), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(687), + [sym__unquoted_with_expr] = STATE(912), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(713), + [anon_sym_true] = ACTIONS(2184), + [anon_sym_false] = ACTIONS(2184), + [anon_sym_null] = ACTIONS(2186), + [aux_sym_cmd_identifier_token3] = ACTIONS(2188), + [aux_sym_cmd_identifier_token4] = ACTIONS(2188), + [aux_sym_cmd_identifier_token5] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2190), + [aux_sym_expr_unary_token1] = ACTIONS(2192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), + [anon_sym_DOT_DOT_LT] = ACTIONS(2194), + [aux_sym__val_number_decimal_token1] = ACTIONS(2196), + [aux_sym__val_number_decimal_token2] = ACTIONS(2198), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(714)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2155), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(683), + [sym__unquoted_with_expr] = STATE(899), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(714), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2042), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(715)] = { + [sym_comment] = STATE(715), + [anon_sym_in] = ACTIONS(1812), + [sym__newline] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_err_GT_PIPE] = ACTIONS(1812), + [anon_sym_out_GT_PIPE] = ACTIONS(1812), + [anon_sym_e_GT_PIPE] = ACTIONS(1812), + [anon_sym_o_GT_PIPE] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1812), + [anon_sym_RPAREN] = ACTIONS(1812), + [anon_sym_GT2] = ACTIONS(1814), + [anon_sym_DASH2] = ACTIONS(1812), + [anon_sym_RBRACE] = ACTIONS(1812), + [anon_sym_STAR2] = ACTIONS(1814), + [anon_sym_and2] = ACTIONS(1812), + [anon_sym_xor2] = ACTIONS(1812), + [anon_sym_or2] = ACTIONS(1812), + [anon_sym_not_DASHin2] = ACTIONS(1812), + [anon_sym_has2] = ACTIONS(1812), + [anon_sym_not_DASHhas2] = ACTIONS(1812), + [anon_sym_starts_DASHwith2] = ACTIONS(1812), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1812), + [anon_sym_ends_DASHwith2] = ACTIONS(1812), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1812), + [anon_sym_EQ_EQ2] = ACTIONS(1812), + [anon_sym_BANG_EQ2] = ACTIONS(1812), + [anon_sym_LT2] = ACTIONS(1814), + [anon_sym_LT_EQ2] = ACTIONS(1812), + [anon_sym_GT_EQ2] = ACTIONS(1812), + [anon_sym_EQ_TILDE2] = ACTIONS(1812), + [anon_sym_BANG_TILDE2] = ACTIONS(1812), + [anon_sym_like2] = ACTIONS(1812), + [anon_sym_not_DASHlike2] = ACTIONS(1812), + [anon_sym_LPAREN2] = ACTIONS(1812), + [anon_sym_STAR_STAR2] = ACTIONS(1812), + [anon_sym_PLUS_PLUS2] = ACTIONS(1812), + [anon_sym_SLASH2] = ACTIONS(1814), + [anon_sym_mod2] = ACTIONS(1812), + [anon_sym_SLASH_SLASH2] = ACTIONS(1812), + [anon_sym_PLUS2] = ACTIONS(1814), + [anon_sym_bit_DASHshl2] = ACTIONS(1812), + [anon_sym_bit_DASHshr2] = ACTIONS(1812), + [anon_sym_bit_DASHand2] = ACTIONS(1812), + [anon_sym_bit_DASHxor2] = ACTIONS(1812), + [anon_sym_bit_DASHor2] = ACTIONS(1812), + [aux_sym__immediate_decimal_token5] = ACTIONS(2204), + [anon_sym_err_GT] = ACTIONS(1814), + [anon_sym_out_GT] = ACTIONS(1814), + [anon_sym_e_GT] = ACTIONS(1814), + [anon_sym_o_GT] = ACTIONS(1814), + [anon_sym_err_PLUSout_GT] = ACTIONS(1814), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1814), + [anon_sym_o_PLUSe_GT] = ACTIONS(1814), + [anon_sym_e_PLUSo_GT] = ACTIONS(1814), + [anon_sym_err_GT_GT] = ACTIONS(1812), + [anon_sym_out_GT_GT] = ACTIONS(1812), + [anon_sym_e_GT_GT] = ACTIONS(1812), + [anon_sym_o_GT_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1812), + [sym__unquoted_pattern] = ACTIONS(1814), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(716)] = { + [sym_comment] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1746), + [sym__newline] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_PIPE] = ACTIONS(1746), + [anon_sym_err_GT_PIPE] = ACTIONS(1746), + [anon_sym_out_GT_PIPE] = ACTIONS(1746), + [anon_sym_e_GT_PIPE] = ACTIONS(1746), + [anon_sym_o_GT_PIPE] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1746), + [anon_sym_GT2] = ACTIONS(1748), + [anon_sym_DASH2] = ACTIONS(1746), + [anon_sym_STAR2] = ACTIONS(1748), + [anon_sym_and2] = ACTIONS(1746), + [anon_sym_xor2] = ACTIONS(1746), + [anon_sym_or2] = ACTIONS(1746), + [anon_sym_not_DASHin2] = ACTIONS(1746), + [anon_sym_has2] = ACTIONS(1746), + [anon_sym_not_DASHhas2] = ACTIONS(1746), + [anon_sym_starts_DASHwith2] = ACTIONS(1746), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1746), + [anon_sym_ends_DASHwith2] = ACTIONS(1746), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1746), + [anon_sym_EQ_EQ2] = ACTIONS(1746), + [anon_sym_BANG_EQ2] = ACTIONS(1746), + [anon_sym_LT2] = ACTIONS(1748), + [anon_sym_LT_EQ2] = ACTIONS(1746), + [anon_sym_GT_EQ2] = ACTIONS(1746), + [anon_sym_EQ_TILDE2] = ACTIONS(1746), + [anon_sym_BANG_TILDE2] = ACTIONS(1746), + [anon_sym_like2] = ACTIONS(1746), + [anon_sym_not_DASHlike2] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_STAR_STAR2] = ACTIONS(1746), + [anon_sym_PLUS_PLUS2] = ACTIONS(1746), + [anon_sym_SLASH2] = ACTIONS(1748), + [anon_sym_mod2] = ACTIONS(1746), + [anon_sym_SLASH_SLASH2] = ACTIONS(1746), + [anon_sym_PLUS2] = ACTIONS(1748), + [anon_sym_bit_DASHshl2] = ACTIONS(1746), + [anon_sym_bit_DASHshr2] = ACTIONS(1746), + [anon_sym_bit_DASHand2] = ACTIONS(1746), + [anon_sym_bit_DASHxor2] = ACTIONS(1746), + [anon_sym_bit_DASHor2] = ACTIONS(1746), + [aux_sym__immediate_decimal_token1] = ACTIONS(2206), + [aux_sym__immediate_decimal_token5] = ACTIONS(2208), + [anon_sym_err_GT] = ACTIONS(1748), + [anon_sym_out_GT] = ACTIONS(1748), + [anon_sym_e_GT] = ACTIONS(1748), + [anon_sym_o_GT] = ACTIONS(1748), + [anon_sym_err_PLUSout_GT] = ACTIONS(1748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1748), + [anon_sym_o_PLUSe_GT] = ACTIONS(1748), + [anon_sym_e_PLUSo_GT] = ACTIONS(1748), + [anon_sym_err_GT_GT] = ACTIONS(1746), + [anon_sym_out_GT_GT] = ACTIONS(1746), + [anon_sym_e_GT_GT] = ACTIONS(1746), + [anon_sym_o_GT_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), + [sym__unquoted_pattern] = ACTIONS(1748), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(717)] = { + [sym_comment] = STATE(717), [anon_sym_if] = ACTIONS(2210), [anon_sym_in] = ACTIONS(2210), [sym__newline] = ACTIONS(2210), @@ -102518,8 +102132,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2210), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(728)] = { - [sym_comment] = STATE(728), + [STATE(718)] = { + [sym_comment] = STATE(718), [anon_sym_if] = ACTIONS(2214), [anon_sym_in] = ACTIONS(2214), [sym__newline] = ACTIONS(2214), @@ -102588,78 +102202,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2214), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(729)] = { - [sym_comment] = STATE(729), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1537), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [STATE(719)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2156), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(684), + [sym__unquoted_with_expr] = STATE(905), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(719), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2042), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(730)] = { - [sym_comment] = STATE(730), + [STATE(720)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2157), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(685), + [sym__unquoted_with_expr] = STATE(908), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(720), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2042), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(721)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2158), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(687), + [sym__unquoted_with_expr] = STATE(912), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(721), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2042), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(722)] = { + [sym_comment] = STATE(722), [anon_sym_if] = ACTIONS(2218), [anon_sym_in] = ACTIONS(2218), [sym__newline] = ACTIONS(2218), @@ -102728,288 +102482,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1012), - [sym__unquoted_with_expr] = STATE(1307), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(731), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(732)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1278), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1071), - [sym__unquoted_with_expr] = STATE(1302), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(732), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(733)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1308), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1127), - [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), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(734)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1283), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(972), - [sym__unquoted_with_expr] = STATE(1281), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(734), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(735)] = { - [sym_comment] = STATE(735), + [STATE(723)] = { + [sym_comment] = STATE(723), [anon_sym_if] = ACTIONS(2222), [anon_sym_in] = ACTIONS(2222), [sym__newline] = ACTIONS(2222), @@ -103078,8 +102552,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(736)] = { - [sym_comment] = STATE(736), + [STATE(724)] = { + [sym_comment] = STATE(724), [anon_sym_if] = ACTIONS(2226), [anon_sym_in] = ACTIONS(2226), [sym__newline] = ACTIONS(2226), @@ -103148,8 +102622,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(737)] = { - [sym_comment] = STATE(737), + [STATE(725)] = { + [sym_comment] = STATE(725), [anon_sym_if] = ACTIONS(2230), [anon_sym_in] = ACTIONS(2230), [sym__newline] = ACTIONS(2230), @@ -103218,8 +102692,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2230), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(738)] = { - [sym_comment] = STATE(738), + [STATE(726)] = { + [sym_comment] = STATE(726), [anon_sym_if] = ACTIONS(2234), [anon_sym_in] = ACTIONS(2234), [sym__newline] = ACTIONS(2234), @@ -103288,498 +102762,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_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_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_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), + [STATE(727)] = { + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1283), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1025), + [sym__unquoted_with_expr] = STATE(1285), + [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_comment] = STATE(727), + [anon_sym_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [anon_sym_null] = ACTIONS(2240), + [aux_sym_cmd_identifier_token3] = ACTIONS(2242), + [aux_sym_cmd_identifier_token4] = ACTIONS(2242), + [aux_sym_cmd_identifier_token5] = ACTIONS(2242), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2244), [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(2246), + [anon_sym_DOT_DOT_LT] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2250), + [aux_sym__val_number_decimal_token3] = ACTIONS(2252), + [aux_sym__val_number_decimal_token4] = ACTIONS(2252), [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(2254), [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(2256), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(746)] = { - [sym_comment] = STATE(746), + [STATE(728)] = { + [sym_comment] = STATE(728), [anon_sym_in] = ACTIONS(2258), [sym__newline] = ACTIONS(2258), [anon_sym_SEMI] = ACTIONS(2258), @@ -103848,8 +102902,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2258), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(747)] = { - [sym_comment] = STATE(747), + [STATE(729)] = { + [sym_comment] = STATE(729), + [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_POUND] = ACTIONS(3), + }, + [STATE(730)] = { + [aux_sym__repeat_newline] = STATE(1083), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(730), [anon_sym_in] = ACTIONS(2262), [sym__newline] = ACTIONS(2262), [anon_sym_SEMI] = ACTIONS(2262), @@ -103866,8 +102992,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -103888,6 +103012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2262), [anon_sym_like2] = ACTIONS(2262), [anon_sym_not_DASHlike2] = ACTIONS(2262), + [anon_sym_LPAREN2] = ACTIONS(1766), [anon_sym_STAR_STAR2] = ACTIONS(2262), [anon_sym_PLUS_PLUS2] = ACTIONS(2262), [anon_sym_SLASH2] = ACTIONS(2264), @@ -103899,7 +103024,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -103918,2898 +103042,3808 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(731)] = { + [aux_sym__repeat_newline] = STATE(1084), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(731), + [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_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_LPAREN2] = ACTIONS(1766), + [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_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(732)] = { + [sym_comment] = STATE(732), + [anon_sym_in] = ACTIONS(2266), + [sym__newline] = ACTIONS(2266), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(2266), + [anon_sym_err_GT_PIPE] = ACTIONS(2266), + [anon_sym_out_GT_PIPE] = ACTIONS(2266), + [anon_sym_e_GT_PIPE] = ACTIONS(2266), + [anon_sym_o_GT_PIPE] = ACTIONS(2266), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2266), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2266), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2266), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2266), + [anon_sym_RPAREN] = ACTIONS(2266), + [anon_sym_GT2] = ACTIONS(2268), + [anon_sym_DASH2] = ACTIONS(2266), + [anon_sym_LBRACE] = ACTIONS(2266), + [anon_sym_RBRACE] = ACTIONS(2266), + [anon_sym_EQ_GT] = ACTIONS(2266), + [anon_sym_STAR2] = ACTIONS(2268), + [anon_sym_and2] = ACTIONS(2266), + [anon_sym_xor2] = ACTIONS(2266), + [anon_sym_or2] = ACTIONS(2266), + [anon_sym_not_DASHin2] = ACTIONS(2266), + [anon_sym_has2] = ACTIONS(2266), + [anon_sym_not_DASHhas2] = ACTIONS(2266), + [anon_sym_starts_DASHwith2] = ACTIONS(2266), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2266), + [anon_sym_ends_DASHwith2] = ACTIONS(2266), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2266), + [anon_sym_EQ_EQ2] = ACTIONS(2266), + [anon_sym_BANG_EQ2] = ACTIONS(2266), + [anon_sym_LT2] = ACTIONS(2268), + [anon_sym_LT_EQ2] = ACTIONS(2266), + [anon_sym_GT_EQ2] = ACTIONS(2266), + [anon_sym_EQ_TILDE2] = ACTIONS(2266), + [anon_sym_BANG_TILDE2] = ACTIONS(2266), + [anon_sym_like2] = ACTIONS(2266), + [anon_sym_not_DASHlike2] = ACTIONS(2266), + [anon_sym_STAR_STAR2] = ACTIONS(2266), + [anon_sym_PLUS_PLUS2] = ACTIONS(2266), + [anon_sym_SLASH2] = ACTIONS(2268), + [anon_sym_mod2] = ACTIONS(2266), + [anon_sym_SLASH_SLASH2] = ACTIONS(2266), + [anon_sym_PLUS2] = ACTIONS(2268), + [anon_sym_bit_DASHshl2] = ACTIONS(2266), + [anon_sym_bit_DASHshr2] = ACTIONS(2266), + [anon_sym_bit_DASHand2] = ACTIONS(2266), + [anon_sym_bit_DASHxor2] = ACTIONS(2266), + [anon_sym_bit_DASHor2] = ACTIONS(2266), + [anon_sym_COLON2] = ACTIONS(2266), + [anon_sym_err_GT] = ACTIONS(2268), + [anon_sym_out_GT] = ACTIONS(2268), + [anon_sym_e_GT] = ACTIONS(2268), + [anon_sym_o_GT] = ACTIONS(2268), + [anon_sym_err_PLUSout_GT] = ACTIONS(2268), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2268), + [anon_sym_o_PLUSe_GT] = ACTIONS(2268), + [anon_sym_e_PLUSo_GT] = ACTIONS(2268), + [anon_sym_err_GT_GT] = ACTIONS(2266), + [anon_sym_out_GT_GT] = ACTIONS(2266), + [anon_sym_e_GT_GT] = ACTIONS(2266), + [anon_sym_o_GT_GT] = ACTIONS(2266), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2266), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2266), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2266), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2266), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(733)] = { + [sym_comment] = STATE(733), + [anon_sym_in] = ACTIONS(2270), + [sym__newline] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_err_GT_PIPE] = ACTIONS(2270), + [anon_sym_out_GT_PIPE] = ACTIONS(2270), + [anon_sym_e_GT_PIPE] = ACTIONS(2270), + [anon_sym_o_GT_PIPE] = ACTIONS(2270), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2270), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2270), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2270), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2270), + [anon_sym_RPAREN] = ACTIONS(2270), + [anon_sym_GT2] = ACTIONS(2272), + [anon_sym_DASH2] = ACTIONS(2270), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2270), + [anon_sym_EQ_GT] = ACTIONS(2270), + [anon_sym_STAR2] = ACTIONS(2272), + [anon_sym_and2] = ACTIONS(2270), + [anon_sym_xor2] = ACTIONS(2270), + [anon_sym_or2] = ACTIONS(2270), + [anon_sym_not_DASHin2] = ACTIONS(2270), + [anon_sym_has2] = ACTIONS(2270), + [anon_sym_not_DASHhas2] = ACTIONS(2270), + [anon_sym_starts_DASHwith2] = ACTIONS(2270), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2270), + [anon_sym_ends_DASHwith2] = ACTIONS(2270), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2270), + [anon_sym_EQ_EQ2] = ACTIONS(2270), + [anon_sym_BANG_EQ2] = ACTIONS(2270), + [anon_sym_LT2] = ACTIONS(2272), + [anon_sym_LT_EQ2] = ACTIONS(2270), + [anon_sym_GT_EQ2] = ACTIONS(2270), + [anon_sym_EQ_TILDE2] = ACTIONS(2270), + [anon_sym_BANG_TILDE2] = ACTIONS(2270), + [anon_sym_like2] = ACTIONS(2270), + [anon_sym_not_DASHlike2] = ACTIONS(2270), + [anon_sym_STAR_STAR2] = ACTIONS(2270), + [anon_sym_PLUS_PLUS2] = ACTIONS(2270), + [anon_sym_SLASH2] = ACTIONS(2272), + [anon_sym_mod2] = ACTIONS(2270), + [anon_sym_SLASH_SLASH2] = ACTIONS(2270), + [anon_sym_PLUS2] = ACTIONS(2272), + [anon_sym_bit_DASHshl2] = ACTIONS(2270), + [anon_sym_bit_DASHshr2] = ACTIONS(2270), + [anon_sym_bit_DASHand2] = ACTIONS(2270), + [anon_sym_bit_DASHxor2] = ACTIONS(2270), + [anon_sym_bit_DASHor2] = ACTIONS(2270), + [anon_sym_COLON2] = ACTIONS(2270), + [anon_sym_err_GT] = ACTIONS(2272), + [anon_sym_out_GT] = ACTIONS(2272), + [anon_sym_e_GT] = ACTIONS(2272), + [anon_sym_o_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT] = ACTIONS(2272), + [anon_sym_err_GT_GT] = ACTIONS(2270), + [anon_sym_out_GT_GT] = ACTIONS(2270), + [anon_sym_e_GT_GT] = ACTIONS(2270), + [anon_sym_o_GT_GT] = ACTIONS(2270), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2270), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2270), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2270), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2270), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(734)] = { + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1286), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1029), + [sym__unquoted_with_expr] = STATE(1304), + [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_comment] = STATE(734), + [anon_sym_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [anon_sym_null] = ACTIONS(2240), + [aux_sym_cmd_identifier_token3] = ACTIONS(2242), + [aux_sym_cmd_identifier_token4] = ACTIONS(2242), + [aux_sym_cmd_identifier_token5] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2244), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), + [anon_sym_DOT_DOT_LT] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2250), + [aux_sym__val_number_decimal_token3] = ACTIONS(2252), + [aux_sym__val_number_decimal_token4] = ACTIONS(2252), + [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(2254), + [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(2256), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(735)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1173), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(708), + [sym__unquoted_with_expr] = STATE(928), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(735), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(749)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1251), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(749), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(736)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1192), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(710), + [sym__unquoted_with_expr] = STATE(946), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(736), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [STATE(737)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1214), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), [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), + [sym__unquoted_with_expr] = STATE(962), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(737), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(738)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1222), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(691), + [sym__unquoted_with_expr] = STATE(907), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(738), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(739)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1224), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(674), + [sym__unquoted_with_expr] = STATE(915), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(739), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(740)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1227), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(676), + [sym__unquoted_with_expr] = STATE(920), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(740), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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), + [STATE(741)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1231), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(754), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [sym__unquoted_with_expr] = STATE(924), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(741), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(742)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1241), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(678), + [sym__unquoted_with_expr] = STATE(929), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(742), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(743)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(927), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(682), + [sym__unquoted_with_expr] = STATE(897), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(743), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(744)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1255), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(683), + [sym__unquoted_with_expr] = STATE(899), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(744), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(745)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1203), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(684), + [sym__unquoted_with_expr] = STATE(905), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(745), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(746)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1146), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(685), + [sym__unquoted_with_expr] = STATE(908), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(746), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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(747)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1155), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(935), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(451), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(687), + [sym__unquoted_with_expr] = STATE(912), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(747), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(1906), + [aux_sym_cmd_identifier_token3] = ACTIONS(1908), + [aux_sym_cmd_identifier_token4] = ACTIONS(1908), + [aux_sym_cmd_identifier_token5] = ACTIONS(1908), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1912), [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(1914), + [anon_sym_DOT_DOT_LT] = ACTIONS(1914), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1922), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(761)] = { - [sym_cell_path] = STATE(1279), - [sym_path] = STATE(783), - [sym_comment] = STATE(761), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1878), - [anon_sym_in] = ACTIONS(1878), - [sym__newline] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_err_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_GT_PIPE] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1878), - [anon_sym_GT2] = ACTIONS(1880), - [anon_sym_DASH2] = ACTIONS(1878), - [anon_sym_STAR2] = ACTIONS(1880), - [anon_sym_and2] = ACTIONS(1878), - [anon_sym_xor2] = ACTIONS(1878), - [anon_sym_or2] = ACTIONS(1878), - [anon_sym_not_DASHin2] = ACTIONS(1878), - [anon_sym_has2] = ACTIONS(1878), - [anon_sym_not_DASHhas2] = ACTIONS(1878), - [anon_sym_starts_DASHwith2] = ACTIONS(1878), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1878), - [anon_sym_ends_DASHwith2] = ACTIONS(1878), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1878), - [anon_sym_EQ_EQ2] = ACTIONS(1878), - [anon_sym_BANG_EQ2] = ACTIONS(1878), - [anon_sym_LT2] = ACTIONS(1880), - [anon_sym_LT_EQ2] = ACTIONS(1878), - [anon_sym_GT_EQ2] = ACTIONS(1878), - [anon_sym_EQ_TILDE2] = ACTIONS(1878), - [anon_sym_BANG_TILDE2] = ACTIONS(1878), - [anon_sym_like2] = ACTIONS(1878), - [anon_sym_not_DASHlike2] = ACTIONS(1878), - [anon_sym_STAR_STAR2] = ACTIONS(1878), - [anon_sym_PLUS_PLUS2] = ACTIONS(1878), - [anon_sym_SLASH2] = ACTIONS(1880), - [anon_sym_mod2] = ACTIONS(1878), - [anon_sym_SLASH_SLASH2] = ACTIONS(1878), - [anon_sym_PLUS2] = ACTIONS(1880), - [anon_sym_bit_DASHshl2] = ACTIONS(1878), - [anon_sym_bit_DASHshr2] = ACTIONS(1878), - [anon_sym_bit_DASHand2] = ACTIONS(1878), - [anon_sym_bit_DASHxor2] = ACTIONS(1878), - [anon_sym_bit_DASHor2] = ACTIONS(1878), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1880), - [anon_sym_out_GT] = ACTIONS(1880), - [anon_sym_e_GT] = ACTIONS(1880), - [anon_sym_o_GT] = ACTIONS(1880), - [anon_sym_err_PLUSout_GT] = ACTIONS(1880), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1880), - [anon_sym_o_PLUSe_GT] = ACTIONS(1880), - [anon_sym_e_PLUSo_GT] = ACTIONS(1880), - [anon_sym_err_GT_GT] = ACTIONS(1878), - [anon_sym_out_GT_GT] = ACTIONS(1878), - [anon_sym_e_GT_GT] = ACTIONS(1878), - [anon_sym_o_GT_GT] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1878), + [STATE(748)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2165), + [sym_expr_parenthesized] = STATE(1955), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1976), + [sym_val_variable] = STATE(1958), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1739), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(708), + [sym__unquoted_with_expr] = STATE(928), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(748), + [anon_sym_true] = ACTIONS(2184), + [anon_sym_false] = ACTIONS(2184), + [anon_sym_null] = ACTIONS(2186), + [aux_sym_cmd_identifier_token3] = ACTIONS(2188), + [aux_sym_cmd_identifier_token4] = ACTIONS(2188), + [aux_sym_cmd_identifier_token5] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2190), + [aux_sym_expr_unary_token1] = ACTIONS(2192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), + [anon_sym_DOT_DOT_LT] = ACTIONS(2194), + [aux_sym__val_number_decimal_token1] = ACTIONS(2196), + [aux_sym__val_number_decimal_token2] = ACTIONS(2198), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(762)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1315), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1033), - [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), - [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), + [STATE(749)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2166), + [sym_expr_parenthesized] = STATE(1955), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1976), + [sym_val_variable] = STATE(1958), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1739), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(710), + [sym__unquoted_with_expr] = STATE(946), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(749), + [anon_sym_true] = ACTIONS(2184), + [anon_sym_false] = ACTIONS(2184), + [anon_sym_null] = ACTIONS(2186), + [aux_sym_cmd_identifier_token3] = ACTIONS(2188), + [aux_sym_cmd_identifier_token4] = ACTIONS(2188), + [aux_sym_cmd_identifier_token5] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2190), + [aux_sym_expr_unary_token1] = ACTIONS(2192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), + [anon_sym_DOT_DOT_LT] = ACTIONS(2194), + [aux_sym__val_number_decimal_token1] = ACTIONS(2196), + [aux_sym__val_number_decimal_token2] = ACTIONS(2198), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(211), }, - [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(750)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2167), + [sym_expr_parenthesized] = STATE(1955), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1976), + [sym_val_variable] = STATE(1958), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1739), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(962), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(750), + [anon_sym_true] = ACTIONS(2184), + [anon_sym_false] = ACTIONS(2184), + [anon_sym_null] = ACTIONS(2186), + [aux_sym_cmd_identifier_token3] = ACTIONS(2188), + [aux_sym_cmd_identifier_token4] = ACTIONS(2188), + [aux_sym_cmd_identifier_token5] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2190), + [aux_sym_expr_unary_token1] = ACTIONS(2192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), + [anon_sym_DOT_DOT_LT] = ACTIONS(2194), + [aux_sym__val_number_decimal_token1] = ACTIONS(2196), + [aux_sym__val_number_decimal_token2] = ACTIONS(2198), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [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(751)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2168), + [sym_expr_parenthesized] = STATE(1955), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1976), + [sym_val_variable] = STATE(1958), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1739), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(691), + [sym__unquoted_with_expr] = STATE(907), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(751), + [anon_sym_true] = ACTIONS(2184), + [anon_sym_false] = ACTIONS(2184), + [anon_sym_null] = ACTIONS(2186), + [aux_sym_cmd_identifier_token3] = ACTIONS(2188), + [aux_sym_cmd_identifier_token4] = ACTIONS(2188), + [aux_sym_cmd_identifier_token5] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2190), + [aux_sym_expr_unary_token1] = ACTIONS(2192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), + [anon_sym_DOT_DOT_LT] = ACTIONS(2194), + [aux_sym__val_number_decimal_token1] = ACTIONS(2196), + [aux_sym__val_number_decimal_token2] = ACTIONS(2198), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(765)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1286), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1086), - [sym__unquoted_with_expr] = STATE(1345), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(765), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [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), + [STATE(752)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2169), + [sym_expr_parenthesized] = STATE(1955), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1976), + [sym_val_variable] = STATE(1958), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1739), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(674), + [sym__unquoted_with_expr] = STATE(915), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(752), + [anon_sym_true] = ACTIONS(2184), + [anon_sym_false] = ACTIONS(2184), + [anon_sym_null] = ACTIONS(2186), + [aux_sym_cmd_identifier_token3] = ACTIONS(2188), + [aux_sym_cmd_identifier_token4] = ACTIONS(2188), + [aux_sym_cmd_identifier_token5] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2190), + [aux_sym_expr_unary_token1] = ACTIONS(2192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), + [anon_sym_DOT_DOT_LT] = ACTIONS(2194), + [aux_sym__val_number_decimal_token1] = ACTIONS(2196), + [aux_sym__val_number_decimal_token2] = ACTIONS(2198), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(211), }, - [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(753)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2170), + [sym_expr_parenthesized] = STATE(1955), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1976), + [sym_val_variable] = STATE(1958), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1739), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(676), + [sym__unquoted_with_expr] = STATE(920), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(753), + [anon_sym_true] = ACTIONS(2184), + [anon_sym_false] = ACTIONS(2184), + [anon_sym_null] = ACTIONS(2186), + [aux_sym_cmd_identifier_token3] = ACTIONS(2188), + [aux_sym_cmd_identifier_token4] = ACTIONS(2188), + [aux_sym_cmd_identifier_token5] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2190), + [aux_sym_expr_unary_token1] = ACTIONS(2192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), + [anon_sym_DOT_DOT_LT] = ACTIONS(2194), + [aux_sym__val_number_decimal_token1] = ACTIONS(2196), + [aux_sym__val_number_decimal_token2] = ACTIONS(2198), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [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(754)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2171), + [sym_expr_parenthesized] = STATE(1955), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1976), + [sym_val_variable] = STATE(1958), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1739), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(677), + [sym__unquoted_with_expr] = STATE(924), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(754), + [anon_sym_true] = ACTIONS(2184), + [anon_sym_false] = ACTIONS(2184), + [anon_sym_null] = ACTIONS(2186), + [aux_sym_cmd_identifier_token3] = ACTIONS(2188), + [aux_sym_cmd_identifier_token4] = ACTIONS(2188), + [aux_sym_cmd_identifier_token5] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2190), + [aux_sym_expr_unary_token1] = ACTIONS(2192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), + [anon_sym_DOT_DOT_LT] = ACTIONS(2194), + [aux_sym__val_number_decimal_token1] = ACTIONS(2196), + [aux_sym__val_number_decimal_token2] = ACTIONS(2198), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(768)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1314), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1128), - [sym__unquoted_with_expr] = STATE(1284), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(768), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [STATE(755)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2172), + [sym_expr_parenthesized] = STATE(1955), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1976), + [sym_val_variable] = STATE(1958), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1739), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(678), + [sym__unquoted_with_expr] = STATE(929), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(755), + [anon_sym_true] = ACTIONS(2184), + [anon_sym_false] = ACTIONS(2184), + [anon_sym_null] = ACTIONS(2186), + [aux_sym_cmd_identifier_token3] = ACTIONS(2188), + [aux_sym_cmd_identifier_token4] = ACTIONS(2188), + [aux_sym_cmd_identifier_token5] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2190), + [aux_sym_expr_unary_token1] = ACTIONS(2192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), + [anon_sym_DOT_DOT_LT] = ACTIONS(2194), + [aux_sym__val_number_decimal_token1] = ACTIONS(2196), + [aux_sym__val_number_decimal_token2] = ACTIONS(2198), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(756)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(927), + [sym_expr_parenthesized] = STATE(1955), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1976), + [sym_val_variable] = STATE(1958), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1739), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(682), + [sym__unquoted_with_expr] = STATE(897), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(756), + [anon_sym_true] = ACTIONS(2184), + [anon_sym_false] = ACTIONS(2184), + [anon_sym_null] = ACTIONS(2186), + [aux_sym_cmd_identifier_token3] = ACTIONS(2188), + [aux_sym_cmd_identifier_token4] = ACTIONS(2188), + [aux_sym_cmd_identifier_token5] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2190), + [aux_sym_expr_unary_token1] = ACTIONS(2192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), + [anon_sym_DOT_DOT_LT] = ACTIONS(2194), + [aux_sym__val_number_decimal_token1] = ACTIONS(2196), + [aux_sym__val_number_decimal_token2] = ACTIONS(2198), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(757)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2173), + [sym_expr_parenthesized] = STATE(1955), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1976), + [sym_val_variable] = STATE(1958), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1739), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(683), + [sym__unquoted_with_expr] = STATE(899), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(757), + [anon_sym_true] = ACTIONS(2184), + [anon_sym_false] = ACTIONS(2184), + [anon_sym_null] = ACTIONS(2186), + [aux_sym_cmd_identifier_token3] = ACTIONS(2188), + [aux_sym_cmd_identifier_token4] = ACTIONS(2188), + [aux_sym_cmd_identifier_token5] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2190), + [aux_sym_expr_unary_token1] = ACTIONS(2192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), + [anon_sym_DOT_DOT_LT] = ACTIONS(2194), + [aux_sym__val_number_decimal_token1] = ACTIONS(2196), + [aux_sym__val_number_decimal_token2] = ACTIONS(2198), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(758)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2174), + [sym_expr_parenthesized] = STATE(1955), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1976), + [sym_val_variable] = STATE(1958), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1739), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(684), + [sym__unquoted_with_expr] = STATE(905), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(758), + [anon_sym_true] = ACTIONS(2184), + [anon_sym_false] = ACTIONS(2184), + [anon_sym_null] = ACTIONS(2186), + [aux_sym_cmd_identifier_token3] = ACTIONS(2188), + [aux_sym_cmd_identifier_token4] = ACTIONS(2188), + [aux_sym_cmd_identifier_token5] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2190), + [aux_sym_expr_unary_token1] = ACTIONS(2192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), + [anon_sym_DOT_DOT_LT] = ACTIONS(2194), + [aux_sym__val_number_decimal_token1] = ACTIONS(2196), + [aux_sym__val_number_decimal_token2] = ACTIONS(2198), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(759)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2175), + [sym_expr_parenthesized] = STATE(1955), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1976), + [sym_val_variable] = STATE(1958), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1739), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(685), + [sym__unquoted_with_expr] = STATE(908), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(759), + [anon_sym_true] = ACTIONS(2184), + [anon_sym_false] = ACTIONS(2184), + [anon_sym_null] = ACTIONS(2186), + [aux_sym_cmd_identifier_token3] = ACTIONS(2188), + [aux_sym_cmd_identifier_token4] = ACTIONS(2188), + [aux_sym_cmd_identifier_token5] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2190), + [aux_sym_expr_unary_token1] = ACTIONS(2192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), + [anon_sym_DOT_DOT_LT] = ACTIONS(2194), + [aux_sym__val_number_decimal_token1] = ACTIONS(2196), + [aux_sym__val_number_decimal_token2] = ACTIONS(2198), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(760)] = { + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1309), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1030), + [sym__unquoted_with_expr] = STATE(1310), + [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_comment] = STATE(760), + [anon_sym_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [anon_sym_null] = ACTIONS(2240), + [aux_sym_cmd_identifier_token3] = ACTIONS(2242), + [aux_sym_cmd_identifier_token4] = ACTIONS(2242), + [aux_sym_cmd_identifier_token5] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2244), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), + [anon_sym_DOT_DOT_LT] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2250), + [aux_sym__val_number_decimal_token3] = ACTIONS(2252), + [aux_sym__val_number_decimal_token4] = ACTIONS(2252), + [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(2254), + [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(2256), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(761)] = { + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1311), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1031), + [sym__unquoted_with_expr] = STATE(1312), + [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_comment] = STATE(761), + [anon_sym_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [anon_sym_null] = ACTIONS(2240), + [aux_sym_cmd_identifier_token3] = ACTIONS(2242), + [aux_sym_cmd_identifier_token4] = ACTIONS(2242), + [aux_sym_cmd_identifier_token5] = ACTIONS(2242), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2244), [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(2246), + [anon_sym_DOT_DOT_LT] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2250), + [aux_sym__val_number_decimal_token3] = ACTIONS(2252), + [aux_sym__val_number_decimal_token4] = ACTIONS(2252), [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(2254), [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(2256), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, + [STATE(762)] = { + [aux_sym__repeat_newline] = STATE(1085), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(762), + [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_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_LPAREN2] = ACTIONS(1766), + [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_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(763)] = { + [aux_sym__repeat_newline] = STATE(1086), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(763), + [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_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_LPAREN2] = ACTIONS(1766), + [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_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(764)] = { + [aux_sym__repeat_newline] = STATE(1087), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(764), + [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_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_LPAREN2] = ACTIONS(1766), + [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_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(765)] = { + [aux_sym__repeat_newline] = STATE(3418), + [aux_sym__pipe_separator] = STATE(765), + [sym_comment] = STATE(765), + [anon_sym_export] = ACTIONS(2274), + [anon_sym_alias] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_mut] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [aux_sym_cmd_identifier_token1] = ACTIONS(2274), + [anon_sym_def] = ACTIONS(2276), + [anon_sym_use] = ACTIONS(2276), + [anon_sym_export_DASHenv] = ACTIONS(2276), + [anon_sym_extern] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_loop] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_catch] = ACTIONS(2276), + [anon_sym_match] = ACTIONS(2276), + [anon_sym_in] = ACTIONS(2274), + [anon_sym_true] = ACTIONS(2276), + [anon_sym_false] = ACTIONS(2276), + [anon_sym_null] = ACTIONS(2276), + [aux_sym_cmd_identifier_token3] = ACTIONS(2276), + [aux_sym_cmd_identifier_token4] = ACTIONS(2276), + [aux_sym_cmd_identifier_token5] = ACTIONS(2276), + [sym__newline] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2281), + [anon_sym_err_GT_PIPE] = ACTIONS(2281), + [anon_sym_out_GT_PIPE] = ACTIONS(2281), + [anon_sym_e_GT_PIPE] = ACTIONS(2281), + [anon_sym_o_GT_PIPE] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_DOLLAR] = ACTIONS(2274), + [anon_sym_DASH2] = ACTIONS(2274), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_DOT_DOT] = ACTIONS(2274), + [anon_sym_where] = ACTIONS(2276), + [aux_sym_expr_unary_token1] = ACTIONS(2276), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2276), + [anon_sym_DOT_DOT_LT] = ACTIONS(2276), + [aux_sym__val_number_decimal_token1] = ACTIONS(2274), + [aux_sym__val_number_decimal_token2] = ACTIONS(2276), + [aux_sym__val_number_decimal_token3] = ACTIONS(2276), + [aux_sym__val_number_decimal_token4] = ACTIONS(2276), + [aux_sym__val_number_token1] = ACTIONS(2276), + [aux_sym__val_number_token2] = ACTIONS(2276), + [aux_sym__val_number_token3] = ACTIONS(2276), + [anon_sym_0b] = ACTIONS(2274), + [anon_sym_0o] = ACTIONS(2274), + [anon_sym_0x] = ACTIONS(2274), + [sym_val_date] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2276), + [anon_sym_BQUOTE] = ACTIONS(2276), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2276), + [anon_sym_CARET] = ACTIONS(2276), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2276), + }, + [STATE(766)] = { + [sym_comment] = STATE(766), + [anon_sym_in] = ACTIONS(2284), + [sym__newline] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2284), + [anon_sym_err_GT_PIPE] = ACTIONS(2284), + [anon_sym_out_GT_PIPE] = ACTIONS(2284), + [anon_sym_e_GT_PIPE] = ACTIONS(2284), + [anon_sym_o_GT_PIPE] = ACTIONS(2284), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2284), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2284), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2284), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2284), + [anon_sym_RPAREN] = ACTIONS(2284), + [anon_sym_GT2] = ACTIONS(2286), + [anon_sym_DASH2] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_EQ_GT] = ACTIONS(2284), + [anon_sym_STAR2] = ACTIONS(2286), + [anon_sym_and2] = ACTIONS(2284), + [anon_sym_xor2] = ACTIONS(2284), + [anon_sym_or2] = ACTIONS(2284), + [anon_sym_not_DASHin2] = ACTIONS(2284), + [anon_sym_has2] = ACTIONS(2284), + [anon_sym_not_DASHhas2] = ACTIONS(2284), + [anon_sym_starts_DASHwith2] = ACTIONS(2284), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2284), + [anon_sym_ends_DASHwith2] = ACTIONS(2284), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2284), + [anon_sym_EQ_EQ2] = ACTIONS(2284), + [anon_sym_BANG_EQ2] = ACTIONS(2284), + [anon_sym_LT2] = ACTIONS(2286), + [anon_sym_LT_EQ2] = ACTIONS(2284), + [anon_sym_GT_EQ2] = ACTIONS(2284), + [anon_sym_EQ_TILDE2] = ACTIONS(2284), + [anon_sym_BANG_TILDE2] = ACTIONS(2284), + [anon_sym_like2] = ACTIONS(2284), + [anon_sym_not_DASHlike2] = ACTIONS(2284), + [anon_sym_STAR_STAR2] = ACTIONS(2284), + [anon_sym_PLUS_PLUS2] = ACTIONS(2284), + [anon_sym_SLASH2] = ACTIONS(2286), + [anon_sym_mod2] = ACTIONS(2284), + [anon_sym_SLASH_SLASH2] = ACTIONS(2284), + [anon_sym_PLUS2] = ACTIONS(2286), + [anon_sym_bit_DASHshl2] = ACTIONS(2284), + [anon_sym_bit_DASHshr2] = ACTIONS(2284), + [anon_sym_bit_DASHand2] = ACTIONS(2284), + [anon_sym_bit_DASHxor2] = ACTIONS(2284), + [anon_sym_bit_DASHor2] = ACTIONS(2284), + [anon_sym_COLON2] = ACTIONS(2284), + [anon_sym_err_GT] = ACTIONS(2286), + [anon_sym_out_GT] = ACTIONS(2286), + [anon_sym_e_GT] = ACTIONS(2286), + [anon_sym_o_GT] = ACTIONS(2286), + [anon_sym_err_PLUSout_GT] = ACTIONS(2286), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2286), + [anon_sym_o_PLUSe_GT] = ACTIONS(2286), + [anon_sym_e_PLUSo_GT] = ACTIONS(2286), + [anon_sym_err_GT_GT] = ACTIONS(2284), + [anon_sym_out_GT_GT] = ACTIONS(2284), + [anon_sym_e_GT_GT] = ACTIONS(2284), + [anon_sym_o_GT_GT] = ACTIONS(2284), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2284), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2284), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2284), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2284), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(767)] = { + [sym_comment] = STATE(767), + [anon_sym_in] = ACTIONS(2288), + [sym__newline] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_err_GT_PIPE] = ACTIONS(2288), + [anon_sym_out_GT_PIPE] = ACTIONS(2288), + [anon_sym_e_GT_PIPE] = ACTIONS(2288), + [anon_sym_o_GT_PIPE] = ACTIONS(2288), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2288), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2288), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2288), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2288), + [anon_sym_RPAREN] = ACTIONS(2288), + [anon_sym_GT2] = ACTIONS(2290), + [anon_sym_DASH2] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_EQ_GT] = ACTIONS(2288), + [anon_sym_STAR2] = ACTIONS(2290), + [anon_sym_and2] = ACTIONS(2288), + [anon_sym_xor2] = ACTIONS(2288), + [anon_sym_or2] = ACTIONS(2288), + [anon_sym_not_DASHin2] = ACTIONS(2288), + [anon_sym_has2] = ACTIONS(2288), + [anon_sym_not_DASHhas2] = ACTIONS(2288), + [anon_sym_starts_DASHwith2] = ACTIONS(2288), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2288), + [anon_sym_ends_DASHwith2] = ACTIONS(2288), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2288), + [anon_sym_EQ_EQ2] = ACTIONS(2288), + [anon_sym_BANG_EQ2] = ACTIONS(2288), + [anon_sym_LT2] = ACTIONS(2290), + [anon_sym_LT_EQ2] = ACTIONS(2288), + [anon_sym_GT_EQ2] = ACTIONS(2288), + [anon_sym_EQ_TILDE2] = ACTIONS(2288), + [anon_sym_BANG_TILDE2] = ACTIONS(2288), + [anon_sym_like2] = ACTIONS(2288), + [anon_sym_not_DASHlike2] = ACTIONS(2288), + [anon_sym_STAR_STAR2] = ACTIONS(2288), + [anon_sym_PLUS_PLUS2] = ACTIONS(2288), + [anon_sym_SLASH2] = ACTIONS(2290), + [anon_sym_mod2] = ACTIONS(2288), + [anon_sym_SLASH_SLASH2] = ACTIONS(2288), + [anon_sym_PLUS2] = ACTIONS(2290), + [anon_sym_bit_DASHshl2] = ACTIONS(2288), + [anon_sym_bit_DASHshr2] = ACTIONS(2288), + [anon_sym_bit_DASHand2] = ACTIONS(2288), + [anon_sym_bit_DASHxor2] = ACTIONS(2288), + [anon_sym_bit_DASHor2] = ACTIONS(2288), + [anon_sym_COLON2] = ACTIONS(2288), + [anon_sym_err_GT] = ACTIONS(2290), + [anon_sym_out_GT] = ACTIONS(2290), + [anon_sym_e_GT] = ACTIONS(2290), + [anon_sym_o_GT] = ACTIONS(2290), + [anon_sym_err_PLUSout_GT] = ACTIONS(2290), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2290), + [anon_sym_o_PLUSe_GT] = ACTIONS(2290), + [anon_sym_e_PLUSo_GT] = ACTIONS(2290), + [anon_sym_err_GT_GT] = ACTIONS(2288), + [anon_sym_out_GT_GT] = ACTIONS(2288), + [anon_sym_e_GT_GT] = ACTIONS(2288), + [anon_sym_o_GT_GT] = ACTIONS(2288), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2288), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2288), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2288), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2288), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(768)] = { + [aux_sym__repeat_newline] = STATE(1089), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(768), + [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_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_LPAREN2] = ACTIONS(1766), + [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_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(769)] = { - [aux_sym__repeat_newline] = STATE(983), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1090), + [sym__expr_parenthesized_immediate] = STATE(4713), [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_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_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_LPAREN2] = ACTIONS(1766), + [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_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(770)] = { - [aux_sym__repeat_newline] = STATE(986), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1091), + [sym__expr_parenthesized_immediate] = STATE(4713), [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_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_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_LPAREN2] = ACTIONS(1766), + [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_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(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_in] = ACTIONS(2100), + [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(2100), + [anon_sym_RBRACE] = ACTIONS(2102), + [anon_sym_STAR2] = ACTIONS(2104), + [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(2104), + [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(2104), + [anon_sym_mod2] = ACTIONS(2100), + [anon_sym_SLASH_SLASH2] = ACTIONS(2100), + [anon_sym_PLUS2] = ACTIONS(2104), + [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(1633), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), + [anon_sym_COLON2] = ACTIONS(1718), + [anon_sym_err_GT] = ACTIONS(2106), + [anon_sym_out_GT] = ACTIONS(2106), + [anon_sym_e_GT] = ACTIONS(2106), + [anon_sym_o_GT] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT] = ACTIONS(2106), + [anon_sym_err_GT_GT] = ACTIONS(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(772)] = { - [aux_sym__repeat_newline] = STATE(992), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1070), + [sym__expr_parenthesized_immediate] = STATE(4713), [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_in] = ACTIONS(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [anon_sym_POUND] = ACTIONS(3), }, [STATE(773)] = { + [aux_sym__repeat_newline] = STATE(1068), + [sym__expr_parenthesized_immediate] = STATE(4713), [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_in] = ACTIONS(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [anon_sym_POUND] = ACTIONS(3), }, [STATE(774)] = { - [aux_sym__repeat_newline] = STATE(994), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1072), + [sym__expr_parenthesized_immediate] = STATE(4713), [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(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [anon_sym_POUND] = ACTIONS(3), }, [STATE(775)] = { - [aux_sym__repeat_newline] = STATE(996), - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(775), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_in] = ACTIONS(2296), + [sym__newline] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2296), + [anon_sym_err_GT_PIPE] = ACTIONS(2296), + [anon_sym_out_GT_PIPE] = ACTIONS(2296), + [anon_sym_e_GT_PIPE] = ACTIONS(2296), + [anon_sym_o_GT_PIPE] = ACTIONS(2296), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2296), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2296), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2296), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2296), + [anon_sym_RPAREN] = ACTIONS(2296), + [anon_sym_GT2] = ACTIONS(2298), + [anon_sym_DASH2] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_EQ_GT] = ACTIONS(2296), + [anon_sym_STAR2] = ACTIONS(2298), + [anon_sym_and2] = ACTIONS(2296), + [anon_sym_xor2] = ACTIONS(2296), + [anon_sym_or2] = ACTIONS(2296), + [anon_sym_not_DASHin2] = ACTIONS(2296), + [anon_sym_has2] = ACTIONS(2296), + [anon_sym_not_DASHhas2] = ACTIONS(2296), + [anon_sym_starts_DASHwith2] = ACTIONS(2296), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2296), + [anon_sym_ends_DASHwith2] = ACTIONS(2296), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2296), + [anon_sym_EQ_EQ2] = ACTIONS(2296), + [anon_sym_BANG_EQ2] = ACTIONS(2296), + [anon_sym_LT2] = ACTIONS(2298), + [anon_sym_LT_EQ2] = ACTIONS(2296), + [anon_sym_GT_EQ2] = ACTIONS(2296), + [anon_sym_EQ_TILDE2] = ACTIONS(2296), + [anon_sym_BANG_TILDE2] = ACTIONS(2296), + [anon_sym_like2] = ACTIONS(2296), + [anon_sym_not_DASHlike2] = ACTIONS(2296), + [anon_sym_STAR_STAR2] = ACTIONS(2296), + [anon_sym_PLUS_PLUS2] = ACTIONS(2296), + [anon_sym_SLASH2] = ACTIONS(2298), + [anon_sym_mod2] = ACTIONS(2296), + [anon_sym_SLASH_SLASH2] = ACTIONS(2296), + [anon_sym_PLUS2] = ACTIONS(2298), + [anon_sym_bit_DASHshl2] = ACTIONS(2296), + [anon_sym_bit_DASHshr2] = ACTIONS(2296), + [anon_sym_bit_DASHand2] = ACTIONS(2296), + [anon_sym_bit_DASHxor2] = ACTIONS(2296), + [anon_sym_bit_DASHor2] = ACTIONS(2296), + [anon_sym_err_GT] = ACTIONS(2298), + [anon_sym_out_GT] = ACTIONS(2298), + [anon_sym_e_GT] = ACTIONS(2298), + [anon_sym_o_GT] = ACTIONS(2298), + [anon_sym_err_PLUSout_GT] = ACTIONS(2298), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2298), + [anon_sym_o_PLUSe_GT] = ACTIONS(2298), + [anon_sym_e_PLUSo_GT] = ACTIONS(2298), + [anon_sym_err_GT_GT] = ACTIONS(2296), + [anon_sym_out_GT_GT] = ACTIONS(2296), + [anon_sym_e_GT_GT] = ACTIONS(2296), + [anon_sym_o_GT_GT] = ACTIONS(2296), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2296), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2296), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2296), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2296), [anon_sym_POUND] = ACTIONS(3), }, [STATE(776)] = { - [aux_sym__repeat_newline] = STATE(998), - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(776), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_in] = ACTIONS(2108), + [sym__newline] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2108), + [anon_sym_PIPE] = ACTIONS(2108), + [anon_sym_err_GT_PIPE] = ACTIONS(2108), + [anon_sym_out_GT_PIPE] = ACTIONS(2108), + [anon_sym_e_GT_PIPE] = ACTIONS(2108), + [anon_sym_o_GT_PIPE] = ACTIONS(2108), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2108), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2108), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2108), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2108), + [anon_sym_RPAREN] = ACTIONS(2108), + [anon_sym_GT2] = ACTIONS(2110), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_RBRACE] = ACTIONS(2108), + [anon_sym_EQ_GT] = ACTIONS(2108), + [anon_sym_STAR2] = ACTIONS(2110), + [anon_sym_and2] = ACTIONS(2108), + [anon_sym_xor2] = ACTIONS(2108), + [anon_sym_or2] = ACTIONS(2108), + [anon_sym_not_DASHin2] = ACTIONS(2108), + [anon_sym_has2] = ACTIONS(2108), + [anon_sym_not_DASHhas2] = ACTIONS(2108), + [anon_sym_starts_DASHwith2] = ACTIONS(2108), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2108), + [anon_sym_ends_DASHwith2] = ACTIONS(2108), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2108), + [anon_sym_EQ_EQ2] = ACTIONS(2108), + [anon_sym_BANG_EQ2] = ACTIONS(2108), + [anon_sym_LT2] = ACTIONS(2110), + [anon_sym_LT_EQ2] = ACTIONS(2108), + [anon_sym_GT_EQ2] = ACTIONS(2108), + [anon_sym_EQ_TILDE2] = ACTIONS(2108), + [anon_sym_BANG_TILDE2] = ACTIONS(2108), + [anon_sym_like2] = ACTIONS(2108), + [anon_sym_not_DASHlike2] = ACTIONS(2108), + [anon_sym_STAR_STAR2] = ACTIONS(2108), + [anon_sym_PLUS_PLUS2] = ACTIONS(2108), + [anon_sym_SLASH2] = ACTIONS(2110), + [anon_sym_mod2] = ACTIONS(2108), + [anon_sym_SLASH_SLASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_bit_DASHshl2] = ACTIONS(2108), + [anon_sym_bit_DASHshr2] = ACTIONS(2108), + [anon_sym_bit_DASHand2] = ACTIONS(2108), + [anon_sym_bit_DASHxor2] = ACTIONS(2108), + [anon_sym_bit_DASHor2] = ACTIONS(2108), + [anon_sym_err_GT] = ACTIONS(2110), + [anon_sym_out_GT] = ACTIONS(2110), + [anon_sym_e_GT] = ACTIONS(2110), + [anon_sym_o_GT] = ACTIONS(2110), + [anon_sym_err_PLUSout_GT] = ACTIONS(2110), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2110), + [anon_sym_o_PLUSe_GT] = ACTIONS(2110), + [anon_sym_e_PLUSo_GT] = ACTIONS(2110), + [anon_sym_err_GT_GT] = ACTIONS(2108), + [anon_sym_out_GT_GT] = ACTIONS(2108), + [anon_sym_e_GT_GT] = ACTIONS(2108), + [anon_sym_o_GT_GT] = ACTIONS(2108), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2108), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2108), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2108), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2108), [anon_sym_POUND] = ACTIONS(3), }, [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_if] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [sym__newline] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2116), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_err_GT_PIPE] = ACTIONS(2116), + [anon_sym_out_GT_PIPE] = ACTIONS(2116), + [anon_sym_e_GT_PIPE] = ACTIONS(2116), + [anon_sym_o_GT_PIPE] = ACTIONS(2116), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2116), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2116), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2116), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2116), + [anon_sym_RPAREN] = ACTIONS(2116), + [anon_sym_GT2] = ACTIONS(2118), + [anon_sym_DASH2] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2116), + [anon_sym_RBRACE] = ACTIONS(2116), + [anon_sym_EQ_GT] = ACTIONS(2116), + [anon_sym_STAR2] = ACTIONS(2118), + [anon_sym_and2] = ACTIONS(2116), + [anon_sym_xor2] = ACTIONS(2116), + [anon_sym_or2] = ACTIONS(2116), + [anon_sym_not_DASHin2] = ACTIONS(2116), + [anon_sym_has2] = ACTIONS(2116), + [anon_sym_not_DASHhas2] = ACTIONS(2116), + [anon_sym_starts_DASHwith2] = ACTIONS(2116), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2116), + [anon_sym_ends_DASHwith2] = ACTIONS(2116), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2116), + [anon_sym_EQ_EQ2] = ACTIONS(2116), + [anon_sym_BANG_EQ2] = ACTIONS(2116), + [anon_sym_LT2] = ACTIONS(2118), + [anon_sym_LT_EQ2] = ACTIONS(2116), + [anon_sym_GT_EQ2] = ACTIONS(2116), + [anon_sym_EQ_TILDE2] = ACTIONS(2116), + [anon_sym_BANG_TILDE2] = ACTIONS(2116), + [anon_sym_like2] = ACTIONS(2116), + [anon_sym_not_DASHlike2] = ACTIONS(2116), + [anon_sym_STAR_STAR2] = ACTIONS(2116), + [anon_sym_PLUS_PLUS2] = ACTIONS(2116), + [anon_sym_SLASH2] = ACTIONS(2118), + [anon_sym_mod2] = ACTIONS(2116), + [anon_sym_SLASH_SLASH2] = ACTIONS(2116), + [anon_sym_PLUS2] = ACTIONS(2118), + [anon_sym_bit_DASHshl2] = ACTIONS(2116), + [anon_sym_bit_DASHshr2] = ACTIONS(2116), + [anon_sym_bit_DASHand2] = ACTIONS(2116), + [anon_sym_bit_DASHxor2] = ACTIONS(2116), + [anon_sym_bit_DASHor2] = ACTIONS(2116), + [anon_sym_err_GT] = ACTIONS(2118), + [anon_sym_out_GT] = ACTIONS(2118), + [anon_sym_e_GT] = ACTIONS(2118), + [anon_sym_o_GT] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT] = ACTIONS(2118), + [anon_sym_err_GT_GT] = ACTIONS(2116), + [anon_sym_out_GT_GT] = ACTIONS(2116), + [anon_sym_e_GT_GT] = ACTIONS(2116), + [anon_sym_o_GT_GT] = ACTIONS(2116), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2116), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2116), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2116), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2116), [anon_sym_POUND] = ACTIONS(3), }, [STATE(778)] = { - [aux_sym__repeat_newline] = STATE(1004), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1313), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1032), + [sym__unquoted_with_expr] = STATE(1267), + [sym__unquoted_anonymous_prefix] = STATE(4525), [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_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [anon_sym_null] = ACTIONS(2240), + [aux_sym_cmd_identifier_token3] = ACTIONS(2242), + [aux_sym_cmd_identifier_token4] = ACTIONS(2242), + [aux_sym_cmd_identifier_token5] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2244), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), + [anon_sym_DOT_DOT_LT] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2250), + [aux_sym__val_number_decimal_token3] = ACTIONS(2252), + [aux_sym__val_number_decimal_token4] = ACTIONS(2252), + [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(2254), + [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(2256), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(779)] = { + [aux_sym__repeat_newline] = STATE(1075), + [sym__expr_parenthesized_immediate] = STATE(4713), [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(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [anon_sym_POUND] = ACTIONS(3), }, [STATE(780)] = { - [aux_sym__repeat_newline] = STATE(1007), - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(780), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_in] = ACTIONS(2124), + [sym__newline] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_PIPE] = ACTIONS(2124), + [anon_sym_err_GT_PIPE] = ACTIONS(2124), + [anon_sym_out_GT_PIPE] = ACTIONS(2124), + [anon_sym_e_GT_PIPE] = ACTIONS(2124), + [anon_sym_o_GT_PIPE] = ACTIONS(2124), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2124), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2124), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2124), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2124), + [anon_sym_RPAREN] = ACTIONS(2124), + [anon_sym_GT2] = ACTIONS(2126), + [anon_sym_DASH2] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_RBRACE] = ACTIONS(2124), + [anon_sym_EQ_GT] = ACTIONS(2124), + [anon_sym_STAR2] = ACTIONS(2126), + [anon_sym_and2] = ACTIONS(2124), + [anon_sym_xor2] = ACTIONS(2124), + [anon_sym_or2] = ACTIONS(2124), + [anon_sym_not_DASHin2] = ACTIONS(2124), + [anon_sym_has2] = ACTIONS(2124), + [anon_sym_not_DASHhas2] = ACTIONS(2124), + [anon_sym_starts_DASHwith2] = ACTIONS(2124), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2124), + [anon_sym_ends_DASHwith2] = ACTIONS(2124), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2124), + [anon_sym_EQ_EQ2] = ACTIONS(2124), + [anon_sym_BANG_EQ2] = ACTIONS(2124), + [anon_sym_LT2] = ACTIONS(2126), + [anon_sym_LT_EQ2] = ACTIONS(2124), + [anon_sym_GT_EQ2] = ACTIONS(2124), + [anon_sym_EQ_TILDE2] = ACTIONS(2124), + [anon_sym_BANG_TILDE2] = ACTIONS(2124), + [anon_sym_like2] = ACTIONS(2124), + [anon_sym_not_DASHlike2] = ACTIONS(2124), + [anon_sym_STAR_STAR2] = ACTIONS(2124), + [anon_sym_PLUS_PLUS2] = ACTIONS(2124), + [anon_sym_SLASH2] = ACTIONS(2126), + [anon_sym_mod2] = ACTIONS(2124), + [anon_sym_SLASH_SLASH2] = ACTIONS(2124), + [anon_sym_PLUS2] = ACTIONS(2126), + [anon_sym_bit_DASHshl2] = ACTIONS(2124), + [anon_sym_bit_DASHshr2] = ACTIONS(2124), + [anon_sym_bit_DASHand2] = ACTIONS(2124), + [anon_sym_bit_DASHxor2] = ACTIONS(2124), + [anon_sym_bit_DASHor2] = ACTIONS(2124), + [anon_sym_err_GT] = ACTIONS(2126), + [anon_sym_out_GT] = ACTIONS(2126), + [anon_sym_e_GT] = ACTIONS(2126), + [anon_sym_o_GT] = ACTIONS(2126), + [anon_sym_err_PLUSout_GT] = ACTIONS(2126), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2126), + [anon_sym_o_PLUSe_GT] = ACTIONS(2126), + [anon_sym_e_PLUSo_GT] = ACTIONS(2126), + [anon_sym_err_GT_GT] = ACTIONS(2124), + [anon_sym_out_GT_GT] = ACTIONS(2124), + [anon_sym_e_GT_GT] = ACTIONS(2124), + [anon_sym_o_GT_GT] = ACTIONS(2124), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2124), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2124), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2124), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2124), [anon_sym_POUND] = ACTIONS(3), }, [STATE(781)] = { - [aux_sym__repeat_newline] = STATE(1009), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1277), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1018), + [sym__unquoted_with_expr] = STATE(1279), + [sym__unquoted_anonymous_prefix] = STATE(4525), [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_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [anon_sym_null] = ACTIONS(2240), + [aux_sym_cmd_identifier_token3] = ACTIONS(2242), + [aux_sym_cmd_identifier_token4] = ACTIONS(2242), + [aux_sym_cmd_identifier_token5] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2244), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), + [anon_sym_DOT_DOT_LT] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2250), + [aux_sym__val_number_decimal_token3] = ACTIONS(2252), + [aux_sym__val_number_decimal_token4] = ACTIONS(2252), + [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(2254), + [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(2256), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(782)] = { - [aux_sym__repeat_newline] = STATE(1011), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1280), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1021), + [sym__unquoted_with_expr] = STATE(1282), + [sym__unquoted_anonymous_prefix] = STATE(4525), [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_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [anon_sym_null] = ACTIONS(2240), + [aux_sym_cmd_identifier_token3] = ACTIONS(2242), + [aux_sym_cmd_identifier_token4] = ACTIONS(2242), + [aux_sym_cmd_identifier_token5] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2244), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), + [anon_sym_DOT_DOT_LT] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2250), + [aux_sym__val_number_decimal_token3] = ACTIONS(2252), + [aux_sym__val_number_decimal_token4] = ACTIONS(2252), + [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(2254), + [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(2256), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(783)] = { + [sym_cmd_identifier] = STATE(4141), + [sym_expr_parenthesized] = STATE(5138), + [sym__spread_parenthesized] = STATE(4677), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(4425), + [sym_val_number] = STATE(5138), + [sym__val_number_decimal] = STATE(1947), + [sym__val_number] = STATE(700), + [sym_val_string] = STATE(5138), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_interpolated] = STATE(5138), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym__spread_record] = STATE(4677), + [sym_record_entry] = STATE(4765), + [sym__record_key] = STATE(4944), [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_POUND] = ACTIONS(3), + [aux_sym__match_pattern_record_body_repeat1] = STATE(783), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_alias] = ACTIONS(2303), + [anon_sym_let] = ACTIONS(2303), + [anon_sym_mut] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [aux_sym_cmd_identifier_token1] = ACTIONS(2306), + [anon_sym_def] = ACTIONS(2303), + [anon_sym_use] = ACTIONS(2303), + [anon_sym_export_DASHenv] = ACTIONS(2303), + [anon_sym_extern] = ACTIONS(2303), + [anon_sym_module] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_loop] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_else] = ACTIONS(2303), + [anon_sym_try] = ACTIONS(2303), + [anon_sym_catch] = ACTIONS(2303), + [anon_sym_match] = ACTIONS(2303), + [anon_sym_in] = ACTIONS(2300), + [anon_sym_true] = ACTIONS(2309), + [anon_sym_false] = ACTIONS(2309), + [anon_sym_null] = ACTIONS(2309), + [aux_sym_cmd_identifier_token3] = ACTIONS(2312), + [aux_sym_cmd_identifier_token4] = ACTIONS(2312), + [aux_sym_cmd_identifier_token5] = ACTIONS(2312), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_DOLLAR] = ACTIONS(2318), + [anon_sym_DASH2] = ACTIONS(2321), + [anon_sym_PLUS2] = ACTIONS(2321), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2327), + [aux_sym__val_number_decimal_token1] = ACTIONS(2330), + [aux_sym__val_number_decimal_token2] = ACTIONS(2333), + [aux_sym__val_number_decimal_token3] = ACTIONS(2336), + [aux_sym__val_number_decimal_token4] = ACTIONS(2336), + [aux_sym__val_number_token1] = ACTIONS(2339), + [aux_sym__val_number_token2] = ACTIONS(2339), + [aux_sym__val_number_token3] = ACTIONS(2339), + [anon_sym_DQUOTE] = ACTIONS(2342), + [anon_sym_SQUOTE] = ACTIONS(2345), + [anon_sym_BQUOTE] = ACTIONS(2348), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2351), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2354), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2360), }, [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_if] = ACTIONS(2363), + [anon_sym_in] = ACTIONS(2363), + [sym__newline] = ACTIONS(2363), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_PIPE] = ACTIONS(2363), + [anon_sym_err_GT_PIPE] = ACTIONS(2363), + [anon_sym_out_GT_PIPE] = ACTIONS(2363), + [anon_sym_e_GT_PIPE] = ACTIONS(2363), + [anon_sym_o_GT_PIPE] = ACTIONS(2363), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2363), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2363), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2363), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2363), + [anon_sym_RPAREN] = ACTIONS(2363), + [anon_sym_GT2] = ACTIONS(2365), + [anon_sym_DASH2] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_EQ_GT] = ACTIONS(2363), + [anon_sym_STAR2] = ACTIONS(2365), + [anon_sym_and2] = ACTIONS(2363), + [anon_sym_xor2] = ACTIONS(2363), + [anon_sym_or2] = ACTIONS(2363), + [anon_sym_not_DASHin2] = ACTIONS(2363), + [anon_sym_has2] = ACTIONS(2363), + [anon_sym_not_DASHhas2] = ACTIONS(2363), + [anon_sym_starts_DASHwith2] = ACTIONS(2363), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2363), + [anon_sym_ends_DASHwith2] = ACTIONS(2363), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2363), + [anon_sym_EQ_EQ2] = ACTIONS(2363), + [anon_sym_BANG_EQ2] = ACTIONS(2363), + [anon_sym_LT2] = ACTIONS(2365), + [anon_sym_LT_EQ2] = ACTIONS(2363), + [anon_sym_GT_EQ2] = ACTIONS(2363), + [anon_sym_EQ_TILDE2] = ACTIONS(2363), + [anon_sym_BANG_TILDE2] = ACTIONS(2363), + [anon_sym_like2] = ACTIONS(2363), + [anon_sym_not_DASHlike2] = ACTIONS(2363), + [anon_sym_STAR_STAR2] = ACTIONS(2363), + [anon_sym_PLUS_PLUS2] = ACTIONS(2363), + [anon_sym_SLASH2] = ACTIONS(2365), + [anon_sym_mod2] = ACTIONS(2363), + [anon_sym_SLASH_SLASH2] = ACTIONS(2363), + [anon_sym_PLUS2] = ACTIONS(2365), + [anon_sym_bit_DASHshl2] = ACTIONS(2363), + [anon_sym_bit_DASHshr2] = ACTIONS(2363), + [anon_sym_bit_DASHand2] = ACTIONS(2363), + [anon_sym_bit_DASHxor2] = ACTIONS(2363), + [anon_sym_bit_DASHor2] = ACTIONS(2363), + [anon_sym_err_GT] = ACTIONS(2365), + [anon_sym_out_GT] = ACTIONS(2365), + [anon_sym_e_GT] = ACTIONS(2365), + [anon_sym_o_GT] = ACTIONS(2365), + [anon_sym_err_PLUSout_GT] = ACTIONS(2365), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2365), + [anon_sym_o_PLUSe_GT] = ACTIONS(2365), + [anon_sym_e_PLUSo_GT] = ACTIONS(2365), + [anon_sym_err_GT_GT] = ACTIONS(2363), + [anon_sym_out_GT_GT] = ACTIONS(2363), + [anon_sym_e_GT_GT] = ACTIONS(2363), + [anon_sym_o_GT_GT] = ACTIONS(2363), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2363), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2363), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2363), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2363), [anon_sym_POUND] = ACTIONS(3), }, [STATE(785)] = { - [sym_cell_path] = STATE(1272), - [sym_path] = STATE(783), + [sym_cmd_identifier] = STATE(4141), + [sym_expr_parenthesized] = STATE(5138), + [sym__spread_parenthesized] = STATE(4677), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(4336), + [sym_val_number] = STATE(5138), + [sym__val_number_decimal] = STATE(1947), + [sym__val_number] = STATE(700), + [sym_val_string] = STATE(5138), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_interpolated] = STATE(5138), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym__spread_record] = STATE(4677), + [sym_record_entry] = STATE(4554), + [sym__record_key] = STATE(4944), [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_POUND] = ACTIONS(3), - }, - [STATE(786)] = { - [sym_comment] = STATE(786), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(2293), - [aux_sym__immediate_decimal_token5] = ACTIONS(2295), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(787)] = { - [sym_cell_path] = STATE(1273), - [sym_path] = STATE(783), - [sym_comment] = STATE(787), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [sym__newline] = ACTIONS(1862), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_err_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_GT_PIPE] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1862), - [anon_sym_GT2] = ACTIONS(1864), - [anon_sym_DASH2] = ACTIONS(1862), - [anon_sym_STAR2] = ACTIONS(1864), - [anon_sym_and2] = ACTIONS(1862), - [anon_sym_xor2] = ACTIONS(1862), - [anon_sym_or2] = ACTIONS(1862), - [anon_sym_not_DASHin2] = ACTIONS(1862), - [anon_sym_has2] = ACTIONS(1862), - [anon_sym_not_DASHhas2] = ACTIONS(1862), - [anon_sym_starts_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1862), - [anon_sym_ends_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1862), - [anon_sym_EQ_EQ2] = ACTIONS(1862), - [anon_sym_BANG_EQ2] = ACTIONS(1862), - [anon_sym_LT2] = ACTIONS(1864), - [anon_sym_LT_EQ2] = ACTIONS(1862), - [anon_sym_GT_EQ2] = ACTIONS(1862), - [anon_sym_EQ_TILDE2] = ACTIONS(1862), - [anon_sym_BANG_TILDE2] = ACTIONS(1862), - [anon_sym_like2] = ACTIONS(1862), - [anon_sym_not_DASHlike2] = ACTIONS(1862), - [anon_sym_STAR_STAR2] = ACTIONS(1862), - [anon_sym_PLUS_PLUS2] = ACTIONS(1862), - [anon_sym_SLASH2] = ACTIONS(1864), - [anon_sym_mod2] = ACTIONS(1862), - [anon_sym_SLASH_SLASH2] = ACTIONS(1862), - [anon_sym_PLUS2] = ACTIONS(1864), - [anon_sym_bit_DASHshl2] = ACTIONS(1862), - [anon_sym_bit_DASHshr2] = ACTIONS(1862), - [anon_sym_bit_DASHand2] = ACTIONS(1862), - [anon_sym_bit_DASHxor2] = ACTIONS(1862), - [anon_sym_bit_DASHor2] = ACTIONS(1862), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1864), - [anon_sym_out_GT] = ACTIONS(1864), - [anon_sym_e_GT] = ACTIONS(1864), - [anon_sym_o_GT] = ACTIONS(1864), - [anon_sym_err_PLUSout_GT] = ACTIONS(1864), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1864), - [anon_sym_o_PLUSe_GT] = ACTIONS(1864), - [anon_sym_e_PLUSo_GT] = ACTIONS(1864), - [anon_sym_err_GT_GT] = ACTIONS(1862), - [anon_sym_out_GT_GT] = ACTIONS(1862), - [anon_sym_e_GT_GT] = ACTIONS(1862), - [anon_sym_o_GT_GT] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1862), - [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_comment] = STATE(789), - [aux_sym__match_pattern_record_body_repeat1] = STATE(837), + [aux_sym__match_pattern_record_body_repeat1] = STATE(783), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -106830,6896 +106864,6896 @@ 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(1778), + [anon_sym_false] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1780), + [aux_sym_cmd_identifier_token4] = ACTIONS(1780), + [aux_sym_cmd_identifier_token5] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1786), [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(1790), + [aux_sym__val_number_decimal_token2] = ACTIONS(1792), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), [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(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), [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(1802), + }, + [STATE(786)] = { + [aux_sym__repeat_newline] = STATE(1063), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(786), + [anon_sym_in] = ACTIONS(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(787)] = { + [sym_comment] = STATE(787), + [anon_sym_if] = ACTIONS(2367), + [anon_sym_in] = ACTIONS(2367), + [sym__newline] = ACTIONS(2367), + [anon_sym_SEMI] = ACTIONS(2367), + [anon_sym_PIPE] = ACTIONS(2367), + [anon_sym_err_GT_PIPE] = ACTIONS(2367), + [anon_sym_out_GT_PIPE] = ACTIONS(2367), + [anon_sym_e_GT_PIPE] = ACTIONS(2367), + [anon_sym_o_GT_PIPE] = ACTIONS(2367), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2367), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2367), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2367), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2367), + [anon_sym_RPAREN] = ACTIONS(2367), + [anon_sym_GT2] = ACTIONS(2369), + [anon_sym_DASH2] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_EQ_GT] = ACTIONS(2367), + [anon_sym_STAR2] = ACTIONS(2369), + [anon_sym_and2] = ACTIONS(2367), + [anon_sym_xor2] = ACTIONS(2367), + [anon_sym_or2] = ACTIONS(2367), + [anon_sym_not_DASHin2] = ACTIONS(2367), + [anon_sym_has2] = ACTIONS(2367), + [anon_sym_not_DASHhas2] = ACTIONS(2367), + [anon_sym_starts_DASHwith2] = ACTIONS(2367), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2367), + [anon_sym_ends_DASHwith2] = ACTIONS(2367), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2367), + [anon_sym_EQ_EQ2] = ACTIONS(2367), + [anon_sym_BANG_EQ2] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LT_EQ2] = ACTIONS(2367), + [anon_sym_GT_EQ2] = ACTIONS(2367), + [anon_sym_EQ_TILDE2] = ACTIONS(2367), + [anon_sym_BANG_TILDE2] = ACTIONS(2367), + [anon_sym_like2] = ACTIONS(2367), + [anon_sym_not_DASHlike2] = ACTIONS(2367), + [anon_sym_STAR_STAR2] = ACTIONS(2367), + [anon_sym_PLUS_PLUS2] = ACTIONS(2367), + [anon_sym_SLASH2] = ACTIONS(2369), + [anon_sym_mod2] = ACTIONS(2367), + [anon_sym_SLASH_SLASH2] = ACTIONS(2367), + [anon_sym_PLUS2] = ACTIONS(2369), + [anon_sym_bit_DASHshl2] = ACTIONS(2367), + [anon_sym_bit_DASHshr2] = ACTIONS(2367), + [anon_sym_bit_DASHand2] = ACTIONS(2367), + [anon_sym_bit_DASHxor2] = ACTIONS(2367), + [anon_sym_bit_DASHor2] = ACTIONS(2367), + [anon_sym_err_GT] = ACTIONS(2369), + [anon_sym_out_GT] = ACTIONS(2369), + [anon_sym_e_GT] = ACTIONS(2369), + [anon_sym_o_GT] = ACTIONS(2369), + [anon_sym_err_PLUSout_GT] = ACTIONS(2369), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2369), + [anon_sym_o_PLUSe_GT] = ACTIONS(2369), + [anon_sym_e_PLUSo_GT] = ACTIONS(2369), + [anon_sym_err_GT_GT] = ACTIONS(2367), + [anon_sym_out_GT_GT] = ACTIONS(2367), + [anon_sym_e_GT_GT] = ACTIONS(2367), + [anon_sym_o_GT_GT] = ACTIONS(2367), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2367), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2367), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2367), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2367), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(788)] = { + [aux_sym__repeat_newline] = STATE(3418), + [aux_sym__pipe_separator] = STATE(765), + [sym_comment] = STATE(788), + [anon_sym_export] = ACTIONS(2371), + [anon_sym_alias] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_mut] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [aux_sym_cmd_identifier_token1] = ACTIONS(2371), + [anon_sym_def] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_export_DASHenv] = ACTIONS(2373), + [anon_sym_extern] = ACTIONS(2373), + [anon_sym_module] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_loop] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_else] = ACTIONS(2373), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_catch] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_in] = ACTIONS(2371), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [anon_sym_null] = ACTIONS(2373), + [aux_sym_cmd_identifier_token3] = ACTIONS(2373), + [aux_sym_cmd_identifier_token4] = ACTIONS(2373), + [aux_sym_cmd_identifier_token5] = ACTIONS(2373), + [sym__newline] = ACTIONS(2375), + [anon_sym_PIPE] = ACTIONS(2377), + [anon_sym_err_GT_PIPE] = ACTIONS(2377), + [anon_sym_out_GT_PIPE] = ACTIONS(2377), + [anon_sym_e_GT_PIPE] = ACTIONS(2377), + [anon_sym_o_GT_PIPE] = ACTIONS(2377), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2377), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2377), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2377), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_DOLLAR] = ACTIONS(2371), + [anon_sym_DASH2] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_DOT_DOT] = ACTIONS(2371), + [anon_sym_where] = ACTIONS(2373), + [aux_sym_expr_unary_token1] = ACTIONS(2373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2373), + [anon_sym_DOT_DOT_LT] = ACTIONS(2373), + [aux_sym__val_number_decimal_token1] = ACTIONS(2371), + [aux_sym__val_number_decimal_token2] = ACTIONS(2373), + [aux_sym__val_number_decimal_token3] = ACTIONS(2373), + [aux_sym__val_number_decimal_token4] = ACTIONS(2373), + [aux_sym__val_number_token1] = ACTIONS(2373), + [aux_sym__val_number_token2] = ACTIONS(2373), + [aux_sym__val_number_token3] = ACTIONS(2373), + [anon_sym_0b] = ACTIONS(2371), + [anon_sym_0o] = ACTIONS(2371), + [anon_sym_0x] = ACTIONS(2371), + [sym_val_date] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_BQUOTE] = ACTIONS(2373), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2373), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2373), + [anon_sym_CARET] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2373), + }, + [STATE(789)] = { + [sym_comment] = STATE(789), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_in] = ACTIONS(2379), + [sym__newline] = ACTIONS(2379), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(2379), + [anon_sym_err_GT_PIPE] = ACTIONS(2379), + [anon_sym_out_GT_PIPE] = ACTIONS(2379), + [anon_sym_e_GT_PIPE] = ACTIONS(2379), + [anon_sym_o_GT_PIPE] = ACTIONS(2379), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2379), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2379), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2379), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2379), + [anon_sym_RPAREN] = ACTIONS(2379), + [anon_sym_GT2] = ACTIONS(2381), + [anon_sym_DASH2] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_EQ_GT] = ACTIONS(2379), + [anon_sym_STAR2] = ACTIONS(2381), + [anon_sym_and2] = ACTIONS(2379), + [anon_sym_xor2] = ACTIONS(2379), + [anon_sym_or2] = ACTIONS(2379), + [anon_sym_not_DASHin2] = ACTIONS(2379), + [anon_sym_has2] = ACTIONS(2379), + [anon_sym_not_DASHhas2] = ACTIONS(2379), + [anon_sym_starts_DASHwith2] = ACTIONS(2379), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2379), + [anon_sym_ends_DASHwith2] = ACTIONS(2379), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2379), + [anon_sym_EQ_EQ2] = ACTIONS(2379), + [anon_sym_BANG_EQ2] = ACTIONS(2379), + [anon_sym_LT2] = ACTIONS(2381), + [anon_sym_LT_EQ2] = ACTIONS(2379), + [anon_sym_GT_EQ2] = ACTIONS(2379), + [anon_sym_EQ_TILDE2] = ACTIONS(2379), + [anon_sym_BANG_TILDE2] = ACTIONS(2379), + [anon_sym_like2] = ACTIONS(2379), + [anon_sym_not_DASHlike2] = ACTIONS(2379), + [anon_sym_STAR_STAR2] = ACTIONS(2379), + [anon_sym_PLUS_PLUS2] = ACTIONS(2379), + [anon_sym_SLASH2] = ACTIONS(2381), + [anon_sym_mod2] = ACTIONS(2379), + [anon_sym_SLASH_SLASH2] = ACTIONS(2379), + [anon_sym_PLUS2] = ACTIONS(2381), + [anon_sym_bit_DASHshl2] = ACTIONS(2379), + [anon_sym_bit_DASHshr2] = ACTIONS(2379), + [anon_sym_bit_DASHand2] = ACTIONS(2379), + [anon_sym_bit_DASHxor2] = ACTIONS(2379), + [anon_sym_bit_DASHor2] = ACTIONS(2379), + [anon_sym_err_GT] = ACTIONS(2381), + [anon_sym_out_GT] = ACTIONS(2381), + [anon_sym_e_GT] = ACTIONS(2381), + [anon_sym_o_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT] = ACTIONS(2381), + [anon_sym_err_GT_GT] = ACTIONS(2379), + [anon_sym_out_GT_GT] = ACTIONS(2379), + [anon_sym_e_GT_GT] = ACTIONS(2379), + [anon_sym_o_GT_GT] = ACTIONS(2379), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2379), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2379), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2379), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2379), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(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_if] = ACTIONS(2383), + [anon_sym_in] = ACTIONS(2383), + [sym__newline] = ACTIONS(2383), + [anon_sym_SEMI] = ACTIONS(2383), + [anon_sym_PIPE] = ACTIONS(2383), + [anon_sym_err_GT_PIPE] = ACTIONS(2383), + [anon_sym_out_GT_PIPE] = ACTIONS(2383), + [anon_sym_e_GT_PIPE] = ACTIONS(2383), + [anon_sym_o_GT_PIPE] = ACTIONS(2383), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2383), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2383), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2383), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2383), + [anon_sym_RPAREN] = ACTIONS(2383), + [anon_sym_GT2] = ACTIONS(2385), + [anon_sym_DASH2] = ACTIONS(2383), + [anon_sym_LBRACE] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(2383), + [anon_sym_STAR2] = ACTIONS(2385), + [anon_sym_and2] = ACTIONS(2383), + [anon_sym_xor2] = ACTIONS(2383), + [anon_sym_or2] = ACTIONS(2383), + [anon_sym_not_DASHin2] = ACTIONS(2383), + [anon_sym_has2] = ACTIONS(2383), + [anon_sym_not_DASHhas2] = ACTIONS(2383), + [anon_sym_starts_DASHwith2] = ACTIONS(2383), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2383), + [anon_sym_ends_DASHwith2] = ACTIONS(2383), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2383), + [anon_sym_EQ_EQ2] = ACTIONS(2383), + [anon_sym_BANG_EQ2] = ACTIONS(2383), + [anon_sym_LT2] = ACTIONS(2385), + [anon_sym_LT_EQ2] = ACTIONS(2383), + [anon_sym_GT_EQ2] = ACTIONS(2383), + [anon_sym_EQ_TILDE2] = ACTIONS(2383), + [anon_sym_BANG_TILDE2] = ACTIONS(2383), + [anon_sym_like2] = ACTIONS(2383), + [anon_sym_not_DASHlike2] = ACTIONS(2383), + [anon_sym_STAR_STAR2] = ACTIONS(2383), + [anon_sym_PLUS_PLUS2] = ACTIONS(2383), + [anon_sym_SLASH2] = ACTIONS(2385), + [anon_sym_mod2] = ACTIONS(2383), + [anon_sym_SLASH_SLASH2] = ACTIONS(2383), + [anon_sym_PLUS2] = ACTIONS(2385), + [anon_sym_bit_DASHshl2] = ACTIONS(2383), + [anon_sym_bit_DASHshr2] = ACTIONS(2383), + [anon_sym_bit_DASHand2] = ACTIONS(2383), + [anon_sym_bit_DASHxor2] = ACTIONS(2383), + [anon_sym_bit_DASHor2] = ACTIONS(2383), + [anon_sym_err_GT] = ACTIONS(2385), + [anon_sym_out_GT] = ACTIONS(2385), + [anon_sym_e_GT] = ACTIONS(2385), + [anon_sym_o_GT] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT] = ACTIONS(2385), + [anon_sym_err_GT_GT] = ACTIONS(2383), + [anon_sym_out_GT_GT] = ACTIONS(2383), + [anon_sym_e_GT_GT] = ACTIONS(2383), + [anon_sym_o_GT_GT] = ACTIONS(2383), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2383), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2383), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2383), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2383), [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), + [ts_builtin_sym_end] = ACTIONS(1535), + [anon_sym_in] = ACTIONS(1535), + [sym__newline] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_err_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_GT_PIPE] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), + [anon_sym_GT2] = ACTIONS(1533), + [anon_sym_DASH2] = ACTIONS(1535), + [anon_sym_STAR2] = ACTIONS(1533), + [anon_sym_and2] = ACTIONS(1535), + [anon_sym_xor2] = ACTIONS(1535), + [anon_sym_or2] = ACTIONS(1535), + [anon_sym_not_DASHin2] = ACTIONS(1535), + [anon_sym_has2] = ACTIONS(1535), + [anon_sym_not_DASHhas2] = ACTIONS(1535), + [anon_sym_starts_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), + [anon_sym_ends_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), + [anon_sym_EQ_EQ2] = ACTIONS(1535), + [anon_sym_BANG_EQ2] = ACTIONS(1535), + [anon_sym_LT2] = ACTIONS(1533), + [anon_sym_LT_EQ2] = ACTIONS(1535), + [anon_sym_GT_EQ2] = ACTIONS(1535), + [anon_sym_EQ_TILDE2] = ACTIONS(1535), + [anon_sym_BANG_TILDE2] = ACTIONS(1535), + [anon_sym_like2] = ACTIONS(1535), + [anon_sym_not_DASHlike2] = ACTIONS(1535), + [anon_sym_STAR_STAR2] = ACTIONS(1535), + [anon_sym_PLUS_PLUS2] = ACTIONS(1535), + [anon_sym_SLASH2] = ACTIONS(1533), + [anon_sym_mod2] = ACTIONS(1535), + [anon_sym_SLASH_SLASH2] = ACTIONS(1535), + [anon_sym_PLUS2] = ACTIONS(1533), + [anon_sym_bit_DASHshl2] = ACTIONS(1535), + [anon_sym_bit_DASHshr2] = ACTIONS(1535), + [anon_sym_bit_DASHand2] = ACTIONS(1535), + [anon_sym_bit_DASHxor2] = ACTIONS(1535), + [anon_sym_bit_DASHor2] = ACTIONS(1535), + [anon_sym_DOT_DOT2] = ACTIONS(1533), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1535), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1535), + [anon_sym_DOT2] = ACTIONS(1533), + [anon_sym_err_GT] = ACTIONS(1533), + [anon_sym_out_GT] = ACTIONS(1533), + [anon_sym_e_GT] = ACTIONS(1533), + [anon_sym_o_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT] = ACTIONS(1533), + [anon_sym_err_GT_GT] = ACTIONS(1535), + [anon_sym_out_GT_GT] = ACTIONS(1535), + [anon_sym_e_GT_GT] = ACTIONS(1535), + [anon_sym_o_GT_GT] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(1543), + [anon_sym_in] = ACTIONS(1543), + [sym__newline] = ACTIONS(1543), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1543), + [anon_sym_err_GT_PIPE] = ACTIONS(1543), + [anon_sym_out_GT_PIPE] = ACTIONS(1543), + [anon_sym_e_GT_PIPE] = ACTIONS(1543), + [anon_sym_o_GT_PIPE] = ACTIONS(1543), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1543), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1543), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1543), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1543), + [anon_sym_GT2] = ACTIONS(1541), + [anon_sym_DASH2] = ACTIONS(1543), + [anon_sym_STAR2] = ACTIONS(1541), + [anon_sym_and2] = ACTIONS(1543), + [anon_sym_xor2] = ACTIONS(1543), + [anon_sym_or2] = ACTIONS(1543), + [anon_sym_not_DASHin2] = ACTIONS(1543), + [anon_sym_has2] = ACTIONS(1543), + [anon_sym_not_DASHhas2] = ACTIONS(1543), + [anon_sym_starts_DASHwith2] = ACTIONS(1543), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1543), + [anon_sym_ends_DASHwith2] = ACTIONS(1543), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1543), + [anon_sym_EQ_EQ2] = ACTIONS(1543), + [anon_sym_BANG_EQ2] = ACTIONS(1543), + [anon_sym_LT2] = ACTIONS(1541), + [anon_sym_LT_EQ2] = ACTIONS(1543), + [anon_sym_GT_EQ2] = ACTIONS(1543), + [anon_sym_EQ_TILDE2] = ACTIONS(1543), + [anon_sym_BANG_TILDE2] = ACTIONS(1543), + [anon_sym_like2] = ACTIONS(1543), + [anon_sym_not_DASHlike2] = ACTIONS(1543), + [anon_sym_STAR_STAR2] = ACTIONS(1543), + [anon_sym_PLUS_PLUS2] = ACTIONS(1543), + [anon_sym_SLASH2] = ACTIONS(1541), + [anon_sym_mod2] = ACTIONS(1543), + [anon_sym_SLASH_SLASH2] = ACTIONS(1543), + [anon_sym_PLUS2] = ACTIONS(1541), + [anon_sym_bit_DASHshl2] = ACTIONS(1543), + [anon_sym_bit_DASHshr2] = ACTIONS(1543), + [anon_sym_bit_DASHand2] = ACTIONS(1543), + [anon_sym_bit_DASHxor2] = ACTIONS(1543), + [anon_sym_bit_DASHor2] = ACTIONS(1543), + [anon_sym_DOT_DOT2] = ACTIONS(1541), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1543), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1543), + [anon_sym_DOT2] = ACTIONS(1541), + [anon_sym_err_GT] = ACTIONS(1541), + [anon_sym_out_GT] = ACTIONS(1541), + [anon_sym_e_GT] = ACTIONS(1541), + [anon_sym_o_GT] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT] = ACTIONS(1541), + [anon_sym_err_GT_GT] = ACTIONS(1543), + [anon_sym_out_GT_GT] = ACTIONS(1543), + [anon_sym_e_GT_GT] = ACTIONS(1543), + [anon_sym_o_GT_GT] = ACTIONS(1543), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1543), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1543), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1543), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1543), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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_if] = ACTIONS(2387), + [anon_sym_in] = ACTIONS(2387), + [sym__newline] = ACTIONS(2387), + [anon_sym_SEMI] = ACTIONS(2387), + [anon_sym_PIPE] = ACTIONS(2387), + [anon_sym_err_GT_PIPE] = ACTIONS(2387), + [anon_sym_out_GT_PIPE] = ACTIONS(2387), + [anon_sym_e_GT_PIPE] = ACTIONS(2387), + [anon_sym_o_GT_PIPE] = ACTIONS(2387), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2387), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2387), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2387), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2387), + [anon_sym_RPAREN] = ACTIONS(2387), + [anon_sym_GT2] = ACTIONS(2389), + [anon_sym_DASH2] = ACTIONS(2387), + [anon_sym_LBRACE] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2387), + [anon_sym_EQ_GT] = ACTIONS(2387), + [anon_sym_STAR2] = ACTIONS(2389), + [anon_sym_and2] = ACTIONS(2387), + [anon_sym_xor2] = ACTIONS(2387), + [anon_sym_or2] = ACTIONS(2387), + [anon_sym_not_DASHin2] = ACTIONS(2387), + [anon_sym_has2] = ACTIONS(2387), + [anon_sym_not_DASHhas2] = ACTIONS(2387), + [anon_sym_starts_DASHwith2] = ACTIONS(2387), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2387), + [anon_sym_ends_DASHwith2] = ACTIONS(2387), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2387), + [anon_sym_EQ_EQ2] = ACTIONS(2387), + [anon_sym_BANG_EQ2] = ACTIONS(2387), + [anon_sym_LT2] = ACTIONS(2389), + [anon_sym_LT_EQ2] = ACTIONS(2387), + [anon_sym_GT_EQ2] = ACTIONS(2387), + [anon_sym_EQ_TILDE2] = ACTIONS(2387), + [anon_sym_BANG_TILDE2] = ACTIONS(2387), + [anon_sym_like2] = ACTIONS(2387), + [anon_sym_not_DASHlike2] = ACTIONS(2387), + [anon_sym_STAR_STAR2] = ACTIONS(2387), + [anon_sym_PLUS_PLUS2] = ACTIONS(2387), + [anon_sym_SLASH2] = ACTIONS(2389), + [anon_sym_mod2] = ACTIONS(2387), + [anon_sym_SLASH_SLASH2] = ACTIONS(2387), + [anon_sym_PLUS2] = ACTIONS(2389), + [anon_sym_bit_DASHshl2] = ACTIONS(2387), + [anon_sym_bit_DASHshr2] = ACTIONS(2387), + [anon_sym_bit_DASHand2] = ACTIONS(2387), + [anon_sym_bit_DASHxor2] = ACTIONS(2387), + [anon_sym_bit_DASHor2] = ACTIONS(2387), + [anon_sym_err_GT] = ACTIONS(2389), + [anon_sym_out_GT] = ACTIONS(2389), + [anon_sym_e_GT] = ACTIONS(2389), + [anon_sym_o_GT] = ACTIONS(2389), + [anon_sym_err_PLUSout_GT] = ACTIONS(2389), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2389), + [anon_sym_o_PLUSe_GT] = ACTIONS(2389), + [anon_sym_e_PLUSo_GT] = ACTIONS(2389), + [anon_sym_err_GT_GT] = ACTIONS(2387), + [anon_sym_out_GT_GT] = ACTIONS(2387), + [anon_sym_e_GT_GT] = ACTIONS(2387), + [anon_sym_o_GT_GT] = ACTIONS(2387), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2387), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2387), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2387), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2387), [anon_sym_POUND] = ACTIONS(3), }, [STATE(794)] = { - [aux_sym__repeat_newline] = STATE(1036), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1270), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(965), + [sym__unquoted_with_expr] = STATE(1272), + [sym__unquoted_anonymous_prefix] = STATE(4525), [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_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [anon_sym_null] = ACTIONS(2240), + [aux_sym_cmd_identifier_token3] = ACTIONS(2242), + [aux_sym_cmd_identifier_token4] = ACTIONS(2242), + [aux_sym_cmd_identifier_token5] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2244), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), + [anon_sym_DOT_DOT_LT] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2250), + [aux_sym__val_number_decimal_token3] = ACTIONS(2252), + [aux_sym__val_number_decimal_token4] = ACTIONS(2252), + [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(2254), + [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(2256), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(795)] = { + [sym_cell_path] = STATE(1339), + [sym_path] = STATE(791), [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(532), + [ts_builtin_sym_end] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(1872), + [sym__newline] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1872), + [anon_sym_err_GT_PIPE] = ACTIONS(1872), + [anon_sym_out_GT_PIPE] = ACTIONS(1872), + [anon_sym_e_GT_PIPE] = ACTIONS(1872), + [anon_sym_o_GT_PIPE] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1872), + [anon_sym_GT2] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_STAR2] = ACTIONS(1874), + [anon_sym_and2] = ACTIONS(1872), + [anon_sym_xor2] = ACTIONS(1872), + [anon_sym_or2] = ACTIONS(1872), + [anon_sym_not_DASHin2] = ACTIONS(1872), + [anon_sym_has2] = ACTIONS(1872), + [anon_sym_not_DASHhas2] = ACTIONS(1872), + [anon_sym_starts_DASHwith2] = ACTIONS(1872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1872), + [anon_sym_ends_DASHwith2] = ACTIONS(1872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1872), + [anon_sym_EQ_EQ2] = ACTIONS(1872), + [anon_sym_BANG_EQ2] = ACTIONS(1872), + [anon_sym_LT2] = ACTIONS(1874), + [anon_sym_LT_EQ2] = ACTIONS(1872), + [anon_sym_GT_EQ2] = ACTIONS(1872), + [anon_sym_EQ_TILDE2] = ACTIONS(1872), + [anon_sym_BANG_TILDE2] = ACTIONS(1872), + [anon_sym_like2] = ACTIONS(1872), + [anon_sym_not_DASHlike2] = ACTIONS(1872), + [anon_sym_STAR_STAR2] = ACTIONS(1872), + [anon_sym_PLUS_PLUS2] = ACTIONS(1872), + [anon_sym_SLASH2] = ACTIONS(1874), + [anon_sym_mod2] = ACTIONS(1872), + [anon_sym_SLASH_SLASH2] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1874), + [anon_sym_bit_DASHshl2] = ACTIONS(1872), + [anon_sym_bit_DASHshr2] = ACTIONS(1872), + [anon_sym_bit_DASHand2] = ACTIONS(1872), + [anon_sym_bit_DASHxor2] = ACTIONS(1872), + [anon_sym_bit_DASHor2] = ACTIONS(1872), + [anon_sym_DOT2] = ACTIONS(2391), + [anon_sym_err_GT] = ACTIONS(1874), + [anon_sym_out_GT] = ACTIONS(1874), + [anon_sym_e_GT] = ACTIONS(1874), + [anon_sym_o_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT] = ACTIONS(1874), + [anon_sym_err_GT_GT] = ACTIONS(1872), + [anon_sym_out_GT_GT] = ACTIONS(1872), + [anon_sym_e_GT_GT] = ACTIONS(1872), + [anon_sym_o_GT_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1872), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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), + [aux_sym__repeat_newline] = STATE(1092), + [sym__expr_parenthesized_immediate] = STATE(4713), [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), + [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_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_LPAREN2] = ACTIONS(1766), + [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_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), - [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(1093), + [sym__expr_parenthesized_immediate] = STATE(4713), [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_POUND] = ACTIONS(3), - }, - [STATE(798)] = { - [aux_sym__repeat_newline] = STATE(1038), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(798), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [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_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_POUND] = ACTIONS(3), - }, - [STATE(801)] = { - [aux_sym__repeat_newline] = STATE(1041), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(801), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(802)] = { - [aux_sym__repeat_newline] = STATE(1130), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(802), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(803)] = { - [aux_sym__repeat_newline] = STATE(1044), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(803), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(804)] = { - [aux_sym__repeat_newline] = STATE(1045), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(804), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(805)] = { - [aux_sym__repeat_newline] = STATE(1052), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(805), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(806)] = { - [aux_sym__repeat_newline] = STATE(1053), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(806), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(807)] = { - [aux_sym__repeat_newline] = STATE(1055), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(807), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(808)] = { - [sym_comment] = STATE(808), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_COLON2] = ACTIONS(1708), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(809)] = { - [aux_sym__repeat_newline] = STATE(1057), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(809), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(810)] = { - [aux_sym__repeat_newline] = STATE(1060), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(810), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [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_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_LPAREN2] = ACTIONS(1766), + [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_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(811)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1681), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1121), - [sym__unquoted_with_expr] = STATE(1327), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(811), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(798)] = { + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1274), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1014), + [sym__unquoted_with_expr] = STATE(1276), + [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_comment] = STATE(798), + [anon_sym_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [anon_sym_null] = ACTIONS(2240), + [aux_sym_cmd_identifier_token3] = ACTIONS(2242), + [aux_sym_cmd_identifier_token4] = ACTIONS(2242), + [aux_sym_cmd_identifier_token5] = ACTIONS(2242), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2244), [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(2246), + [anon_sym_DOT_DOT_LT] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2250), + [aux_sym__val_number_decimal_token3] = ACTIONS(2252), + [aux_sym__val_number_decimal_token4] = ACTIONS(2252), [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(2254), [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(2256), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(812)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1682), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1123), - [sym__unquoted_with_expr] = STATE(1334), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(812), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(799)] = { + [aux_sym__repeat_newline] = STATE(1080), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(799), + [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_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_LPAREN2] = ACTIONS(1766), + [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_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(800)] = { + [sym_cell_path] = STATE(1306), + [sym_path] = STATE(791), + [sym_comment] = STATE(800), + [aux_sym__where_predicate_lhs_repeat1] = STATE(532), + [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(2391), + [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(801)] = { + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1681), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1496), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(965), + [sym__unquoted_with_expr] = STATE(1272), + [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_comment] = STATE(801), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2395), + [aux_sym_cmd_identifier_token3] = ACTIONS(2397), + [aux_sym_cmd_identifier_token4] = ACTIONS(2397), + [aux_sym_cmd_identifier_token5] = ACTIONS(2397), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2399), [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(2401), + [anon_sym_DOT_DOT_LT] = ACTIONS(2401), + [aux_sym__val_number_decimal_token1] = ACTIONS(2403), + [aux_sym__val_number_decimal_token2] = ACTIONS(2405), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), [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(2409), [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(2256), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(813)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1683), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1126), - [sym__unquoted_with_expr] = STATE(1317), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(813), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(802)] = { + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1685), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1496), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1014), + [sym__unquoted_with_expr] = STATE(1276), + [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_comment] = STATE(802), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2395), + [aux_sym_cmd_identifier_token3] = ACTIONS(2397), + [aux_sym_cmd_identifier_token4] = ACTIONS(2397), + [aux_sym_cmd_identifier_token5] = ACTIONS(2397), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2399), [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(2401), + [anon_sym_DOT_DOT_LT] = ACTIONS(2401), + [aux_sym__val_number_decimal_token1] = ACTIONS(2403), + [aux_sym__val_number_decimal_token2] = ACTIONS(2405), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), [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(2409), [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(2256), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(814)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1684), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(974), - [sym__unquoted_with_expr] = STATE(1312), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(814), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(803)] = { + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1686), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1496), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1018), + [sym__unquoted_with_expr] = STATE(1279), + [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_comment] = STATE(803), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2395), + [aux_sym_cmd_identifier_token3] = ACTIONS(2397), + [aux_sym_cmd_identifier_token4] = ACTIONS(2397), + [aux_sym_cmd_identifier_token5] = ACTIONS(2397), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2399), [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(2401), + [anon_sym_DOT_DOT_LT] = ACTIONS(2401), + [aux_sym__val_number_decimal_token1] = ACTIONS(2403), + [aux_sym__val_number_decimal_token2] = ACTIONS(2405), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), [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(2409), [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(2256), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(815)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1685), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1012), - [sym__unquoted_with_expr] = STATE(1307), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(815), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(804)] = { + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1684), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1496), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1021), + [sym__unquoted_with_expr] = STATE(1282), + [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_comment] = STATE(804), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2395), + [aux_sym_cmd_identifier_token3] = ACTIONS(2397), + [aux_sym_cmd_identifier_token4] = ACTIONS(2397), + [aux_sym_cmd_identifier_token5] = ACTIONS(2397), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2399), [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(2401), + [anon_sym_DOT_DOT_LT] = ACTIONS(2401), + [aux_sym__val_number_decimal_token1] = ACTIONS(2403), + [aux_sym__val_number_decimal_token2] = ACTIONS(2405), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), [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(2409), [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(2256), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(816)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1686), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1071), - [sym__unquoted_with_expr] = STATE(1302), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(816), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(805)] = { + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1688), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1496), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1025), + [sym__unquoted_with_expr] = STATE(1285), + [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_comment] = STATE(805), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2395), + [aux_sym_cmd_identifier_token3] = ACTIONS(2397), + [aux_sym_cmd_identifier_token4] = ACTIONS(2397), + [aux_sym_cmd_identifier_token5] = ACTIONS(2397), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2399), [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(2401), + [anon_sym_DOT_DOT_LT] = ACTIONS(2401), + [aux_sym__val_number_decimal_token1] = ACTIONS(2403), + [aux_sym__val_number_decimal_token2] = ACTIONS(2405), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), [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(2409), [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(2256), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(817)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1687), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1127), - [sym__unquoted_with_expr] = STATE(1321), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(817), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(806)] = { + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1679), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1496), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1029), + [sym__unquoted_with_expr] = STATE(1304), + [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_comment] = STATE(806), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2395), + [aux_sym_cmd_identifier_token3] = ACTIONS(2397), + [aux_sym_cmd_identifier_token4] = ACTIONS(2397), + [aux_sym_cmd_identifier_token5] = ACTIONS(2397), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2399), [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(2401), + [anon_sym_DOT_DOT_LT] = ACTIONS(2401), + [aux_sym__val_number_decimal_token1] = ACTIONS(2403), + [aux_sym__val_number_decimal_token2] = ACTIONS(2405), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), [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(2409), [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(2256), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(818)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1689), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(972), - [sym__unquoted_with_expr] = STATE(1281), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(818), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(807)] = { + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1690), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1496), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1030), + [sym__unquoted_with_expr] = STATE(1310), + [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_comment] = STATE(807), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2395), + [aux_sym_cmd_identifier_token3] = ACTIONS(2397), + [aux_sym_cmd_identifier_token4] = ACTIONS(2397), + [aux_sym_cmd_identifier_token5] = ACTIONS(2397), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2399), [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(2401), + [anon_sym_DOT_DOT_LT] = ACTIONS(2401), + [aux_sym__val_number_decimal_token1] = ACTIONS(2403), + [aux_sym__val_number_decimal_token2] = ACTIONS(2405), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), [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(2409), [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(2256), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(819)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1282), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(981), - [sym__unquoted_with_expr] = STATE(1296), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(819), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(808)] = { + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1691), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1496), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1031), + [sym__unquoted_with_expr] = STATE(1312), + [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_comment] = STATE(808), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2395), + [aux_sym_cmd_identifier_token3] = ACTIONS(2397), + [aux_sym_cmd_identifier_token4] = ACTIONS(2397), + [aux_sym_cmd_identifier_token5] = ACTIONS(2397), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2399), [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(2401), + [anon_sym_DOT_DOT_LT] = ACTIONS(2401), + [aux_sym__val_number_decimal_token1] = ACTIONS(2403), + [aux_sym__val_number_decimal_token2] = ACTIONS(2405), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), [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(2409), [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(2256), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(820)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1690), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1016), - [sym__unquoted_with_expr] = STATE(1301), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(820), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(809)] = { + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1313), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1496), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1032), + [sym__unquoted_with_expr] = STATE(1267), + [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_comment] = STATE(809), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2395), + [aux_sym_cmd_identifier_token3] = ACTIONS(2397), + [aux_sym_cmd_identifier_token4] = ACTIONS(2397), + [aux_sym_cmd_identifier_token5] = ACTIONS(2397), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2399), [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(2401), + [anon_sym_DOT_DOT_LT] = ACTIONS(2401), + [aux_sym__val_number_decimal_token1] = ACTIONS(2403), + [aux_sym__val_number_decimal_token2] = ACTIONS(2405), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), [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(2409), [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(2256), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(821)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1691), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1033), - [sym__unquoted_with_expr] = STATE(1280), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(821), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(810)] = { + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1692), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1496), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1051), + [sym__unquoted_with_expr] = STATE(1271), + [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_comment] = STATE(810), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2395), + [aux_sym_cmd_identifier_token3] = ACTIONS(2397), + [aux_sym_cmd_identifier_token4] = ACTIONS(2397), + [aux_sym_cmd_identifier_token5] = ACTIONS(2397), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2399), [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(2401), + [anon_sym_DOT_DOT_LT] = ACTIONS(2401), + [aux_sym__val_number_decimal_token1] = ACTIONS(2403), + [aux_sym__val_number_decimal_token2] = ACTIONS(2405), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), [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(2409), [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(2256), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(822)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1692), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1086), - [sym__unquoted_with_expr] = STATE(1345), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(822), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(811)] = { + [aux_sym__repeat_newline] = STATE(1033), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(811), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(812)] = { + [aux_sym__repeat_newline] = STATE(1034), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(812), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(813)] = { + [aux_sym__repeat_newline] = STATE(1035), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(813), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(814)] = { + [aux_sym__repeat_newline] = STATE(1036), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(814), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(815)] = { + [aux_sym__repeat_newline] = STATE(1037), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(815), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(816)] = { + [aux_sym__repeat_newline] = STATE(1038), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(816), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(817)] = { + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1693), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1496), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1058), + [sym__unquoted_with_expr] = STATE(1275), + [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_comment] = STATE(817), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2395), + [aux_sym_cmd_identifier_token3] = ACTIONS(2397), + [aux_sym_cmd_identifier_token4] = ACTIONS(2397), + [aux_sym_cmd_identifier_token5] = ACTIONS(2397), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2399), [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(2401), + [anon_sym_DOT_DOT_LT] = ACTIONS(2401), + [aux_sym__val_number_decimal_token1] = ACTIONS(2403), + [aux_sym__val_number_decimal_token2] = ACTIONS(2405), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), [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(2409), [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(2256), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, + [STATE(818)] = { + [aux_sym__repeat_newline] = STATE(1039), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(818), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(819)] = { + [aux_sym__repeat_newline] = STATE(1040), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(819), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(820)] = { + [aux_sym__repeat_newline] = STATE(1042), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(820), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(821)] = { + [aux_sym__repeat_newline] = STATE(1043), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(821), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(822)] = { + [aux_sym__repeat_newline] = STATE(1044), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(822), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(823)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1693), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1128), - [sym__unquoted_with_expr] = STATE(1284), - [sym__unquoted_anonymous_prefix] = STATE(4499), + [aux_sym__repeat_newline] = STATE(1045), + [sym__expr_parenthesized_immediate] = STATE(4713), [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), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(824)] = { + [aux_sym__repeat_newline] = STATE(1046), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(824), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(825)] = { + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1694), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1496), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1065), + [sym__unquoted_with_expr] = STATE(1281), + [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_comment] = STATE(825), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2395), + [aux_sym_cmd_identifier_token3] = ACTIONS(2397), + [aux_sym_cmd_identifier_token4] = ACTIONS(2397), + [aux_sym_cmd_identifier_token5] = ACTIONS(2397), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2399), [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(2401), + [anon_sym_DOT_DOT_LT] = ACTIONS(2401), + [aux_sym__val_number_decimal_token1] = ACTIONS(2403), + [aux_sym__val_number_decimal_token2] = ACTIONS(2405), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), [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(2409), [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(2256), [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), + [aux_sym__repeat_newline] = STATE(1048), + [sym__expr_parenthesized_immediate] = STATE(4713), [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_in] = ACTIONS(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [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_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1695), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(1496), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1073), + [sym__unquoted_with_expr] = STATE(1263), + [sym__unquoted_anonymous_prefix] = STATE(4525), [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_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [anon_sym_null] = ACTIONS(2395), + [aux_sym_cmd_identifier_token3] = ACTIONS(2397), + [aux_sym_cmd_identifier_token4] = ACTIONS(2397), + [aux_sym_cmd_identifier_token5] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2399), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2401), + [anon_sym_DOT_DOT_LT] = ACTIONS(2401), + [aux_sym__val_number_decimal_token1] = ACTIONS(2403), + [aux_sym__val_number_decimal_token2] = ACTIONS(2405), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [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(2409), + [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(2256), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(828)] = { - [aux_sym__repeat_newline] = STATE(1070), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1081), + [sym__expr_parenthesized_immediate] = STATE(4713), [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(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_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_LPAREN2] = ACTIONS(1766), + [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_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(829)] = { - [aux_sym__repeat_newline] = STATE(1073), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1050), + [sym__expr_parenthesized_immediate] = STATE(4713), [sym_comment] = STATE(829), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [anon_sym_POUND] = ACTIONS(3), }, [STATE(830)] = { - [sym_cell_path] = STATE(1320), - [sym_path] = STATE(783), + [aux_sym__repeat_newline] = STATE(1053), + [sym__expr_parenthesized_immediate] = STATE(4713), [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(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [anon_sym_POUND] = ACTIONS(3), }, [STATE(831)] = { - [aux_sym__repeat_newline] = STATE(1078), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym_cell_path] = STATE(1307), + [sym_path] = STATE(791), [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(532), + [ts_builtin_sym_end] = ACTIONS(1880), + [anon_sym_in] = ACTIONS(1880), + [sym__newline] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_err_GT_PIPE] = ACTIONS(1880), + [anon_sym_out_GT_PIPE] = ACTIONS(1880), + [anon_sym_e_GT_PIPE] = ACTIONS(1880), + [anon_sym_o_GT_PIPE] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1880), + [anon_sym_GT2] = ACTIONS(1882), + [anon_sym_DASH2] = ACTIONS(1880), + [anon_sym_STAR2] = ACTIONS(1882), + [anon_sym_and2] = ACTIONS(1880), + [anon_sym_xor2] = ACTIONS(1880), + [anon_sym_or2] = ACTIONS(1880), + [anon_sym_not_DASHin2] = ACTIONS(1880), + [anon_sym_has2] = ACTIONS(1880), + [anon_sym_not_DASHhas2] = ACTIONS(1880), + [anon_sym_starts_DASHwith2] = ACTIONS(1880), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1880), + [anon_sym_ends_DASHwith2] = ACTIONS(1880), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1880), + [anon_sym_EQ_EQ2] = ACTIONS(1880), + [anon_sym_BANG_EQ2] = ACTIONS(1880), + [anon_sym_LT2] = ACTIONS(1882), + [anon_sym_LT_EQ2] = ACTIONS(1880), + [anon_sym_GT_EQ2] = ACTIONS(1880), + [anon_sym_EQ_TILDE2] = ACTIONS(1880), + [anon_sym_BANG_TILDE2] = ACTIONS(1880), + [anon_sym_like2] = ACTIONS(1880), + [anon_sym_not_DASHlike2] = ACTIONS(1880), + [anon_sym_STAR_STAR2] = ACTIONS(1880), + [anon_sym_PLUS_PLUS2] = ACTIONS(1880), + [anon_sym_SLASH2] = ACTIONS(1882), + [anon_sym_mod2] = ACTIONS(1880), + [anon_sym_SLASH_SLASH2] = ACTIONS(1880), + [anon_sym_PLUS2] = ACTIONS(1882), + [anon_sym_bit_DASHshl2] = ACTIONS(1880), + [anon_sym_bit_DASHshr2] = ACTIONS(1880), + [anon_sym_bit_DASHand2] = ACTIONS(1880), + [anon_sym_bit_DASHxor2] = ACTIONS(1880), + [anon_sym_bit_DASHor2] = ACTIONS(1880), + [anon_sym_DOT2] = ACTIONS(2391), + [anon_sym_err_GT] = ACTIONS(1882), + [anon_sym_out_GT] = ACTIONS(1882), + [anon_sym_e_GT] = ACTIONS(1882), + [anon_sym_o_GT] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT] = ACTIONS(1882), + [anon_sym_err_GT_GT] = ACTIONS(1880), + [anon_sym_out_GT_GT] = ACTIONS(1880), + [anon_sym_e_GT_GT] = ACTIONS(1880), + [anon_sym_o_GT_GT] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1880), [anon_sym_POUND] = ACTIONS(3), }, [STATE(832)] = { - [aux_sym__repeat_newline] = STATE(1080), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1055), + [sym__expr_parenthesized_immediate] = STATE(4713), [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(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [anon_sym_POUND] = ACTIONS(3), }, [STATE(833)] = { - [aux_sym__repeat_newline] = STATE(1082), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1268), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1051), + [sym__unquoted_with_expr] = STATE(1271), + [sym__unquoted_anonymous_prefix] = STATE(4525), [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_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [anon_sym_null] = ACTIONS(2240), + [aux_sym_cmd_identifier_token3] = ACTIONS(2242), + [aux_sym_cmd_identifier_token4] = ACTIONS(2242), + [aux_sym_cmd_identifier_token5] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2244), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), + [anon_sym_DOT_DOT_LT] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2250), + [aux_sym__val_number_decimal_token3] = ACTIONS(2252), + [aux_sym__val_number_decimal_token4] = ACTIONS(2252), + [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(2254), + [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(2256), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(834)] = { - [aux_sym__repeat_newline] = STATE(1085), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1077), + [sym__expr_parenthesized_immediate] = STATE(4713), [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(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [anon_sym_POUND] = ACTIONS(3), }, [STATE(835)] = { - [aux_sym__repeat_newline] = STATE(1088), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2146), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(708), + [sym__unquoted_with_expr] = STATE(928), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2042), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(836)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4235), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4578), - [sym__record_key] = STATE(4971), + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1636), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(708), + [sym__unquoted_with_expr] = STATE(928), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(836), - [aux_sym__match_pattern_record_body_repeat1] = STATE(837), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [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(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [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(1924), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(211), }, [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_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1637), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(710), + [sym__unquoted_with_expr] = STATE(946), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [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_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1638), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(962), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1639), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(691), + [sym__unquoted_with_expr] = STATE(907), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1640), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(674), + [sym__unquoted_with_expr] = STATE(915), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1641), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(676), + [sym__unquoted_with_expr] = STATE(920), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1642), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(677), + [sym__unquoted_with_expr] = STATE(924), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1643), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(678), + [sym__unquoted_with_expr] = STATE(929), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(927), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(682), + [sym__unquoted_with_expr] = STATE(897), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1644), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(683), + [sym__unquoted_with_expr] = STATE(899), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1645), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(684), + [sym__unquoted_with_expr] = STATE(905), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1646), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(685), + [sym__unquoted_with_expr] = STATE(908), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(1647), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1484), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1407), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(687), + [sym__unquoted_with_expr] = STATE(912), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_null] = ACTIONS(2058), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2062), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2068), + [aux_sym__val_number_decimal_token3] = ACTIONS(2070), + [aux_sym__val_number_decimal_token4] = ACTIONS(2070), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2072), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2147), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(710), + [sym__unquoted_with_expr] = STATE(946), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2042), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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_cmd_identifier] = STATE(4141), + [sym_expr_parenthesized] = STATE(5138), + [sym__spread_parenthesized] = STATE(4677), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(5138), + [sym_val_number] = STATE(5138), + [sym__val_number_decimal] = STATE(1947), + [sym__val_number] = STATE(700), + [sym_val_string] = STATE(5138), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_interpolated] = STATE(5138), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym__spread_record] = STATE(4677), + [sym_record_entry] = STATE(4470), + [sym__record_key] = STATE(4944), [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), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [aux_sym_record_body_repeat1] = STATE(874), + [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(1778), + [anon_sym_false] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1780), + [aux_sym_cmd_identifier_token4] = ACTIONS(1780), + [aux_sym_cmd_identifier_token5] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1804), + [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(1790), + [aux_sym__val_number_decimal_token2] = ACTIONS(1792), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), [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(1802), }, [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_in] = ACTIONS(2415), + [sym__newline] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(2415), + [anon_sym_PIPE] = ACTIONS(2415), + [anon_sym_err_GT_PIPE] = ACTIONS(2415), + [anon_sym_out_GT_PIPE] = ACTIONS(2415), + [anon_sym_e_GT_PIPE] = ACTIONS(2415), + [anon_sym_o_GT_PIPE] = ACTIONS(2415), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2415), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2415), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2415), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(2415), + [anon_sym_GT2] = ACTIONS(2417), + [anon_sym_DASH2] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_STAR2] = ACTIONS(2417), + [anon_sym_and2] = ACTIONS(2415), + [anon_sym_xor2] = ACTIONS(2415), + [anon_sym_or2] = ACTIONS(2415), + [anon_sym_not_DASHin2] = ACTIONS(2415), + [anon_sym_has2] = ACTIONS(2415), + [anon_sym_not_DASHhas2] = ACTIONS(2415), + [anon_sym_starts_DASHwith2] = ACTIONS(2415), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2415), + [anon_sym_ends_DASHwith2] = ACTIONS(2415), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2415), + [anon_sym_EQ_EQ2] = ACTIONS(2415), + [anon_sym_BANG_EQ2] = ACTIONS(2415), + [anon_sym_LT2] = ACTIONS(2417), + [anon_sym_LT_EQ2] = ACTIONS(2415), + [anon_sym_GT_EQ2] = ACTIONS(2415), + [anon_sym_EQ_TILDE2] = ACTIONS(2415), + [anon_sym_BANG_TILDE2] = ACTIONS(2415), + [anon_sym_like2] = ACTIONS(2415), + [anon_sym_not_DASHlike2] = ACTIONS(2415), + [anon_sym_STAR_STAR2] = ACTIONS(2415), + [anon_sym_PLUS_PLUS2] = ACTIONS(2415), + [anon_sym_SLASH2] = ACTIONS(2417), + [anon_sym_mod2] = ACTIONS(2415), + [anon_sym_SLASH_SLASH2] = ACTIONS(2415), + [anon_sym_PLUS2] = ACTIONS(2417), + [anon_sym_bit_DASHshl2] = ACTIONS(2415), + [anon_sym_bit_DASHshr2] = ACTIONS(2415), + [anon_sym_bit_DASHand2] = ACTIONS(2415), + [anon_sym_bit_DASHxor2] = ACTIONS(2415), + [anon_sym_bit_DASHor2] = ACTIONS(2415), + [anon_sym_DOT_DOT2] = ACTIONS(1633), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), + [anon_sym_err_GT] = ACTIONS(2417), + [anon_sym_out_GT] = ACTIONS(2417), + [anon_sym_e_GT] = ACTIONS(2417), + [anon_sym_o_GT] = ACTIONS(2417), + [anon_sym_err_PLUSout_GT] = ACTIONS(2417), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2417), + [anon_sym_o_PLUSe_GT] = ACTIONS(2417), + [anon_sym_e_PLUSo_GT] = ACTIONS(2417), + [anon_sym_err_GT_GT] = ACTIONS(2415), + [anon_sym_out_GT_GT] = ACTIONS(2415), + [anon_sym_e_GT_GT] = ACTIONS(2415), + [anon_sym_o_GT_GT] = ACTIONS(2415), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2415), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2415), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2415), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2415), [anon_sym_POUND] = ACTIONS(3), }, [STATE(852)] = { - [aux_sym__repeat_newline] = STATE(1092), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1125), + [sym__expr_parenthesized_immediate] = STATE(4713), [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_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(853)] = { - [aux_sym__repeat_newline] = STATE(1093), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1128), + [sym__expr_parenthesized_immediate] = STATE(4713), [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(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(854)] = { - [aux_sym__repeat_newline] = STATE(1094), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(900), + [aux_sym__pipe_separator] = STATE(765), [sym_comment] = STATE(854), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2423), + [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(2423), + [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(2423), + [anon_sym_true] = ACTIONS(2425), + [anon_sym_false] = ACTIONS(2425), + [anon_sym_null] = ACTIONS(2425), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), + [sym__newline] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2377), + [anon_sym_err_GT_PIPE] = ACTIONS(2377), + [anon_sym_out_GT_PIPE] = ACTIONS(2377), + [anon_sym_e_GT_PIPE] = ACTIONS(2377), + [anon_sym_o_GT_PIPE] = ACTIONS(2377), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2377), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2377), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2377), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_DOLLAR] = ACTIONS(2423), + [anon_sym_DASH2] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2425), + [anon_sym_DOT_DOT] = ACTIONS(2423), + [anon_sym_where] = ACTIONS(2425), + [aux_sym_expr_unary_token1] = ACTIONS(2425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2425), + [anon_sym_DOT_DOT_LT] = ACTIONS(2425), + [aux_sym__val_number_decimal_token1] = ACTIONS(2423), + [aux_sym__val_number_decimal_token2] = ACTIONS(2425), + [aux_sym__val_number_decimal_token3] = ACTIONS(2425), + [aux_sym__val_number_decimal_token4] = ACTIONS(2425), + [aux_sym__val_number_token1] = ACTIONS(2425), + [aux_sym__val_number_token2] = ACTIONS(2425), + [aux_sym__val_number_token3] = ACTIONS(2425), + [anon_sym_0b] = ACTIONS(2423), + [anon_sym_0o] = ACTIONS(2423), + [anon_sym_0x] = ACTIONS(2423), + [sym_val_date] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(2425), + [anon_sym_SQUOTE] = ACTIONS(2425), + [anon_sym_BQUOTE] = ACTIONS(2425), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2425), + [anon_sym_CARET] = ACTIONS(2425), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2425), }, [STATE(855)] = { - [aux_sym__repeat_newline] = STATE(1095), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(967), + [sym__expr_parenthesized_immediate] = STATE(4713), [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(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(856)] = { - [aux_sym__repeat_newline] = STATE(1096), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(969), + [sym__expr_parenthesized_immediate] = STATE(4713), [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(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(857)] = { - [aux_sym__repeat_newline] = STATE(1097), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1273), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1058), + [sym__unquoted_with_expr] = STATE(1275), + [sym__unquoted_anonymous_prefix] = STATE(4525), [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_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [anon_sym_null] = ACTIONS(2240), + [aux_sym_cmd_identifier_token3] = ACTIONS(2242), + [aux_sym_cmd_identifier_token4] = ACTIONS(2242), + [aux_sym_cmd_identifier_token5] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2244), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), + [anon_sym_DOT_DOT_LT] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2250), + [aux_sym__val_number_decimal_token3] = ACTIONS(2252), + [aux_sym__val_number_decimal_token4] = ACTIONS(2252), + [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(2254), + [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(2256), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(858)] = { - [aux_sym__repeat_newline] = STATE(1098), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(975), + [sym__expr_parenthesized_immediate] = STATE(4713), [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(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(859)] = { - [aux_sym__repeat_newline] = STATE(1100), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2148), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(962), + [sym__unquoted_anonymous_prefix] = STATE(4488), [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_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2042), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(860)] = { - [aux_sym__repeat_newline] = STATE(1101), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(978), + [sym__expr_parenthesized_immediate] = STATE(4713), [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(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(861)] = { - [aux_sym__repeat_newline] = STATE(1102), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1082), + [sym__expr_parenthesized_immediate] = STATE(4713), [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(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_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_LPAREN2] = ACTIONS(1766), + [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_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(862)] = { - [aux_sym__repeat_newline] = STATE(1106), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(984), + [sym__expr_parenthesized_immediate] = STATE(4713), [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(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(863)] = { - [aux_sym__repeat_newline] = STATE(1107), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1278), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1065), + [sym__unquoted_with_expr] = STATE(1281), + [sym__unquoted_anonymous_prefix] = STATE(4525), [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_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [anon_sym_null] = ACTIONS(2240), + [aux_sym_cmd_identifier_token3] = ACTIONS(2242), + [aux_sym_cmd_identifier_token4] = ACTIONS(2242), + [aux_sym_cmd_identifier_token5] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2244), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), + [anon_sym_DOT_DOT_LT] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2250), + [aux_sym__val_number_decimal_token3] = ACTIONS(2252), + [aux_sym__val_number_decimal_token4] = ACTIONS(2252), + [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(2254), + [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(2256), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(864)] = { - [sym_cell_path] = STATE(1274), - [sym_path] = STATE(783), + [sym_cell_path] = STATE(1335), + [sym_path] = STATE(791), [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), + [aux_sym__where_predicate_lhs_repeat1] = STATE(532), + [ts_builtin_sym_end] = ACTIONS(1862), + [anon_sym_in] = ACTIONS(1862), + [sym__newline] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1862), + [anon_sym_err_GT_PIPE] = ACTIONS(1862), + [anon_sym_out_GT_PIPE] = ACTIONS(1862), + [anon_sym_e_GT_PIPE] = ACTIONS(1862), + [anon_sym_o_GT_PIPE] = ACTIONS(1862), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1862), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1862), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1862), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1862), + [anon_sym_GT2] = ACTIONS(1865), + [anon_sym_DASH2] = ACTIONS(1862), + [anon_sym_STAR2] = ACTIONS(1865), + [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(1865), + [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(1865), + [anon_sym_mod2] = ACTIONS(1862), + [anon_sym_SLASH_SLASH2] = ACTIONS(1862), + [anon_sym_PLUS2] = ACTIONS(1865), + [anon_sym_bit_DASHshl2] = ACTIONS(1862), + [anon_sym_bit_DASHshr2] = ACTIONS(1862), + [anon_sym_bit_DASHand2] = ACTIONS(1862), + [anon_sym_bit_DASHxor2] = ACTIONS(1862), + [anon_sym_bit_DASHor2] = ACTIONS(1862), + [anon_sym_DOT2] = ACTIONS(2391), + [anon_sym_err_GT] = ACTIONS(1865), + [anon_sym_out_GT] = ACTIONS(1865), + [anon_sym_e_GT] = ACTIONS(1865), + [anon_sym_o_GT] = ACTIONS(1865), + [anon_sym_err_PLUSout_GT] = ACTIONS(1865), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1865), + [anon_sym_o_PLUSe_GT] = ACTIONS(1865), + [anon_sym_e_PLUSo_GT] = ACTIONS(1865), + [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(865)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1665), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [sym_expr_unary] = STATE(1269), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_binary] = STATE(1269), + [sym__expr_binary_expression] = STATE(1284), + [sym_expr_parenthesized] = STATE(947), + [sym_val_range] = STATE(1269), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(1269), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(974), + [sym_val_variable] = STATE(931), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(464), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(1073), + [sym__unquoted_with_expr] = STATE(1263), + [sym__unquoted_anonymous_prefix] = STATE(4525), [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_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [anon_sym_null] = ACTIONS(2240), + [aux_sym_cmd_identifier_token3] = ACTIONS(2242), + [aux_sym_cmd_identifier_token4] = ACTIONS(2242), + [aux_sym_cmd_identifier_token5] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2244), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), + [anon_sym_DOT_DOT_LT] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2250), + [aux_sym__val_number_decimal_token3] = ACTIONS(2252), + [aux_sym__val_number_decimal_token4] = ACTIONS(2252), + [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(2254), + [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(2256), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(105), }, [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), + [aux_sym__repeat_newline] = STATE(986), + [sym__expr_parenthesized_immediate] = STATE(4713), [sym_comment] = STATE(866), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), - [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_cell_path] = STATE(1327), + [sym_path] = STATE(791), [sym_comment] = STATE(867), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym__where_predicate_lhs_repeat1] = STATE(532), + [ts_builtin_sym_end] = ACTIONS(1856), + [anon_sym_in] = ACTIONS(1856), + [sym__newline] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_err_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_GT_PIPE] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), + [anon_sym_GT2] = ACTIONS(1858), + [anon_sym_DASH2] = ACTIONS(1856), + [anon_sym_STAR2] = ACTIONS(1858), + [anon_sym_and2] = ACTIONS(1856), + [anon_sym_xor2] = ACTIONS(1856), + [anon_sym_or2] = ACTIONS(1856), + [anon_sym_not_DASHin2] = ACTIONS(1856), + [anon_sym_has2] = ACTIONS(1856), + [anon_sym_not_DASHhas2] = ACTIONS(1856), + [anon_sym_starts_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), + [anon_sym_ends_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), + [anon_sym_EQ_EQ2] = ACTIONS(1856), + [anon_sym_BANG_EQ2] = ACTIONS(1856), + [anon_sym_LT2] = ACTIONS(1858), + [anon_sym_LT_EQ2] = ACTIONS(1856), + [anon_sym_GT_EQ2] = ACTIONS(1856), + [anon_sym_EQ_TILDE2] = ACTIONS(1856), + [anon_sym_BANG_TILDE2] = ACTIONS(1856), + [anon_sym_like2] = ACTIONS(1856), + [anon_sym_not_DASHlike2] = ACTIONS(1856), + [anon_sym_STAR_STAR2] = ACTIONS(1856), + [anon_sym_PLUS_PLUS2] = ACTIONS(1856), + [anon_sym_SLASH2] = ACTIONS(1858), + [anon_sym_mod2] = ACTIONS(1856), + [anon_sym_SLASH_SLASH2] = ACTIONS(1856), + [anon_sym_PLUS2] = ACTIONS(1858), + [anon_sym_bit_DASHshl2] = ACTIONS(1856), + [anon_sym_bit_DASHshr2] = ACTIONS(1856), + [anon_sym_bit_DASHand2] = ACTIONS(1856), + [anon_sym_bit_DASHxor2] = ACTIONS(1856), + [anon_sym_bit_DASHor2] = ACTIONS(1856), + [anon_sym_DOT2] = ACTIONS(2391), + [anon_sym_err_GT] = ACTIONS(1858), + [anon_sym_out_GT] = ACTIONS(1858), + [anon_sym_e_GT] = ACTIONS(1858), + [anon_sym_o_GT] = ACTIONS(1858), + [anon_sym_err_PLUSout_GT] = ACTIONS(1858), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1858), + [anon_sym_o_PLUSe_GT] = ACTIONS(1858), + [anon_sym_e_PLUSo_GT] = ACTIONS(1858), + [anon_sym_err_GT_GT] = ACTIONS(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(868)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1668), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(992), + [sym__expr_parenthesized_immediate] = STATE(4713), [sym_comment] = STATE(868), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(869)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1669), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(869), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_in] = ACTIONS(2429), + [sym__newline] = ACTIONS(2429), + [anon_sym_SEMI] = ACTIONS(2429), + [anon_sym_PIPE] = ACTIONS(2429), + [anon_sym_err_GT_PIPE] = ACTIONS(2429), + [anon_sym_out_GT_PIPE] = ACTIONS(2429), + [anon_sym_e_GT_PIPE] = ACTIONS(2429), + [anon_sym_o_GT_PIPE] = ACTIONS(2429), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2429), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2429), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2429), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2429), + [anon_sym_RPAREN] = ACTIONS(2429), + [anon_sym_GT2] = ACTIONS(2431), + [anon_sym_DASH2] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(2429), + [anon_sym_EQ_GT] = ACTIONS(2429), + [anon_sym_STAR2] = ACTIONS(2431), + [anon_sym_and2] = ACTIONS(2429), + [anon_sym_xor2] = ACTIONS(2429), + [anon_sym_or2] = ACTIONS(2429), + [anon_sym_not_DASHin2] = ACTIONS(2429), + [anon_sym_has2] = ACTIONS(2429), + [anon_sym_not_DASHhas2] = ACTIONS(2429), + [anon_sym_starts_DASHwith2] = ACTIONS(2429), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2429), + [anon_sym_ends_DASHwith2] = ACTIONS(2429), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2429), + [anon_sym_EQ_EQ2] = ACTIONS(2429), + [anon_sym_BANG_EQ2] = ACTIONS(2429), + [anon_sym_LT2] = ACTIONS(2431), + [anon_sym_LT_EQ2] = ACTIONS(2429), + [anon_sym_GT_EQ2] = ACTIONS(2429), + [anon_sym_EQ_TILDE2] = ACTIONS(2429), + [anon_sym_BANG_TILDE2] = ACTIONS(2429), + [anon_sym_like2] = ACTIONS(2429), + [anon_sym_not_DASHlike2] = ACTIONS(2429), + [anon_sym_STAR_STAR2] = ACTIONS(2429), + [anon_sym_PLUS_PLUS2] = ACTIONS(2429), + [anon_sym_SLASH2] = ACTIONS(2431), + [anon_sym_mod2] = ACTIONS(2429), + [anon_sym_SLASH_SLASH2] = ACTIONS(2429), + [anon_sym_PLUS2] = ACTIONS(2431), + [anon_sym_bit_DASHshl2] = ACTIONS(2429), + [anon_sym_bit_DASHshr2] = ACTIONS(2429), + [anon_sym_bit_DASHand2] = ACTIONS(2429), + [anon_sym_bit_DASHxor2] = ACTIONS(2429), + [anon_sym_bit_DASHor2] = ACTIONS(2429), + [anon_sym_err_GT] = ACTIONS(2431), + [anon_sym_out_GT] = ACTIONS(2431), + [anon_sym_e_GT] = ACTIONS(2431), + [anon_sym_o_GT] = ACTIONS(2431), + [anon_sym_err_PLUSout_GT] = ACTIONS(2431), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2431), + [anon_sym_o_PLUSe_GT] = ACTIONS(2431), + [anon_sym_e_PLUSo_GT] = ACTIONS(2431), + [anon_sym_err_GT_GT] = ACTIONS(2429), + [anon_sym_out_GT_GT] = ACTIONS(2429), + [anon_sym_e_GT_GT] = ACTIONS(2429), + [anon_sym_o_GT_GT] = ACTIONS(2429), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2429), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2429), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2429), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2429), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(870)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1670), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(996), + [sym__expr_parenthesized_immediate] = STATE(4713), [sym_comment] = STATE(870), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(871)] = { + [sym_cmd_identifier] = STATE(4141), + [sym_expr_parenthesized] = STATE(5138), + [sym__spread_parenthesized] = STATE(4677), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(5138), + [sym_val_number] = STATE(5138), + [sym__val_number_decimal] = STATE(1947), + [sym__val_number] = STATE(700), + [sym_val_string] = STATE(5138), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_interpolated] = STATE(5138), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym__spread_record] = STATE(4677), + [sym_record_entry] = STATE(4475), + [sym__record_key] = STATE(4944), + [sym_comment] = STATE(871), + [aux_sym_record_body_repeat1] = STATE(874), + [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(1778), + [anon_sym_false] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1780), + [aux_sym_cmd_identifier_token4] = ACTIONS(1780), + [aux_sym_cmd_identifier_token5] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1804), + [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(1790), + [aux_sym__val_number_decimal_token2] = ACTIONS(1792), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), [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(1802), }, - [STATE(871)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1671), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(871), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(872)] = { + [aux_sym__repeat_newline] = STATE(998), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(872), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(873)] = { + [sym_comment] = STATE(873), + [anon_sym_in] = ACTIONS(1754), + [sym__newline] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_err_GT_PIPE] = ACTIONS(1754), + [anon_sym_out_GT_PIPE] = ACTIONS(1754), + [anon_sym_e_GT_PIPE] = ACTIONS(1754), + [anon_sym_o_GT_PIPE] = ACTIONS(1754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_GT2] = ACTIONS(1756), + [anon_sym_DASH2] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_STAR2] = ACTIONS(1756), + [anon_sym_and2] = ACTIONS(1754), + [anon_sym_xor2] = ACTIONS(1754), + [anon_sym_or2] = ACTIONS(1754), + [anon_sym_not_DASHin2] = ACTIONS(1754), + [anon_sym_has2] = ACTIONS(1754), + [anon_sym_not_DASHhas2] = ACTIONS(1754), + [anon_sym_starts_DASHwith2] = ACTIONS(1754), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1754), + [anon_sym_ends_DASHwith2] = ACTIONS(1754), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1754), + [anon_sym_EQ_EQ2] = ACTIONS(1754), + [anon_sym_BANG_EQ2] = ACTIONS(1754), + [anon_sym_LT2] = ACTIONS(1756), + [anon_sym_LT_EQ2] = ACTIONS(1754), + [anon_sym_GT_EQ2] = ACTIONS(1754), + [anon_sym_EQ_TILDE2] = ACTIONS(1754), + [anon_sym_BANG_TILDE2] = ACTIONS(1754), + [anon_sym_like2] = ACTIONS(1754), + [anon_sym_not_DASHlike2] = ACTIONS(1754), + [anon_sym_STAR_STAR2] = ACTIONS(1754), + [anon_sym_PLUS_PLUS2] = ACTIONS(1754), + [anon_sym_SLASH2] = ACTIONS(1756), + [anon_sym_mod2] = ACTIONS(1754), + [anon_sym_SLASH_SLASH2] = ACTIONS(1754), + [anon_sym_PLUS2] = ACTIONS(1756), + [anon_sym_bit_DASHshl2] = ACTIONS(1754), + [anon_sym_bit_DASHshr2] = ACTIONS(1754), + [anon_sym_bit_DASHand2] = ACTIONS(1754), + [anon_sym_bit_DASHxor2] = ACTIONS(1754), + [anon_sym_bit_DASHor2] = ACTIONS(1754), + [anon_sym_DOT] = ACTIONS(2433), + [aux_sym__immediate_decimal_token5] = ACTIONS(1760), + [anon_sym_err_GT] = ACTIONS(1756), + [anon_sym_out_GT] = ACTIONS(1756), + [anon_sym_e_GT] = ACTIONS(1756), + [anon_sym_o_GT] = ACTIONS(1756), + [anon_sym_err_PLUSout_GT] = ACTIONS(1756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), + [anon_sym_o_PLUSe_GT] = ACTIONS(1756), + [anon_sym_e_PLUSo_GT] = ACTIONS(1756), + [anon_sym_err_GT_GT] = ACTIONS(1754), + [anon_sym_out_GT_GT] = ACTIONS(1754), + [anon_sym_e_GT_GT] = ACTIONS(1754), + [anon_sym_o_GT_GT] = ACTIONS(1754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(874)] = { + [sym_cmd_identifier] = STATE(4141), + [sym_expr_parenthesized] = STATE(5138), + [sym__spread_parenthesized] = STATE(4677), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(5138), + [sym_val_number] = STATE(5138), + [sym__val_number_decimal] = STATE(1947), + [sym__val_number] = STATE(700), + [sym_val_string] = STATE(5138), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_interpolated] = STATE(5138), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym__spread_record] = STATE(4677), + [sym_record_entry] = STATE(4733), + [sym__record_key] = STATE(4944), + [sym_comment] = STATE(874), + [aux_sym_record_body_repeat1] = STATE(874), + [anon_sym_export] = ACTIONS(2435), + [anon_sym_alias] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_mut] = ACTIONS(2438), + [anon_sym_const] = ACTIONS(2438), + [aux_sym_cmd_identifier_token1] = ACTIONS(2441), + [anon_sym_def] = ACTIONS(2438), + [anon_sym_use] = ACTIONS(2438), + [anon_sym_export_DASHenv] = ACTIONS(2438), + [anon_sym_extern] = ACTIONS(2438), + [anon_sym_module] = ACTIONS(2438), + [anon_sym_for] = ACTIONS(2438), + [anon_sym_loop] = ACTIONS(2438), + [anon_sym_while] = ACTIONS(2438), + [anon_sym_if] = ACTIONS(2438), + [anon_sym_else] = ACTIONS(2438), + [anon_sym_try] = ACTIONS(2438), + [anon_sym_catch] = ACTIONS(2438), + [anon_sym_match] = ACTIONS(2438), + [anon_sym_in] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2444), + [anon_sym_false] = ACTIONS(2444), + [anon_sym_null] = ACTIONS(2444), + [aux_sym_cmd_identifier_token3] = ACTIONS(2447), + [aux_sym_cmd_identifier_token4] = ACTIONS(2447), + [aux_sym_cmd_identifier_token5] = ACTIONS(2447), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_DOLLAR] = ACTIONS(2453), + [anon_sym_DASH2] = ACTIONS(2456), + [anon_sym_PLUS2] = ACTIONS(2456), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2459), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2462), + [aux_sym__val_number_decimal_token1] = ACTIONS(2465), + [aux_sym__val_number_decimal_token2] = ACTIONS(2468), + [aux_sym__val_number_decimal_token3] = ACTIONS(2471), + [aux_sym__val_number_decimal_token4] = ACTIONS(2471), + [aux_sym__val_number_token1] = ACTIONS(2474), + [aux_sym__val_number_token2] = ACTIONS(2474), + [aux_sym__val_number_token3] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2477), + [anon_sym_SQUOTE] = ACTIONS(2480), + [anon_sym_BQUOTE] = ACTIONS(2483), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2489), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2492), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2495), + }, + [STATE(875)] = { + [aux_sym__repeat_newline] = STATE(1000), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(875), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(876)] = { + [aux_sym__repeat_newline] = STATE(1002), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(876), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(877)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2149), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(691), + [sym__unquoted_with_expr] = STATE(907), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(877), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(872)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1672), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(679), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(872), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(878)] = { + [sym_cell_path] = STATE(1345), + [sym_path] = STATE(791), + [sym_comment] = STATE(878), + [aux_sym__where_predicate_lhs_repeat1] = STATE(532), + [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_DOT2] = ACTIONS(2391), + [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(879)] = { + [sym_comment] = STATE(879), + [ts_builtin_sym_end] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [sym__newline] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_err_GT_PIPE] = ACTIONS(1754), + [anon_sym_out_GT_PIPE] = ACTIONS(1754), + [anon_sym_e_GT_PIPE] = ACTIONS(1754), + [anon_sym_o_GT_PIPE] = ACTIONS(1754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), + [anon_sym_GT2] = ACTIONS(1756), + [anon_sym_DASH2] = ACTIONS(1754), + [anon_sym_STAR2] = ACTIONS(1756), + [anon_sym_and2] = ACTIONS(1754), + [anon_sym_xor2] = ACTIONS(1754), + [anon_sym_or2] = ACTIONS(1754), + [anon_sym_not_DASHin2] = ACTIONS(1754), + [anon_sym_has2] = ACTIONS(1754), + [anon_sym_not_DASHhas2] = ACTIONS(1754), + [anon_sym_starts_DASHwith2] = ACTIONS(1754), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1754), + [anon_sym_ends_DASHwith2] = ACTIONS(1754), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1754), + [anon_sym_EQ_EQ2] = ACTIONS(1754), + [anon_sym_BANG_EQ2] = ACTIONS(1754), + [anon_sym_LT2] = ACTIONS(1756), + [anon_sym_LT_EQ2] = ACTIONS(1754), + [anon_sym_GT_EQ2] = ACTIONS(1754), + [anon_sym_EQ_TILDE2] = ACTIONS(1754), + [anon_sym_BANG_TILDE2] = ACTIONS(1754), + [anon_sym_like2] = ACTIONS(1754), + [anon_sym_not_DASHlike2] = ACTIONS(1754), + [anon_sym_LPAREN2] = ACTIONS(1754), + [anon_sym_STAR_STAR2] = ACTIONS(1754), + [anon_sym_PLUS_PLUS2] = ACTIONS(1754), + [anon_sym_SLASH2] = ACTIONS(1756), + [anon_sym_mod2] = ACTIONS(1754), + [anon_sym_SLASH_SLASH2] = ACTIONS(1754), + [anon_sym_PLUS2] = ACTIONS(1756), + [anon_sym_bit_DASHshl2] = ACTIONS(1754), + [anon_sym_bit_DASHshr2] = ACTIONS(1754), + [anon_sym_bit_DASHand2] = ACTIONS(1754), + [anon_sym_bit_DASHxor2] = ACTIONS(1754), + [anon_sym_bit_DASHor2] = ACTIONS(1754), + [anon_sym_DOT] = ACTIONS(2498), + [aux_sym__immediate_decimal_token5] = ACTIONS(2500), + [anon_sym_err_GT] = ACTIONS(1756), + [anon_sym_out_GT] = ACTIONS(1756), + [anon_sym_e_GT] = ACTIONS(1756), + [anon_sym_o_GT] = ACTIONS(1756), + [anon_sym_err_PLUSout_GT] = ACTIONS(1756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), + [anon_sym_o_PLUSe_GT] = ACTIONS(1756), + [anon_sym_e_PLUSo_GT] = ACTIONS(1756), + [anon_sym_err_GT_GT] = ACTIONS(1754), + [anon_sym_out_GT_GT] = ACTIONS(1754), + [anon_sym_e_GT_GT] = ACTIONS(1754), + [anon_sym_o_GT_GT] = ACTIONS(1754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), + [sym__unquoted_pattern] = ACTIONS(1756), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(880)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2150), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(674), + [sym__unquoted_with_expr] = STATE(915), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(880), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(873)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(873), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(881)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2151), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(676), + [sym__unquoted_with_expr] = STATE(920), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(881), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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_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), + [STATE(882)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2152), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(677), + [sym__unquoted_with_expr] = STATE(924), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(882), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [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_comment] = STATE(875), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(876)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1675), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(876), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(877)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1676), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(877), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(878)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4551), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(878), - [aux_sym_record_body_repeat1] = STATE(879), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(879)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4727), - [sym__record_key] = STATE(4971), - [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), - }, - [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_comment] = STATE(880), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(881)] = { - [aux_sym__repeat_newline] = STATE(3365), - [aux_sym__pipe_separator] = STATE(885), - [sym_comment] = STATE(881), - [anon_sym_export] = ACTIONS(2485), - [anon_sym_alias] = ACTIONS(2487), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_mut] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [aux_sym_cmd_identifier_token1] = ACTIONS(2485), - [anon_sym_def] = ACTIONS(2487), - [anon_sym_use] = ACTIONS(2487), - [anon_sym_export_DASHenv] = ACTIONS(2487), - [anon_sym_extern] = ACTIONS(2487), - [anon_sym_module] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_loop] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_catch] = ACTIONS(2487), - [anon_sym_match] = ACTIONS(2487), - [anon_sym_in] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2487), - [anon_sym_false] = ACTIONS(2487), - [anon_sym_null] = ACTIONS(2487), - [aux_sym_cmd_identifier_token3] = ACTIONS(2487), - [aux_sym_cmd_identifier_token4] = ACTIONS(2487), - [aux_sym_cmd_identifier_token5] = ACTIONS(2487), - [sym__newline] = ACTIONS(2489), - [anon_sym_PIPE] = ACTIONS(2303), - [anon_sym_err_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_GT_PIPE] = ACTIONS(2303), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2487), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_DOLLAR] = ACTIONS(2485), - [anon_sym_DASH2] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2485), - [anon_sym_where] = ACTIONS(2487), - [aux_sym_expr_unary_token1] = ACTIONS(2487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2487), - [anon_sym_DOT_DOT_LT] = ACTIONS(2487), - [aux_sym__val_number_decimal_token1] = ACTIONS(2485), - [aux_sym__val_number_decimal_token2] = ACTIONS(2487), - [aux_sym__val_number_decimal_token3] = ACTIONS(2487), - [aux_sym__val_number_decimal_token4] = ACTIONS(2487), - [aux_sym__val_number_token1] = ACTIONS(2487), - [aux_sym__val_number_token2] = ACTIONS(2487), - [aux_sym__val_number_token3] = ACTIONS(2487), - [anon_sym_0b] = ACTIONS(2485), - [anon_sym_0o] = ACTIONS(2485), - [anon_sym_0x] = ACTIONS(2485), - [sym_val_date] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(2487), - [anon_sym_SQUOTE] = ACTIONS(2487), - [anon_sym_BQUOTE] = ACTIONS(2487), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2487), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2487), - }, - [STATE(882)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1323), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1121), - [sym__unquoted_with_expr] = STATE(1327), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(882), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, [STATE(883)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1330), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1123), - [sym__unquoted_with_expr] = STATE(1334), - [sym__unquoted_anonymous_prefix] = STATE(4499), + [aux_sym__repeat_newline] = STATE(1057), + [sym__expr_parenthesized_immediate] = STATE(4713), [sym_comment] = STATE(883), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(884)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1335), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1126), - [sym__unquoted_with_expr] = STATE(1317), - [sym__unquoted_anonymous_prefix] = STATE(4499), [sym_comment] = STATE(884), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(885)] = { - [aux_sym__repeat_newline] = STATE(3365), - [aux_sym__pipe_separator] = STATE(885), - [sym_comment] = STATE(885), - [anon_sym_export] = ACTIONS(2491), - [anon_sym_alias] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_mut] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [aux_sym_cmd_identifier_token1] = ACTIONS(2491), - [anon_sym_def] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_export_DASHenv] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_catch] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_in] = ACTIONS(2491), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [anon_sym_null] = ACTIONS(2493), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [sym__newline] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2498), - [anon_sym_err_GT_PIPE] = ACTIONS(2498), - [anon_sym_out_GT_PIPE] = ACTIONS(2498), - [anon_sym_e_GT_PIPE] = ACTIONS(2498), - [anon_sym_o_GT_PIPE] = ACTIONS(2498), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2498), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2498), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2498), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2491), - [anon_sym_DASH2] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_DOT_DOT] = ACTIONS(2491), - [anon_sym_where] = ACTIONS(2493), - [aux_sym_expr_unary_token1] = ACTIONS(2493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2493), - [anon_sym_DOT_DOT_LT] = ACTIONS(2493), - [aux_sym__val_number_decimal_token1] = ACTIONS(2491), - [aux_sym__val_number_decimal_token2] = ACTIONS(2493), - [aux_sym__val_number_decimal_token3] = ACTIONS(2493), - [aux_sym__val_number_decimal_token4] = ACTIONS(2493), - [aux_sym__val_number_token1] = ACTIONS(2493), - [aux_sym__val_number_token2] = ACTIONS(2493), - [aux_sym__val_number_token3] = ACTIONS(2493), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2491), - [anon_sym_0x] = ACTIONS(2491), - [sym_val_date] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_BQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2493), - [anon_sym_CARET] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2493), - }, - [STATE(886)] = { - [sym_comment] = STATE(886), - [anon_sym_in] = ACTIONS(2501), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [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_POUND] = ACTIONS(3), - }, - [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), - }, - [STATE(888)] = { - [sym_comment] = STATE(888), [anon_sym_if] = ACTIONS(2152), [anon_sym_in] = ACTIONS(2152), [sym__newline] = ACTIONS(2152), @@ -113788,4224 +113822,4021 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), [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_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(885)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(2154), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(678), + [sym__unquoted_with_expr] = STATE(929), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(885), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(890)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2170), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(890), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(886)] = { + [aux_sym__repeat_newline] = STATE(1130), + [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_comment] = STATE(886), + [anon_sym_in] = ACTIONS(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(887)] = { + [sym_expr_unary] = STATE(956), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(956), + [sym__expr_binary_expression] = STATE(927), + [sym_expr_parenthesized] = STATE(707), + [sym_val_range] = STATE(956), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(956), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(1922), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1726), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(682), + [sym__unquoted_with_expr] = STATE(897), + [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_comment] = STATE(887), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(2042), [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(2044), + [anon_sym_DOT_DOT_LT] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(2052), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(891)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2172), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(891), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_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), + [STATE(888)] = { + [sym_comment] = STATE(888), + [anon_sym_if] = ACTIONS(2502), + [anon_sym_in] = ACTIONS(2502), + [sym__newline] = ACTIONS(2502), + [anon_sym_SEMI] = ACTIONS(2502), + [anon_sym_PIPE] = ACTIONS(2502), + [anon_sym_err_GT_PIPE] = ACTIONS(2502), + [anon_sym_out_GT_PIPE] = ACTIONS(2502), + [anon_sym_e_GT_PIPE] = ACTIONS(2502), + [anon_sym_o_GT_PIPE] = ACTIONS(2502), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2502), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2502), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2502), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2502), + [anon_sym_RPAREN] = ACTIONS(2502), + [anon_sym_GT2] = ACTIONS(2504), + [anon_sym_DASH2] = ACTIONS(2502), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_RBRACE] = ACTIONS(2502), + [anon_sym_EQ_GT] = ACTIONS(2502), + [anon_sym_STAR2] = ACTIONS(2504), + [anon_sym_and2] = ACTIONS(2502), + [anon_sym_xor2] = ACTIONS(2502), + [anon_sym_or2] = ACTIONS(2502), + [anon_sym_not_DASHin2] = ACTIONS(2502), + [anon_sym_has2] = ACTIONS(2502), + [anon_sym_not_DASHhas2] = ACTIONS(2502), + [anon_sym_starts_DASHwith2] = ACTIONS(2502), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2502), + [anon_sym_ends_DASHwith2] = ACTIONS(2502), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2502), + [anon_sym_EQ_EQ2] = ACTIONS(2502), + [anon_sym_BANG_EQ2] = ACTIONS(2502), + [anon_sym_LT2] = ACTIONS(2504), + [anon_sym_LT_EQ2] = ACTIONS(2502), + [anon_sym_GT_EQ2] = ACTIONS(2502), + [anon_sym_EQ_TILDE2] = ACTIONS(2502), + [anon_sym_BANG_TILDE2] = ACTIONS(2502), + [anon_sym_like2] = ACTIONS(2502), + [anon_sym_not_DASHlike2] = ACTIONS(2502), + [anon_sym_STAR_STAR2] = ACTIONS(2502), + [anon_sym_PLUS_PLUS2] = ACTIONS(2502), + [anon_sym_SLASH2] = ACTIONS(2504), + [anon_sym_mod2] = ACTIONS(2502), + [anon_sym_SLASH_SLASH2] = ACTIONS(2502), + [anon_sym_PLUS2] = ACTIONS(2504), + [anon_sym_bit_DASHshl2] = ACTIONS(2502), + [anon_sym_bit_DASHshr2] = ACTIONS(2502), + [anon_sym_bit_DASHand2] = ACTIONS(2502), + [anon_sym_bit_DASHxor2] = ACTIONS(2502), + [anon_sym_bit_DASHor2] = ACTIONS(2502), + [anon_sym_err_GT] = ACTIONS(2504), + [anon_sym_out_GT] = ACTIONS(2504), + [anon_sym_e_GT] = ACTIONS(2504), + [anon_sym_o_GT] = ACTIONS(2504), + [anon_sym_err_PLUSout_GT] = ACTIONS(2504), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2504), + [anon_sym_o_PLUSe_GT] = ACTIONS(2504), + [anon_sym_e_PLUSo_GT] = ACTIONS(2504), + [anon_sym_err_GT_GT] = ACTIONS(2502), + [anon_sym_out_GT_GT] = ACTIONS(2502), + [anon_sym_e_GT_GT] = ACTIONS(2502), + [anon_sym_o_GT_GT] = ACTIONS(2502), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2502), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2502), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2502), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2502), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(889)] = { + [sym_cmd_identifier] = STATE(4141), + [sym_expr_parenthesized] = STATE(5138), + [sym__spread_parenthesized] = STATE(4677), + [sym__spread_variable] = STATE(4681), + [sym_val_variable] = STATE(4109), + [sym_val_number] = STATE(5138), + [sym__val_number_decimal] = STATE(1947), + [sym__val_number] = STATE(700), + [sym_val_string] = STATE(5138), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_interpolated] = STATE(5138), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym__spread_record] = STATE(4677), + [sym_record_entry] = STATE(4639), + [sym__record_key] = STATE(4944), + [sym_comment] = STATE(889), + [aux_sym__match_pattern_record_body_repeat1] = STATE(783), + [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(1778), + [anon_sym_false] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), + [aux_sym_cmd_identifier_token3] = ACTIONS(1780), + [aux_sym_cmd_identifier_token4] = ACTIONS(1780), + [aux_sym_cmd_identifier_token5] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1786), + [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(1790), + [aux_sym__val_number_decimal_token2] = ACTIONS(1792), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__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(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), [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(1802), + }, + [STATE(890)] = { + [sym_comment] = STATE(890), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_RBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_LPAREN2] = ACTIONS(2506), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [sym__unquoted_pattern] = ACTIONS(2508), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(891)] = { + [sym_comment] = STATE(891), + [anon_sym_in] = ACTIONS(1754), + [sym__newline] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_err_GT_PIPE] = ACTIONS(1754), + [anon_sym_out_GT_PIPE] = ACTIONS(1754), + [anon_sym_e_GT_PIPE] = ACTIONS(1754), + [anon_sym_o_GT_PIPE] = ACTIONS(1754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_GT2] = ACTIONS(1756), + [anon_sym_DASH2] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_STAR2] = ACTIONS(1756), + [anon_sym_and2] = ACTIONS(1754), + [anon_sym_xor2] = ACTIONS(1754), + [anon_sym_or2] = ACTIONS(1754), + [anon_sym_not_DASHin2] = ACTIONS(1754), + [anon_sym_has2] = ACTIONS(1754), + [anon_sym_not_DASHhas2] = ACTIONS(1754), + [anon_sym_starts_DASHwith2] = ACTIONS(1754), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1754), + [anon_sym_ends_DASHwith2] = ACTIONS(1754), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1754), + [anon_sym_EQ_EQ2] = ACTIONS(1754), + [anon_sym_BANG_EQ2] = ACTIONS(1754), + [anon_sym_LT2] = ACTIONS(1756), + [anon_sym_LT_EQ2] = ACTIONS(1754), + [anon_sym_GT_EQ2] = ACTIONS(1754), + [anon_sym_EQ_TILDE2] = ACTIONS(1754), + [anon_sym_BANG_TILDE2] = ACTIONS(1754), + [anon_sym_like2] = ACTIONS(1754), + [anon_sym_not_DASHlike2] = ACTIONS(1754), + [anon_sym_LPAREN2] = ACTIONS(1754), + [anon_sym_STAR_STAR2] = ACTIONS(1754), + [anon_sym_PLUS_PLUS2] = ACTIONS(1754), + [anon_sym_SLASH2] = ACTIONS(1756), + [anon_sym_mod2] = ACTIONS(1754), + [anon_sym_SLASH_SLASH2] = ACTIONS(1754), + [anon_sym_PLUS2] = ACTIONS(1756), + [anon_sym_bit_DASHshl2] = ACTIONS(1754), + [anon_sym_bit_DASHshr2] = ACTIONS(1754), + [anon_sym_bit_DASHand2] = ACTIONS(1754), + [anon_sym_bit_DASHxor2] = ACTIONS(1754), + [anon_sym_bit_DASHor2] = ACTIONS(1754), + [aux_sym__immediate_decimal_token5] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(1756), + [anon_sym_out_GT] = ACTIONS(1756), + [anon_sym_e_GT] = ACTIONS(1756), + [anon_sym_o_GT] = ACTIONS(1756), + [anon_sym_err_PLUSout_GT] = ACTIONS(1756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), + [anon_sym_o_PLUSe_GT] = ACTIONS(1756), + [anon_sym_e_PLUSo_GT] = ACTIONS(1756), + [anon_sym_err_GT_GT] = ACTIONS(1754), + [anon_sym_out_GT_GT] = ACTIONS(1754), + [anon_sym_e_GT_GT] = ACTIONS(1754), + [anon_sym_o_GT_GT] = ACTIONS(1754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), + [sym__unquoted_pattern] = ACTIONS(1756), [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), + [aux_sym__repeat_newline] = STATE(1061), + [sym__expr_parenthesized_immediate] = STATE(4713), [sym_comment] = STATE(892), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(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(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [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), - [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(2415), + [sym__newline] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_err_GT_PIPE] = ACTIONS(2513), + [anon_sym_out_GT_PIPE] = ACTIONS(2513), + [anon_sym_e_GT_PIPE] = ACTIONS(2513), + [anon_sym_o_GT_PIPE] = ACTIONS(2513), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2513), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2513), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2513), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2513), + [anon_sym_RPAREN] = ACTIONS(2513), + [anon_sym_GT2] = ACTIONS(2417), + [anon_sym_DASH2] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_STAR2] = ACTIONS(2417), + [anon_sym_and2] = ACTIONS(2415), + [anon_sym_xor2] = ACTIONS(2415), + [anon_sym_or2] = ACTIONS(2415), + [anon_sym_not_DASHin2] = ACTIONS(2415), + [anon_sym_has2] = ACTIONS(2415), + [anon_sym_not_DASHhas2] = ACTIONS(2415), + [anon_sym_starts_DASHwith2] = ACTIONS(2415), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2415), + [anon_sym_ends_DASHwith2] = ACTIONS(2415), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2415), + [anon_sym_EQ_EQ2] = ACTIONS(2415), + [anon_sym_BANG_EQ2] = ACTIONS(2415), + [anon_sym_LT2] = ACTIONS(2417), + [anon_sym_LT_EQ2] = ACTIONS(2415), + [anon_sym_GT_EQ2] = ACTIONS(2415), + [anon_sym_EQ_TILDE2] = ACTIONS(2415), + [anon_sym_BANG_TILDE2] = ACTIONS(2415), + [anon_sym_like2] = ACTIONS(2415), + [anon_sym_not_DASHlike2] = ACTIONS(2415), + [anon_sym_STAR_STAR2] = ACTIONS(2415), + [anon_sym_PLUS_PLUS2] = ACTIONS(2415), + [anon_sym_SLASH2] = ACTIONS(2417), + [anon_sym_mod2] = ACTIONS(2415), + [anon_sym_SLASH_SLASH2] = ACTIONS(2415), + [anon_sym_PLUS2] = ACTIONS(2417), + [anon_sym_bit_DASHshl2] = ACTIONS(2415), + [anon_sym_bit_DASHshr2] = ACTIONS(2415), + [anon_sym_bit_DASHand2] = ACTIONS(2415), + [anon_sym_bit_DASHxor2] = ACTIONS(2415), + [anon_sym_bit_DASHor2] = ACTIONS(2415), + [anon_sym_DOT_DOT2] = ACTIONS(1633), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), + [anon_sym_err_GT] = ACTIONS(2515), + [anon_sym_out_GT] = ACTIONS(2515), + [anon_sym_e_GT] = ACTIONS(2515), + [anon_sym_o_GT] = ACTIONS(2515), + [anon_sym_err_PLUSout_GT] = ACTIONS(2515), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2515), + [anon_sym_o_PLUSe_GT] = ACTIONS(2515), + [anon_sym_e_PLUSo_GT] = ACTIONS(2515), + [anon_sym_err_GT_GT] = ACTIONS(2513), + [anon_sym_out_GT_GT] = ACTIONS(2513), + [anon_sym_e_GT_GT] = ACTIONS(2513), + [anon_sym_o_GT_GT] = ACTIONS(2513), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2513), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2513), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2513), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2513), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(894)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2184), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(894), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_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(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(1537), + [anon_sym_DASH2] = ACTIONS(1539), + [anon_sym_STAR2] = ACTIONS(1537), + [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(1537), + [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(1537), + [anon_sym_mod2] = ACTIONS(1539), + [anon_sym_SLASH_SLASH2] = ACTIONS(1539), + [anon_sym_PLUS2] = ACTIONS(1537), + [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(1537), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1539), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1539), + [anon_sym_DOT2] = ACTIONS(1537), + [anon_sym_err_GT] = ACTIONS(1537), + [anon_sym_out_GT] = ACTIONS(1537), + [anon_sym_e_GT] = ACTIONS(1537), + [anon_sym_o_GT] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT] = ACTIONS(1537), + [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(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_if] = ACTIONS(2517), + [anon_sym_in] = ACTIONS(2517), + [sym__newline] = ACTIONS(2517), + [anon_sym_SEMI] = ACTIONS(2517), + [anon_sym_PIPE] = ACTIONS(2517), + [anon_sym_err_GT_PIPE] = ACTIONS(2517), + [anon_sym_out_GT_PIPE] = ACTIONS(2517), + [anon_sym_e_GT_PIPE] = ACTIONS(2517), + [anon_sym_o_GT_PIPE] = ACTIONS(2517), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2517), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2517), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2517), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2517), + [anon_sym_RPAREN] = ACTIONS(2517), + [anon_sym_GT2] = ACTIONS(2519), + [anon_sym_DASH2] = ACTIONS(2517), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_RBRACE] = ACTIONS(2517), + [anon_sym_EQ_GT] = ACTIONS(2517), + [anon_sym_STAR2] = ACTIONS(2519), + [anon_sym_and2] = ACTIONS(2517), + [anon_sym_xor2] = ACTIONS(2517), + [anon_sym_or2] = ACTIONS(2517), + [anon_sym_not_DASHin2] = ACTIONS(2517), + [anon_sym_has2] = ACTIONS(2517), + [anon_sym_not_DASHhas2] = ACTIONS(2517), + [anon_sym_starts_DASHwith2] = ACTIONS(2517), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2517), + [anon_sym_ends_DASHwith2] = ACTIONS(2517), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2517), + [anon_sym_EQ_EQ2] = ACTIONS(2517), + [anon_sym_BANG_EQ2] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2519), + [anon_sym_LT_EQ2] = ACTIONS(2517), + [anon_sym_GT_EQ2] = ACTIONS(2517), + [anon_sym_EQ_TILDE2] = ACTIONS(2517), + [anon_sym_BANG_TILDE2] = ACTIONS(2517), + [anon_sym_like2] = ACTIONS(2517), + [anon_sym_not_DASHlike2] = ACTIONS(2517), + [anon_sym_STAR_STAR2] = ACTIONS(2517), + [anon_sym_PLUS_PLUS2] = ACTIONS(2517), + [anon_sym_SLASH2] = ACTIONS(2519), + [anon_sym_mod2] = ACTIONS(2517), + [anon_sym_SLASH_SLASH2] = ACTIONS(2517), + [anon_sym_PLUS2] = ACTIONS(2519), + [anon_sym_bit_DASHshl2] = ACTIONS(2517), + [anon_sym_bit_DASHshr2] = ACTIONS(2517), + [anon_sym_bit_DASHand2] = ACTIONS(2517), + [anon_sym_bit_DASHxor2] = ACTIONS(2517), + [anon_sym_bit_DASHor2] = ACTIONS(2517), + [anon_sym_err_GT] = ACTIONS(2519), + [anon_sym_out_GT] = ACTIONS(2519), + [anon_sym_e_GT] = ACTIONS(2519), + [anon_sym_o_GT] = ACTIONS(2519), + [anon_sym_err_PLUSout_GT] = ACTIONS(2519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2519), + [anon_sym_o_PLUSe_GT] = ACTIONS(2519), + [anon_sym_e_PLUSo_GT] = ACTIONS(2519), + [anon_sym_err_GT_GT] = ACTIONS(2517), + [anon_sym_out_GT_GT] = ACTIONS(2517), + [anon_sym_e_GT_GT] = ACTIONS(2517), + [anon_sym_o_GT_GT] = ACTIONS(2517), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2517), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2517), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2517), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2517), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(2102), + [anon_sym_in] = ACTIONS(2100), + [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(2100), + [anon_sym_STAR2] = ACTIONS(2104), + [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(2104), + [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(2104), + [anon_sym_mod2] = ACTIONS(2100), + [anon_sym_SLASH_SLASH2] = ACTIONS(2100), + [anon_sym_PLUS2] = ACTIONS(2104), + [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(1738), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), + [anon_sym_err_GT] = ACTIONS(2106), + [anon_sym_out_GT] = ACTIONS(2106), + [anon_sym_e_GT] = ACTIONS(2106), + [anon_sym_o_GT] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT] = ACTIONS(2106), + [anon_sym_err_GT_GT] = ACTIONS(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(897)] = { [sym_comment] = STATE(897), - [anon_sym_in] = ACTIONS(2511), - [sym__newline] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(2511), - [anon_sym_err_GT_PIPE] = ACTIONS(2511), - [anon_sym_out_GT_PIPE] = ACTIONS(2511), - [anon_sym_e_GT_PIPE] = ACTIONS(2511), - [anon_sym_o_GT_PIPE] = ACTIONS(2511), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2511), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2511), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2511), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2511), - [anon_sym_RPAREN] = ACTIONS(2511), - [anon_sym_GT2] = ACTIONS(2513), - [anon_sym_DASH2] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_EQ_GT] = ACTIONS(2511), - [anon_sym_STAR2] = ACTIONS(2513), - [anon_sym_and2] = ACTIONS(2511), - [anon_sym_xor2] = ACTIONS(2511), - [anon_sym_or2] = ACTIONS(2511), - [anon_sym_not_DASHin2] = ACTIONS(2511), - [anon_sym_has2] = ACTIONS(2511), - [anon_sym_not_DASHhas2] = ACTIONS(2511), - [anon_sym_starts_DASHwith2] = ACTIONS(2511), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2511), - [anon_sym_ends_DASHwith2] = ACTIONS(2511), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2511), - [anon_sym_EQ_EQ2] = ACTIONS(2511), - [anon_sym_BANG_EQ2] = ACTIONS(2511), - [anon_sym_LT2] = ACTIONS(2513), - [anon_sym_LT_EQ2] = ACTIONS(2511), - [anon_sym_GT_EQ2] = ACTIONS(2511), - [anon_sym_EQ_TILDE2] = ACTIONS(2511), - [anon_sym_BANG_TILDE2] = ACTIONS(2511), - [anon_sym_like2] = ACTIONS(2511), - [anon_sym_not_DASHlike2] = ACTIONS(2511), - [anon_sym_STAR_STAR2] = ACTIONS(2511), - [anon_sym_PLUS_PLUS2] = ACTIONS(2511), - [anon_sym_SLASH2] = ACTIONS(2513), - [anon_sym_mod2] = ACTIONS(2511), - [anon_sym_SLASH_SLASH2] = ACTIONS(2511), - [anon_sym_PLUS2] = ACTIONS(2513), - [anon_sym_bit_DASHshl2] = ACTIONS(2511), - [anon_sym_bit_DASHshr2] = ACTIONS(2511), - [anon_sym_bit_DASHand2] = ACTIONS(2511), - [anon_sym_bit_DASHxor2] = ACTIONS(2511), - [anon_sym_bit_DASHor2] = ACTIONS(2511), - [anon_sym_err_GT] = ACTIONS(2513), - [anon_sym_out_GT] = ACTIONS(2513), - [anon_sym_e_GT] = ACTIONS(2513), - [anon_sym_o_GT] = ACTIONS(2513), - [anon_sym_err_PLUSout_GT] = ACTIONS(2513), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2513), - [anon_sym_o_PLUSe_GT] = ACTIONS(2513), - [anon_sym_e_PLUSo_GT] = ACTIONS(2513), - [anon_sym_err_GT_GT] = ACTIONS(2511), - [anon_sym_out_GT_GT] = ACTIONS(2511), - [anon_sym_e_GT_GT] = ACTIONS(2511), - [anon_sym_o_GT_GT] = ACTIONS(2511), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2511), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2511), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2511), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2511), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(898)] = { [sym_comment] = STATE(898), - [anon_sym_in] = ACTIONS(2515), - [sym__newline] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2515), - [anon_sym_PIPE] = ACTIONS(2515), - [anon_sym_err_GT_PIPE] = ACTIONS(2515), - [anon_sym_out_GT_PIPE] = ACTIONS(2515), - [anon_sym_e_GT_PIPE] = ACTIONS(2515), - [anon_sym_o_GT_PIPE] = ACTIONS(2515), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2515), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2515), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2515), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2515), - [anon_sym_RPAREN] = ACTIONS(2515), - [anon_sym_GT2] = ACTIONS(2517), - [anon_sym_DASH2] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2515), - [anon_sym_RBRACE] = ACTIONS(2515), - [anon_sym_EQ_GT] = ACTIONS(2515), - [anon_sym_STAR2] = ACTIONS(2517), - [anon_sym_and2] = ACTIONS(2515), - [anon_sym_xor2] = ACTIONS(2515), - [anon_sym_or2] = ACTIONS(2515), - [anon_sym_not_DASHin2] = ACTIONS(2515), - [anon_sym_has2] = ACTIONS(2515), - [anon_sym_not_DASHhas2] = ACTIONS(2515), - [anon_sym_starts_DASHwith2] = ACTIONS(2515), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2515), - [anon_sym_ends_DASHwith2] = ACTIONS(2515), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2515), - [anon_sym_EQ_EQ2] = ACTIONS(2515), - [anon_sym_BANG_EQ2] = ACTIONS(2515), - [anon_sym_LT2] = ACTIONS(2517), - [anon_sym_LT_EQ2] = ACTIONS(2515), - [anon_sym_GT_EQ2] = ACTIONS(2515), - [anon_sym_EQ_TILDE2] = ACTIONS(2515), - [anon_sym_BANG_TILDE2] = ACTIONS(2515), - [anon_sym_like2] = ACTIONS(2515), - [anon_sym_not_DASHlike2] = ACTIONS(2515), - [anon_sym_STAR_STAR2] = ACTIONS(2515), - [anon_sym_PLUS_PLUS2] = ACTIONS(2515), - [anon_sym_SLASH2] = ACTIONS(2517), - [anon_sym_mod2] = ACTIONS(2515), - [anon_sym_SLASH_SLASH2] = ACTIONS(2515), - [anon_sym_PLUS2] = ACTIONS(2517), - [anon_sym_bit_DASHshl2] = ACTIONS(2515), - [anon_sym_bit_DASHshr2] = ACTIONS(2515), - [anon_sym_bit_DASHand2] = ACTIONS(2515), - [anon_sym_bit_DASHxor2] = ACTIONS(2515), - [anon_sym_bit_DASHor2] = ACTIONS(2515), - [anon_sym_err_GT] = ACTIONS(2517), - [anon_sym_out_GT] = ACTIONS(2517), - [anon_sym_e_GT] = ACTIONS(2517), - [anon_sym_o_GT] = ACTIONS(2517), - [anon_sym_err_PLUSout_GT] = ACTIONS(2517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2517), - [anon_sym_o_PLUSe_GT] = ACTIONS(2517), - [anon_sym_e_PLUSo_GT] = ACTIONS(2517), - [anon_sym_err_GT_GT] = ACTIONS(2515), - [anon_sym_out_GT_GT] = ACTIONS(2515), - [anon_sym_e_GT_GT] = ACTIONS(2515), - [anon_sym_o_GT_GT] = ACTIONS(2515), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2515), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2515), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2515), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2515), + [anon_sym_in] = ACTIONS(2521), + [sym__newline] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_err_GT_PIPE] = ACTIONS(2521), + [anon_sym_out_GT_PIPE] = ACTIONS(2521), + [anon_sym_e_GT_PIPE] = ACTIONS(2521), + [anon_sym_o_GT_PIPE] = ACTIONS(2521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2521), + [anon_sym_RPAREN] = ACTIONS(2521), + [anon_sym_GT2] = ACTIONS(2523), + [anon_sym_DASH2] = ACTIONS(2521), + [anon_sym_RBRACE] = ACTIONS(2521), + [anon_sym_STAR2] = ACTIONS(2523), + [anon_sym_and2] = ACTIONS(2521), + [anon_sym_xor2] = ACTIONS(2521), + [anon_sym_or2] = ACTIONS(2521), + [anon_sym_not_DASHin2] = ACTIONS(2521), + [anon_sym_has2] = ACTIONS(2521), + [anon_sym_not_DASHhas2] = ACTIONS(2521), + [anon_sym_starts_DASHwith2] = ACTIONS(2521), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2521), + [anon_sym_ends_DASHwith2] = ACTIONS(2521), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2521), + [anon_sym_EQ_EQ2] = ACTIONS(2521), + [anon_sym_BANG_EQ2] = ACTIONS(2521), + [anon_sym_LT2] = ACTIONS(2523), + [anon_sym_LT_EQ2] = ACTIONS(2521), + [anon_sym_GT_EQ2] = ACTIONS(2521), + [anon_sym_EQ_TILDE2] = ACTIONS(2521), + [anon_sym_BANG_TILDE2] = ACTIONS(2521), + [anon_sym_like2] = ACTIONS(2521), + [anon_sym_not_DASHlike2] = ACTIONS(2521), + [anon_sym_LPAREN2] = ACTIONS(2525), + [anon_sym_STAR_STAR2] = ACTIONS(2521), + [anon_sym_PLUS_PLUS2] = ACTIONS(2521), + [anon_sym_SLASH2] = ACTIONS(2523), + [anon_sym_mod2] = ACTIONS(2521), + [anon_sym_SLASH_SLASH2] = ACTIONS(2521), + [anon_sym_PLUS2] = ACTIONS(2523), + [anon_sym_bit_DASHshl2] = ACTIONS(2521), + [anon_sym_bit_DASHshr2] = ACTIONS(2521), + [anon_sym_bit_DASHand2] = ACTIONS(2521), + [anon_sym_bit_DASHxor2] = ACTIONS(2521), + [anon_sym_bit_DASHor2] = ACTIONS(2521), + [anon_sym_err_GT] = ACTIONS(2523), + [anon_sym_out_GT] = ACTIONS(2523), + [anon_sym_e_GT] = ACTIONS(2523), + [anon_sym_o_GT] = ACTIONS(2523), + [anon_sym_err_PLUSout_GT] = ACTIONS(2523), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2523), + [anon_sym_o_PLUSe_GT] = ACTIONS(2523), + [anon_sym_e_PLUSo_GT] = ACTIONS(2523), + [anon_sym_err_GT_GT] = ACTIONS(2521), + [anon_sym_out_GT_GT] = ACTIONS(2521), + [anon_sym_e_GT_GT] = ACTIONS(2521), + [anon_sym_o_GT_GT] = ACTIONS(2521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2521), + [sym__unquoted_pattern] = ACTIONS(2527), [anon_sym_POUND] = ACTIONS(3), }, [STATE(899)] = { [sym_comment] = STATE(899), - [anon_sym_in] = ACTIONS(2519), - [sym__newline] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_err_GT_PIPE] = ACTIONS(2519), - [anon_sym_out_GT_PIPE] = ACTIONS(2519), - [anon_sym_e_GT_PIPE] = ACTIONS(2519), - [anon_sym_o_GT_PIPE] = ACTIONS(2519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2519), - [anon_sym_RPAREN] = ACTIONS(2519), - [anon_sym_GT2] = ACTIONS(2521), - [anon_sym_DASH2] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_RBRACE] = ACTIONS(2519), - [anon_sym_EQ_GT] = ACTIONS(2519), - [anon_sym_STAR2] = ACTIONS(2521), - [anon_sym_and2] = ACTIONS(2519), - [anon_sym_xor2] = ACTIONS(2519), - [anon_sym_or2] = ACTIONS(2519), - [anon_sym_not_DASHin2] = ACTIONS(2519), - [anon_sym_has2] = ACTIONS(2519), - [anon_sym_not_DASHhas2] = ACTIONS(2519), - [anon_sym_starts_DASHwith2] = ACTIONS(2519), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2519), - [anon_sym_ends_DASHwith2] = ACTIONS(2519), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2519), - [anon_sym_EQ_EQ2] = ACTIONS(2519), - [anon_sym_BANG_EQ2] = ACTIONS(2519), - [anon_sym_LT2] = ACTIONS(2521), - [anon_sym_LT_EQ2] = ACTIONS(2519), - [anon_sym_GT_EQ2] = ACTIONS(2519), - [anon_sym_EQ_TILDE2] = ACTIONS(2519), - [anon_sym_BANG_TILDE2] = ACTIONS(2519), - [anon_sym_like2] = ACTIONS(2519), - [anon_sym_not_DASHlike2] = ACTIONS(2519), - [anon_sym_STAR_STAR2] = ACTIONS(2519), - [anon_sym_PLUS_PLUS2] = ACTIONS(2519), - [anon_sym_SLASH2] = ACTIONS(2521), - [anon_sym_mod2] = ACTIONS(2519), - [anon_sym_SLASH_SLASH2] = ACTIONS(2519), - [anon_sym_PLUS2] = ACTIONS(2521), - [anon_sym_bit_DASHshl2] = ACTIONS(2519), - [anon_sym_bit_DASHshr2] = ACTIONS(2519), - [anon_sym_bit_DASHand2] = ACTIONS(2519), - [anon_sym_bit_DASHxor2] = ACTIONS(2519), - [anon_sym_bit_DASHor2] = ACTIONS(2519), - [anon_sym_err_GT] = ACTIONS(2521), - [anon_sym_out_GT] = ACTIONS(2521), - [anon_sym_e_GT] = ACTIONS(2521), - [anon_sym_o_GT] = ACTIONS(2521), - [anon_sym_err_PLUSout_GT] = ACTIONS(2521), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2521), - [anon_sym_o_PLUSe_GT] = ACTIONS(2521), - [anon_sym_e_PLUSo_GT] = ACTIONS(2521), - [anon_sym_err_GT_GT] = ACTIONS(2519), - [anon_sym_out_GT_GT] = ACTIONS(2519), - [anon_sym_e_GT_GT] = ACTIONS(2519), - [anon_sym_o_GT_GT] = ACTIONS(2519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2519), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(900)] = { + [aux_sym__repeat_newline] = STATE(913), [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), + [anon_sym_export] = ACTIONS(2529), + [anon_sym_alias] = ACTIONS(2531), + [anon_sym_let] = ACTIONS(2531), + [anon_sym_mut] = ACTIONS(2531), + [anon_sym_const] = ACTIONS(2531), + [aux_sym_cmd_identifier_token1] = ACTIONS(2529), + [anon_sym_def] = ACTIONS(2531), + [anon_sym_use] = ACTIONS(2531), + [anon_sym_export_DASHenv] = ACTIONS(2531), + [anon_sym_extern] = ACTIONS(2531), + [anon_sym_module] = ACTIONS(2531), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_loop] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2531), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_else] = ACTIONS(2531), + [anon_sym_try] = ACTIONS(2531), + [anon_sym_catch] = ACTIONS(2531), + [anon_sym_match] = ACTIONS(2531), + [anon_sym_in] = ACTIONS(2529), + [anon_sym_true] = ACTIONS(2531), + [anon_sym_false] = ACTIONS(2531), + [anon_sym_null] = ACTIONS(2531), + [aux_sym_cmd_identifier_token3] = ACTIONS(2531), + [aux_sym_cmd_identifier_token4] = ACTIONS(2531), + [aux_sym_cmd_identifier_token5] = ACTIONS(2531), + [sym__newline] = ACTIONS(2427), + [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_LBRACK] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2531), + [anon_sym_DOLLAR] = ACTIONS(2529), + [anon_sym_DASH2] = ACTIONS(2529), + [anon_sym_LBRACE] = ACTIONS(2531), + [anon_sym_DOT_DOT] = ACTIONS(2529), + [anon_sym_where] = ACTIONS(2531), + [aux_sym_expr_unary_token1] = ACTIONS(2531), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2531), + [anon_sym_DOT_DOT_LT] = ACTIONS(2531), + [aux_sym__val_number_decimal_token1] = ACTIONS(2529), + [aux_sym__val_number_decimal_token2] = ACTIONS(2531), + [aux_sym__val_number_decimal_token3] = ACTIONS(2531), + [aux_sym__val_number_decimal_token4] = ACTIONS(2531), + [aux_sym__val_number_token1] = ACTIONS(2531), + [aux_sym__val_number_token2] = ACTIONS(2531), + [aux_sym__val_number_token3] = ACTIONS(2531), + [anon_sym_0b] = ACTIONS(2529), + [anon_sym_0o] = ACTIONS(2529), + [anon_sym_0x] = ACTIONS(2529), + [sym_val_date] = ACTIONS(2531), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_SQUOTE] = ACTIONS(2531), + [anon_sym_BQUOTE] = ACTIONS(2531), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2531), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2531), + [anon_sym_CARET] = ACTIONS(2531), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2531), }, [STATE(901)] = { [sym_comment] = STATE(901), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(1856), + [sym__newline] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_err_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_GT_PIPE] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), + [anon_sym_RPAREN] = ACTIONS(1856), + [anon_sym_GT2] = ACTIONS(1858), + [anon_sym_DASH2] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_EQ_GT] = ACTIONS(1856), + [anon_sym_STAR2] = ACTIONS(1858), + [anon_sym_and2] = ACTIONS(1856), + [anon_sym_xor2] = ACTIONS(1856), + [anon_sym_or2] = ACTIONS(1856), + [anon_sym_not_DASHin2] = ACTIONS(1856), + [anon_sym_has2] = ACTIONS(1856), + [anon_sym_not_DASHhas2] = ACTIONS(1856), + [anon_sym_starts_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), + [anon_sym_ends_DASHwith2] = ACTIONS(1856), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), + [anon_sym_EQ_EQ2] = ACTIONS(1856), + [anon_sym_BANG_EQ2] = ACTIONS(1856), + [anon_sym_LT2] = ACTIONS(1858), + [anon_sym_LT_EQ2] = ACTIONS(1856), + [anon_sym_GT_EQ2] = ACTIONS(1856), + [anon_sym_EQ_TILDE2] = ACTIONS(1856), + [anon_sym_BANG_TILDE2] = ACTIONS(1856), + [anon_sym_like2] = ACTIONS(1856), + [anon_sym_not_DASHlike2] = ACTIONS(1856), + [anon_sym_STAR_STAR2] = ACTIONS(1856), + [anon_sym_PLUS_PLUS2] = ACTIONS(1856), + [anon_sym_SLASH2] = ACTIONS(1858), + [anon_sym_mod2] = ACTIONS(1856), + [anon_sym_SLASH_SLASH2] = ACTIONS(1856), + [anon_sym_PLUS2] = ACTIONS(1858), + [anon_sym_bit_DASHshl2] = ACTIONS(1856), + [anon_sym_bit_DASHshr2] = ACTIONS(1856), + [anon_sym_bit_DASHand2] = ACTIONS(1856), + [anon_sym_bit_DASHxor2] = ACTIONS(1856), + [anon_sym_bit_DASHor2] = ACTIONS(1856), + [anon_sym_err_GT] = ACTIONS(1858), + [anon_sym_out_GT] = ACTIONS(1858), + [anon_sym_e_GT] = ACTIONS(1858), + [anon_sym_o_GT] = ACTIONS(1858), + [anon_sym_err_PLUSout_GT] = ACTIONS(1858), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1858), + [anon_sym_o_PLUSe_GT] = ACTIONS(1858), + [anon_sym_e_PLUSo_GT] = ACTIONS(1858), + [anon_sym_err_GT_GT] = ACTIONS(1856), + [anon_sym_out_GT_GT] = ACTIONS(1856), + [anon_sym_e_GT_GT] = ACTIONS(1856), + [anon_sym_o_GT_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), [anon_sym_POUND] = ACTIONS(3), }, [STATE(902)] = { [sym_comment] = STATE(902), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(1746), + [sym__newline] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_PIPE] = ACTIONS(1746), + [anon_sym_err_GT_PIPE] = ACTIONS(1746), + [anon_sym_out_GT_PIPE] = ACTIONS(1746), + [anon_sym_e_GT_PIPE] = ACTIONS(1746), + [anon_sym_o_GT_PIPE] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_GT2] = ACTIONS(1748), + [anon_sym_DASH2] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_STAR2] = ACTIONS(1748), + [anon_sym_and2] = ACTIONS(1746), + [anon_sym_xor2] = ACTIONS(1746), + [anon_sym_or2] = ACTIONS(1746), + [anon_sym_not_DASHin2] = ACTIONS(1746), + [anon_sym_has2] = ACTIONS(1746), + [anon_sym_not_DASHhas2] = ACTIONS(1746), + [anon_sym_starts_DASHwith2] = ACTIONS(1746), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1746), + [anon_sym_ends_DASHwith2] = ACTIONS(1746), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1746), + [anon_sym_EQ_EQ2] = ACTIONS(1746), + [anon_sym_BANG_EQ2] = ACTIONS(1746), + [anon_sym_LT2] = ACTIONS(1748), + [anon_sym_LT_EQ2] = ACTIONS(1746), + [anon_sym_GT_EQ2] = ACTIONS(1746), + [anon_sym_EQ_TILDE2] = ACTIONS(1746), + [anon_sym_BANG_TILDE2] = ACTIONS(1746), + [anon_sym_like2] = ACTIONS(1746), + [anon_sym_not_DASHlike2] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_STAR_STAR2] = ACTIONS(1746), + [anon_sym_PLUS_PLUS2] = ACTIONS(1746), + [anon_sym_SLASH2] = ACTIONS(1748), + [anon_sym_mod2] = ACTIONS(1746), + [anon_sym_SLASH_SLASH2] = ACTIONS(1746), + [anon_sym_PLUS2] = ACTIONS(1748), + [anon_sym_bit_DASHshl2] = ACTIONS(1746), + [anon_sym_bit_DASHshr2] = ACTIONS(1746), + [anon_sym_bit_DASHand2] = ACTIONS(1746), + [anon_sym_bit_DASHxor2] = ACTIONS(1746), + [anon_sym_bit_DASHor2] = ACTIONS(1746), + [anon_sym_err_GT] = ACTIONS(1748), + [anon_sym_out_GT] = ACTIONS(1748), + [anon_sym_e_GT] = ACTIONS(1748), + [anon_sym_o_GT] = ACTIONS(1748), + [anon_sym_err_PLUSout_GT] = ACTIONS(1748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1748), + [anon_sym_o_PLUSe_GT] = ACTIONS(1748), + [anon_sym_e_PLUSo_GT] = ACTIONS(1748), + [anon_sym_err_GT_GT] = ACTIONS(1746), + [anon_sym_out_GT_GT] = ACTIONS(1746), + [anon_sym_e_GT_GT] = ACTIONS(1746), + [anon_sym_o_GT_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), + [sym__unquoted_pattern] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(3), }, [STATE(903)] = { [sym_comment] = STATE(903), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(1716), + [sym__newline] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_err_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_GT_PIPE] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_GT2] = ACTIONS(1629), + [anon_sym_DASH2] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_EQ_GT] = ACTIONS(1716), + [anon_sym_STAR2] = ACTIONS(1629), + [anon_sym_and2] = ACTIONS(1716), + [anon_sym_xor2] = ACTIONS(1716), + [anon_sym_or2] = ACTIONS(1716), + [anon_sym_not_DASHin2] = ACTIONS(1716), + [anon_sym_has2] = ACTIONS(1716), + [anon_sym_not_DASHhas2] = ACTIONS(1716), + [anon_sym_starts_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), + [anon_sym_ends_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), + [anon_sym_EQ_EQ2] = ACTIONS(1716), + [anon_sym_BANG_EQ2] = ACTIONS(1716), + [anon_sym_LT2] = ACTIONS(1629), + [anon_sym_LT_EQ2] = ACTIONS(1716), + [anon_sym_GT_EQ2] = ACTIONS(1716), + [anon_sym_EQ_TILDE2] = ACTIONS(1716), + [anon_sym_BANG_TILDE2] = ACTIONS(1716), + [anon_sym_like2] = ACTIONS(1716), + [anon_sym_not_DASHlike2] = ACTIONS(1716), + [anon_sym_STAR_STAR2] = ACTIONS(1716), + [anon_sym_PLUS_PLUS2] = ACTIONS(1716), + [anon_sym_SLASH2] = ACTIONS(1629), + [anon_sym_mod2] = ACTIONS(1716), + [anon_sym_SLASH_SLASH2] = ACTIONS(1716), + [anon_sym_PLUS2] = ACTIONS(1629), + [anon_sym_bit_DASHshl2] = ACTIONS(1716), + [anon_sym_bit_DASHshr2] = ACTIONS(1716), + [anon_sym_bit_DASHand2] = ACTIONS(1716), + [anon_sym_bit_DASHxor2] = ACTIONS(1716), + [anon_sym_bit_DASHor2] = ACTIONS(1716), + [anon_sym_err_GT] = ACTIONS(1629), + [anon_sym_out_GT] = ACTIONS(1629), + [anon_sym_e_GT] = ACTIONS(1629), + [anon_sym_o_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT] = ACTIONS(1629), + [anon_sym_err_GT_GT] = ACTIONS(1716), + [anon_sym_out_GT_GT] = ACTIONS(1716), + [anon_sym_e_GT_GT] = ACTIONS(1716), + [anon_sym_o_GT_GT] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), [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(2100), + [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(2100), + [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(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(2104), + [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(2104), + [anon_sym_mod2] = ACTIONS(2100), + [anon_sym_SLASH_SLASH2] = ACTIONS(2100), + [anon_sym_PLUS2] = ACTIONS(2104), + [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(2106), + [anon_sym_out_GT] = ACTIONS(2106), + [anon_sym_e_GT] = ACTIONS(2106), + [anon_sym_o_GT] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT] = ACTIONS(2106), + [anon_sym_err_GT_GT] = ACTIONS(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(905)] = { [sym_comment] = STATE(905), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(906)] = { [sym_comment] = STATE(906), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2535), + [sym__newline] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2535), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_err_GT_PIPE] = ACTIONS(2535), + [anon_sym_out_GT_PIPE] = ACTIONS(2535), + [anon_sym_e_GT_PIPE] = ACTIONS(2535), + [anon_sym_o_GT_PIPE] = ACTIONS(2535), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2535), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2535), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2535), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2535), + [anon_sym_RPAREN] = ACTIONS(2535), + [anon_sym_GT2] = ACTIONS(2537), + [anon_sym_DASH2] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_EQ_GT] = ACTIONS(2535), + [anon_sym_STAR2] = ACTIONS(2537), + [anon_sym_and2] = ACTIONS(2535), + [anon_sym_xor2] = ACTIONS(2535), + [anon_sym_or2] = ACTIONS(2535), + [anon_sym_not_DASHin2] = ACTIONS(2535), + [anon_sym_has2] = ACTIONS(2535), + [anon_sym_not_DASHhas2] = ACTIONS(2535), + [anon_sym_starts_DASHwith2] = ACTIONS(2535), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2535), + [anon_sym_ends_DASHwith2] = ACTIONS(2535), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2535), + [anon_sym_EQ_EQ2] = ACTIONS(2535), + [anon_sym_BANG_EQ2] = ACTIONS(2535), + [anon_sym_LT2] = ACTIONS(2537), + [anon_sym_LT_EQ2] = ACTIONS(2535), + [anon_sym_GT_EQ2] = ACTIONS(2535), + [anon_sym_EQ_TILDE2] = ACTIONS(2535), + [anon_sym_BANG_TILDE2] = ACTIONS(2535), + [anon_sym_like2] = ACTIONS(2535), + [anon_sym_not_DASHlike2] = ACTIONS(2535), + [anon_sym_STAR_STAR2] = ACTIONS(2535), + [anon_sym_PLUS_PLUS2] = ACTIONS(2535), + [anon_sym_SLASH2] = ACTIONS(2537), + [anon_sym_mod2] = ACTIONS(2535), + [anon_sym_SLASH_SLASH2] = ACTIONS(2535), + [anon_sym_PLUS2] = ACTIONS(2537), + [anon_sym_bit_DASHshl2] = ACTIONS(2535), + [anon_sym_bit_DASHshr2] = ACTIONS(2535), + [anon_sym_bit_DASHand2] = ACTIONS(2535), + [anon_sym_bit_DASHxor2] = ACTIONS(2535), + [anon_sym_bit_DASHor2] = ACTIONS(2535), + [anon_sym_err_GT] = ACTIONS(2537), + [anon_sym_out_GT] = ACTIONS(2537), + [anon_sym_e_GT] = ACTIONS(2537), + [anon_sym_o_GT] = ACTIONS(2537), + [anon_sym_err_PLUSout_GT] = ACTIONS(2537), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2537), + [anon_sym_o_PLUSe_GT] = ACTIONS(2537), + [anon_sym_e_PLUSo_GT] = ACTIONS(2537), + [anon_sym_err_GT_GT] = ACTIONS(2535), + [anon_sym_out_GT_GT] = ACTIONS(2535), + [anon_sym_e_GT_GT] = ACTIONS(2535), + [anon_sym_o_GT_GT] = ACTIONS(2535), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2535), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2535), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2535), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2535), [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_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(1812), + [anon_sym_in] = ACTIONS(1812), + [sym__newline] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_err_GT_PIPE] = ACTIONS(1812), + [anon_sym_out_GT_PIPE] = ACTIONS(1812), + [anon_sym_e_GT_PIPE] = ACTIONS(1812), + [anon_sym_o_GT_PIPE] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1812), + [anon_sym_GT2] = ACTIONS(1814), + [anon_sym_DASH2] = ACTIONS(1812), + [anon_sym_STAR2] = ACTIONS(1814), + [anon_sym_and2] = ACTIONS(1812), + [anon_sym_xor2] = ACTIONS(1812), + [anon_sym_or2] = ACTIONS(1812), + [anon_sym_not_DASHin2] = ACTIONS(1812), + [anon_sym_has2] = ACTIONS(1812), + [anon_sym_not_DASHhas2] = ACTIONS(1812), + [anon_sym_starts_DASHwith2] = ACTIONS(1812), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1812), + [anon_sym_ends_DASHwith2] = ACTIONS(1812), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1812), + [anon_sym_EQ_EQ2] = ACTIONS(1812), + [anon_sym_BANG_EQ2] = ACTIONS(1812), + [anon_sym_LT2] = ACTIONS(1814), + [anon_sym_LT_EQ2] = ACTIONS(1812), + [anon_sym_GT_EQ2] = ACTIONS(1812), + [anon_sym_EQ_TILDE2] = ACTIONS(1812), + [anon_sym_BANG_TILDE2] = ACTIONS(1812), + [anon_sym_like2] = ACTIONS(1812), + [anon_sym_not_DASHlike2] = ACTIONS(1812), + [anon_sym_LPAREN2] = ACTIONS(1812), + [anon_sym_STAR_STAR2] = ACTIONS(1812), + [anon_sym_PLUS_PLUS2] = ACTIONS(1812), + [anon_sym_SLASH2] = ACTIONS(1814), + [anon_sym_mod2] = ACTIONS(1812), + [anon_sym_SLASH_SLASH2] = ACTIONS(1812), + [anon_sym_PLUS2] = ACTIONS(1814), + [anon_sym_bit_DASHshl2] = ACTIONS(1812), + [anon_sym_bit_DASHshr2] = ACTIONS(1812), + [anon_sym_bit_DASHand2] = ACTIONS(1812), + [anon_sym_bit_DASHxor2] = ACTIONS(1812), + [anon_sym_bit_DASHor2] = ACTIONS(1812), + [aux_sym__immediate_decimal_token5] = ACTIONS(2539), + [anon_sym_err_GT] = ACTIONS(1814), + [anon_sym_out_GT] = ACTIONS(1814), + [anon_sym_e_GT] = ACTIONS(1814), + [anon_sym_o_GT] = ACTIONS(1814), + [anon_sym_err_PLUSout_GT] = ACTIONS(1814), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1814), + [anon_sym_o_PLUSe_GT] = ACTIONS(1814), + [anon_sym_e_PLUSo_GT] = ACTIONS(1814), + [anon_sym_err_GT_GT] = ACTIONS(1812), + [anon_sym_out_GT_GT] = ACTIONS(1812), + [anon_sym_e_GT_GT] = ACTIONS(1812), + [anon_sym_o_GT_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1812), + [sym__unquoted_pattern] = ACTIONS(1814), [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), + [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(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_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(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), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(913)] = { + [aux_sym__repeat_newline] = STATE(913), [sym_comment] = STATE(913), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2533), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_EQ_GT] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2535), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2533), - [anon_sym_PLUS_PLUS2] = ACTIONS(2533), - [anon_sym_SLASH2] = ACTIONS(2535), - [anon_sym_mod2] = ACTIONS(2533), - [anon_sym_SLASH_SLASH2] = ACTIONS(2533), - [anon_sym_PLUS2] = ACTIONS(2535), - [anon_sym_bit_DASHshl2] = ACTIONS(2533), - [anon_sym_bit_DASHshr2] = ACTIONS(2533), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1931), + [anon_sym_alias] = ACTIONS(1926), + [anon_sym_let] = ACTIONS(1926), + [anon_sym_mut] = ACTIONS(1926), + [anon_sym_const] = ACTIONS(1926), + [aux_sym_cmd_identifier_token1] = ACTIONS(1931), + [anon_sym_def] = ACTIONS(1926), + [anon_sym_use] = ACTIONS(1926), + [anon_sym_export_DASHenv] = ACTIONS(1926), + [anon_sym_extern] = ACTIONS(1926), + [anon_sym_module] = ACTIONS(1926), + [anon_sym_for] = ACTIONS(1926), + [anon_sym_loop] = ACTIONS(1926), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_if] = ACTIONS(1926), + [anon_sym_else] = ACTIONS(1926), + [anon_sym_try] = ACTIONS(1926), + [anon_sym_catch] = ACTIONS(1926), + [anon_sym_match] = ACTIONS(1926), + [anon_sym_in] = ACTIONS(1931), + [anon_sym_true] = ACTIONS(1926), + [anon_sym_false] = ACTIONS(1926), + [anon_sym_null] = ACTIONS(1926), + [aux_sym_cmd_identifier_token3] = ACTIONS(1926), + [aux_sym_cmd_identifier_token4] = ACTIONS(1926), + [aux_sym_cmd_identifier_token5] = ACTIONS(1926), + [sym__newline] = ACTIONS(2545), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_err_GT_PIPE] = ACTIONS(1926), + [anon_sym_out_GT_PIPE] = ACTIONS(1926), + [anon_sym_e_GT_PIPE] = ACTIONS(1926), + [anon_sym_o_GT_PIPE] = ACTIONS(1926), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1926), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1926), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1926), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_DOLLAR] = ACTIONS(1931), + [anon_sym_DASH2] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_where] = ACTIONS(1926), + [aux_sym_expr_unary_token1] = ACTIONS(1926), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1931), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1926), + [aux_sym__val_number_decimal_token4] = ACTIONS(1926), + [aux_sym__val_number_token1] = ACTIONS(1926), + [aux_sym__val_number_token2] = ACTIONS(1926), + [aux_sym__val_number_token3] = ACTIONS(1926), + [anon_sym_0b] = ACTIONS(1931), + [anon_sym_0o] = ACTIONS(1931), + [anon_sym_0x] = ACTIONS(1931), + [sym_val_date] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_BQUOTE] = ACTIONS(1926), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1926), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1926), + [anon_sym_CARET] = ACTIONS(1926), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1926), }, [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_in] = ACTIONS(2548), + [sym__newline] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_err_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_GT_PIPE] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_GT2] = ACTIONS(2550), + [anon_sym_DASH2] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_RBRACE] = ACTIONS(2548), + [anon_sym_EQ_GT] = ACTIONS(2548), + [anon_sym_STAR2] = ACTIONS(2550), + [anon_sym_and2] = ACTIONS(2548), + [anon_sym_xor2] = ACTIONS(2548), + [anon_sym_or2] = ACTIONS(2548), + [anon_sym_not_DASHin2] = ACTIONS(2548), + [anon_sym_has2] = ACTIONS(2548), + [anon_sym_not_DASHhas2] = ACTIONS(2548), + [anon_sym_starts_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), + [anon_sym_ends_DASHwith2] = ACTIONS(2548), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), + [anon_sym_EQ_EQ2] = ACTIONS(2548), + [anon_sym_BANG_EQ2] = ACTIONS(2548), + [anon_sym_LT2] = ACTIONS(2550), + [anon_sym_LT_EQ2] = ACTIONS(2548), + [anon_sym_GT_EQ2] = ACTIONS(2548), + [anon_sym_EQ_TILDE2] = ACTIONS(2548), + [anon_sym_BANG_TILDE2] = ACTIONS(2548), + [anon_sym_like2] = ACTIONS(2548), + [anon_sym_not_DASHlike2] = ACTIONS(2548), + [anon_sym_STAR_STAR2] = ACTIONS(2548), + [anon_sym_PLUS_PLUS2] = ACTIONS(2548), + [anon_sym_SLASH2] = ACTIONS(2550), + [anon_sym_mod2] = ACTIONS(2548), + [anon_sym_SLASH_SLASH2] = ACTIONS(2548), + [anon_sym_PLUS2] = ACTIONS(2550), + [anon_sym_bit_DASHshl2] = ACTIONS(2548), + [anon_sym_bit_DASHshr2] = ACTIONS(2548), + [anon_sym_bit_DASHand2] = ACTIONS(2548), + [anon_sym_bit_DASHxor2] = ACTIONS(2548), + [anon_sym_bit_DASHor2] = ACTIONS(2548), + [anon_sym_err_GT] = ACTIONS(2550), + [anon_sym_out_GT] = ACTIONS(2550), + [anon_sym_e_GT] = ACTIONS(2550), + [anon_sym_o_GT] = ACTIONS(2550), + [anon_sym_err_PLUSout_GT] = ACTIONS(2550), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), + [anon_sym_o_PLUSe_GT] = ACTIONS(2550), + [anon_sym_e_PLUSo_GT] = ACTIONS(2550), + [anon_sym_err_GT_GT] = ACTIONS(2548), + [anon_sym_out_GT_GT] = ACTIONS(2548), + [anon_sym_e_GT_GT] = ACTIONS(2548), + [anon_sym_o_GT_GT] = ACTIONS(2548), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(916)] = { [sym_comment] = STATE(916), - [anon_sym_in] = ACTIONS(2537), - [sym__newline] = ACTIONS(2537), - [anon_sym_SEMI] = ACTIONS(2537), - [anon_sym_PIPE] = ACTIONS(2537), - [anon_sym_err_GT_PIPE] = ACTIONS(2537), - [anon_sym_out_GT_PIPE] = ACTIONS(2537), - [anon_sym_e_GT_PIPE] = ACTIONS(2537), - [anon_sym_o_GT_PIPE] = ACTIONS(2537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2537), - [anon_sym_RPAREN] = ACTIONS(2537), - [anon_sym_GT2] = ACTIONS(2539), - [anon_sym_DASH2] = ACTIONS(2537), - [anon_sym_LBRACE] = ACTIONS(2537), - [anon_sym_RBRACE] = ACTIONS(2537), - [anon_sym_EQ_GT] = ACTIONS(2537), - [anon_sym_STAR2] = ACTIONS(2539), - [anon_sym_and2] = ACTIONS(2537), - [anon_sym_xor2] = ACTIONS(2537), - [anon_sym_or2] = ACTIONS(2537), - [anon_sym_not_DASHin2] = ACTIONS(2537), - [anon_sym_has2] = ACTIONS(2537), - [anon_sym_not_DASHhas2] = ACTIONS(2537), - [anon_sym_starts_DASHwith2] = ACTIONS(2537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2537), - [anon_sym_ends_DASHwith2] = ACTIONS(2537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2537), - [anon_sym_EQ_EQ2] = ACTIONS(2537), - [anon_sym_BANG_EQ2] = ACTIONS(2537), - [anon_sym_LT2] = ACTIONS(2539), - [anon_sym_LT_EQ2] = ACTIONS(2537), - [anon_sym_GT_EQ2] = ACTIONS(2537), - [anon_sym_EQ_TILDE2] = ACTIONS(2537), - [anon_sym_BANG_TILDE2] = ACTIONS(2537), - [anon_sym_like2] = ACTIONS(2537), - [anon_sym_not_DASHlike2] = ACTIONS(2537), - [anon_sym_STAR_STAR2] = ACTIONS(2537), - [anon_sym_PLUS_PLUS2] = ACTIONS(2537), - [anon_sym_SLASH2] = ACTIONS(2539), - [anon_sym_mod2] = ACTIONS(2537), - [anon_sym_SLASH_SLASH2] = ACTIONS(2537), - [anon_sym_PLUS2] = ACTIONS(2539), - [anon_sym_bit_DASHshl2] = ACTIONS(2537), - [anon_sym_bit_DASHshr2] = ACTIONS(2537), - [anon_sym_bit_DASHand2] = ACTIONS(2537), - [anon_sym_bit_DASHxor2] = ACTIONS(2537), - [anon_sym_bit_DASHor2] = ACTIONS(2537), - [anon_sym_err_GT] = ACTIONS(2539), - [anon_sym_out_GT] = ACTIONS(2539), - [anon_sym_e_GT] = ACTIONS(2539), - [anon_sym_o_GT] = ACTIONS(2539), - [anon_sym_err_PLUSout_GT] = ACTIONS(2539), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2539), - [anon_sym_o_PLUSe_GT] = ACTIONS(2539), - [anon_sym_e_PLUSo_GT] = ACTIONS(2539), - [anon_sym_err_GT_GT] = ACTIONS(2537), - [anon_sym_out_GT_GT] = ACTIONS(2537), - [anon_sym_e_GT_GT] = ACTIONS(2537), - [anon_sym_o_GT_GT] = ACTIONS(2537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2537), + [ts_builtin_sym_end] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_has2] = ACTIONS(1687), + [anon_sym_not_DASHhas2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_like2] = ACTIONS(1687), + [anon_sym_not_DASHlike2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(3), }, [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), + [anon_sym_in] = ACTIONS(2552), + [sym__newline] = ACTIONS(2552), + [anon_sym_SEMI] = ACTIONS(2552), + [anon_sym_PIPE] = ACTIONS(2552), + [anon_sym_err_GT_PIPE] = ACTIONS(2552), + [anon_sym_out_GT_PIPE] = ACTIONS(2552), + [anon_sym_e_GT_PIPE] = ACTIONS(2552), + [anon_sym_o_GT_PIPE] = ACTIONS(2552), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2552), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2552), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2552), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2552), + [anon_sym_RPAREN] = ACTIONS(2552), + [anon_sym_GT2] = ACTIONS(2554), + [anon_sym_DASH2] = ACTIONS(2552), + [anon_sym_LBRACE] = ACTIONS(2552), + [anon_sym_RBRACE] = ACTIONS(2552), + [anon_sym_EQ_GT] = ACTIONS(2552), + [anon_sym_STAR2] = ACTIONS(2554), + [anon_sym_and2] = ACTIONS(2552), + [anon_sym_xor2] = ACTIONS(2552), + [anon_sym_or2] = ACTIONS(2552), + [anon_sym_not_DASHin2] = ACTIONS(2552), + [anon_sym_has2] = ACTIONS(2552), + [anon_sym_not_DASHhas2] = ACTIONS(2552), + [anon_sym_starts_DASHwith2] = ACTIONS(2552), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2552), + [anon_sym_ends_DASHwith2] = ACTIONS(2552), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2552), + [anon_sym_EQ_EQ2] = ACTIONS(2552), + [anon_sym_BANG_EQ2] = ACTIONS(2552), + [anon_sym_LT2] = ACTIONS(2554), + [anon_sym_LT_EQ2] = ACTIONS(2552), + [anon_sym_GT_EQ2] = ACTIONS(2552), + [anon_sym_EQ_TILDE2] = ACTIONS(2552), + [anon_sym_BANG_TILDE2] = ACTIONS(2552), + [anon_sym_like2] = ACTIONS(2552), + [anon_sym_not_DASHlike2] = ACTIONS(2552), + [anon_sym_STAR_STAR2] = ACTIONS(2552), + [anon_sym_PLUS_PLUS2] = ACTIONS(2552), + [anon_sym_SLASH2] = ACTIONS(2554), + [anon_sym_mod2] = ACTIONS(2552), + [anon_sym_SLASH_SLASH2] = ACTIONS(2552), + [anon_sym_PLUS2] = ACTIONS(2554), + [anon_sym_bit_DASHshl2] = ACTIONS(2552), + [anon_sym_bit_DASHshr2] = ACTIONS(2552), + [anon_sym_bit_DASHand2] = ACTIONS(2552), + [anon_sym_bit_DASHxor2] = ACTIONS(2552), + [anon_sym_bit_DASHor2] = ACTIONS(2552), + [anon_sym_err_GT] = ACTIONS(2554), + [anon_sym_out_GT] = ACTIONS(2554), + [anon_sym_e_GT] = ACTIONS(2554), + [anon_sym_o_GT] = ACTIONS(2554), + [anon_sym_err_PLUSout_GT] = ACTIONS(2554), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2554), + [anon_sym_o_PLUSe_GT] = ACTIONS(2554), + [anon_sym_e_PLUSo_GT] = ACTIONS(2554), + [anon_sym_err_GT_GT] = ACTIONS(2552), + [anon_sym_out_GT_GT] = ACTIONS(2552), + [anon_sym_e_GT_GT] = ACTIONS(2552), + [anon_sym_o_GT_GT] = ACTIONS(2552), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2552), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2552), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2552), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2552), [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), + [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(1008), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_STAR2] = ACTIONS(1008), + [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(1008), + [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(2556), + [anon_sym_STAR_STAR2] = ACTIONS(1030), + [anon_sym_PLUS_PLUS2] = ACTIONS(1030), + [anon_sym_SLASH2] = ACTIONS(1008), + [anon_sym_mod2] = ACTIONS(1030), + [anon_sym_SLASH_SLASH2] = ACTIONS(1030), + [anon_sym_PLUS2] = ACTIONS(1008), + [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(1008), + [anon_sym_out_GT] = ACTIONS(1008), + [anon_sym_e_GT] = ACTIONS(1008), + [anon_sym_o_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT] = ACTIONS(1008), + [anon_sym_err_GT_GT] = ACTIONS(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(2558), [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), + [anon_sym_in] = ACTIONS(2560), + [sym__newline] = ACTIONS(2560), + [anon_sym_SEMI] = ACTIONS(2560), + [anon_sym_PIPE] = ACTIONS(2560), + [anon_sym_err_GT_PIPE] = ACTIONS(2560), + [anon_sym_out_GT_PIPE] = ACTIONS(2560), + [anon_sym_e_GT_PIPE] = ACTIONS(2560), + [anon_sym_o_GT_PIPE] = ACTIONS(2560), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2560), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2560), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2560), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2560), + [anon_sym_RPAREN] = ACTIONS(2560), + [anon_sym_GT2] = ACTIONS(2562), + [anon_sym_DASH2] = ACTIONS(2560), + [anon_sym_RBRACE] = ACTIONS(2560), + [anon_sym_STAR2] = ACTIONS(2562), + [anon_sym_and2] = ACTIONS(2560), + [anon_sym_xor2] = ACTIONS(2560), + [anon_sym_or2] = ACTIONS(2560), + [anon_sym_not_DASHin2] = ACTIONS(2560), + [anon_sym_has2] = ACTIONS(2560), + [anon_sym_not_DASHhas2] = ACTIONS(2560), + [anon_sym_starts_DASHwith2] = ACTIONS(2560), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2560), + [anon_sym_ends_DASHwith2] = ACTIONS(2560), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2560), + [anon_sym_EQ_EQ2] = ACTIONS(2560), + [anon_sym_BANG_EQ2] = ACTIONS(2560), + [anon_sym_LT2] = ACTIONS(2562), + [anon_sym_LT_EQ2] = ACTIONS(2560), + [anon_sym_GT_EQ2] = ACTIONS(2560), + [anon_sym_EQ_TILDE2] = ACTIONS(2560), + [anon_sym_BANG_TILDE2] = ACTIONS(2560), + [anon_sym_like2] = ACTIONS(2560), + [anon_sym_not_DASHlike2] = ACTIONS(2560), + [anon_sym_LPAREN2] = ACTIONS(2564), + [anon_sym_STAR_STAR2] = ACTIONS(2560), + [anon_sym_PLUS_PLUS2] = ACTIONS(2560), + [anon_sym_SLASH2] = ACTIONS(2562), + [anon_sym_mod2] = ACTIONS(2560), + [anon_sym_SLASH_SLASH2] = ACTIONS(2560), + [anon_sym_PLUS2] = ACTIONS(2562), + [anon_sym_bit_DASHshl2] = ACTIONS(2560), + [anon_sym_bit_DASHshr2] = ACTIONS(2560), + [anon_sym_bit_DASHand2] = ACTIONS(2560), + [anon_sym_bit_DASHxor2] = ACTIONS(2560), + [anon_sym_bit_DASHor2] = ACTIONS(2560), + [anon_sym_err_GT] = ACTIONS(2562), + [anon_sym_out_GT] = ACTIONS(2562), + [anon_sym_e_GT] = ACTIONS(2562), + [anon_sym_o_GT] = ACTIONS(2562), + [anon_sym_err_PLUSout_GT] = ACTIONS(2562), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2562), + [anon_sym_o_PLUSe_GT] = ACTIONS(2562), + [anon_sym_e_PLUSo_GT] = ACTIONS(2562), + [anon_sym_err_GT_GT] = ACTIONS(2560), + [anon_sym_out_GT_GT] = ACTIONS(2560), + [anon_sym_e_GT_GT] = ACTIONS(2560), + [anon_sym_o_GT_GT] = ACTIONS(2560), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2560), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2560), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2560), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2560), + [sym__unquoted_pattern] = ACTIONS(1691), [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), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_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(2566), + [sym__newline] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_err_GT_PIPE] = ACTIONS(2566), + [anon_sym_out_GT_PIPE] = ACTIONS(2566), + [anon_sym_e_GT_PIPE] = ACTIONS(2566), + [anon_sym_o_GT_PIPE] = ACTIONS(2566), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2566), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2566), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2566), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2566), + [anon_sym_RPAREN] = ACTIONS(2566), + [anon_sym_GT2] = ACTIONS(2568), + [anon_sym_DASH2] = ACTIONS(2566), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_EQ_GT] = ACTIONS(2566), + [anon_sym_STAR2] = ACTIONS(2568), + [anon_sym_and2] = ACTIONS(2566), + [anon_sym_xor2] = ACTIONS(2566), + [anon_sym_or2] = ACTIONS(2566), + [anon_sym_not_DASHin2] = ACTIONS(2566), + [anon_sym_has2] = ACTIONS(2566), + [anon_sym_not_DASHhas2] = ACTIONS(2566), + [anon_sym_starts_DASHwith2] = ACTIONS(2566), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2566), + [anon_sym_ends_DASHwith2] = ACTIONS(2566), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2566), + [anon_sym_EQ_EQ2] = ACTIONS(2566), + [anon_sym_BANG_EQ2] = ACTIONS(2566), + [anon_sym_LT2] = ACTIONS(2568), + [anon_sym_LT_EQ2] = ACTIONS(2566), + [anon_sym_GT_EQ2] = ACTIONS(2566), + [anon_sym_EQ_TILDE2] = ACTIONS(2566), + [anon_sym_BANG_TILDE2] = ACTIONS(2566), + [anon_sym_like2] = ACTIONS(2566), + [anon_sym_not_DASHlike2] = ACTIONS(2566), + [anon_sym_STAR_STAR2] = ACTIONS(2566), + [anon_sym_PLUS_PLUS2] = ACTIONS(2566), + [anon_sym_SLASH2] = ACTIONS(2568), + [anon_sym_mod2] = ACTIONS(2566), + [anon_sym_SLASH_SLASH2] = ACTIONS(2566), + [anon_sym_PLUS2] = ACTIONS(2568), + [anon_sym_bit_DASHshl2] = ACTIONS(2566), + [anon_sym_bit_DASHshr2] = ACTIONS(2566), + [anon_sym_bit_DASHand2] = ACTIONS(2566), + [anon_sym_bit_DASHxor2] = ACTIONS(2566), + [anon_sym_bit_DASHor2] = ACTIONS(2566), + [anon_sym_err_GT] = ACTIONS(2568), + [anon_sym_out_GT] = ACTIONS(2568), + [anon_sym_e_GT] = ACTIONS(2568), + [anon_sym_o_GT] = ACTIONS(2568), + [anon_sym_err_PLUSout_GT] = ACTIONS(2568), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2568), + [anon_sym_o_PLUSe_GT] = ACTIONS(2568), + [anon_sym_e_PLUSo_GT] = ACTIONS(2568), + [anon_sym_err_GT_GT] = ACTIONS(2566), + [anon_sym_out_GT_GT] = ACTIONS(2566), + [anon_sym_e_GT_GT] = ACTIONS(2566), + [anon_sym_o_GT_GT] = ACTIONS(2566), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2566), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2566), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2566), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2566), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(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(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(2556), + [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(2558), [anon_sym_POUND] = ACTIONS(3), }, [STATE(923)] = { [sym_comment] = STATE(923), - [anon_sym_in] = ACTIONS(1866), - [sym__newline] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_err_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_GT_PIPE] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_GT2] = ACTIONS(1868), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_EQ_GT] = ACTIONS(1866), - [anon_sym_STAR2] = ACTIONS(1868), - [anon_sym_and2] = ACTIONS(1866), - [anon_sym_xor2] = ACTIONS(1866), - [anon_sym_or2] = ACTIONS(1866), - [anon_sym_not_DASHin2] = ACTIONS(1866), - [anon_sym_has2] = ACTIONS(1866), - [anon_sym_not_DASHhas2] = ACTIONS(1866), - [anon_sym_starts_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), - [anon_sym_ends_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), - [anon_sym_EQ_EQ2] = ACTIONS(1866), - [anon_sym_BANG_EQ2] = ACTIONS(1866), - [anon_sym_LT2] = ACTIONS(1868), - [anon_sym_LT_EQ2] = ACTIONS(1866), - [anon_sym_GT_EQ2] = ACTIONS(1866), - [anon_sym_EQ_TILDE2] = ACTIONS(1866), - [anon_sym_BANG_TILDE2] = ACTIONS(1866), - [anon_sym_like2] = ACTIONS(1866), - [anon_sym_not_DASHlike2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [anon_sym_in] = ACTIONS(2566), + [sym__newline] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_err_GT_PIPE] = ACTIONS(2566), + [anon_sym_out_GT_PIPE] = ACTIONS(2566), + [anon_sym_e_GT_PIPE] = ACTIONS(2566), + [anon_sym_o_GT_PIPE] = ACTIONS(2566), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2566), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2566), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2566), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2566), + [anon_sym_RPAREN] = ACTIONS(2566), + [anon_sym_GT2] = ACTIONS(2568), + [anon_sym_DASH2] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_STAR2] = ACTIONS(2568), + [anon_sym_and2] = ACTIONS(2566), + [anon_sym_xor2] = ACTIONS(2566), + [anon_sym_or2] = ACTIONS(2566), + [anon_sym_not_DASHin2] = ACTIONS(2566), + [anon_sym_has2] = ACTIONS(2566), + [anon_sym_not_DASHhas2] = ACTIONS(2566), + [anon_sym_starts_DASHwith2] = ACTIONS(2566), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2566), + [anon_sym_ends_DASHwith2] = ACTIONS(2566), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2566), + [anon_sym_EQ_EQ2] = ACTIONS(2566), + [anon_sym_BANG_EQ2] = ACTIONS(2566), + [anon_sym_LT2] = ACTIONS(2568), + [anon_sym_LT_EQ2] = ACTIONS(2566), + [anon_sym_GT_EQ2] = ACTIONS(2566), + [anon_sym_EQ_TILDE2] = ACTIONS(2566), + [anon_sym_BANG_TILDE2] = ACTIONS(2566), + [anon_sym_like2] = ACTIONS(2566), + [anon_sym_not_DASHlike2] = ACTIONS(2566), + [anon_sym_LPAREN2] = ACTIONS(2025), + [anon_sym_STAR_STAR2] = ACTIONS(2566), + [anon_sym_PLUS_PLUS2] = ACTIONS(2566), + [anon_sym_SLASH2] = ACTIONS(2568), + [anon_sym_mod2] = ACTIONS(2566), + [anon_sym_SLASH_SLASH2] = ACTIONS(2566), + [anon_sym_PLUS2] = ACTIONS(2568), + [anon_sym_bit_DASHshl2] = ACTIONS(2566), + [anon_sym_bit_DASHshr2] = ACTIONS(2566), + [anon_sym_bit_DASHand2] = ACTIONS(2566), + [anon_sym_bit_DASHxor2] = ACTIONS(2566), + [anon_sym_bit_DASHor2] = ACTIONS(2566), + [anon_sym_err_GT] = ACTIONS(2568), + [anon_sym_out_GT] = ACTIONS(2568), + [anon_sym_e_GT] = ACTIONS(2568), + [anon_sym_o_GT] = ACTIONS(2568), + [anon_sym_err_PLUSout_GT] = ACTIONS(2568), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2568), + [anon_sym_o_PLUSe_GT] = ACTIONS(2568), + [anon_sym_e_PLUSo_GT] = ACTIONS(2568), + [anon_sym_err_GT_GT] = ACTIONS(2566), + [anon_sym_out_GT_GT] = ACTIONS(2566), + [anon_sym_e_GT_GT] = ACTIONS(2566), + [anon_sym_o_GT_GT] = ACTIONS(2566), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2566), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2566), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2566), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2566), + [sym__unquoted_pattern] = ACTIONS(2031), [anon_sym_POUND] = ACTIONS(3), }, [STATE(924)] = { [sym_comment] = STATE(924), - [anon_sym_in] = ACTIONS(2563), - [sym__newline] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2563), - [anon_sym_err_GT_PIPE] = ACTIONS(2563), - [anon_sym_out_GT_PIPE] = ACTIONS(2563), - [anon_sym_e_GT_PIPE] = ACTIONS(2563), - [anon_sym_o_GT_PIPE] = ACTIONS(2563), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2563), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2563), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2563), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2563), - [anon_sym_RPAREN] = ACTIONS(2563), - [anon_sym_GT2] = ACTIONS(2565), - [anon_sym_DASH2] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_RBRACE] = ACTIONS(2563), - [anon_sym_EQ_GT] = ACTIONS(2563), - [anon_sym_STAR2] = ACTIONS(2565), - [anon_sym_and2] = ACTIONS(2563), - [anon_sym_xor2] = ACTIONS(2563), - [anon_sym_or2] = ACTIONS(2563), - [anon_sym_not_DASHin2] = ACTIONS(2563), - [anon_sym_has2] = ACTIONS(2563), - [anon_sym_not_DASHhas2] = ACTIONS(2563), - [anon_sym_starts_DASHwith2] = ACTIONS(2563), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2563), - [anon_sym_ends_DASHwith2] = ACTIONS(2563), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2563), - [anon_sym_EQ_EQ2] = ACTIONS(2563), - [anon_sym_BANG_EQ2] = ACTIONS(2563), - [anon_sym_LT2] = ACTIONS(2565), - [anon_sym_LT_EQ2] = ACTIONS(2563), - [anon_sym_GT_EQ2] = ACTIONS(2563), - [anon_sym_EQ_TILDE2] = ACTIONS(2563), - [anon_sym_BANG_TILDE2] = ACTIONS(2563), - [anon_sym_like2] = ACTIONS(2563), - [anon_sym_not_DASHlike2] = ACTIONS(2563), - [anon_sym_STAR_STAR2] = ACTIONS(2563), - [anon_sym_PLUS_PLUS2] = ACTIONS(2563), - [anon_sym_SLASH2] = ACTIONS(2565), - [anon_sym_mod2] = ACTIONS(2563), - [anon_sym_SLASH_SLASH2] = ACTIONS(2563), - [anon_sym_PLUS2] = ACTIONS(2565), - [anon_sym_bit_DASHshl2] = ACTIONS(2563), - [anon_sym_bit_DASHshr2] = ACTIONS(2563), - [anon_sym_bit_DASHand2] = ACTIONS(2563), - [anon_sym_bit_DASHxor2] = ACTIONS(2563), - [anon_sym_bit_DASHor2] = ACTIONS(2563), - [anon_sym_err_GT] = ACTIONS(2565), - [anon_sym_out_GT] = ACTIONS(2565), - [anon_sym_e_GT] = ACTIONS(2565), - [anon_sym_o_GT] = ACTIONS(2565), - [anon_sym_err_PLUSout_GT] = ACTIONS(2565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2565), - [anon_sym_o_PLUSe_GT] = ACTIONS(2565), - [anon_sym_e_PLUSo_GT] = ACTIONS(2565), - [anon_sym_err_GT_GT] = ACTIONS(2563), - [anon_sym_out_GT_GT] = ACTIONS(2563), - [anon_sym_e_GT_GT] = ACTIONS(2563), - [anon_sym_o_GT_GT] = ACTIONS(2563), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2563), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2563), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2563), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2563), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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(2570), + [sym__newline] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_err_GT_PIPE] = ACTIONS(2570), + [anon_sym_out_GT_PIPE] = ACTIONS(2570), + [anon_sym_e_GT_PIPE] = ACTIONS(2570), + [anon_sym_o_GT_PIPE] = ACTIONS(2570), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2570), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2570), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2570), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2570), + [anon_sym_RPAREN] = ACTIONS(2570), + [anon_sym_GT2] = ACTIONS(2572), + [anon_sym_DASH2] = ACTIONS(2570), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_STAR2] = ACTIONS(2572), + [anon_sym_and2] = ACTIONS(2570), + [anon_sym_xor2] = ACTIONS(2570), + [anon_sym_or2] = ACTIONS(2570), + [anon_sym_not_DASHin2] = ACTIONS(2570), + [anon_sym_has2] = ACTIONS(2570), + [anon_sym_not_DASHhas2] = ACTIONS(2570), + [anon_sym_starts_DASHwith2] = ACTIONS(2570), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2570), + [anon_sym_ends_DASHwith2] = ACTIONS(2570), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2570), + [anon_sym_EQ_EQ2] = ACTIONS(2570), + [anon_sym_BANG_EQ2] = ACTIONS(2570), + [anon_sym_LT2] = ACTIONS(2572), + [anon_sym_LT_EQ2] = ACTIONS(2570), + [anon_sym_GT_EQ2] = ACTIONS(2570), + [anon_sym_EQ_TILDE2] = ACTIONS(2570), + [anon_sym_BANG_TILDE2] = ACTIONS(2570), + [anon_sym_like2] = ACTIONS(2570), + [anon_sym_not_DASHlike2] = ACTIONS(2570), + [anon_sym_LPAREN2] = ACTIONS(2574), + [anon_sym_STAR_STAR2] = ACTIONS(2570), + [anon_sym_PLUS_PLUS2] = ACTIONS(2570), + [anon_sym_SLASH2] = ACTIONS(2572), + [anon_sym_mod2] = ACTIONS(2570), + [anon_sym_SLASH_SLASH2] = ACTIONS(2570), + [anon_sym_PLUS2] = ACTIONS(2572), + [anon_sym_bit_DASHshl2] = ACTIONS(2570), + [anon_sym_bit_DASHshr2] = ACTIONS(2570), + [anon_sym_bit_DASHand2] = ACTIONS(2570), + [anon_sym_bit_DASHxor2] = ACTIONS(2570), + [anon_sym_bit_DASHor2] = ACTIONS(2570), + [anon_sym_err_GT] = ACTIONS(2572), + [anon_sym_out_GT] = ACTIONS(2572), + [anon_sym_e_GT] = ACTIONS(2572), + [anon_sym_o_GT] = ACTIONS(2572), + [anon_sym_err_PLUSout_GT] = ACTIONS(2572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2572), + [anon_sym_o_PLUSe_GT] = ACTIONS(2572), + [anon_sym_e_PLUSo_GT] = ACTIONS(2572), + [anon_sym_err_GT_GT] = ACTIONS(2570), + [anon_sym_out_GT_GT] = ACTIONS(2570), + [anon_sym_e_GT_GT] = ACTIONS(2570), + [anon_sym_o_GT_GT] = ACTIONS(2570), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2570), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2570), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2570), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2570), + [sym__unquoted_pattern] = ACTIONS(2576), [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(2021), + [sym__newline] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_err_GT_PIPE] = ACTIONS(2021), + [anon_sym_out_GT_PIPE] = ACTIONS(2021), + [anon_sym_e_GT_PIPE] = ACTIONS(2021), + [anon_sym_o_GT_PIPE] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2021), + [anon_sym_GT2] = ACTIONS(2023), + [anon_sym_DASH2] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2021), + [anon_sym_RBRACE] = ACTIONS(2021), + [anon_sym_EQ_GT] = ACTIONS(2021), + [anon_sym_STAR2] = ACTIONS(2023), + [anon_sym_and2] = ACTIONS(2021), + [anon_sym_xor2] = ACTIONS(2021), + [anon_sym_or2] = ACTIONS(2021), + [anon_sym_not_DASHin2] = ACTIONS(2021), + [anon_sym_has2] = ACTIONS(2021), + [anon_sym_not_DASHhas2] = ACTIONS(2021), + [anon_sym_starts_DASHwith2] = ACTIONS(2021), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2021), + [anon_sym_ends_DASHwith2] = ACTIONS(2021), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2021), + [anon_sym_EQ_EQ2] = ACTIONS(2021), + [anon_sym_BANG_EQ2] = ACTIONS(2021), + [anon_sym_LT2] = ACTIONS(2023), + [anon_sym_LT_EQ2] = ACTIONS(2021), + [anon_sym_GT_EQ2] = ACTIONS(2021), + [anon_sym_EQ_TILDE2] = ACTIONS(2021), + [anon_sym_BANG_TILDE2] = ACTIONS(2021), + [anon_sym_like2] = ACTIONS(2021), + [anon_sym_not_DASHlike2] = ACTIONS(2021), + [anon_sym_STAR_STAR2] = ACTIONS(2021), + [anon_sym_PLUS_PLUS2] = ACTIONS(2021), + [anon_sym_SLASH2] = ACTIONS(2023), + [anon_sym_mod2] = ACTIONS(2021), + [anon_sym_SLASH_SLASH2] = ACTIONS(2021), + [anon_sym_PLUS2] = ACTIONS(2023), + [anon_sym_bit_DASHshl2] = ACTIONS(2021), + [anon_sym_bit_DASHshr2] = ACTIONS(2021), + [anon_sym_bit_DASHand2] = ACTIONS(2021), + [anon_sym_bit_DASHxor2] = ACTIONS(2021), + [anon_sym_bit_DASHor2] = ACTIONS(2021), + [anon_sym_err_GT] = ACTIONS(2023), + [anon_sym_out_GT] = ACTIONS(2023), + [anon_sym_e_GT] = ACTIONS(2023), + [anon_sym_o_GT] = ACTIONS(2023), + [anon_sym_err_PLUSout_GT] = ACTIONS(2023), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2023), + [anon_sym_o_PLUSe_GT] = ACTIONS(2023), + [anon_sym_e_PLUSo_GT] = ACTIONS(2023), + [anon_sym_err_GT_GT] = ACTIONS(2021), + [anon_sym_out_GT_GT] = ACTIONS(2021), + [anon_sym_e_GT_GT] = ACTIONS(2021), + [anon_sym_o_GT_GT] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2021), [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(2578), + [sym__newline] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_PIPE] = ACTIONS(2578), + [anon_sym_err_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_GT_PIPE] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_GT2] = ACTIONS(2580), + [anon_sym_DASH2] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_EQ_GT] = ACTIONS(2578), + [anon_sym_STAR2] = ACTIONS(2580), + [anon_sym_and2] = ACTIONS(2578), + [anon_sym_xor2] = ACTIONS(2578), + [anon_sym_or2] = ACTIONS(2578), + [anon_sym_not_DASHin2] = ACTIONS(2578), + [anon_sym_has2] = ACTIONS(2578), + [anon_sym_not_DASHhas2] = ACTIONS(2578), + [anon_sym_starts_DASHwith2] = ACTIONS(2578), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2578), + [anon_sym_ends_DASHwith2] = ACTIONS(2578), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2578), + [anon_sym_EQ_EQ2] = ACTIONS(2578), + [anon_sym_BANG_EQ2] = ACTIONS(2578), + [anon_sym_LT2] = ACTIONS(2580), + [anon_sym_LT_EQ2] = ACTIONS(2578), + [anon_sym_GT_EQ2] = ACTIONS(2578), + [anon_sym_EQ_TILDE2] = ACTIONS(2578), + [anon_sym_BANG_TILDE2] = ACTIONS(2578), + [anon_sym_like2] = ACTIONS(2578), + [anon_sym_not_DASHlike2] = ACTIONS(2578), + [anon_sym_STAR_STAR2] = ACTIONS(2578), + [anon_sym_PLUS_PLUS2] = ACTIONS(2578), + [anon_sym_SLASH2] = ACTIONS(2580), + [anon_sym_mod2] = ACTIONS(2578), + [anon_sym_SLASH_SLASH2] = ACTIONS(2578), + [anon_sym_PLUS2] = ACTIONS(2580), + [anon_sym_bit_DASHshl2] = ACTIONS(2578), + [anon_sym_bit_DASHshr2] = ACTIONS(2578), + [anon_sym_bit_DASHand2] = ACTIONS(2578), + [anon_sym_bit_DASHxor2] = ACTIONS(2578), + [anon_sym_bit_DASHor2] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2578), + [anon_sym_out_GT_GT] = ACTIONS(2578), + [anon_sym_e_GT_GT] = ACTIONS(2578), + [anon_sym_o_GT_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(930)] = { [sym_comment] = STATE(930), - [anon_sym_in] = ACTIONS(1858), - [sym__newline] = ACTIONS(1858), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_err_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_GT_PIPE] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), - [anon_sym_RPAREN] = ACTIONS(1858), - [anon_sym_GT2] = ACTIONS(1860), - [anon_sym_DASH2] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_EQ_GT] = ACTIONS(1858), - [anon_sym_STAR2] = ACTIONS(1860), - [anon_sym_and2] = ACTIONS(1858), - [anon_sym_xor2] = ACTIONS(1858), - [anon_sym_or2] = ACTIONS(1858), - [anon_sym_not_DASHin2] = ACTIONS(1858), - [anon_sym_has2] = ACTIONS(1858), - [anon_sym_not_DASHhas2] = ACTIONS(1858), - [anon_sym_starts_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1858), - [anon_sym_ends_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1858), - [anon_sym_EQ_EQ2] = ACTIONS(1858), - [anon_sym_BANG_EQ2] = ACTIONS(1858), - [anon_sym_LT2] = ACTIONS(1860), - [anon_sym_LT_EQ2] = ACTIONS(1858), - [anon_sym_GT_EQ2] = ACTIONS(1858), - [anon_sym_EQ_TILDE2] = ACTIONS(1858), - [anon_sym_BANG_TILDE2] = ACTIONS(1858), - [anon_sym_like2] = ACTIONS(1858), - [anon_sym_not_DASHlike2] = ACTIONS(1858), - [anon_sym_STAR_STAR2] = ACTIONS(1858), - [anon_sym_PLUS_PLUS2] = ACTIONS(1858), - [anon_sym_SLASH2] = ACTIONS(1860), - [anon_sym_mod2] = ACTIONS(1858), - [anon_sym_SLASH_SLASH2] = ACTIONS(1858), - [anon_sym_PLUS2] = ACTIONS(1860), - [anon_sym_bit_DASHshl2] = ACTIONS(1858), - [anon_sym_bit_DASHshr2] = ACTIONS(1858), - [anon_sym_bit_DASHand2] = ACTIONS(1858), - [anon_sym_bit_DASHxor2] = ACTIONS(1858), - [anon_sym_bit_DASHor2] = ACTIONS(1858), - [anon_sym_err_GT] = ACTIONS(1860), - [anon_sym_out_GT] = ACTIONS(1860), - [anon_sym_e_GT] = ACTIONS(1860), - [anon_sym_o_GT] = ACTIONS(1860), - [anon_sym_err_PLUSout_GT] = ACTIONS(1860), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1860), - [anon_sym_o_PLUSe_GT] = ACTIONS(1860), - [anon_sym_e_PLUSo_GT] = ACTIONS(1860), - [anon_sym_err_GT_GT] = ACTIONS(1858), - [anon_sym_out_GT_GT] = ACTIONS(1858), - [anon_sym_e_GT_GT] = ACTIONS(1858), - [anon_sym_o_GT_GT] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), + [anon_sym_in] = ACTIONS(2582), + [sym__newline] = ACTIONS(2582), + [anon_sym_SEMI] = ACTIONS(2582), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_err_GT_PIPE] = ACTIONS(2582), + [anon_sym_out_GT_PIPE] = ACTIONS(2582), + [anon_sym_e_GT_PIPE] = ACTIONS(2582), + [anon_sym_o_GT_PIPE] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2582), + [anon_sym_RPAREN] = ACTIONS(2582), + [anon_sym_GT2] = ACTIONS(2584), + [anon_sym_DASH2] = ACTIONS(2582), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_RBRACE] = ACTIONS(2582), + [anon_sym_EQ_GT] = ACTIONS(2582), + [anon_sym_STAR2] = ACTIONS(2584), + [anon_sym_and2] = ACTIONS(2582), + [anon_sym_xor2] = ACTIONS(2582), + [anon_sym_or2] = ACTIONS(2582), + [anon_sym_not_DASHin2] = ACTIONS(2582), + [anon_sym_has2] = ACTIONS(2582), + [anon_sym_not_DASHhas2] = ACTIONS(2582), + [anon_sym_starts_DASHwith2] = ACTIONS(2582), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2582), + [anon_sym_ends_DASHwith2] = ACTIONS(2582), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2582), + [anon_sym_EQ_EQ2] = ACTIONS(2582), + [anon_sym_BANG_EQ2] = ACTIONS(2582), + [anon_sym_LT2] = ACTIONS(2584), + [anon_sym_LT_EQ2] = ACTIONS(2582), + [anon_sym_GT_EQ2] = ACTIONS(2582), + [anon_sym_EQ_TILDE2] = ACTIONS(2582), + [anon_sym_BANG_TILDE2] = ACTIONS(2582), + [anon_sym_like2] = ACTIONS(2582), + [anon_sym_not_DASHlike2] = ACTIONS(2582), + [anon_sym_STAR_STAR2] = ACTIONS(2582), + [anon_sym_PLUS_PLUS2] = ACTIONS(2582), + [anon_sym_SLASH2] = ACTIONS(2584), + [anon_sym_mod2] = ACTIONS(2582), + [anon_sym_SLASH_SLASH2] = ACTIONS(2582), + [anon_sym_PLUS2] = ACTIONS(2584), + [anon_sym_bit_DASHshl2] = ACTIONS(2582), + [anon_sym_bit_DASHshr2] = ACTIONS(2582), + [anon_sym_bit_DASHand2] = ACTIONS(2582), + [anon_sym_bit_DASHxor2] = ACTIONS(2582), + [anon_sym_bit_DASHor2] = ACTIONS(2582), + [anon_sym_err_GT] = ACTIONS(2584), + [anon_sym_out_GT] = ACTIONS(2584), + [anon_sym_e_GT] = ACTIONS(2584), + [anon_sym_o_GT] = ACTIONS(2584), + [anon_sym_err_PLUSout_GT] = ACTIONS(2584), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2584), + [anon_sym_o_PLUSe_GT] = ACTIONS(2584), + [anon_sym_e_PLUSo_GT] = ACTIONS(2584), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [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), + [ts_builtin_sym_end] = ACTIONS(1716), + [anon_sym_in] = ACTIONS(1716), + [sym__newline] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_err_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_GT_PIPE] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), + [anon_sym_GT2] = ACTIONS(1629), + [anon_sym_DASH2] = ACTIONS(1716), + [anon_sym_STAR2] = ACTIONS(1629), + [anon_sym_and2] = ACTIONS(1716), + [anon_sym_xor2] = ACTIONS(1716), + [anon_sym_or2] = ACTIONS(1716), + [anon_sym_not_DASHin2] = ACTIONS(1716), + [anon_sym_has2] = ACTIONS(1716), + [anon_sym_not_DASHhas2] = ACTIONS(1716), + [anon_sym_starts_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), + [anon_sym_ends_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), + [anon_sym_EQ_EQ2] = ACTIONS(1716), + [anon_sym_BANG_EQ2] = ACTIONS(1716), + [anon_sym_LT2] = ACTIONS(1629), + [anon_sym_LT_EQ2] = ACTIONS(1716), + [anon_sym_GT_EQ2] = ACTIONS(1716), + [anon_sym_EQ_TILDE2] = ACTIONS(1716), + [anon_sym_BANG_TILDE2] = ACTIONS(1716), + [anon_sym_like2] = ACTIONS(1716), + [anon_sym_not_DASHlike2] = ACTIONS(1716), + [anon_sym_STAR_STAR2] = ACTIONS(1716), + [anon_sym_PLUS_PLUS2] = ACTIONS(1716), + [anon_sym_SLASH2] = ACTIONS(1629), + [anon_sym_mod2] = ACTIONS(1716), + [anon_sym_SLASH_SLASH2] = ACTIONS(1716), + [anon_sym_PLUS2] = ACTIONS(1629), + [anon_sym_bit_DASHshl2] = ACTIONS(1716), + [anon_sym_bit_DASHshr2] = ACTIONS(1716), + [anon_sym_bit_DASHand2] = ACTIONS(1716), + [anon_sym_bit_DASHxor2] = ACTIONS(1716), + [anon_sym_bit_DASHor2] = ACTIONS(1716), + [anon_sym_DOT_DOT2] = ACTIONS(1738), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), + [anon_sym_err_GT] = ACTIONS(1629), + [anon_sym_out_GT] = ACTIONS(1629), + [anon_sym_e_GT] = ACTIONS(1629), + [anon_sym_o_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT] = ACTIONS(1629), + [anon_sym_err_GT_GT] = ACTIONS(1716), + [anon_sym_out_GT_GT] = ACTIONS(1716), + [anon_sym_e_GT_GT] = ACTIONS(1716), + [anon_sym_o_GT_GT] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), [anon_sym_POUND] = ACTIONS(3), }, [STATE(932)] = { [sym_comment] = STATE(932), - [ts_builtin_sym_end] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [anon_sym_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_EQ_GT] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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_in] = ACTIONS(2586), + [sym__newline] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_PIPE] = ACTIONS(2586), + [anon_sym_err_GT_PIPE] = ACTIONS(2586), + [anon_sym_out_GT_PIPE] = ACTIONS(2586), + [anon_sym_e_GT_PIPE] = ACTIONS(2586), + [anon_sym_o_GT_PIPE] = ACTIONS(2586), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2586), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2586), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2586), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2586), + [anon_sym_RPAREN] = ACTIONS(2586), + [anon_sym_GT2] = ACTIONS(2588), + [anon_sym_DASH2] = ACTIONS(2586), + [anon_sym_LBRACE] = ACTIONS(2586), + [anon_sym_RBRACE] = ACTIONS(2586), + [anon_sym_EQ_GT] = ACTIONS(2586), + [anon_sym_STAR2] = ACTIONS(2588), + [anon_sym_and2] = ACTIONS(2586), + [anon_sym_xor2] = ACTIONS(2586), + [anon_sym_or2] = ACTIONS(2586), + [anon_sym_not_DASHin2] = ACTIONS(2586), + [anon_sym_has2] = ACTIONS(2586), + [anon_sym_not_DASHhas2] = ACTIONS(2586), + [anon_sym_starts_DASHwith2] = ACTIONS(2586), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2586), + [anon_sym_ends_DASHwith2] = ACTIONS(2586), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2586), + [anon_sym_EQ_EQ2] = ACTIONS(2586), + [anon_sym_BANG_EQ2] = ACTIONS(2586), + [anon_sym_LT2] = ACTIONS(2588), + [anon_sym_LT_EQ2] = ACTIONS(2586), + [anon_sym_GT_EQ2] = ACTIONS(2586), + [anon_sym_EQ_TILDE2] = ACTIONS(2586), + [anon_sym_BANG_TILDE2] = ACTIONS(2586), + [anon_sym_like2] = ACTIONS(2586), + [anon_sym_not_DASHlike2] = ACTIONS(2586), + [anon_sym_STAR_STAR2] = ACTIONS(2586), + [anon_sym_PLUS_PLUS2] = ACTIONS(2586), + [anon_sym_SLASH2] = ACTIONS(2588), + [anon_sym_mod2] = ACTIONS(2586), + [anon_sym_SLASH_SLASH2] = ACTIONS(2586), + [anon_sym_PLUS2] = ACTIONS(2588), + [anon_sym_bit_DASHshl2] = ACTIONS(2586), + [anon_sym_bit_DASHshr2] = ACTIONS(2586), + [anon_sym_bit_DASHand2] = ACTIONS(2586), + [anon_sym_bit_DASHxor2] = ACTIONS(2586), + [anon_sym_bit_DASHor2] = ACTIONS(2586), + [anon_sym_err_GT] = ACTIONS(2588), + [anon_sym_out_GT] = ACTIONS(2588), + [anon_sym_e_GT] = ACTIONS(2588), + [anon_sym_o_GT] = ACTIONS(2588), + [anon_sym_err_PLUSout_GT] = ACTIONS(2588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2588), + [anon_sym_o_PLUSe_GT] = ACTIONS(2588), + [anon_sym_e_PLUSo_GT] = ACTIONS(2588), + [anon_sym_err_GT_GT] = ACTIONS(2586), + [anon_sym_out_GT_GT] = ACTIONS(2586), + [anon_sym_e_GT_GT] = ACTIONS(2586), + [anon_sym_o_GT_GT] = ACTIONS(2586), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2586), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2586), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2586), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2586), [anon_sym_POUND] = ACTIONS(3), }, [STATE(934)] = { [sym_comment] = STATE(934), - [ts_builtin_sym_end] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(2587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2589), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), + [anon_sym_in] = ACTIONS(2590), + [sym__newline] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2590), + [anon_sym_err_GT_PIPE] = ACTIONS(2590), + [anon_sym_out_GT_PIPE] = ACTIONS(2590), + [anon_sym_e_GT_PIPE] = ACTIONS(2590), + [anon_sym_o_GT_PIPE] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2590), + [anon_sym_RPAREN] = ACTIONS(2590), + [anon_sym_GT2] = ACTIONS(2592), + [anon_sym_DASH2] = ACTIONS(2590), + [anon_sym_LBRACE] = ACTIONS(2590), + [anon_sym_RBRACE] = ACTIONS(2590), + [anon_sym_EQ_GT] = ACTIONS(2590), + [anon_sym_STAR2] = ACTIONS(2592), + [anon_sym_and2] = ACTIONS(2590), + [anon_sym_xor2] = ACTIONS(2590), + [anon_sym_or2] = ACTIONS(2590), + [anon_sym_not_DASHin2] = ACTIONS(2590), + [anon_sym_has2] = ACTIONS(2590), + [anon_sym_not_DASHhas2] = ACTIONS(2590), + [anon_sym_starts_DASHwith2] = ACTIONS(2590), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2590), + [anon_sym_ends_DASHwith2] = ACTIONS(2590), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2590), + [anon_sym_EQ_EQ2] = ACTIONS(2590), + [anon_sym_BANG_EQ2] = ACTIONS(2590), + [anon_sym_LT2] = ACTIONS(2592), + [anon_sym_LT_EQ2] = ACTIONS(2590), + [anon_sym_GT_EQ2] = ACTIONS(2590), + [anon_sym_EQ_TILDE2] = ACTIONS(2590), + [anon_sym_BANG_TILDE2] = ACTIONS(2590), + [anon_sym_like2] = ACTIONS(2590), + [anon_sym_not_DASHlike2] = ACTIONS(2590), + [anon_sym_STAR_STAR2] = ACTIONS(2590), + [anon_sym_PLUS_PLUS2] = ACTIONS(2590), + [anon_sym_SLASH2] = ACTIONS(2592), + [anon_sym_mod2] = ACTIONS(2590), + [anon_sym_SLASH_SLASH2] = ACTIONS(2590), + [anon_sym_PLUS2] = ACTIONS(2592), + [anon_sym_bit_DASHshl2] = ACTIONS(2590), + [anon_sym_bit_DASHshr2] = ACTIONS(2590), + [anon_sym_bit_DASHand2] = ACTIONS(2590), + [anon_sym_bit_DASHxor2] = ACTIONS(2590), + [anon_sym_bit_DASHor2] = ACTIONS(2590), + [anon_sym_err_GT] = ACTIONS(2592), + [anon_sym_out_GT] = ACTIONS(2592), + [anon_sym_e_GT] = ACTIONS(2592), + [anon_sym_o_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT] = ACTIONS(2592), + [anon_sym_err_GT_GT] = ACTIONS(2590), + [anon_sym_out_GT_GT] = ACTIONS(2590), + [anon_sym_e_GT_GT] = ACTIONS(2590), + [anon_sym_o_GT_GT] = ACTIONS(2590), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2590), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2590), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2590), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2590), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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_in] = ACTIONS(1716), + [sym__newline] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_err_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_GT_PIPE] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_GT2] = ACTIONS(1629), + [anon_sym_DASH2] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_STAR2] = ACTIONS(1629), + [anon_sym_and2] = ACTIONS(1716), + [anon_sym_xor2] = ACTIONS(1716), + [anon_sym_or2] = ACTIONS(1716), + [anon_sym_not_DASHin2] = ACTIONS(1716), + [anon_sym_has2] = ACTIONS(1716), + [anon_sym_not_DASHhas2] = ACTIONS(1716), + [anon_sym_starts_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), + [anon_sym_ends_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), + [anon_sym_EQ_EQ2] = ACTIONS(1716), + [anon_sym_BANG_EQ2] = ACTIONS(1716), + [anon_sym_LT2] = ACTIONS(1629), + [anon_sym_LT_EQ2] = ACTIONS(1716), + [anon_sym_GT_EQ2] = ACTIONS(1716), + [anon_sym_EQ_TILDE2] = ACTIONS(1716), + [anon_sym_BANG_TILDE2] = ACTIONS(1716), + [anon_sym_like2] = ACTIONS(1716), + [anon_sym_not_DASHlike2] = ACTIONS(1716), + [anon_sym_LPAREN2] = ACTIONS(2594), + [anon_sym_STAR_STAR2] = ACTIONS(1716), + [anon_sym_PLUS_PLUS2] = ACTIONS(1716), + [anon_sym_SLASH2] = ACTIONS(1629), + [anon_sym_mod2] = ACTIONS(1716), + [anon_sym_SLASH_SLASH2] = ACTIONS(1716), + [anon_sym_PLUS2] = ACTIONS(1629), + [anon_sym_bit_DASHshl2] = ACTIONS(1716), + [anon_sym_bit_DASHshr2] = ACTIONS(1716), + [anon_sym_bit_DASHand2] = ACTIONS(1716), + [anon_sym_bit_DASHxor2] = ACTIONS(1716), + [anon_sym_bit_DASHor2] = ACTIONS(1716), + [anon_sym_err_GT] = ACTIONS(1629), + [anon_sym_out_GT] = ACTIONS(1629), + [anon_sym_e_GT] = ACTIONS(1629), + [anon_sym_o_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT] = ACTIONS(1629), + [anon_sym_err_GT_GT] = ACTIONS(1716), + [anon_sym_out_GT_GT] = ACTIONS(1716), + [anon_sym_e_GT_GT] = ACTIONS(1716), + [anon_sym_o_GT_GT] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), + [sym__unquoted_pattern] = ACTIONS(2596), [anon_sym_POUND] = ACTIONS(3), }, [STATE(936)] = { [sym_comment] = STATE(936), - [anon_sym_in] = ACTIONS(2591), - [sym__newline] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2591), - [anon_sym_PIPE] = ACTIONS(2591), - [anon_sym_err_GT_PIPE] = ACTIONS(2591), - [anon_sym_out_GT_PIPE] = ACTIONS(2591), - [anon_sym_e_GT_PIPE] = ACTIONS(2591), - [anon_sym_o_GT_PIPE] = ACTIONS(2591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2591), - [anon_sym_RPAREN] = ACTIONS(2591), - [anon_sym_GT2] = ACTIONS(2593), - [anon_sym_DASH2] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_RBRACE] = ACTIONS(2591), - [anon_sym_EQ_GT] = ACTIONS(2591), - [anon_sym_STAR2] = ACTIONS(2593), - [anon_sym_and2] = ACTIONS(2591), - [anon_sym_xor2] = ACTIONS(2591), - [anon_sym_or2] = ACTIONS(2591), - [anon_sym_not_DASHin2] = ACTIONS(2591), - [anon_sym_has2] = ACTIONS(2591), - [anon_sym_not_DASHhas2] = ACTIONS(2591), - [anon_sym_starts_DASHwith2] = ACTIONS(2591), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2591), - [anon_sym_ends_DASHwith2] = ACTIONS(2591), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2591), - [anon_sym_EQ_EQ2] = ACTIONS(2591), - [anon_sym_BANG_EQ2] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2593), - [anon_sym_LT_EQ2] = ACTIONS(2591), - [anon_sym_GT_EQ2] = ACTIONS(2591), - [anon_sym_EQ_TILDE2] = ACTIONS(2591), - [anon_sym_BANG_TILDE2] = ACTIONS(2591), - [anon_sym_like2] = ACTIONS(2591), - [anon_sym_not_DASHlike2] = ACTIONS(2591), - [anon_sym_STAR_STAR2] = ACTIONS(2591), - [anon_sym_PLUS_PLUS2] = ACTIONS(2591), - [anon_sym_SLASH2] = ACTIONS(2593), - [anon_sym_mod2] = ACTIONS(2591), - [anon_sym_SLASH_SLASH2] = ACTIONS(2591), - [anon_sym_PLUS2] = ACTIONS(2593), - [anon_sym_bit_DASHshl2] = ACTIONS(2591), - [anon_sym_bit_DASHshr2] = ACTIONS(2591), - [anon_sym_bit_DASHand2] = ACTIONS(2591), - [anon_sym_bit_DASHxor2] = ACTIONS(2591), - [anon_sym_bit_DASHor2] = ACTIONS(2591), - [anon_sym_err_GT] = ACTIONS(2593), - [anon_sym_out_GT] = ACTIONS(2593), - [anon_sym_e_GT] = ACTIONS(2593), - [anon_sym_o_GT] = ACTIONS(2593), - [anon_sym_err_PLUSout_GT] = ACTIONS(2593), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2593), - [anon_sym_o_PLUSe_GT] = ACTIONS(2593), - [anon_sym_e_PLUSo_GT] = ACTIONS(2593), - [anon_sym_err_GT_GT] = ACTIONS(2591), - [anon_sym_out_GT_GT] = ACTIONS(2591), - [anon_sym_e_GT_GT] = ACTIONS(2591), - [anon_sym_o_GT_GT] = ACTIONS(2591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2591), + [anon_sym_in] = ACTIONS(2598), + [sym__newline] = ACTIONS(2598), + [anon_sym_SEMI] = ACTIONS(2598), + [anon_sym_PIPE] = ACTIONS(2598), + [anon_sym_err_GT_PIPE] = ACTIONS(2598), + [anon_sym_out_GT_PIPE] = ACTIONS(2598), + [anon_sym_e_GT_PIPE] = ACTIONS(2598), + [anon_sym_o_GT_PIPE] = ACTIONS(2598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2598), + [anon_sym_RPAREN] = ACTIONS(2598), + [anon_sym_GT2] = ACTIONS(2600), + [anon_sym_DASH2] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2598), + [anon_sym_RBRACE] = ACTIONS(2598), + [anon_sym_EQ_GT] = ACTIONS(2598), + [anon_sym_STAR2] = ACTIONS(2600), + [anon_sym_and2] = ACTIONS(2598), + [anon_sym_xor2] = ACTIONS(2598), + [anon_sym_or2] = ACTIONS(2598), + [anon_sym_not_DASHin2] = ACTIONS(2598), + [anon_sym_has2] = ACTIONS(2598), + [anon_sym_not_DASHhas2] = ACTIONS(2598), + [anon_sym_starts_DASHwith2] = ACTIONS(2598), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2598), + [anon_sym_ends_DASHwith2] = ACTIONS(2598), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2598), + [anon_sym_EQ_EQ2] = ACTIONS(2598), + [anon_sym_BANG_EQ2] = ACTIONS(2598), + [anon_sym_LT2] = ACTIONS(2600), + [anon_sym_LT_EQ2] = ACTIONS(2598), + [anon_sym_GT_EQ2] = ACTIONS(2598), + [anon_sym_EQ_TILDE2] = ACTIONS(2598), + [anon_sym_BANG_TILDE2] = ACTIONS(2598), + [anon_sym_like2] = ACTIONS(2598), + [anon_sym_not_DASHlike2] = ACTIONS(2598), + [anon_sym_STAR_STAR2] = ACTIONS(2598), + [anon_sym_PLUS_PLUS2] = ACTIONS(2598), + [anon_sym_SLASH2] = ACTIONS(2600), + [anon_sym_mod2] = ACTIONS(2598), + [anon_sym_SLASH_SLASH2] = ACTIONS(2598), + [anon_sym_PLUS2] = ACTIONS(2600), + [anon_sym_bit_DASHshl2] = ACTIONS(2598), + [anon_sym_bit_DASHshr2] = ACTIONS(2598), + [anon_sym_bit_DASHand2] = ACTIONS(2598), + [anon_sym_bit_DASHxor2] = ACTIONS(2598), + [anon_sym_bit_DASHor2] = ACTIONS(2598), + [anon_sym_err_GT] = ACTIONS(2600), + [anon_sym_out_GT] = ACTIONS(2600), + [anon_sym_e_GT] = ACTIONS(2600), + [anon_sym_o_GT] = ACTIONS(2600), + [anon_sym_err_PLUSout_GT] = ACTIONS(2600), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), + [anon_sym_o_PLUSe_GT] = ACTIONS(2600), + [anon_sym_e_PLUSo_GT] = ACTIONS(2600), + [anon_sym_err_GT_GT] = ACTIONS(2598), + [anon_sym_out_GT_GT] = ACTIONS(2598), + [anon_sym_e_GT_GT] = ACTIONS(2598), + [anon_sym_o_GT_GT] = ACTIONS(2598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2598), [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_in] = ACTIONS(2602), + [sym__newline] = ACTIONS(2602), + [anon_sym_SEMI] = ACTIONS(2602), + [anon_sym_PIPE] = ACTIONS(2602), + [anon_sym_err_GT_PIPE] = ACTIONS(2602), + [anon_sym_out_GT_PIPE] = ACTIONS(2602), + [anon_sym_e_GT_PIPE] = ACTIONS(2602), + [anon_sym_o_GT_PIPE] = ACTIONS(2602), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2602), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2602), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2602), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2602), + [anon_sym_RPAREN] = ACTIONS(2602), + [anon_sym_GT2] = ACTIONS(2604), + [anon_sym_DASH2] = ACTIONS(2602), + [anon_sym_LBRACE] = ACTIONS(2602), + [anon_sym_RBRACE] = ACTIONS(2602), + [anon_sym_EQ_GT] = ACTIONS(2602), + [anon_sym_STAR2] = ACTIONS(2604), + [anon_sym_and2] = ACTIONS(2602), + [anon_sym_xor2] = ACTIONS(2602), + [anon_sym_or2] = ACTIONS(2602), + [anon_sym_not_DASHin2] = ACTIONS(2602), + [anon_sym_has2] = ACTIONS(2602), + [anon_sym_not_DASHhas2] = ACTIONS(2602), + [anon_sym_starts_DASHwith2] = ACTIONS(2602), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2602), + [anon_sym_ends_DASHwith2] = ACTIONS(2602), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2602), + [anon_sym_EQ_EQ2] = ACTIONS(2602), + [anon_sym_BANG_EQ2] = ACTIONS(2602), + [anon_sym_LT2] = ACTIONS(2604), + [anon_sym_LT_EQ2] = ACTIONS(2602), + [anon_sym_GT_EQ2] = ACTIONS(2602), + [anon_sym_EQ_TILDE2] = ACTIONS(2602), + [anon_sym_BANG_TILDE2] = ACTIONS(2602), + [anon_sym_like2] = ACTIONS(2602), + [anon_sym_not_DASHlike2] = ACTIONS(2602), + [anon_sym_STAR_STAR2] = ACTIONS(2602), + [anon_sym_PLUS_PLUS2] = ACTIONS(2602), + [anon_sym_SLASH2] = ACTIONS(2604), + [anon_sym_mod2] = ACTIONS(2602), + [anon_sym_SLASH_SLASH2] = ACTIONS(2602), + [anon_sym_PLUS2] = ACTIONS(2604), + [anon_sym_bit_DASHshl2] = ACTIONS(2602), + [anon_sym_bit_DASHshr2] = ACTIONS(2602), + [anon_sym_bit_DASHand2] = ACTIONS(2602), + [anon_sym_bit_DASHxor2] = ACTIONS(2602), + [anon_sym_bit_DASHor2] = ACTIONS(2602), + [anon_sym_err_GT] = ACTIONS(2604), + [anon_sym_out_GT] = ACTIONS(2604), + [anon_sym_e_GT] = ACTIONS(2604), + [anon_sym_o_GT] = ACTIONS(2604), + [anon_sym_err_PLUSout_GT] = ACTIONS(2604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2604), + [anon_sym_o_PLUSe_GT] = ACTIONS(2604), + [anon_sym_e_PLUSo_GT] = ACTIONS(2604), + [anon_sym_err_GT_GT] = ACTIONS(2602), + [anon_sym_out_GT_GT] = ACTIONS(2602), + [anon_sym_e_GT_GT] = ACTIONS(2602), + [anon_sym_o_GT_GT] = ACTIONS(2602), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), [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_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_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(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(2606), + [sym__newline] = ACTIONS(2606), + [anon_sym_SEMI] = ACTIONS(2606), + [anon_sym_PIPE] = ACTIONS(2606), + [anon_sym_err_GT_PIPE] = ACTIONS(2606), + [anon_sym_out_GT_PIPE] = ACTIONS(2606), + [anon_sym_e_GT_PIPE] = ACTIONS(2606), + [anon_sym_o_GT_PIPE] = ACTIONS(2606), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2606), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2606), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2606), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2606), + [anon_sym_RPAREN] = ACTIONS(2606), + [anon_sym_GT2] = ACTIONS(2608), + [anon_sym_DASH2] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2606), + [anon_sym_RBRACE] = ACTIONS(2606), + [anon_sym_EQ_GT] = ACTIONS(2606), + [anon_sym_STAR2] = ACTIONS(2608), + [anon_sym_and2] = ACTIONS(2606), + [anon_sym_xor2] = ACTIONS(2606), + [anon_sym_or2] = ACTIONS(2606), + [anon_sym_not_DASHin2] = ACTIONS(2606), + [anon_sym_has2] = ACTIONS(2606), + [anon_sym_not_DASHhas2] = ACTIONS(2606), + [anon_sym_starts_DASHwith2] = ACTIONS(2606), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2606), + [anon_sym_ends_DASHwith2] = ACTIONS(2606), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2606), + [anon_sym_EQ_EQ2] = ACTIONS(2606), + [anon_sym_BANG_EQ2] = ACTIONS(2606), + [anon_sym_LT2] = ACTIONS(2608), + [anon_sym_LT_EQ2] = ACTIONS(2606), + [anon_sym_GT_EQ2] = ACTIONS(2606), + [anon_sym_EQ_TILDE2] = ACTIONS(2606), + [anon_sym_BANG_TILDE2] = ACTIONS(2606), + [anon_sym_like2] = ACTIONS(2606), + [anon_sym_not_DASHlike2] = ACTIONS(2606), + [anon_sym_STAR_STAR2] = ACTIONS(2606), + [anon_sym_PLUS_PLUS2] = ACTIONS(2606), + [anon_sym_SLASH2] = ACTIONS(2608), + [anon_sym_mod2] = ACTIONS(2606), + [anon_sym_SLASH_SLASH2] = ACTIONS(2606), + [anon_sym_PLUS2] = ACTIONS(2608), + [anon_sym_bit_DASHshl2] = ACTIONS(2606), + [anon_sym_bit_DASHshr2] = ACTIONS(2606), + [anon_sym_bit_DASHand2] = ACTIONS(2606), + [anon_sym_bit_DASHxor2] = ACTIONS(2606), + [anon_sym_bit_DASHor2] = ACTIONS(2606), + [anon_sym_err_GT] = ACTIONS(2608), + [anon_sym_out_GT] = ACTIONS(2608), + [anon_sym_e_GT] = ACTIONS(2608), + [anon_sym_o_GT] = ACTIONS(2608), + [anon_sym_err_PLUSout_GT] = ACTIONS(2608), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2608), + [anon_sym_o_PLUSe_GT] = ACTIONS(2608), + [anon_sym_e_PLUSo_GT] = ACTIONS(2608), + [anon_sym_err_GT_GT] = ACTIONS(2606), + [anon_sym_out_GT_GT] = ACTIONS(2606), + [anon_sym_e_GT_GT] = ACTIONS(2606), + [anon_sym_o_GT_GT] = ACTIONS(2606), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2606), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2606), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2606), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2606), [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(2610), + [sym__newline] = ACTIONS(2610), + [anon_sym_SEMI] = ACTIONS(2610), + [anon_sym_PIPE] = ACTIONS(2610), + [anon_sym_err_GT_PIPE] = ACTIONS(2610), + [anon_sym_out_GT_PIPE] = ACTIONS(2610), + [anon_sym_e_GT_PIPE] = ACTIONS(2610), + [anon_sym_o_GT_PIPE] = ACTIONS(2610), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2610), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2610), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2610), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2610), + [anon_sym_RPAREN] = ACTIONS(2610), + [anon_sym_GT2] = ACTIONS(2612), + [anon_sym_DASH2] = ACTIONS(2610), + [anon_sym_LBRACE] = ACTIONS(2610), + [anon_sym_RBRACE] = ACTIONS(2610), + [anon_sym_EQ_GT] = ACTIONS(2610), + [anon_sym_STAR2] = ACTIONS(2612), + [anon_sym_and2] = ACTIONS(2610), + [anon_sym_xor2] = ACTIONS(2610), + [anon_sym_or2] = ACTIONS(2610), + [anon_sym_not_DASHin2] = ACTIONS(2610), + [anon_sym_has2] = ACTIONS(2610), + [anon_sym_not_DASHhas2] = ACTIONS(2610), + [anon_sym_starts_DASHwith2] = ACTIONS(2610), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2610), + [anon_sym_ends_DASHwith2] = ACTIONS(2610), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2610), + [anon_sym_EQ_EQ2] = ACTIONS(2610), + [anon_sym_BANG_EQ2] = ACTIONS(2610), + [anon_sym_LT2] = ACTIONS(2612), + [anon_sym_LT_EQ2] = ACTIONS(2610), + [anon_sym_GT_EQ2] = ACTIONS(2610), + [anon_sym_EQ_TILDE2] = ACTIONS(2610), + [anon_sym_BANG_TILDE2] = ACTIONS(2610), + [anon_sym_like2] = ACTIONS(2610), + [anon_sym_not_DASHlike2] = ACTIONS(2610), + [anon_sym_STAR_STAR2] = ACTIONS(2610), + [anon_sym_PLUS_PLUS2] = ACTIONS(2610), + [anon_sym_SLASH2] = ACTIONS(2612), + [anon_sym_mod2] = ACTIONS(2610), + [anon_sym_SLASH_SLASH2] = ACTIONS(2610), + [anon_sym_PLUS2] = ACTIONS(2612), + [anon_sym_bit_DASHshl2] = ACTIONS(2610), + [anon_sym_bit_DASHshr2] = ACTIONS(2610), + [anon_sym_bit_DASHand2] = ACTIONS(2610), + [anon_sym_bit_DASHxor2] = ACTIONS(2610), + [anon_sym_bit_DASHor2] = ACTIONS(2610), + [anon_sym_err_GT] = ACTIONS(2612), + [anon_sym_out_GT] = ACTIONS(2612), + [anon_sym_e_GT] = ACTIONS(2612), + [anon_sym_o_GT] = ACTIONS(2612), + [anon_sym_err_PLUSout_GT] = ACTIONS(2612), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2612), + [anon_sym_o_PLUSe_GT] = ACTIONS(2612), + [anon_sym_e_PLUSo_GT] = ACTIONS(2612), + [anon_sym_err_GT_GT] = ACTIONS(2610), + [anon_sym_out_GT_GT] = ACTIONS(2610), + [anon_sym_e_GT_GT] = ACTIONS(2610), + [anon_sym_o_GT_GT] = ACTIONS(2610), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2610), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2610), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2610), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2610), [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(1754), + [anon_sym_in] = ACTIONS(1754), + [sym__newline] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_err_GT_PIPE] = ACTIONS(1754), + [anon_sym_out_GT_PIPE] = ACTIONS(1754), + [anon_sym_e_GT_PIPE] = ACTIONS(1754), + [anon_sym_o_GT_PIPE] = ACTIONS(1754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), + [anon_sym_GT2] = ACTIONS(1756), + [anon_sym_DASH2] = ACTIONS(1754), + [anon_sym_STAR2] = ACTIONS(1756), + [anon_sym_and2] = ACTIONS(1754), + [anon_sym_xor2] = ACTIONS(1754), + [anon_sym_or2] = ACTIONS(1754), + [anon_sym_not_DASHin2] = ACTIONS(1754), + [anon_sym_has2] = ACTIONS(1754), + [anon_sym_not_DASHhas2] = ACTIONS(1754), + [anon_sym_starts_DASHwith2] = ACTIONS(1754), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1754), + [anon_sym_ends_DASHwith2] = ACTIONS(1754), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1754), + [anon_sym_EQ_EQ2] = ACTIONS(1754), + [anon_sym_BANG_EQ2] = ACTIONS(1754), + [anon_sym_LT2] = ACTIONS(1756), + [anon_sym_LT_EQ2] = ACTIONS(1754), + [anon_sym_GT_EQ2] = ACTIONS(1754), + [anon_sym_EQ_TILDE2] = ACTIONS(1754), + [anon_sym_BANG_TILDE2] = ACTIONS(1754), + [anon_sym_like2] = ACTIONS(1754), + [anon_sym_not_DASHlike2] = ACTIONS(1754), + [anon_sym_LPAREN2] = ACTIONS(1754), + [anon_sym_STAR_STAR2] = ACTIONS(1754), + [anon_sym_PLUS_PLUS2] = ACTIONS(1754), + [anon_sym_SLASH2] = ACTIONS(1756), + [anon_sym_mod2] = ACTIONS(1754), + [anon_sym_SLASH_SLASH2] = ACTIONS(1754), + [anon_sym_PLUS2] = ACTIONS(1756), + [anon_sym_bit_DASHshl2] = ACTIONS(1754), + [anon_sym_bit_DASHshr2] = ACTIONS(1754), + [anon_sym_bit_DASHand2] = ACTIONS(1754), + [anon_sym_bit_DASHxor2] = ACTIONS(1754), + [anon_sym_bit_DASHor2] = ACTIONS(1754), + [aux_sym__immediate_decimal_token5] = ACTIONS(2500), + [anon_sym_err_GT] = ACTIONS(1756), + [anon_sym_out_GT] = ACTIONS(1756), + [anon_sym_e_GT] = ACTIONS(1756), + [anon_sym_o_GT] = ACTIONS(1756), + [anon_sym_err_PLUSout_GT] = ACTIONS(1756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), + [anon_sym_o_PLUSe_GT] = ACTIONS(1756), + [anon_sym_e_PLUSo_GT] = ACTIONS(1756), + [anon_sym_err_GT_GT] = ACTIONS(1754), + [anon_sym_out_GT_GT] = ACTIONS(1754), + [anon_sym_e_GT_GT] = ACTIONS(1754), + [anon_sym_o_GT_GT] = ACTIONS(1754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), + [sym__unquoted_pattern] = ACTIONS(1756), [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(2614), + [sym__newline] = ACTIONS(2614), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_err_GT_PIPE] = ACTIONS(2614), + [anon_sym_out_GT_PIPE] = ACTIONS(2614), + [anon_sym_e_GT_PIPE] = ACTIONS(2614), + [anon_sym_o_GT_PIPE] = ACTIONS(2614), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2614), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2614), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2614), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2614), + [anon_sym_RPAREN] = ACTIONS(2614), + [anon_sym_GT2] = ACTIONS(2616), + [anon_sym_DASH2] = ACTIONS(2614), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_RBRACE] = ACTIONS(2614), + [anon_sym_EQ_GT] = ACTIONS(2614), + [anon_sym_STAR2] = ACTIONS(2616), + [anon_sym_and2] = ACTIONS(2614), + [anon_sym_xor2] = ACTIONS(2614), + [anon_sym_or2] = ACTIONS(2614), + [anon_sym_not_DASHin2] = ACTIONS(2614), + [anon_sym_has2] = ACTIONS(2614), + [anon_sym_not_DASHhas2] = ACTIONS(2614), + [anon_sym_starts_DASHwith2] = ACTIONS(2614), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2614), + [anon_sym_ends_DASHwith2] = ACTIONS(2614), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2614), + [anon_sym_EQ_EQ2] = ACTIONS(2614), + [anon_sym_BANG_EQ2] = ACTIONS(2614), + [anon_sym_LT2] = ACTIONS(2616), + [anon_sym_LT_EQ2] = ACTIONS(2614), + [anon_sym_GT_EQ2] = ACTIONS(2614), + [anon_sym_EQ_TILDE2] = ACTIONS(2614), + [anon_sym_BANG_TILDE2] = ACTIONS(2614), + [anon_sym_like2] = ACTIONS(2614), + [anon_sym_not_DASHlike2] = ACTIONS(2614), + [anon_sym_STAR_STAR2] = ACTIONS(2614), + [anon_sym_PLUS_PLUS2] = ACTIONS(2614), + [anon_sym_SLASH2] = ACTIONS(2616), + [anon_sym_mod2] = ACTIONS(2614), + [anon_sym_SLASH_SLASH2] = ACTIONS(2614), + [anon_sym_PLUS2] = ACTIONS(2616), + [anon_sym_bit_DASHshl2] = ACTIONS(2614), + [anon_sym_bit_DASHshr2] = ACTIONS(2614), + [anon_sym_bit_DASHand2] = ACTIONS(2614), + [anon_sym_bit_DASHxor2] = ACTIONS(2614), + [anon_sym_bit_DASHor2] = ACTIONS(2614), + [anon_sym_err_GT] = ACTIONS(2616), + [anon_sym_out_GT] = ACTIONS(2616), + [anon_sym_e_GT] = ACTIONS(2616), + [anon_sym_o_GT] = ACTIONS(2616), + [anon_sym_err_PLUSout_GT] = ACTIONS(2616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2616), + [anon_sym_o_PLUSe_GT] = ACTIONS(2616), + [anon_sym_e_PLUSo_GT] = ACTIONS(2616), + [anon_sym_err_GT_GT] = ACTIONS(2614), + [anon_sym_out_GT_GT] = ACTIONS(2614), + [anon_sym_e_GT_GT] = ACTIONS(2614), + [anon_sym_o_GT_GT] = ACTIONS(2614), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2614), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2614), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2614), + [anon_sym_e_PLUSo_GT_GT] = 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), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(944)] = { - [sym_comment] = STATE(944), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_EQ_GT] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(945)] = { - [sym_comment] = STATE(945), - [anon_sym_in] = ACTIONS(2599), - [sym__newline] = ACTIONS(2599), - [anon_sym_SEMI] = ACTIONS(2599), - [anon_sym_PIPE] = ACTIONS(2599), - [anon_sym_err_GT_PIPE] = ACTIONS(2599), - [anon_sym_out_GT_PIPE] = ACTIONS(2599), - [anon_sym_e_GT_PIPE] = ACTIONS(2599), - [anon_sym_o_GT_PIPE] = ACTIONS(2599), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2599), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2599), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2599), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2599), - [anon_sym_RPAREN] = ACTIONS(2599), - [anon_sym_GT2] = ACTIONS(2601), - [anon_sym_DASH2] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2599), - [anon_sym_RBRACE] = ACTIONS(2599), - [anon_sym_EQ_GT] = ACTIONS(2599), - [anon_sym_STAR2] = ACTIONS(2601), - [anon_sym_and2] = ACTIONS(2599), - [anon_sym_xor2] = ACTIONS(2599), - [anon_sym_or2] = ACTIONS(2599), - [anon_sym_not_DASHin2] = ACTIONS(2599), - [anon_sym_has2] = ACTIONS(2599), - [anon_sym_not_DASHhas2] = ACTIONS(2599), - [anon_sym_starts_DASHwith2] = ACTIONS(2599), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2599), - [anon_sym_ends_DASHwith2] = ACTIONS(2599), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2599), - [anon_sym_EQ_EQ2] = ACTIONS(2599), - [anon_sym_BANG_EQ2] = ACTIONS(2599), - [anon_sym_LT2] = ACTIONS(2601), - [anon_sym_LT_EQ2] = ACTIONS(2599), - [anon_sym_GT_EQ2] = ACTIONS(2599), - [anon_sym_EQ_TILDE2] = ACTIONS(2599), - [anon_sym_BANG_TILDE2] = ACTIONS(2599), - [anon_sym_like2] = ACTIONS(2599), - [anon_sym_not_DASHlike2] = ACTIONS(2599), - [anon_sym_STAR_STAR2] = ACTIONS(2599), - [anon_sym_PLUS_PLUS2] = ACTIONS(2599), - [anon_sym_SLASH2] = ACTIONS(2601), - [anon_sym_mod2] = ACTIONS(2599), - [anon_sym_SLASH_SLASH2] = ACTIONS(2599), - [anon_sym_PLUS2] = ACTIONS(2601), - [anon_sym_bit_DASHshl2] = ACTIONS(2599), - [anon_sym_bit_DASHshr2] = ACTIONS(2599), - [anon_sym_bit_DASHand2] = ACTIONS(2599), - [anon_sym_bit_DASHxor2] = ACTIONS(2599), - [anon_sym_bit_DASHor2] = ACTIONS(2599), - [anon_sym_err_GT] = ACTIONS(2601), - [anon_sym_out_GT] = ACTIONS(2601), - [anon_sym_e_GT] = ACTIONS(2601), - [anon_sym_o_GT] = ACTIONS(2601), - [anon_sym_err_PLUSout_GT] = ACTIONS(2601), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2601), - [anon_sym_o_PLUSe_GT] = ACTIONS(2601), - [anon_sym_e_PLUSo_GT] = ACTIONS(2601), - [anon_sym_err_GT_GT] = ACTIONS(2599), - [anon_sym_out_GT_GT] = ACTIONS(2599), - [anon_sym_e_GT_GT] = ACTIONS(2599), - [anon_sym_o_GT_GT] = ACTIONS(2599), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2599), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2599), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2599), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2599), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(946)] = { - [sym_comment] = STATE(946), - [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_POUND] = ACTIONS(3), - }, - [STATE(947)] = { - [sym_comment] = STATE(947), - [anon_sym_in] = ACTIONS(2603), - [sym__newline] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2603), - [anon_sym_PIPE] = ACTIONS(2603), - [anon_sym_err_GT_PIPE] = ACTIONS(2603), - [anon_sym_out_GT_PIPE] = ACTIONS(2603), - [anon_sym_e_GT_PIPE] = ACTIONS(2603), - [anon_sym_o_GT_PIPE] = ACTIONS(2603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2603), - [anon_sym_RPAREN] = ACTIONS(2603), - [anon_sym_GT2] = ACTIONS(2605), - [anon_sym_DASH2] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_RBRACE] = ACTIONS(2603), - [anon_sym_EQ_GT] = ACTIONS(2603), - [anon_sym_STAR2] = ACTIONS(2605), - [anon_sym_and2] = ACTIONS(2603), - [anon_sym_xor2] = ACTIONS(2603), - [anon_sym_or2] = ACTIONS(2603), - [anon_sym_not_DASHin2] = ACTIONS(2603), - [anon_sym_has2] = ACTIONS(2603), - [anon_sym_not_DASHhas2] = ACTIONS(2603), - [anon_sym_starts_DASHwith2] = ACTIONS(2603), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2603), - [anon_sym_ends_DASHwith2] = ACTIONS(2603), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2603), - [anon_sym_EQ_EQ2] = ACTIONS(2603), - [anon_sym_BANG_EQ2] = ACTIONS(2603), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LT_EQ2] = ACTIONS(2603), - [anon_sym_GT_EQ2] = ACTIONS(2603), - [anon_sym_EQ_TILDE2] = ACTIONS(2603), - [anon_sym_BANG_TILDE2] = ACTIONS(2603), - [anon_sym_like2] = ACTIONS(2603), - [anon_sym_not_DASHlike2] = ACTIONS(2603), - [anon_sym_STAR_STAR2] = ACTIONS(2603), - [anon_sym_PLUS_PLUS2] = ACTIONS(2603), - [anon_sym_SLASH2] = ACTIONS(2605), - [anon_sym_mod2] = ACTIONS(2603), - [anon_sym_SLASH_SLASH2] = ACTIONS(2603), - [anon_sym_PLUS2] = ACTIONS(2605), - [anon_sym_bit_DASHshl2] = ACTIONS(2603), - [anon_sym_bit_DASHshr2] = ACTIONS(2603), - [anon_sym_bit_DASHand2] = ACTIONS(2603), - [anon_sym_bit_DASHxor2] = ACTIONS(2603), - [anon_sym_bit_DASHor2] = ACTIONS(2603), - [anon_sym_err_GT] = ACTIONS(2605), - [anon_sym_out_GT] = ACTIONS(2605), - [anon_sym_e_GT] = ACTIONS(2605), - [anon_sym_o_GT] = ACTIONS(2605), - [anon_sym_err_PLUSout_GT] = ACTIONS(2605), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2605), - [anon_sym_o_PLUSe_GT] = ACTIONS(2605), - [anon_sym_e_PLUSo_GT] = ACTIONS(2605), - [anon_sym_err_GT_GT] = ACTIONS(2603), - [anon_sym_out_GT_GT] = ACTIONS(2603), - [anon_sym_e_GT_GT] = ACTIONS(2603), - [anon_sym_o_GT_GT] = ACTIONS(2603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2603), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(948)] = { - [sym_comment] = STATE(948), - [anon_sym_in] = ACTIONS(2575), - [sym__newline] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2575), - [anon_sym_err_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_GT_PIPE] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2575), - [anon_sym_RPAREN] = ACTIONS(2575), - [anon_sym_GT2] = ACTIONS(2577), - [anon_sym_DASH2] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_STAR2] = ACTIONS(2577), - [anon_sym_and2] = ACTIONS(2575), - [anon_sym_xor2] = ACTIONS(2575), - [anon_sym_or2] = ACTIONS(2575), - [anon_sym_not_DASHin2] = ACTIONS(2575), - [anon_sym_has2] = ACTIONS(2575), - [anon_sym_not_DASHhas2] = ACTIONS(2575), - [anon_sym_starts_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2575), - [anon_sym_ends_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2575), - [anon_sym_EQ_EQ2] = ACTIONS(2575), - [anon_sym_BANG_EQ2] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2577), - [anon_sym_LT_EQ2] = ACTIONS(2575), - [anon_sym_GT_EQ2] = ACTIONS(2575), - [anon_sym_EQ_TILDE2] = ACTIONS(2575), - [anon_sym_BANG_TILDE2] = ACTIONS(2575), - [anon_sym_like2] = ACTIONS(2575), - [anon_sym_not_DASHlike2] = ACTIONS(2575), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(2575), - [anon_sym_PLUS_PLUS2] = ACTIONS(2575), - [anon_sym_SLASH2] = ACTIONS(2577), - [anon_sym_mod2] = ACTIONS(2575), - [anon_sym_SLASH_SLASH2] = ACTIONS(2575), - [anon_sym_PLUS2] = ACTIONS(2577), - [anon_sym_bit_DASHshl2] = ACTIONS(2575), - [anon_sym_bit_DASHshr2] = ACTIONS(2575), - [anon_sym_bit_DASHand2] = ACTIONS(2575), - [anon_sym_bit_DASHxor2] = ACTIONS(2575), - [anon_sym_bit_DASHor2] = ACTIONS(2575), - [anon_sym_err_GT] = ACTIONS(2577), - [anon_sym_out_GT] = ACTIONS(2577), - [anon_sym_e_GT] = ACTIONS(2577), - [anon_sym_o_GT] = ACTIONS(2577), - [anon_sym_err_PLUSout_GT] = ACTIONS(2577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2577), - [anon_sym_o_PLUSe_GT] = ACTIONS(2577), - [anon_sym_e_PLUSo_GT] = ACTIONS(2577), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [sym__unquoted_pattern] = ACTIONS(1984), - [anon_sym_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_POUND] = ACTIONS(3), - }, - [STATE(950)] = { - [sym_comment] = STATE(950), [ts_builtin_sym_end] = ACTIONS(2152), [anon_sym_in] = ACTIONS(2152), [sym__newline] = ACTIONS(2152), @@ -118052,9 +117883,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DOT_DOT2] = ACTIONS(2618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2620), [anon_sym_err_GT] = ACTIONS(2154), [anon_sym_out_GT] = ACTIONS(2154), [anon_sym_e_GT] = ACTIONS(2154), @@ -118073,826 +117904,481 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), [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_POUND] = ACTIONS(3), - }, - [STATE(952)] = { - [sym_comment] = STATE(952), - [ts_builtin_sym_end] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_err_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_GT_PIPE] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(2138), - [anon_sym_out_GT] = ACTIONS(2138), - [anon_sym_e_GT] = ACTIONS(2138), - [anon_sym_o_GT] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT] = ACTIONS(2138), - [anon_sym_err_GT_GT] = ACTIONS(2134), - [anon_sym_out_GT_GT] = ACTIONS(2134), - [anon_sym_e_GT_GT] = ACTIONS(2134), - [anon_sym_o_GT_GT] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(953)] = { - [sym_comment] = STATE(953), - [anon_sym_in] = ACTIONS(2619), - [sym__newline] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2619), - [anon_sym_PIPE] = ACTIONS(2619), - [anon_sym_err_GT_PIPE] = ACTIONS(2619), - [anon_sym_out_GT_PIPE] = ACTIONS(2619), - [anon_sym_e_GT_PIPE] = ACTIONS(2619), - [anon_sym_o_GT_PIPE] = ACTIONS(2619), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2619), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2619), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2619), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2619), - [anon_sym_RPAREN] = ACTIONS(2619), - [anon_sym_GT2] = ACTIONS(2621), - [anon_sym_DASH2] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_RBRACE] = ACTIONS(2619), - [anon_sym_EQ_GT] = ACTIONS(2619), - [anon_sym_STAR2] = ACTIONS(2621), - [anon_sym_and2] = ACTIONS(2619), - [anon_sym_xor2] = ACTIONS(2619), - [anon_sym_or2] = ACTIONS(2619), - [anon_sym_not_DASHin2] = ACTIONS(2619), - [anon_sym_has2] = ACTIONS(2619), - [anon_sym_not_DASHhas2] = ACTIONS(2619), - [anon_sym_starts_DASHwith2] = ACTIONS(2619), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2619), - [anon_sym_ends_DASHwith2] = ACTIONS(2619), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2619), - [anon_sym_EQ_EQ2] = ACTIONS(2619), - [anon_sym_BANG_EQ2] = ACTIONS(2619), - [anon_sym_LT2] = ACTIONS(2621), - [anon_sym_LT_EQ2] = ACTIONS(2619), - [anon_sym_GT_EQ2] = ACTIONS(2619), - [anon_sym_EQ_TILDE2] = ACTIONS(2619), - [anon_sym_BANG_TILDE2] = ACTIONS(2619), - [anon_sym_like2] = ACTIONS(2619), - [anon_sym_not_DASHlike2] = ACTIONS(2619), - [anon_sym_STAR_STAR2] = ACTIONS(2619), - [anon_sym_PLUS_PLUS2] = ACTIONS(2619), - [anon_sym_SLASH2] = ACTIONS(2621), - [anon_sym_mod2] = ACTIONS(2619), - [anon_sym_SLASH_SLASH2] = ACTIONS(2619), - [anon_sym_PLUS2] = ACTIONS(2621), - [anon_sym_bit_DASHshl2] = ACTIONS(2619), - [anon_sym_bit_DASHshr2] = ACTIONS(2619), - [anon_sym_bit_DASHand2] = ACTIONS(2619), - [anon_sym_bit_DASHxor2] = ACTIONS(2619), - [anon_sym_bit_DASHor2] = ACTIONS(2619), - [anon_sym_err_GT] = ACTIONS(2621), - [anon_sym_out_GT] = ACTIONS(2621), - [anon_sym_e_GT] = ACTIONS(2621), - [anon_sym_o_GT] = ACTIONS(2621), - [anon_sym_err_PLUSout_GT] = ACTIONS(2621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2621), - [anon_sym_o_PLUSe_GT] = ACTIONS(2621), - [anon_sym_e_PLUSo_GT] = ACTIONS(2621), - [anon_sym_err_GT_GT] = ACTIONS(2619), - [anon_sym_out_GT_GT] = ACTIONS(2619), - [anon_sym_e_GT_GT] = ACTIONS(2619), - [anon_sym_o_GT_GT] = ACTIONS(2619), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2619), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2619), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2619), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2619), - [anon_sym_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_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_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), + [STATE(944)] = { + [sym_comment] = STATE(944), + [anon_sym_in] = ACTIONS(1812), + [sym__newline] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_err_GT_PIPE] = ACTIONS(1812), + [anon_sym_out_GT_PIPE] = ACTIONS(1812), + [anon_sym_e_GT_PIPE] = ACTIONS(1812), + [anon_sym_o_GT_PIPE] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1812), + [anon_sym_RPAREN] = ACTIONS(1812), + [anon_sym_GT2] = ACTIONS(1814), + [anon_sym_DASH2] = ACTIONS(1812), + [anon_sym_RBRACE] = ACTIONS(1812), + [anon_sym_STAR2] = ACTIONS(1814), + [anon_sym_and2] = ACTIONS(1812), + [anon_sym_xor2] = ACTIONS(1812), + [anon_sym_or2] = ACTIONS(1812), + [anon_sym_not_DASHin2] = ACTIONS(1812), + [anon_sym_has2] = ACTIONS(1812), + [anon_sym_not_DASHhas2] = ACTIONS(1812), + [anon_sym_starts_DASHwith2] = ACTIONS(1812), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1812), + [anon_sym_ends_DASHwith2] = ACTIONS(1812), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1812), + [anon_sym_EQ_EQ2] = ACTIONS(1812), + [anon_sym_BANG_EQ2] = ACTIONS(1812), + [anon_sym_LT2] = ACTIONS(1814), + [anon_sym_LT_EQ2] = ACTIONS(1812), + [anon_sym_GT_EQ2] = ACTIONS(1812), + [anon_sym_EQ_TILDE2] = ACTIONS(1812), + [anon_sym_BANG_TILDE2] = ACTIONS(1812), + [anon_sym_like2] = ACTIONS(1812), + [anon_sym_not_DASHlike2] = ACTIONS(1812), + [anon_sym_LPAREN2] = ACTIONS(1812), + [anon_sym_STAR_STAR2] = ACTIONS(1812), + [anon_sym_PLUS_PLUS2] = ACTIONS(1812), + [anon_sym_SLASH2] = ACTIONS(1814), + [anon_sym_mod2] = ACTIONS(1812), + [anon_sym_SLASH_SLASH2] = ACTIONS(1812), + [anon_sym_PLUS2] = ACTIONS(1814), + [anon_sym_bit_DASHshl2] = ACTIONS(1812), + [anon_sym_bit_DASHshr2] = ACTIONS(1812), + [anon_sym_bit_DASHand2] = ACTIONS(1812), + [anon_sym_bit_DASHxor2] = ACTIONS(1812), + [anon_sym_bit_DASHor2] = ACTIONS(1812), + [anon_sym_err_GT] = ACTIONS(1814), + [anon_sym_out_GT] = ACTIONS(1814), + [anon_sym_e_GT] = ACTIONS(1814), + [anon_sym_o_GT] = ACTIONS(1814), + [anon_sym_err_PLUSout_GT] = ACTIONS(1814), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1814), + [anon_sym_o_PLUSe_GT] = ACTIONS(1814), + [anon_sym_e_PLUSo_GT] = ACTIONS(1814), + [anon_sym_err_GT_GT] = ACTIONS(1812), + [anon_sym_out_GT_GT] = ACTIONS(1812), + [anon_sym_e_GT_GT] = ACTIONS(1812), + [anon_sym_o_GT_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1812), + [sym__unquoted_pattern] = ACTIONS(1814), [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), + [STATE(945)] = { + [sym_comment] = STATE(945), + [ts_builtin_sym_end] = ACTIONS(2011), + [anon_sym_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_DOT_DOT2] = ACTIONS(2622), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2624), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2624), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(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), + [STATE(946)] = { + [sym_comment] = STATE(946), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(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), + [STATE(947)] = { + [sym_comment] = STATE(947), + [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(2104), + [anon_sym_DASH2] = ACTIONS(2100), + [anon_sym_STAR2] = ACTIONS(2104), + [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(2104), + [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(2104), + [anon_sym_mod2] = ACTIONS(2100), + [anon_sym_SLASH_SLASH2] = ACTIONS(2100), + [anon_sym_PLUS2] = ACTIONS(2104), + [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(1738), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), + [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(2100), + [anon_sym_out_GT_GT] = ACTIONS(2100), + [anon_sym_e_GT_GT] = ACTIONS(2100), + [anon_sym_o_GT_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(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), + [STATE(948)] = { + [sym_comment] = STATE(948), + [anon_sym_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [sym__unquoted_pattern] = ACTIONS(1615), [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), + [STATE(949)] = { + [sym_comment] = STATE(949), + [ts_builtin_sym_end] = ACTIONS(2108), + [anon_sym_in] = ACTIONS(2108), + [sym__newline] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2108), + [anon_sym_PIPE] = ACTIONS(2108), + [anon_sym_err_GT_PIPE] = ACTIONS(2108), + [anon_sym_out_GT_PIPE] = ACTIONS(2108), + [anon_sym_e_GT_PIPE] = ACTIONS(2108), + [anon_sym_o_GT_PIPE] = ACTIONS(2108), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2108), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2108), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2108), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2108), + [anon_sym_GT2] = ACTIONS(2110), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_STAR2] = ACTIONS(2110), + [anon_sym_and2] = ACTIONS(2108), + [anon_sym_xor2] = ACTIONS(2108), + [anon_sym_or2] = ACTIONS(2108), + [anon_sym_not_DASHin2] = ACTIONS(2108), + [anon_sym_has2] = ACTIONS(2108), + [anon_sym_not_DASHhas2] = ACTIONS(2108), + [anon_sym_starts_DASHwith2] = ACTIONS(2108), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2108), + [anon_sym_ends_DASHwith2] = ACTIONS(2108), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2108), + [anon_sym_EQ_EQ2] = ACTIONS(2108), + [anon_sym_BANG_EQ2] = ACTIONS(2108), + [anon_sym_LT2] = ACTIONS(2110), + [anon_sym_LT_EQ2] = ACTIONS(2108), + [anon_sym_GT_EQ2] = ACTIONS(2108), + [anon_sym_EQ_TILDE2] = ACTIONS(2108), + [anon_sym_BANG_TILDE2] = ACTIONS(2108), + [anon_sym_like2] = ACTIONS(2108), + [anon_sym_not_DASHlike2] = ACTIONS(2108), + [anon_sym_STAR_STAR2] = ACTIONS(2108), + [anon_sym_PLUS_PLUS2] = ACTIONS(2108), + [anon_sym_SLASH2] = ACTIONS(2110), + [anon_sym_mod2] = ACTIONS(2108), + [anon_sym_SLASH_SLASH2] = ACTIONS(2108), + [anon_sym_PLUS2] = ACTIONS(2110), + [anon_sym_bit_DASHshl2] = ACTIONS(2108), + [anon_sym_bit_DASHshr2] = ACTIONS(2108), + [anon_sym_bit_DASHand2] = ACTIONS(2108), + [anon_sym_bit_DASHxor2] = ACTIONS(2108), + [anon_sym_bit_DASHor2] = ACTIONS(2108), + [anon_sym_DOT_DOT2] = ACTIONS(2626), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2628), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2628), + [anon_sym_err_GT] = ACTIONS(2110), + [anon_sym_out_GT] = ACTIONS(2110), + [anon_sym_e_GT] = ACTIONS(2110), + [anon_sym_o_GT] = ACTIONS(2110), + [anon_sym_err_PLUSout_GT] = ACTIONS(2110), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2110), + [anon_sym_o_PLUSe_GT] = ACTIONS(2110), + [anon_sym_e_PLUSo_GT] = ACTIONS(2110), + [anon_sym_err_GT_GT] = ACTIONS(2108), + [anon_sym_out_GT_GT] = ACTIONS(2108), + [anon_sym_e_GT_GT] = ACTIONS(2108), + [anon_sym_o_GT_GT] = ACTIONS(2108), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2108), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2108), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2108), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2108), [anon_sym_POUND] = ACTIONS(3), }, - [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), + [STATE(950)] = { + [aux_sym__repeat_newline] = STATE(1011), + [sym__expression_parenthesized] = STATE(4408), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), [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), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1832), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_comment] = STATE(950), + [aux_sym_cmd_identifier_token2] = ACTIONS(2630), + [anon_sym_true] = ACTIONS(2632), + [anon_sym_false] = ACTIONS(2632), + [anon_sym_null] = ACTIONS(2634), + [aux_sym_cmd_identifier_token3] = ACTIONS(2636), + [aux_sym_cmd_identifier_token4] = ACTIONS(2636), + [aux_sym_cmd_identifier_token5] = ACTIONS(2636), + [sym__newline] = ACTIONS(2638), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2046), + [aux_sym__val_number_decimal_token3] = ACTIONS(2640), + [aux_sym__val_number_decimal_token4] = ACTIONS(2640), + [aux_sym__val_number_token1] = ACTIONS(2636), + [aux_sym__val_number_token2] = ACTIONS(2636), + [aux_sym__val_number_token3] = ACTIONS(2636), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2642), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -118901,67 +118387,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(963)] = { - [aux_sym__repeat_newline] = STATE(1005), - [sym__expression_parenthesized] = STATE(4360), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [STATE(951)] = { + [aux_sym__repeat_newline] = STATE(1108), + [sym__expression_parenthesized] = STATE(4377), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), [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), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1832), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_comment] = STATE(951), + [aux_sym_cmd_identifier_token2] = ACTIONS(2630), + [anon_sym_true] = ACTIONS(2632), + [anon_sym_false] = ACTIONS(2632), + [anon_sym_null] = ACTIONS(2634), + [aux_sym_cmd_identifier_token3] = ACTIONS(2636), + [aux_sym_cmd_identifier_token4] = ACTIONS(2636), + [aux_sym_cmd_identifier_token5] = ACTIONS(2636), + [sym__newline] = ACTIONS(2638), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2046), + [aux_sym__val_number_decimal_token3] = ACTIONS(2640), + [aux_sym__val_number_decimal_token4] = ACTIONS(2640), + [aux_sym__val_number_token1] = ACTIONS(2636), + [aux_sym__val_number_token2] = ACTIONS(2636), + [aux_sym__val_number_token3] = ACTIONS(2636), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2642), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -118970,2848 +118456,4084 @@ 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), - }, - [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), - }, - [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_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_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_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_POUND] = ACTIONS(3), - }, - [STATE(971)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4465), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(4840), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3756), - [sym_val_range] = STATE(4515), - [sym__val_range] = STATE(4853), - [sym_val_nothing] = STATE(4517), - [sym_val_bool] = STATE(4134), - [sym_val_variable] = STATE(3757), - [sym_val_number] = STATE(4517), - [sym__val_number_decimal] = STATE(3555), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4517), - [sym_val_filesize] = STATE(4517), - [sym_val_binary] = STATE(4517), - [sym_val_string] = STATE(4517), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_list] = STATE(4951), - [sym__table_head] = STATE(3665), - [sym_val_table] = STATE(4517), - [sym__unquoted_in_list] = STATE(4365), - [sym__unquoted_anonymous_prefix] = STATE(4853), - [sym_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), - }, - [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), + [STATE(952)] = { + [sym_comment] = STATE(952), + [ts_builtin_sym_end] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1876), + [sym__newline] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1876), + [anon_sym_err_GT_PIPE] = ACTIONS(1876), + [anon_sym_out_GT_PIPE] = ACTIONS(1876), + [anon_sym_e_GT_PIPE] = ACTIONS(1876), + [anon_sym_o_GT_PIPE] = ACTIONS(1876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1876), + [anon_sym_GT2] = ACTIONS(1878), + [anon_sym_DASH2] = ACTIONS(1876), + [anon_sym_STAR2] = ACTIONS(1878), + [anon_sym_and2] = ACTIONS(1876), + [anon_sym_xor2] = ACTIONS(1876), + [anon_sym_or2] = ACTIONS(1876), + [anon_sym_not_DASHin2] = ACTIONS(1876), + [anon_sym_has2] = ACTIONS(1876), + [anon_sym_not_DASHhas2] = ACTIONS(1876), + [anon_sym_starts_DASHwith2] = ACTIONS(1876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1876), + [anon_sym_ends_DASHwith2] = ACTIONS(1876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1876), + [anon_sym_EQ_EQ2] = ACTIONS(1876), + [anon_sym_BANG_EQ2] = ACTIONS(1876), + [anon_sym_LT2] = ACTIONS(1878), + [anon_sym_LT_EQ2] = ACTIONS(1876), + [anon_sym_GT_EQ2] = ACTIONS(1876), + [anon_sym_EQ_TILDE2] = ACTIONS(1876), + [anon_sym_BANG_TILDE2] = ACTIONS(1876), + [anon_sym_like2] = ACTIONS(1876), + [anon_sym_not_DASHlike2] = ACTIONS(1876), + [anon_sym_STAR_STAR2] = ACTIONS(1876), + [anon_sym_PLUS_PLUS2] = ACTIONS(1876), + [anon_sym_SLASH2] = ACTIONS(1878), + [anon_sym_mod2] = ACTIONS(1876), + [anon_sym_SLASH_SLASH2] = ACTIONS(1876), + [anon_sym_PLUS2] = ACTIONS(1878), + [anon_sym_bit_DASHshl2] = ACTIONS(1876), + [anon_sym_bit_DASHshr2] = ACTIONS(1876), + [anon_sym_bit_DASHand2] = ACTIONS(1876), + [anon_sym_bit_DASHxor2] = ACTIONS(1876), + [anon_sym_bit_DASHor2] = ACTIONS(1876), + [anon_sym_DOT_DOT2] = ACTIONS(1878), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1876), + [anon_sym_err_GT] = ACTIONS(1878), + [anon_sym_out_GT] = ACTIONS(1878), + [anon_sym_e_GT] = ACTIONS(1878), + [anon_sym_o_GT] = ACTIONS(1878), + [anon_sym_err_PLUSout_GT] = ACTIONS(1878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1878), + [anon_sym_o_PLUSe_GT] = ACTIONS(1878), + [anon_sym_e_PLUSo_GT] = ACTIONS(1878), + [anon_sym_err_GT_GT] = ACTIONS(1876), + [anon_sym_out_GT_GT] = ACTIONS(1876), + [anon_sym_e_GT_GT] = ACTIONS(1876), + [anon_sym_o_GT_GT] = ACTIONS(1876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1876), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(973)] = { - [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), + [STATE(953)] = { + [sym_comment] = STATE(953), + [anon_sym_in] = ACTIONS(2570), + [sym__newline] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_err_GT_PIPE] = ACTIONS(2570), + [anon_sym_out_GT_PIPE] = ACTIONS(2570), + [anon_sym_e_GT_PIPE] = ACTIONS(2570), + [anon_sym_o_GT_PIPE] = ACTIONS(2570), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2570), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2570), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2570), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2570), + [anon_sym_RPAREN] = ACTIONS(2570), + [anon_sym_GT2] = ACTIONS(2572), + [anon_sym_DASH2] = ACTIONS(2570), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_EQ_GT] = ACTIONS(2570), + [anon_sym_STAR2] = ACTIONS(2572), + [anon_sym_and2] = ACTIONS(2570), + [anon_sym_xor2] = ACTIONS(2570), + [anon_sym_or2] = ACTIONS(2570), + [anon_sym_not_DASHin2] = ACTIONS(2570), + [anon_sym_has2] = ACTIONS(2570), + [anon_sym_not_DASHhas2] = ACTIONS(2570), + [anon_sym_starts_DASHwith2] = ACTIONS(2570), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2570), + [anon_sym_ends_DASHwith2] = ACTIONS(2570), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2570), + [anon_sym_EQ_EQ2] = ACTIONS(2570), + [anon_sym_BANG_EQ2] = ACTIONS(2570), + [anon_sym_LT2] = ACTIONS(2572), + [anon_sym_LT_EQ2] = ACTIONS(2570), + [anon_sym_GT_EQ2] = ACTIONS(2570), + [anon_sym_EQ_TILDE2] = ACTIONS(2570), + [anon_sym_BANG_TILDE2] = ACTIONS(2570), + [anon_sym_like2] = ACTIONS(2570), + [anon_sym_not_DASHlike2] = ACTIONS(2570), + [anon_sym_STAR_STAR2] = ACTIONS(2570), + [anon_sym_PLUS_PLUS2] = ACTIONS(2570), + [anon_sym_SLASH2] = ACTIONS(2572), + [anon_sym_mod2] = ACTIONS(2570), + [anon_sym_SLASH_SLASH2] = ACTIONS(2570), + [anon_sym_PLUS2] = ACTIONS(2572), + [anon_sym_bit_DASHshl2] = ACTIONS(2570), + [anon_sym_bit_DASHshr2] = ACTIONS(2570), + [anon_sym_bit_DASHand2] = ACTIONS(2570), + [anon_sym_bit_DASHxor2] = ACTIONS(2570), + [anon_sym_bit_DASHor2] = ACTIONS(2570), + [anon_sym_err_GT] = ACTIONS(2572), + [anon_sym_out_GT] = ACTIONS(2572), + [anon_sym_e_GT] = ACTIONS(2572), + [anon_sym_o_GT] = ACTIONS(2572), + [anon_sym_err_PLUSout_GT] = ACTIONS(2572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2572), + [anon_sym_o_PLUSe_GT] = ACTIONS(2572), + [anon_sym_e_PLUSo_GT] = ACTIONS(2572), + [anon_sym_err_GT_GT] = ACTIONS(2570), + [anon_sym_out_GT_GT] = ACTIONS(2570), + [anon_sym_e_GT_GT] = ACTIONS(2570), + [anon_sym_o_GT_GT] = ACTIONS(2570), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2570), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2570), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2570), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2570), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(974)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), - [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), + [STATE(954)] = { + [sym_comment] = STATE(954), + [anon_sym_in] = ACTIONS(2560), + [sym__newline] = ACTIONS(2560), + [anon_sym_SEMI] = ACTIONS(2560), + [anon_sym_PIPE] = ACTIONS(2560), + [anon_sym_err_GT_PIPE] = ACTIONS(2560), + [anon_sym_out_GT_PIPE] = ACTIONS(2560), + [anon_sym_e_GT_PIPE] = ACTIONS(2560), + [anon_sym_o_GT_PIPE] = ACTIONS(2560), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2560), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2560), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2560), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2560), + [anon_sym_RPAREN] = ACTIONS(2560), + [anon_sym_GT2] = ACTIONS(2562), + [anon_sym_DASH2] = ACTIONS(2560), + [anon_sym_LBRACE] = ACTIONS(2560), + [anon_sym_RBRACE] = ACTIONS(2560), + [anon_sym_EQ_GT] = ACTIONS(2560), + [anon_sym_STAR2] = ACTIONS(2562), + [anon_sym_and2] = ACTIONS(2560), + [anon_sym_xor2] = ACTIONS(2560), + [anon_sym_or2] = ACTIONS(2560), + [anon_sym_not_DASHin2] = ACTIONS(2560), + [anon_sym_has2] = ACTIONS(2560), + [anon_sym_not_DASHhas2] = ACTIONS(2560), + [anon_sym_starts_DASHwith2] = ACTIONS(2560), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2560), + [anon_sym_ends_DASHwith2] = ACTIONS(2560), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2560), + [anon_sym_EQ_EQ2] = ACTIONS(2560), + [anon_sym_BANG_EQ2] = ACTIONS(2560), + [anon_sym_LT2] = ACTIONS(2562), + [anon_sym_LT_EQ2] = ACTIONS(2560), + [anon_sym_GT_EQ2] = ACTIONS(2560), + [anon_sym_EQ_TILDE2] = ACTIONS(2560), + [anon_sym_BANG_TILDE2] = ACTIONS(2560), + [anon_sym_like2] = ACTIONS(2560), + [anon_sym_not_DASHlike2] = ACTIONS(2560), + [anon_sym_STAR_STAR2] = ACTIONS(2560), + [anon_sym_PLUS_PLUS2] = ACTIONS(2560), + [anon_sym_SLASH2] = ACTIONS(2562), + [anon_sym_mod2] = ACTIONS(2560), + [anon_sym_SLASH_SLASH2] = ACTIONS(2560), + [anon_sym_PLUS2] = ACTIONS(2562), + [anon_sym_bit_DASHshl2] = ACTIONS(2560), + [anon_sym_bit_DASHshr2] = ACTIONS(2560), + [anon_sym_bit_DASHand2] = ACTIONS(2560), + [anon_sym_bit_DASHxor2] = ACTIONS(2560), + [anon_sym_bit_DASHor2] = ACTIONS(2560), + [anon_sym_err_GT] = ACTIONS(2562), + [anon_sym_out_GT] = ACTIONS(2562), + [anon_sym_e_GT] = ACTIONS(2562), + [anon_sym_o_GT] = ACTIONS(2562), + [anon_sym_err_PLUSout_GT] = ACTIONS(2562), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2562), + [anon_sym_o_PLUSe_GT] = ACTIONS(2562), + [anon_sym_e_PLUSo_GT] = ACTIONS(2562), + [anon_sym_err_GT_GT] = ACTIONS(2560), + [anon_sym_out_GT_GT] = ACTIONS(2560), + [anon_sym_e_GT_GT] = ACTIONS(2560), + [anon_sym_o_GT_GT] = ACTIONS(2560), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2560), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2560), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2560), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2560), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(975)] = { - [sym_comment] = STATE(975), - [ts_builtin_sym_end] = ACTIONS(1870), - [anon_sym_in] = ACTIONS(1870), - [sym__newline] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_err_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_GT_PIPE] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), - [anon_sym_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1872), - [anon_sym_out_GT] = ACTIONS(1872), - [anon_sym_e_GT] = ACTIONS(1872), - [anon_sym_o_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT] = ACTIONS(1872), - [anon_sym_err_GT_GT] = ACTIONS(1870), - [anon_sym_out_GT_GT] = ACTIONS(1870), - [anon_sym_e_GT_GT] = ACTIONS(1870), - [anon_sym_o_GT_GT] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), - [sym__unquoted_pattern] = ACTIONS(1872), + [STATE(955)] = { + [sym_comment] = STATE(955), + [ts_builtin_sym_end] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [sym__newline] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2116), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_err_GT_PIPE] = ACTIONS(2116), + [anon_sym_out_GT_PIPE] = ACTIONS(2116), + [anon_sym_e_GT_PIPE] = ACTIONS(2116), + [anon_sym_o_GT_PIPE] = ACTIONS(2116), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2116), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2116), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2116), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2116), + [anon_sym_GT2] = ACTIONS(2118), + [anon_sym_DASH2] = ACTIONS(2116), + [anon_sym_STAR2] = ACTIONS(2118), + [anon_sym_and2] = ACTIONS(2116), + [anon_sym_xor2] = ACTIONS(2116), + [anon_sym_or2] = ACTIONS(2116), + [anon_sym_not_DASHin2] = ACTIONS(2116), + [anon_sym_has2] = ACTIONS(2116), + [anon_sym_not_DASHhas2] = ACTIONS(2116), + [anon_sym_starts_DASHwith2] = ACTIONS(2116), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2116), + [anon_sym_ends_DASHwith2] = ACTIONS(2116), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2116), + [anon_sym_EQ_EQ2] = ACTIONS(2116), + [anon_sym_BANG_EQ2] = ACTIONS(2116), + [anon_sym_LT2] = ACTIONS(2118), + [anon_sym_LT_EQ2] = ACTIONS(2116), + [anon_sym_GT_EQ2] = ACTIONS(2116), + [anon_sym_EQ_TILDE2] = ACTIONS(2116), + [anon_sym_BANG_TILDE2] = ACTIONS(2116), + [anon_sym_like2] = ACTIONS(2116), + [anon_sym_not_DASHlike2] = ACTIONS(2116), + [anon_sym_STAR_STAR2] = ACTIONS(2116), + [anon_sym_PLUS_PLUS2] = ACTIONS(2116), + [anon_sym_SLASH2] = ACTIONS(2118), + [anon_sym_mod2] = ACTIONS(2116), + [anon_sym_SLASH_SLASH2] = ACTIONS(2116), + [anon_sym_PLUS2] = ACTIONS(2118), + [anon_sym_bit_DASHshl2] = ACTIONS(2116), + [anon_sym_bit_DASHshr2] = ACTIONS(2116), + [anon_sym_bit_DASHand2] = ACTIONS(2116), + [anon_sym_bit_DASHxor2] = ACTIONS(2116), + [anon_sym_bit_DASHor2] = ACTIONS(2116), + [anon_sym_DOT_DOT2] = ACTIONS(2644), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2646), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2646), + [anon_sym_err_GT] = ACTIONS(2118), + [anon_sym_out_GT] = ACTIONS(2118), + [anon_sym_e_GT] = ACTIONS(2118), + [anon_sym_o_GT] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT] = ACTIONS(2118), + [anon_sym_err_GT_GT] = ACTIONS(2116), + [anon_sym_out_GT_GT] = ACTIONS(2116), + [anon_sym_e_GT_GT] = ACTIONS(2116), + [anon_sym_o_GT_GT] = ACTIONS(2116), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2116), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2116), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2116), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2116), [anon_sym_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(956)] = { + [sym_comment] = STATE(956), + [anon_sym_in] = ACTIONS(2100), + [sym__newline] = ACTIONS(2100), + [anon_sym_SEMI] = ACTIONS(2100), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_err_GT_PIPE] = ACTIONS(2100), + [anon_sym_out_GT_PIPE] = ACTIONS(2100), + [anon_sym_e_GT_PIPE] = ACTIONS(2100), + [anon_sym_o_GT_PIPE] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), + [anon_sym_RPAREN] = ACTIONS(2100), + [anon_sym_GT2] = ACTIONS(2104), + [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(2104), + [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(2104), + [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(2104), + [anon_sym_mod2] = ACTIONS(2100), + [anon_sym_SLASH_SLASH2] = ACTIONS(2100), + [anon_sym_PLUS2] = ACTIONS(2104), + [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(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(2100), + [anon_sym_out_GT_GT] = ACTIONS(2100), + [anon_sym_e_GT_GT] = ACTIONS(2100), + [anon_sym_o_GT_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(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(957)] = { + [sym_comment] = STATE(957), + [ts_builtin_sym_end] = ACTIONS(1846), + [anon_sym_in] = ACTIONS(1846), + [sym__newline] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_err_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_GT_PIPE] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), + [anon_sym_GT2] = ACTIONS(1848), + [anon_sym_DASH2] = ACTIONS(1846), + [anon_sym_STAR2] = ACTIONS(1848), + [anon_sym_and2] = ACTIONS(1846), + [anon_sym_xor2] = ACTIONS(1846), + [anon_sym_or2] = ACTIONS(1846), + [anon_sym_not_DASHin2] = ACTIONS(1846), + [anon_sym_has2] = ACTIONS(1846), + [anon_sym_not_DASHhas2] = ACTIONS(1846), + [anon_sym_starts_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), + [anon_sym_ends_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), + [anon_sym_EQ_EQ2] = ACTIONS(1846), + [anon_sym_BANG_EQ2] = ACTIONS(1846), + [anon_sym_LT2] = ACTIONS(1848), + [anon_sym_LT_EQ2] = ACTIONS(1846), + [anon_sym_GT_EQ2] = ACTIONS(1846), + [anon_sym_EQ_TILDE2] = ACTIONS(1846), + [anon_sym_BANG_TILDE2] = ACTIONS(1846), + [anon_sym_like2] = ACTIONS(1846), + [anon_sym_not_DASHlike2] = ACTIONS(1846), + [anon_sym_STAR_STAR2] = ACTIONS(1846), + [anon_sym_PLUS_PLUS2] = ACTIONS(1846), + [anon_sym_SLASH2] = ACTIONS(1848), + [anon_sym_mod2] = ACTIONS(1846), + [anon_sym_SLASH_SLASH2] = ACTIONS(1846), + [anon_sym_PLUS2] = ACTIONS(1848), + [anon_sym_bit_DASHshl2] = ACTIONS(1846), + [anon_sym_bit_DASHshr2] = ACTIONS(1846), + [anon_sym_bit_DASHand2] = ACTIONS(1846), + [anon_sym_bit_DASHxor2] = ACTIONS(1846), + [anon_sym_bit_DASHor2] = ACTIONS(1846), + [anon_sym_DOT_DOT2] = ACTIONS(1848), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1846), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1846), + [anon_sym_err_GT] = ACTIONS(1848), + [anon_sym_out_GT] = ACTIONS(1848), + [anon_sym_e_GT] = ACTIONS(1848), + [anon_sym_o_GT] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT] = ACTIONS(1848), + [anon_sym_err_GT_GT] = ACTIONS(1846), + [anon_sym_out_GT_GT] = ACTIONS(1846), + [anon_sym_e_GT_GT] = ACTIONS(1846), + [anon_sym_o_GT_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(958)] = { + [sym_comment] = STATE(958), + [ts_builtin_sym_end] = ACTIONS(2124), + [anon_sym_in] = ACTIONS(2124), + [sym__newline] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_PIPE] = ACTIONS(2124), + [anon_sym_err_GT_PIPE] = ACTIONS(2124), + [anon_sym_out_GT_PIPE] = ACTIONS(2124), + [anon_sym_e_GT_PIPE] = ACTIONS(2124), + [anon_sym_o_GT_PIPE] = ACTIONS(2124), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2124), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2124), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2124), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2124), + [anon_sym_GT2] = ACTIONS(2126), + [anon_sym_DASH2] = ACTIONS(2124), + [anon_sym_STAR2] = ACTIONS(2126), + [anon_sym_and2] = ACTIONS(2124), + [anon_sym_xor2] = ACTIONS(2124), + [anon_sym_or2] = ACTIONS(2124), + [anon_sym_not_DASHin2] = ACTIONS(2124), + [anon_sym_has2] = ACTIONS(2124), + [anon_sym_not_DASHhas2] = ACTIONS(2124), + [anon_sym_starts_DASHwith2] = ACTIONS(2124), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2124), + [anon_sym_ends_DASHwith2] = ACTIONS(2124), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2124), + [anon_sym_EQ_EQ2] = ACTIONS(2124), + [anon_sym_BANG_EQ2] = ACTIONS(2124), + [anon_sym_LT2] = ACTIONS(2126), + [anon_sym_LT_EQ2] = ACTIONS(2124), + [anon_sym_GT_EQ2] = ACTIONS(2124), + [anon_sym_EQ_TILDE2] = ACTIONS(2124), + [anon_sym_BANG_TILDE2] = ACTIONS(2124), + [anon_sym_like2] = ACTIONS(2124), + [anon_sym_not_DASHlike2] = ACTIONS(2124), + [anon_sym_STAR_STAR2] = ACTIONS(2124), + [anon_sym_PLUS_PLUS2] = ACTIONS(2124), + [anon_sym_SLASH2] = ACTIONS(2126), + [anon_sym_mod2] = ACTIONS(2124), + [anon_sym_SLASH_SLASH2] = ACTIONS(2124), + [anon_sym_PLUS2] = ACTIONS(2126), + [anon_sym_bit_DASHshl2] = ACTIONS(2124), + [anon_sym_bit_DASHshr2] = ACTIONS(2124), + [anon_sym_bit_DASHand2] = ACTIONS(2124), + [anon_sym_bit_DASHxor2] = ACTIONS(2124), + [anon_sym_bit_DASHor2] = ACTIONS(2124), + [anon_sym_DOT_DOT2] = ACTIONS(2648), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2650), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2650), + [anon_sym_err_GT] = ACTIONS(2126), + [anon_sym_out_GT] = ACTIONS(2126), + [anon_sym_e_GT] = ACTIONS(2126), + [anon_sym_o_GT] = ACTIONS(2126), + [anon_sym_err_PLUSout_GT] = ACTIONS(2126), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2126), + [anon_sym_o_PLUSe_GT] = ACTIONS(2126), + [anon_sym_e_PLUSo_GT] = ACTIONS(2126), + [anon_sym_err_GT_GT] = ACTIONS(2124), + [anon_sym_out_GT_GT] = ACTIONS(2124), + [anon_sym_e_GT_GT] = ACTIONS(2124), + [anon_sym_o_GT_GT] = ACTIONS(2124), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2124), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2124), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2124), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2124), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(959)] = { + [sym_comment] = STATE(959), + [ts_builtin_sym_end] = ACTIONS(2021), + [anon_sym_in] = ACTIONS(2021), + [sym__newline] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_err_GT_PIPE] = ACTIONS(2021), + [anon_sym_out_GT_PIPE] = ACTIONS(2021), + [anon_sym_e_GT_PIPE] = ACTIONS(2021), + [anon_sym_o_GT_PIPE] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2021), + [anon_sym_GT2] = ACTIONS(2023), + [anon_sym_DASH2] = ACTIONS(2021), + [anon_sym_STAR2] = ACTIONS(2023), + [anon_sym_and2] = ACTIONS(2021), + [anon_sym_xor2] = ACTIONS(2021), + [anon_sym_or2] = ACTIONS(2021), + [anon_sym_not_DASHin2] = ACTIONS(2021), + [anon_sym_has2] = ACTIONS(2021), + [anon_sym_not_DASHhas2] = ACTIONS(2021), + [anon_sym_starts_DASHwith2] = ACTIONS(2021), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2021), + [anon_sym_ends_DASHwith2] = ACTIONS(2021), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2021), + [anon_sym_EQ_EQ2] = ACTIONS(2021), + [anon_sym_BANG_EQ2] = ACTIONS(2021), + [anon_sym_LT2] = ACTIONS(2023), + [anon_sym_LT_EQ2] = ACTIONS(2021), + [anon_sym_GT_EQ2] = ACTIONS(2021), + [anon_sym_EQ_TILDE2] = ACTIONS(2021), + [anon_sym_BANG_TILDE2] = ACTIONS(2021), + [anon_sym_like2] = ACTIONS(2021), + [anon_sym_not_DASHlike2] = ACTIONS(2021), + [anon_sym_STAR_STAR2] = ACTIONS(2021), + [anon_sym_PLUS_PLUS2] = ACTIONS(2021), + [anon_sym_SLASH2] = ACTIONS(2023), + [anon_sym_mod2] = ACTIONS(2021), + [anon_sym_SLASH_SLASH2] = ACTIONS(2021), + [anon_sym_PLUS2] = ACTIONS(2023), + [anon_sym_bit_DASHshl2] = ACTIONS(2021), + [anon_sym_bit_DASHshr2] = ACTIONS(2021), + [anon_sym_bit_DASHand2] = ACTIONS(2021), + [anon_sym_bit_DASHxor2] = ACTIONS(2021), + [anon_sym_bit_DASHor2] = ACTIONS(2021), + [anon_sym_DOT_DOT2] = ACTIONS(2652), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2654), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2654), + [anon_sym_err_GT] = ACTIONS(2023), + [anon_sym_out_GT] = ACTIONS(2023), + [anon_sym_e_GT] = ACTIONS(2023), + [anon_sym_o_GT] = ACTIONS(2023), + [anon_sym_err_PLUSout_GT] = ACTIONS(2023), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2023), + [anon_sym_o_PLUSe_GT] = ACTIONS(2023), + [anon_sym_e_PLUSo_GT] = ACTIONS(2023), + [anon_sym_err_GT_GT] = ACTIONS(2021), + [anon_sym_out_GT_GT] = ACTIONS(2021), + [anon_sym_e_GT_GT] = ACTIONS(2021), + [anon_sym_o_GT_GT] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2021), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(960)] = { + [sym_comment] = STATE(960), + [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_RBRACE] = 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_LPAREN2] = 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_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), + [sym__unquoted_pattern] = ACTIONS(1902), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(961)] = { + [sym_comment] = STATE(961), + [anon_sym_in] = ACTIONS(2021), + [sym__newline] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_err_GT_PIPE] = ACTIONS(2021), + [anon_sym_out_GT_PIPE] = ACTIONS(2021), + [anon_sym_e_GT_PIPE] = ACTIONS(2021), + [anon_sym_o_GT_PIPE] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2021), + [anon_sym_RPAREN] = ACTIONS(2021), + [anon_sym_GT2] = ACTIONS(2023), + [anon_sym_DASH2] = ACTIONS(2021), + [anon_sym_RBRACE] = ACTIONS(2021), + [anon_sym_STAR2] = ACTIONS(2023), + [anon_sym_and2] = ACTIONS(2021), + [anon_sym_xor2] = ACTIONS(2021), + [anon_sym_or2] = ACTIONS(2021), + [anon_sym_not_DASHin2] = ACTIONS(2021), + [anon_sym_has2] = ACTIONS(2021), + [anon_sym_not_DASHhas2] = ACTIONS(2021), + [anon_sym_starts_DASHwith2] = ACTIONS(2021), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2021), + [anon_sym_ends_DASHwith2] = ACTIONS(2021), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2021), + [anon_sym_EQ_EQ2] = ACTIONS(2021), + [anon_sym_BANG_EQ2] = ACTIONS(2021), + [anon_sym_LT2] = ACTIONS(2023), + [anon_sym_LT_EQ2] = ACTIONS(2021), + [anon_sym_GT_EQ2] = ACTIONS(2021), + [anon_sym_EQ_TILDE2] = ACTIONS(2021), + [anon_sym_BANG_TILDE2] = ACTIONS(2021), + [anon_sym_like2] = ACTIONS(2021), + [anon_sym_not_DASHlike2] = ACTIONS(2021), + [anon_sym_LPAREN2] = ACTIONS(2025), + [anon_sym_STAR_STAR2] = ACTIONS(2021), + [anon_sym_PLUS_PLUS2] = ACTIONS(2021), + [anon_sym_SLASH2] = ACTIONS(2023), + [anon_sym_mod2] = ACTIONS(2021), + [anon_sym_SLASH_SLASH2] = ACTIONS(2021), + [anon_sym_PLUS2] = ACTIONS(2023), + [anon_sym_bit_DASHshl2] = ACTIONS(2021), + [anon_sym_bit_DASHshr2] = ACTIONS(2021), + [anon_sym_bit_DASHand2] = ACTIONS(2021), + [anon_sym_bit_DASHxor2] = ACTIONS(2021), + [anon_sym_bit_DASHor2] = ACTIONS(2021), + [anon_sym_err_GT] = ACTIONS(2023), + [anon_sym_out_GT] = ACTIONS(2023), + [anon_sym_e_GT] = ACTIONS(2023), + [anon_sym_o_GT] = ACTIONS(2023), + [anon_sym_err_PLUSout_GT] = ACTIONS(2023), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2023), + [anon_sym_o_PLUSe_GT] = ACTIONS(2023), + [anon_sym_e_PLUSo_GT] = ACTIONS(2023), + [anon_sym_err_GT_GT] = ACTIONS(2021), + [anon_sym_out_GT_GT] = ACTIONS(2021), + [anon_sym_e_GT_GT] = ACTIONS(2021), + [anon_sym_o_GT_GT] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2021), + [sym__unquoted_pattern] = ACTIONS(2031), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(962)] = { + [sym_comment] = STATE(962), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(963)] = { + [aux_sym__repeat_newline] = STATE(1129), + [sym__expression_parenthesized] = STATE(4398), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2128), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1832), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_comment] = STATE(963), + [aux_sym_cmd_identifier_token2] = ACTIONS(2630), + [anon_sym_true] = ACTIONS(2632), + [anon_sym_false] = ACTIONS(2632), + [anon_sym_null] = ACTIONS(2634), + [aux_sym_cmd_identifier_token3] = ACTIONS(2636), + [aux_sym_cmd_identifier_token4] = ACTIONS(2636), + [aux_sym_cmd_identifier_token5] = ACTIONS(2636), + [sym__newline] = ACTIONS(2638), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2046), + [aux_sym__val_number_decimal_token3] = ACTIONS(2640), + [aux_sym__val_number_decimal_token4] = ACTIONS(2640), + [aux_sym__val_number_token1] = ACTIONS(2636), + [aux_sym__val_number_token2] = ACTIONS(2636), + [aux_sym__val_number_token3] = ACTIONS(2636), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2642), [anon_sym_DQUOTE] = ACTIONS(197), [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(964)] = { + [sym_comment] = STATE(964), + [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(1852), + [anon_sym_DASH2] = ACTIONS(1850), + [anon_sym_STAR2] = ACTIONS(1852), + [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(1852), + [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(1852), + [anon_sym_mod2] = ACTIONS(1850), + [anon_sym_SLASH_SLASH2] = ACTIONS(1850), + [anon_sym_PLUS2] = ACTIONS(1852), + [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_DOT_DOT2] = ACTIONS(1852), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1850), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1850), + [anon_sym_err_GT] = ACTIONS(1852), + [anon_sym_out_GT] = ACTIONS(1852), + [anon_sym_e_GT] = ACTIONS(1852), + [anon_sym_o_GT] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT] = ACTIONS(1852), + [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(965)] = { + [sym__expr_parenthesized_immediate] = STATE(4680), + [sym_comment] = STATE(965), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(966)] = { + [aux_sym__repeat_newline] = STATE(1035), + [sym_comment] = STATE(966), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(967)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(967), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(968)] = { + [aux_sym__repeat_newline] = STATE(1036), + [sym_comment] = STATE(968), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(969)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(969), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(970)] = { + [sym_expr_unary] = STATE(2882), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_parenthesized] = STATE(2577), + [sym_val_range] = STATE(2882), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(2882), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(2628), + [sym_val_variable] = STATE(2569), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(2341), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(2604), + [sym__unquoted_with_expr] = STATE(2884), + [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_comment] = STATE(970), + [anon_sym_true] = ACTIONS(2660), + [anon_sym_false] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2662), + [aux_sym_cmd_identifier_token3] = ACTIONS(2664), + [aux_sym_cmd_identifier_token4] = ACTIONS(2664), + [aux_sym_cmd_identifier_token5] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2668), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2674), + [aux_sym_expr_unary_token1] = ACTIONS(2676), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2678), + [anon_sym_DOT_DOT_LT] = ACTIONS(2678), + [aux_sym__val_number_decimal_token1] = ACTIONS(2680), + [aux_sym__val_number_decimal_token2] = ACTIONS(2682), + [aux_sym__val_number_decimal_token3] = ACTIONS(2684), + [aux_sym__val_number_decimal_token4] = ACTIONS(2684), + [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(2686), + [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(2256), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(971)] = { + [aux_sym__repeat_newline] = STATE(1037), + [sym_comment] = STATE(971), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(972)] = { + [sym_comment] = STATE(972), + [ts_builtin_sym_end] = ACTIONS(2506), + [anon_sym_in] = ACTIONS(2506), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2506), + [anon_sym_xor2] = ACTIONS(2506), + [anon_sym_or2] = ACTIONS(2506), + [anon_sym_not_DASHin2] = ACTIONS(2506), + [anon_sym_has2] = ACTIONS(2506), + [anon_sym_not_DASHhas2] = ACTIONS(2506), + [anon_sym_starts_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), + [anon_sym_ends_DASHwith2] = ACTIONS(2506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2506), + [anon_sym_like2] = ACTIONS(2506), + [anon_sym_not_DASHlike2] = ACTIONS(2506), + [anon_sym_LPAREN2] = ACTIONS(2506), + [anon_sym_STAR_STAR2] = ACTIONS(2506), + [anon_sym_PLUS_PLUS2] = ACTIONS(2506), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2506), + [anon_sym_SLASH_SLASH2] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2506), + [anon_sym_bit_DASHshr2] = ACTIONS(2506), + [anon_sym_bit_DASHand2] = ACTIONS(2506), + [anon_sym_bit_DASHxor2] = ACTIONS(2506), + [anon_sym_bit_DASHor2] = ACTIONS(2506), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [sym__unquoted_pattern] = ACTIONS(2508), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(973)] = { + [sym_comment] = STATE(973), + [ts_builtin_sym_end] = ACTIONS(2521), + [anon_sym_in] = ACTIONS(2521), + [sym__newline] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_err_GT_PIPE] = ACTIONS(2521), + [anon_sym_out_GT_PIPE] = ACTIONS(2521), + [anon_sym_e_GT_PIPE] = ACTIONS(2521), + [anon_sym_o_GT_PIPE] = ACTIONS(2521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2521), + [anon_sym_GT2] = ACTIONS(2523), + [anon_sym_DASH2] = ACTIONS(2521), + [anon_sym_STAR2] = ACTIONS(2523), + [anon_sym_and2] = ACTIONS(2521), + [anon_sym_xor2] = ACTIONS(2521), + [anon_sym_or2] = ACTIONS(2521), + [anon_sym_not_DASHin2] = ACTIONS(2521), + [anon_sym_has2] = ACTIONS(2521), + [anon_sym_not_DASHhas2] = ACTIONS(2521), + [anon_sym_starts_DASHwith2] = ACTIONS(2521), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2521), + [anon_sym_ends_DASHwith2] = ACTIONS(2521), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2521), + [anon_sym_EQ_EQ2] = ACTIONS(2521), + [anon_sym_BANG_EQ2] = ACTIONS(2521), + [anon_sym_LT2] = ACTIONS(2523), + [anon_sym_LT_EQ2] = ACTIONS(2521), + [anon_sym_GT_EQ2] = ACTIONS(2521), + [anon_sym_EQ_TILDE2] = ACTIONS(2521), + [anon_sym_BANG_TILDE2] = ACTIONS(2521), + [anon_sym_like2] = ACTIONS(2521), + [anon_sym_not_DASHlike2] = ACTIONS(2521), + [anon_sym_LPAREN2] = ACTIONS(2525), + [anon_sym_STAR_STAR2] = ACTIONS(2521), + [anon_sym_PLUS_PLUS2] = ACTIONS(2521), + [anon_sym_SLASH2] = ACTIONS(2523), + [anon_sym_mod2] = ACTIONS(2521), + [anon_sym_SLASH_SLASH2] = ACTIONS(2521), + [anon_sym_PLUS2] = ACTIONS(2523), + [anon_sym_bit_DASHshl2] = ACTIONS(2521), + [anon_sym_bit_DASHshr2] = ACTIONS(2521), + [anon_sym_bit_DASHand2] = ACTIONS(2521), + [anon_sym_bit_DASHxor2] = ACTIONS(2521), + [anon_sym_bit_DASHor2] = ACTIONS(2521), + [anon_sym_err_GT] = ACTIONS(2523), + [anon_sym_out_GT] = ACTIONS(2523), + [anon_sym_e_GT] = ACTIONS(2523), + [anon_sym_o_GT] = ACTIONS(2523), + [anon_sym_err_PLUSout_GT] = ACTIONS(2523), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2523), + [anon_sym_o_PLUSe_GT] = ACTIONS(2523), + [anon_sym_e_PLUSo_GT] = ACTIONS(2523), + [anon_sym_err_GT_GT] = ACTIONS(2521), + [anon_sym_out_GT_GT] = ACTIONS(2521), + [anon_sym_e_GT_GT] = ACTIONS(2521), + [anon_sym_o_GT_GT] = ACTIONS(2521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2521), + [sym__unquoted_pattern] = ACTIONS(2527), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(974)] = { + [sym_comment] = STATE(974), + [ts_builtin_sym_end] = ACTIONS(1716), + [anon_sym_in] = ACTIONS(1716), + [sym__newline] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_err_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_GT_PIPE] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), + [anon_sym_GT2] = ACTIONS(1629), + [anon_sym_DASH2] = ACTIONS(1716), + [anon_sym_STAR2] = ACTIONS(1629), + [anon_sym_and2] = ACTIONS(1716), + [anon_sym_xor2] = ACTIONS(1716), + [anon_sym_or2] = ACTIONS(1716), + [anon_sym_not_DASHin2] = ACTIONS(1716), + [anon_sym_has2] = ACTIONS(1716), + [anon_sym_not_DASHhas2] = ACTIONS(1716), + [anon_sym_starts_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), + [anon_sym_ends_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), + [anon_sym_EQ_EQ2] = ACTIONS(1716), + [anon_sym_BANG_EQ2] = ACTIONS(1716), + [anon_sym_LT2] = ACTIONS(1629), + [anon_sym_LT_EQ2] = ACTIONS(1716), + [anon_sym_GT_EQ2] = ACTIONS(1716), + [anon_sym_EQ_TILDE2] = ACTIONS(1716), + [anon_sym_BANG_TILDE2] = ACTIONS(1716), + [anon_sym_like2] = ACTIONS(1716), + [anon_sym_not_DASHlike2] = ACTIONS(1716), + [anon_sym_LPAREN2] = ACTIONS(2594), + [anon_sym_STAR_STAR2] = ACTIONS(1716), + [anon_sym_PLUS_PLUS2] = ACTIONS(1716), + [anon_sym_SLASH2] = ACTIONS(1629), + [anon_sym_mod2] = ACTIONS(1716), + [anon_sym_SLASH_SLASH2] = ACTIONS(1716), + [anon_sym_PLUS2] = ACTIONS(1629), + [anon_sym_bit_DASHshl2] = ACTIONS(1716), + [anon_sym_bit_DASHshr2] = ACTIONS(1716), + [anon_sym_bit_DASHand2] = ACTIONS(1716), + [anon_sym_bit_DASHxor2] = ACTIONS(1716), + [anon_sym_bit_DASHor2] = ACTIONS(1716), + [anon_sym_err_GT] = ACTIONS(1629), + [anon_sym_out_GT] = ACTIONS(1629), + [anon_sym_e_GT] = ACTIONS(1629), + [anon_sym_o_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT] = ACTIONS(1629), + [anon_sym_err_GT_GT] = ACTIONS(1716), + [anon_sym_out_GT_GT] = ACTIONS(1716), + [anon_sym_e_GT_GT] = ACTIONS(1716), + [anon_sym_o_GT_GT] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), + [sym__unquoted_pattern] = ACTIONS(2596), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(975)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(975), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(976)] = { + [sym_expr_unary] = STATE(2885), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_parenthesized] = STATE(2517), + [sym_val_range] = STATE(2885), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(2885), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(2628), + [sym_val_variable] = STATE(2569), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(2341), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(2605), + [sym__unquoted_with_expr] = STATE(2886), + [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_comment] = STATE(976), + [anon_sym_true] = ACTIONS(2660), + [anon_sym_false] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2662), + [aux_sym_cmd_identifier_token3] = ACTIONS(2664), + [aux_sym_cmd_identifier_token4] = ACTIONS(2664), + [aux_sym_cmd_identifier_token5] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2668), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2674), + [aux_sym_expr_unary_token1] = ACTIONS(2676), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2678), + [anon_sym_DOT_DOT_LT] = ACTIONS(2678), + [aux_sym__val_number_decimal_token1] = ACTIONS(2680), + [aux_sym__val_number_decimal_token2] = ACTIONS(2682), + [aux_sym__val_number_decimal_token3] = ACTIONS(2684), + [aux_sym__val_number_decimal_token4] = ACTIONS(2684), + [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(2686), + [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(2256), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(977)] = { + [aux_sym__repeat_newline] = STATE(1038), + [sym_comment] = STATE(977), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(978)] = { - [aux_sym__repeat_newline] = STATE(1355), - [sym__expression_parenthesized] = STATE(4271), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(978), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(2668), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(2011), + [anon_sym_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [sym__unquoted_pattern] = ACTIONS(1615), [anon_sym_POUND] = ACTIONS(3), }, [STATE(980)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym_expr_unary] = STATE(2887), + [sym__expr_unary_minus] = STATE(1328), + [sym_expr_parenthesized] = STATE(2591), + [sym_val_range] = STATE(2887), + [sym__val_range] = STATE(4525), + [sym__value] = STATE(2887), + [sym_val_nothing] = STATE(1318), + [sym_val_bool] = STATE(2628), + [sym_val_variable] = STATE(2569), + [sym_val_cellpath] = STATE(1318), + [sym_val_number] = STATE(1318), + [sym__val_number_decimal] = STATE(2341), + [sym__val_number] = STATE(1340), + [sym_val_duration] = STATE(1318), + [sym_val_filesize] = STATE(1318), + [sym_val_binary] = STATE(1318), + [sym_val_string] = STATE(1318), + [sym__raw_str] = STATE(485), + [sym__str_double_quotes] = STATE(485), + [sym__str_single_quotes] = STATE(485), + [sym__str_back_ticks] = STATE(485), + [sym_val_interpolated] = STATE(1318), + [sym__inter_single_quotes] = STATE(1342), + [sym__inter_double_quotes] = STATE(1343), + [sym_val_list] = STATE(1318), + [sym_val_record] = STATE(1318), + [sym_val_table] = STATE(1318), + [sym_val_closure] = STATE(1318), + [sym_unquoted] = STATE(2606), + [sym__unquoted_with_expr] = STATE(2889), + [sym__unquoted_anonymous_prefix] = STATE(4525), [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_true] = ACTIONS(2660), + [anon_sym_false] = ACTIONS(2660), + [anon_sym_null] = ACTIONS(2662), + [aux_sym_cmd_identifier_token3] = ACTIONS(2664), + [aux_sym_cmd_identifier_token4] = ACTIONS(2664), + [aux_sym_cmd_identifier_token5] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2668), + [anon_sym_DOLLAR] = ACTIONS(2670), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2674), + [aux_sym_expr_unary_token1] = ACTIONS(2676), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2678), + [anon_sym_DOT_DOT_LT] = ACTIONS(2678), + [aux_sym__val_number_decimal_token1] = ACTIONS(2680), + [aux_sym__val_number_decimal_token2] = ACTIONS(2682), + [aux_sym__val_number_decimal_token3] = ACTIONS(2684), + [aux_sym__val_number_decimal_token4] = ACTIONS(2684), + [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(2686), + [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(2256), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(981)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(1039), [sym_comment] = STATE(981), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), [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), + [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(1008), + [anon_sym_DASH2] = ACTIONS(1030), + [anon_sym_STAR2] = ACTIONS(1008), + [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(1008), + [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(2556), + [anon_sym_STAR_STAR2] = ACTIONS(1030), + [anon_sym_PLUS_PLUS2] = ACTIONS(1030), + [anon_sym_SLASH2] = ACTIONS(1008), + [anon_sym_mod2] = ACTIONS(1030), + [anon_sym_SLASH_SLASH2] = ACTIONS(1030), + [anon_sym_PLUS2] = ACTIONS(1008), + [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(1008), + [anon_sym_out_GT] = ACTIONS(1008), + [anon_sym_e_GT] = ACTIONS(1008), + [anon_sym_o_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT] = ACTIONS(1008), + [anon_sym_err_GT_GT] = ACTIONS(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(2558), [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), + [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(2556), + [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(2558), [anon_sym_POUND] = ACTIONS(3), }, [STATE(984)] = { - [aux_sym__repeat_newline] = STATE(1036), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(984), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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), + [aux_sym__repeat_newline] = STATE(1040), [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_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(986)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [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_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, [STATE(987)] = { - [sym_expr_unary] = STATE(2782), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_parenthesized] = STATE(2481), - [sym_val_range] = STATE(2782), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(2782), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(2515), - [sym_val_variable] = STATE(2478), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(2331), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(2581), - [sym__unquoted_with_expr] = STATE(2783), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(987), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2676), - [aux_sym_cmd_identifier_token3] = ACTIONS(2678), - [aux_sym_cmd_identifier_token4] = ACTIONS(2678), - [aux_sym_cmd_identifier_token5] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2684), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_DOT_DOT] = ACTIONS(2688), - [aux_sym_expr_unary_token1] = ACTIONS(2690), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2692), - [anon_sym_DOT_DOT_LT] = ACTIONS(2692), - [aux_sym__val_number_decimal_token1] = ACTIONS(2694), - [aux_sym__val_number_decimal_token2] = ACTIONS(2696), - [aux_sym__val_number_decimal_token3] = ACTIONS(2698), - [aux_sym__val_number_decimal_token4] = ACTIONS(2698), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [ts_builtin_sym_end] = ACTIONS(2566), + [anon_sym_in] = ACTIONS(2566), + [sym__newline] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_err_GT_PIPE] = ACTIONS(2566), + [anon_sym_out_GT_PIPE] = ACTIONS(2566), + [anon_sym_e_GT_PIPE] = ACTIONS(2566), + [anon_sym_o_GT_PIPE] = ACTIONS(2566), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2566), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2566), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2566), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2566), + [anon_sym_GT2] = ACTIONS(2568), + [anon_sym_DASH2] = ACTIONS(2566), + [anon_sym_STAR2] = ACTIONS(2568), + [anon_sym_and2] = ACTIONS(2566), + [anon_sym_xor2] = ACTIONS(2566), + [anon_sym_or2] = ACTIONS(2566), + [anon_sym_not_DASHin2] = ACTIONS(2566), + [anon_sym_has2] = ACTIONS(2566), + [anon_sym_not_DASHhas2] = ACTIONS(2566), + [anon_sym_starts_DASHwith2] = ACTIONS(2566), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2566), + [anon_sym_ends_DASHwith2] = ACTIONS(2566), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2566), + [anon_sym_EQ_EQ2] = ACTIONS(2566), + [anon_sym_BANG_EQ2] = ACTIONS(2566), + [anon_sym_LT2] = ACTIONS(2568), + [anon_sym_LT_EQ2] = ACTIONS(2566), + [anon_sym_GT_EQ2] = ACTIONS(2566), + [anon_sym_EQ_TILDE2] = ACTIONS(2566), + [anon_sym_BANG_TILDE2] = ACTIONS(2566), + [anon_sym_like2] = ACTIONS(2566), + [anon_sym_not_DASHlike2] = ACTIONS(2566), + [anon_sym_LPAREN2] = ACTIONS(2025), + [anon_sym_STAR_STAR2] = ACTIONS(2566), + [anon_sym_PLUS_PLUS2] = ACTIONS(2566), + [anon_sym_SLASH2] = ACTIONS(2568), + [anon_sym_mod2] = ACTIONS(2566), + [anon_sym_SLASH_SLASH2] = ACTIONS(2566), + [anon_sym_PLUS2] = ACTIONS(2568), + [anon_sym_bit_DASHshl2] = ACTIONS(2566), + [anon_sym_bit_DASHshr2] = ACTIONS(2566), + [anon_sym_bit_DASHand2] = ACTIONS(2566), + [anon_sym_bit_DASHxor2] = ACTIONS(2566), + [anon_sym_bit_DASHor2] = ACTIONS(2566), + [anon_sym_err_GT] = ACTIONS(2568), + [anon_sym_out_GT] = ACTIONS(2568), + [anon_sym_e_GT] = ACTIONS(2568), + [anon_sym_o_GT] = ACTIONS(2568), + [anon_sym_err_PLUSout_GT] = ACTIONS(2568), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2568), + [anon_sym_o_PLUSe_GT] = ACTIONS(2568), + [anon_sym_e_PLUSo_GT] = ACTIONS(2568), + [anon_sym_err_GT_GT] = ACTIONS(2566), + [anon_sym_out_GT_GT] = ACTIONS(2566), + [anon_sym_e_GT_GT] = ACTIONS(2566), + [anon_sym_o_GT_GT] = ACTIONS(2566), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2566), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2566), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2566), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2566), + [sym__unquoted_pattern] = ACTIONS(2031), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(988)] = { - [sym_expr_unary] = STATE(2786), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_parenthesized] = STATE(2497), - [sym_val_range] = STATE(2786), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(2786), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(2515), - [sym_val_variable] = STATE(2478), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(2331), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(2567), - [sym__unquoted_with_expr] = STATE(2797), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(1041), [sym_comment] = STATE(988), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2676), - [aux_sym_cmd_identifier_token3] = ACTIONS(2678), - [aux_sym_cmd_identifier_token4] = ACTIONS(2678), - [aux_sym_cmd_identifier_token5] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2684), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_DOT_DOT] = ACTIONS(2688), - [aux_sym_expr_unary_token1] = ACTIONS(2690), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2692), - [anon_sym_DOT_DOT_LT] = ACTIONS(2692), - [aux_sym__val_number_decimal_token1] = ACTIONS(2694), - [aux_sym__val_number_decimal_token2] = ACTIONS(2696), - [aux_sym__val_number_decimal_token3] = ACTIONS(2698), - [aux_sym__val_number_decimal_token4] = ACTIONS(2698), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2688), + [sym__newline] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2690), + [anon_sym_DASH2] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2688), + [anon_sym_STAR2] = ACTIONS(2690), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2688), + [anon_sym_has2] = ACTIONS(2688), + [anon_sym_not_DASHhas2] = ACTIONS(2688), + [anon_sym_starts_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), + [anon_sym_ends_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), + [anon_sym_EQ_EQ2] = ACTIONS(2688), + [anon_sym_BANG_EQ2] = ACTIONS(2688), + [anon_sym_LT2] = ACTIONS(2690), + [anon_sym_LT_EQ2] = ACTIONS(2688), + [anon_sym_GT_EQ2] = ACTIONS(2688), + [anon_sym_EQ_TILDE2] = ACTIONS(2688), + [anon_sym_BANG_TILDE2] = ACTIONS(2688), + [anon_sym_like2] = ACTIONS(2688), + [anon_sym_not_DASHlike2] = ACTIONS(2688), + [anon_sym_STAR_STAR2] = ACTIONS(2688), + [anon_sym_PLUS_PLUS2] = ACTIONS(2688), + [anon_sym_SLASH2] = ACTIONS(2690), + [anon_sym_mod2] = ACTIONS(2688), + [anon_sym_SLASH_SLASH2] = ACTIONS(2688), + [anon_sym_PLUS2] = ACTIONS(2690), + [anon_sym_bit_DASHshl2] = ACTIONS(2688), + [anon_sym_bit_DASHshr2] = ACTIONS(2688), + [anon_sym_bit_DASHand2] = ACTIONS(2688), + [anon_sym_bit_DASHxor2] = ACTIONS(2688), + [anon_sym_bit_DASHor2] = ACTIONS(2688), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(989)] = { - [aux_sym__repeat_newline] = STATE(1037), [sym_comment] = STATE(989), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [ts_builtin_sym_end] = ACTIONS(2021), + [anon_sym_in] = ACTIONS(2021), + [sym__newline] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_err_GT_PIPE] = ACTIONS(2021), + [anon_sym_out_GT_PIPE] = ACTIONS(2021), + [anon_sym_e_GT_PIPE] = ACTIONS(2021), + [anon_sym_o_GT_PIPE] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2021), + [anon_sym_GT2] = ACTIONS(2023), + [anon_sym_DASH2] = ACTIONS(2021), + [anon_sym_STAR2] = ACTIONS(2023), + [anon_sym_and2] = ACTIONS(2021), + [anon_sym_xor2] = ACTIONS(2021), + [anon_sym_or2] = ACTIONS(2021), + [anon_sym_not_DASHin2] = ACTIONS(2021), + [anon_sym_has2] = ACTIONS(2021), + [anon_sym_not_DASHhas2] = ACTIONS(2021), + [anon_sym_starts_DASHwith2] = ACTIONS(2021), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2021), + [anon_sym_ends_DASHwith2] = ACTIONS(2021), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2021), + [anon_sym_EQ_EQ2] = ACTIONS(2021), + [anon_sym_BANG_EQ2] = ACTIONS(2021), + [anon_sym_LT2] = ACTIONS(2023), + [anon_sym_LT_EQ2] = ACTIONS(2021), + [anon_sym_GT_EQ2] = ACTIONS(2021), + [anon_sym_EQ_TILDE2] = ACTIONS(2021), + [anon_sym_BANG_TILDE2] = ACTIONS(2021), + [anon_sym_like2] = ACTIONS(2021), + [anon_sym_not_DASHlike2] = ACTIONS(2021), + [anon_sym_LPAREN2] = ACTIONS(2025), + [anon_sym_STAR_STAR2] = ACTIONS(2021), + [anon_sym_PLUS_PLUS2] = ACTIONS(2021), + [anon_sym_SLASH2] = ACTIONS(2023), + [anon_sym_mod2] = ACTIONS(2021), + [anon_sym_SLASH_SLASH2] = ACTIONS(2021), + [anon_sym_PLUS2] = ACTIONS(2023), + [anon_sym_bit_DASHshl2] = ACTIONS(2021), + [anon_sym_bit_DASHshr2] = ACTIONS(2021), + [anon_sym_bit_DASHand2] = ACTIONS(2021), + [anon_sym_bit_DASHxor2] = ACTIONS(2021), + [anon_sym_bit_DASHor2] = ACTIONS(2021), + [anon_sym_err_GT] = ACTIONS(2023), + [anon_sym_out_GT] = ACTIONS(2023), + [anon_sym_e_GT] = ACTIONS(2023), + [anon_sym_o_GT] = ACTIONS(2023), + [anon_sym_err_PLUSout_GT] = ACTIONS(2023), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2023), + [anon_sym_o_PLUSe_GT] = ACTIONS(2023), + [anon_sym_e_PLUSo_GT] = ACTIONS(2023), + [anon_sym_err_GT_GT] = ACTIONS(2021), + [anon_sym_out_GT_GT] = ACTIONS(2021), + [anon_sym_e_GT_GT] = ACTIONS(2021), + [anon_sym_o_GT_GT] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2021), + [sym__unquoted_pattern] = ACTIONS(2031), [anon_sym_POUND] = ACTIONS(3), }, [STATE(990)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1042), [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_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), [anon_sym_POUND] = ACTIONS(3), }, [STATE(991)] = { - [aux_sym__repeat_newline] = STATE(1038), + [aux_sym__repeat_newline] = STATE(507), [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_in] = ACTIONS(2692), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2694), + [anon_sym_DASH2] = ACTIONS(2692), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_STAR2] = ACTIONS(2694), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2692), + [anon_sym_has2] = ACTIONS(2692), + [anon_sym_not_DASHhas2] = ACTIONS(2692), + [anon_sym_starts_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), + [anon_sym_ends_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), + [anon_sym_EQ_EQ2] = ACTIONS(2692), + [anon_sym_BANG_EQ2] = ACTIONS(2692), + [anon_sym_LT2] = ACTIONS(2694), + [anon_sym_LT_EQ2] = ACTIONS(2692), + [anon_sym_GT_EQ2] = ACTIONS(2692), + [anon_sym_EQ_TILDE2] = ACTIONS(2692), + [anon_sym_BANG_TILDE2] = ACTIONS(2692), + [anon_sym_like2] = ACTIONS(2692), + [anon_sym_not_DASHlike2] = ACTIONS(2692), + [anon_sym_STAR_STAR2] = ACTIONS(2692), + [anon_sym_PLUS_PLUS2] = ACTIONS(2692), + [anon_sym_SLASH2] = ACTIONS(2694), + [anon_sym_mod2] = ACTIONS(2692), + [anon_sym_SLASH_SLASH2] = ACTIONS(2692), + [anon_sym_PLUS2] = ACTIONS(2694), + [anon_sym_bit_DASHshl2] = ACTIONS(2692), + [anon_sym_bit_DASHshr2] = ACTIONS(2692), + [anon_sym_bit_DASHand2] = ACTIONS(2692), + [anon_sym_bit_DASHxor2] = ACTIONS(2692), + [anon_sym_bit_DASHor2] = ACTIONS(2692), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), [anon_sym_POUND] = ACTIONS(3), }, [STATE(992)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [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), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, [STATE(993)] = { - [aux_sym__repeat_newline] = STATE(1039), [sym_comment] = STATE(993), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [ts_builtin_sym_end] = ACTIONS(2560), + [anon_sym_in] = ACTIONS(2560), + [sym__newline] = ACTIONS(2560), + [anon_sym_SEMI] = ACTIONS(2560), + [anon_sym_PIPE] = ACTIONS(2560), + [anon_sym_err_GT_PIPE] = ACTIONS(2560), + [anon_sym_out_GT_PIPE] = ACTIONS(2560), + [anon_sym_e_GT_PIPE] = ACTIONS(2560), + [anon_sym_o_GT_PIPE] = ACTIONS(2560), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2560), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2560), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2560), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2560), + [anon_sym_GT2] = ACTIONS(2562), + [anon_sym_DASH2] = ACTIONS(2560), + [anon_sym_STAR2] = ACTIONS(2562), + [anon_sym_and2] = ACTIONS(2560), + [anon_sym_xor2] = ACTIONS(2560), + [anon_sym_or2] = ACTIONS(2560), + [anon_sym_not_DASHin2] = ACTIONS(2560), + [anon_sym_has2] = ACTIONS(2560), + [anon_sym_not_DASHhas2] = ACTIONS(2560), + [anon_sym_starts_DASHwith2] = ACTIONS(2560), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2560), + [anon_sym_ends_DASHwith2] = ACTIONS(2560), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2560), + [anon_sym_EQ_EQ2] = ACTIONS(2560), + [anon_sym_BANG_EQ2] = ACTIONS(2560), + [anon_sym_LT2] = ACTIONS(2562), + [anon_sym_LT_EQ2] = ACTIONS(2560), + [anon_sym_GT_EQ2] = ACTIONS(2560), + [anon_sym_EQ_TILDE2] = ACTIONS(2560), + [anon_sym_BANG_TILDE2] = ACTIONS(2560), + [anon_sym_like2] = ACTIONS(2560), + [anon_sym_not_DASHlike2] = ACTIONS(2560), + [anon_sym_LPAREN2] = ACTIONS(2564), + [anon_sym_STAR_STAR2] = ACTIONS(2560), + [anon_sym_PLUS_PLUS2] = ACTIONS(2560), + [anon_sym_SLASH2] = ACTIONS(2562), + [anon_sym_mod2] = ACTIONS(2560), + [anon_sym_SLASH_SLASH2] = ACTIONS(2560), + [anon_sym_PLUS2] = ACTIONS(2562), + [anon_sym_bit_DASHshl2] = ACTIONS(2560), + [anon_sym_bit_DASHshr2] = ACTIONS(2560), + [anon_sym_bit_DASHand2] = ACTIONS(2560), + [anon_sym_bit_DASHxor2] = ACTIONS(2560), + [anon_sym_bit_DASHor2] = ACTIONS(2560), + [anon_sym_err_GT] = ACTIONS(2562), + [anon_sym_out_GT] = ACTIONS(2562), + [anon_sym_e_GT] = ACTIONS(2562), + [anon_sym_o_GT] = ACTIONS(2562), + [anon_sym_err_PLUSout_GT] = ACTIONS(2562), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2562), + [anon_sym_o_PLUSe_GT] = ACTIONS(2562), + [anon_sym_e_PLUSo_GT] = ACTIONS(2562), + [anon_sym_err_GT_GT] = ACTIONS(2560), + [anon_sym_out_GT_GT] = ACTIONS(2560), + [anon_sym_e_GT_GT] = ACTIONS(2560), + [anon_sym_o_GT_GT] = ACTIONS(2560), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2560), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2560), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2560), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2560), + [sym__unquoted_pattern] = ACTIONS(1691), [anon_sym_POUND] = ACTIONS(3), }, [STATE(994)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(994), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [ts_builtin_sym_end] = ACTIONS(2570), + [anon_sym_in] = ACTIONS(2570), + [sym__newline] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_err_GT_PIPE] = ACTIONS(2570), + [anon_sym_out_GT_PIPE] = ACTIONS(2570), + [anon_sym_e_GT_PIPE] = ACTIONS(2570), + [anon_sym_o_GT_PIPE] = ACTIONS(2570), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2570), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2570), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2570), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2570), + [anon_sym_GT2] = ACTIONS(2572), + [anon_sym_DASH2] = ACTIONS(2570), + [anon_sym_STAR2] = ACTIONS(2572), + [anon_sym_and2] = ACTIONS(2570), + [anon_sym_xor2] = ACTIONS(2570), + [anon_sym_or2] = ACTIONS(2570), + [anon_sym_not_DASHin2] = ACTIONS(2570), + [anon_sym_has2] = ACTIONS(2570), + [anon_sym_not_DASHhas2] = ACTIONS(2570), + [anon_sym_starts_DASHwith2] = ACTIONS(2570), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2570), + [anon_sym_ends_DASHwith2] = ACTIONS(2570), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2570), + [anon_sym_EQ_EQ2] = ACTIONS(2570), + [anon_sym_BANG_EQ2] = ACTIONS(2570), + [anon_sym_LT2] = ACTIONS(2572), + [anon_sym_LT_EQ2] = ACTIONS(2570), + [anon_sym_GT_EQ2] = ACTIONS(2570), + [anon_sym_EQ_TILDE2] = ACTIONS(2570), + [anon_sym_BANG_TILDE2] = ACTIONS(2570), + [anon_sym_like2] = ACTIONS(2570), + [anon_sym_not_DASHlike2] = ACTIONS(2570), + [anon_sym_LPAREN2] = ACTIONS(2574), + [anon_sym_STAR_STAR2] = ACTIONS(2570), + [anon_sym_PLUS_PLUS2] = ACTIONS(2570), + [anon_sym_SLASH2] = ACTIONS(2572), + [anon_sym_mod2] = ACTIONS(2570), + [anon_sym_SLASH_SLASH2] = ACTIONS(2570), + [anon_sym_PLUS2] = ACTIONS(2572), + [anon_sym_bit_DASHshl2] = ACTIONS(2570), + [anon_sym_bit_DASHshr2] = ACTIONS(2570), + [anon_sym_bit_DASHand2] = ACTIONS(2570), + [anon_sym_bit_DASHxor2] = ACTIONS(2570), + [anon_sym_bit_DASHor2] = ACTIONS(2570), + [anon_sym_err_GT] = ACTIONS(2572), + [anon_sym_out_GT] = ACTIONS(2572), + [anon_sym_e_GT] = ACTIONS(2572), + [anon_sym_o_GT] = ACTIONS(2572), + [anon_sym_err_PLUSout_GT] = ACTIONS(2572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2572), + [anon_sym_o_PLUSe_GT] = ACTIONS(2572), + [anon_sym_e_PLUSo_GT] = ACTIONS(2572), + [anon_sym_err_GT_GT] = ACTIONS(2570), + [anon_sym_out_GT_GT] = ACTIONS(2570), + [anon_sym_e_GT_GT] = ACTIONS(2570), + [anon_sym_o_GT_GT] = ACTIONS(2570), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2570), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2570), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2570), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2570), + [sym__unquoted_pattern] = ACTIONS(2576), [anon_sym_POUND] = ACTIONS(3), }, [STATE(995)] = { - [aux_sym__repeat_newline] = STATE(1040), + [aux_sym__repeat_newline] = STATE(1043), [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_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), [anon_sym_POUND] = ACTIONS(3), }, [STATE(996)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(996), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, [STATE(997)] = { - [aux_sym__repeat_newline] = STATE(1041), + [aux_sym__repeat_newline] = STATE(1044), [sym_comment] = STATE(997), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), [anon_sym_POUND] = ACTIONS(3), }, [STATE(998)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(998), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, [STATE(999)] = { - [aux_sym__repeat_newline] = STATE(1042), + [aux_sym__repeat_newline] = STATE(1045), [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_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1000)] = { - [aux_sym__repeat_newline] = STATE(1130), + [aux_sym__repeat_newline] = STATE(507), [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_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1001)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1046), [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_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1002)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [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_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1003)] = { - [aux_sym__repeat_newline] = STATE(1044), + [aux_sym__repeat_newline] = STATE(1048), [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_in] = ACTIONS(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1004)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1050), [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_in] = ACTIONS(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1005)] = { - [aux_sym__repeat_newline] = STATE(1355), - [sym__expression_parenthesized] = STATE(4361), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), [sym_comment] = STATE(1005), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(2668), + [anon_sym_export] = ACTIONS(2274), + [anon_sym_alias] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_mut] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [aux_sym_cmd_identifier_token1] = ACTIONS(2274), + [anon_sym_def] = ACTIONS(2276), + [anon_sym_use] = ACTIONS(2276), + [anon_sym_export_DASHenv] = ACTIONS(2276), + [anon_sym_extern] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_loop] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_catch] = ACTIONS(2276), + [anon_sym_match] = ACTIONS(2276), + [anon_sym_in] = ACTIONS(2274), + [anon_sym_true] = ACTIONS(2276), + [anon_sym_false] = ACTIONS(2276), + [anon_sym_null] = ACTIONS(2276), + [aux_sym_cmd_identifier_token3] = ACTIONS(2276), + [aux_sym_cmd_identifier_token4] = ACTIONS(2276), + [aux_sym_cmd_identifier_token5] = ACTIONS(2276), + [sym__newline] = 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_LBRACK] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_DOLLAR] = ACTIONS(2274), + [anon_sym_DASH2] = ACTIONS(2274), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_DOT_DOT] = ACTIONS(2274), + [anon_sym_where] = ACTIONS(2276), + [aux_sym_expr_unary_token1] = ACTIONS(2276), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2276), + [anon_sym_DOT_DOT_LT] = ACTIONS(2276), + [aux_sym__val_number_decimal_token1] = ACTIONS(2274), + [aux_sym__val_number_decimal_token2] = ACTIONS(2276), + [aux_sym__val_number_decimal_token3] = ACTIONS(2276), + [aux_sym__val_number_decimal_token4] = ACTIONS(2276), + [aux_sym__val_number_token1] = ACTIONS(2276), + [aux_sym__val_number_token2] = ACTIONS(2276), + [aux_sym__val_number_token3] = ACTIONS(2276), + [anon_sym_0b] = ACTIONS(2274), + [anon_sym_0o] = ACTIONS(2274), + [anon_sym_0x] = ACTIONS(2274), + [sym_val_date] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2276), + [anon_sym_BQUOTE] = ACTIONS(2276), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2276), + [anon_sym_CARET] = ACTIONS(2276), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2276), + }, + [STATE(1006)] = { + [aux_sym__repeat_newline] = STATE(1053), + [sym_comment] = STATE(1006), + [anon_sym_in] = ACTIONS(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1007)] = { + [sym_comment] = STATE(1007), + [anon_sym_export] = ACTIONS(2696), + [anon_sym_alias] = ACTIONS(2698), + [anon_sym_let] = ACTIONS(2698), + [anon_sym_mut] = ACTIONS(2698), + [anon_sym_const] = ACTIONS(2698), + [aux_sym_cmd_identifier_token1] = ACTIONS(2696), + [anon_sym_def] = ACTIONS(2698), + [anon_sym_use] = ACTIONS(2698), + [anon_sym_export_DASHenv] = ACTIONS(2698), + [anon_sym_extern] = ACTIONS(2698), + [anon_sym_module] = ACTIONS(2698), + [anon_sym_for] = ACTIONS(2698), + [anon_sym_loop] = ACTIONS(2698), + [anon_sym_while] = ACTIONS(2698), + [anon_sym_if] = ACTIONS(2698), + [anon_sym_else] = ACTIONS(2698), + [anon_sym_try] = ACTIONS(2698), + [anon_sym_catch] = ACTIONS(2698), + [anon_sym_match] = ACTIONS(2698), + [anon_sym_in] = ACTIONS(2696), + [anon_sym_true] = ACTIONS(2698), + [anon_sym_false] = ACTIONS(2698), + [anon_sym_null] = ACTIONS(2698), + [aux_sym_cmd_identifier_token3] = ACTIONS(2698), + [aux_sym_cmd_identifier_token4] = ACTIONS(2698), + [aux_sym_cmd_identifier_token5] = ACTIONS(2698), + [sym__newline] = 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_LBRACK] = ACTIONS(2698), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_DOLLAR] = ACTIONS(2696), + [anon_sym_DASH2] = ACTIONS(2696), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_DOT_DOT] = ACTIONS(2696), + [anon_sym_where] = ACTIONS(2698), + [aux_sym_expr_unary_token1] = ACTIONS(2698), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2698), + [anon_sym_DOT_DOT_LT] = ACTIONS(2698), + [aux_sym__val_number_decimal_token1] = ACTIONS(2696), + [aux_sym__val_number_decimal_token2] = ACTIONS(2698), + [aux_sym__val_number_decimal_token3] = ACTIONS(2698), + [aux_sym__val_number_decimal_token4] = ACTIONS(2698), + [aux_sym__val_number_token1] = ACTIONS(2698), + [aux_sym__val_number_token2] = ACTIONS(2698), + [aux_sym__val_number_token3] = ACTIONS(2698), + [anon_sym_0b] = ACTIONS(2696), + [anon_sym_0o] = ACTIONS(2696), + [anon_sym_0x] = ACTIONS(2696), + [sym_val_date] = ACTIONS(2698), + [anon_sym_DQUOTE] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2698), + [anon_sym_BQUOTE] = ACTIONS(2698), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2698), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2698), + [anon_sym_CARET] = ACTIONS(2698), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2698), + }, + [STATE(1008)] = { + [aux_sym__repeat_newline] = STATE(1055), + [sym_comment] = STATE(1008), + [anon_sym_in] = ACTIONS(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1009)] = { + [aux_sym__repeat_newline] = STATE(1057), + [sym_comment] = STATE(1009), + [anon_sym_in] = ACTIONS(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1010)] = { + [sym_comment] = STATE(1010), + [anon_sym_export] = ACTIONS(2146), + [anon_sym_alias] = ACTIONS(2144), + [anon_sym_let] = ACTIONS(2144), + [anon_sym_mut] = ACTIONS(2144), + [anon_sym_const] = ACTIONS(2144), + [aux_sym_cmd_identifier_token1] = ACTIONS(2146), + [anon_sym_def] = ACTIONS(2144), + [anon_sym_use] = ACTIONS(2144), + [anon_sym_export_DASHenv] = ACTIONS(2144), + [anon_sym_extern] = ACTIONS(2144), + [anon_sym_module] = ACTIONS(2144), + [anon_sym_for] = ACTIONS(2144), + [anon_sym_loop] = ACTIONS(2144), + [anon_sym_while] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_else] = ACTIONS(2144), + [anon_sym_try] = ACTIONS(2144), + [anon_sym_catch] = ACTIONS(2144), + [anon_sym_match] = ACTIONS(2144), + [anon_sym_in] = ACTIONS(2146), + [anon_sym_true] = ACTIONS(2144), + [anon_sym_false] = ACTIONS(2144), + [anon_sym_null] = ACTIONS(2144), + [aux_sym_cmd_identifier_token3] = ACTIONS(2144), + [aux_sym_cmd_identifier_token4] = ACTIONS(2144), + [aux_sym_cmd_identifier_token5] = ACTIONS(2144), + [sym__newline] = 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_LBRACK] = ACTIONS(2144), + [anon_sym_LPAREN] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DASH2] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_DOT_DOT] = ACTIONS(2146), + [anon_sym_where] = ACTIONS(2144), + [aux_sym_expr_unary_token1] = ACTIONS(2144), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2144), + [anon_sym_DOT_DOT_LT] = ACTIONS(2144), + [aux_sym__val_number_decimal_token1] = ACTIONS(2146), + [aux_sym__val_number_decimal_token2] = ACTIONS(2144), + [aux_sym__val_number_decimal_token3] = ACTIONS(2144), + [aux_sym__val_number_decimal_token4] = ACTIONS(2144), + [aux_sym__val_number_token1] = ACTIONS(2144), + [aux_sym__val_number_token2] = ACTIONS(2144), + [aux_sym__val_number_token3] = ACTIONS(2144), + [anon_sym_0b] = ACTIONS(2146), + [anon_sym_0o] = ACTIONS(2146), + [anon_sym_0x] = ACTIONS(2146), + [sym_val_date] = ACTIONS(2144), + [anon_sym_DQUOTE] = ACTIONS(2144), + [anon_sym_SQUOTE] = ACTIONS(2144), + [anon_sym_BQUOTE] = ACTIONS(2144), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2144), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2144), + [anon_sym_CARET] = ACTIONS(2144), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2144), + }, + [STATE(1011)] = { + [aux_sym__repeat_newline] = STATE(1357), + [sym__expression_parenthesized] = STATE(4409), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2128), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1832), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_comment] = STATE(1011), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(2700), [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(2638), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -121827,8423 +122549,8015 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1006)] = { - [aux_sym__repeat_newline] = STATE(1045), - [sym_comment] = STATE(1006), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [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), + [aux_sym__repeat_newline] = STATE(1130), [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_in] = ACTIONS(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1013)] = { - [aux_sym__repeat_newline] = STATE(1055), + [aux_sym__repeat_newline] = STATE(1061), [sym_comment] = STATE(1013), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1014)] = { - [aux_sym__repeat_newline] = STATE(1057), + [sym__expr_parenthesized_immediate] = STATE(4680), [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), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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_in] = ACTIONS(884), + [sym__newline] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(884), + [anon_sym_err_GT_PIPE] = ACTIONS(884), + [anon_sym_out_GT_PIPE] = ACTIONS(884), + [anon_sym_e_GT_PIPE] = ACTIONS(884), + [anon_sym_o_GT_PIPE] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(884), + [anon_sym_GT2] = ACTIONS(858), + [anon_sym_DASH2] = ACTIONS(884), + [anon_sym_RBRACE] = ACTIONS(884), + [anon_sym_STAR2] = ACTIONS(858), + [anon_sym_and2] = ACTIONS(884), + [anon_sym_xor2] = ACTIONS(884), + [anon_sym_or2] = ACTIONS(884), + [anon_sym_not_DASHin2] = ACTIONS(884), + [anon_sym_has2] = ACTIONS(884), + [anon_sym_not_DASHhas2] = ACTIONS(884), + [anon_sym_starts_DASHwith2] = ACTIONS(884), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(884), + [anon_sym_ends_DASHwith2] = ACTIONS(884), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(884), + [anon_sym_EQ_EQ2] = ACTIONS(884), + [anon_sym_BANG_EQ2] = ACTIONS(884), + [anon_sym_LT2] = ACTIONS(858), + [anon_sym_LT_EQ2] = ACTIONS(884), + [anon_sym_GT_EQ2] = ACTIONS(884), + [anon_sym_EQ_TILDE2] = ACTIONS(884), + [anon_sym_BANG_TILDE2] = ACTIONS(884), + [anon_sym_like2] = ACTIONS(884), + [anon_sym_not_DASHlike2] = ACTIONS(884), + [anon_sym_STAR_STAR2] = ACTIONS(884), + [anon_sym_PLUS_PLUS2] = ACTIONS(884), + [anon_sym_SLASH2] = ACTIONS(858), + [anon_sym_mod2] = ACTIONS(884), + [anon_sym_SLASH_SLASH2] = ACTIONS(884), + [anon_sym_PLUS2] = ACTIONS(858), + [anon_sym_bit_DASHshl2] = ACTIONS(884), + [anon_sym_bit_DASHshr2] = ACTIONS(884), + [anon_sym_bit_DASHand2] = ACTIONS(884), + [anon_sym_bit_DASHxor2] = ACTIONS(884), + [anon_sym_bit_DASHor2] = ACTIONS(884), + [anon_sym_err_GT] = ACTIONS(858), + [anon_sym_out_GT] = ACTIONS(858), + [anon_sym_e_GT] = ACTIONS(858), + [anon_sym_o_GT] = ACTIONS(858), + [anon_sym_err_PLUSout_GT] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT] = ACTIONS(858), + [anon_sym_o_PLUSe_GT] = ACTIONS(858), + [anon_sym_e_PLUSo_GT] = ACTIONS(858), + [anon_sym_err_GT_GT] = ACTIONS(884), + [anon_sym_out_GT_GT] = ACTIONS(884), + [anon_sym_e_GT_GT] = ACTIONS(884), + [anon_sym_o_GT_GT] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), + [sym__unquoted_pattern] = ACTIONS(1776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1016)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(1063), [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_in] = ACTIONS(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1017)] = { - [aux_sym__repeat_newline] = STATE(1062), + [aux_sym__repeat_newline] = STATE(1067), [sym_comment] = STATE(1017), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(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(1018)] = { - [aux_sym__repeat_newline] = STATE(1065), + [sym__expr_parenthesized_immediate] = STATE(4680), [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), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1019)] = { - [aux_sym__repeat_newline] = STATE(1067), + [aux_sym__repeat_newline] = STATE(1068), [sym_comment] = STATE(1019), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [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_in] = ACTIONS(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [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__expr_parenthesized_immediate] = STATE(4680), [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), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1746), + [sym__newline] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_PIPE] = ACTIONS(1746), + [anon_sym_err_GT_PIPE] = ACTIONS(1746), + [anon_sym_out_GT_PIPE] = ACTIONS(1746), + [anon_sym_e_GT_PIPE] = ACTIONS(1746), + [anon_sym_o_GT_PIPE] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1746), + [anon_sym_GT2] = ACTIONS(1748), + [anon_sym_DASH2] = ACTIONS(1746), + [anon_sym_STAR2] = ACTIONS(1748), + [anon_sym_and2] = ACTIONS(1746), + [anon_sym_xor2] = ACTIONS(1746), + [anon_sym_or2] = ACTIONS(1746), + [anon_sym_not_DASHin2] = ACTIONS(1746), + [anon_sym_has2] = ACTIONS(1746), + [anon_sym_not_DASHhas2] = ACTIONS(1746), + [anon_sym_starts_DASHwith2] = ACTIONS(1746), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1746), + [anon_sym_ends_DASHwith2] = ACTIONS(1746), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1746), + [anon_sym_EQ_EQ2] = ACTIONS(1746), + [anon_sym_BANG_EQ2] = ACTIONS(1746), + [anon_sym_LT2] = ACTIONS(1748), + [anon_sym_LT_EQ2] = ACTIONS(1746), + [anon_sym_GT_EQ2] = ACTIONS(1746), + [anon_sym_EQ_TILDE2] = ACTIONS(1746), + [anon_sym_BANG_TILDE2] = ACTIONS(1746), + [anon_sym_like2] = ACTIONS(1746), + [anon_sym_not_DASHlike2] = ACTIONS(1746), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_STAR_STAR2] = ACTIONS(1746), + [anon_sym_PLUS_PLUS2] = ACTIONS(1746), + [anon_sym_SLASH2] = ACTIONS(1748), + [anon_sym_mod2] = ACTIONS(1746), + [anon_sym_SLASH_SLASH2] = ACTIONS(1746), + [anon_sym_PLUS2] = ACTIONS(1748), + [anon_sym_bit_DASHshl2] = ACTIONS(1746), + [anon_sym_bit_DASHshr2] = ACTIONS(1746), + [anon_sym_bit_DASHand2] = ACTIONS(1746), + [anon_sym_bit_DASHxor2] = ACTIONS(1746), + [anon_sym_bit_DASHor2] = ACTIONS(1746), + [anon_sym_err_GT] = ACTIONS(1748), + [anon_sym_out_GT] = ACTIONS(1748), + [anon_sym_e_GT] = ACTIONS(1748), + [anon_sym_o_GT] = ACTIONS(1748), + [anon_sym_err_PLUSout_GT] = ACTIONS(1748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1748), + [anon_sym_o_PLUSe_GT] = ACTIONS(1748), + [anon_sym_e_PLUSo_GT] = ACTIONS(1748), + [anon_sym_err_GT_GT] = ACTIONS(1746), + [anon_sym_out_GT_GT] = ACTIONS(1746), + [anon_sym_e_GT_GT] = ACTIONS(1746), + [anon_sym_o_GT_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), + [sym__unquoted_pattern] = ACTIONS(1748), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1023)] = { - [aux_sym__repeat_newline] = STATE(1077), + [aux_sym__repeat_newline] = STATE(1072), [sym_comment] = STATE(1023), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2712), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2712), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_STAR2] = ACTIONS(2714), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2712), - [anon_sym_PLUS_PLUS2] = ACTIONS(2712), - [anon_sym_SLASH2] = ACTIONS(2714), - [anon_sym_mod2] = ACTIONS(2712), - [anon_sym_SLASH_SLASH2] = ACTIONS(2712), - [anon_sym_PLUS2] = ACTIONS(2714), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [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), + [ts_builtin_sym_end] = ACTIONS(1812), + [anon_sym_in] = ACTIONS(1812), + [sym__newline] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_err_GT_PIPE] = ACTIONS(1812), + [anon_sym_out_GT_PIPE] = ACTIONS(1812), + [anon_sym_e_GT_PIPE] = ACTIONS(1812), + [anon_sym_o_GT_PIPE] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1812), + [anon_sym_GT2] = ACTIONS(1814), + [anon_sym_DASH2] = ACTIONS(1812), + [anon_sym_STAR2] = ACTIONS(1814), + [anon_sym_and2] = ACTIONS(1812), + [anon_sym_xor2] = ACTIONS(1812), + [anon_sym_or2] = ACTIONS(1812), + [anon_sym_not_DASHin2] = ACTIONS(1812), + [anon_sym_has2] = ACTIONS(1812), + [anon_sym_not_DASHhas2] = ACTIONS(1812), + [anon_sym_starts_DASHwith2] = ACTIONS(1812), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1812), + [anon_sym_ends_DASHwith2] = ACTIONS(1812), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1812), + [anon_sym_EQ_EQ2] = ACTIONS(1812), + [anon_sym_BANG_EQ2] = ACTIONS(1812), + [anon_sym_LT2] = ACTIONS(1814), + [anon_sym_LT_EQ2] = ACTIONS(1812), + [anon_sym_GT_EQ2] = ACTIONS(1812), + [anon_sym_EQ_TILDE2] = ACTIONS(1812), + [anon_sym_BANG_TILDE2] = ACTIONS(1812), + [anon_sym_like2] = ACTIONS(1812), + [anon_sym_not_DASHlike2] = ACTIONS(1812), + [anon_sym_LPAREN2] = ACTIONS(1812), + [anon_sym_STAR_STAR2] = ACTIONS(1812), + [anon_sym_PLUS_PLUS2] = ACTIONS(1812), + [anon_sym_SLASH2] = ACTIONS(1814), + [anon_sym_mod2] = ACTIONS(1812), + [anon_sym_SLASH_SLASH2] = ACTIONS(1812), + [anon_sym_PLUS2] = ACTIONS(1814), + [anon_sym_bit_DASHshl2] = ACTIONS(1812), + [anon_sym_bit_DASHshr2] = ACTIONS(1812), + [anon_sym_bit_DASHand2] = ACTIONS(1812), + [anon_sym_bit_DASHxor2] = ACTIONS(1812), + [anon_sym_bit_DASHor2] = ACTIONS(1812), + [anon_sym_err_GT] = ACTIONS(1814), + [anon_sym_out_GT] = ACTIONS(1814), + [anon_sym_e_GT] = ACTIONS(1814), + [anon_sym_o_GT] = ACTIONS(1814), + [anon_sym_err_PLUSout_GT] = ACTIONS(1814), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1814), + [anon_sym_o_PLUSe_GT] = ACTIONS(1814), + [anon_sym_e_PLUSo_GT] = ACTIONS(1814), + [anon_sym_err_GT_GT] = ACTIONS(1812), + [anon_sym_out_GT_GT] = ACTIONS(1812), + [anon_sym_e_GT_GT] = ACTIONS(1812), + [anon_sym_o_GT_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1812), + [sym__unquoted_pattern] = ACTIONS(1814), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1025)] = { + [sym__expr_parenthesized_immediate] = STATE(4680), [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), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1026)] = { + [aux_sym__repeat_newline] = STATE(1075), [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_in] = ACTIONS(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [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), + [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_LPAREN2] = 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_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), + [sym__unquoted_pattern] = ACTIONS(1902), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1028)] = { + [aux_sym__repeat_newline] = STATE(1077), [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_in] = ACTIONS(2292), + [sym__newline] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_err_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_GT_PIPE] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_GT2] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_STAR2] = ACTIONS(2294), + [anon_sym_and2] = ACTIONS(2292), + [anon_sym_xor2] = ACTIONS(2292), + [anon_sym_or2] = ACTIONS(2292), + [anon_sym_not_DASHin2] = ACTIONS(2292), + [anon_sym_has2] = ACTIONS(2292), + [anon_sym_not_DASHhas2] = ACTIONS(2292), + [anon_sym_starts_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), + [anon_sym_ends_DASHwith2] = ACTIONS(2292), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), + [anon_sym_EQ_EQ2] = ACTIONS(2292), + [anon_sym_BANG_EQ2] = ACTIONS(2292), + [anon_sym_LT2] = ACTIONS(2294), + [anon_sym_LT_EQ2] = ACTIONS(2292), + [anon_sym_GT_EQ2] = ACTIONS(2292), + [anon_sym_EQ_TILDE2] = ACTIONS(2292), + [anon_sym_BANG_TILDE2] = ACTIONS(2292), + [anon_sym_like2] = ACTIONS(2292), + [anon_sym_not_DASHlike2] = ACTIONS(2292), + [anon_sym_STAR_STAR2] = ACTIONS(2292), + [anon_sym_PLUS_PLUS2] = ACTIONS(2292), + [anon_sym_SLASH2] = ACTIONS(2294), + [anon_sym_mod2] = ACTIONS(2292), + [anon_sym_SLASH_SLASH2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_bit_DASHshl2] = ACTIONS(2292), + [anon_sym_bit_DASHshr2] = ACTIONS(2292), + [anon_sym_bit_DASHand2] = ACTIONS(2292), + [anon_sym_bit_DASHxor2] = ACTIONS(2292), + [anon_sym_bit_DASHor2] = ACTIONS(2292), + [anon_sym_err_GT] = ACTIONS(2294), + [anon_sym_out_GT] = ACTIONS(2294), + [anon_sym_e_GT] = ACTIONS(2294), + [anon_sym_o_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT] = ACTIONS(2294), + [anon_sym_err_GT_GT] = ACTIONS(2292), + [anon_sym_out_GT_GT] = ACTIONS(2292), + [anon_sym_e_GT_GT] = ACTIONS(2292), + [anon_sym_o_GT_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1029)] = { - [aux_sym__repeat_newline] = STATE(1082), + [sym__expr_parenthesized_immediate] = STATE(4680), [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), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1030)] = { - [aux_sym__repeat_newline] = STATE(980), + [sym__expr_parenthesized_immediate] = STATE(4680), [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), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1031)] = { - [aux_sym__repeat_newline] = STATE(1085), + [sym__expr_parenthesized_immediate] = STATE(4680), [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), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1032)] = { - [aux_sym__repeat_newline] = STATE(1088), + [sym__expr_parenthesized_immediate] = STATE(4680), [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), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1033)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(507), [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_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(1034)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1034), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_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(1035)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1035), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(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(1036)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1036), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [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(1037)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1037), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [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(1038)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1038), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(3), + [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(1039)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1039), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [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(1040)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [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_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(1041)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [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_in] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2712), + [anon_sym_DASH2] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_STAR2] = ACTIONS(2712), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2710), + [anon_sym_has2] = ACTIONS(2710), + [anon_sym_not_DASHhas2] = ACTIONS(2710), + [anon_sym_starts_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), + [anon_sym_ends_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), + [anon_sym_EQ_EQ2] = ACTIONS(2710), + [anon_sym_BANG_EQ2] = ACTIONS(2710), + [anon_sym_LT2] = ACTIONS(2712), + [anon_sym_LT_EQ2] = ACTIONS(2710), + [anon_sym_GT_EQ2] = ACTIONS(2710), + [anon_sym_EQ_TILDE2] = ACTIONS(2710), + [anon_sym_BANG_TILDE2] = ACTIONS(2710), + [anon_sym_like2] = ACTIONS(2710), + [anon_sym_not_DASHlike2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2710), + [anon_sym_PLUS_PLUS2] = ACTIONS(2710), + [anon_sym_SLASH2] = ACTIONS(2712), + [anon_sym_mod2] = ACTIONS(2710), + [anon_sym_SLASH_SLASH2] = ACTIONS(2710), + [anon_sym_PLUS2] = ACTIONS(2712), + [anon_sym_bit_DASHshl2] = ACTIONS(2710), + [anon_sym_bit_DASHshr2] = ACTIONS(2710), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1042)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1042), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_STAR2] = ACTIONS(2722), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2720), - [anon_sym_PLUS_PLUS2] = ACTIONS(2720), - [anon_sym_SLASH2] = ACTIONS(2722), - [anon_sym_mod2] = ACTIONS(2720), - [anon_sym_SLASH_SLASH2] = ACTIONS(2720), - [anon_sym_PLUS2] = ACTIONS(2722), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [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(1043)] = { + [aux_sym__repeat_newline] = STATE(507), [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), + [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(1044)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1044), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [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(1045)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1045), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(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(1046)] = { - [aux_sym__repeat_newline] = STATE(983), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1046), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(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(1047)] = { + [aux_sym__repeat_newline] = STATE(1080), [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_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_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_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(1048)] = { - [aux_sym__repeat_newline] = STATE(986), + [aux_sym__repeat_newline] = STATE(507), [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_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1049)] = { + [aux_sym__repeat_newline] = STATE(1081), [sym_comment] = STATE(1049), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_in] = ACTIONS(994), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(994), - [anon_sym_xor2] = ACTIONS(994), - [anon_sym_or2] = ACTIONS(994), - [anon_sym_not_DASHin2] = ACTIONS(994), - [anon_sym_has2] = ACTIONS(994), - [anon_sym_not_DASHhas2] = ACTIONS(994), - [anon_sym_starts_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), - [anon_sym_ends_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), - [anon_sym_EQ_EQ2] = ACTIONS(994), - [anon_sym_BANG_EQ2] = ACTIONS(994), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(994), - [anon_sym_GT_EQ2] = ACTIONS(994), - [anon_sym_EQ_TILDE2] = ACTIONS(994), - [anon_sym_BANG_TILDE2] = ACTIONS(994), - [anon_sym_like2] = ACTIONS(994), - [anon_sym_not_DASHlike2] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_STAR_STAR2] = ACTIONS(994), - [anon_sym_PLUS_PLUS2] = ACTIONS(994), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(994), - [anon_sym_SLASH_SLASH2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(994), - [anon_sym_bit_DASHshr2] = ACTIONS(994), - [anon_sym_bit_DASHand2] = ACTIONS(994), - [anon_sym_bit_DASHxor2] = ACTIONS(994), - [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [sym__unquoted_pattern] = ACTIONS(2585), + [anon_sym_in] = ACTIONS(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_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_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(1050)] = { + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1018), - [sym__newline] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_err_GT_PIPE] = ACTIONS(1018), - [anon_sym_out_GT_PIPE] = ACTIONS(1018), - [anon_sym_e_GT_PIPE] = ACTIONS(1018), - [anon_sym_o_GT_PIPE] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1018), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1018), - [anon_sym_xor2] = ACTIONS(1018), - [anon_sym_or2] = ACTIONS(1018), - [anon_sym_not_DASHin2] = ACTIONS(1018), - [anon_sym_has2] = ACTIONS(1018), - [anon_sym_not_DASHhas2] = ACTIONS(1018), - [anon_sym_starts_DASHwith2] = ACTIONS(1018), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1018), - [anon_sym_ends_DASHwith2] = ACTIONS(1018), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1018), - [anon_sym_EQ_EQ2] = ACTIONS(1018), - [anon_sym_BANG_EQ2] = ACTIONS(1018), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1018), - [anon_sym_GT_EQ2] = ACTIONS(1018), - [anon_sym_EQ_TILDE2] = ACTIONS(1018), - [anon_sym_BANG_TILDE2] = ACTIONS(1018), - [anon_sym_like2] = ACTIONS(1018), - [anon_sym_not_DASHlike2] = ACTIONS(1018), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_STAR_STAR2] = ACTIONS(1018), - [anon_sym_PLUS_PLUS2] = ACTIONS(1018), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1018), - [anon_sym_SLASH_SLASH2] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1018), - [anon_sym_bit_DASHshr2] = ACTIONS(1018), - [anon_sym_bit_DASHand2] = ACTIONS(1018), - [anon_sym_bit_DASHxor2] = ACTIONS(1018), - [anon_sym_bit_DASHor2] = ACTIONS(1018), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1018), - [anon_sym_out_GT_GT] = ACTIONS(1018), - [anon_sym_e_GT_GT] = ACTIONS(1018), - [anon_sym_o_GT_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1018), - [sym__unquoted_pattern] = ACTIONS(2585), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1051)] = { - [aux_sym__repeat_newline] = STATE(990), + [sym__expr_parenthesized_immediate] = STATE(4680), [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), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1052)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1082), [sym_comment] = STATE(1052), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_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_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_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(1053)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1053), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1054)] = { - [aux_sym__repeat_newline] = STATE(1091), + [aux_sym__repeat_newline] = STATE(1083), [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(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_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_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(1055)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1055), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1056)] = { - [aux_sym__repeat_newline] = STATE(1092), + [aux_sym__repeat_newline] = STATE(1084), [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), + [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_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_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(1057)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [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(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1058)] = { - [aux_sym__repeat_newline] = STATE(992), + [sym__expr_parenthesized_immediate] = STATE(4680), [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(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1059)] = { - [aux_sym__repeat_newline] = STATE(1093), + [aux_sym__repeat_newline] = STATE(1085), [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(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_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_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(1060)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1086), [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_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_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), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1063)] = { - [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_POUND] = ACTIONS(3), - }, - [STATE(1064)] = { - [aux_sym__repeat_newline] = STATE(1095), - [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_POUND] = ACTIONS(3), - }, - [STATE(1065)] = { - [aux_sym__repeat_newline] = STATE(540), - [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_POUND] = ACTIONS(3), - }, - [STATE(1066)] = { - [aux_sym__repeat_newline] = STATE(1096), - [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_POUND] = ACTIONS(3), - }, - [STATE(1067)] = { - [aux_sym__repeat_newline] = STATE(540), - [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_POUND] = ACTIONS(3), - }, - [STATE(1068)] = { - [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_POUND] = ACTIONS(3), - }, - [STATE(1069)] = { - [aux_sym__repeat_newline] = STATE(1097), - [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_POUND] = ACTIONS(3), - }, - [STATE(1070)] = { - [aux_sym__repeat_newline] = STATE(540), - [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_POUND] = ACTIONS(3), - }, - [STATE(1071)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), - [sym_comment] = STATE(1071), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1072)] = { - [aux_sym__repeat_newline] = STATE(1098), - [sym_comment] = STATE(1072), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1073)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1073), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1074)] = { - [aux_sym__repeat_newline] = STATE(1099), + [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_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_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(1061)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1061), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1062)] = { + [aux_sym__repeat_newline] = STATE(1087), + [sym_comment] = STATE(1062), + [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_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_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(1063)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1063), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1064)] = { + [aux_sym__repeat_newline] = STATE(1088), + [sym_comment] = STATE(1064), + [anon_sym_in] = ACTIONS(2718), + [sym__newline] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2720), + [anon_sym_DASH2] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_STAR2] = ACTIONS(2720), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2718), + [anon_sym_has2] = ACTIONS(2718), + [anon_sym_not_DASHhas2] = ACTIONS(2718), + [anon_sym_starts_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2718), + [anon_sym_ends_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2718), + [anon_sym_EQ_EQ2] = ACTIONS(2718), + [anon_sym_BANG_EQ2] = ACTIONS(2718), + [anon_sym_LT2] = ACTIONS(2720), + [anon_sym_LT_EQ2] = ACTIONS(2718), + [anon_sym_GT_EQ2] = ACTIONS(2718), + [anon_sym_EQ_TILDE2] = ACTIONS(2718), + [anon_sym_BANG_TILDE2] = ACTIONS(2718), + [anon_sym_like2] = ACTIONS(2718), + [anon_sym_not_DASHlike2] = ACTIONS(2718), + [anon_sym_STAR_STAR2] = ACTIONS(2718), + [anon_sym_PLUS_PLUS2] = ACTIONS(2718), + [anon_sym_SLASH2] = ACTIONS(2720), + [anon_sym_mod2] = ACTIONS(2718), + [anon_sym_SLASH_SLASH2] = ACTIONS(2718), + [anon_sym_PLUS2] = ACTIONS(2720), + [anon_sym_bit_DASHshl2] = ACTIONS(2718), + [anon_sym_bit_DASHshr2] = ACTIONS(2718), + [anon_sym_bit_DASHand2] = ACTIONS(2718), + [anon_sym_bit_DASHxor2] = ACTIONS(2718), + [anon_sym_bit_DASHor2] = ACTIONS(2718), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1065)] = { + [sym__expr_parenthesized_immediate] = STATE(4680), + [sym_comment] = STATE(1065), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1066)] = { + [aux_sym__repeat_newline] = STATE(1089), + [sym_comment] = STATE(1066), + [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_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_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(1067)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1067), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2724), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2722), + [anon_sym_PLUS_PLUS2] = ACTIONS(2722), + [anon_sym_SLASH2] = ACTIONS(2724), + [anon_sym_mod2] = ACTIONS(2722), + [anon_sym_SLASH_SLASH2] = ACTIONS(2722), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1068)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1068), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1069)] = { + [aux_sym__repeat_newline] = STATE(1090), + [sym_comment] = STATE(1069), + [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_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_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(1070)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1070), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1071)] = { + [aux_sym__repeat_newline] = STATE(1091), + [sym_comment] = STATE(1071), + [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_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_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(1072)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1072), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1073)] = { + [sym__expr_parenthesized_immediate] = STATE(4680), + [sym_comment] = STATE(1073), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1074)] = { + [aux_sym__repeat_newline] = STATE(1092), [sym_comment] = STATE(1074), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2728), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2728), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_STAR2] = ACTIONS(2730), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2728), - [anon_sym_PLUS_PLUS2] = ACTIONS(2728), - [anon_sym_SLASH2] = ACTIONS(2730), - [anon_sym_mod2] = ACTIONS(2728), - [anon_sym_SLASH_SLASH2] = ACTIONS(2728), - [anon_sym_PLUS2] = ACTIONS(2730), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(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_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_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(1075)] = { - [aux_sym__repeat_newline] = STATE(994), + [aux_sym__repeat_newline] = STATE(507), [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(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1076)] = { - [aux_sym__repeat_newline] = STATE(1100), + [aux_sym__repeat_newline] = STATE(1093), [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(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_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_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(1077)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [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(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1078)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(4342), + [sym__match_pattern_expression] = STATE(4285), + [sym__match_pattern_value] = STATE(4441), + [sym__match_pattern_list_body] = STATE(4658), + [sym__match_pattern_list] = STATE(4454), + [sym__match_pattern_rest] = STATE(5063), + [sym__match_pattern_record] = STATE(4455), + [sym_expr_parenthesized] = STATE(3791), + [sym_val_range] = STATE(4441), + [sym__val_range] = STATE(5087), + [sym_val_nothing] = STATE(4455), + [sym_val_bool] = STATE(4146), + [sym_val_variable] = STATE(3792), + [sym_val_number] = STATE(4455), + [sym__val_number_decimal] = STATE(3552), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4455), + [sym_val_filesize] = STATE(4455), + [sym_val_binary] = STATE(4455), + [sym_val_string] = STATE(4455), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_list] = STATE(5056), + [sym__table_head] = STATE(3723), + [sym_val_table] = STATE(4455), + [sym__unquoted_in_list] = STATE(4285), + [sym__unquoted_anonymous_prefix] = STATE(5087), [sym_comment] = STATE(1078), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(1397), + [aux_sym_parameter_repeat2] = STATE(4091), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1420), + [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(2726), + [anon_sym_LBRACK] = ACTIONS(2728), + [anon_sym_RBRACK] = ACTIONS(2730), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1398), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2734), + [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(2736), + [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(1079)] = { - [aux_sym__repeat_newline] = STATE(1101), + [sym__expression] = STATE(4735), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1832), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), [sym_comment] = STATE(1079), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2738), + [anon_sym_true] = ACTIONS(2632), + [anon_sym_false] = ACTIONS(2632), + [anon_sym_null] = ACTIONS(2634), + [aux_sym_cmd_identifier_token3] = ACTIONS(2636), + [aux_sym_cmd_identifier_token4] = ACTIONS(2636), + [aux_sym_cmd_identifier_token5] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [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(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2046), + [aux_sym__val_number_decimal_token3] = ACTIONS(2640), + [aux_sym__val_number_decimal_token4] = ACTIONS(2640), + [aux_sym__val_number_token1] = ACTIONS(2636), + [aux_sym__val_number_token2] = ACTIONS(2636), + [aux_sym__val_number_token3] = ACTIONS(2636), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2642), + [anon_sym_DQUOTE] = ACTIONS(197), + [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(2740), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1080)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [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(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(1081)] = { - [aux_sym__repeat_newline] = STATE(1102), + [aux_sym__repeat_newline] = STATE(507), [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(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(1082)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [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)] = { + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1083), - [ts_builtin_sym_end] = ACTIONS(2523), - [anon_sym_in] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_PIPE] = ACTIONS(2523), - [anon_sym_err_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_GT_PIPE] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2523), - [anon_sym_GT2] = ACTIONS(2525), - [anon_sym_DASH2] = ACTIONS(2523), - [anon_sym_STAR2] = ACTIONS(2525), - [anon_sym_and2] = ACTIONS(2523), - [anon_sym_xor2] = ACTIONS(2523), - [anon_sym_or2] = ACTIONS(2523), - [anon_sym_not_DASHin2] = ACTIONS(2523), - [anon_sym_has2] = ACTIONS(2523), - [anon_sym_not_DASHhas2] = ACTIONS(2523), - [anon_sym_starts_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2523), - [anon_sym_ends_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2523), - [anon_sym_EQ_EQ2] = ACTIONS(2523), - [anon_sym_BANG_EQ2] = ACTIONS(2523), - [anon_sym_LT2] = ACTIONS(2525), - [anon_sym_LT_EQ2] = ACTIONS(2523), - [anon_sym_GT_EQ2] = ACTIONS(2523), - [anon_sym_EQ_TILDE2] = ACTIONS(2523), - [anon_sym_BANG_TILDE2] = ACTIONS(2523), - [anon_sym_like2] = ACTIONS(2523), - [anon_sym_not_DASHlike2] = ACTIONS(2523), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_STAR_STAR2] = ACTIONS(2523), - [anon_sym_PLUS_PLUS2] = ACTIONS(2523), - [anon_sym_SLASH2] = ACTIONS(2525), - [anon_sym_mod2] = ACTIONS(2523), - [anon_sym_SLASH_SLASH2] = ACTIONS(2523), - [anon_sym_PLUS2] = ACTIONS(2525), - [anon_sym_bit_DASHshl2] = ACTIONS(2523), - [anon_sym_bit_DASHshr2] = ACTIONS(2523), - [anon_sym_bit_DASHand2] = ACTIONS(2523), - [anon_sym_bit_DASHxor2] = ACTIONS(2523), - [anon_sym_bit_DASHor2] = ACTIONS(2523), - [anon_sym_err_GT] = ACTIONS(2525), - [anon_sym_out_GT] = ACTIONS(2525), - [anon_sym_e_GT] = ACTIONS(2525), - [anon_sym_o_GT] = ACTIONS(2525), - [anon_sym_err_PLUSout_GT] = ACTIONS(2525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2525), - [anon_sym_o_PLUSe_GT] = ACTIONS(2525), - [anon_sym_e_PLUSo_GT] = ACTIONS(2525), - [anon_sym_err_GT_GT] = ACTIONS(2523), - [anon_sym_out_GT_GT] = ACTIONS(2523), - [anon_sym_e_GT_GT] = ACTIONS(2523), - [anon_sym_o_GT_GT] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2523), - [sym__unquoted_pattern] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(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(1084)] = { - [aux_sym__repeat_newline] = STATE(1106), + [aux_sym__repeat_newline] = STATE(507), [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(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(1085)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [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(507), [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(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(1087)] = { - [aux_sym__repeat_newline] = STATE(1107), + [aux_sym__repeat_newline] = STATE(507), [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(507), [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(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(1089)] = { - [aux_sym__repeat_newline] = STATE(996), + [aux_sym__repeat_newline] = STATE(507), [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(507), [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(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(1091)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [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(507), [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(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(1093)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [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(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(1094)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expression] = STATE(4743), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1832), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), [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_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2738), + [anon_sym_true] = ACTIONS(2632), + [anon_sym_false] = ACTIONS(2632), + [anon_sym_null] = ACTIONS(2634), + [aux_sym_cmd_identifier_token3] = ACTIONS(2636), + [aux_sym_cmd_identifier_token4] = ACTIONS(2636), + [aux_sym_cmd_identifier_token5] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [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(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2046), + [aux_sym__val_number_decimal_token3] = ACTIONS(2640), + [aux_sym__val_number_decimal_token4] = ACTIONS(2640), + [aux_sym__val_number_token1] = ACTIONS(2636), + [aux_sym__val_number_token2] = ACTIONS(2636), + [aux_sym__val_number_token3] = ACTIONS(2636), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2642), + [anon_sym_DQUOTE] = ACTIONS(197), + [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(2740), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1095)] = { - [aux_sym__repeat_newline] = STATE(540), [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_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2630), + [anon_sym_in] = ACTIONS(2508), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2508), + [anon_sym_RBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2508), + [anon_sym_xor2] = ACTIONS(2508), + [anon_sym_or2] = ACTIONS(2508), + [anon_sym_not_DASHin2] = ACTIONS(2508), + [anon_sym_has2] = ACTIONS(2508), + [anon_sym_not_DASHhas2] = ACTIONS(2508), + [anon_sym_starts_DASHwith2] = ACTIONS(2508), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2508), + [anon_sym_ends_DASHwith2] = ACTIONS(2508), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2508), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2508), + [anon_sym_like2] = ACTIONS(2508), + [anon_sym_not_DASHlike2] = ACTIONS(2508), + [anon_sym_STAR_STAR2] = ACTIONS(2508), + [anon_sym_PLUS_PLUS2] = ACTIONS(2508), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2508), + [anon_sym_SLASH_SLASH2] = ACTIONS(2508), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2508), + [anon_sym_bit_DASHshr2] = ACTIONS(2508), + [anon_sym_bit_DASHand2] = ACTIONS(2508), + [anon_sym_bit_DASHxor2] = ACTIONS(2508), + [anon_sym_bit_DASHor2] = ACTIONS(2508), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1096)] = { - [aux_sym__repeat_newline] = STATE(540), [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_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2630), + [anon_sym_in] = ACTIONS(2523), + [sym__newline] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_err_GT_PIPE] = ACTIONS(2521), + [anon_sym_out_GT_PIPE] = ACTIONS(2521), + [anon_sym_e_GT_PIPE] = ACTIONS(2521), + [anon_sym_o_GT_PIPE] = ACTIONS(2521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2521), + [anon_sym_RPAREN] = ACTIONS(2521), + [anon_sym_GT2] = ACTIONS(2523), + [anon_sym_DASH2] = ACTIONS(2523), + [anon_sym_RBRACE] = ACTIONS(2521), + [anon_sym_STAR2] = ACTIONS(2523), + [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(2521), + [anon_sym_BANG_EQ2] = ACTIONS(2521), + [anon_sym_LT2] = ACTIONS(2523), + [anon_sym_LT_EQ2] = ACTIONS(2521), + [anon_sym_GT_EQ2] = ACTIONS(2521), + [anon_sym_EQ_TILDE2] = ACTIONS(2521), + [anon_sym_BANG_TILDE2] = ACTIONS(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(2523), + [anon_sym_mod2] = ACTIONS(2523), + [anon_sym_SLASH_SLASH2] = ACTIONS(2523), + [anon_sym_PLUS2] = ACTIONS(2523), + [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(2523), + [anon_sym_out_GT] = ACTIONS(2523), + [anon_sym_e_GT] = ACTIONS(2523), + [anon_sym_o_GT] = ACTIONS(2523), + [anon_sym_err_PLUSout_GT] = ACTIONS(2523), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2523), + [anon_sym_o_PLUSe_GT] = ACTIONS(2523), + [anon_sym_e_PLUSo_GT] = ACTIONS(2523), + [anon_sym_err_GT_GT] = ACTIONS(2521), + [anon_sym_out_GT_GT] = ACTIONS(2521), + [anon_sym_e_GT_GT] = ACTIONS(2521), + [anon_sym_o_GT_GT] = ACTIONS(2521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1097)] = { - [aux_sym__repeat_newline] = STATE(540), [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_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2630), + [anon_sym_in] = ACTIONS(858), + [sym__newline] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(884), + [anon_sym_err_GT_PIPE] = ACTIONS(884), + [anon_sym_out_GT_PIPE] = ACTIONS(884), + [anon_sym_e_GT_PIPE] = ACTIONS(884), + [anon_sym_o_GT_PIPE] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), + [anon_sym_RPAREN] = ACTIONS(884), + [anon_sym_GT2] = ACTIONS(858), + [anon_sym_DASH2] = ACTIONS(858), + [anon_sym_RBRACE] = ACTIONS(884), + [anon_sym_STAR2] = ACTIONS(858), + [anon_sym_and2] = ACTIONS(858), + [anon_sym_xor2] = ACTIONS(858), + [anon_sym_or2] = ACTIONS(858), + [anon_sym_not_DASHin2] = ACTIONS(858), + [anon_sym_has2] = ACTIONS(858), + [anon_sym_not_DASHhas2] = ACTIONS(858), + [anon_sym_starts_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), + [anon_sym_ends_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), + [anon_sym_EQ_EQ2] = ACTIONS(884), + [anon_sym_BANG_EQ2] = ACTIONS(884), + [anon_sym_LT2] = ACTIONS(858), + [anon_sym_LT_EQ2] = ACTIONS(884), + [anon_sym_GT_EQ2] = ACTIONS(884), + [anon_sym_EQ_TILDE2] = ACTIONS(884), + [anon_sym_BANG_TILDE2] = ACTIONS(858), + [anon_sym_like2] = ACTIONS(858), + [anon_sym_not_DASHlike2] = ACTIONS(858), + [anon_sym_STAR_STAR2] = ACTIONS(858), + [anon_sym_PLUS_PLUS2] = ACTIONS(858), + [anon_sym_SLASH2] = ACTIONS(858), + [anon_sym_mod2] = ACTIONS(858), + [anon_sym_SLASH_SLASH2] = ACTIONS(858), + [anon_sym_PLUS2] = ACTIONS(858), + [anon_sym_bit_DASHshl2] = ACTIONS(858), + [anon_sym_bit_DASHshr2] = ACTIONS(858), + [anon_sym_bit_DASHand2] = ACTIONS(858), + [anon_sym_bit_DASHxor2] = ACTIONS(858), + [anon_sym_bit_DASHor2] = ACTIONS(858), + [anon_sym_err_GT] = ACTIONS(858), + [anon_sym_out_GT] = ACTIONS(858), + [anon_sym_e_GT] = ACTIONS(858), + [anon_sym_o_GT] = ACTIONS(858), + [anon_sym_err_PLUSout_GT] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT] = ACTIONS(858), + [anon_sym_o_PLUSe_GT] = ACTIONS(858), + [anon_sym_e_PLUSo_GT] = ACTIONS(858), + [anon_sym_err_GT_GT] = ACTIONS(884), + [anon_sym_out_GT_GT] = ACTIONS(884), + [anon_sym_e_GT_GT] = ACTIONS(884), + [anon_sym_o_GT_GT] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1098)] = { - [aux_sym__repeat_newline] = STATE(540), [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_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2738), + [anon_sym_in] = ACTIONS(858), + [sym__newline] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(884), + [anon_sym_err_GT_PIPE] = ACTIONS(884), + [anon_sym_out_GT_PIPE] = ACTIONS(884), + [anon_sym_e_GT_PIPE] = ACTIONS(884), + [anon_sym_o_GT_PIPE] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), + [anon_sym_GT2] = ACTIONS(858), + [anon_sym_DASH2] = ACTIONS(858), + [anon_sym_RBRACE] = ACTIONS(884), + [anon_sym_STAR2] = ACTIONS(858), + [anon_sym_and2] = ACTIONS(858), + [anon_sym_xor2] = ACTIONS(858), + [anon_sym_or2] = ACTIONS(858), + [anon_sym_not_DASHin2] = ACTIONS(858), + [anon_sym_has2] = ACTIONS(858), + [anon_sym_not_DASHhas2] = ACTIONS(858), + [anon_sym_starts_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), + [anon_sym_ends_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), + [anon_sym_EQ_EQ2] = ACTIONS(884), + [anon_sym_BANG_EQ2] = ACTIONS(884), + [anon_sym_LT2] = ACTIONS(858), + [anon_sym_LT_EQ2] = ACTIONS(884), + [anon_sym_GT_EQ2] = ACTIONS(884), + [anon_sym_EQ_TILDE2] = ACTIONS(884), + [anon_sym_BANG_TILDE2] = ACTIONS(858), + [anon_sym_like2] = ACTIONS(858), + [anon_sym_not_DASHlike2] = ACTIONS(858), + [anon_sym_STAR_STAR2] = ACTIONS(858), + [anon_sym_PLUS_PLUS2] = ACTIONS(858), + [anon_sym_SLASH2] = ACTIONS(858), + [anon_sym_mod2] = ACTIONS(858), + [anon_sym_SLASH_SLASH2] = ACTIONS(858), + [anon_sym_PLUS2] = ACTIONS(858), + [anon_sym_bit_DASHshl2] = ACTIONS(858), + [anon_sym_bit_DASHshr2] = ACTIONS(858), + [anon_sym_bit_DASHand2] = ACTIONS(858), + [anon_sym_bit_DASHxor2] = ACTIONS(858), + [anon_sym_bit_DASHor2] = ACTIONS(858), + [anon_sym_COLON2] = ACTIONS(884), + [anon_sym_err_GT] = ACTIONS(858), + [anon_sym_out_GT] = ACTIONS(858), + [anon_sym_e_GT] = ACTIONS(858), + [anon_sym_o_GT] = ACTIONS(858), + [anon_sym_err_PLUSout_GT] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT] = ACTIONS(858), + [anon_sym_o_PLUSe_GT] = ACTIONS(858), + [anon_sym_e_PLUSo_GT] = ACTIONS(858), + [anon_sym_err_GT_GT] = ACTIONS(884), + [anon_sym_out_GT_GT] = ACTIONS(884), + [anon_sym_e_GT_GT] = ACTIONS(884), + [anon_sym_o_GT_GT] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1099)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(4342), + [sym__match_pattern_expression] = STATE(4285), + [sym__match_pattern_value] = STATE(4441), + [sym__match_pattern_list_body] = STATE(4472), + [sym__match_pattern_list] = STATE(4454), + [sym__match_pattern_rest] = STATE(5031), + [sym__match_pattern_record] = STATE(4455), + [sym_expr_parenthesized] = STATE(3791), + [sym_val_range] = STATE(4441), + [sym__val_range] = STATE(5087), + [sym_val_nothing] = STATE(4455), + [sym_val_bool] = STATE(4146), + [sym_val_variable] = STATE(3792), + [sym_val_number] = STATE(4455), + [sym__val_number_decimal] = STATE(3552), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4455), + [sym_val_filesize] = STATE(4455), + [sym_val_binary] = STATE(4455), + [sym_val_string] = STATE(4455), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_list] = STATE(5056), + [sym__table_head] = STATE(3709), + [sym_val_table] = STATE(4455), + [sym__unquoted_in_list] = STATE(4285), + [sym__unquoted_anonymous_prefix] = STATE(5087), [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_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(1397), + [aux_sym_parameter_repeat2] = STATE(4091), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1420), + [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(2726), + [anon_sym_LBRACK] = ACTIONS(2728), + [anon_sym_RBRACK] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1398), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_DOT_DOT] = ACTIONS(2752), + [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(2736), + [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(1100)] = { - [aux_sym__repeat_newline] = STATE(540), [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), + [ts_builtin_sym_end] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [sym__newline] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_err_GT_PIPE] = ACTIONS(1754), + [anon_sym_out_GT_PIPE] = ACTIONS(1754), + [anon_sym_e_GT_PIPE] = ACTIONS(1754), + [anon_sym_o_GT_PIPE] = ACTIONS(1754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), + [anon_sym_GT2] = ACTIONS(1756), + [anon_sym_DASH2] = ACTIONS(1754), + [anon_sym_STAR2] = ACTIONS(1756), + [anon_sym_and2] = ACTIONS(1754), + [anon_sym_xor2] = ACTIONS(1754), + [anon_sym_or2] = ACTIONS(1754), + [anon_sym_not_DASHin2] = ACTIONS(1754), + [anon_sym_has2] = ACTIONS(1754), + [anon_sym_not_DASHhas2] = ACTIONS(1754), + [anon_sym_starts_DASHwith2] = ACTIONS(1754), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1754), + [anon_sym_ends_DASHwith2] = ACTIONS(1754), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1754), + [anon_sym_EQ_EQ2] = ACTIONS(1754), + [anon_sym_BANG_EQ2] = ACTIONS(1754), + [anon_sym_LT2] = ACTIONS(1756), + [anon_sym_LT_EQ2] = ACTIONS(1754), + [anon_sym_GT_EQ2] = ACTIONS(1754), + [anon_sym_EQ_TILDE2] = ACTIONS(1754), + [anon_sym_BANG_TILDE2] = ACTIONS(1754), + [anon_sym_like2] = ACTIONS(1754), + [anon_sym_not_DASHlike2] = ACTIONS(1754), + [anon_sym_STAR_STAR2] = ACTIONS(1754), + [anon_sym_PLUS_PLUS2] = ACTIONS(1754), + [anon_sym_SLASH2] = ACTIONS(1756), + [anon_sym_mod2] = ACTIONS(1754), + [anon_sym_SLASH_SLASH2] = ACTIONS(1754), + [anon_sym_PLUS2] = ACTIONS(1756), + [anon_sym_bit_DASHshl2] = ACTIONS(1754), + [anon_sym_bit_DASHshr2] = ACTIONS(1754), + [anon_sym_bit_DASHand2] = ACTIONS(1754), + [anon_sym_bit_DASHxor2] = ACTIONS(1754), + [anon_sym_bit_DASHor2] = ACTIONS(1754), + [anon_sym_DOT] = ACTIONS(2754), + [aux_sym__immediate_decimal_token5] = ACTIONS(1886), + [anon_sym_err_GT] = ACTIONS(1756), + [anon_sym_out_GT] = ACTIONS(1756), + [anon_sym_e_GT] = ACTIONS(1756), + [anon_sym_o_GT] = ACTIONS(1756), + [anon_sym_err_PLUSout_GT] = ACTIONS(1756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), + [anon_sym_o_PLUSe_GT] = ACTIONS(1756), + [anon_sym_e_PLUSo_GT] = ACTIONS(1756), + [anon_sym_err_GT_GT] = ACTIONS(1754), + [anon_sym_out_GT_GT] = ACTIONS(1754), + [anon_sym_e_GT_GT] = ACTIONS(1754), + [anon_sym_o_GT_GT] = ACTIONS(1754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1101)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1125), [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(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1102)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1128), [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(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1103)] = { - [aux_sym__repeat_newline] = STATE(998), + [aux_sym__repeat_newline] = STATE(967), [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(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1104)] = { - [aux_sym__repeat_newline] = STATE(1001), + [aux_sym__repeat_newline] = STATE(969), [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(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1105)] = { - [aux_sym__repeat_newline] = STATE(1002), + [aux_sym__repeat_newline] = STATE(975), [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(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1106)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(978), [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(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1107)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(984), [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(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1108)] = { - [aux_sym__repeat_newline] = STATE(1004), + [aux_sym__repeat_newline] = STATE(1357), + [sym__expression_parenthesized] = STATE(4127), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), + [sym__expr_binary_expression_parenthesized] = STATE(2128), + [sym_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1832), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), [sym_comment] = STATE(1108), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(2700), + [aux_sym_cmd_identifier_token3] = ACTIONS(189), + [aux_sym_cmd_identifier_token4] = ACTIONS(189), + [aux_sym_cmd_identifier_token5] = ACTIONS(189), + [sym__newline] = ACTIONS(2638), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [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(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [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(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(986), [sym_comment] = STATE(1109), - [anon_sym_true] = ACTIONS(2748), - [anon_sym_false] = ACTIONS(2748), - [anon_sym_null] = ACTIONS(2750), - [aux_sym_cmd_identifier_token3] = ACTIONS(2752), - [aux_sym_cmd_identifier_token4] = ACTIONS(2752), - [aux_sym_cmd_identifier_token5] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_DOT_DOT] = ACTIONS(2762), - [aux_sym_expr_unary_token1] = ACTIONS(2764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2766), - [anon_sym_DOT_DOT_LT] = ACTIONS(2766), - [aux_sym__val_number_decimal_token1] = ACTIONS(2768), - [aux_sym__val_number_decimal_token2] = ACTIONS(2770), - [aux_sym__val_number_decimal_token3] = ACTIONS(2772), - [aux_sym__val_number_decimal_token4] = ACTIONS(2772), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2774), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1110)] = { - [sym_expr_unary] = STATE(2845), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_parenthesized] = STATE(2574), - [sym_val_range] = STATE(2845), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(2845), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(2587), - [sym_val_variable] = STATE(2564), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(2338), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(2632), - [sym__unquoted_with_expr] = STATE(2850), - [sym__unquoted_anonymous_prefix] = STATE(4499), + [aux_sym__repeat_newline] = STATE(991), [sym_comment] = STATE(1110), - [anon_sym_true] = ACTIONS(2748), - [anon_sym_false] = ACTIONS(2748), - [anon_sym_null] = ACTIONS(2750), - [aux_sym_cmd_identifier_token3] = ACTIONS(2752), - [aux_sym_cmd_identifier_token4] = ACTIONS(2752), - [aux_sym_cmd_identifier_token5] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_DOT_DOT] = ACTIONS(2762), - [aux_sym_expr_unary_token1] = ACTIONS(2764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2766), - [anon_sym_DOT_DOT_LT] = ACTIONS(2766), - [aux_sym__val_number_decimal_token1] = ACTIONS(2768), - [aux_sym__val_number_decimal_token2] = ACTIONS(2770), - [aux_sym__val_number_decimal_token3] = ACTIONS(2772), - [aux_sym__val_number_decimal_token4] = ACTIONS(2772), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2774), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(2756), + [sym__newline] = ACTIONS(2756), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_err_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_GT_PIPE] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_GT2] = ACTIONS(2758), + [anon_sym_DASH2] = ACTIONS(2756), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_STAR2] = ACTIONS(2758), + [anon_sym_and2] = ACTIONS(2756), + [anon_sym_xor2] = ACTIONS(2756), + [anon_sym_or2] = ACTIONS(2756), + [anon_sym_not_DASHin2] = ACTIONS(2756), + [anon_sym_has2] = ACTIONS(2756), + [anon_sym_not_DASHhas2] = ACTIONS(2756), + [anon_sym_starts_DASHwith2] = ACTIONS(2756), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2756), + [anon_sym_ends_DASHwith2] = ACTIONS(2756), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2756), + [anon_sym_EQ_EQ2] = ACTIONS(2756), + [anon_sym_BANG_EQ2] = ACTIONS(2756), + [anon_sym_LT2] = ACTIONS(2758), + [anon_sym_LT_EQ2] = ACTIONS(2756), + [anon_sym_GT_EQ2] = ACTIONS(2756), + [anon_sym_EQ_TILDE2] = ACTIONS(2756), + [anon_sym_BANG_TILDE2] = ACTIONS(2756), + [anon_sym_like2] = ACTIONS(2756), + [anon_sym_not_DASHlike2] = ACTIONS(2756), + [anon_sym_STAR_STAR2] = ACTIONS(2756), + [anon_sym_PLUS_PLUS2] = ACTIONS(2756), + [anon_sym_SLASH2] = ACTIONS(2758), + [anon_sym_mod2] = ACTIONS(2756), + [anon_sym_SLASH_SLASH2] = ACTIONS(2756), + [anon_sym_PLUS2] = ACTIONS(2758), + [anon_sym_bit_DASHshl2] = ACTIONS(2756), + [anon_sym_bit_DASHshr2] = ACTIONS(2756), + [anon_sym_bit_DASHand2] = ACTIONS(2756), + [anon_sym_bit_DASHxor2] = ACTIONS(2756), + [anon_sym_bit_DASHor2] = ACTIONS(2756), + [anon_sym_err_GT] = ACTIONS(2758), + [anon_sym_out_GT] = ACTIONS(2758), + [anon_sym_e_GT] = ACTIONS(2758), + [anon_sym_o_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT] = ACTIONS(2758), + [anon_sym_err_GT_GT] = ACTIONS(2756), + [anon_sym_out_GT_GT] = ACTIONS(2756), + [anon_sym_e_GT_GT] = ACTIONS(2756), + [anon_sym_o_GT_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1111)] = { - [sym_expr_unary] = STATE(2851), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_parenthesized] = STATE(2520), - [sym_val_range] = STATE(2851), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(2851), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(2587), - [sym_val_variable] = STATE(2564), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(2338), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(2593), - [sym__unquoted_with_expr] = STATE(2853), - [sym__unquoted_anonymous_prefix] = STATE(4499), + [aux_sym__repeat_newline] = STATE(992), [sym_comment] = STATE(1111), - [anon_sym_true] = ACTIONS(2748), - [anon_sym_false] = ACTIONS(2748), - [anon_sym_null] = ACTIONS(2750), - [aux_sym_cmd_identifier_token3] = ACTIONS(2752), - [aux_sym_cmd_identifier_token4] = ACTIONS(2752), - [aux_sym_cmd_identifier_token5] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_DOT_DOT] = ACTIONS(2762), - [aux_sym_expr_unary_token1] = ACTIONS(2764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2766), - [anon_sym_DOT_DOT_LT] = ACTIONS(2766), - [aux_sym__val_number_decimal_token1] = ACTIONS(2768), - [aux_sym__val_number_decimal_token2] = ACTIONS(2770), - [aux_sym__val_number_decimal_token3] = ACTIONS(2772), - [aux_sym__val_number_decimal_token4] = ACTIONS(2772), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2774), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1112)] = { + [sym_expr_unary] = STATE(2665), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_parenthesized] = STATE(2506), + [sym_val_range] = STATE(2665), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(2665), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(2589), + [sym_val_variable] = STATE(2511), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(2325), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(2566), + [sym__unquoted_with_expr] = STATE(2676), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(1112), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_in] = ACTIONS(2503), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_RPAREN] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2503), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2503), - [anon_sym_xor2] = ACTIONS(2503), - [anon_sym_or2] = ACTIONS(2503), - [anon_sym_not_DASHin2] = ACTIONS(2503), - [anon_sym_has2] = ACTIONS(2503), - [anon_sym_not_DASHhas2] = ACTIONS(2503), - [anon_sym_starts_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2503), - [anon_sym_ends_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2503), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2503), - [anon_sym_like2] = ACTIONS(2503), - [anon_sym_not_DASHlike2] = ACTIONS(2503), - [anon_sym_STAR_STAR2] = ACTIONS(2503), - [anon_sym_PLUS_PLUS2] = ACTIONS(2503), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2503), - [anon_sym_SLASH_SLASH2] = ACTIONS(2503), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2503), - [anon_sym_bit_DASHshr2] = ACTIONS(2503), - [anon_sym_bit_DASHand2] = ACTIONS(2503), - [anon_sym_bit_DASHxor2] = ACTIONS(2503), - [anon_sym_bit_DASHor2] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_true] = ACTIONS(2760), + [anon_sym_false] = ACTIONS(2760), + [anon_sym_null] = ACTIONS(2762), + [aux_sym_cmd_identifier_token3] = ACTIONS(2764), + [aux_sym_cmd_identifier_token4] = ACTIONS(2764), + [aux_sym_cmd_identifier_token5] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_DOLLAR] = ACTIONS(2770), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_DOT_DOT] = ACTIONS(2774), + [aux_sym_expr_unary_token1] = ACTIONS(2776), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2778), + [anon_sym_DOT_DOT_LT] = ACTIONS(2778), + [aux_sym__val_number_decimal_token1] = ACTIONS(2780), + [aux_sym__val_number_decimal_token2] = ACTIONS(2782), + [aux_sym__val_number_decimal_token3] = ACTIONS(2784), + [aux_sym__val_number_decimal_token4] = ACTIONS(2784), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2786), + [anon_sym_DQUOTE] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1802), }, [STATE(1113)] = { + [sym_expr_unary] = STATE(2680), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_parenthesized] = STATE(2507), + [sym_val_range] = STATE(2680), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(2680), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(2589), + [sym_val_variable] = STATE(2511), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(2325), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(2571), + [sym__unquoted_with_expr] = STATE(2686), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(1113), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_in] = ACTIONS(2637), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2637), - [anon_sym_xor2] = ACTIONS(2637), - [anon_sym_or2] = ACTIONS(2637), - [anon_sym_not_DASHin2] = ACTIONS(2637), - [anon_sym_has2] = ACTIONS(2637), - [anon_sym_not_DASHhas2] = ACTIONS(2637), - [anon_sym_starts_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2637), - [anon_sym_ends_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2637), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2637), - [anon_sym_like2] = ACTIONS(2637), - [anon_sym_not_DASHlike2] = ACTIONS(2637), - [anon_sym_STAR_STAR2] = ACTIONS(2637), - [anon_sym_PLUS_PLUS2] = ACTIONS(2637), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2637), - [anon_sym_SLASH_SLASH2] = ACTIONS(2637), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2637), - [anon_sym_bit_DASHshr2] = ACTIONS(2637), - [anon_sym_bit_DASHand2] = ACTIONS(2637), - [anon_sym_bit_DASHxor2] = ACTIONS(2637), - [anon_sym_bit_DASHor2] = ACTIONS(2637), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_true] = ACTIONS(2760), + [anon_sym_false] = ACTIONS(2760), + [anon_sym_null] = ACTIONS(2762), + [aux_sym_cmd_identifier_token3] = ACTIONS(2764), + [aux_sym_cmd_identifier_token4] = ACTIONS(2764), + [aux_sym_cmd_identifier_token5] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_DOLLAR] = ACTIONS(2770), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_DOT_DOT] = ACTIONS(2774), + [aux_sym_expr_unary_token1] = ACTIONS(2776), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2778), + [anon_sym_DOT_DOT_LT] = ACTIONS(2778), + [aux_sym__val_number_decimal_token1] = ACTIONS(2780), + [aux_sym__val_number_decimal_token2] = ACTIONS(2782), + [aux_sym__val_number_decimal_token3] = ACTIONS(2784), + [aux_sym__val_number_decimal_token4] = ACTIONS(2784), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2786), + [anon_sym_DQUOTE] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1802), }, [STATE(1114)] = { + [sym_expr_unary] = STATE(2687), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_parenthesized] = STATE(2465), + [sym_val_range] = STATE(2687), + [sym__val_range] = STATE(4488), + [sym__value] = STATE(2687), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(2589), + [sym_val_variable] = STATE(2511), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(2325), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), + [sym_unquoted] = STATE(2590), + [sym__unquoted_with_expr] = STATE(2690), + [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(1114), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_in] = ACTIONS(868), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_true] = ACTIONS(2760), + [anon_sym_false] = ACTIONS(2760), + [anon_sym_null] = ACTIONS(2762), + [aux_sym_cmd_identifier_token3] = ACTIONS(2764), + [aux_sym_cmd_identifier_token4] = ACTIONS(2764), + [aux_sym_cmd_identifier_token5] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_DOLLAR] = ACTIONS(2770), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_DOT_DOT] = ACTIONS(2774), + [aux_sym_expr_unary_token1] = ACTIONS(2776), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2778), + [anon_sym_DOT_DOT_LT] = ACTIONS(2778), + [aux_sym__val_number_decimal_token1] = ACTIONS(2780), + [aux_sym__val_number_decimal_token2] = ACTIONS(2782), + [aux_sym__val_number_decimal_token3] = ACTIONS(2784), + [aux_sym__val_number_decimal_token4] = ACTIONS(2784), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2786), + [anon_sym_DQUOTE] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1802), }, [STATE(1115)] = { - [aux_sym__repeat_newline] = STATE(1007), + [aux_sym__repeat_newline] = STATE(996), [sym_comment] = STATE(1115), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1116)] = { - [aux_sym__repeat_newline] = STATE(1009), + [aux_sym__repeat_newline] = STATE(998), [sym_comment] = STATE(1116), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1117)] = { + [aux_sym__repeat_newline] = STATE(1000), [sym_comment] = STATE(1117), - [anon_sym_export] = ACTIONS(2491), - [anon_sym_alias] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_mut] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [aux_sym_cmd_identifier_token1] = ACTIONS(2491), - [anon_sym_def] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_export_DASHenv] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_catch] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_in] = ACTIONS(2491), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [anon_sym_null] = ACTIONS(2493), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [sym__newline] = ACTIONS(2493), - [anon_sym_PIPE] = ACTIONS(2493), - [anon_sym_err_GT_PIPE] = ACTIONS(2493), - [anon_sym_out_GT_PIPE] = ACTIONS(2493), - [anon_sym_e_GT_PIPE] = ACTIONS(2493), - [anon_sym_o_GT_PIPE] = ACTIONS(2493), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2493), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2493), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2493), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2491), - [anon_sym_DASH2] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_DOT_DOT] = ACTIONS(2491), - [anon_sym_where] = ACTIONS(2493), - [aux_sym_expr_unary_token1] = ACTIONS(2493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2493), - [anon_sym_DOT_DOT_LT] = ACTIONS(2493), - [aux_sym__val_number_decimal_token1] = ACTIONS(2491), - [aux_sym__val_number_decimal_token2] = ACTIONS(2493), - [aux_sym__val_number_decimal_token3] = ACTIONS(2493), - [aux_sym__val_number_decimal_token4] = ACTIONS(2493), - [aux_sym__val_number_token1] = ACTIONS(2493), - [aux_sym__val_number_token2] = ACTIONS(2493), - [aux_sym__val_number_token3] = ACTIONS(2493), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2491), - [anon_sym_0x] = ACTIONS(2491), - [sym_val_date] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_BQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2493), - [anon_sym_CARET] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2493), + [anon_sym_in] = ACTIONS(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1118)] = { + [aux_sym__repeat_newline] = STATE(1002), [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(2419), + [sym__newline] = ACTIONS(2419), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_err_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_GT_PIPE] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_GT2] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_STAR2] = ACTIONS(2421), + [anon_sym_and2] = ACTIONS(2419), + [anon_sym_xor2] = ACTIONS(2419), + [anon_sym_or2] = ACTIONS(2419), + [anon_sym_not_DASHin2] = ACTIONS(2419), + [anon_sym_has2] = ACTIONS(2419), + [anon_sym_not_DASHhas2] = ACTIONS(2419), + [anon_sym_starts_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), + [anon_sym_ends_DASHwith2] = ACTIONS(2419), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), + [anon_sym_EQ_EQ2] = ACTIONS(2419), + [anon_sym_BANG_EQ2] = ACTIONS(2419), + [anon_sym_LT2] = ACTIONS(2421), + [anon_sym_LT_EQ2] = ACTIONS(2419), + [anon_sym_GT_EQ2] = ACTIONS(2419), + [anon_sym_EQ_TILDE2] = ACTIONS(2419), + [anon_sym_BANG_TILDE2] = ACTIONS(2419), + [anon_sym_like2] = ACTIONS(2419), + [anon_sym_not_DASHlike2] = ACTIONS(2419), + [anon_sym_STAR_STAR2] = ACTIONS(2419), + [anon_sym_PLUS_PLUS2] = ACTIONS(2419), + [anon_sym_SLASH2] = ACTIONS(2421), + [anon_sym_mod2] = ACTIONS(2419), + [anon_sym_SLASH_SLASH2] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_bit_DASHshl2] = ACTIONS(2419), + [anon_sym_bit_DASHshr2] = ACTIONS(2419), + [anon_sym_bit_DASHand2] = ACTIONS(2419), + [anon_sym_bit_DASHxor2] = ACTIONS(2419), + [anon_sym_bit_DASHor2] = ACTIONS(2419), + [anon_sym_err_GT] = ACTIONS(2421), + [anon_sym_out_GT] = ACTIONS(2421), + [anon_sym_e_GT] = ACTIONS(2421), + [anon_sym_o_GT] = ACTIONS(2421), + [anon_sym_err_PLUSout_GT] = ACTIONS(2421), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), + [anon_sym_o_PLUSe_GT] = ACTIONS(2421), + [anon_sym_e_PLUSo_GT] = ACTIONS(2421), + [anon_sym_err_GT_GT] = ACTIONS(2419), + [anon_sym_out_GT_GT] = ACTIONS(2419), + [anon_sym_e_GT_GT] = ACTIONS(2419), + [anon_sym_o_GT_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(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), + [anon_sym_export] = ACTIONS(2788), + [anon_sym_alias] = ACTIONS(2790), + [anon_sym_let] = ACTIONS(2790), + [anon_sym_mut] = ACTIONS(2790), + [anon_sym_const] = ACTIONS(2790), + [aux_sym_cmd_identifier_token1] = ACTIONS(2788), + [anon_sym_def] = ACTIONS(2790), + [anon_sym_use] = ACTIONS(2790), + [anon_sym_export_DASHenv] = ACTIONS(2790), + [anon_sym_extern] = ACTIONS(2790), + [anon_sym_module] = ACTIONS(2790), + [anon_sym_for] = ACTIONS(2790), + [anon_sym_loop] = ACTIONS(2790), + [anon_sym_while] = ACTIONS(2790), + [anon_sym_if] = ACTIONS(2790), + [anon_sym_else] = ACTIONS(2790), + [anon_sym_try] = ACTIONS(2790), + [anon_sym_catch] = ACTIONS(2790), + [anon_sym_match] = ACTIONS(2790), + [anon_sym_in] = ACTIONS(2788), + [anon_sym_true] = ACTIONS(2790), + [anon_sym_false] = ACTIONS(2790), + [anon_sym_null] = ACTIONS(2790), + [aux_sym_cmd_identifier_token3] = ACTIONS(2790), + [aux_sym_cmd_identifier_token4] = ACTIONS(2790), + [aux_sym_cmd_identifier_token5] = ACTIONS(2790), + [sym__newline] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_err_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_GT_PIPE] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym_LPAREN] = ACTIONS(2790), + [anon_sym_DOLLAR] = ACTIONS(2788), + [anon_sym_DASH2] = ACTIONS(2788), + [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_DOT_DOT] = ACTIONS(2788), + [anon_sym_where] = ACTIONS(2790), + [aux_sym_expr_unary_token1] = ACTIONS(2790), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2790), + [anon_sym_DOT_DOT_LT] = ACTIONS(2790), + [aux_sym__val_number_decimal_token1] = ACTIONS(2788), + [aux_sym__val_number_decimal_token2] = ACTIONS(2790), + [aux_sym__val_number_decimal_token3] = ACTIONS(2790), + [aux_sym__val_number_decimal_token4] = ACTIONS(2790), + [aux_sym__val_number_token1] = ACTIONS(2790), + [aux_sym__val_number_token2] = ACTIONS(2790), + [aux_sym__val_number_token3] = ACTIONS(2790), + [anon_sym_0b] = ACTIONS(2788), + [anon_sym_0o] = ACTIONS(2788), + [anon_sym_0x] = ACTIONS(2788), + [sym_val_date] = ACTIONS(2790), + [anon_sym_DQUOTE] = ACTIONS(2790), + [anon_sym_SQUOTE] = ACTIONS(2790), + [anon_sym_BQUOTE] = ACTIONS(2790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2790), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2790), + [anon_sym_CARET] = ACTIONS(2790), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2790), }, [STATE(1120)] = { - [aux_sym__repeat_newline] = STATE(1011), + [sym__expr_parenthesized_immediate] = STATE(5092), [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), + [ts_builtin_sym_end] = ACTIONS(2180), + [anon_sym_in] = ACTIONS(2180), + [sym__newline] = ACTIONS(2180), + [anon_sym_SEMI] = ACTIONS(2180), + [anon_sym_PIPE] = ACTIONS(2180), + [anon_sym_err_GT_PIPE] = ACTIONS(2180), + [anon_sym_out_GT_PIPE] = ACTIONS(2180), + [anon_sym_e_GT_PIPE] = ACTIONS(2180), + [anon_sym_o_GT_PIPE] = ACTIONS(2180), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2180), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2180), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2180), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2180), + [anon_sym_GT2] = ACTIONS(2182), + [anon_sym_DASH2] = ACTIONS(2180), + [anon_sym_STAR2] = ACTIONS(2182), + [anon_sym_and2] = ACTIONS(2180), + [anon_sym_xor2] = ACTIONS(2180), + [anon_sym_or2] = ACTIONS(2180), + [anon_sym_not_DASHin2] = ACTIONS(2180), + [anon_sym_has2] = ACTIONS(2180), + [anon_sym_not_DASHhas2] = ACTIONS(2180), + [anon_sym_starts_DASHwith2] = ACTIONS(2180), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2180), + [anon_sym_ends_DASHwith2] = ACTIONS(2180), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2180), + [anon_sym_EQ_EQ2] = ACTIONS(2180), + [anon_sym_BANG_EQ2] = ACTIONS(2180), + [anon_sym_LT2] = ACTIONS(2182), + [anon_sym_LT_EQ2] = ACTIONS(2180), + [anon_sym_GT_EQ2] = ACTIONS(2180), + [anon_sym_EQ_TILDE2] = ACTIONS(2180), + [anon_sym_BANG_TILDE2] = ACTIONS(2180), + [anon_sym_like2] = ACTIONS(2180), + [anon_sym_not_DASHlike2] = ACTIONS(2180), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2180), + [anon_sym_PLUS_PLUS2] = ACTIONS(2180), + [anon_sym_SLASH2] = ACTIONS(2182), + [anon_sym_mod2] = ACTIONS(2180), + [anon_sym_SLASH_SLASH2] = ACTIONS(2180), + [anon_sym_PLUS2] = ACTIONS(2182), + [anon_sym_bit_DASHshl2] = ACTIONS(2180), + [anon_sym_bit_DASHshr2] = ACTIONS(2180), + [anon_sym_bit_DASHand2] = ACTIONS(2180), + [anon_sym_bit_DASHxor2] = ACTIONS(2180), + [anon_sym_bit_DASHor2] = ACTIONS(2180), + [anon_sym_err_GT] = ACTIONS(2182), + [anon_sym_out_GT] = ACTIONS(2182), + [anon_sym_e_GT] = ACTIONS(2182), + [anon_sym_o_GT] = ACTIONS(2182), + [anon_sym_err_PLUSout_GT] = ACTIONS(2182), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2182), + [anon_sym_o_PLUSe_GT] = ACTIONS(2182), + [anon_sym_e_PLUSo_GT] = ACTIONS(2182), + [anon_sym_err_GT_GT] = ACTIONS(2180), + [anon_sym_out_GT_GT] = ACTIONS(2180), + [anon_sym_e_GT_GT] = ACTIONS(2180), + [anon_sym_o_GT_GT] = ACTIONS(2180), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2180), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2180), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2180), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2180), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1121)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [sym__expr_parenthesized_immediate] = STATE(5092), [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), + [ts_builtin_sym_end] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [sym__newline] = ACTIONS(2132), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_err_GT_PIPE] = ACTIONS(2132), + [anon_sym_out_GT_PIPE] = ACTIONS(2132), + [anon_sym_e_GT_PIPE] = ACTIONS(2132), + [anon_sym_o_GT_PIPE] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2132), + [anon_sym_GT2] = ACTIONS(2134), + [anon_sym_DASH2] = ACTIONS(2132), + [anon_sym_STAR2] = ACTIONS(2134), + [anon_sym_and2] = ACTIONS(2132), + [anon_sym_xor2] = ACTIONS(2132), + [anon_sym_or2] = ACTIONS(2132), + [anon_sym_not_DASHin2] = ACTIONS(2132), + [anon_sym_has2] = ACTIONS(2132), + [anon_sym_not_DASHhas2] = ACTIONS(2132), + [anon_sym_starts_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2132), + [anon_sym_ends_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2132), + [anon_sym_EQ_EQ2] = ACTIONS(2132), + [anon_sym_BANG_EQ2] = ACTIONS(2132), + [anon_sym_LT2] = ACTIONS(2134), + [anon_sym_LT_EQ2] = ACTIONS(2132), + [anon_sym_GT_EQ2] = ACTIONS(2132), + [anon_sym_EQ_TILDE2] = ACTIONS(2132), + [anon_sym_BANG_TILDE2] = ACTIONS(2132), + [anon_sym_like2] = ACTIONS(2132), + [anon_sym_not_DASHlike2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2132), + [anon_sym_PLUS_PLUS2] = ACTIONS(2132), + [anon_sym_SLASH2] = ACTIONS(2134), + [anon_sym_mod2] = ACTIONS(2132), + [anon_sym_SLASH_SLASH2] = ACTIONS(2132), + [anon_sym_PLUS2] = ACTIONS(2134), + [anon_sym_bit_DASHshl2] = ACTIONS(2132), + [anon_sym_bit_DASHshr2] = ACTIONS(2132), + [anon_sym_bit_DASHand2] = ACTIONS(2132), + [anon_sym_bit_DASHxor2] = ACTIONS(2132), + [anon_sym_bit_DASHor2] = ACTIONS(2132), + [anon_sym_err_GT] = ACTIONS(2134), + [anon_sym_out_GT] = ACTIONS(2134), + [anon_sym_e_GT] = ACTIONS(2134), + [anon_sym_o_GT] = ACTIONS(2134), + [anon_sym_err_PLUSout_GT] = ACTIONS(2134), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2134), + [anon_sym_o_PLUSe_GT] = ACTIONS(2134), + [anon_sym_e_PLUSo_GT] = ACTIONS(2134), + [anon_sym_err_GT_GT] = ACTIONS(2132), + [anon_sym_out_GT_GT] = ACTIONS(2132), + [anon_sym_e_GT_GT] = ACTIONS(2132), + [anon_sym_o_GT_GT] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2132), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1122)] = { + [sym__expr_parenthesized_immediate] = STATE(5092), [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), + [ts_builtin_sym_end] = ACTIONS(2136), + [anon_sym_in] = ACTIONS(2136), + [sym__newline] = ACTIONS(2136), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_err_GT_PIPE] = ACTIONS(2136), + [anon_sym_out_GT_PIPE] = ACTIONS(2136), + [anon_sym_e_GT_PIPE] = ACTIONS(2136), + [anon_sym_o_GT_PIPE] = ACTIONS(2136), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), + [anon_sym_GT2] = ACTIONS(2138), + [anon_sym_DASH2] = ACTIONS(2136), + [anon_sym_STAR2] = ACTIONS(2138), + [anon_sym_and2] = ACTIONS(2136), + [anon_sym_xor2] = ACTIONS(2136), + [anon_sym_or2] = ACTIONS(2136), + [anon_sym_not_DASHin2] = ACTIONS(2136), + [anon_sym_has2] = ACTIONS(2136), + [anon_sym_not_DASHhas2] = ACTIONS(2136), + [anon_sym_starts_DASHwith2] = ACTIONS(2136), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2136), + [anon_sym_ends_DASHwith2] = ACTIONS(2136), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2136), + [anon_sym_EQ_EQ2] = ACTIONS(2136), + [anon_sym_BANG_EQ2] = ACTIONS(2136), + [anon_sym_LT2] = ACTIONS(2138), + [anon_sym_LT_EQ2] = ACTIONS(2136), + [anon_sym_GT_EQ2] = ACTIONS(2136), + [anon_sym_EQ_TILDE2] = ACTIONS(2136), + [anon_sym_BANG_TILDE2] = ACTIONS(2136), + [anon_sym_like2] = ACTIONS(2136), + [anon_sym_not_DASHlike2] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2136), + [anon_sym_PLUS_PLUS2] = ACTIONS(2136), + [anon_sym_SLASH2] = ACTIONS(2138), + [anon_sym_mod2] = ACTIONS(2136), + [anon_sym_SLASH_SLASH2] = ACTIONS(2136), + [anon_sym_PLUS2] = ACTIONS(2138), + [anon_sym_bit_DASHshl2] = ACTIONS(2136), + [anon_sym_bit_DASHshr2] = ACTIONS(2136), + [anon_sym_bit_DASHand2] = ACTIONS(2136), + [anon_sym_bit_DASHxor2] = ACTIONS(2136), + [anon_sym_bit_DASHor2] = ACTIONS(2136), + [anon_sym_err_GT] = ACTIONS(2138), + [anon_sym_out_GT] = ACTIONS(2138), + [anon_sym_e_GT] = ACTIONS(2138), + [anon_sym_o_GT] = ACTIONS(2138), + [anon_sym_err_PLUSout_GT] = ACTIONS(2138), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), + [anon_sym_o_PLUSe_GT] = ACTIONS(2138), + [anon_sym_e_PLUSo_GT] = ACTIONS(2138), + [anon_sym_err_GT_GT] = ACTIONS(2136), + [anon_sym_out_GT_GT] = ACTIONS(2136), + [anon_sym_e_GT_GT] = ACTIONS(2136), + [anon_sym_o_GT_GT] = ACTIONS(2136), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1123)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [sym__expr_parenthesized_immediate] = STATE(5092), [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), + [ts_builtin_sym_end] = ACTIONS(2176), + [anon_sym_in] = ACTIONS(2176), + [sym__newline] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2176), + [anon_sym_err_GT_PIPE] = ACTIONS(2176), + [anon_sym_out_GT_PIPE] = ACTIONS(2176), + [anon_sym_e_GT_PIPE] = ACTIONS(2176), + [anon_sym_o_GT_PIPE] = ACTIONS(2176), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2176), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2176), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2176), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2176), + [anon_sym_GT2] = ACTIONS(2178), + [anon_sym_DASH2] = ACTIONS(2176), + [anon_sym_STAR2] = ACTIONS(2178), + [anon_sym_and2] = ACTIONS(2176), + [anon_sym_xor2] = ACTIONS(2176), + [anon_sym_or2] = ACTIONS(2176), + [anon_sym_not_DASHin2] = ACTIONS(2176), + [anon_sym_has2] = ACTIONS(2176), + [anon_sym_not_DASHhas2] = ACTIONS(2176), + [anon_sym_starts_DASHwith2] = ACTIONS(2176), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2176), + [anon_sym_ends_DASHwith2] = ACTIONS(2176), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2176), + [anon_sym_EQ_EQ2] = ACTIONS(2176), + [anon_sym_BANG_EQ2] = ACTIONS(2176), + [anon_sym_LT2] = ACTIONS(2178), + [anon_sym_LT_EQ2] = ACTIONS(2176), + [anon_sym_GT_EQ2] = ACTIONS(2176), + [anon_sym_EQ_TILDE2] = ACTIONS(2176), + [anon_sym_BANG_TILDE2] = ACTIONS(2176), + [anon_sym_like2] = ACTIONS(2176), + [anon_sym_not_DASHlike2] = ACTIONS(2176), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_STAR_STAR2] = ACTIONS(2176), + [anon_sym_PLUS_PLUS2] = ACTIONS(2176), + [anon_sym_SLASH2] = ACTIONS(2178), + [anon_sym_mod2] = ACTIONS(2176), + [anon_sym_SLASH_SLASH2] = ACTIONS(2176), + [anon_sym_PLUS2] = ACTIONS(2178), + [anon_sym_bit_DASHshl2] = ACTIONS(2176), + [anon_sym_bit_DASHshr2] = ACTIONS(2176), + [anon_sym_bit_DASHand2] = ACTIONS(2176), + [anon_sym_bit_DASHxor2] = ACTIONS(2176), + [anon_sym_bit_DASHor2] = ACTIONS(2176), + [anon_sym_err_GT] = ACTIONS(2178), + [anon_sym_out_GT] = ACTIONS(2178), + [anon_sym_e_GT] = ACTIONS(2178), + [anon_sym_o_GT] = ACTIONS(2178), + [anon_sym_err_PLUSout_GT] = ACTIONS(2178), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2178), + [anon_sym_o_PLUSe_GT] = ACTIONS(2178), + [anon_sym_e_PLUSo_GT] = ACTIONS(2178), + [anon_sym_err_GT_GT] = ACTIONS(2176), + [anon_sym_out_GT_GT] = ACTIONS(2176), + [anon_sym_e_GT_GT] = ACTIONS(2176), + [anon_sym_o_GT_GT] = ACTIONS(2176), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2176), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2176), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2176), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2176), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1124)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), + [aux_sym__repeat_newline] = STATE(1033), [sym_comment] = STATE(1124), - [ts_builtin_sym_end] = ACTIONS(2148), - [anon_sym_in] = ACTIONS(2148), - [sym__newline] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_PIPE] = ACTIONS(2148), - [anon_sym_err_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_GT_PIPE] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2148), - [anon_sym_GT2] = ACTIONS(2150), - [anon_sym_DASH2] = ACTIONS(2148), - [anon_sym_STAR2] = ACTIONS(2150), - [anon_sym_and2] = ACTIONS(2148), - [anon_sym_xor2] = ACTIONS(2148), - [anon_sym_or2] = ACTIONS(2148), - [anon_sym_not_DASHin2] = ACTIONS(2148), - [anon_sym_has2] = ACTIONS(2148), - [anon_sym_not_DASHhas2] = ACTIONS(2148), - [anon_sym_starts_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2148), - [anon_sym_ends_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2148), - [anon_sym_EQ_EQ2] = ACTIONS(2148), - [anon_sym_BANG_EQ2] = ACTIONS(2148), - [anon_sym_LT2] = ACTIONS(2150), - [anon_sym_LT_EQ2] = ACTIONS(2148), - [anon_sym_GT_EQ2] = ACTIONS(2148), - [anon_sym_EQ_TILDE2] = ACTIONS(2148), - [anon_sym_BANG_TILDE2] = ACTIONS(2148), - [anon_sym_like2] = ACTIONS(2148), - [anon_sym_not_DASHlike2] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2148), - [anon_sym_PLUS_PLUS2] = ACTIONS(2148), - [anon_sym_SLASH2] = ACTIONS(2150), - [anon_sym_mod2] = ACTIONS(2148), - [anon_sym_SLASH_SLASH2] = ACTIONS(2148), - [anon_sym_PLUS2] = ACTIONS(2150), - [anon_sym_bit_DASHshl2] = ACTIONS(2148), - [anon_sym_bit_DASHshr2] = ACTIONS(2148), - [anon_sym_bit_DASHand2] = ACTIONS(2148), - [anon_sym_bit_DASHxor2] = ACTIONS(2148), - [anon_sym_bit_DASHor2] = ACTIONS(2148), - [anon_sym_err_GT] = ACTIONS(2150), - [anon_sym_out_GT] = ACTIONS(2150), - [anon_sym_e_GT] = ACTIONS(2150), - [anon_sym_o_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT] = ACTIONS(2150), - [anon_sym_err_GT_GT] = ACTIONS(2148), - [anon_sym_out_GT_GT] = ACTIONS(2148), - [anon_sym_e_GT_GT] = ACTIONS(2148), - [anon_sym_o_GT_GT] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2148), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1125)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3756), - [sym_val_range] = STATE(4515), - [sym__val_range] = STATE(4853), - [sym_val_nothing] = STATE(4517), - [sym_val_bool] = STATE(4134), - [sym_val_variable] = STATE(3757), - [sym_val_number] = STATE(4517), - [sym__val_number_decimal] = STATE(3555), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4517), - [sym_val_filesize] = STATE(4517), - [sym_val_binary] = STATE(4517), - [sym_val_string] = STATE(4517), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_list] = STATE(4951), - [sym__table_head] = STATE(3697), - [sym_val_table] = STATE(4517), - [sym__unquoted_in_list] = STATE(4365), - [sym__unquoted_anonymous_prefix] = STATE(4853), + [aux_sym__repeat_newline] = STATE(507), [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), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1126)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(4342), + [sym__match_pattern_expression] = STATE(4285), + [sym__match_pattern_value] = STATE(4441), + [sym__match_pattern_list_body] = STATE(4658), + [sym__match_pattern_list] = STATE(4454), + [sym__match_pattern_rest] = STATE(5063), + [sym__match_pattern_record] = STATE(4455), + [sym_expr_parenthesized] = STATE(3791), + [sym_val_range] = STATE(4441), + [sym__val_range] = STATE(5087), + [sym_val_nothing] = STATE(4455), + [sym_val_bool] = STATE(4146), + [sym_val_variable] = STATE(3792), + [sym_val_number] = STATE(4455), + [sym__val_number_decimal] = STATE(3552), + [sym__val_number] = STATE(4099), + [sym_val_duration] = STATE(4455), + [sym_val_filesize] = STATE(4455), + [sym_val_binary] = STATE(4455), + [sym_val_string] = STATE(4455), + [sym__raw_str] = STATE(3594), + [sym__str_double_quotes] = STATE(3594), + [sym__str_single_quotes] = STATE(3594), + [sym__str_back_ticks] = STATE(3594), + [sym_val_list] = STATE(5056), + [sym__table_head] = STATE(3761), + [sym_val_table] = STATE(4455), + [sym__unquoted_in_list] = STATE(4285), + [sym__unquoted_anonymous_prefix] = STATE(5087), [sym_comment] = STATE(1126), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(1397), + [aux_sym_parameter_repeat2] = STATE(4091), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1420), + [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(2726), + [anon_sym_LBRACK] = ACTIONS(2728), + [anon_sym_RBRACK] = ACTIONS(2730), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1398), + [anon_sym_DOLLAR] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2734), + [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(2736), + [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(1127)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(1034), [sym_comment] = STATE(1127), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2411), + [sym__newline] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(2411), + [anon_sym_err_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_GT_PIPE] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_GT2] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_STAR2] = ACTIONS(2413), + [anon_sym_and2] = ACTIONS(2411), + [anon_sym_xor2] = ACTIONS(2411), + [anon_sym_or2] = ACTIONS(2411), + [anon_sym_not_DASHin2] = ACTIONS(2411), + [anon_sym_has2] = ACTIONS(2411), + [anon_sym_not_DASHhas2] = ACTIONS(2411), + [anon_sym_starts_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), + [anon_sym_ends_DASHwith2] = ACTIONS(2411), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), + [anon_sym_EQ_EQ2] = ACTIONS(2411), + [anon_sym_BANG_EQ2] = ACTIONS(2411), + [anon_sym_LT2] = ACTIONS(2413), + [anon_sym_LT_EQ2] = ACTIONS(2411), + [anon_sym_GT_EQ2] = ACTIONS(2411), + [anon_sym_EQ_TILDE2] = ACTIONS(2411), + [anon_sym_BANG_TILDE2] = ACTIONS(2411), + [anon_sym_like2] = ACTIONS(2411), + [anon_sym_not_DASHlike2] = ACTIONS(2411), + [anon_sym_STAR_STAR2] = ACTIONS(2411), + [anon_sym_PLUS_PLUS2] = ACTIONS(2411), + [anon_sym_SLASH2] = ACTIONS(2413), + [anon_sym_mod2] = ACTIONS(2411), + [anon_sym_SLASH_SLASH2] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_bit_DASHshl2] = ACTIONS(2411), + [anon_sym_bit_DASHshr2] = ACTIONS(2411), + [anon_sym_bit_DASHand2] = ACTIONS(2411), + [anon_sym_bit_DASHxor2] = ACTIONS(2411), + [anon_sym_bit_DASHor2] = ACTIONS(2411), + [anon_sym_err_GT] = ACTIONS(2413), + [anon_sym_out_GT] = ACTIONS(2413), + [anon_sym_e_GT] = ACTIONS(2413), + [anon_sym_o_GT] = ACTIONS(2413), + [anon_sym_err_PLUSout_GT] = ACTIONS(2413), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), + [anon_sym_o_PLUSe_GT] = ACTIONS(2413), + [anon_sym_e_PLUSo_GT] = ACTIONS(2413), + [anon_sym_err_GT_GT] = ACTIONS(2411), + [anon_sym_out_GT_GT] = ACTIONS(2411), + [anon_sym_e_GT_GT] = ACTIONS(2411), + [anon_sym_o_GT_GT] = ACTIONS(2411), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1128)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(507), [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_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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), + [aux_sym__repeat_newline] = STATE(1357), + [sym__expression_parenthesized] = STATE(4400), + [sym_expr_unary] = STATE(1240), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary_parenthesized] = STATE(1240), [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_expr_parenthesized] = STATE(893), + [sym_val_range] = STATE(1240), + [sym__value] = STATE(1240), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1832), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), [sym_comment] = STATE(1129), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(2668), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_null] = ACTIONS(2700), [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(2638), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2048), + [aux_sym__val_number_decimal_token3] = ACTIONS(2050), + [aux_sym__val_number_decimal_token4] = ACTIONS(2050), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -130260,1753 +130574,1485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1130)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1130), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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_in] = ACTIONS(2415), + [sym__newline] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(2415), + [anon_sym_PIPE] = ACTIONS(2415), + [anon_sym_err_GT_PIPE] = ACTIONS(2415), + [anon_sym_out_GT_PIPE] = ACTIONS(2415), + [anon_sym_e_GT_PIPE] = ACTIONS(2415), + [anon_sym_o_GT_PIPE] = ACTIONS(2415), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2415), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2415), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2415), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(2415), + [anon_sym_GT2] = ACTIONS(2417), + [anon_sym_DASH2] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_STAR2] = ACTIONS(2417), + [anon_sym_and2] = ACTIONS(2415), + [anon_sym_xor2] = ACTIONS(2415), + [anon_sym_or2] = ACTIONS(2415), + [anon_sym_not_DASHin2] = ACTIONS(2415), + [anon_sym_has2] = ACTIONS(2415), + [anon_sym_not_DASHhas2] = ACTIONS(2415), + [anon_sym_starts_DASHwith2] = ACTIONS(2415), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2415), + [anon_sym_ends_DASHwith2] = ACTIONS(2415), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2415), + [anon_sym_EQ_EQ2] = ACTIONS(2415), + [anon_sym_BANG_EQ2] = ACTIONS(2415), + [anon_sym_LT2] = ACTIONS(2417), + [anon_sym_LT_EQ2] = ACTIONS(2415), + [anon_sym_GT_EQ2] = ACTIONS(2415), + [anon_sym_EQ_TILDE2] = ACTIONS(2415), + [anon_sym_BANG_TILDE2] = ACTIONS(2415), + [anon_sym_like2] = ACTIONS(2415), + [anon_sym_not_DASHlike2] = ACTIONS(2415), + [anon_sym_STAR_STAR2] = ACTIONS(2415), + [anon_sym_PLUS_PLUS2] = ACTIONS(2415), + [anon_sym_SLASH2] = ACTIONS(2417), + [anon_sym_mod2] = ACTIONS(2415), + [anon_sym_SLASH_SLASH2] = ACTIONS(2415), + [anon_sym_PLUS2] = ACTIONS(2417), + [anon_sym_bit_DASHshl2] = ACTIONS(2415), + [anon_sym_bit_DASHshr2] = ACTIONS(2415), + [anon_sym_bit_DASHand2] = ACTIONS(2415), + [anon_sym_bit_DASHxor2] = ACTIONS(2415), + [anon_sym_bit_DASHor2] = ACTIONS(2415), + [anon_sym_err_GT] = ACTIONS(2417), + [anon_sym_out_GT] = ACTIONS(2417), + [anon_sym_e_GT] = ACTIONS(2417), + [anon_sym_o_GT] = ACTIONS(2417), + [anon_sym_err_PLUSout_GT] = ACTIONS(2417), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2417), + [anon_sym_o_PLUSe_GT] = ACTIONS(2417), + [anon_sym_e_PLUSo_GT] = ACTIONS(2417), + [anon_sym_err_GT_GT] = ACTIONS(2415), + [anon_sym_out_GT_GT] = ACTIONS(2415), + [anon_sym_e_GT_GT] = ACTIONS(2415), + [anon_sym_o_GT_GT] = ACTIONS(2415), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2415), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2415), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2415), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2415), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1132)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expression] = STATE(4735), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1832), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), [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), + [aux_sym_cmd_identifier_token2] = ACTIONS(2630), + [anon_sym_true] = ACTIONS(2632), + [anon_sym_false] = ACTIONS(2632), + [anon_sym_null] = ACTIONS(2634), + [aux_sym_cmd_identifier_token3] = ACTIONS(2636), + [aux_sym_cmd_identifier_token4] = ACTIONS(2636), + [aux_sym_cmd_identifier_token5] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [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(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2046), + [aux_sym__val_number_decimal_token3] = ACTIONS(2640), + [aux_sym__val_number_decimal_token4] = ACTIONS(2640), + [aux_sym__val_number_token1] = ACTIONS(2636), + [aux_sym__val_number_token2] = ACTIONS(2636), + [aux_sym__val_number_token3] = ACTIONS(2636), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2642), + [anon_sym_DQUOTE] = ACTIONS(197), + [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(1133)] = { + [sym__expression] = STATE(4743), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1832), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), [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), + [aux_sym_cmd_identifier_token2] = ACTIONS(2630), + [anon_sym_true] = ACTIONS(2632), + [anon_sym_false] = ACTIONS(2632), + [anon_sym_null] = ACTIONS(2634), + [aux_sym_cmd_identifier_token3] = ACTIONS(2636), + [aux_sym_cmd_identifier_token4] = ACTIONS(2636), + [aux_sym_cmd_identifier_token5] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1006), + [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(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2046), + [aux_sym__val_number_decimal_token3] = ACTIONS(2640), + [aux_sym__val_number_decimal_token4] = ACTIONS(2640), + [aux_sym__val_number_token1] = ACTIONS(2636), + [aux_sym__val_number_token2] = ACTIONS(2636), + [aux_sym__val_number_token3] = ACTIONS(2636), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2642), + [anon_sym_DQUOTE] = ACTIONS(197), + [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(1134)] = { - [aux_sym__repeat_newline] = STATE(1198), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1134), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2800), + [anon_sym_xor2] = ACTIONS(2802), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2816), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1135)] = { - [aux_sym__repeat_newline] = STATE(1190), + [aux_sym__repeat_newline] = STATE(1147), [sym_comment] = STATE(1135), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2702), + [sym__newline] = ACTIONS(2822), + [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(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [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(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [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(1136)] = { + [aux_sym__repeat_newline] = STATE(1180), [sym_comment] = STATE(1136), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2864), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2718), + [anon_sym_BANG_TILDE2] = ACTIONS(2718), + [anon_sym_like2] = ACTIONS(2718), + [anon_sym_not_DASHlike2] = ACTIONS(2718), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2718), + [anon_sym_bit_DASHxor2] = ACTIONS(2718), + [anon_sym_bit_DASHor2] = ACTIONS(2718), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), [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), + [ts_builtin_sym_end] = ACTIONS(2140), + [anon_sym_in] = ACTIONS(2140), + [sym__newline] = ACTIONS(2140), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_err_GT_PIPE] = ACTIONS(2140), + [anon_sym_out_GT_PIPE] = ACTIONS(2140), + [anon_sym_e_GT_PIPE] = ACTIONS(2140), + [anon_sym_o_GT_PIPE] = ACTIONS(2140), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2140), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2140), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2140), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2140), + [anon_sym_GT2] = ACTIONS(2142), + [anon_sym_DASH2] = ACTIONS(2140), + [anon_sym_STAR2] = ACTIONS(2142), + [anon_sym_and2] = ACTIONS(2140), + [anon_sym_xor2] = ACTIONS(2140), + [anon_sym_or2] = ACTIONS(2140), + [anon_sym_not_DASHin2] = ACTIONS(2140), + [anon_sym_has2] = ACTIONS(2140), + [anon_sym_not_DASHhas2] = ACTIONS(2140), + [anon_sym_starts_DASHwith2] = ACTIONS(2140), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2140), + [anon_sym_ends_DASHwith2] = ACTIONS(2140), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2140), + [anon_sym_EQ_EQ2] = ACTIONS(2140), + [anon_sym_BANG_EQ2] = ACTIONS(2140), + [anon_sym_LT2] = ACTIONS(2142), + [anon_sym_LT_EQ2] = ACTIONS(2140), + [anon_sym_GT_EQ2] = ACTIONS(2140), + [anon_sym_EQ_TILDE2] = ACTIONS(2140), + [anon_sym_BANG_TILDE2] = ACTIONS(2140), + [anon_sym_like2] = ACTIONS(2140), + [anon_sym_not_DASHlike2] = ACTIONS(2140), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_STAR_STAR2] = ACTIONS(2140), + [anon_sym_PLUS_PLUS2] = ACTIONS(2140), + [anon_sym_SLASH2] = ACTIONS(2142), + [anon_sym_mod2] = ACTIONS(2140), + [anon_sym_SLASH_SLASH2] = ACTIONS(2140), + [anon_sym_PLUS2] = ACTIONS(2142), + [anon_sym_bit_DASHshl2] = ACTIONS(2140), + [anon_sym_bit_DASHshr2] = ACTIONS(2140), + [anon_sym_bit_DASHand2] = ACTIONS(2140), + [anon_sym_bit_DASHxor2] = ACTIONS(2140), + [anon_sym_bit_DASHor2] = ACTIONS(2140), + [anon_sym_err_GT] = ACTIONS(2142), + [anon_sym_out_GT] = ACTIONS(2142), + [anon_sym_e_GT] = ACTIONS(2142), + [anon_sym_o_GT] = ACTIONS(2142), + [anon_sym_err_PLUSout_GT] = ACTIONS(2142), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2142), + [anon_sym_o_PLUSe_GT] = ACTIONS(2142), + [anon_sym_e_PLUSo_GT] = ACTIONS(2142), + [anon_sym_err_GT_GT] = ACTIONS(2140), + [anon_sym_out_GT_GT] = ACTIONS(2140), + [anon_sym_e_GT_GT] = ACTIONS(2140), + [anon_sym_o_GT_GT] = ACTIONS(2140), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2140), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2140), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2140), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2140), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1138)] = { + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1138), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2864), - [anon_sym_xor2] = ACTIONS(2866), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1139)] = { - [aux_sym__repeat_newline] = STATE(1200), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1139), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2692), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2694), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2692), + [anon_sym_has2] = ACTIONS(2692), + [anon_sym_not_DASHhas2] = ACTIONS(2692), + [anon_sym_starts_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), + [anon_sym_ends_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), + [anon_sym_EQ_EQ2] = ACTIONS(2692), + [anon_sym_BANG_EQ2] = ACTIONS(2692), + [anon_sym_LT2] = ACTIONS(2694), + [anon_sym_LT_EQ2] = ACTIONS(2692), + [anon_sym_GT_EQ2] = ACTIONS(2692), + [anon_sym_EQ_TILDE2] = ACTIONS(2692), + [anon_sym_BANG_TILDE2] = ACTIONS(2692), + [anon_sym_like2] = ACTIONS(2692), + [anon_sym_not_DASHlike2] = ACTIONS(2692), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2692), + [anon_sym_bit_DASHshr2] = ACTIONS(2692), + [anon_sym_bit_DASHand2] = ACTIONS(2692), + [anon_sym_bit_DASHxor2] = ACTIONS(2692), + [anon_sym_bit_DASHor2] = ACTIONS(2692), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1140)] = { + [aux_sym__repeat_newline] = STATE(507), [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_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2800), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2816), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1141)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1151), [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_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2822), + [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(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2702), + [anon_sym_xor2] = ACTIONS(2702), + [anon_sym_or2] = ACTIONS(2702), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [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(1142)] = { + [aux_sym__repeat_newline] = STATE(1198), [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_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2688), + [anon_sym_bit_DASHxor2] = ACTIONS(2688), + [anon_sym_bit_DASHor2] = ACTIONS(2688), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1143)] = { - [aux_sym__repeat_newline] = STATE(1131), + [aux_sym__repeat_newline] = STATE(1156), [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_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2822), + [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(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2702), + [anon_sym_xor2] = ACTIONS(2702), + [anon_sym_or2] = ACTIONS(2702), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2851), + [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(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), + [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(2148), + [anon_sym_STAR_STAR2] = ACTIONS(2148), + [anon_sym_PLUS_PLUS2] = ACTIONS(2148), + [anon_sym_SLASH2] = ACTIONS(2150), + [anon_sym_mod2] = ACTIONS(2148), + [anon_sym_SLASH_SLASH2] = ACTIONS(2148), + [anon_sym_PLUS2] = ACTIONS(2150), + [anon_sym_bit_DASHshl2] = ACTIONS(2148), + [anon_sym_bit_DASHshr2] = ACTIONS(2148), + [anon_sym_bit_DASHand2] = ACTIONS(2148), + [anon_sym_bit_DASHxor2] = ACTIONS(2148), + [anon_sym_bit_DASHor2] = ACTIONS(2148), + [anon_sym_err_GT] = ACTIONS(2150), + [anon_sym_out_GT] = ACTIONS(2150), + [anon_sym_e_GT] = ACTIONS(2150), + [anon_sym_o_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT] = ACTIONS(2150), + [anon_sym_err_GT_GT] = ACTIONS(2148), + [anon_sym_out_GT_GT] = ACTIONS(2148), + [anon_sym_e_GT_GT] = ACTIONS(2148), + [anon_sym_o_GT_GT] = ACTIONS(2148), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2148), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2148), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2148), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2148), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1145)] = { + [aux_sym__repeat_newline] = STATE(1184), [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_in] = ACTIONS(2718), + [sym__newline] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2720), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2718), + [anon_sym_has2] = ACTIONS(2718), + [anon_sym_not_DASHhas2] = ACTIONS(2718), + [anon_sym_starts_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2718), + [anon_sym_ends_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2718), + [anon_sym_EQ_EQ2] = ACTIONS(2718), + [anon_sym_BANG_EQ2] = ACTIONS(2718), + [anon_sym_LT2] = ACTIONS(2720), + [anon_sym_LT_EQ2] = ACTIONS(2718), + [anon_sym_GT_EQ2] = ACTIONS(2718), + [anon_sym_EQ_TILDE2] = ACTIONS(2718), + [anon_sym_BANG_TILDE2] = ACTIONS(2718), + [anon_sym_like2] = ACTIONS(2718), + [anon_sym_not_DASHlike2] = ACTIONS(2718), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2718), + [anon_sym_bit_DASHshr2] = ACTIONS(2718), + [anon_sym_bit_DASHand2] = ACTIONS(2718), + [anon_sym_bit_DASHxor2] = ACTIONS(2718), + [anon_sym_bit_DASHor2] = ACTIONS(2718), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), [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_in] = ACTIONS(2853), + [sym__newline] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_PIPE] = ACTIONS(2578), + [anon_sym_err_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_GT_PIPE] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_GT2] = ACTIONS(2855), + [anon_sym_DASH2] = ACTIONS(2857), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_STAR2] = ACTIONS(2859), + [anon_sym_and2] = ACTIONS(2578), + [anon_sym_xor2] = ACTIONS(2578), + [anon_sym_or2] = ACTIONS(2578), + [anon_sym_not_DASHin2] = ACTIONS(2853), + [anon_sym_has2] = ACTIONS(2853), + [anon_sym_not_DASHhas2] = ACTIONS(2853), + [anon_sym_starts_DASHwith2] = ACTIONS(2853), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2853), + [anon_sym_ends_DASHwith2] = ACTIONS(2853), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2853), + [anon_sym_EQ_EQ2] = ACTIONS(2861), + [anon_sym_BANG_EQ2] = ACTIONS(2861), + [anon_sym_LT2] = ACTIONS(2855), + [anon_sym_LT_EQ2] = ACTIONS(2861), + [anon_sym_GT_EQ2] = ACTIONS(2861), + [anon_sym_EQ_TILDE2] = ACTIONS(2863), + [anon_sym_BANG_TILDE2] = ACTIONS(2863), + [anon_sym_like2] = ACTIONS(2863), + [anon_sym_not_DASHlike2] = ACTIONS(2863), + [anon_sym_STAR_STAR2] = ACTIONS(2865), + [anon_sym_PLUS_PLUS2] = ACTIONS(2865), + [anon_sym_SLASH2] = ACTIONS(2859), + [anon_sym_mod2] = ACTIONS(2867), + [anon_sym_SLASH_SLASH2] = ACTIONS(2867), + [anon_sym_PLUS2] = ACTIONS(2869), + [anon_sym_bit_DASHshl2] = ACTIONS(2871), + [anon_sym_bit_DASHshr2] = ACTIONS(2871), + [anon_sym_bit_DASHand2] = ACTIONS(2873), + [anon_sym_bit_DASHxor2] = ACTIONS(2578), + [anon_sym_bit_DASHor2] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2578), + [anon_sym_out_GT_GT] = ACTIONS(2578), + [anon_sym_e_GT_GT] = ACTIONS(2578), + [anon_sym_o_GT_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1147)] = { + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1147), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1148)] = { - [aux_sym__repeat_newline] = STATE(1204), + [aux_sym__repeat_newline] = STATE(507), [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(2792), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2692), + [anon_sym_bit_DASHxor2] = ACTIONS(2692), + [anon_sym_bit_DASHor2] = ACTIONS(2692), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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), + [aux_sym__repeat_newline] = STATE(1186), [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(2835), + [sym__newline] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2718), + [anon_sym_bit_DASHxor2] = ACTIONS(2718), + [anon_sym_bit_DASHor2] = ACTIONS(2718), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(1150)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1185), [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(2835), + [sym__newline] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2877), + [anon_sym_xor2] = ACTIONS(2879), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2851), + [anon_sym_bit_DASHxor2] = ACTIONS(2881), + [anon_sym_bit_DASHor2] = ACTIONS(2883), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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(507), [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(2792), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(1152)] = { - [aux_sym__repeat_newline] = STATE(1206), + [aux_sym__repeat_newline] = STATE(1162), [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_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_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_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_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_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2822), [anon_sym_SEMI] = ACTIONS(2702), [anon_sym_PIPE] = ACTIONS(2702), [anon_sym_err_GT_PIPE] = ACTIONS(2702), @@ -132018,38 +132064,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), [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_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2851), + [anon_sym_bit_DASHxor2] = ACTIONS(2881), [anon_sym_bit_DASHor2] = ACTIONS(2702), [anon_sym_err_GT] = ACTIONS(2704), [anon_sym_out_GT] = ACTIONS(2704), @@ -132069,1418 +132115,1619 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(1153)] = { + [aux_sym__repeat_newline] = STATE(1188), + [sym_comment] = STATE(1153), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2851), + [anon_sym_bit_DASHxor2] = ACTIONS(2718), + [anon_sym_bit_DASHor2] = ACTIONS(2718), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1154)] = { + [aux_sym__repeat_newline] = STATE(1201), + [sym_comment] = STATE(1154), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2851), + [anon_sym_bit_DASHxor2] = ACTIONS(2688), + [anon_sym_bit_DASHor2] = ACTIONS(2688), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1155)] = { + [sym_comment] = STATE(1155), + [anon_sym_in] = ACTIONS(2853), + [sym__newline] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_PIPE] = ACTIONS(2578), + [anon_sym_err_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_GT_PIPE] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_GT2] = ACTIONS(2855), + [anon_sym_DASH2] = ACTIONS(2857), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_STAR2] = ACTIONS(2859), + [anon_sym_and2] = ACTIONS(2578), + [anon_sym_xor2] = ACTIONS(2578), + [anon_sym_or2] = ACTIONS(2578), + [anon_sym_not_DASHin2] = ACTIONS(2853), + [anon_sym_has2] = ACTIONS(2853), + [anon_sym_not_DASHhas2] = ACTIONS(2853), + [anon_sym_starts_DASHwith2] = ACTIONS(2853), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2853), + [anon_sym_ends_DASHwith2] = ACTIONS(2853), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2853), + [anon_sym_EQ_EQ2] = ACTIONS(2861), + [anon_sym_BANG_EQ2] = ACTIONS(2861), + [anon_sym_LT2] = ACTIONS(2855), + [anon_sym_LT_EQ2] = ACTIONS(2861), + [anon_sym_GT_EQ2] = ACTIONS(2861), + [anon_sym_EQ_TILDE2] = ACTIONS(2863), + [anon_sym_BANG_TILDE2] = ACTIONS(2863), + [anon_sym_like2] = ACTIONS(2863), + [anon_sym_not_DASHlike2] = ACTIONS(2863), + [anon_sym_STAR_STAR2] = ACTIONS(2865), + [anon_sym_PLUS_PLUS2] = ACTIONS(2865), + [anon_sym_SLASH2] = ACTIONS(2859), + [anon_sym_mod2] = ACTIONS(2867), + [anon_sym_SLASH_SLASH2] = ACTIONS(2867), + [anon_sym_PLUS2] = ACTIONS(2869), + [anon_sym_bit_DASHshl2] = ACTIONS(2871), + [anon_sym_bit_DASHshr2] = ACTIONS(2871), + [anon_sym_bit_DASHand2] = ACTIONS(2873), + [anon_sym_bit_DASHxor2] = ACTIONS(2885), + [anon_sym_bit_DASHor2] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2578), + [anon_sym_out_GT_GT] = ACTIONS(2578), + [anon_sym_e_GT_GT] = ACTIONS(2578), + [anon_sym_o_GT_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1156)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1156), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2816), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(1157)] = { - [aux_sym__repeat_newline] = STATE(1208), + [sym__ctrl_match_body] = STATE(4976), + [sym_match_arm] = STATE(4468), + [sym_default_arm] = STATE(4468), + [sym_match_pattern] = STATE(5020), + [sym__match_pattern] = STATE(3798), + [sym__match_pattern_expression] = STATE(4208), + [sym__match_pattern_value] = STATE(4213), + [sym__match_pattern_list] = STATE(4214), + [sym__match_pattern_record] = STATE(4216), + [sym_expr_parenthesized] = STATE(3717), + [sym_val_range] = STATE(4213), + [sym__val_range] = STATE(5062), + [sym_val_nothing] = STATE(4216), + [sym_val_bool] = STATE(3999), + [sym_val_variable] = STATE(3748), + [sym_val_number] = STATE(4216), + [sym__val_number_decimal] = STATE(3495), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(4216), + [sym_val_filesize] = STATE(4216), + [sym_val_binary] = STATE(4216), + [sym_val_string] = STATE(4216), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_table] = STATE(4216), + [sym_unquoted] = STATE(4232), + [sym__unquoted_anonymous_prefix] = STATE(5062), [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), + [aux_sym__types_body_repeat1] = STATE(1346), + [aux_sym__ctrl_match_body_repeat1] = STATE(1359), + [anon_sym_true] = ACTIONS(2887), + [anon_sym_false] = ACTIONS(2887), + [anon_sym_null] = ACTIONS(2889), + [aux_sym_cmd_identifier_token3] = ACTIONS(2891), + [aux_sym_cmd_identifier_token4] = ACTIONS(2891), + [aux_sym_cmd_identifier_token5] = ACTIONS(2891), + [sym__newline] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_DOLLAR] = ACTIONS(2897), + [anon_sym_LBRACE] = ACTIONS(2899), + [anon_sym_RBRACE] = ACTIONS(2901), + [anon_sym__] = ACTIONS(2903), + [anon_sym_DOT_DOT] = ACTIONS(2905), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2907), + [anon_sym_DOT_DOT_LT] = ACTIONS(2907), + [aux_sym__val_number_decimal_token1] = ACTIONS(2909), + [aux_sym__val_number_decimal_token2] = ACTIONS(2911), + [aux_sym__val_number_decimal_token3] = ACTIONS(2913), + [aux_sym__val_number_decimal_token4] = ACTIONS(2913), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2915), + [anon_sym_DQUOTE] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1802), }, [STATE(1158)] = { - [aux_sym__repeat_newline] = STATE(1214), + [sym__ctrl_match_body] = STATE(4981), + [sym_match_arm] = STATE(4468), + [sym_default_arm] = STATE(4468), + [sym_match_pattern] = STATE(5020), + [sym__match_pattern] = STATE(3798), + [sym__match_pattern_expression] = STATE(4208), + [sym__match_pattern_value] = STATE(4213), + [sym__match_pattern_list] = STATE(4214), + [sym__match_pattern_record] = STATE(4216), + [sym_expr_parenthesized] = STATE(3717), + [sym_val_range] = STATE(4213), + [sym__val_range] = STATE(5062), + [sym_val_nothing] = STATE(4216), + [sym_val_bool] = STATE(3999), + [sym_val_variable] = STATE(3748), + [sym_val_number] = STATE(4216), + [sym__val_number_decimal] = STATE(3495), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(4216), + [sym_val_filesize] = STATE(4216), + [sym_val_binary] = STATE(4216), + [sym_val_string] = STATE(4216), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_table] = STATE(4216), + [sym_unquoted] = STATE(4232), + [sym__unquoted_anonymous_prefix] = STATE(5062), [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), + [aux_sym__types_body_repeat1] = STATE(1346), + [aux_sym__ctrl_match_body_repeat1] = STATE(1359), + [anon_sym_true] = ACTIONS(2887), + [anon_sym_false] = ACTIONS(2887), + [anon_sym_null] = ACTIONS(2889), + [aux_sym_cmd_identifier_token3] = ACTIONS(2891), + [aux_sym_cmd_identifier_token4] = ACTIONS(2891), + [aux_sym_cmd_identifier_token5] = ACTIONS(2891), + [sym__newline] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_DOLLAR] = ACTIONS(2897), + [anon_sym_LBRACE] = ACTIONS(2899), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym__] = ACTIONS(2903), + [anon_sym_DOT_DOT] = ACTIONS(2905), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2907), + [anon_sym_DOT_DOT_LT] = ACTIONS(2907), + [aux_sym__val_number_decimal_token1] = ACTIONS(2909), + [aux_sym__val_number_decimal_token2] = ACTIONS(2911), + [aux_sym__val_number_decimal_token3] = ACTIONS(2913), + [aux_sym__val_number_decimal_token4] = ACTIONS(2913), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2915), + [anon_sym_DQUOTE] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1802), }, [STATE(1159)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [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(2792), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2816), + [anon_sym_bit_DASHxor2] = ACTIONS(2692), + [anon_sym_bit_DASHor2] = ACTIONS(2692), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1160)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1190), [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), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2851), + [anon_sym_bit_DASHxor2] = ACTIONS(2881), + [anon_sym_bit_DASHor2] = ACTIONS(2718), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1161)] = { - [aux_sym__repeat_newline] = STATE(1155), + [aux_sym__repeat_newline] = STATE(507), [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), + [anon_sym_in] = ACTIONS(2692), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2694), + [anon_sym_DASH2] = ACTIONS(2692), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2692), + [anon_sym_has2] = ACTIONS(2692), + [anon_sym_not_DASHhas2] = ACTIONS(2692), + [anon_sym_starts_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), + [anon_sym_ends_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), + [anon_sym_EQ_EQ2] = ACTIONS(2692), + [anon_sym_BANG_EQ2] = ACTIONS(2692), + [anon_sym_LT2] = ACTIONS(2694), + [anon_sym_LT_EQ2] = ACTIONS(2692), + [anon_sym_GT_EQ2] = ACTIONS(2692), + [anon_sym_EQ_TILDE2] = ACTIONS(2692), + [anon_sym_BANG_TILDE2] = ACTIONS(2692), + [anon_sym_like2] = ACTIONS(2692), + [anon_sym_not_DASHlike2] = ACTIONS(2692), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2694), + [anon_sym_bit_DASHshl2] = ACTIONS(2692), + [anon_sym_bit_DASHshr2] = ACTIONS(2692), + [anon_sym_bit_DASHand2] = ACTIONS(2692), + [anon_sym_bit_DASHxor2] = ACTIONS(2692), + [anon_sym_bit_DASHor2] = ACTIONS(2692), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1162)] = { - [aux_sym__repeat_newline] = STATE(1210), + [aux_sym__repeat_newline] = STATE(507), [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(2792), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2816), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1163)] = { + [aux_sym__repeat_newline] = STATE(1206), [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(2835), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2851), + [anon_sym_bit_DASHxor2] = ACTIONS(2881), + [anon_sym_bit_DASHor2] = ACTIONS(2688), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1164)] = { - [aux_sym__repeat_newline] = STATE(1160), + [aux_sym__repeat_newline] = STATE(507), [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(2710), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2710), + [anon_sym_has2] = ACTIONS(2710), + [anon_sym_not_DASHhas2] = ACTIONS(2710), + [anon_sym_starts_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), + [anon_sym_ends_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2710), + [anon_sym_BANG_TILDE2] = ACTIONS(2710), + [anon_sym_like2] = ACTIONS(2710), + [anon_sym_not_DASHlike2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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(2688), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2690), + [anon_sym_DASH2] = ACTIONS(2688), + [anon_sym_STAR2] = ACTIONS(2690), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2688), + [anon_sym_has2] = ACTIONS(2688), + [anon_sym_not_DASHhas2] = ACTIONS(2688), + [anon_sym_starts_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), + [anon_sym_ends_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), + [anon_sym_EQ_EQ2] = ACTIONS(2688), + [anon_sym_BANG_EQ2] = ACTIONS(2688), + [anon_sym_LT2] = ACTIONS(2690), + [anon_sym_LT_EQ2] = ACTIONS(2688), + [anon_sym_GT_EQ2] = ACTIONS(2688), + [anon_sym_EQ_TILDE2] = ACTIONS(2688), + [anon_sym_BANG_TILDE2] = ACTIONS(2688), + [anon_sym_like2] = ACTIONS(2688), + [anon_sym_not_DASHlike2] = ACTIONS(2688), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2690), + [anon_sym_mod2] = ACTIONS(2688), + [anon_sym_SLASH_SLASH2] = ACTIONS(2688), + [anon_sym_PLUS2] = ACTIONS(2690), + [anon_sym_bit_DASHshl2] = ACTIONS(2688), + [anon_sym_bit_DASHshr2] = ACTIONS(2688), + [anon_sym_bit_DASHand2] = ACTIONS(2688), + [anon_sym_bit_DASHxor2] = ACTIONS(2688), + [anon_sym_bit_DASHor2] = ACTIONS(2688), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1166)] = { + [aux_sym__repeat_newline] = STATE(507), [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(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(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [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(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [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(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [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(1167)] = { - [aux_sym__repeat_newline] = STATE(1212), + [aux_sym__repeat_newline] = STATE(507), [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_in] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2712), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2710), + [anon_sym_has2] = ACTIONS(2710), + [anon_sym_not_DASHhas2] = ACTIONS(2710), + [anon_sym_starts_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), + [anon_sym_ends_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), + [anon_sym_EQ_EQ2] = ACTIONS(2710), + [anon_sym_BANG_EQ2] = ACTIONS(2710), + [anon_sym_LT2] = ACTIONS(2712), + [anon_sym_LT_EQ2] = ACTIONS(2710), + [anon_sym_GT_EQ2] = ACTIONS(2710), + [anon_sym_EQ_TILDE2] = ACTIONS(2710), + [anon_sym_BANG_TILDE2] = ACTIONS(2710), + [anon_sym_like2] = ACTIONS(2710), + [anon_sym_not_DASHlike2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1168)] = { - [aux_sym__repeat_newline] = STATE(1219), + [aux_sym__repeat_newline] = STATE(507), [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(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(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [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(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [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(1169)] = { + [aux_sym__repeat_newline] = STATE(507), [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(2792), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2816), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2692), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1170)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [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(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_STAR2] = ACTIONS(2798), + [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(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [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(1171)] = { - [aux_sym__repeat_newline] = STATE(1165), + [aux_sym__repeat_newline] = STATE(507), [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(2710), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2712), + [anon_sym_DASH2] = ACTIONS(2710), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2710), + [anon_sym_has2] = ACTIONS(2710), + [anon_sym_not_DASHhas2] = ACTIONS(2710), + [anon_sym_starts_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), + [anon_sym_ends_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), + [anon_sym_EQ_EQ2] = ACTIONS(2710), + [anon_sym_BANG_EQ2] = ACTIONS(2710), + [anon_sym_LT2] = ACTIONS(2712), + [anon_sym_LT_EQ2] = ACTIONS(2710), + [anon_sym_GT_EQ2] = ACTIONS(2710), + [anon_sym_EQ_TILDE2] = ACTIONS(2710), + [anon_sym_BANG_TILDE2] = ACTIONS(2710), + [anon_sym_like2] = ACTIONS(2710), + [anon_sym_not_DASHlike2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2712), + [anon_sym_bit_DASHshl2] = ACTIONS(2710), + [anon_sym_bit_DASHshr2] = ACTIONS(2710), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1172)] = { + [aux_sym__repeat_newline] = STATE(507), [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(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_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(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [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(1173)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1173), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2706), - [anon_sym_STAR2] = ACTIONS(2708), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2708), - [anon_sym_mod2] = ACTIONS(2706), - [anon_sym_SLASH_SLASH2] = ACTIONS(2706), - [anon_sym_PLUS2] = ACTIONS(2708), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2578), + [sym__newline] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_PIPE] = ACTIONS(2578), + [anon_sym_err_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_GT_PIPE] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_GT2] = ACTIONS(2855), + [anon_sym_DASH2] = ACTIONS(2857), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_STAR2] = ACTIONS(2859), + [anon_sym_and2] = ACTIONS(2578), + [anon_sym_xor2] = ACTIONS(2578), + [anon_sym_or2] = ACTIONS(2578), + [anon_sym_not_DASHin2] = ACTIONS(2578), + [anon_sym_has2] = ACTIONS(2578), + [anon_sym_not_DASHhas2] = ACTIONS(2578), + [anon_sym_starts_DASHwith2] = ACTIONS(2578), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2578), + [anon_sym_ends_DASHwith2] = ACTIONS(2578), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2578), + [anon_sym_EQ_EQ2] = ACTIONS(2861), + [anon_sym_BANG_EQ2] = ACTIONS(2861), + [anon_sym_LT2] = ACTIONS(2855), + [anon_sym_LT_EQ2] = ACTIONS(2861), + [anon_sym_GT_EQ2] = ACTIONS(2861), + [anon_sym_EQ_TILDE2] = ACTIONS(2578), + [anon_sym_BANG_TILDE2] = ACTIONS(2578), + [anon_sym_like2] = ACTIONS(2578), + [anon_sym_not_DASHlike2] = ACTIONS(2578), + [anon_sym_STAR_STAR2] = ACTIONS(2865), + [anon_sym_PLUS_PLUS2] = ACTIONS(2865), + [anon_sym_SLASH2] = ACTIONS(2859), + [anon_sym_mod2] = ACTIONS(2867), + [anon_sym_SLASH_SLASH2] = ACTIONS(2867), + [anon_sym_PLUS2] = ACTIONS(2869), + [anon_sym_bit_DASHshl2] = ACTIONS(2871), + [anon_sym_bit_DASHshr2] = ACTIONS(2871), + [anon_sym_bit_DASHand2] = ACTIONS(2578), + [anon_sym_bit_DASHxor2] = ACTIONS(2578), + [anon_sym_bit_DASHor2] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2578), + [anon_sym_out_GT_GT] = ACTIONS(2578), + [anon_sym_e_GT_GT] = ACTIONS(2578), + [anon_sym_o_GT_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1174)] = { - [aux_sym__repeat_newline] = STATE(1170), + [aux_sym__repeat_newline] = STATE(507), [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(2792), + [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(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2746), + [anon_sym_xor2] = ACTIONS(2746), + [anon_sym_or2] = ACTIONS(2746), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2816), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [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(1175)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [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(2710), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2712), + [anon_sym_DASH2] = ACTIONS(2710), + [anon_sym_STAR2] = ACTIONS(2712), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2710), + [anon_sym_has2] = ACTIONS(2710), + [anon_sym_not_DASHhas2] = ACTIONS(2710), + [anon_sym_starts_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), + [anon_sym_ends_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), + [anon_sym_EQ_EQ2] = ACTIONS(2710), + [anon_sym_BANG_EQ2] = ACTIONS(2710), + [anon_sym_LT2] = ACTIONS(2712), + [anon_sym_LT_EQ2] = ACTIONS(2710), + [anon_sym_GT_EQ2] = ACTIONS(2710), + [anon_sym_EQ_TILDE2] = ACTIONS(2710), + [anon_sym_BANG_TILDE2] = ACTIONS(2710), + [anon_sym_like2] = ACTIONS(2710), + [anon_sym_not_DASHlike2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2712), + [anon_sym_mod2] = ACTIONS(2710), + [anon_sym_SLASH_SLASH2] = ACTIONS(2710), + [anon_sym_PLUS2] = ACTIONS(2712), + [anon_sym_bit_DASHshl2] = ACTIONS(2710), + [anon_sym_bit_DASHshr2] = ACTIONS(2710), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1176)] = { - [aux_sym__repeat_newline] = STATE(1243), + [aux_sym__repeat_newline] = STATE(507), [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(2792), + [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(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2800), + [anon_sym_xor2] = ACTIONS(2746), + [anon_sym_or2] = ACTIONS(2746), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2816), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [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(1177)] = { [aux_sym__repeat_newline] = STATE(1216), [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_POUND] = ACTIONS(3), - }, - [STATE(1178)] = { - [aux_sym__repeat_newline] = STATE(1238), - [sym_comment] = STATE(1178), [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), + [sym__newline] = ACTIONS(2822), [anon_sym_SEMI] = ACTIONS(2702), [anon_sym_PIPE] = ACTIONS(2702), [anon_sym_err_GT_PIPE] = ACTIONS(2702), @@ -133492,9 +133739,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), [anon_sym_and2] = ACTIONS(2702), [anon_sym_xor2] = ACTIONS(2702), [anon_sym_or2] = ACTIONS(2702), @@ -133505,23 +133752,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), [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_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), [anon_sym_bit_DASHand2] = ACTIONS(2702), [anon_sym_bit_DASHxor2] = ACTIONS(2702), [anon_sym_bit_DASHor2] = ACTIONS(2702), @@ -133543,547 +133790,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(1178)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1178), + [anon_sym_in] = ACTIONS(2792), + [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(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2800), + [anon_sym_xor2] = ACTIONS(2802), + [anon_sym_or2] = ACTIONS(2746), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2816), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [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(1179)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [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(2792), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2816), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1180)] = { - [aux_sym__repeat_newline] = STATE(1224), + [aux_sym__repeat_newline] = STATE(507), [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(2792), + [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(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2746), + [anon_sym_xor2] = ACTIONS(2746), + [anon_sym_or2] = ACTIONS(2746), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [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(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [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(1181)] = { - [aux_sym__repeat_newline] = STATE(1218), + [aux_sym__repeat_newline] = STATE(507), [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(2692), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2694), + [anon_sym_DASH2] = ACTIONS(2692), + [anon_sym_STAR2] = ACTIONS(2694), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2692), + [anon_sym_has2] = ACTIONS(2692), + [anon_sym_not_DASHhas2] = ACTIONS(2692), + [anon_sym_starts_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), + [anon_sym_ends_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), + [anon_sym_EQ_EQ2] = ACTIONS(2692), + [anon_sym_BANG_EQ2] = ACTIONS(2692), + [anon_sym_LT2] = ACTIONS(2694), + [anon_sym_LT_EQ2] = ACTIONS(2692), + [anon_sym_GT_EQ2] = ACTIONS(2692), + [anon_sym_EQ_TILDE2] = ACTIONS(2692), + [anon_sym_BANG_TILDE2] = ACTIONS(2692), + [anon_sym_like2] = ACTIONS(2692), + [anon_sym_not_DASHlike2] = ACTIONS(2692), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2694), + [anon_sym_mod2] = ACTIONS(2692), + [anon_sym_SLASH_SLASH2] = ACTIONS(2692), + [anon_sym_PLUS2] = ACTIONS(2694), + [anon_sym_bit_DASHshl2] = ACTIONS(2692), + [anon_sym_bit_DASHshr2] = ACTIONS(2692), + [anon_sym_bit_DASHand2] = ACTIONS(2692), + [anon_sym_bit_DASHxor2] = ACTIONS(2692), + [anon_sym_bit_DASHor2] = ACTIONS(2692), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1182)] = { - [aux_sym__repeat_newline] = STATE(1244), + [aux_sym__repeat_newline] = STATE(507), [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(2792), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2800), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2816), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1183)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1223), [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_POUND] = ACTIONS(3), - }, - [STATE(1184)] = { - [aux_sym__repeat_newline] = STATE(540), - [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_POUND] = ACTIONS(3), - }, - [STATE(1185)] = { - [aux_sym__repeat_newline] = STATE(1179), - [sym_comment] = STATE(1185), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1186)] = { - [aux_sym__repeat_newline] = STATE(1227), - [sym_comment] = STATE(1186), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1187)] = { - [aux_sym__repeat_newline] = STATE(1209), - [sym_comment] = STATE(1187), [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), + [sym__newline] = ACTIONS(2822), [anon_sym_SEMI] = ACTIONS(2702), [anon_sym_PIPE] = ACTIONS(2702), [anon_sym_err_GT_PIPE] = ACTIONS(2702), @@ -134095,9 +134141,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_GT2] = ACTIONS(2704), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), [anon_sym_and2] = ACTIONS(2702), [anon_sym_xor2] = ACTIONS(2702), [anon_sym_or2] = ACTIONS(2702), @@ -134108,23 +134154,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), [anon_sym_bit_DASHand2] = ACTIONS(2702), [anon_sym_bit_DASHxor2] = ACTIONS(2702), [anon_sym_bit_DASHor2] = ACTIONS(2702), @@ -134146,11 +134192,480 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(1184)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1184), + [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(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [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(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [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(1185)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1185), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2800), + [anon_sym_xor2] = ACTIONS(2802), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2816), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1186)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1186), + [anon_sym_in] = ACTIONS(2792), + [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(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2746), + [anon_sym_xor2] = ACTIONS(2746), + [anon_sym_or2] = ACTIONS(2746), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [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(1187)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1187), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2800), + [anon_sym_xor2] = ACTIONS(2802), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2816), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(1188)] = { - [aux_sym__repeat_newline] = STATE(1246), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1188), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), + [anon_sym_in] = ACTIONS(2792), + [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(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2746), + [anon_sym_xor2] = ACTIONS(2746), + [anon_sym_or2] = ACTIONS(2746), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2816), + [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(1189)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1189), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2710), + [anon_sym_BANG_TILDE2] = ACTIONS(2710), + [anon_sym_like2] = ACTIONS(2710), + [anon_sym_not_DASHlike2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1190)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1190), + [anon_sym_in] = ACTIONS(2792), + [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(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2746), + [anon_sym_xor2] = ACTIONS(2746), + [anon_sym_or2] = ACTIONS(2746), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2816), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [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(1191)] = { + [aux_sym__repeat_newline] = STATE(1229), + [sym_comment] = STATE(1191), + [anon_sym_in] = ACTIONS(2702), + [sym__newline] = ACTIONS(2822), [anon_sym_SEMI] = ACTIONS(2702), [anon_sym_PIPE] = ACTIONS(2702), [anon_sym_err_GT_PIPE] = ACTIONS(2702), @@ -134162,36 +134677,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_GT2] = ACTIONS(2704), + [anon_sym_DASH2] = ACTIONS(2702), + [anon_sym_STAR2] = ACTIONS(2827), [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_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(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [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), @@ -134213,279 +134728,547 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1189)] = { - [aux_sym__repeat_newline] = STATE(540), - [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), + [STATE(1192)] = { + [sym_comment] = STATE(1192), + [anon_sym_in] = ACTIONS(2578), + [sym__newline] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_PIPE] = ACTIONS(2578), + [anon_sym_err_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_GT_PIPE] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_GT2] = ACTIONS(2580), + [anon_sym_DASH2] = ACTIONS(2857), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_STAR2] = ACTIONS(2859), + [anon_sym_and2] = ACTIONS(2578), + [anon_sym_xor2] = ACTIONS(2578), + [anon_sym_or2] = ACTIONS(2578), + [anon_sym_not_DASHin2] = ACTIONS(2578), + [anon_sym_has2] = ACTIONS(2578), + [anon_sym_not_DASHhas2] = ACTIONS(2578), + [anon_sym_starts_DASHwith2] = ACTIONS(2578), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2578), + [anon_sym_ends_DASHwith2] = ACTIONS(2578), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2578), + [anon_sym_EQ_EQ2] = ACTIONS(2578), + [anon_sym_BANG_EQ2] = ACTIONS(2578), + [anon_sym_LT2] = ACTIONS(2580), + [anon_sym_LT_EQ2] = ACTIONS(2578), + [anon_sym_GT_EQ2] = ACTIONS(2578), + [anon_sym_EQ_TILDE2] = ACTIONS(2578), + [anon_sym_BANG_TILDE2] = ACTIONS(2578), + [anon_sym_like2] = ACTIONS(2578), + [anon_sym_not_DASHlike2] = ACTIONS(2578), + [anon_sym_STAR_STAR2] = ACTIONS(2865), + [anon_sym_PLUS_PLUS2] = ACTIONS(2865), + [anon_sym_SLASH2] = ACTIONS(2859), + [anon_sym_mod2] = ACTIONS(2867), + [anon_sym_SLASH_SLASH2] = ACTIONS(2867), + [anon_sym_PLUS2] = ACTIONS(2869), + [anon_sym_bit_DASHshl2] = ACTIONS(2871), + [anon_sym_bit_DASHshr2] = ACTIONS(2871), + [anon_sym_bit_DASHand2] = ACTIONS(2578), + [anon_sym_bit_DASHxor2] = ACTIONS(2578), + [anon_sym_bit_DASHor2] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2578), + [anon_sym_out_GT_GT] = ACTIONS(2578), + [anon_sym_e_GT_GT] = ACTIONS(2578), + [anon_sym_o_GT_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1190)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1190), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [STATE(1193)] = { + [aux_sym__repeat_newline] = STATE(1189), + [sym_comment] = STATE(1193), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2688), + [anon_sym_BANG_TILDE2] = ACTIONS(2688), + [anon_sym_like2] = ACTIONS(2688), + [anon_sym_not_DASHlike2] = ACTIONS(2688), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2688), + [anon_sym_bit_DASHxor2] = ACTIONS(2688), + [anon_sym_bit_DASHor2] = ACTIONS(2688), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(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), + [STATE(1194)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1194), + [anon_sym_in] = ACTIONS(2710), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2712), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2710), + [anon_sym_has2] = ACTIONS(2710), + [anon_sym_not_DASHhas2] = ACTIONS(2710), + [anon_sym_starts_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), + [anon_sym_ends_DASHwith2] = ACTIONS(2710), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), + [anon_sym_EQ_EQ2] = ACTIONS(2710), + [anon_sym_BANG_EQ2] = ACTIONS(2710), + [anon_sym_LT2] = ACTIONS(2712), + [anon_sym_LT_EQ2] = ACTIONS(2710), + [anon_sym_GT_EQ2] = ACTIONS(2710), + [anon_sym_EQ_TILDE2] = ACTIONS(2710), + [anon_sym_BANG_TILDE2] = ACTIONS(2710), + [anon_sym_like2] = ACTIONS(2710), + [anon_sym_not_DASHlike2] = ACTIONS(2710), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2710), + [anon_sym_bit_DASHshr2] = ACTIONS(2710), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1192)] = { - [aux_sym__repeat_newline] = STATE(1184), - [sym_comment] = STATE(1192), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [STATE(1195)] = { + [aux_sym__repeat_newline] = STATE(1179), + [sym_comment] = STATE(1195), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2851), + [anon_sym_bit_DASHxor2] = ACTIONS(2881), + [anon_sym_bit_DASHor2] = ACTIONS(2883), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1193)] = { - [aux_sym__repeat_newline] = STATE(1215), - [sym_comment] = STATE(1193), + [STATE(1196)] = { + [sym_comment] = STATE(1196), + [aux_sym_cmd_identifier_token2] = ACTIONS(2738), + [anon_sym_in] = ACTIONS(2508), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2508), + [anon_sym_RBRACE] = ACTIONS(2506), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2508), + [anon_sym_xor2] = ACTIONS(2508), + [anon_sym_or2] = ACTIONS(2508), + [anon_sym_not_DASHin2] = ACTIONS(2508), + [anon_sym_has2] = ACTIONS(2508), + [anon_sym_not_DASHhas2] = ACTIONS(2508), + [anon_sym_starts_DASHwith2] = ACTIONS(2508), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2508), + [anon_sym_ends_DASHwith2] = ACTIONS(2508), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2508), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2508), + [anon_sym_like2] = ACTIONS(2508), + [anon_sym_not_DASHlike2] = ACTIONS(2508), + [anon_sym_STAR_STAR2] = ACTIONS(2508), + [anon_sym_PLUS_PLUS2] = ACTIONS(2508), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2508), + [anon_sym_SLASH_SLASH2] = ACTIONS(2508), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2508), + [anon_sym_bit_DASHshr2] = ACTIONS(2508), + [anon_sym_bit_DASHand2] = ACTIONS(2508), + [anon_sym_bit_DASHxor2] = ACTIONS(2508), + [anon_sym_bit_DASHor2] = ACTIONS(2508), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1197)] = { + [sym_comment] = STATE(1197), + [aux_sym_cmd_identifier_token2] = ACTIONS(2738), + [anon_sym_in] = ACTIONS(2523), + [sym__newline] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_err_GT_PIPE] = ACTIONS(2521), + [anon_sym_out_GT_PIPE] = ACTIONS(2521), + [anon_sym_e_GT_PIPE] = ACTIONS(2521), + [anon_sym_o_GT_PIPE] = ACTIONS(2521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2521), + [anon_sym_GT2] = ACTIONS(2523), + [anon_sym_DASH2] = ACTIONS(2523), + [anon_sym_RBRACE] = ACTIONS(2521), + [anon_sym_STAR2] = ACTIONS(2523), + [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(2521), + [anon_sym_BANG_EQ2] = ACTIONS(2521), + [anon_sym_LT2] = ACTIONS(2523), + [anon_sym_LT_EQ2] = ACTIONS(2521), + [anon_sym_GT_EQ2] = ACTIONS(2521), + [anon_sym_EQ_TILDE2] = ACTIONS(2521), + [anon_sym_BANG_TILDE2] = ACTIONS(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(2523), + [anon_sym_mod2] = ACTIONS(2523), + [anon_sym_SLASH_SLASH2] = ACTIONS(2523), + [anon_sym_PLUS2] = ACTIONS(2523), + [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(2523), + [anon_sym_out_GT] = ACTIONS(2523), + [anon_sym_e_GT] = ACTIONS(2523), + [anon_sym_o_GT] = ACTIONS(2523), + [anon_sym_err_PLUSout_GT] = ACTIONS(2523), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2523), + [anon_sym_o_PLUSe_GT] = ACTIONS(2523), + [anon_sym_e_PLUSo_GT] = ACTIONS(2523), + [anon_sym_err_GT_GT] = ACTIONS(2521), + [anon_sym_out_GT_GT] = ACTIONS(2521), + [anon_sym_e_GT_GT] = ACTIONS(2521), + [anon_sym_o_GT_GT] = ACTIONS(2521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1198)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1198), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2710), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1199)] = { + [sym_comment] = STATE(1199), + [anon_sym_export] = ACTIONS(2919), + [anon_sym_alias] = ACTIONS(2923), + [anon_sym_let] = ACTIONS(2923), + [anon_sym_mut] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [aux_sym_cmd_identifier_token1] = ACTIONS(2919), + [anon_sym_def] = ACTIONS(2923), + [anon_sym_use] = ACTIONS(2923), + [anon_sym_export_DASHenv] = ACTIONS(2923), + [anon_sym_extern] = ACTIONS(2923), + [anon_sym_module] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_loop] = ACTIONS(2923), + [anon_sym_while] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_else] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2923), + [anon_sym_catch] = ACTIONS(2923), + [anon_sym_match] = ACTIONS(2923), + [anon_sym_in] = ACTIONS(2919), + [anon_sym_true] = ACTIONS(2923), + [anon_sym_false] = ACTIONS(2923), + [anon_sym_null] = ACTIONS(2923), + [aux_sym_cmd_identifier_token3] = ACTIONS(2923), + [aux_sym_cmd_identifier_token4] = ACTIONS(2923), + [aux_sym_cmd_identifier_token5] = ACTIONS(2923), + [sym__newline] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym_PIPE] = ACTIONS(2144), + [anon_sym_AT] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_DOLLAR] = ACTIONS(2919), + [anon_sym_DASH2] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_RBRACE] = ACTIONS(2927), + [anon_sym_DOT_DOT] = ACTIONS(2930), + [anon_sym_where] = ACTIONS(2927), + [aux_sym_expr_unary_token1] = ACTIONS(2927), + [anon_sym_PLUS2] = ACTIONS(2933), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_LT] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2935), + [aux_sym__val_number_decimal_token1] = ACTIONS(2919), + [aux_sym__val_number_decimal_token2] = ACTIONS(2923), + [aux_sym__val_number_decimal_token3] = ACTIONS(2923), + [aux_sym__val_number_decimal_token4] = ACTIONS(2923), + [aux_sym__val_number_token1] = ACTIONS(2923), + [aux_sym__val_number_token2] = ACTIONS(2923), + [aux_sym__val_number_token3] = ACTIONS(2923), + [anon_sym_0b] = ACTIONS(2930), + [anon_sym_0o] = ACTIONS(2930), + [anon_sym_0x] = ACTIONS(2930), + [sym_val_date] = ACTIONS(2927), + [anon_sym_DQUOTE] = ACTIONS(2923), + [anon_sym_SQUOTE] = ACTIONS(2923), + [anon_sym_BQUOTE] = ACTIONS(2923), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2935), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2923), + }, + [STATE(1200)] = { + [aux_sym__repeat_newline] = STATE(1239), + [sym_comment] = STATE(1200), [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), + [sym__newline] = ACTIONS(2822), [anon_sym_SEMI] = ACTIONS(2702), [anon_sym_PIPE] = ACTIONS(2702), [anon_sym_err_GT_PIPE] = ACTIONS(2702), @@ -134499,7 +135282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(2702), [anon_sym_GT2] = ACTIONS(2704), [anon_sym_DASH2] = ACTIONS(2702), - [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_STAR2] = ACTIONS(2704), [anon_sym_and2] = ACTIONS(2702), [anon_sym_xor2] = ACTIONS(2702), [anon_sym_or2] = ACTIONS(2702), @@ -134519,11 +135302,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [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), @@ -134548,212 +135331,547 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1194)] = { - [aux_sym__repeat_newline] = STATE(540), - [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), + [STATE(1201)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1201), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2816), + [anon_sym_bit_DASHxor2] = ACTIONS(2710), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1195)] = { - [aux_sym__repeat_newline] = STATE(1189), - [sym_comment] = STATE(1195), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [STATE(1202)] = { + [aux_sym__repeat_newline] = STATE(1178), + [sym_comment] = STATE(1202), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2877), + [anon_sym_xor2] = ACTIONS(2879), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2851), + [anon_sym_bit_DASHxor2] = ACTIONS(2881), + [anon_sym_bit_DASHor2] = ACTIONS(2883), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1196)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1196), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [STATE(1203)] = { + [sym_comment] = STATE(1203), + [anon_sym_in] = ACTIONS(2853), + [sym__newline] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_PIPE] = ACTIONS(2578), + [anon_sym_err_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_GT_PIPE] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_GT2] = ACTIONS(2855), + [anon_sym_DASH2] = ACTIONS(2857), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_STAR2] = ACTIONS(2859), + [anon_sym_and2] = ACTIONS(2578), + [anon_sym_xor2] = ACTIONS(2578), + [anon_sym_or2] = ACTIONS(2578), + [anon_sym_not_DASHin2] = ACTIONS(2853), + [anon_sym_has2] = ACTIONS(2853), + [anon_sym_not_DASHhas2] = ACTIONS(2853), + [anon_sym_starts_DASHwith2] = ACTIONS(2853), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2853), + [anon_sym_ends_DASHwith2] = ACTIONS(2853), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2853), + [anon_sym_EQ_EQ2] = ACTIONS(2861), + [anon_sym_BANG_EQ2] = ACTIONS(2861), + [anon_sym_LT2] = ACTIONS(2855), + [anon_sym_LT_EQ2] = ACTIONS(2861), + [anon_sym_GT_EQ2] = ACTIONS(2861), + [anon_sym_EQ_TILDE2] = ACTIONS(2863), + [anon_sym_BANG_TILDE2] = ACTIONS(2863), + [anon_sym_like2] = ACTIONS(2863), + [anon_sym_not_DASHlike2] = ACTIONS(2863), + [anon_sym_STAR_STAR2] = ACTIONS(2865), + [anon_sym_PLUS_PLUS2] = ACTIONS(2865), + [anon_sym_SLASH2] = ACTIONS(2859), + [anon_sym_mod2] = ACTIONS(2867), + [anon_sym_SLASH_SLASH2] = ACTIONS(2867), + [anon_sym_PLUS2] = ACTIONS(2869), + [anon_sym_bit_DASHshl2] = ACTIONS(2871), + [anon_sym_bit_DASHshr2] = ACTIONS(2871), + [anon_sym_bit_DASHand2] = ACTIONS(2578), + [anon_sym_bit_DASHxor2] = ACTIONS(2578), + [anon_sym_bit_DASHor2] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2578), + [anon_sym_out_GT_GT] = ACTIONS(2578), + [anon_sym_e_GT_GT] = ACTIONS(2578), + [anon_sym_o_GT_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1197)] = { - [aux_sym__repeat_newline] = STATE(1228), - [sym_comment] = STATE(1197), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), + [STATE(1204)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1204), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2692), + [anon_sym_BANG_TILDE2] = ACTIONS(2692), + [anon_sym_like2] = ACTIONS(2692), + [anon_sym_not_DASHlike2] = ACTIONS(2692), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2692), + [anon_sym_bit_DASHxor2] = ACTIONS(2692), + [anon_sym_bit_DASHor2] = ACTIONS(2692), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1205)] = { + [aux_sym__repeat_newline] = STATE(1256), + [sym_comment] = STATE(1205), + [anon_sym_in] = ACTIONS(2756), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_err_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_GT_PIPE] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_GT2] = ACTIONS(2758), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2756), + [anon_sym_xor2] = ACTIONS(2756), + [anon_sym_or2] = ACTIONS(2756), + [anon_sym_not_DASHin2] = ACTIONS(2756), + [anon_sym_has2] = ACTIONS(2756), + [anon_sym_not_DASHhas2] = ACTIONS(2756), + [anon_sym_starts_DASHwith2] = ACTIONS(2756), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2756), + [anon_sym_ends_DASHwith2] = ACTIONS(2756), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2756), + [anon_sym_EQ_EQ2] = ACTIONS(2756), + [anon_sym_BANG_EQ2] = ACTIONS(2756), + [anon_sym_LT2] = ACTIONS(2758), + [anon_sym_LT_EQ2] = ACTIONS(2756), + [anon_sym_GT_EQ2] = ACTIONS(2756), + [anon_sym_EQ_TILDE2] = ACTIONS(2756), + [anon_sym_BANG_TILDE2] = ACTIONS(2756), + [anon_sym_like2] = ACTIONS(2756), + [anon_sym_not_DASHlike2] = ACTIONS(2756), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2756), + [anon_sym_bit_DASHxor2] = ACTIONS(2756), + [anon_sym_bit_DASHor2] = ACTIONS(2756), + [anon_sym_err_GT] = ACTIONS(2758), + [anon_sym_out_GT] = ACTIONS(2758), + [anon_sym_e_GT] = ACTIONS(2758), + [anon_sym_o_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT] = ACTIONS(2758), + [anon_sym_err_GT_GT] = ACTIONS(2756), + [anon_sym_out_GT_GT] = ACTIONS(2756), + [anon_sym_e_GT_GT] = ACTIONS(2756), + [anon_sym_o_GT_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1206)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1206), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2710), + [anon_sym_xor2] = ACTIONS(2710), + [anon_sym_or2] = ACTIONS(2710), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2816), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2710), + [anon_sym_err_GT] = ACTIONS(2712), + [anon_sym_out_GT] = ACTIONS(2712), + [anon_sym_e_GT] = ACTIONS(2712), + [anon_sym_o_GT] = ACTIONS(2712), + [anon_sym_err_PLUSout_GT] = ACTIONS(2712), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), + [anon_sym_o_PLUSe_GT] = ACTIONS(2712), + [anon_sym_e_PLUSo_GT] = ACTIONS(2712), + [anon_sym_err_GT_GT] = ACTIONS(2710), + [anon_sym_out_GT_GT] = ACTIONS(2710), + [anon_sym_e_GT_GT] = ACTIONS(2710), + [anon_sym_o_GT_GT] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1207)] = { + [aux_sym__repeat_newline] = STATE(1161), + [sym_comment] = STATE(1207), + [anon_sym_in] = ACTIONS(2756), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_err_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_GT_PIPE] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_GT2] = ACTIONS(2758), + [anon_sym_DASH2] = ACTIONS(2756), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2756), + [anon_sym_xor2] = ACTIONS(2756), + [anon_sym_or2] = ACTIONS(2756), + [anon_sym_not_DASHin2] = ACTIONS(2756), + [anon_sym_has2] = ACTIONS(2756), + [anon_sym_not_DASHhas2] = ACTIONS(2756), + [anon_sym_starts_DASHwith2] = ACTIONS(2756), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2756), + [anon_sym_ends_DASHwith2] = ACTIONS(2756), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2756), + [anon_sym_EQ_EQ2] = ACTIONS(2756), + [anon_sym_BANG_EQ2] = ACTIONS(2756), + [anon_sym_LT2] = ACTIONS(2758), + [anon_sym_LT_EQ2] = ACTIONS(2756), + [anon_sym_GT_EQ2] = ACTIONS(2756), + [anon_sym_EQ_TILDE2] = ACTIONS(2756), + [anon_sym_BANG_TILDE2] = ACTIONS(2756), + [anon_sym_like2] = ACTIONS(2756), + [anon_sym_not_DASHlike2] = ACTIONS(2756), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2758), + [anon_sym_bit_DASHshl2] = ACTIONS(2756), + [anon_sym_bit_DASHshr2] = ACTIONS(2756), + [anon_sym_bit_DASHand2] = ACTIONS(2756), + [anon_sym_bit_DASHxor2] = ACTIONS(2756), + [anon_sym_bit_DASHor2] = ACTIONS(2756), + [anon_sym_err_GT] = ACTIONS(2758), + [anon_sym_out_GT] = ACTIONS(2758), + [anon_sym_e_GT] = ACTIONS(2758), + [anon_sym_o_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT] = ACTIONS(2758), + [anon_sym_err_GT_GT] = ACTIONS(2756), + [anon_sym_out_GT_GT] = ACTIONS(2756), + [anon_sym_e_GT_GT] = ACTIONS(2756), + [anon_sym_o_GT_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1208)] = { + [sym__ctrl_match_body] = STATE(5014), + [sym_match_arm] = STATE(4468), + [sym_default_arm] = STATE(4468), + [sym_match_pattern] = STATE(5020), + [sym__match_pattern] = STATE(3798), + [sym__match_pattern_expression] = STATE(4208), + [sym__match_pattern_value] = STATE(4213), + [sym__match_pattern_list] = STATE(4214), + [sym__match_pattern_record] = STATE(4216), + [sym_expr_parenthesized] = STATE(3717), + [sym_val_range] = STATE(4213), + [sym__val_range] = STATE(5062), + [sym_val_nothing] = STATE(4216), + [sym_val_bool] = STATE(3999), + [sym_val_variable] = STATE(3748), + [sym_val_number] = STATE(4216), + [sym__val_number_decimal] = STATE(3495), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(4216), + [sym_val_filesize] = STATE(4216), + [sym_val_binary] = STATE(4216), + [sym_val_string] = STATE(4216), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_table] = STATE(4216), + [sym_unquoted] = STATE(4232), + [sym__unquoted_anonymous_prefix] = STATE(5062), + [sym_comment] = STATE(1208), + [aux_sym__types_body_repeat1] = STATE(1346), + [aux_sym__ctrl_match_body_repeat1] = STATE(1359), + [anon_sym_true] = ACTIONS(2887), + [anon_sym_false] = ACTIONS(2887), + [anon_sym_null] = ACTIONS(2889), + [aux_sym_cmd_identifier_token3] = ACTIONS(2891), + [aux_sym_cmd_identifier_token4] = ACTIONS(2891), + [aux_sym_cmd_identifier_token5] = ACTIONS(2891), + [sym__newline] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_DOLLAR] = ACTIONS(2897), + [anon_sym_LBRACE] = ACTIONS(2899), + [anon_sym_RBRACE] = ACTIONS(2940), + [anon_sym__] = ACTIONS(2903), + [anon_sym_DOT_DOT] = ACTIONS(2905), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2907), + [anon_sym_DOT_DOT_LT] = ACTIONS(2907), + [aux_sym__val_number_decimal_token1] = ACTIONS(2909), + [aux_sym__val_number_decimal_token2] = ACTIONS(2911), + [aux_sym__val_number_decimal_token3] = ACTIONS(2913), + [aux_sym__val_number_decimal_token4] = ACTIONS(2913), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2915), + [anon_sym_DQUOTE] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), + [aux_sym_unquoted_token1] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1802), + }, + [STATE(1209)] = { + [aux_sym__repeat_newline] = STATE(1244), + [sym_comment] = STATE(1209), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2822), [anon_sym_SEMI] = ACTIONS(2702), [anon_sym_PIPE] = ACTIONS(2702), [anon_sym_err_GT_PIPE] = ACTIONS(2702), @@ -134765,39 +135883,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [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_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2851), + [anon_sym_bit_DASHxor2] = ACTIONS(2881), + [anon_sym_bit_DASHor2] = ACTIONS(2883), [anon_sym_err_GT] = ACTIONS(2704), [anon_sym_out_GT] = ACTIONS(2704), [anon_sym_e_GT] = ACTIONS(2704), @@ -134816,212 +135934,614 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(1210)] = { + [sym__ctrl_match_body] = STATE(4955), + [sym_match_arm] = STATE(4468), + [sym_default_arm] = STATE(4468), + [sym_match_pattern] = STATE(5020), + [sym__match_pattern] = STATE(3798), + [sym__match_pattern_expression] = STATE(4208), + [sym__match_pattern_value] = STATE(4213), + [sym__match_pattern_list] = STATE(4214), + [sym__match_pattern_record] = STATE(4216), + [sym_expr_parenthesized] = STATE(3717), + [sym_val_range] = STATE(4213), + [sym__val_range] = STATE(5062), + [sym_val_nothing] = STATE(4216), + [sym_val_bool] = STATE(3999), + [sym_val_variable] = STATE(3748), + [sym_val_number] = STATE(4216), + [sym__val_number_decimal] = STATE(3495), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(4216), + [sym_val_filesize] = STATE(4216), + [sym_val_binary] = STATE(4216), + [sym_val_string] = STATE(4216), + [sym__raw_str] = STATE(2238), + [sym__str_double_quotes] = STATE(2238), + [sym__str_single_quotes] = STATE(2238), + [sym__str_back_ticks] = STATE(2238), + [sym_val_table] = STATE(4216), + [sym_unquoted] = STATE(4232), + [sym__unquoted_anonymous_prefix] = STATE(5062), + [sym_comment] = STATE(1210), + [aux_sym__types_body_repeat1] = STATE(1346), + [aux_sym__ctrl_match_body_repeat1] = STATE(1359), + [anon_sym_true] = ACTIONS(2887), + [anon_sym_false] = ACTIONS(2887), + [anon_sym_null] = ACTIONS(2889), + [aux_sym_cmd_identifier_token3] = ACTIONS(2891), + [aux_sym_cmd_identifier_token4] = ACTIONS(2891), + [aux_sym_cmd_identifier_token5] = ACTIONS(2891), + [sym__newline] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_DOLLAR] = ACTIONS(2897), + [anon_sym_LBRACE] = ACTIONS(2899), + [anon_sym_RBRACE] = ACTIONS(2942), + [anon_sym__] = ACTIONS(2903), + [anon_sym_DOT_DOT] = ACTIONS(2905), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2907), + [anon_sym_DOT_DOT_LT] = ACTIONS(2907), + [aux_sym__val_number_decimal_token1] = ACTIONS(2909), + [aux_sym__val_number_decimal_token2] = ACTIONS(2911), + [aux_sym__val_number_decimal_token3] = ACTIONS(2913), + [aux_sym__val_number_decimal_token4] = ACTIONS(2913), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2915), + [anon_sym_DQUOTE] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1800), + [aux_sym_unquoted_token1] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1802), }, - [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), + [STATE(1211)] = { + [aux_sym__repeat_newline] = STATE(1181), + [sym_comment] = STATE(1211), + [anon_sym_in] = ACTIONS(2756), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_err_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_GT_PIPE] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_GT2] = ACTIONS(2758), + [anon_sym_DASH2] = ACTIONS(2756), + [anon_sym_STAR2] = ACTIONS(2758), + [anon_sym_and2] = ACTIONS(2756), + [anon_sym_xor2] = ACTIONS(2756), + [anon_sym_or2] = ACTIONS(2756), + [anon_sym_not_DASHin2] = ACTIONS(2756), + [anon_sym_has2] = ACTIONS(2756), + [anon_sym_not_DASHhas2] = ACTIONS(2756), + [anon_sym_starts_DASHwith2] = ACTIONS(2756), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2756), + [anon_sym_ends_DASHwith2] = ACTIONS(2756), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2756), + [anon_sym_EQ_EQ2] = ACTIONS(2756), + [anon_sym_BANG_EQ2] = ACTIONS(2756), + [anon_sym_LT2] = ACTIONS(2758), + [anon_sym_LT_EQ2] = ACTIONS(2756), + [anon_sym_GT_EQ2] = ACTIONS(2756), + [anon_sym_EQ_TILDE2] = ACTIONS(2756), + [anon_sym_BANG_TILDE2] = ACTIONS(2756), + [anon_sym_like2] = ACTIONS(2756), + [anon_sym_not_DASHlike2] = ACTIONS(2756), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2758), + [anon_sym_mod2] = ACTIONS(2756), + [anon_sym_SLASH_SLASH2] = ACTIONS(2756), + [anon_sym_PLUS2] = ACTIONS(2758), + [anon_sym_bit_DASHshl2] = ACTIONS(2756), + [anon_sym_bit_DASHshr2] = ACTIONS(2756), + [anon_sym_bit_DASHand2] = ACTIONS(2756), + [anon_sym_bit_DASHxor2] = ACTIONS(2756), + [anon_sym_bit_DASHor2] = ACTIONS(2756), + [anon_sym_err_GT] = ACTIONS(2758), + [anon_sym_out_GT] = ACTIONS(2758), + [anon_sym_e_GT] = ACTIONS(2758), + [anon_sym_o_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT] = ACTIONS(2758), + [anon_sym_err_GT_GT] = ACTIONS(2756), + [anon_sym_out_GT_GT] = ACTIONS(2756), + [anon_sym_e_GT_GT] = ACTIONS(2756), + [anon_sym_o_GT_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), [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), + [STATE(1212)] = { + [aux_sym__repeat_newline] = STATE(1166), + [sym_comment] = STATE(1212), + [anon_sym_in] = ACTIONS(2718), + [sym__newline] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2718), + [anon_sym_has2] = ACTIONS(2718), + [anon_sym_not_DASHhas2] = ACTIONS(2718), + [anon_sym_starts_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2718), + [anon_sym_ends_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2718), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2718), + [anon_sym_BANG_TILDE2] = ACTIONS(2718), + [anon_sym_like2] = ACTIONS(2718), + [anon_sym_not_DASHlike2] = ACTIONS(2718), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2718), + [anon_sym_bit_DASHxor2] = ACTIONS(2718), + [anon_sym_bit_DASHor2] = ACTIONS(2718), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), [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), + [STATE(1213)] = { + [aux_sym__repeat_newline] = STATE(1236), + [sym_comment] = STATE(1213), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_err_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_GT_PIPE] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2756), + [anon_sym_xor2] = ACTIONS(2756), + [anon_sym_or2] = ACTIONS(2756), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2851), + [anon_sym_bit_DASHxor2] = ACTIONS(2881), + [anon_sym_bit_DASHor2] = ACTIONS(2883), + [anon_sym_err_GT] = ACTIONS(2758), + [anon_sym_out_GT] = ACTIONS(2758), + [anon_sym_e_GT] = ACTIONS(2758), + [anon_sym_o_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT] = ACTIONS(2758), + [anon_sym_err_GT_GT] = ACTIONS(2756), + [anon_sym_out_GT_GT] = ACTIONS(2756), + [anon_sym_e_GT_GT] = ACTIONS(2756), + [anon_sym_o_GT_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1214)] = { + [sym_comment] = STATE(1214), + [anon_sym_in] = ACTIONS(2578), + [sym__newline] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_PIPE] = ACTIONS(2578), + [anon_sym_err_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_GT_PIPE] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_GT2] = ACTIONS(2580), + [anon_sym_DASH2] = ACTIONS(2578), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_STAR2] = ACTIONS(2859), + [anon_sym_and2] = ACTIONS(2578), + [anon_sym_xor2] = ACTIONS(2578), + [anon_sym_or2] = ACTIONS(2578), + [anon_sym_not_DASHin2] = ACTIONS(2578), + [anon_sym_has2] = ACTIONS(2578), + [anon_sym_not_DASHhas2] = ACTIONS(2578), + [anon_sym_starts_DASHwith2] = ACTIONS(2578), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2578), + [anon_sym_ends_DASHwith2] = ACTIONS(2578), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2578), + [anon_sym_EQ_EQ2] = ACTIONS(2578), + [anon_sym_BANG_EQ2] = ACTIONS(2578), + [anon_sym_LT2] = ACTIONS(2580), + [anon_sym_LT_EQ2] = ACTIONS(2578), + [anon_sym_GT_EQ2] = ACTIONS(2578), + [anon_sym_EQ_TILDE2] = ACTIONS(2578), + [anon_sym_BANG_TILDE2] = ACTIONS(2578), + [anon_sym_like2] = ACTIONS(2578), + [anon_sym_not_DASHlike2] = ACTIONS(2578), + [anon_sym_STAR_STAR2] = ACTIONS(2865), + [anon_sym_PLUS_PLUS2] = ACTIONS(2865), + [anon_sym_SLASH2] = ACTIONS(2859), + [anon_sym_mod2] = ACTIONS(2867), + [anon_sym_SLASH_SLASH2] = ACTIONS(2867), + [anon_sym_PLUS2] = ACTIONS(2580), + [anon_sym_bit_DASHshl2] = ACTIONS(2578), + [anon_sym_bit_DASHshr2] = ACTIONS(2578), + [anon_sym_bit_DASHand2] = ACTIONS(2578), + [anon_sym_bit_DASHxor2] = ACTIONS(2578), + [anon_sym_bit_DASHor2] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2578), + [anon_sym_out_GT_GT] = ACTIONS(2578), + [anon_sym_e_GT_GT] = ACTIONS(2578), + [anon_sym_o_GT_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1215)] = { + [aux_sym__repeat_newline] = STATE(1140), + [sym_comment] = STATE(1215), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_err_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_GT_PIPE] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2877), + [anon_sym_xor2] = ACTIONS(2756), + [anon_sym_or2] = ACTIONS(2756), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2851), + [anon_sym_bit_DASHxor2] = ACTIONS(2881), + [anon_sym_bit_DASHor2] = ACTIONS(2883), + [anon_sym_err_GT] = ACTIONS(2758), + [anon_sym_out_GT] = ACTIONS(2758), + [anon_sym_e_GT] = ACTIONS(2758), + [anon_sym_o_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT] = ACTIONS(2758), + [anon_sym_err_GT_GT] = ACTIONS(2756), + [anon_sym_out_GT_GT] = ACTIONS(2756), + [anon_sym_e_GT_GT] = ACTIONS(2756), + [anon_sym_o_GT_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1216)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1216), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1217)] = { + [sym_comment] = STATE(1217), + [anon_sym_in] = ACTIONS(1716), + [sym__newline] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_err_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_GT_PIPE] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), + [anon_sym_GT2] = ACTIONS(1629), + [anon_sym_DASH2] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_STAR2] = ACTIONS(1629), + [anon_sym_and2] = ACTIONS(1716), + [anon_sym_xor2] = ACTIONS(1716), + [anon_sym_or2] = ACTIONS(1716), + [anon_sym_not_DASHin2] = ACTIONS(1716), + [anon_sym_has2] = ACTIONS(1716), + [anon_sym_not_DASHhas2] = ACTIONS(1716), + [anon_sym_starts_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), + [anon_sym_ends_DASHwith2] = ACTIONS(1716), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), + [anon_sym_EQ_EQ2] = ACTIONS(1716), + [anon_sym_BANG_EQ2] = ACTIONS(1716), + [anon_sym_LT2] = ACTIONS(1629), + [anon_sym_LT_EQ2] = ACTIONS(1716), + [anon_sym_GT_EQ2] = ACTIONS(1716), + [anon_sym_EQ_TILDE2] = ACTIONS(1716), + [anon_sym_BANG_TILDE2] = ACTIONS(1716), + [anon_sym_like2] = ACTIONS(1716), + [anon_sym_not_DASHlike2] = ACTIONS(1716), + [anon_sym_STAR_STAR2] = ACTIONS(1716), + [anon_sym_PLUS_PLUS2] = ACTIONS(1716), + [anon_sym_SLASH2] = ACTIONS(1629), + [anon_sym_mod2] = ACTIONS(1716), + [anon_sym_SLASH_SLASH2] = ACTIONS(1716), + [anon_sym_PLUS2] = ACTIONS(1629), + [anon_sym_bit_DASHshl2] = ACTIONS(1716), + [anon_sym_bit_DASHshr2] = ACTIONS(1716), + [anon_sym_bit_DASHand2] = ACTIONS(1716), + [anon_sym_bit_DASHxor2] = ACTIONS(1716), + [anon_sym_bit_DASHor2] = ACTIONS(1716), + [anon_sym_COLON2] = ACTIONS(1718), + [anon_sym_err_GT] = ACTIONS(1629), + [anon_sym_out_GT] = ACTIONS(1629), + [anon_sym_e_GT] = ACTIONS(1629), + [anon_sym_o_GT] = ACTIONS(1629), + [anon_sym_err_PLUSout_GT] = ACTIONS(1629), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), + [anon_sym_o_PLUSe_GT] = ACTIONS(1629), + [anon_sym_e_PLUSo_GT] = ACTIONS(1629), + [anon_sym_err_GT_GT] = ACTIONS(1716), + [anon_sym_out_GT_GT] = ACTIONS(1716), + [anon_sym_e_GT_GT] = ACTIONS(1716), + [anon_sym_o_GT_GT] = ACTIONS(1716), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1218)] = { + [aux_sym__repeat_newline] = STATE(1187), + [sym_comment] = STATE(1218), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_err_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_GT_PIPE] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2877), + [anon_sym_xor2] = ACTIONS(2879), + [anon_sym_or2] = ACTIONS(2756), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2851), + [anon_sym_bit_DASHxor2] = ACTIONS(2881), + [anon_sym_bit_DASHor2] = ACTIONS(2883), + [anon_sym_err_GT] = ACTIONS(2758), + [anon_sym_out_GT] = ACTIONS(2758), + [anon_sym_e_GT] = ACTIONS(2758), + [anon_sym_o_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT] = ACTIONS(2758), + [anon_sym_err_GT_GT] = ACTIONS(2756), + [anon_sym_out_GT_GT] = ACTIONS(2756), + [anon_sym_e_GT_GT] = ACTIONS(2756), + [anon_sym_o_GT_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1219)] = { + [aux_sym__repeat_newline] = STATE(1260), + [sym_comment] = STATE(1219), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2822), [anon_sym_SEMI] = ACTIONS(2702), [anon_sym_PIPE] = ACTIONS(2702), [anon_sym_err_GT_PIPE] = ACTIONS(2702), @@ -135033,39 +136553,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2877), [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_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2851), + [anon_sym_bit_DASHxor2] = ACTIONS(2881), + [anon_sym_bit_DASHor2] = ACTIONS(2883), [anon_sym_err_GT] = ACTIONS(2704), [anon_sym_out_GT] = ACTIONS(2704), [anon_sym_e_GT] = ACTIONS(2704), @@ -135084,1016 +136604,547 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(1220)] = { + [aux_sym__repeat_newline] = STATE(1168), + [sym_comment] = STATE(1220), + [anon_sym_in] = ACTIONS(2718), + [sym__newline] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2720), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2718), + [anon_sym_has2] = ACTIONS(2718), + [anon_sym_not_DASHhas2] = ACTIONS(2718), + [anon_sym_starts_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2718), + [anon_sym_ends_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2718), + [anon_sym_EQ_EQ2] = ACTIONS(2718), + [anon_sym_BANG_EQ2] = ACTIONS(2718), + [anon_sym_LT2] = ACTIONS(2720), + [anon_sym_LT_EQ2] = ACTIONS(2718), + [anon_sym_GT_EQ2] = ACTIONS(2718), + [anon_sym_EQ_TILDE2] = ACTIONS(2718), + [anon_sym_BANG_TILDE2] = ACTIONS(2718), + [anon_sym_like2] = ACTIONS(2718), + [anon_sym_not_DASHlike2] = ACTIONS(2718), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2718), + [anon_sym_bit_DASHxor2] = ACTIONS(2718), + [anon_sym_bit_DASHor2] = ACTIONS(2718), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), [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), + [STATE(1221)] = { + [aux_sym__repeat_newline] = STATE(1204), + [sym_comment] = STATE(1221), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_err_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_GT_PIPE] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2756), + [anon_sym_xor2] = ACTIONS(2756), + [anon_sym_or2] = ACTIONS(2756), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2756), + [anon_sym_BANG_TILDE2] = ACTIONS(2756), + [anon_sym_like2] = ACTIONS(2756), + [anon_sym_not_DASHlike2] = ACTIONS(2756), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2756), + [anon_sym_bit_DASHxor2] = ACTIONS(2756), + [anon_sym_bit_DASHor2] = ACTIONS(2756), + [anon_sym_err_GT] = ACTIONS(2758), + [anon_sym_out_GT] = ACTIONS(2758), + [anon_sym_e_GT] = ACTIONS(2758), + [anon_sym_o_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT] = ACTIONS(2758), + [anon_sym_err_GT_GT] = ACTIONS(2756), + [anon_sym_out_GT_GT] = ACTIONS(2756), + [anon_sym_e_GT_GT] = ACTIONS(2756), + [anon_sym_o_GT_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), [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), + [STATE(1222)] = { + [sym_comment] = STATE(1222), + [anon_sym_in] = ACTIONS(2578), + [sym__newline] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_PIPE] = ACTIONS(2578), + [anon_sym_err_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_GT_PIPE] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_GT2] = ACTIONS(2580), + [anon_sym_DASH2] = ACTIONS(2578), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_STAR2] = ACTIONS(2580), + [anon_sym_and2] = ACTIONS(2578), + [anon_sym_xor2] = ACTIONS(2578), + [anon_sym_or2] = ACTIONS(2578), + [anon_sym_not_DASHin2] = ACTIONS(2578), + [anon_sym_has2] = ACTIONS(2578), + [anon_sym_not_DASHhas2] = ACTIONS(2578), + [anon_sym_starts_DASHwith2] = ACTIONS(2578), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2578), + [anon_sym_ends_DASHwith2] = ACTIONS(2578), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2578), + [anon_sym_EQ_EQ2] = ACTIONS(2578), + [anon_sym_BANG_EQ2] = ACTIONS(2578), + [anon_sym_LT2] = ACTIONS(2580), + [anon_sym_LT_EQ2] = ACTIONS(2578), + [anon_sym_GT_EQ2] = ACTIONS(2578), + [anon_sym_EQ_TILDE2] = ACTIONS(2578), + [anon_sym_BANG_TILDE2] = ACTIONS(2578), + [anon_sym_like2] = ACTIONS(2578), + [anon_sym_not_DASHlike2] = ACTIONS(2578), + [anon_sym_STAR_STAR2] = ACTIONS(2865), + [anon_sym_PLUS_PLUS2] = ACTIONS(2865), + [anon_sym_SLASH2] = ACTIONS(2580), + [anon_sym_mod2] = ACTIONS(2578), + [anon_sym_SLASH_SLASH2] = ACTIONS(2578), + [anon_sym_PLUS2] = ACTIONS(2580), + [anon_sym_bit_DASHshl2] = ACTIONS(2578), + [anon_sym_bit_DASHshr2] = ACTIONS(2578), + [anon_sym_bit_DASHand2] = ACTIONS(2578), + [anon_sym_bit_DASHxor2] = ACTIONS(2578), + [anon_sym_bit_DASHor2] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2578), + [anon_sym_out_GT_GT] = ACTIONS(2578), + [anon_sym_e_GT_GT] = ACTIONS(2578), + [anon_sym_o_GT_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(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), + [STATE(1223)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1223), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(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), + [STATE(1224)] = { + [sym_comment] = STATE(1224), + [anon_sym_in] = ACTIONS(2853), + [sym__newline] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_PIPE] = ACTIONS(2578), + [anon_sym_err_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_GT_PIPE] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_GT2] = ACTIONS(2855), + [anon_sym_DASH2] = ACTIONS(2857), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_STAR2] = ACTIONS(2859), + [anon_sym_and2] = ACTIONS(2578), + [anon_sym_xor2] = ACTIONS(2578), + [anon_sym_or2] = ACTIONS(2578), + [anon_sym_not_DASHin2] = ACTIONS(2853), + [anon_sym_has2] = ACTIONS(2853), + [anon_sym_not_DASHhas2] = ACTIONS(2853), + [anon_sym_starts_DASHwith2] = ACTIONS(2853), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2853), + [anon_sym_ends_DASHwith2] = ACTIONS(2853), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2853), + [anon_sym_EQ_EQ2] = ACTIONS(2861), + [anon_sym_BANG_EQ2] = ACTIONS(2861), + [anon_sym_LT2] = ACTIONS(2855), + [anon_sym_LT_EQ2] = ACTIONS(2861), + [anon_sym_GT_EQ2] = ACTIONS(2861), + [anon_sym_EQ_TILDE2] = ACTIONS(2863), + [anon_sym_BANG_TILDE2] = ACTIONS(2863), + [anon_sym_like2] = ACTIONS(2863), + [anon_sym_not_DASHlike2] = ACTIONS(2863), + [anon_sym_STAR_STAR2] = ACTIONS(2865), + [anon_sym_PLUS_PLUS2] = ACTIONS(2865), + [anon_sym_SLASH2] = ACTIONS(2859), + [anon_sym_mod2] = ACTIONS(2867), + [anon_sym_SLASH_SLASH2] = ACTIONS(2867), + [anon_sym_PLUS2] = ACTIONS(2869), + [anon_sym_bit_DASHshl2] = ACTIONS(2871), + [anon_sym_bit_DASHshr2] = ACTIONS(2871), + [anon_sym_bit_DASHand2] = ACTIONS(2873), + [anon_sym_bit_DASHxor2] = ACTIONS(2885), + [anon_sym_bit_DASHor2] = ACTIONS(2944), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2578), + [anon_sym_out_GT_GT] = ACTIONS(2578), + [anon_sym_e_GT_GT] = ACTIONS(2578), + [anon_sym_o_GT_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(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), + [STATE(1225)] = { + [aux_sym__repeat_newline] = STATE(1139), + [sym_comment] = STATE(1225), + [anon_sym_in] = ACTIONS(2756), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_err_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_GT_PIPE] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_GT2] = ACTIONS(2758), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2756), + [anon_sym_xor2] = ACTIONS(2756), + [anon_sym_or2] = ACTIONS(2756), + [anon_sym_not_DASHin2] = ACTIONS(2756), + [anon_sym_has2] = ACTIONS(2756), + [anon_sym_not_DASHhas2] = ACTIONS(2756), + [anon_sym_starts_DASHwith2] = ACTIONS(2756), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2756), + [anon_sym_ends_DASHwith2] = ACTIONS(2756), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2756), + [anon_sym_EQ_EQ2] = ACTIONS(2756), + [anon_sym_BANG_EQ2] = ACTIONS(2756), + [anon_sym_LT2] = ACTIONS(2758), + [anon_sym_LT_EQ2] = ACTIONS(2756), + [anon_sym_GT_EQ2] = ACTIONS(2756), + [anon_sym_EQ_TILDE2] = ACTIONS(2756), + [anon_sym_BANG_TILDE2] = ACTIONS(2756), + [anon_sym_like2] = ACTIONS(2756), + [anon_sym_not_DASHlike2] = ACTIONS(2756), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2756), + [anon_sym_bit_DASHshr2] = ACTIONS(2756), + [anon_sym_bit_DASHand2] = ACTIONS(2756), + [anon_sym_bit_DASHxor2] = ACTIONS(2756), + [anon_sym_bit_DASHor2] = ACTIONS(2756), + [anon_sym_err_GT] = ACTIONS(2758), + [anon_sym_out_GT] = ACTIONS(2758), + [anon_sym_e_GT] = ACTIONS(2758), + [anon_sym_o_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT] = ACTIONS(2758), + [anon_sym_err_GT_GT] = ACTIONS(2756), + [anon_sym_out_GT_GT] = ACTIONS(2756), + [anon_sym_e_GT_GT] = ACTIONS(2756), + [anon_sym_o_GT_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1209)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1209), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [STATE(1226)] = { + [aux_sym__repeat_newline] = STATE(1170), + [sym_comment] = STATE(1226), + [anon_sym_in] = ACTIONS(2718), + [sym__newline] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2720), + [anon_sym_DASH2] = ACTIONS(2718), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2718), + [anon_sym_has2] = ACTIONS(2718), + [anon_sym_not_DASHhas2] = ACTIONS(2718), + [anon_sym_starts_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2718), + [anon_sym_ends_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2718), + [anon_sym_EQ_EQ2] = ACTIONS(2718), + [anon_sym_BANG_EQ2] = ACTIONS(2718), + [anon_sym_LT2] = ACTIONS(2720), + [anon_sym_LT_EQ2] = ACTIONS(2718), + [anon_sym_GT_EQ2] = ACTIONS(2718), + [anon_sym_EQ_TILDE2] = ACTIONS(2718), + [anon_sym_BANG_TILDE2] = ACTIONS(2718), + [anon_sym_like2] = ACTIONS(2718), + [anon_sym_not_DASHlike2] = ACTIONS(2718), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2720), + [anon_sym_bit_DASHshl2] = ACTIONS(2718), + [anon_sym_bit_DASHshr2] = ACTIONS(2718), + [anon_sym_bit_DASHand2] = ACTIONS(2718), + [anon_sym_bit_DASHxor2] = ACTIONS(2718), + [anon_sym_bit_DASHor2] = ACTIONS(2718), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1210)] = { - [aux_sym__repeat_newline] = STATE(540), - [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), + [STATE(1227)] = { + [sym_comment] = STATE(1227), + [anon_sym_in] = ACTIONS(2853), + [sym__newline] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_PIPE] = ACTIONS(2578), + [anon_sym_err_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_GT_PIPE] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_GT2] = ACTIONS(2855), + [anon_sym_DASH2] = ACTIONS(2857), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_STAR2] = ACTIONS(2859), + [anon_sym_and2] = ACTIONS(2946), + [anon_sym_xor2] = ACTIONS(2578), + [anon_sym_or2] = ACTIONS(2578), + [anon_sym_not_DASHin2] = ACTIONS(2853), + [anon_sym_has2] = ACTIONS(2853), + [anon_sym_not_DASHhas2] = ACTIONS(2853), + [anon_sym_starts_DASHwith2] = ACTIONS(2853), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2853), + [anon_sym_ends_DASHwith2] = ACTIONS(2853), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2853), + [anon_sym_EQ_EQ2] = ACTIONS(2861), + [anon_sym_BANG_EQ2] = ACTIONS(2861), + [anon_sym_LT2] = ACTIONS(2855), + [anon_sym_LT_EQ2] = ACTIONS(2861), + [anon_sym_GT_EQ2] = ACTIONS(2861), + [anon_sym_EQ_TILDE2] = ACTIONS(2863), + [anon_sym_BANG_TILDE2] = ACTIONS(2863), + [anon_sym_like2] = ACTIONS(2863), + [anon_sym_not_DASHlike2] = ACTIONS(2863), + [anon_sym_STAR_STAR2] = ACTIONS(2865), + [anon_sym_PLUS_PLUS2] = ACTIONS(2865), + [anon_sym_SLASH2] = ACTIONS(2859), + [anon_sym_mod2] = ACTIONS(2867), + [anon_sym_SLASH_SLASH2] = ACTIONS(2867), + [anon_sym_PLUS2] = ACTIONS(2869), + [anon_sym_bit_DASHshl2] = ACTIONS(2871), + [anon_sym_bit_DASHshr2] = ACTIONS(2871), + [anon_sym_bit_DASHand2] = ACTIONS(2873), + [anon_sym_bit_DASHxor2] = ACTIONS(2885), + [anon_sym_bit_DASHor2] = ACTIONS(2944), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2578), + [anon_sym_out_GT_GT] = ACTIONS(2578), + [anon_sym_e_GT_GT] = ACTIONS(2578), + [anon_sym_o_GT_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1211)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1211), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1212)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1212), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1213)] = { - [aux_sym__repeat_newline] = STATE(540), - [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_POUND] = ACTIONS(3), - }, - [STATE(1214)] = { - [aux_sym__repeat_newline] = STATE(540), - [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_POUND] = ACTIONS(3), - }, - [STATE(1215)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1215), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2720), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2722), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1216)] = { - [aux_sym__repeat_newline] = STATE(540), - [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_POUND] = ACTIONS(3), - }, - [STATE(1217)] = { - [aux_sym__repeat_newline] = STATE(1132), - [sym_comment] = STATE(1217), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), + [STATE(1228)] = { + [aux_sym__repeat_newline] = STATE(1134), + [sym_comment] = STATE(1228), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2875), [anon_sym_SEMI] = ACTIONS(2702), [anon_sym_PIPE] = ACTIONS(2702), [anon_sym_err_GT_PIPE] = ACTIONS(2702), @@ -136105,39 +137156,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2877), + [anon_sym_xor2] = ACTIONS(2879), [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_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2851), + [anon_sym_bit_DASHxor2] = ACTIONS(2881), + [anon_sym_bit_DASHor2] = ACTIONS(2883), [anon_sym_err_GT] = ACTIONS(2704), [anon_sym_out_GT] = ACTIONS(2704), [anon_sym_e_GT] = ACTIONS(2704), @@ -136156,1003 +137207,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2720), - [anon_sym_STAR2] = ACTIONS(2722), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2722), - [anon_sym_mod2] = ACTIONS(2720), - [anon_sym_SLASH_SLASH2] = ACTIONS(2720), - [anon_sym_PLUS2] = ACTIONS(2722), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1220)] = { - [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_POUND] = ACTIONS(3), - }, - [STATE(1221)] = { - [aux_sym__repeat_newline] = STATE(1159), - [sym_comment] = STATE(1221), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1222)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1222), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2706), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2708), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1223)] = { - [sym_comment] = STATE(1223), - [ts_builtin_sym_end] = ACTIONS(2084), - [anon_sym_in] = ACTIONS(2084), - [sym__newline] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_err_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_GT_PIPE] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), - [anon_sym_GT2] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2084), - [anon_sym_STAR2] = ACTIONS(2086), - [anon_sym_and2] = ACTIONS(2084), - [anon_sym_xor2] = ACTIONS(2084), - [anon_sym_or2] = ACTIONS(2084), - [anon_sym_not_DASHin2] = ACTIONS(2084), - [anon_sym_has2] = ACTIONS(2084), - [anon_sym_not_DASHhas2] = ACTIONS(2084), - [anon_sym_starts_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2084), - [anon_sym_ends_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2084), - [anon_sym_EQ_EQ2] = ACTIONS(2084), - [anon_sym_BANG_EQ2] = ACTIONS(2084), - [anon_sym_LT2] = ACTIONS(2086), - [anon_sym_LT_EQ2] = ACTIONS(2084), - [anon_sym_GT_EQ2] = ACTIONS(2084), - [anon_sym_EQ_TILDE2] = ACTIONS(2084), - [anon_sym_BANG_TILDE2] = ACTIONS(2084), - [anon_sym_like2] = ACTIONS(2084), - [anon_sym_not_DASHlike2] = ACTIONS(2084), - [anon_sym_LPAREN2] = ACTIONS(2084), - [anon_sym_STAR_STAR2] = ACTIONS(2084), - [anon_sym_PLUS_PLUS2] = ACTIONS(2084), - [anon_sym_SLASH2] = ACTIONS(2086), - [anon_sym_mod2] = ACTIONS(2084), - [anon_sym_SLASH_SLASH2] = ACTIONS(2084), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_bit_DASHshl2] = ACTIONS(2084), - [anon_sym_bit_DASHshr2] = ACTIONS(2084), - [anon_sym_bit_DASHand2] = ACTIONS(2084), - [anon_sym_bit_DASHxor2] = ACTIONS(2084), - [anon_sym_bit_DASHor2] = ACTIONS(2084), - [anon_sym_err_GT] = ACTIONS(2086), - [anon_sym_out_GT] = ACTIONS(2086), - [anon_sym_e_GT] = ACTIONS(2086), - [anon_sym_o_GT] = ACTIONS(2086), - [anon_sym_err_PLUSout_GT] = ACTIONS(2086), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2086), - [anon_sym_o_PLUSe_GT] = ACTIONS(2086), - [anon_sym_e_PLUSo_GT] = ACTIONS(2086), - [anon_sym_err_GT_GT] = ACTIONS(2084), - [anon_sym_out_GT_GT] = ACTIONS(2084), - [anon_sym_e_GT_GT] = ACTIONS(2084), - [anon_sym_o_GT_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1224)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1224), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_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), - [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_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), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1228)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1228), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(1229)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1229), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1230)] = { - [sym__expression] = STATE(4724), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(1148), [sym_comment] = STATE(1230), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_err_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_GT_PIPE] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2756), + [anon_sym_xor2] = ACTIONS(2756), + [anon_sym_or2] = ACTIONS(2756), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2756), + [anon_sym_bit_DASHxor2] = ACTIONS(2756), + [anon_sym_bit_DASHor2] = ACTIONS(2756), + [anon_sym_err_GT] = ACTIONS(2758), + [anon_sym_out_GT] = ACTIONS(2758), + [anon_sym_e_GT] = ACTIONS(2758), + [anon_sym_o_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT] = ACTIONS(2758), + [anon_sym_err_GT_GT] = ACTIONS(2756), + [anon_sym_out_GT_GT] = ACTIONS(2756), + [anon_sym_e_GT_GT] = ACTIONS(2756), + [anon_sym_o_GT_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1231)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1231), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2853), + [sym__newline] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_PIPE] = ACTIONS(2578), + [anon_sym_err_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_GT_PIPE] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_GT2] = ACTIONS(2855), + [anon_sym_DASH2] = ACTIONS(2857), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_STAR2] = ACTIONS(2859), + [anon_sym_and2] = ACTIONS(2946), + [anon_sym_xor2] = ACTIONS(2948), + [anon_sym_or2] = ACTIONS(2578), + [anon_sym_not_DASHin2] = ACTIONS(2853), + [anon_sym_has2] = ACTIONS(2853), + [anon_sym_not_DASHhas2] = ACTIONS(2853), + [anon_sym_starts_DASHwith2] = ACTIONS(2853), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2853), + [anon_sym_ends_DASHwith2] = ACTIONS(2853), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2853), + [anon_sym_EQ_EQ2] = ACTIONS(2861), + [anon_sym_BANG_EQ2] = ACTIONS(2861), + [anon_sym_LT2] = ACTIONS(2855), + [anon_sym_LT_EQ2] = ACTIONS(2861), + [anon_sym_GT_EQ2] = ACTIONS(2861), + [anon_sym_EQ_TILDE2] = ACTIONS(2863), + [anon_sym_BANG_TILDE2] = ACTIONS(2863), + [anon_sym_like2] = ACTIONS(2863), + [anon_sym_not_DASHlike2] = ACTIONS(2863), + [anon_sym_STAR_STAR2] = ACTIONS(2865), + [anon_sym_PLUS_PLUS2] = ACTIONS(2865), + [anon_sym_SLASH2] = ACTIONS(2859), + [anon_sym_mod2] = ACTIONS(2867), + [anon_sym_SLASH_SLASH2] = ACTIONS(2867), + [anon_sym_PLUS2] = ACTIONS(2869), + [anon_sym_bit_DASHshl2] = ACTIONS(2871), + [anon_sym_bit_DASHshr2] = ACTIONS(2871), + [anon_sym_bit_DASHand2] = ACTIONS(2873), + [anon_sym_bit_DASHxor2] = ACTIONS(2885), + [anon_sym_bit_DASHor2] = ACTIONS(2944), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2578), + [anon_sym_out_GT_GT] = ACTIONS(2578), + [anon_sym_e_GT_GT] = ACTIONS(2578), + [anon_sym_o_GT_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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__expression] = STATE(4729), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1832), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), [sym_comment] = STATE(1232), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [aux_sym_cmd_identifier_token2] = ACTIONS(2950), + [anon_sym_true] = ACTIONS(2632), + [anon_sym_false] = ACTIONS(2632), + [anon_sym_null] = ACTIONS(2634), + [aux_sym_cmd_identifier_token3] = ACTIONS(2636), + [aux_sym_cmd_identifier_token4] = ACTIONS(2636), + [aux_sym_cmd_identifier_token5] = ACTIONS(2636), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2046), + [aux_sym__val_number_decimal_token3] = ACTIONS(2640), + [aux_sym__val_number_decimal_token4] = ACTIONS(2640), + [aux_sym__val_number_token1] = ACTIONS(2636), + [aux_sym__val_number_token2] = ACTIONS(2636), + [aux_sym__val_number_token3] = ACTIONS(2636), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2642), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -137162,533 +137476,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1233)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1159), [sym_comment] = STATE(1233), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_err_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_GT_PIPE] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2756), + [anon_sym_xor2] = ACTIONS(2756), + [anon_sym_or2] = ACTIONS(2756), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2851), + [anon_sym_bit_DASHxor2] = ACTIONS(2756), + [anon_sym_bit_DASHor2] = ACTIONS(2756), + [anon_sym_err_GT] = ACTIONS(2758), + [anon_sym_out_GT] = ACTIONS(2758), + [anon_sym_e_GT] = ACTIONS(2758), + [anon_sym_o_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT] = ACTIONS(2758), + [anon_sym_err_GT_GT] = ACTIONS(2756), + [anon_sym_out_GT_GT] = ACTIONS(2756), + [anon_sym_e_GT_GT] = ACTIONS(2756), + [anon_sym_o_GT_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1234)] = { - [aux_sym__repeat_newline] = STATE(1231), + [aux_sym__repeat_newline] = STATE(1172), [sym_comment] = STATE(1234), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2718), + [sym__newline] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2720), + [anon_sym_DASH2] = ACTIONS(2718), + [anon_sym_STAR2] = ACTIONS(2720), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2718), + [anon_sym_has2] = ACTIONS(2718), + [anon_sym_not_DASHhas2] = ACTIONS(2718), + [anon_sym_starts_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2718), + [anon_sym_ends_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2718), + [anon_sym_EQ_EQ2] = ACTIONS(2718), + [anon_sym_BANG_EQ2] = ACTIONS(2718), + [anon_sym_LT2] = ACTIONS(2720), + [anon_sym_LT_EQ2] = ACTIONS(2718), + [anon_sym_GT_EQ2] = ACTIONS(2718), + [anon_sym_EQ_TILDE2] = ACTIONS(2718), + [anon_sym_BANG_TILDE2] = ACTIONS(2718), + [anon_sym_like2] = ACTIONS(2718), + [anon_sym_not_DASHlike2] = ACTIONS(2718), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2720), + [anon_sym_mod2] = ACTIONS(2718), + [anon_sym_SLASH_SLASH2] = ACTIONS(2718), + [anon_sym_PLUS2] = ACTIONS(2720), + [anon_sym_bit_DASHshl2] = ACTIONS(2718), + [anon_sym_bit_DASHshr2] = ACTIONS(2718), + [anon_sym_bit_DASHand2] = ACTIONS(2718), + [anon_sym_bit_DASHxor2] = ACTIONS(2718), + [anon_sym_bit_DASHor2] = ACTIONS(2718), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1235)] = { - [aux_sym__repeat_newline] = STATE(1196), + [aux_sym__repeat_newline] = STATE(1169), [sym_comment] = STATE(1235), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_err_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_GT_PIPE] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2756), + [anon_sym_xor2] = ACTIONS(2756), + [anon_sym_or2] = ACTIONS(2756), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2851), + [anon_sym_bit_DASHxor2] = ACTIONS(2881), + [anon_sym_bit_DASHor2] = ACTIONS(2756), + [anon_sym_err_GT] = ACTIONS(2758), + [anon_sym_out_GT] = ACTIONS(2758), + [anon_sym_e_GT] = ACTIONS(2758), + [anon_sym_o_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT] = ACTIONS(2758), + [anon_sym_err_GT_GT] = ACTIONS(2756), + [anon_sym_out_GT_GT] = ACTIONS(2756), + [anon_sym_e_GT_GT] = ACTIONS(2756), + [anon_sym_o_GT_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1236)] = { - [aux_sym__repeat_newline] = STATE(1137), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1236), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2816), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(2090), + [anon_sym_in] = ACTIONS(2090), + [sym__newline] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_err_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_GT_PIPE] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), + [anon_sym_GT2] = ACTIONS(2092), + [anon_sym_DASH2] = ACTIONS(2090), + [anon_sym_STAR2] = ACTIONS(2092), + [anon_sym_and2] = ACTIONS(2090), + [anon_sym_xor2] = ACTIONS(2090), + [anon_sym_or2] = ACTIONS(2090), + [anon_sym_not_DASHin2] = ACTIONS(2090), + [anon_sym_has2] = ACTIONS(2090), + [anon_sym_not_DASHhas2] = ACTIONS(2090), + [anon_sym_starts_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), + [anon_sym_ends_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), + [anon_sym_EQ_EQ2] = ACTIONS(2090), + [anon_sym_BANG_EQ2] = ACTIONS(2090), + [anon_sym_LT2] = ACTIONS(2092), + [anon_sym_LT_EQ2] = ACTIONS(2090), + [anon_sym_GT_EQ2] = ACTIONS(2090), + [anon_sym_EQ_TILDE2] = ACTIONS(2090), + [anon_sym_BANG_TILDE2] = ACTIONS(2090), + [anon_sym_like2] = ACTIONS(2090), + [anon_sym_not_DASHlike2] = ACTIONS(2090), + [anon_sym_STAR_STAR2] = ACTIONS(2090), + [anon_sym_PLUS_PLUS2] = ACTIONS(2090), + [anon_sym_SLASH2] = ACTIONS(2092), + [anon_sym_mod2] = ACTIONS(2090), + [anon_sym_SLASH_SLASH2] = ACTIONS(2090), + [anon_sym_PLUS2] = ACTIONS(2092), + [anon_sym_bit_DASHshl2] = ACTIONS(2090), + [anon_sym_bit_DASHshr2] = ACTIONS(2090), + [anon_sym_bit_DASHand2] = ACTIONS(2090), + [anon_sym_bit_DASHxor2] = ACTIONS(2090), + [anon_sym_bit_DASHor2] = ACTIONS(2090), + [anon_sym_LBRACK2] = ACTIONS(2952), + [anon_sym_err_GT] = ACTIONS(2092), + [anon_sym_out_GT] = ACTIONS(2092), + [anon_sym_e_GT] = ACTIONS(2092), + [anon_sym_o_GT] = ACTIONS(2092), + [anon_sym_err_PLUSout_GT] = ACTIONS(2092), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), + [anon_sym_o_PLUSe_GT] = ACTIONS(2092), + [anon_sym_e_PLUSo_GT] = ACTIONS(2092), + [anon_sym_err_GT_GT] = ACTIONS(2090), + [anon_sym_out_GT_GT] = ACTIONS(2090), + [anon_sym_e_GT_GT] = ACTIONS(2090), + [anon_sym_o_GT_GT] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(1238)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expression] = STATE(4739), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1832), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), [sym_comment] = STATE(1238), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_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(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), + [aux_sym_cmd_identifier_token2] = ACTIONS(2950), + [anon_sym_true] = ACTIONS(2632), + [anon_sym_false] = ACTIONS(2632), + [anon_sym_null] = ACTIONS(2634), + [aux_sym_cmd_identifier_token3] = ACTIONS(2636), + [aux_sym_cmd_identifier_token4] = ACTIONS(2636), + [aux_sym_cmd_identifier_token5] = ACTIONS(2636), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2046), + [aux_sym__val_number_decimal_token3] = ACTIONS(2640), + [aux_sym__val_number_decimal_token4] = ACTIONS(2640), + [aux_sym__val_number_token1] = ACTIONS(2636), + [aux_sym__val_number_token2] = ACTIONS(2636), + [aux_sym__val_number_token3] = ACTIONS(2636), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2642), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -137697,1137 +137877,1271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(1239)] = { + [aux_sym__repeat_newline] = STATE(507), + [sym_comment] = STATE(1239), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2724), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2724), + [anon_sym_mod2] = ACTIONS(2722), + [anon_sym_SLASH_SLASH2] = ACTIONS(2722), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1240)] = { + [sym_comment] = STATE(1240), + [anon_sym_in] = ACTIONS(2415), + [sym__newline] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_err_GT_PIPE] = ACTIONS(2513), + [anon_sym_out_GT_PIPE] = ACTIONS(2513), + [anon_sym_e_GT_PIPE] = ACTIONS(2513), + [anon_sym_o_GT_PIPE] = ACTIONS(2513), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2513), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2513), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2513), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2513), + [anon_sym_RPAREN] = ACTIONS(2513), + [anon_sym_GT2] = ACTIONS(2417), + [anon_sym_DASH2] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_STAR2] = ACTIONS(2417), + [anon_sym_and2] = ACTIONS(2415), + [anon_sym_xor2] = ACTIONS(2415), + [anon_sym_or2] = ACTIONS(2415), + [anon_sym_not_DASHin2] = ACTIONS(2415), + [anon_sym_has2] = ACTIONS(2415), + [anon_sym_not_DASHhas2] = ACTIONS(2415), + [anon_sym_starts_DASHwith2] = ACTIONS(2415), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2415), + [anon_sym_ends_DASHwith2] = ACTIONS(2415), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2415), + [anon_sym_EQ_EQ2] = ACTIONS(2415), + [anon_sym_BANG_EQ2] = ACTIONS(2415), + [anon_sym_LT2] = ACTIONS(2417), + [anon_sym_LT_EQ2] = ACTIONS(2415), + [anon_sym_GT_EQ2] = ACTIONS(2415), + [anon_sym_EQ_TILDE2] = ACTIONS(2415), + [anon_sym_BANG_TILDE2] = ACTIONS(2415), + [anon_sym_like2] = ACTIONS(2415), + [anon_sym_not_DASHlike2] = ACTIONS(2415), + [anon_sym_STAR_STAR2] = ACTIONS(2415), + [anon_sym_PLUS_PLUS2] = ACTIONS(2415), + [anon_sym_SLASH2] = ACTIONS(2417), + [anon_sym_mod2] = ACTIONS(2415), + [anon_sym_SLASH_SLASH2] = ACTIONS(2415), + [anon_sym_PLUS2] = ACTIONS(2417), + [anon_sym_bit_DASHshl2] = ACTIONS(2415), + [anon_sym_bit_DASHshr2] = ACTIONS(2415), + [anon_sym_bit_DASHand2] = ACTIONS(2415), + [anon_sym_bit_DASHxor2] = ACTIONS(2415), + [anon_sym_bit_DASHor2] = ACTIONS(2415), + [anon_sym_err_GT] = ACTIONS(2515), + [anon_sym_out_GT] = ACTIONS(2515), + [anon_sym_e_GT] = ACTIONS(2515), + [anon_sym_o_GT] = ACTIONS(2515), + [anon_sym_err_PLUSout_GT] = ACTIONS(2515), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2515), + [anon_sym_o_PLUSe_GT] = ACTIONS(2515), + [anon_sym_e_PLUSo_GT] = ACTIONS(2515), + [anon_sym_err_GT_GT] = ACTIONS(2513), + [anon_sym_out_GT_GT] = ACTIONS(2513), + [anon_sym_e_GT_GT] = ACTIONS(2513), + [anon_sym_o_GT_GT] = ACTIONS(2513), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2513), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2513), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2513), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2513), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(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), + [anon_sym_in] = ACTIONS(2853), + [sym__newline] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_PIPE] = ACTIONS(2578), + [anon_sym_err_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_GT_PIPE] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_GT2] = ACTIONS(2855), + [anon_sym_DASH2] = ACTIONS(2857), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_STAR2] = ACTIONS(2859), + [anon_sym_and2] = ACTIONS(2578), + [anon_sym_xor2] = ACTIONS(2578), + [anon_sym_or2] = ACTIONS(2578), + [anon_sym_not_DASHin2] = ACTIONS(2853), + [anon_sym_has2] = ACTIONS(2853), + [anon_sym_not_DASHhas2] = ACTIONS(2853), + [anon_sym_starts_DASHwith2] = ACTIONS(2853), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2853), + [anon_sym_ends_DASHwith2] = ACTIONS(2853), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2853), + [anon_sym_EQ_EQ2] = ACTIONS(2861), + [anon_sym_BANG_EQ2] = ACTIONS(2861), + [anon_sym_LT2] = ACTIONS(2855), + [anon_sym_LT_EQ2] = ACTIONS(2861), + [anon_sym_GT_EQ2] = ACTIONS(2861), + [anon_sym_EQ_TILDE2] = ACTIONS(2578), + [anon_sym_BANG_TILDE2] = ACTIONS(2578), + [anon_sym_like2] = ACTIONS(2578), + [anon_sym_not_DASHlike2] = ACTIONS(2578), + [anon_sym_STAR_STAR2] = ACTIONS(2865), + [anon_sym_PLUS_PLUS2] = ACTIONS(2865), + [anon_sym_SLASH2] = ACTIONS(2859), + [anon_sym_mod2] = ACTIONS(2867), + [anon_sym_SLASH_SLASH2] = ACTIONS(2867), + [anon_sym_PLUS2] = ACTIONS(2869), + [anon_sym_bit_DASHshl2] = ACTIONS(2871), + [anon_sym_bit_DASHshr2] = ACTIONS(2871), + [anon_sym_bit_DASHand2] = ACTIONS(2578), + [anon_sym_bit_DASHxor2] = ACTIONS(2578), + [anon_sym_bit_DASHor2] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2578), + [anon_sym_out_GT_GT] = ACTIONS(2578), + [anon_sym_e_GT_GT] = ACTIONS(2578), + [anon_sym_o_GT_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1242)] = { + [aux_sym__repeat_newline] = STATE(1174), [sym_comment] = STATE(1242), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_in] = ACTIONS(2637), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2637), - [anon_sym_xor2] = ACTIONS(2637), - [anon_sym_or2] = ACTIONS(2637), - [anon_sym_not_DASHin2] = ACTIONS(2637), - [anon_sym_has2] = ACTIONS(2637), - [anon_sym_not_DASHhas2] = ACTIONS(2637), - [anon_sym_starts_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2637), - [anon_sym_ends_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2637), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2637), - [anon_sym_like2] = ACTIONS(2637), - [anon_sym_not_DASHlike2] = ACTIONS(2637), - [anon_sym_STAR_STAR2] = ACTIONS(2637), - [anon_sym_PLUS_PLUS2] = ACTIONS(2637), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2637), - [anon_sym_SLASH_SLASH2] = ACTIONS(2637), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2637), - [anon_sym_bit_DASHshr2] = ACTIONS(2637), - [anon_sym_bit_DASHand2] = ACTIONS(2637), - [anon_sym_bit_DASHxor2] = ACTIONS(2637), - [anon_sym_bit_DASHor2] = ACTIONS(2637), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2851), + [anon_sym_bit_DASHxor2] = ACTIONS(2881), + [anon_sym_bit_DASHor2] = ACTIONS(2883), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1243)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1138), [sym_comment] = STATE(1243), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2822), + [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(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2702), + [anon_sym_xor2] = ACTIONS(2702), + [anon_sym_or2] = ACTIONS(2702), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [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(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [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(1244)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1244), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2816), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(2506), + [aux_sym_cmd_identifier_token2] = ACTIONS(2950), + [anon_sym_in] = ACTIONS(2508), + [sym__newline] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_err_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_GT_PIPE] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), + [anon_sym_GT2] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2508), + [anon_sym_STAR2] = ACTIONS(2508), + [anon_sym_and2] = ACTIONS(2508), + [anon_sym_xor2] = ACTIONS(2508), + [anon_sym_or2] = ACTIONS(2508), + [anon_sym_not_DASHin2] = ACTIONS(2508), + [anon_sym_has2] = ACTIONS(2508), + [anon_sym_not_DASHhas2] = ACTIONS(2508), + [anon_sym_starts_DASHwith2] = ACTIONS(2508), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2508), + [anon_sym_ends_DASHwith2] = ACTIONS(2508), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2508), + [anon_sym_EQ_EQ2] = ACTIONS(2506), + [anon_sym_BANG_EQ2] = ACTIONS(2506), + [anon_sym_LT2] = ACTIONS(2508), + [anon_sym_LT_EQ2] = ACTIONS(2506), + [anon_sym_GT_EQ2] = ACTIONS(2506), + [anon_sym_EQ_TILDE2] = ACTIONS(2506), + [anon_sym_BANG_TILDE2] = ACTIONS(2508), + [anon_sym_like2] = ACTIONS(2508), + [anon_sym_not_DASHlike2] = ACTIONS(2508), + [anon_sym_STAR_STAR2] = ACTIONS(2508), + [anon_sym_PLUS_PLUS2] = ACTIONS(2508), + [anon_sym_SLASH2] = ACTIONS(2508), + [anon_sym_mod2] = ACTIONS(2508), + [anon_sym_SLASH_SLASH2] = ACTIONS(2508), + [anon_sym_PLUS2] = ACTIONS(2508), + [anon_sym_bit_DASHshl2] = ACTIONS(2508), + [anon_sym_bit_DASHshr2] = ACTIONS(2508), + [anon_sym_bit_DASHand2] = ACTIONS(2508), + [anon_sym_bit_DASHxor2] = ACTIONS(2508), + [anon_sym_bit_DASHor2] = ACTIONS(2508), + [anon_sym_err_GT] = ACTIONS(2508), + [anon_sym_out_GT] = ACTIONS(2508), + [anon_sym_e_GT] = ACTIONS(2508), + [anon_sym_o_GT] = ACTIONS(2508), + [anon_sym_err_PLUSout_GT] = ACTIONS(2508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), + [anon_sym_o_PLUSe_GT] = ACTIONS(2508), + [anon_sym_e_PLUSo_GT] = ACTIONS(2508), + [anon_sym_err_GT_GT] = ACTIONS(2506), + [anon_sym_out_GT_GT] = ACTIONS(2506), + [anon_sym_e_GT_GT] = ACTIONS(2506), + [anon_sym_o_GT_GT] = ACTIONS(2506), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1246)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1246), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [ts_builtin_sym_end] = ACTIONS(884), + [anon_sym_in] = ACTIONS(884), + [sym__newline] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(884), + [anon_sym_err_GT_PIPE] = ACTIONS(884), + [anon_sym_out_GT_PIPE] = ACTIONS(884), + [anon_sym_e_GT_PIPE] = ACTIONS(884), + [anon_sym_o_GT_PIPE] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), + [anon_sym_GT2] = ACTIONS(858), + [anon_sym_DASH2] = ACTIONS(884), + [anon_sym_STAR2] = ACTIONS(858), + [anon_sym_and2] = ACTIONS(884), + [anon_sym_xor2] = ACTIONS(884), + [anon_sym_or2] = ACTIONS(884), + [anon_sym_not_DASHin2] = ACTIONS(884), + [anon_sym_has2] = ACTIONS(884), + [anon_sym_not_DASHhas2] = ACTIONS(884), + [anon_sym_starts_DASHwith2] = ACTIONS(884), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(884), + [anon_sym_ends_DASHwith2] = ACTIONS(884), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(884), + [anon_sym_EQ_EQ2] = ACTIONS(884), + [anon_sym_BANG_EQ2] = ACTIONS(884), + [anon_sym_LT2] = ACTIONS(858), + [anon_sym_LT_EQ2] = ACTIONS(884), + [anon_sym_GT_EQ2] = ACTIONS(884), + [anon_sym_EQ_TILDE2] = ACTIONS(884), + [anon_sym_BANG_TILDE2] = ACTIONS(884), + [anon_sym_like2] = ACTIONS(884), + [anon_sym_not_DASHlike2] = ACTIONS(884), + [anon_sym_STAR_STAR2] = ACTIONS(884), + [anon_sym_PLUS_PLUS2] = ACTIONS(884), + [anon_sym_SLASH2] = ACTIONS(858), + [anon_sym_mod2] = ACTIONS(884), + [anon_sym_SLASH_SLASH2] = ACTIONS(884), + [anon_sym_PLUS2] = ACTIONS(858), + [anon_sym_bit_DASHshl2] = ACTIONS(884), + [anon_sym_bit_DASHshr2] = ACTIONS(884), + [anon_sym_bit_DASHand2] = ACTIONS(884), + [anon_sym_bit_DASHxor2] = ACTIONS(884), + [anon_sym_bit_DASHor2] = ACTIONS(884), + [anon_sym_err_GT] = ACTIONS(858), + [anon_sym_out_GT] = ACTIONS(858), + [anon_sym_e_GT] = ACTIONS(858), + [anon_sym_o_GT] = ACTIONS(858), + [anon_sym_err_PLUSout_GT] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT] = ACTIONS(858), + [anon_sym_o_PLUSe_GT] = ACTIONS(858), + [anon_sym_e_PLUSo_GT] = ACTIONS(858), + [anon_sym_err_GT_GT] = ACTIONS(884), + [anon_sym_out_GT_GT] = ACTIONS(884), + [anon_sym_e_GT_GT] = ACTIONS(884), + [anon_sym_o_GT_GT] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), + [sym__unquoted_pattern] = ACTIONS(1828), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1247)] = { [sym_comment] = STATE(1247), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(2521), + [aux_sym_cmd_identifier_token2] = ACTIONS(2950), + [anon_sym_in] = ACTIONS(2523), + [sym__newline] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_err_GT_PIPE] = ACTIONS(2521), + [anon_sym_out_GT_PIPE] = ACTIONS(2521), + [anon_sym_e_GT_PIPE] = ACTIONS(2521), + [anon_sym_o_GT_PIPE] = ACTIONS(2521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2521), + [anon_sym_GT2] = ACTIONS(2523), + [anon_sym_DASH2] = ACTIONS(2523), + [anon_sym_STAR2] = ACTIONS(2523), + [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(2521), + [anon_sym_BANG_EQ2] = ACTIONS(2521), + [anon_sym_LT2] = ACTIONS(2523), + [anon_sym_LT_EQ2] = ACTIONS(2521), + [anon_sym_GT_EQ2] = ACTIONS(2521), + [anon_sym_EQ_TILDE2] = ACTIONS(2521), + [anon_sym_BANG_TILDE2] = ACTIONS(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(2523), + [anon_sym_mod2] = ACTIONS(2523), + [anon_sym_SLASH_SLASH2] = ACTIONS(2523), + [anon_sym_PLUS2] = ACTIONS(2523), + [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(2523), + [anon_sym_out_GT] = ACTIONS(2523), + [anon_sym_e_GT] = ACTIONS(2523), + [anon_sym_o_GT] = ACTIONS(2523), + [anon_sym_err_PLUSout_GT] = ACTIONS(2523), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2523), + [anon_sym_o_PLUSe_GT] = ACTIONS(2523), + [anon_sym_e_PLUSo_GT] = ACTIONS(2523), + [anon_sym_err_GT_GT] = ACTIONS(2521), + [anon_sym_out_GT_GT] = ACTIONS(2521), + [anon_sym_e_GT_GT] = ACTIONS(2521), + [anon_sym_o_GT_GT] = ACTIONS(2521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1248)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1248), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(884), + [aux_sym_cmd_identifier_token2] = ACTIONS(2950), + [anon_sym_in] = ACTIONS(858), + [sym__newline] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(884), + [anon_sym_err_GT_PIPE] = ACTIONS(884), + [anon_sym_out_GT_PIPE] = ACTIONS(884), + [anon_sym_e_GT_PIPE] = ACTIONS(884), + [anon_sym_o_GT_PIPE] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), + [anon_sym_GT2] = ACTIONS(858), + [anon_sym_DASH2] = ACTIONS(858), + [anon_sym_STAR2] = ACTIONS(858), + [anon_sym_and2] = ACTIONS(858), + [anon_sym_xor2] = ACTIONS(858), + [anon_sym_or2] = ACTIONS(858), + [anon_sym_not_DASHin2] = ACTIONS(858), + [anon_sym_has2] = ACTIONS(858), + [anon_sym_not_DASHhas2] = ACTIONS(858), + [anon_sym_starts_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), + [anon_sym_ends_DASHwith2] = ACTIONS(858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), + [anon_sym_EQ_EQ2] = ACTIONS(884), + [anon_sym_BANG_EQ2] = ACTIONS(884), + [anon_sym_LT2] = ACTIONS(858), + [anon_sym_LT_EQ2] = ACTIONS(884), + [anon_sym_GT_EQ2] = ACTIONS(884), + [anon_sym_EQ_TILDE2] = ACTIONS(884), + [anon_sym_BANG_TILDE2] = ACTIONS(858), + [anon_sym_like2] = ACTIONS(858), + [anon_sym_not_DASHlike2] = ACTIONS(858), + [anon_sym_STAR_STAR2] = ACTIONS(858), + [anon_sym_PLUS_PLUS2] = ACTIONS(858), + [anon_sym_SLASH2] = ACTIONS(858), + [anon_sym_mod2] = ACTIONS(858), + [anon_sym_SLASH_SLASH2] = ACTIONS(858), + [anon_sym_PLUS2] = ACTIONS(858), + [anon_sym_bit_DASHshl2] = ACTIONS(858), + [anon_sym_bit_DASHshr2] = ACTIONS(858), + [anon_sym_bit_DASHand2] = ACTIONS(858), + [anon_sym_bit_DASHxor2] = ACTIONS(858), + [anon_sym_bit_DASHor2] = ACTIONS(858), + [anon_sym_err_GT] = ACTIONS(858), + [anon_sym_out_GT] = ACTIONS(858), + [anon_sym_e_GT] = ACTIONS(858), + [anon_sym_o_GT] = ACTIONS(858), + [anon_sym_err_PLUSout_GT] = ACTIONS(858), + [anon_sym_out_PLUSerr_GT] = ACTIONS(858), + [anon_sym_o_PLUSe_GT] = ACTIONS(858), + [anon_sym_e_PLUSo_GT] = ACTIONS(858), + [anon_sym_err_GT_GT] = ACTIONS(884), + [anon_sym_out_GT_GT] = ACTIONS(884), + [anon_sym_e_GT_GT] = ACTIONS(884), + [anon_sym_o_GT_GT] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1249)] = { - [aux_sym__repeat_newline] = STATE(1141), + [aux_sym__repeat_newline] = STATE(1164), [sym_comment] = STATE(1249), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2688), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2688), + [anon_sym_has2] = ACTIONS(2688), + [anon_sym_not_DASHhas2] = ACTIONS(2688), + [anon_sym_starts_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), + [anon_sym_ends_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2688), + [anon_sym_BANG_TILDE2] = ACTIONS(2688), + [anon_sym_like2] = ACTIONS(2688), + [anon_sym_not_DASHlike2] = ACTIONS(2688), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2688), + [anon_sym_bit_DASHxor2] = ACTIONS(2688), + [anon_sym_bit_DASHor2] = ACTIONS(2688), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1250)] = { - [aux_sym__repeat_newline] = STATE(1222), + [aux_sym__repeat_newline] = STATE(1182), [sym_comment] = STATE(1250), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2744), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2746), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2877), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2851), + [anon_sym_bit_DASHxor2] = ACTIONS(2881), + [anon_sym_bit_DASHor2] = ACTIONS(2883), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1251)] = { + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1251), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2692), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2692), + [anon_sym_has2] = ACTIONS(2692), + [anon_sym_not_DASHhas2] = ACTIONS(2692), + [anon_sym_starts_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), + [anon_sym_ends_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2692), + [anon_sym_BANG_TILDE2] = ACTIONS(2692), + [anon_sym_like2] = ACTIONS(2692), + [anon_sym_not_DASHlike2] = ACTIONS(2692), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2692), + [anon_sym_bit_DASHxor2] = ACTIONS(2692), + [anon_sym_bit_DASHor2] = ACTIONS(2692), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1252)] = { + [aux_sym__repeat_newline] = STATE(1176), [sym_comment] = STATE(1252), - [anon_sym_export] = ACTIONS(2924), - [anon_sym_alias] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_mut] = ACTIONS(2928), - [anon_sym_const] = ACTIONS(2928), - [aux_sym_cmd_identifier_token1] = ACTIONS(2924), - [anon_sym_def] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_export_DASHenv] = ACTIONS(2928), - [anon_sym_extern] = ACTIONS(2928), - [anon_sym_module] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_loop] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_else] = ACTIONS(2928), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_catch] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_in] = ACTIONS(2924), - [anon_sym_true] = ACTIONS(2928), - [anon_sym_false] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2928), - [aux_sym_cmd_identifier_token3] = ACTIONS(2928), - [aux_sym_cmd_identifier_token4] = ACTIONS(2928), - [aux_sym_cmd_identifier_token5] = ACTIONS(2928), - [sym__newline] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2932), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_AT] = ACTIONS(2932), - [anon_sym_LBRACK] = ACTIONS(2932), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_DASH2] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2932), - [anon_sym_RBRACE] = ACTIONS(2932), - [anon_sym_DOT_DOT] = ACTIONS(2935), - [anon_sym_where] = ACTIONS(2932), - [aux_sym_expr_unary_token1] = ACTIONS(2932), - [anon_sym_PLUS2] = ACTIONS(2938), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2940), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2932), - [anon_sym_DOT_DOT_LT] = ACTIONS(2932), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2940), - [aux_sym__val_number_decimal_token1] = ACTIONS(2924), - [aux_sym__val_number_decimal_token2] = ACTIONS(2928), - [aux_sym__val_number_decimal_token3] = ACTIONS(2928), - [aux_sym__val_number_decimal_token4] = ACTIONS(2928), - [aux_sym__val_number_token1] = ACTIONS(2928), - [aux_sym__val_number_token2] = ACTIONS(2928), - [aux_sym__val_number_token3] = ACTIONS(2928), - [anon_sym_0b] = ACTIONS(2935), - [anon_sym_0o] = ACTIONS(2935), - [anon_sym_0x] = ACTIONS(2935), - [sym_val_date] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), - [anon_sym_BQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2940), - [anon_sym_CARET] = ACTIONS(2932), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2928), + [anon_sym_in] = ACTIONS(2835), + [sym__newline] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2877), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2835), + [anon_sym_has2] = ACTIONS(2835), + [anon_sym_not_DASHhas2] = ACTIONS(2835), + [anon_sym_starts_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), + [anon_sym_ends_DASHwith2] = ACTIONS(2835), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2846), + [anon_sym_BANG_TILDE2] = ACTIONS(2846), + [anon_sym_like2] = ACTIONS(2846), + [anon_sym_not_DASHlike2] = ACTIONS(2846), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2851), + [anon_sym_bit_DASHxor2] = ACTIONS(2881), + [anon_sym_bit_DASHor2] = ACTIONS(2883), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1253)] = { - [aux_sym__repeat_newline] = STATE(1146), + [aux_sym__repeat_newline] = STATE(1194), [sym_comment] = STATE(1253), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2712), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2714), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2688), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2690), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2688), + [anon_sym_has2] = ACTIONS(2688), + [anon_sym_not_DASHhas2] = ACTIONS(2688), + [anon_sym_starts_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), + [anon_sym_ends_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), + [anon_sym_EQ_EQ2] = ACTIONS(2688), + [anon_sym_BANG_EQ2] = ACTIONS(2688), + [anon_sym_LT2] = ACTIONS(2690), + [anon_sym_LT_EQ2] = ACTIONS(2688), + [anon_sym_GT_EQ2] = ACTIONS(2688), + [anon_sym_EQ_TILDE2] = ACTIONS(2688), + [anon_sym_BANG_TILDE2] = ACTIONS(2688), + [anon_sym_like2] = ACTIONS(2688), + [anon_sym_not_DASHlike2] = ACTIONS(2688), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2688), + [anon_sym_bit_DASHshr2] = ACTIONS(2688), + [anon_sym_bit_DASHand2] = ACTIONS(2688), + [anon_sym_bit_DASHxor2] = ACTIONS(2688), + [anon_sym_bit_DASHor2] = ACTIONS(2688), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1254)] = { + [aux_sym__repeat_newline] = STATE(1167), [sym_comment] = STATE(1254), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2535), - [anon_sym_bit_DASHshl2] = ACTIONS(2533), - [anon_sym_bit_DASHshr2] = ACTIONS(2533), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2688), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2690), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2688), + [anon_sym_has2] = ACTIONS(2688), + [anon_sym_not_DASHhas2] = ACTIONS(2688), + [anon_sym_starts_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), + [anon_sym_ends_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), + [anon_sym_EQ_EQ2] = ACTIONS(2688), + [anon_sym_BANG_EQ2] = ACTIONS(2688), + [anon_sym_LT2] = ACTIONS(2690), + [anon_sym_LT_EQ2] = ACTIONS(2688), + [anon_sym_GT_EQ2] = ACTIONS(2688), + [anon_sym_EQ_TILDE2] = ACTIONS(2688), + [anon_sym_BANG_TILDE2] = ACTIONS(2688), + [anon_sym_like2] = ACTIONS(2688), + [anon_sym_not_DASHlike2] = ACTIONS(2688), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2688), + [anon_sym_bit_DASHxor2] = ACTIONS(2688), + [anon_sym_bit_DASHor2] = ACTIONS(2688), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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), + [anon_sym_in] = ACTIONS(2578), + [sym__newline] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_PIPE] = ACTIONS(2578), + [anon_sym_err_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_GT_PIPE] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_GT2] = ACTIONS(2580), + [anon_sym_DASH2] = ACTIONS(2857), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_STAR2] = ACTIONS(2859), + [anon_sym_and2] = ACTIONS(2578), + [anon_sym_xor2] = ACTIONS(2578), + [anon_sym_or2] = ACTIONS(2578), + [anon_sym_not_DASHin2] = ACTIONS(2578), + [anon_sym_has2] = ACTIONS(2578), + [anon_sym_not_DASHhas2] = ACTIONS(2578), + [anon_sym_starts_DASHwith2] = ACTIONS(2578), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2578), + [anon_sym_ends_DASHwith2] = ACTIONS(2578), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2578), + [anon_sym_EQ_EQ2] = ACTIONS(2578), + [anon_sym_BANG_EQ2] = ACTIONS(2578), + [anon_sym_LT2] = ACTIONS(2580), + [anon_sym_LT_EQ2] = ACTIONS(2578), + [anon_sym_GT_EQ2] = ACTIONS(2578), + [anon_sym_EQ_TILDE2] = ACTIONS(2578), + [anon_sym_BANG_TILDE2] = ACTIONS(2578), + [anon_sym_like2] = ACTIONS(2578), + [anon_sym_not_DASHlike2] = ACTIONS(2578), + [anon_sym_STAR_STAR2] = ACTIONS(2865), + [anon_sym_PLUS_PLUS2] = ACTIONS(2865), + [anon_sym_SLASH2] = ACTIONS(2859), + [anon_sym_mod2] = ACTIONS(2867), + [anon_sym_SLASH_SLASH2] = ACTIONS(2867), + [anon_sym_PLUS2] = ACTIONS(2869), + [anon_sym_bit_DASHshl2] = ACTIONS(2578), + [anon_sym_bit_DASHshr2] = ACTIONS(2578), + [anon_sym_bit_DASHand2] = ACTIONS(2578), + [anon_sym_bit_DASHxor2] = ACTIONS(2578), + [anon_sym_bit_DASHor2] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2578), + [anon_sym_out_GT_GT] = ACTIONS(2578), + [anon_sym_e_GT_GT] = ACTIONS(2578), + [anon_sym_o_GT_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1256)] = { - [sym__expression] = STATE(4756), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1256), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2692), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2694), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2692), + [anon_sym_has2] = ACTIONS(2692), + [anon_sym_not_DASHhas2] = ACTIONS(2692), + [anon_sym_starts_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), + [anon_sym_ends_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), + [anon_sym_EQ_EQ2] = ACTIONS(2692), + [anon_sym_BANG_EQ2] = ACTIONS(2692), + [anon_sym_LT2] = ACTIONS(2694), + [anon_sym_LT_EQ2] = ACTIONS(2692), + [anon_sym_GT_EQ2] = ACTIONS(2692), + [anon_sym_EQ_TILDE2] = ACTIONS(2692), + [anon_sym_BANG_TILDE2] = ACTIONS(2692), + [anon_sym_like2] = ACTIONS(2692), + [anon_sym_not_DASHlike2] = ACTIONS(2692), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2692), + [anon_sym_bit_DASHxor2] = ACTIONS(2692), + [anon_sym_bit_DASHor2] = ACTIONS(2692), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(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__expression] = STATE(4810), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1832), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), [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), + [aux_sym_cmd_identifier_token2] = ACTIONS(2630), + [anon_sym_true] = ACTIONS(2632), + [anon_sym_false] = ACTIONS(2632), + [anon_sym_null] = ACTIONS(2634), + [aux_sym_cmd_identifier_token3] = ACTIONS(2636), + [aux_sym_cmd_identifier_token4] = ACTIONS(2636), + [aux_sym_cmd_identifier_token5] = ACTIONS(2636), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2046), + [aux_sym__val_number_decimal_token3] = ACTIONS(2640), + [aux_sym__val_number_decimal_token4] = ACTIONS(2640), + [aux_sym__val_number_token1] = ACTIONS(2636), + [aux_sym__val_number_token2] = ACTIONS(2636), + [aux_sym__val_number_token3] = ACTIONS(2636), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2642), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -138837,64 +139151,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(4826), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1832), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), [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), + [aux_sym_cmd_identifier_token2] = ACTIONS(2630), + [anon_sym_true] = ACTIONS(2632), + [anon_sym_false] = ACTIONS(2632), + [anon_sym_null] = ACTIONS(2634), + [aux_sym_cmd_identifier_token3] = ACTIONS(2636), + [aux_sym_cmd_identifier_token4] = ACTIONS(2636), + [aux_sym_cmd_identifier_token5] = ACTIONS(2636), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2046), + [aux_sym__val_number_decimal_token3] = ACTIONS(2640), + [aux_sym__val_number_decimal_token4] = ACTIONS(2640), + [aux_sym__val_number_token1] = ACTIONS(2636), + [aux_sym__val_number_token2] = ACTIONS(2636), + [aux_sym__val_number_token3] = ACTIONS(2636), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2642), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -138904,64 +139218,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expression] = STATE(4827), + [sym_expr_unary] = STATE(904), + [sym__expr_unary_minus] = STATE(911), + [sym_expr_binary] = STATE(904), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(686), + [sym_val_range] = STATE(904), + [sym__value] = STATE(904), + [sym_val_nothing] = STATE(903), + [sym_val_bool] = STATE(903), + [sym_val_variable] = STATE(702), + [sym_val_cellpath] = STATE(903), + [sym_val_number] = STATE(903), + [sym__val_number_decimal] = STATE(1832), + [sym__val_number] = STATE(700), + [sym_val_duration] = STATE(903), + [sym_val_filesize] = STATE(903), + [sym_val_binary] = STATE(903), + [sym_val_string] = STATE(903), + [sym__raw_str] = STATE(424), + [sym__str_double_quotes] = STATE(424), + [sym__str_single_quotes] = STATE(424), + [sym__str_back_ticks] = STATE(424), + [sym_val_interpolated] = STATE(903), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(903), + [sym_val_record] = STATE(903), + [sym_val_table] = STATE(903), + [sym_val_closure] = STATE(903), [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), + [aux_sym_cmd_identifier_token2] = ACTIONS(2630), + [anon_sym_true] = ACTIONS(2632), + [anon_sym_false] = ACTIONS(2632), + [anon_sym_null] = ACTIONS(2634), + [aux_sym_cmd_identifier_token3] = ACTIONS(2636), + [aux_sym_cmd_identifier_token4] = ACTIONS(2636), + [aux_sym_cmd_identifier_token5] = ACTIONS(2636), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1006), [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(2046), + [aux_sym__val_number_decimal_token2] = ACTIONS(2046), + [aux_sym__val_number_decimal_token3] = ACTIONS(2640), + [aux_sym__val_number_decimal_token4] = ACTIONS(2640), + [aux_sym__val_number_token1] = ACTIONS(2636), + [aux_sym__val_number_token2] = ACTIONS(2636), + [aux_sym__val_number_token3] = ACTIONS(2636), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2642), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -138971,204 +139285,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__repeat_newline] = STATE(507), [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_in] = ACTIONS(2792), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2794), + [anon_sym_DASH2] = ACTIONS(2796), + [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_and2] = ACTIONS(2800), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2792), + [anon_sym_has2] = ACTIONS(2792), + [anon_sym_not_DASHhas2] = ACTIONS(2792), + [anon_sym_starts_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), + [anon_sym_ends_DASHwith2] = ACTIONS(2792), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), + [anon_sym_EQ_EQ2] = ACTIONS(2804), + [anon_sym_BANG_EQ2] = ACTIONS(2804), + [anon_sym_LT2] = ACTIONS(2794), + [anon_sym_LT_EQ2] = ACTIONS(2804), + [anon_sym_GT_EQ2] = ACTIONS(2804), + [anon_sym_EQ_TILDE2] = ACTIONS(2806), + [anon_sym_BANG_TILDE2] = ACTIONS(2806), + [anon_sym_like2] = ACTIONS(2806), + [anon_sym_not_DASHlike2] = ACTIONS(2806), + [anon_sym_STAR_STAR2] = ACTIONS(2808), + [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [anon_sym_SLASH2] = ACTIONS(2798), + [anon_sym_mod2] = ACTIONS(2810), + [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [anon_sym_PLUS2] = ACTIONS(2812), + [anon_sym_bit_DASHshl2] = ACTIONS(2814), + [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [anon_sym_bit_DASHand2] = ACTIONS(2816), + [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [anon_sym_bit_DASHor2] = ACTIONS(2820), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(1261)] = { - [aux_sym__repeat_newline] = STATE(1233), + [aux_sym__repeat_newline] = STATE(1171), [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_in] = ACTIONS(2688), + [sym__newline] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2690), + [anon_sym_DASH2] = ACTIONS(2688), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2688), + [anon_sym_has2] = ACTIONS(2688), + [anon_sym_not_DASHhas2] = ACTIONS(2688), + [anon_sym_starts_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), + [anon_sym_ends_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), + [anon_sym_EQ_EQ2] = ACTIONS(2688), + [anon_sym_BANG_EQ2] = ACTIONS(2688), + [anon_sym_LT2] = ACTIONS(2690), + [anon_sym_LT_EQ2] = ACTIONS(2688), + [anon_sym_GT_EQ2] = ACTIONS(2688), + [anon_sym_EQ_TILDE2] = ACTIONS(2688), + [anon_sym_BANG_TILDE2] = ACTIONS(2688), + [anon_sym_like2] = ACTIONS(2688), + [anon_sym_not_DASHlike2] = ACTIONS(2688), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2690), + [anon_sym_bit_DASHshl2] = ACTIONS(2688), + [anon_sym_bit_DASHshr2] = ACTIONS(2688), + [anon_sym_bit_DASHand2] = ACTIONS(2688), + [anon_sym_bit_DASHxor2] = ACTIONS(2688), + [anon_sym_bit_DASHor2] = ACTIONS(2688), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1262)] = { - [aux_sym__repeat_newline] = STATE(1175), + [aux_sym__repeat_newline] = STATE(1251), [sym_comment] = STATE(1262), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2756), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_err_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_GT_PIPE] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_GT2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2825), + [anon_sym_STAR2] = ACTIONS(2827), + [anon_sym_and2] = ACTIONS(2756), + [anon_sym_xor2] = ACTIONS(2756), + [anon_sym_or2] = ACTIONS(2756), + [anon_sym_not_DASHin2] = ACTIONS(2756), + [anon_sym_has2] = ACTIONS(2756), + [anon_sym_not_DASHhas2] = ACTIONS(2756), + [anon_sym_starts_DASHwith2] = ACTIONS(2756), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2756), + [anon_sym_ends_DASHwith2] = ACTIONS(2756), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2756), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2840), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2756), + [anon_sym_BANG_TILDE2] = ACTIONS(2756), + [anon_sym_like2] = ACTIONS(2756), + [anon_sym_not_DASHlike2] = ACTIONS(2756), + [anon_sym_STAR_STAR2] = ACTIONS(2829), + [anon_sym_PLUS_PLUS2] = ACTIONS(2829), + [anon_sym_SLASH2] = ACTIONS(2827), + [anon_sym_mod2] = ACTIONS(2831), + [anon_sym_SLASH_SLASH2] = ACTIONS(2831), + [anon_sym_PLUS2] = ACTIONS(2833), + [anon_sym_bit_DASHshl2] = ACTIONS(2844), + [anon_sym_bit_DASHshr2] = ACTIONS(2844), + [anon_sym_bit_DASHand2] = ACTIONS(2756), + [anon_sym_bit_DASHxor2] = ACTIONS(2756), + [anon_sym_bit_DASHor2] = ACTIONS(2756), + [anon_sym_err_GT] = ACTIONS(2758), + [anon_sym_out_GT] = ACTIONS(2758), + [anon_sym_e_GT] = ACTIONS(2758), + [anon_sym_o_GT] = ACTIONS(2758), + [anon_sym_err_PLUSout_GT] = ACTIONS(2758), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), + [anon_sym_o_PLUSe_GT] = ACTIONS(2758), + [anon_sym_e_PLUSo_GT] = ACTIONS(2758), + [anon_sym_err_GT_GT] = ACTIONS(2756), + [anon_sym_out_GT_GT] = ACTIONS(2756), + [anon_sym_e_GT_GT] = ACTIONS(2756), + [anon_sym_o_GT_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), [anon_sym_POUND] = ACTIONS(3), }, }; @@ -139179,7 +139493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1263), 1, sym_comment, - ACTIONS(2274), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139193,7 +139507,7 @@ 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(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139248,7 +139562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1264), 1, sym_comment, - ACTIONS(2154), 13, + ACTIONS(2286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139262,7 +139576,7 @@ 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(2284), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139317,7 +139631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1265), 1, sym_comment, - ACTIONS(2220), 13, + ACTIONS(2290), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139331,7 +139645,7 @@ 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(2288), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139386,7 +139700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1266), 1, sym_comment, - ACTIONS(1966), 13, + ACTIONS(2504), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139400,7 +139714,7 @@ 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(2502), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139450,47 +139764,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, + [292] = 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, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2084), 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 +139783,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(2082), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -139521,9 +139797,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 +139833,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, - [391] = 6, + [365] = 9, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2954), 1, + anon_sym_DASH2, + ACTIONS(2962), 1, + anon_sym_PLUS2, STATE(1268), 1, sym_comment, - ACTIONS(2138), 5, - anon_sym_GT2, + ACTIONS(2956), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2140), 8, + ACTIONS(2958), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2960), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2580), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -139552,8 +139862,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(2578), 44, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -139565,17 +139876,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, anon_sym_or2, @@ -139594,21 +139894,25 @@ 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, - [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, + [448] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1269), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(2104), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139672,17 +139976,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, - [541] = 4, + [521] = 12, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2954), 1, + anon_sym_DASH2, + ACTIONS(2962), 1, + anon_sym_PLUS2, STATE(1270), 1, sym_comment, - ACTIONS(2517), 13, - anon_sym_GT2, + ACTIONS(2956), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2958), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2960), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2964), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2968), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2966), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2580), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -139691,7 +140014,7 @@ 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(2578), 38, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139705,7 +140028,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, @@ -139716,20 +140038,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -139741,12 +140053,12 @@ static const 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, + [610] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1271), 1, sym_comment, - ACTIONS(2078), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139760,7 +140072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2076), 49, + ACTIONS(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139810,12 +140122,12 @@ static const 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, + [683] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1272), 1, sym_comment, - ACTIONS(2593), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139829,7 +140141,7 @@ 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(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139879,17 +140191,109 @@ static const 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, + [756] = 14, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2954), 1, + anon_sym_DASH2, + ACTIONS(2962), 1, + anon_sym_PLUS2, STATE(1273), 1, sym_comment, - ACTIONS(2204), 13, - anon_sym_GT2, + ACTIONS(2956), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(2958), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2960), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2964), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2968), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2966), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2972), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2580), 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(2970), 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(2578), 26, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [849] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2954), 1, + anon_sym_DASH2, + ACTIONS(2962), 1, anon_sym_PLUS2, + STATE(1274), 1, + sym_comment, + ACTIONS(2956), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2958), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2960), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2968), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2580), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -139898,7 +140302,7 @@ 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(2578), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139912,7 +140316,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, @@ -139931,12 +140334,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, @@ -139948,12 +140345,12 @@ static const 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, + [934] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1274), 1, + STATE(1275), 1, sym_comment, - ACTIONS(2521), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139967,7 +140364,7 @@ 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(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140017,129 +140414,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, + [1007] = 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, 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(2084), 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 +140433,7 @@ 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(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140162,6 +140447,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 +140466,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,16 +140483,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, - [1128] = 4, + [1080] = 7, ACTIONS(3), 1, anon_sym_POUND, STATE(1277), 1, sym_comment, - ACTIONS(2507), 13, - anon_sym_GT2, + ACTIONS(2956), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(2958), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2960), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2580), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -140212,7 +140509,7 @@ 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(2578), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140245,10 +140542,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, @@ -140262,49 +140555,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, - [1201] = 18, + [1159] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, + ACTIONS(2954), 1, anon_sym_DASH2, - ACTIONS(2960), 1, + ACTIONS(2962), 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, + anon_sym_bit_DASHand2, STATE(1278), 1, sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, + ACTIONS(2956), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(2958), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(2960), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, + ACTIONS(2964), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2968), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, + ACTIONS(2966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2954), 4, + ACTIONS(2972), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + ACTIONS(2580), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140313,7 +140600,7 @@ 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(2970), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -140322,7 +140609,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(2578), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -140335,8 +140622,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -140345,12 +140635,12 @@ static const 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, + [1254] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1279), 1, sym_comment, - ACTIONS(2224), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140364,7 +140654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2222), 49, + ACTIONS(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140414,12 +140704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1375] = 4, + [1327] = 5, ACTIONS(3), 1, anon_sym_POUND, STATE(1280), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2958), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2580), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140433,7 +140726,7 @@ 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(2578), 47, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140466,8 +140759,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, @@ -140483,12 +140774,12 @@ static const 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, + [1402] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1281), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140502,7 +140793,7 @@ 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(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140552,12 +140843,12 @@ static const 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, + [1475] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1282), 1, sym_comment, - ACTIONS(2535), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140571,7 +140862,7 @@ 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(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140621,36 +140912,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, - [1594] = 13, + [1548] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, + ACTIONS(2954), 1, anon_sym_DASH2, - ACTIONS(2960), 1, + ACTIONS(2962), 1, anon_sym_PLUS2, + ACTIONS(2974), 1, + anon_sym_bit_DASHand2, + ACTIONS(2976), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2978), 1, + anon_sym_bit_DASHor2, STATE(1283), 1, sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, + ACTIONS(2956), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(2958), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(2960), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, + ACTIONS(2964), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2968), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, + ACTIONS(2966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2535), 8, + ACTIONS(2972), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2580), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140659,7 +140961,7 @@ 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(2970), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -140668,7 +140970,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(2578), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -140684,13 +140986,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -140699,17 +140994,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, - [1685] = 4, + [1647] = 16, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2954), 1, + anon_sym_DASH2, + ACTIONS(2962), 1, + anon_sym_PLUS2, + ACTIONS(2974), 1, + anon_sym_bit_DASHand2, + ACTIONS(2976), 1, + anon_sym_bit_DASHxor2, STATE(1284), 1, sym_comment, - ACTIONS(2090), 13, - anon_sym_GT2, + ACTIONS(2956), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2958), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2960), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2964), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2968), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2966), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2972), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2580), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140718,9 +141041,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(2970), 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(2578), 24, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -140732,33 +141063,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, @@ -140768,12 +141075,12 @@ static const 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, + [1744] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1285), 1, sym_comment, - ACTIONS(2605), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140787,7 +141094,7 @@ 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(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140837,43 +141144,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1831] = 15, + [1817] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, + ACTIONS(2954), 1, anon_sym_DASH2, - ACTIONS(2960), 1, + ACTIONS(2962), 1, anon_sym_PLUS2, - ACTIONS(2964), 1, + ACTIONS(2974), 1, anon_sym_bit_DASHand2, + ACTIONS(2976), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2978), 1, + anon_sym_bit_DASHor2, + ACTIONS(2980), 1, + anon_sym_and2, STATE(1286), 1, sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, + ACTIONS(2956), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(2958), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(2960), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, + ACTIONS(2964), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2968), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, + ACTIONS(2966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2954), 4, + ACTIONS(2972), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + ACTIONS(2580), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140882,7 +141195,7 @@ 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(2970), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -140891,7 +141204,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), 25, + ACTIONS(2578), 22, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -140904,11 +141217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -140917,98 +141227,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1926] = 39, + [1918] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2978), 1, + ACTIONS(2984), 1, anon_sym_null, - ACTIONS(2982), 1, + ACTIONS(2988), 1, sym__newline, - ACTIONS(2984), 1, + ACTIONS(2990), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2992), 1, anon_sym_LPAREN, - ACTIONS(2988), 1, + ACTIONS(2994), 1, anon_sym_DOLLAR, - ACTIONS(2990), 1, + ACTIONS(2996), 1, anon_sym_LBRACE, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT_DOT, - ACTIONS(2996), 1, + ACTIONS(3002), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, ACTIONS(3004), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3010), 1, anon_sym_0b, - ACTIONS(3008), 1, + ACTIONS(3014), 1, sym_val_date, - ACTIONS(3010), 1, + ACTIONS(3016), 1, anon_sym_DQUOTE, - ACTIONS(3012), 1, + ACTIONS(3018), 1, anon_sym_SQUOTE, - ACTIONS(3014), 1, + ACTIONS(3020), 1, anon_sym_BQUOTE, - ACTIONS(3016), 1, + ACTIONS(3022), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, + ACTIONS(3024), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, + ACTIONS(3026), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, + ACTIONS(3028), 1, sym_raw_string_begin, STATE(1287), 1, sym_comment, - STATE(1329), 1, + STATE(2226), 1, aux_sym__repeat_newline, - STATE(2444), 1, + STATE(2459), 1, sym__val_number_decimal, - STATE(2871), 1, + STATE(2862), 1, sym_expr_parenthesized, - STATE(2884), 1, + STATE(2865), 1, sym_val_variable, - STATE(2924), 1, + STATE(2975), 1, + sym_val_bool, + STATE(3075), 1, + sym__val_number, + STATE(3085), 1, sym__inter_single_quotes, - STATE(2925), 1, + STATE(3086), 1, sym__inter_double_quotes, - STATE(2980), 1, - sym_val_bool, - STATE(3024), 1, + STATE(3092), 1, sym__unquoted_in_record, - STATE(3062), 1, - sym__val_number, - ACTIONS(2976), 2, + ACTIONS(2982), 2, anon_sym_true, anon_sym_false, - ACTIONS(2994), 2, + ACTIONS(3000), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, + ACTIONS(3006), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, + ACTIONS(3012), 2, anon_sym_0o, anon_sym_0x, - STATE(4601), 2, + STATE(4599), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, + ACTIONS(2986), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, + ACTIONS(3008), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3260), 3, + STATE(3274), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(2548), 4, + STATE(2576), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3061), 12, + STATE(3073), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -141021,15 +141331,185 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [2069] = 5, + [2061] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1288), 1, sym_comment, - ACTIONS(2956), 2, + ACTIONS(2298), 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(2296), 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, - ACTIONS(2535), 13, + anon_sym_mod2, + anon_sym_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, + [2134] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2984), 1, + anon_sym_null, + ACTIONS(2988), 1, + sym__newline, + ACTIONS(2990), 1, + anon_sym_LBRACK, + ACTIONS(2992), 1, + anon_sym_LPAREN, + ACTIONS(2994), 1, + anon_sym_DOLLAR, + ACTIONS(2996), 1, + anon_sym_LBRACE, + ACTIONS(2998), 1, + anon_sym_DOT_DOT, + ACTIONS(3002), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3004), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3010), 1, + anon_sym_0b, + ACTIONS(3014), 1, + sym_val_date, + ACTIONS(3016), 1, + anon_sym_DQUOTE, + ACTIONS(3018), 1, + anon_sym_SQUOTE, + ACTIONS(3020), 1, + anon_sym_BQUOTE, + ACTIONS(3022), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3024), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3026), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3028), 1, + sym_raw_string_begin, + STATE(1289), 1, + sym_comment, + STATE(2226), 1, + aux_sym__repeat_newline, + STATE(2459), 1, + sym__val_number_decimal, + STATE(2865), 1, + sym_val_variable, + STATE(2927), 1, + sym_expr_parenthesized, + STATE(2975), 1, + sym_val_bool, + STATE(3064), 1, + sym__unquoted_in_record, + STATE(3075), 1, + sym__val_number, + STATE(3085), 1, + sym__inter_single_quotes, + STATE(3086), 1, + sym__inter_double_quotes, + ACTIONS(2982), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3000), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3006), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3012), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4599), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2986), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3008), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3347), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2576), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3073), 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, + [2277] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1290), 1, + sym_comment, + ACTIONS(2110), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141043,7 +141523,7 @@ 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(2108), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141076,6 +141556,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 +141573,12 @@ static const 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, + [2350] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1289), 1, + STATE(1291), 1, sym_comment, - ACTIONS(868), 13, + ACTIONS(2118), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141110,7 +141592,7 @@ 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(2116), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141160,12 +141642,12 @@ static const 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, + [2423] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1290), 1, + STATE(1292), 1, sym_comment, - ACTIONS(2577), 13, + ACTIONS(2568), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141179,7 +141661,7 @@ 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(2566), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141229,98 +141711,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2290] = 39, + [2496] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2978), 1, + ACTIONS(2984), 1, anon_sym_null, - ACTIONS(2982), 1, + ACTIONS(2988), 1, sym__newline, - ACTIONS(2984), 1, + ACTIONS(2990), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2992), 1, anon_sym_LPAREN, - ACTIONS(2988), 1, + ACTIONS(2994), 1, anon_sym_DOLLAR, - ACTIONS(2990), 1, + ACTIONS(2996), 1, anon_sym_LBRACE, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT_DOT, - ACTIONS(2996), 1, + ACTIONS(3002), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, ACTIONS(3004), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3010), 1, anon_sym_0b, - ACTIONS(3008), 1, + ACTIONS(3014), 1, sym_val_date, - ACTIONS(3010), 1, + ACTIONS(3016), 1, anon_sym_DQUOTE, - ACTIONS(3012), 1, + ACTIONS(3018), 1, anon_sym_SQUOTE, - ACTIONS(3014), 1, + ACTIONS(3020), 1, anon_sym_BQUOTE, - ACTIONS(3016), 1, + ACTIONS(3022), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, + ACTIONS(3024), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, + ACTIONS(3026), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, + ACTIONS(3028), 1, sym_raw_string_begin, - STATE(1291), 1, - sym_comment, - STATE(2226), 1, + STATE(1287), 1, aux_sym__repeat_newline, - STATE(2444), 1, + STATE(1293), 1, + sym_comment, + STATE(2459), 1, sym__val_number_decimal, - STATE(2821), 1, - sym_expr_parenthesized, - STATE(2884), 1, + STATE(2865), 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, + STATE(2927), 1, + sym_expr_parenthesized, + STATE(2975), 1, sym_val_bool, - STATE(3062), 1, + STATE(3064), 1, + sym__unquoted_in_record, + STATE(3075), 1, sym__val_number, - ACTIONS(2976), 2, + STATE(3085), 1, + sym__inter_single_quotes, + STATE(3086), 1, + sym__inter_double_quotes, + ACTIONS(2982), 2, anon_sym_true, anon_sym_false, - ACTIONS(2994), 2, + ACTIONS(3000), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, + ACTIONS(3006), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, + ACTIONS(3012), 2, anon_sym_0o, anon_sym_0x, - STATE(4601), 2, + STATE(4599), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, + ACTIONS(2986), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, + ACTIONS(3008), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3234), 3, + STATE(3347), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(2548), 4, + STATE(2576), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3061), 12, + STATE(3073), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -141333,12 +141815,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [2433] = 4, + [2639] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1292), 1, + STATE(1294), 1, sym_comment, - ACTIONS(1868), 13, + ACTIONS(2126), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141352,7 +141834,7 @@ 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(2124), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141402,12 +141884,12 @@ static const 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, + [2712] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1293), 1, + STATE(1295), 1, sym_comment, - ACTIONS(2565), 13, + ACTIONS(2588), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141421,7 +141903,7 @@ 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(2586), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141471,12 +141953,12 @@ static const 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, + [2785] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1294), 1, + STATE(1296), 1, sym_comment, - ACTIONS(2601), 13, + ACTIONS(2212), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141490,7 +141972,7 @@ 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(2210), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141540,12 +142022,12 @@ static const 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, + [2858] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1295), 1, + STATE(1297), 1, sym_comment, - ACTIONS(2573), 13, + ACTIONS(2216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141559,7 +142041,7 @@ 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(2214), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141609,12 +142091,12 @@ static const 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, + [2931] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1296), 1, + STATE(1298), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2220), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141628,7 +142110,7 @@ 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(2218), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141678,12 +142160,12 @@ static const 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, + [3004] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1297), 1, + STATE(1299), 1, sym_comment, - ACTIONS(2609), 13, + ACTIONS(2224), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141697,7 +142179,7 @@ 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(2222), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141747,12 +142229,12 @@ static const 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, + [3077] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1298), 1, + STATE(1300), 1, sym_comment, - ACTIONS(2208), 13, + ACTIONS(2228), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141766,7 +142248,7 @@ 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(2226), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141816,12 +142298,12 @@ static const 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, + [3150] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1299), 1, + STATE(1301), 1, sym_comment, - ACTIONS(2513), 13, + ACTIONS(2232), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141835,7 +142317,7 @@ 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(2230), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141885,12 +142367,12 @@ static const 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, + [3223] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1300), 1, + STATE(1302), 1, sym_comment, - ACTIONS(2212), 13, + ACTIONS(2236), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141904,7 +142386,7 @@ 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(2234), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141954,12 +142436,12 @@ static const 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, + [3296] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1301), 1, + STATE(1303), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2572), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141973,7 +142455,7 @@ 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(2570), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142023,12 +142505,12 @@ static const 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, + [3369] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1302), 1, + STATE(1304), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142042,7 +142524,7 @@ 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(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142092,12 +142574,12 @@ static const 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, + [3442] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1303), 1, + STATE(1305), 1, sym_comment, - ACTIONS(1619), 13, + ACTIONS(2023), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142111,7 +142593,7 @@ 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(2021), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142161,12 +142643,12 @@ static const 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, + [3515] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1304), 1, + STATE(1306), 1, sym_comment, - ACTIONS(2114), 13, + ACTIONS(2584), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142180,7 +142662,7 @@ 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(2582), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142230,12 +142712,12 @@ static const 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, + [3588] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1305), 1, + STATE(1307), 1, sym_comment, - ACTIONS(2621), 13, + ACTIONS(2365), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142249,7 +142731,7 @@ 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(2363), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142299,12 +142781,198 @@ static const 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, + [3661] = 37, ACTIONS(3), 1, anon_sym_POUND, - STATE(1306), 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(1006), 1, + anon_sym_DOLLAR, + ACTIONS(2046), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2048), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2700), 1, + anon_sym_null, + STATE(686), 1, + sym_expr_parenthesized, + STATE(700), 1, + sym__val_number, + STATE(702), 1, + sym_val_variable, + STATE(728), 1, + sym__inter_single_quotes, + STATE(729), 1, + sym__inter_double_quotes, + STATE(911), 1, + sym__expr_unary_minus, + STATE(1308), 1, sym_comment, - ACTIONS(2216), 13, + STATE(1832), 1, + sym__val_number_decimal, + STATE(2216), 1, + sym__expr_binary_expression, + STATE(4698), 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(1904), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2050), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(904), 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(903), 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, + [3800] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2954), 1, + anon_sym_DASH2, + ACTIONS(2962), 1, + anon_sym_PLUS2, + ACTIONS(2974), 1, + anon_sym_bit_DASHand2, + ACTIONS(2976), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2978), 1, + anon_sym_bit_DASHor2, + ACTIONS(2980), 1, + anon_sym_and2, + ACTIONS(3030), 1, + anon_sym_xor2, + STATE(1309), 1, + sym_comment, + ACTIONS(2956), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2958), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2960), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2964), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2968), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2966), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2972), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2580), 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(2970), 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(2578), 21, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [3903] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1310), 1, + sym_comment, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142318,7 +142986,7 @@ 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(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142368,12 +143036,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3528] = 4, + [3976] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(1307), 1, + ACTIONS(2954), 1, + anon_sym_DASH2, + ACTIONS(2962), 1, + anon_sym_PLUS2, + STATE(1311), 1, + sym_comment, + ACTIONS(2956), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2958), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2960), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2964), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2968), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2966), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2580), 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(2970), 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(2578), 30, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [4067] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1312), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142387,7 +143133,7 @@ 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(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142437,51 +143183,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, + [4140] = 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(1313), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2580), 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 +143202,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(2578), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -142512,7 +143216,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 +143252,12 @@ static const 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, + [4213] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1309), 1, + STATE(1314), 1, sym_comment, - ACTIONS(2260), 13, + ACTIONS(858), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142540,7 +143271,7 @@ 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(884), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142590,12 +143321,12 @@ static const 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, + [4286] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1310), 1, + STATE(1315), 1, sym_comment, - ACTIONS(2264), 13, + ACTIONS(2550), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142609,7 +143340,7 @@ 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(2548), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142659,12 +143390,12 @@ static const 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, + [4359] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1311), 1, + STATE(1316), 1, sym_comment, - ACTIONS(2122), 13, + ACTIONS(2154), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142678,7 +143409,7 @@ 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(2152), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142728,12 +143459,12 @@ static const 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, + [4432] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1312), 1, + STATE(1317), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2013), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142747,7 +143478,7 @@ 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(2011), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142797,12 +143528,12 @@ static const 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, + [4505] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1313), 1, + STATE(1318), 1, sym_comment, - ACTIONS(2525), 13, + ACTIONS(1629), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142816,7 +143547,7 @@ 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(1716), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142866,45 +143597,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, + [4578] = 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(1319), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2268), 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 +143616,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(2266), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -142935,9 +143630,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 +143666,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, - [4166] = 14, + [4651] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - STATE(1315), 1, + STATE(1320), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2272), 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, @@ -142990,8 +143685,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, + ACTIONS(2270), 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, @@ -142999,7 +143710,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 26, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [4724] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1321), 1, + sym_comment, + ACTIONS(2104), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2106), 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(2102), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -143012,12 +143768,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -143026,12 +143776,42 @@ static const 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, + ACTIONS(2100), 29, + anon_sym_in, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [4801] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1316), 1, + STATE(1322), 1, sym_comment, - ACTIONS(2196), 13, + ACTIONS(2592), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143045,7 +143825,7 @@ 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(2590), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143095,12 +143875,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, - [4332] = 4, + [4874] = 39, ACTIONS(3), 1, anon_sym_POUND, - STATE(1317), 1, + ACTIONS(2984), 1, + anon_sym_null, + ACTIONS(2988), 1, + sym__newline, + ACTIONS(2990), 1, + anon_sym_LBRACK, + ACTIONS(2992), 1, + anon_sym_LPAREN, + ACTIONS(2994), 1, + anon_sym_DOLLAR, + ACTIONS(2996), 1, + anon_sym_LBRACE, + ACTIONS(2998), 1, + anon_sym_DOT_DOT, + ACTIONS(3002), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3004), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3010), 1, + anon_sym_0b, + ACTIONS(3014), 1, + sym_val_date, + ACTIONS(3016), 1, + anon_sym_DQUOTE, + ACTIONS(3018), 1, + anon_sym_SQUOTE, + ACTIONS(3020), 1, + anon_sym_BQUOTE, + ACTIONS(3022), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3024), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3026), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3028), 1, + sym_raw_string_begin, + STATE(1289), 1, + aux_sym__repeat_newline, + STATE(1323), 1, sym_comment, - ACTIONS(2090), 13, + STATE(2459), 1, + sym__val_number_decimal, + STATE(2865), 1, + sym_val_variable, + STATE(2945), 1, + sym_expr_parenthesized, + STATE(2975), 1, + sym_val_bool, + STATE(3031), 1, + sym__unquoted_in_record, + STATE(3075), 1, + sym__val_number, + STATE(3085), 1, + sym__inter_single_quotes, + STATE(3086), 1, + sym__inter_double_quotes, + ACTIONS(2982), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3000), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3006), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3012), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4599), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2986), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3008), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3267), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2576), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3073), 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, + [5017] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1324), 1, + sym_comment, + ACTIONS(2600), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143114,7 +143998,7 @@ 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(2598), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143164,12 +144048,12 @@ static const 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, + [5090] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1318), 1, + STATE(1325), 1, sym_comment, - ACTIONS(1976), 13, + ACTIONS(2604), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143183,7 +144067,7 @@ 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(2602), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143233,12 +144117,12 @@ static const 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, + [5163] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1319), 1, + STATE(1326), 1, sym_comment, - ACTIONS(2270), 13, + ACTIONS(2608), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143252,7 +144136,7 @@ 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(2606), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143302,12 +144186,12 @@ static const 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, + [5236] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1320), 1, + STATE(1327), 1, sym_comment, - ACTIONS(1860), 13, + ACTIONS(2612), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143321,7 +144205,7 @@ 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(2610), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143371,12 +144255,12 @@ static const 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, + [5309] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1321), 1, + STATE(1328), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2543), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143390,7 +144274,7 @@ 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(2541), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143440,12 +144324,12 @@ static const 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, + [5382] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1322), 1, + STATE(1329), 1, sym_comment, - ACTIONS(2138), 13, + ACTIONS(2519), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143459,7 +144343,7 @@ 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(2517), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143509,36 +144393,155 @@ static const 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, + [5455] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - STATE(1323), 1, + STATE(1330), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2369), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2367), 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, - 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_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, + [5528] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1331), 1, + sym_comment, + ACTIONS(2381), 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(2379), 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, - ACTIONS(2535), 8, + 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, + [5601] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1332), 1, + sym_comment, + ACTIONS(2385), 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, @@ -143547,7 +144550,7 @@ 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(2383), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143561,6 +144564,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 +144575,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 +144600,12 @@ static const 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, + [5674] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1324), 1, + STATE(1333), 1, sym_comment, - ACTIONS(2200), 13, + ACTIONS(2562), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143605,7 +144619,7 @@ 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(2560), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143655,12 +144669,12 @@ static const 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, + [5747] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1325), 1, + STATE(1334), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(2389), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143674,7 +144688,7 @@ 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(2387), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143724,12 +144738,12 @@ static const 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, + [5820] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1326), 1, + STATE(1335), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(1858), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143743,7 +144757,7 @@ 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(1856), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143793,12 +144807,12 @@ static const 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, + [5893] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1327), 1, + STATE(1336), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2537), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143812,7 +144826,7 @@ 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(2535), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143862,236 +144876,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, - [5151] = 37, + [5966] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(157), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(169), 1, - anon_sym_DOT_DOT, - ACTIONS(173), 1, - aux_sym_expr_unary_token1, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(195), 1, - sym_val_date, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(287), 1, - anon_sym_DASH2, - ACTIONS(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(1328), 1, - sym_comment, - STATE(1830), 1, - sym__val_number_decimal, - STATE(2215), 1, - sym__expr_binary_expression, - STATE(4707), 1, - sym__expression, - ACTIONS(179), 2, - 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, - [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, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - STATE(1330), 1, + STATE(1337), 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(2616), 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 +144895,7 @@ 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(2614), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144114,6 +144909,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 +144928,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,99 +144945,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5518] = 39, + [6039] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2978), 1, - anon_sym_null, - ACTIONS(2982), 1, - sym__newline, - ACTIONS(2984), 1, + ACTIONS(157), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(159), 1, anon_sym_LPAREN, - ACTIONS(2988), 1, - anon_sym_DOLLAR, - ACTIONS(2990), 1, + ACTIONS(165), 1, anon_sym_LBRACE, - ACTIONS(2992), 1, - anon_sym_DOT_DOT, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, + ACTIONS(191), 1, anon_sym_0b, - ACTIONS(3008), 1, + ACTIONS(195), 1, sym_val_date, - ACTIONS(3010), 1, + ACTIONS(197), 1, anon_sym_DQUOTE, - ACTIONS(3012), 1, + ACTIONS(199), 1, anon_sym_SQUOTE, - ACTIONS(3014), 1, + ACTIONS(201), 1, anon_sym_BQUOTE, - ACTIONS(3016), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, + ACTIONS(211), 1, sym_raw_string_begin, - STATE(1291), 1, - aux_sym__repeat_newline, - STATE(1331), 1, + ACTIONS(287), 1, + anon_sym_DASH2, + ACTIONS(1006), 1, + anon_sym_DOLLAR, + ACTIONS(2192), 1, + aux_sym_expr_unary_token1, + ACTIONS(2196), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2198), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2700), 1, + anon_sym_null, + ACTIONS(3032), 1, + anon_sym_DOT_DOT, + STATE(700), 1, + sym__val_number, + STATE(728), 1, + sym__inter_single_quotes, + STATE(729), 1, + sym__inter_double_quotes, + STATE(911), 1, + sym__expr_unary_minus, + STATE(1338), 1, sym_comment, - STATE(2444), 1, + STATE(1857), 1, sym__val_number_decimal, - STATE(2866), 1, - sym_expr_parenthesized, - STATE(2884), 1, + STATE(1958), 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, + STATE(1960), 1, + sym_expr_parenthesized, + STATE(2217), 1, + sym__expr_binary_expression, + STATE(5042), 1, + sym__expression, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2184), 2, anon_sym_true, anon_sym_false, - ACTIONS(2994), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, + ACTIONS(2200), 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, + ACTIONS(3034), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(904), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(189), 6, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3231), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3061), 12, + STATE(903), 13, sym_val_nothing, + sym_val_bool, sym_val_cellpath, sym_val_number, sym_val_duration, @@ -144247,291 +145047,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [5661] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1332), 1, - sym_comment, - ACTIONS(2539), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2537), 49, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5734] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1333), 1, - sym_comment, - ACTIONS(2617), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2615), 49, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5807] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1334), 1, - sym_comment, - ACTIONS(2090), 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(2088), 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, - [5880] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1335), 1, - sym_comment, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2535), 11, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2533), 45, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5959] = 4, + [6178] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1336), 1, + STATE(1339), 1, sym_comment, - ACTIONS(2228), 13, + ACTIONS(2431), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144545,7 +145066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2226), 49, + ACTIONS(2429), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144595,12 +145116,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6032] = 4, + [6251] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1337), 1, + STATE(1340), 1, sym_comment, - ACTIONS(2232), 13, + ACTIONS(2162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144614,7 +145135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2230), 49, + ACTIONS(2160), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144664,7 +145185,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, - [6105] = 37, + [6324] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(157), 1, @@ -144695,33 +145216,33 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(287), 1, anon_sym_DASH2, - ACTIONS(1022), 1, + ACTIONS(1006), 1, anon_sym_DOLLAR, - ACTIONS(1926), 1, + ACTIONS(2046), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1928), 1, + ACTIONS(2048), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2668), 1, + ACTIONS(2700), 1, anon_sym_null, - STATE(694), 1, + STATE(686), 1, + sym_expr_parenthesized, + STATE(700), 1, sym__val_number, - STATE(697), 1, + STATE(702), 1, sym_val_variable, - STATE(700), 1, - sym_expr_parenthesized, - STATE(743), 1, + STATE(728), 1, sym__inter_single_quotes, - STATE(744), 1, + STATE(729), 1, sym__inter_double_quotes, - STATE(945), 1, + STATE(911), 1, sym__expr_unary_minus, - STATE(1338), 1, + STATE(1341), 1, sym_comment, - STATE(1830), 1, + STATE(1832), 1, sym__val_number_decimal, - STATE(2215), 1, + STATE(2216), 1, sym__expr_binary_expression, - STATE(4718), 1, + STATE(4747), 1, sym__expression, ACTIONS(179), 2, anon_sym_DOT_DOT_EQ, @@ -144729,18 +145250,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(1904), 2, anon_sym_true, anon_sym_false, - STATE(415), 4, + ACTIONS(2050), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(424), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(944), 4, + STATE(904), 4, sym_expr_unary, sym_expr_binary, sym_val_range, @@ -144752,7 +145273,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(903), 13, sym_val_nothing, sym_val_bool, sym_val_cellpath, @@ -144766,219 +145287,12 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_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, - [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, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2238), 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, - [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, - 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, [6463] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1342), 1, sym_comment, - ACTIONS(2248), 13, + ACTIONS(2260), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144992,7 +145306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2246), 49, + ACTIONS(2258), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145047,7 +145361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1343), 1, sym_comment, - ACTIONS(2252), 13, + ACTIONS(2260), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145061,7 +145375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2250), 49, + ACTIONS(2258), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145116,7 +145430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1344), 1, sym_comment, - ACTIONS(2569), 13, + ACTIONS(2554), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145130,7 +145444,7 @@ 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(2552), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145185,7 +145499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1345), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(1890), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145199,7 +145513,7 @@ 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(1888), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145249,206 +145563,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6755] = 38, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(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(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(2680), 1, - 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(1346), 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_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, - [6895] = 42, + [6755] = 42, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1786), 1, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1802), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(1924), 1, aux_sym_unquoted_token1, - ACTIONS(2682), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2889), 1, anon_sym_null, - ACTIONS(2874), 1, + ACTIONS(2893), 1, sym__newline, - ACTIONS(2876), 1, + ACTIONS(2895), 1, anon_sym_LBRACK, - ACTIONS(2878), 1, + ACTIONS(2897), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(2899), 1, anon_sym_LBRACE, - ACTIONS(2884), 1, + ACTIONS(2903), 1, anon_sym__, - ACTIONS(2886), 1, + ACTIONS(2905), 1, anon_sym_DOT_DOT, - ACTIONS(2890), 1, + ACTIONS(2909), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2892), 1, + ACTIONS(2911), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2896), 1, + ACTIONS(2915), 1, sym_val_date, - STATE(694), 1, + STATE(700), 1, sym__val_number, - STATE(1347), 1, + STATE(1346), 1, sym_comment, - STATE(1360), 1, + STATE(1374), 1, aux_sym__ctrl_match_body_repeat1, - STATE(2241), 1, + STATE(2242), 1, aux_sym__types_body_repeat1, - STATE(3487), 1, + STATE(3495), 1, sym__val_number_decimal, - STATE(3714), 1, + STATE(3717), 1, sym_expr_parenthesized, - STATE(3715), 1, + STATE(3748), 1, sym_val_variable, - STATE(3762), 1, + STATE(3798), 1, sym__match_pattern, - STATE(4016), 1, + STATE(3999), 1, sym_val_bool, - STATE(4285), 1, + STATE(4208), 1, sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, + STATE(4214), 1, sym__match_pattern_list, - STATE(5173), 1, + STATE(4232), 1, + sym_unquoted, + STATE(5020), 1, sym_match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2868), 2, + ACTIONS(2887), 2, anon_sym_true, anon_sym_false, - ACTIONS(2888), 2, + ACTIONS(2907), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2894), 2, + ACTIONS(2913), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4299), 2, + STATE(4213), 2, sym__match_pattern_value, sym_val_range, - STATE(4549), 2, + STATE(4575), 2, sym_match_arm, sym_default_arm, - STATE(4884), 2, + STATE(5062), 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(2891), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4309), 8, + STATE(4216), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -145457,7 +145669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [7043] = 37, + [6903] = 38, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(191), 1, @@ -145466,85 +145678,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1786), 1, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1802), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(1924), 1, aux_sym_unquoted_token1, - ACTIONS(2680), 1, + ACTIONS(2738), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2740), 1, + anon_sym_COLON2, + ACTIONS(2766), 1, anon_sym_LBRACK, - ACTIONS(2682), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2684), 1, + ACTIONS(2770), 1, anon_sym_DOLLAR, - ACTIONS(2686), 1, + ACTIONS(2772), 1, anon_sym_LBRACE, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3028), 1, + ACTIONS(3038), 1, anon_sym_null, - ACTIONS(3032), 1, + ACTIONS(3042), 1, anon_sym_DOT_DOT, - ACTIONS(3040), 1, + ACTIONS(3050), 1, sym_val_date, - STATE(694), 1, + STATE(700), 1, sym__val_number, - STATE(743), 1, + STATE(728), 1, sym__inter_single_quotes, - STATE(744), 1, + STATE(729), 1, sym__inter_double_quotes, - STATE(1348), 1, + STATE(1347), 1, sym_comment, - STATE(3710), 1, + STATE(3707), 1, sym__val_number_decimal, - STATE(4207), 1, + STATE(4275), 1, sym_val_variable, - STATE(4232), 1, + STATE(4314), 1, sym_expr_parenthesized, - STATE(4677), 1, + STATE(4817), 1, sym_val_bool, - STATE(4986), 1, + STATE(4983), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3026), 2, + ACTIONS(3036), 2, anon_sym_true, anon_sym_false, - ACTIONS(3034), 2, + ACTIONS(3044), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3036), 2, + ACTIONS(3046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, + ACTIONS(3048), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4879), 2, + STATE(4982), 2, sym_val_range, sym__value, - STATE(4884), 2, + STATE(5062), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2555), 3, + ACTIONS(2636), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3030), 3, + ACTIONS(3040), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(943), 12, + STATE(903), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145557,7 +145771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7180] = 37, + [7043] = 37, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(191), 1, @@ -145566,85 +145780,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1786), 1, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1802), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(1924), 1, aux_sym_unquoted_token1, - ACTIONS(2549), 1, + ACTIONS(2630), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2680), 1, + ACTIONS(2766), 1, anon_sym_LBRACK, - ACTIONS(2682), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2684), 1, + ACTIONS(2770), 1, anon_sym_DOLLAR, - ACTIONS(2686), 1, + ACTIONS(2772), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3038), 1, anon_sym_null, - ACTIONS(3032), 1, + ACTIONS(3042), 1, anon_sym_DOT_DOT, - ACTIONS(3040), 1, + ACTIONS(3050), 1, sym_val_date, - STATE(694), 1, + STATE(700), 1, sym__val_number, - STATE(743), 1, + STATE(728), 1, sym__inter_single_quotes, - STATE(744), 1, + STATE(729), 1, sym__inter_double_quotes, - STATE(1349), 1, + STATE(1348), 1, sym_comment, - STATE(3710), 1, + STATE(3707), 1, sym__val_number_decimal, - STATE(4207), 1, + STATE(4275), 1, sym_val_variable, - STATE(4255), 1, + STATE(4314), 1, sym_expr_parenthesized, - STATE(4677), 1, + STATE(4817), 1, sym_val_bool, - STATE(4932), 1, + STATE(4983), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3026), 2, + ACTIONS(3036), 2, anon_sym_true, anon_sym_false, - ACTIONS(3034), 2, + ACTIONS(3044), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3036), 2, + ACTIONS(3046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, + ACTIONS(3048), 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(4982), 2, sym_val_range, sym__value, - ACTIONS(2555), 3, + STATE(5062), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2636), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3030), 3, + ACTIONS(3040), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(943), 12, + STATE(903), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145657,20 +145871,20 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7317] = 7, + [7180] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1350), 1, + STATE(1349), 1, sym_comment, - STATE(1357), 1, + STATE(1350), 1, aux_sym__block_body_repeat1, ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3046), 2, + ACTIONS(3056), 2, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(3042), 10, + ACTIONS(3052), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -145681,7 +145895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3054), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -145727,94 +145941,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7394] = 37, + [7257] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1390), 1, + ACTIONS(3062), 2, + sym__newline, + anon_sym_SEMI, + STATE(1350), 2, + sym_comment, + aux_sym__block_body_repeat1, + ACTIONS(3058), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOLLAR, - ACTIONS(1406), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, 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, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3060), 47, sym_raw_string_begin, - ACTIONS(1496), 1, - anon_sym_LBRACE, - ACTIONS(1578), 1, - anon_sym_LBRACK, - ACTIONS(3050), 1, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, anon_sym_null, - ACTIONS(3054), 1, - anon_sym_DOT_DOT, - ACTIONS(3058), 1, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [7330] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1400), 1, + anon_sym_DOLLAR, + ACTIONS(1416), 1, + anon_sym_0b, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1428), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(1482), 1, + anon_sym_LBRACE, + ACTIONS(1588), 1, + anon_sym_LBRACK, + ACTIONS(3067), 1, + anon_sym_null, + ACTIONS(3071), 1, + anon_sym_DOT_DOT, + ACTIONS(3075), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3060), 1, + ACTIONS(3077), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3064), 1, + ACTIONS(3081), 1, sym_val_date, - ACTIONS(3066), 1, + ACTIONS(3083), 1, aux_sym__unquoted_in_record_token1, STATE(1351), 1, sym_comment, - STATE(3418), 1, + STATE(3452), 1, sym__val_number_decimal, - STATE(3846), 1, + STATE(3884), 1, sym_val_variable, - STATE(3965), 1, + STATE(3960), 1, sym_expr_parenthesized, - STATE(4130), 1, - sym_val_bool, - STATE(4165), 1, + STATE(4099), 1, sym__val_number, - STATE(4173), 1, + STATE(4241), 1, sym__unquoted_in_record, - STATE(4452), 1, + STATE(4394), 1, + sym_val_bool, + STATE(4537), 1, sym__inter_single_quotes, - STATE(4453), 1, + STATE(4539), 1, sym__inter_double_quotes, - ACTIONS(1408), 2, + ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3048), 2, + ACTIONS(3065), 2, anon_sym_true, anon_sym_false, - ACTIONS(3056), 2, + ACTIONS(3073), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3062), 2, + ACTIONS(3079), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4485), 2, + STATE(4569), 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(3069), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4636), 3, + STATE(4676), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(3505), 4, + STATE(3594), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4536), 12, + STATE(4550), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145827,94 +146109,164 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7531] = 37, + [7467] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1390), 1, + STATE(1350), 1, + aux_sym__block_body_repeat1, + STATE(1352), 1, + sym_comment, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3085), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3052), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOLLAR, - ACTIONS(1406), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, anon_sym_0b, - ACTIONS(1412), 1, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3054), 45, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - 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, + anon_sym_CARET, + [7544] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1400), 1, + anon_sym_DOLLAR, + ACTIONS(1416), 1, + anon_sym_0b, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1428), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(1496), 1, + ACTIONS(1482), 1, anon_sym_LBRACE, - ACTIONS(1578), 1, + ACTIONS(1588), 1, anon_sym_LBRACK, - ACTIONS(3050), 1, + ACTIONS(3067), 1, anon_sym_null, - ACTIONS(3054), 1, + ACTIONS(3071), 1, anon_sym_DOT_DOT, - ACTIONS(3058), 1, + ACTIONS(3075), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3060), 1, + ACTIONS(3077), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3064), 1, + ACTIONS(3081), 1, sym_val_date, - ACTIONS(3066), 1, + ACTIONS(3083), 1, aux_sym__unquoted_in_record_token1, - STATE(1352), 1, + STATE(1353), 1, sym_comment, - STATE(3418), 1, + STATE(3452), 1, sym__val_number_decimal, - STATE(3846), 1, + STATE(3884), 1, sym_val_variable, - STATE(4005), 1, + STATE(3948), 1, sym_expr_parenthesized, - STATE(4130), 1, - sym_val_bool, - STATE(4165), 1, + STATE(4099), 1, sym__val_number, - STATE(4256), 1, + STATE(4223), 1, sym__unquoted_in_record, - STATE(4452), 1, + STATE(4394), 1, + sym_val_bool, + STATE(4537), 1, sym__inter_single_quotes, - STATE(4453), 1, + STATE(4539), 1, sym__inter_double_quotes, - ACTIONS(1408), 2, + ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3048), 2, + ACTIONS(3065), 2, anon_sym_true, anon_sym_false, - ACTIONS(3056), 2, + ACTIONS(3073), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3062), 2, + ACTIONS(3079), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4485), 2, + STATE(4569), 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(3069), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4717), 3, + STATE(4819), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(3505), 4, + STATE(3594), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4536), 12, + STATE(4550), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145927,94 +146279,94 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7668] = 37, - ACTIONS(3), 1, + [7681] = 37, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1390), 1, - anon_sym_DOLLAR, - ACTIONS(1406), 1, + ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1412), 1, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1418), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, + ACTIONS(1802), 1, sym_raw_string_begin, - ACTIONS(1496), 1, - anon_sym_LBRACE, - ACTIONS(1578), 1, + ACTIONS(1924), 1, + aux_sym_unquoted_token1, + ACTIONS(2766), 1, anon_sym_LBRACK, - ACTIONS(3050), 1, + ACTIONS(2768), 1, + anon_sym_LPAREN, + ACTIONS(2770), 1, + anon_sym_DOLLAR, + ACTIONS(2772), 1, + anon_sym_LBRACE, + ACTIONS(2950), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3038), 1, anon_sym_null, - ACTIONS(3054), 1, + ACTIONS(3042), 1, anon_sym_DOT_DOT, - ACTIONS(3058), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3060), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3064), 1, + ACTIONS(3050), 1, sym_val_date, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - STATE(1353), 1, + STATE(700), 1, + sym__val_number, + STATE(728), 1, + sym__inter_single_quotes, + STATE(729), 1, + sym__inter_double_quotes, + STATE(1354), 1, sym_comment, - STATE(3418), 1, + STATE(3707), 1, sym__val_number_decimal, - STATE(3846), 1, - sym_val_variable, - STATE(3976), 1, + STATE(4221), 1, sym_expr_parenthesized, - STATE(4130), 1, + STATE(4275), 1, + sym_val_variable, + STATE(4817), 1, sym_val_bool, - STATE(4165), 1, - sym__val_number, - STATE(4184), 1, - sym__unquoted_in_record, - STATE(4452), 1, - sym__inter_single_quotes, - STATE(4453), 1, - sym__inter_double_quotes, - ACTIONS(1408), 2, + STATE(5036), 1, + sym_unquoted, + ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3048), 2, + ACTIONS(3036), 2, anon_sym_true, anon_sym_false, - ACTIONS(3056), 2, + ACTIONS(3044), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3062), 2, + ACTIONS(3046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3048), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4485), 2, + STATE(5062), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(1404), 3, + STATE(5137), 2, + sym_val_range, + sym__value, + ACTIONS(2636), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3052), 3, + ACTIONS(3040), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4656), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(3505), 4, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4536), 12, + STATE(903), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -146027,20 +146379,20 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7805] = 7, + [7818] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1354), 1, - sym_comment, - STATE(1357), 1, + STATE(1350), 1, aux_sym__block_body_repeat1, + STATE(1355), 1, + sym_comment, ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3068), 2, + ACTIONS(3087), 2, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(3042), 10, + ACTIONS(3052), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146051,7 +146403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3054), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146097,286 +146449,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7882] = 5, + [7895] = 37, ACTIONS(3), 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(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, - 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, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + ACTIONS(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, - anon_sym_CARET, - [7955] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1356), 1, - sym_comment, - STATE(1357), 1, - aux_sym__block_body_repeat1, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3073), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3042), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - 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, + ACTIONS(1436), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - 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, + ACTIONS(1482), 1, anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(1588), 1, + anon_sym_LBRACK, + ACTIONS(3067), 1, + anon_sym_null, + ACTIONS(3071), 1, + anon_sym_DOT_DOT, + ACTIONS(3075), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3077), 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(3081), 1, sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [8032] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3079), 2, - sym__newline, - anon_sym_SEMI, - STATE(1357), 2, + ACTIONS(3083), 1, + aux_sym__unquoted_in_record_token1, + STATE(1356), 1, sym_comment, - aux_sym__block_body_repeat1, - ACTIONS(3075), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + STATE(3452), 1, + sym__val_number_decimal, + STATE(3884), 1, + sym_val_variable, + STATE(4000), 1, + sym_expr_parenthesized, + STATE(4099), 1, + sym__val_number, + STATE(4287), 1, + sym__unquoted_in_record, + STATE(4394), 1, + sym_val_bool, + STATE(4537), 1, + sym__inter_single_quotes, + STATE(4539), 1, + sym__inter_double_quotes, + ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3077), 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, + ACTIONS(3065), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, + ACTIONS(3073), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, + ACTIONS(3079), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + STATE(4569), 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, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [8105] = 6, - ACTIONS(103), 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, - 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(3082), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(3069), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_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, - [8179] = 4, + STATE(4721), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(3594), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4550), 12, + sym_val_nothing, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [8032] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1359), 1, + ACTIONS(3089), 1, + sym__newline, + STATE(1357), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(2098), 10, + ACTIONS(1931), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146387,7 +146568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2096), 49, + ACTIONS(1926), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146412,7 +146593,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_AT, @@ -146437,320 +146617,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8249] = 40, - 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, - anon_sym_null, - ACTIONS(2876), 1, - anon_sym_LBRACK, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LBRACE, - ACTIONS(2884), 1, - anon_sym__, - ACTIONS(2886), 1, - anon_sym_DOT_DOT, - ACTIONS(2890), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2892), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2896), 1, - sym_val_date, - STATE(694), 1, - sym__val_number, - STATE(1360), 1, - sym_comment, - STATE(1361), 1, - aux_sym__ctrl_match_body_repeat1, - STATE(3487), 1, - sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, - sym_val_variable, - STATE(3762), 1, - sym__match_pattern, - STATE(4016), 1, - sym_val_bool, - STATE(4285), 1, - sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, - sym__match_pattern_list, - STATE(5173), 1, - sym_match_pattern, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2868), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2888), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(2894), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4299), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4608), 2, - sym_match_arm, - sym_default_arm, - STATE(4884), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(2872), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4309), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [8391] = 39, + [8105] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3094), 1, anon_sym_null, - ACTIONS(3095), 1, - anon_sym_LBRACK, ACTIONS(3098), 1, + anon_sym_LBRACK, + ACTIONS(3100), 1, anon_sym_LPAREN, - ACTIONS(3101), 1, + ACTIONS(3102), 1, anon_sym_DOLLAR, ACTIONS(3104), 1, anon_sym_LBRACE, - ACTIONS(3107), 1, - anon_sym__, - ACTIONS(3110), 1, + ACTIONS(3106), 1, anon_sym_DOT_DOT, - ACTIONS(3116), 1, + ACTIONS(3108), 1, + anon_sym_LPAREN2, + ACTIONS(3112), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3119), 1, + ACTIONS(3114), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3128), 1, + ACTIONS(3120), 1, anon_sym_0b, - ACTIONS(3134), 1, + ACTIONS(3124), 1, sym_val_date, - ACTIONS(3137), 1, + ACTIONS(3126), 1, anon_sym_DQUOTE, - ACTIONS(3140), 1, + ACTIONS(3128), 1, anon_sym_SQUOTE, - ACTIONS(3143), 1, + ACTIONS(3130), 1, anon_sym_BQUOTE, - ACTIONS(3146), 1, + ACTIONS(3132), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3134), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3136), 1, aux_sym_unquoted_token1, - ACTIONS(3149), 1, + ACTIONS(3138), 1, sym_raw_string_begin, - STATE(694), 1, - sym__val_number, - STATE(3487), 1, + STATE(1358), 1, + sym_comment, + STATE(1843), 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, + STATE(2125), 1, sym_val_bool, - STATE(4285), 1, - sym__match_pattern_expression, - STATE(4293), 1, + STATE(2193), 1, sym_unquoted, - STATE(4302), 1, - sym__match_pattern_list, - STATE(5173), 1, - sym_match_pattern, - ACTIONS(3086), 2, + STATE(2194), 1, + sym__val_number, + STATE(2201), 1, + sym__inter_single_quotes, + STATE(2202), 1, + sym__inter_double_quotes, + ACTIONS(3092), 2, anon_sym_true, anon_sym_false, - ACTIONS(3113), 2, + ACTIONS(3110), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3122), 2, + ACTIONS(3116), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3131), 2, + ACTIONS(3122), 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, + STATE(2188), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5218), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3092), 3, + ACTIONS(3096), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3125), 3, + ACTIONS(3118), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2228), 4, + STATE(2212), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4309), 8, - sym__match_pattern_record, + STATE(2192), 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, - [8531] = 36, + sym_val_closure, + [8239] = 40, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1802), 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, + ACTIONS(1924), 1, + aux_sym_unquoted_token1, + ACTIONS(2768), 1, + anon_sym_LPAREN, + ACTIONS(2889), 1, anon_sym_null, - ACTIONS(3158), 1, + ACTIONS(2895), 1, anon_sym_LBRACK, - ACTIONS(3160), 1, - anon_sym_LPAREN, - ACTIONS(3162), 1, + ACTIONS(2897), 1, anon_sym_DOLLAR, - ACTIONS(3164), 1, + ACTIONS(2899), 1, anon_sym_LBRACE, - ACTIONS(3166), 1, + ACTIONS(2903), 1, + anon_sym__, + ACTIONS(2905), 1, anon_sym_DOT_DOT, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3172), 1, + ACTIONS(2909), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3174), 1, + ACTIONS(2911), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3178), 1, + ACTIONS(2915), 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, + STATE(700), 1, sym__val_number, - STATE(3544), 1, + STATE(1359), 1, + sym_comment, + STATE(1361), 1, + aux_sym__ctrl_match_body_repeat1, + STATE(3495), 1, sym__val_number_decimal, - STATE(4301), 1, + STATE(3717), 1, + sym_expr_parenthesized, + STATE(3748), 1, + sym_val_variable, + STATE(3798), 1, + sym__match_pattern, + STATE(3999), 1, sym_val_bool, - STATE(4466), 1, + STATE(4208), 1, + sym__match_pattern_expression, + STATE(4214), 1, + sym__match_pattern_list, + STATE(4232), 1, sym_unquoted, - ACTIONS(3006), 2, + STATE(5020), 1, + sym_match_pattern, + ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3152), 2, + ACTIONS(2887), 2, anon_sym_true, anon_sym_false, - ACTIONS(3170), 2, + ACTIONS(2907), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3176), 2, + ACTIONS(2913), 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, + STATE(4213), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4575), 2, + sym_match_arm, + sym_default_arm, + STATE(5062), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3002), 3, + ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3156), 3, + ACTIONS(2891), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3061), 13, + STATE(4216), 8, + sym__match_pattern_record, sym_val_nothing, - sym_val_variable, - sym_val_cellpath, sym_val_number, sym_val_duration, sym_val_filesize, sym_val_binary, sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, sym_val_table, - sym_val_closure, - [8665] = 7, + [8381] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3186), 1, + ACTIONS(3144), 1, sym__newline, - ACTIONS(3189), 1, + ACTIONS(3147), 1, anon_sym_SEMI, - STATE(4404), 1, + STATE(4628), 1, aux_sym__repeat_newline, - STATE(1363), 2, + STATE(1360), 2, sym_comment, aux_sym__parenthesized_body_repeat1, - ACTIONS(3182), 10, + ACTIONS(3140), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146761,7 +146840,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,161 +146886,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8741] = 8, + [8457] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2557), 1, - 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, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(3153), 1, + anon_sym_null, + ACTIONS(3159), 1, + anon_sym_LBRACK, + ACTIONS(3162), 1, + anon_sym_LPAREN, + ACTIONS(3165), 1, anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(3168), 1, + anon_sym_LBRACE, + ACTIONS(3171), 1, + anon_sym__, + ACTIONS(3174), 1, anon_sym_DOT_DOT, + ACTIONS(3180), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3183), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3192), 1, anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3194), 45, + ACTIONS(3198), 1, + sym_val_date, + ACTIONS(3201), 1, + anon_sym_DQUOTE, + ACTIONS(3204), 1, + anon_sym_SQUOTE, + ACTIONS(3207), 1, + anon_sym_BQUOTE, + ACTIONS(3210), 1, + aux_sym_unquoted_token1, + ACTIONS(3213), 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(700), 1, + sym__val_number, + STATE(3495), 1, + sym__val_number_decimal, + STATE(3717), 1, + sym_expr_parenthesized, + STATE(3748), 1, + sym_val_variable, + STATE(3798), 1, + sym__match_pattern, + STATE(3999), 1, + sym_val_bool, + STATE(4208), 1, + sym__match_pattern_expression, + STATE(4214), 1, + sym__match_pattern_list, + STATE(4232), 1, + sym_unquoted, + STATE(5020), 1, + sym_match_pattern, + ACTIONS(3150), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, + ACTIONS(3177), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, + ACTIONS(3186), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + ACTIONS(3195), 2, + anon_sym_0o, + anon_sym_0x, + STATE(1361), 2, + sym_comment, + aux_sym__ctrl_match_body_repeat1, + STATE(4213), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4804), 2, + sym_match_arm, + sym_default_arm, + STATE(5062), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3156), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [8819] = 36, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4216), 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, + [8597] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(799), 1, + ACTIONS(914), 1, anon_sym_DOLLAR, - ACTIONS(815), 1, + ACTIONS(930), 1, aux_sym__val_number_decimal_token1, - ACTIONS(821), 1, + ACTIONS(936), 1, anon_sym_0b, - ACTIONS(841), 1, + ACTIONS(956), 1, aux_sym_unquoted_token1, - ACTIONS(843), 1, + ACTIONS(958), 1, sym_raw_string_begin, - ACTIONS(3200), 1, + ACTIONS(3218), 1, anon_sym_null, - ACTIONS(3204), 1, + ACTIONS(3222), 1, anon_sym_LBRACK, - ACTIONS(3206), 1, + ACTIONS(3224), 1, anon_sym_LPAREN, - ACTIONS(3208), 1, + ACTIONS(3226), 1, anon_sym_LBRACE, - ACTIONS(3210), 1, + ACTIONS(3228), 1, anon_sym_DOT_DOT, - ACTIONS(3212), 1, + ACTIONS(3230), 1, anon_sym_LPAREN2, - ACTIONS(3216), 1, + ACTIONS(3234), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3222), 1, + ACTIONS(3240), 1, sym_val_date, - ACTIONS(3224), 1, + ACTIONS(3242), 1, anon_sym_DQUOTE, - ACTIONS(3226), 1, + ACTIONS(3244), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, + ACTIONS(3246), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, + ACTIONS(3248), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, + ACTIONS(3250), 1, anon_sym_DOLLAR_DQUOTE, - STATE(1365), 1, + STATE(1362), 1, sym_comment, - STATE(2448), 1, + STATE(2475), 1, sym__val_number_decimal, - STATE(2695), 1, + STATE(2871), 1, sym_val_bool, - STATE(2956), 1, + STATE(3140), 1, sym_unquoted, - STATE(3023), 1, - sym__val_number, - STATE(3063), 1, + STATE(3155), 1, sym__inter_single_quotes, - STATE(3066), 1, + STATE(3156), 1, sym__inter_double_quotes, - ACTIONS(823), 2, + STATE(3207), 1, + sym__val_number, + ACTIONS(938), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3198), 2, + ACTIONS(3216), 2, anon_sym_true, anon_sym_false, - ACTIONS(3214), 2, + ACTIONS(3232), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3218), 2, + ACTIONS(3236), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3060), 2, + STATE(3138), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(4992), 2, + STATE(4924), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3202), 3, + ACTIONS(3220), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3220), 3, + ACTIONS(3238), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2454), 4, + STATE(2501), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3021), 13, + STATE(3205), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -146975,12 +147085,20 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8953] = 4, + [8731] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1366), 1, + ACTIONS(2638), 1, + sym__newline, + ACTIONS(3256), 1, + anon_sym_SEMI, + STATE(1360), 1, + aux_sym__parenthesized_body_repeat1, + STATE(1363), 1, sym_comment, - ACTIONS(3084), 10, + STATE(1381), 1, + aux_sym__repeat_newline, + ACTIONS(3252), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146991,7 +147109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3082), 49, + ACTIONS(3254), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147016,14 +147134,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147041,19 +147155,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9023] = 7, - ACTIONS(3), 1, + [8809] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3068), 1, - ts_builtin_sym_end, - STATE(1367), 1, - sym_comment, - STATE(1370), 1, - aux_sym__block_body_repeat1, - ACTIONS(55), 2, + ACTIONS(2144), 1, + anon_sym_POUND_BANG, + ACTIONS(2927), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(3042), 10, + STATE(1364), 1, + sym_comment, + ACTIONS(3260), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147064,8 +147175,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3258), 47, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147089,6 +147201,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -147110,19 +147223,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9099] = 7, + [8883] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3073), 1, + ACTIONS(3056), 1, ts_builtin_sym_end, - STATE(1368), 1, + STATE(1365), 1, sym_comment, - STATE(1370), 1, + STATE(1366), 1, aux_sym__block_body_repeat1, ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3042), 10, + ACTIONS(3052), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147133,7 +147246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3054), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147179,14 +147292,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9175] = 5, + [8959] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2096), 1, - anon_sym_PIPE, - STATE(1369), 1, + ACTIONS(3262), 2, + sym__newline, + anon_sym_SEMI, + STATE(1366), 2, sym_comment, - ACTIONS(2935), 10, + aux_sym__block_body_repeat1, + ACTIONS(3058), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147197,8 +147312,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2932), 48, + ACTIONS(3060), 46, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147222,13 +147338,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, @@ -147246,16 +147359,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9247] = 5, + [9031] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3234), 2, + ACTIONS(3085), 1, + ts_builtin_sym_end, + STATE(1366), 1, + aux_sym__block_body_repeat1, + STATE(1367), 1, + sym_comment, + ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - STATE(1370), 2, - sym_comment, - aux_sym__block_body_repeat1, - ACTIONS(3075), 10, + ACTIONS(3052), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147266,9 +147382,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3077), 46, + ACTIONS(3054), 45, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147313,19 +147428,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9319] = 7, + [9107] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3046), 1, + ACTIONS(3087), 1, ts_builtin_sym_end, - STATE(1370), 1, + STATE(1366), 1, aux_sym__block_body_repeat1, - STATE(1371), 1, + STATE(1368), 1, sym_comment, ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3042), 10, + ACTIONS(3052), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147336,7 +147451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3054), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147382,193 +147497,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9395] = 40, + [9183] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(810), 1, + anon_sym_DOLLAR, + ACTIONS(832), 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, + ACTIONS(854), 1, aux_sym_unquoted_token1, - ACTIONS(2682), 1, - anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(856), 1, + sym_raw_string_begin, + ACTIONS(1250), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3267), 1, anon_sym_null, - ACTIONS(2876), 1, + ACTIONS(3271), 1, anon_sym_LBRACK, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(3273), 1, + anon_sym_LPAREN, + ACTIONS(3275), 1, anon_sym_LBRACE, - ACTIONS(2884), 1, - anon_sym__, - ACTIONS(2886), 1, + ACTIONS(3277), 1, anon_sym_DOT_DOT, - ACTIONS(2890), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2892), 1, + ACTIONS(3279), 1, + anon_sym_LPAREN2, + ACTIONS(3283), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2896), 1, + ACTIONS(3289), 1, sym_val_date, - STATE(694), 1, - sym__val_number, - STATE(1361), 1, - aux_sym__ctrl_match_body_repeat1, - STATE(1372), 1, + ACTIONS(3291), 1, + anon_sym_DQUOTE, + ACTIONS(3293), 1, + anon_sym_SQUOTE, + ACTIONS(3295), 1, + anon_sym_BQUOTE, + ACTIONS(3297), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3299), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(1369), 1, sym_comment, - STATE(3487), 1, + STATE(3048), 1, + sym_unquoted, + STATE(3061), 1, + sym__val_number, + STATE(3082), 1, + sym__inter_single_quotes, + STATE(3083), 1, + sym__inter_double_quotes, + STATE(3550), 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, + STATE(3946), 1, sym_val_bool, - STATE(4285), 1, - sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, - sym__match_pattern_list, - STATE(5173), 1, - sym_match_pattern, - ACTIONS(193), 2, + ACTIONS(834), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2868), 2, + ACTIONS(3265), 2, anon_sym_true, anon_sym_false, - ACTIONS(2888), 2, + ACTIONS(3281), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2894), 2, + ACTIONS(3285), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4299), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4549), 2, - sym_match_arm, - sym_default_arm, - STATE(4884), 2, + STATE(3047), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5041), 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(3269), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + ACTIONS(3287), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2455), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4309), 8, - sym__match_pattern_record, + STATE(3058), 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_table, - [9537] = 36, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [9317] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(914), 1, + ACTIONS(810), 1, anon_sym_DOLLAR, - ACTIONS(930), 1, + ACTIONS(826), 1, aux_sym__val_number_decimal_token1, - ACTIONS(936), 1, + ACTIONS(832), 1, anon_sym_0b, - ACTIONS(956), 1, + ACTIONS(854), 1, aux_sym_unquoted_token1, - ACTIONS(958), 1, + ACTIONS(856), 1, sym_raw_string_begin, - ACTIONS(3239), 1, - anon_sym_null, - ACTIONS(3243), 1, + ACTIONS(3271), 1, anon_sym_LBRACK, - ACTIONS(3245), 1, + ACTIONS(3273), 1, anon_sym_LPAREN, - ACTIONS(3247), 1, + ACTIONS(3275), 1, anon_sym_LBRACE, - ACTIONS(3249), 1, + ACTIONS(3277), 1, anon_sym_DOT_DOT, - ACTIONS(3251), 1, + ACTIONS(3279), 1, anon_sym_LPAREN2, - ACTIONS(3255), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3261), 1, - sym_val_date, - ACTIONS(3263), 1, + ACTIONS(3291), 1, anon_sym_DQUOTE, - ACTIONS(3265), 1, + ACTIONS(3293), 1, anon_sym_SQUOTE, - ACTIONS(3267), 1, + ACTIONS(3295), 1, anon_sym_BQUOTE, - ACTIONS(3269), 1, + ACTIONS(3297), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3271), 1, + ACTIONS(3299), 1, anon_sym_DOLLAR_DQUOTE, - STATE(1373), 1, + ACTIONS(3303), 1, + anon_sym_null, + ACTIONS(3307), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3311), 1, + sym_val_date, + STATE(1370), 1, sym_comment, - STATE(2469), 1, + STATE(2430), 1, sym__val_number_decimal, - STATE(2876), 1, + STATE(2767), 1, sym_val_bool, - STATE(3091), 1, - sym__inter_single_quotes, - STATE(3098), 1, - sym__inter_double_quotes, - STATE(3152), 1, + STATE(3048), 1, sym_unquoted, - STATE(3203), 1, + STATE(3061), 1, sym__val_number, - ACTIONS(938), 2, + STATE(3082), 1, + sym__inter_single_quotes, + STATE(3083), 1, + sym__inter_double_quotes, + ACTIONS(834), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3237), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3253), 2, + ACTIONS(3281), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3257), 2, + ACTIONS(3301), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3309), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3147), 2, + STATE(3047), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(4851), 2, + STATE(5041), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3241), 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, + ACTIONS(3305), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2455), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3180), 13, + STATE(3058), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -147582,189 +147693,392 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9671] = 36, + [9451] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(799), 1, + ACTIONS(2144), 1, + anon_sym_PIPE, + STATE(1371), 1, + sym_comment, + ACTIONS(2930), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOLLAR, - ACTIONS(821), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, anon_sym_0b, - ACTIONS(841), 1, - aux_sym_unquoted_token1, - ACTIONS(843), 1, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2927), 48, sym_raw_string_begin, - ACTIONS(1240), 1, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [9523] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1372), 1, + sym_comment, + ACTIONS(3260), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(3204), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3258), 49, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + 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, - ACTIONS(3206), 1, anon_sym_LPAREN, - ACTIONS(3208), 1, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(3210), 1, + anon_sym_RBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [9593] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1373), 1, + sym_comment, + ACTIONS(2146), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3224), 1, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2144), 49, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3226), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3275), 1, + anon_sym_CARET, + [9663] = 40, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(1924), 1, + aux_sym_unquoted_token1, + ACTIONS(2768), 1, + anon_sym_LPAREN, + ACTIONS(2889), 1, anon_sym_null, - ACTIONS(3279), 1, + ACTIONS(2895), 1, + anon_sym_LBRACK, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + ACTIONS(2899), 1, + anon_sym_LBRACE, + ACTIONS(2903), 1, + anon_sym__, + ACTIONS(2905), 1, + anon_sym_DOT_DOT, + ACTIONS(2909), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2911), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, + ACTIONS(2915), 1, sym_val_date, + STATE(700), 1, + sym__val_number, + STATE(1361), 1, + aux_sym__ctrl_match_body_repeat1, STATE(1374), 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(3495), 1, sym__val_number_decimal, - STATE(3941), 1, + STATE(3717), 1, + sym_expr_parenthesized, + STATE(3748), 1, + sym_val_variable, + STATE(3798), 1, + sym__match_pattern, + STATE(3999), 1, sym_val_bool, - ACTIONS(823), 2, + STATE(4208), 1, + sym__match_pattern_expression, + STATE(4214), 1, + sym__match_pattern_list, + STATE(4232), 1, + sym_unquoted, + STATE(5020), 1, + sym_match_pattern, + ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3214), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3273), 2, + ACTIONS(2887), 2, anon_sym_true, anon_sym_false, - ACTIONS(3281), 2, + ACTIONS(2907), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2913), 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, + STATE(4213), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4572), 2, + sym_match_arm, + sym_default_arm, + STATE(5062), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3220), 3, + ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3277), 3, + ACTIONS(2891), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2454), 4, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3021), 13, + STATE(4216), 8, + sym__match_pattern_record, sym_val_nothing, - sym_val_variable, - sym_val_cellpath, sym_val_number, sym_val_duration, sym_val_filesize, sym_val_binary, sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, sym_val_table, - sym_val_closure, [9805] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3287), 1, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(3010), 1, + anon_sym_0b, + ACTIONS(3022), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3024), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3315), 1, anon_sym_null, - ACTIONS(3291), 1, + ACTIONS(3319), 1, anon_sym_LBRACK, - ACTIONS(3293), 1, + ACTIONS(3321), 1, anon_sym_LPAREN, - ACTIONS(3295), 1, + ACTIONS(3323), 1, anon_sym_DOLLAR, - ACTIONS(3297), 1, + ACTIONS(3325), 1, anon_sym_LBRACE, - ACTIONS(3299), 1, + ACTIONS(3327), 1, anon_sym_DOT_DOT, - ACTIONS(3301), 1, + ACTIONS(3329), 1, anon_sym_LPAREN2, - ACTIONS(3305), 1, + ACTIONS(3333), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3307), 1, + ACTIONS(3335), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3313), 1, - anon_sym_0b, - ACTIONS(3317), 1, + ACTIONS(3339), 1, 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, + ACTIONS(3341), 1, aux_sym_unquoted_token1, - ACTIONS(3331), 1, - sym_raw_string_begin, STATE(1375), 1, sym_comment, - STATE(1841), 1, + STATE(3075), 1, + sym__val_number, + STATE(3085), 1, + sym__inter_single_quotes, + STATE(3086), 1, + sym__inter_double_quotes, + STATE(3555), 1, sym__val_number_decimal, - STATE(2116), 1, + STATE(4144), 1, sym_val_bool, - STATE(2168), 1, - sym__inter_single_quotes, - STATE(2176), 1, + STATE(4426), 1, sym_unquoted, - STATE(2178), 1, - sym__val_number, - STATE(2179), 1, - sym__inter_double_quotes, - ACTIONS(3285), 2, + ACTIONS(3012), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3313), 2, anon_sym_true, anon_sym_false, - ACTIONS(3303), 2, + ACTIONS(3331), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3309), 2, + ACTIONS(3337), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3315), 2, - anon_sym_0o, - anon_sym_0x, - STATE(2174), 2, + STATE(4646), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5050), 2, + STATE(4949), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3289), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3311), 3, + ACTIONS(3008), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2160), 4, + ACTIONS(3317), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2171), 13, + STATE(3073), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -147783,7 +148097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1376), 1, sym_comment, - ACTIONS(3335), 10, + ACTIONS(3343), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147794,9 +148108,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3333), 48, + ACTIONS(3345), 48, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147826,6 +148139,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 +148157,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10008] = 4, + [10008] = 12, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(3347), 1, + anon_sym_DOT, STATE(1377), 1, sym_comment, - ACTIONS(3339), 10, + STATE(1438), 1, + sym__immediate_decimal, + ACTIONS(3349), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3351), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(690), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1603), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1599), 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, + [10093] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1378), 1, + sym_comment, + ACTIONS(3353), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147859,9 +148246,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3337), 48, + ACTIONS(3355), 48, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147891,6 +148277,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, @@ -147908,12 +148295,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10077] = 4, + [10162] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1378), 1, + STATE(1379), 1, sym_comment, - ACTIONS(3341), 10, + ACTIONS(3260), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147924,8 +148311,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3343), 48, + ACTIONS(3258), 48, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147955,7 +148343,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, @@ -147973,85 +148360,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10146] = 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(3345), 1, - anon_sym_DOT, - STATE(1379), 1, - sym_comment, - STATE(1434), 1, - sym__immediate_decimal, - ACTIONS(3347), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3349), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(698), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 41, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, [10231] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1380), 1, sym_comment, - ACTIONS(3084), 10, + ACTIONS(3357), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148062,9 +148376,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3082), 48, + ACTIONS(3359), 48, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148094,6 +148407,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, @@ -148111,17 +148425,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10300] = 6, + [10300] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3082), 1, - anon_sym_RPAREN, - STATE(1381), 1, - sym_comment, - ACTIONS(3355), 2, + ACTIONS(2638), 1, sym__newline, + ACTIONS(3365), 1, anon_sym_SEMI, - ACTIONS(3351), 10, + STATE(1357), 1, + aux_sym__repeat_newline, + STATE(1381), 1, + sym_comment, + ACTIONS(3361), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148132,7 +148447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3353), 45, + ACTIONS(3363), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148178,17 +148493,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10373] = 6, + [10375] = 4, 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, + ACTIONS(3369), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148199,8 +148509,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3367), 48, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148224,6 +148535,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -148245,18 +148558,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10446] = 7, + [10444] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2557), 1, - sym__newline, - ACTIONS(3362), 1, - anon_sym_SEMI, - STATE(1355), 1, - aux_sym__repeat_newline, + STATE(1350), 1, + aux_sym__block_body_repeat1, STATE(1383), 1, sym_comment, - ACTIONS(3358), 10, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3052), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148267,7 +148579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3360), 45, + ACTIONS(3054), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148313,12 +148625,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10521] = 4, + [10517] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1384), 1, sym_comment, - ACTIONS(3364), 10, + ACTIONS(3373), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148329,8 +148641,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3366), 48, + ACTIONS(3371), 48, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148360,7 +148673,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, @@ -148378,12 +148690,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10590] = 4, + [10586] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3258), 1, + anon_sym_RPAREN, STATE(1385), 1, sym_comment, - ACTIONS(3368), 10, + ACTIONS(3379), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3375), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148394,7 +148711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3370), 48, + ACTIONS(3377), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148419,13 +148736,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, @@ -148448,33 +148762,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(1615), 1, sym__unquoted_pattern, - ACTIONS(1649), 1, - anon_sym_DOLLAR, ACTIONS(1651), 1, + anon_sym_DOLLAR, + ACTIONS(1653), 1, anon_sym_LPAREN2, - ACTIONS(3372), 1, + ACTIONS(3382), 1, anon_sym_DOT, STATE(1386), 1, sym_comment, - STATE(1443), 1, + STATE(1448), 1, sym__immediate_decimal, - ACTIONS(3374), 2, + ACTIONS(3384), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3376), 2, + ACTIONS(3386), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(929), 2, + STATE(958), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1603), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 40, + ACTIONS(1599), 40, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -148518,33 +148832,33 @@ static const uint16_t ts_small_parse_table[] = { [10743] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, ACTIONS(1615), 1, sym__unquoted_pattern, STATE(1387), 1, sym_comment, - STATE(1486), 1, + STATE(1464), 1, sym__immediate_decimal, - ACTIONS(3378), 2, + ACTIONS(3388), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3380), 2, + ACTIONS(3390), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(723), 2, + STATE(780), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1603), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 41, + ACTIONS(1599), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -148586,36 +148900,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10825] = 11, + [10825] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + STATE(1388), 1, + sym_comment, + ACTIONS(3375), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOLLAR, - ACTIONS(1588), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3377), 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, + [10893] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1639), 1, + ACTIONS(1691), 1, sym__unquoted_pattern, - STATE(1388), 1, + STATE(1389), 1, sym_comment, - STATE(1471), 1, + STATE(1475), 1, sym__immediate_decimal, - ACTIONS(3378), 2, + ACTIONS(3388), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3380), 2, + ACTIONS(3390), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(726), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1679), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 41, + ACTIONS(1677), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -148657,12 +149035,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10907] = 4, + [10975] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1389), 1, + STATE(1390), 1, sym_comment, - ACTIONS(3182), 10, + ACTIONS(3140), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148673,7 +149051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3184), 47, + ACTIONS(3142), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148721,38 +149099,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10975] = 13, + [11043] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3388), 1, + ACTIONS(3398), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3395), 1, + ACTIONS(3405), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3398), 1, + ACTIONS(3408), 1, aux_sym__val_number_decimal_token2, - STATE(2103), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(4391), 1, + STATE(4803), 1, sym_env_var, - STATE(4838), 1, + STATE(5131), 1, sym_cmd_identifier, - ACTIONS(3382), 2, + ACTIONS(3392), 2, anon_sym_export, anon_sym_in, - ACTIONS(3401), 2, + ACTIONS(3411), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(1390), 2, + STATE(1391), 2, sym_comment, - aux_sym_pipe_element_parenthesized_repeat2, - ACTIONS(3393), 6, + aux_sym_pipe_element_repeat2, + ACTIONS(3403), 6, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3391), 17, + ACTIONS(3401), 17, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -148770,48 +149148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - ACTIONS(3385), 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, - [11061] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1391), 1, - sym_comment, - ACTIONS(3351), 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(3353), 47, - sym_raw_string_begin, + ACTIONS(3395), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148835,61 +149172,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, [11129] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3410), 1, + ACTIONS(3420), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3417), 1, + ACTIONS(3427), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3420), 1, + ACTIONS(3430), 1, aux_sym__val_number_decimal_token2, - STATE(2103), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(4759), 1, + STATE(4458), 1, sym_env_var, - STATE(4838), 1, + STATE(5131), 1, sym_cmd_identifier, - ACTIONS(3404), 2, + ACTIONS(3414), 2, anon_sym_export, anon_sym_in, - ACTIONS(3423), 2, + ACTIONS(3433), 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, + aux_sym_pipe_element_parenthesized_repeat2, + ACTIONS(3425), 6, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3413), 17, + ACTIONS(3423), 17, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -148907,7 +149221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - ACTIONS(3407), 23, + ACTIONS(3417), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148931,207 +149245,19 @@ static const uint16_t ts_small_parse_table[] = { 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, + [11215] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3442), 1, + ACTIONS(3438), 1, sym__newline, - ACTIONS(3445), 1, + ACTIONS(3441), 1, sym__space, - ACTIONS(3448), 1, + ACTIONS(3444), 1, sym_raw_string_begin, - STATE(1395), 2, + STATE(1393), 2, sym_comment, aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(3440), 52, + ACTIONS(3436), 52, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -149184,37 +149310,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11544] = 11, + [11286] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - STATE(1396), 1, - sym_comment, - STATE(1504), 1, - sym__immediate_decimal, - ACTIONS(3450), 2, + ACTIONS(3446), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3452), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1343), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(3448), 1, + aux_sym__immediate_decimal_token5, + STATE(1394), 1, + sym_comment, + ACTIONS(739), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 40, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(741), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149227,6 +149341,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -149245,6 +149362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -149254,37 +149372,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11625] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [11357] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - STATE(1397), 1, + ACTIONS(3450), 1, + anon_sym_DOT, + ACTIONS(3452), 1, + aux_sym__immediate_decimal_token5, + STATE(1395), 1, sym_comment, - STATE(1505), 1, - sym__immediate_decimal, - ACTIONS(3450), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3452), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1311), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(747), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 40, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149297,6 +149406,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -149315,6 +149427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -149324,20 +149437,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11706] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [11428] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3391), 1, + ACTIONS(3423), 1, sym_raw_string_begin, ACTIONS(3454), 1, sym__newline, ACTIONS(3456), 1, sym__space, - STATE(1395), 1, + STATE(1393), 1, aux_sym_pipe_element_parenthesized_repeat1, - STATE(1398), 1, + STATE(1396), 1, sym_comment, - ACTIONS(3393), 52, + ACTIONS(3425), 52, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -149390,117 +149506,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11779] = 33, + [11501] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1386), 1, + anon_sym_null, + ACTIONS(1396), 1, anon_sym_LPAREN, - ACTIONS(1390), 1, - anon_sym_DOLLAR, - ACTIONS(1406), 1, + 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(1412), 1, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1424), 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, + anon_sym_BQUOTE, + ACTIONS(1434), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1436), 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, + ACTIONS(1572), 1, anon_sym_DOT_DOT, - ACTIONS(3434), 1, + ACTIONS(2732), 1, + anon_sym_DOLLAR, + ACTIONS(2734), 1, + anon_sym_LBRACE, + ACTIONS(2736), 1, sym_val_date, - STATE(1399), 1, + ACTIONS(3458), 1, + sym__newline, + ACTIONS(3460), 1, + anon_sym_LBRACK, + STATE(1397), 1, sym_comment, - STATE(3676), 1, + STATE(1415), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(2251), 1, + aux_sym__types_body_repeat1, + STATE(3552), 1, sym__val_number_decimal, - STATE(3846), 1, - sym_val_variable, - STATE(4033), 1, + STATE(3791), 1, sym_expr_parenthesized, - STATE(4165), 1, + STATE(3792), 1, + sym_val_variable, + STATE(4099), 1, sym__val_number, - STATE(4452), 1, - sym__inter_single_quotes, - STATE(4453), 1, - sym__inter_double_quotes, - STATE(4761), 1, - sym_block, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1482), 2, + STATE(4146), 1, + sym_val_bool, + STATE(4454), 1, + sym__match_pattern_list, + ACTIONS(1384), 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, + ACTIONS(1406), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4765), 2, + 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(4328), 2, + sym__match_pattern_expression, + sym__unquoted_in_list, + STATE(4441), 2, + sym__match_pattern_value, 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, + STATE(5087), 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(4536), 13, + STATE(3594), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4455), 8, + sym__match_pattern_record, sym_val_nothing, - sym_val_bool, - sym_val_cellpath, sym_val_number, sym_val_duration, sym_val_filesize, sym_val_binary, sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, sym_val_table, - sym_val_closure, - [11904] = 6, + [11634] = 33, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3458), 1, - anon_sym_DOT, - ACTIONS(3460), 1, - aux_sym__immediate_decimal_token5, - STATE(1400), 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, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1400), 1, + anon_sym_DOLLAR, + ACTIONS(1416), 1, + anon_sym_0b, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1428), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(1488), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1490), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1588), 1, + anon_sym_LBRACK, + ACTIONS(3462), 1, + anon_sym_null, + ACTIONS(3464), 1, + anon_sym_LBRACE, + ACTIONS(3466), 1, + anon_sym_DOT_DOT, + ACTIONS(3470), 1, + sym_val_date, + STATE(1398), 1, + sym_comment, + STATE(3665), 1, + sym__val_number_decimal, + STATE(3884), 1, + sym_val_variable, + STATE(4043), 1, + sym_expr_parenthesized, + STATE(4099), 1, + sym__val_number, + STATE(4537), 1, + sym__inter_single_quotes, + STATE(4539), 1, + sym__inter_double_quotes, + STATE(4789), 1, + sym_block, + ACTIONS(1418), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1468), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1492), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3468), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4791), 2, + sym_val_range, + sym__value, + STATE(3594), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1414), 6, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(4550), 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, + [11759] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1615), 1, sym__unquoted_pattern, - ACTIONS(741), 46, + ACTIONS(1651), 1, + anon_sym_DOLLAR, + ACTIONS(1653), 1, + anon_sym_LPAREN2, + STATE(1399), 1, + sym_comment, + STATE(1507), 1, + sym__immediate_decimal, + ACTIONS(3472), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3474), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1294), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1603), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1599), 40, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149513,9 +149737,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 +149755,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,28 +149764,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [11975] = 6, + [11840] = 33, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1400), 1, + anon_sym_DOLLAR, + ACTIONS(1416), 1, + anon_sym_0b, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1428), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(1488), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1490), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1588), 1, + anon_sym_LBRACK, ACTIONS(3462), 1, - aux_sym__immediate_decimal_token1, + anon_sym_null, ACTIONS(3464), 1, - aux_sym__immediate_decimal_token5, + anon_sym_LBRACE, + ACTIONS(3466), 1, + anon_sym_DOT_DOT, + ACTIONS(3470), 1, + sym_val_date, + STATE(1400), 1, + sym_comment, + STATE(3665), 1, + sym__val_number_decimal, + STATE(3884), 1, + sym_val_variable, + STATE(4040), 1, + sym_expr_parenthesized, + STATE(4099), 1, + sym__val_number, + STATE(4537), 1, + sym__inter_single_quotes, + STATE(4539), 1, + sym__inter_double_quotes, + STATE(4785), 1, + sym_block, + ACTIONS(1418), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1468), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1492), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3468), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4787), 2, + sym_val_range, + sym__value, + STATE(3594), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1414), 6, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(4550), 13, + sym_val_nothing, + sym_val_bool, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [11965] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1651), 1, + anon_sym_DOLLAR, + ACTIONS(1653), 1, + anon_sym_LPAREN2, + ACTIONS(1691), 1, + sym__unquoted_pattern, STATE(1401), 1, sym_comment, - ACTIONS(747), 8, + STATE(1489), 1, + sym__immediate_decimal, + ACTIONS(3472), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3474), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1302), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1679), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 46, + ACTIONS(1677), 40, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149578,9 +149899,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, @@ -149599,7 +149917,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, @@ -149609,19 +149926,78 @@ 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, [12046] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3401), 1, + sym_raw_string_begin, + ACTIONS(3476), 1, + sym__space, + STATE(1402), 1, + sym_comment, + STATE(1410), 1, + aux_sym_pipe_element_repeat1, + ACTIONS(3403), 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, + [12116] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3466), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3468), 1, + ACTIONS(3478), 1, aux_sym__immediate_decimal_token5, - STATE(1402), 1, + STATE(1403), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(763), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -149630,8 +150006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 45, - ts_builtin_sym_end, + ACTIONS(765), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149644,7 +150019,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, @@ -149676,14 +150053,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12116] = 5, + [12184] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3470), 1, + ACTIONS(3452), 1, aux_sym__immediate_decimal_token5, - STATE(1403), 1, + STATE(1404), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -149692,7 +150069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 46, + ACTIONS(749), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149739,78 +150116,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12184] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3474), 1, - sym__space, - ACTIONS(3477), 1, - sym_raw_string_begin, - STATE(1404), 2, - sym_comment, - aux_sym_pipe_element_repeat1, - ACTIONS(3472), 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, [12252] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3479), 1, + ACTIONS(3480), 1, sym__newline, STATE(1405), 2, aux_sym__repeat_newline, sym_comment, - ACTIONS(1960), 10, + ACTIONS(1931), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149821,7 +150135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1955), 43, + ACTIONS(1926), 43, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -149865,33 +150179,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12320] = 11, + [12320] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3483), 1, + anon_sym_DOT, + ACTIONS(3485), 1, + aux_sym__immediate_decimal_token5, + 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, + 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, + [12390] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1766), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1776), 1, sym__unquoted_pattern, - ACTIONS(3482), 1, + ACTIONS(3487), 1, anon_sym_DOT_DOT2, - ACTIONS(3486), 1, + ACTIONS(3491), 1, sym_filesize_unit, - ACTIONS(3488), 1, + ACTIONS(3493), 1, sym_duration_unit, - STATE(1406), 1, + STATE(1407), 1, sym_comment, - STATE(4739), 1, + STATE(4712), 1, sym__expr_parenthesized_immediate, - ACTIONS(3484), 2, + ACTIONS(3489), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, + ACTIONS(858), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 42, + ACTIONS(884), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149934,76 +150312,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [12400] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(3490), 1, - sym__space, - STATE(1404), 1, - aux_sym_pipe_element_repeat1, - STATE(1407), 1, - sym_comment, - ACTIONS(3415), 52, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, [12470] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3494), 1, + ACTIONS(3495), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3497), 1, aux_sym__immediate_decimal_token5, STATE(1408), 1, sym_comment, @@ -150067,10 +150381,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1409), 1, sym_comment, - ACTIONS(3496), 2, + ACTIONS(3499), 2, sym_raw_string_begin, sym__space, - ACTIONS(858), 53, + ACTIONS(850), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -150125,77 +150439,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, [12606] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3460), 1, - aux_sym__immediate_decimal_token5, - STATE(1410), 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), 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, - [12674] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(1411), 1, - sym_comment, - ACTIONS(3500), 2, - sym_raw_string_begin, + ACTIONS(3503), 1, sym__space, - ACTIONS(3498), 52, + ACTIONS(3506), 1, + sym_raw_string_begin, + STATE(1410), 2, + sym_comment, + aux_sym_pipe_element_repeat1, + ACTIONS(3501), 52, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -150248,115 +150501,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12739] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3505), 1, - anon_sym_null, - ACTIONS(3511), 1, - anon_sym_LBRACK, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3517), 1, - anon_sym_DOLLAR, - ACTIONS(3520), 1, - anon_sym_LBRACE, - ACTIONS(3523), 1, - anon_sym_DOT_DOT, - ACTIONS(3529), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3532), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3541), 1, - anon_sym_0b, - ACTIONS(3547), 1, - sym_val_date, - ACTIONS(3550), 1, - anon_sym_DQUOTE, - ACTIONS(3553), 1, - anon_sym_SQUOTE, - ACTIONS(3556), 1, - anon_sym_BQUOTE, - ACTIONS(3559), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3562), 1, - sym_raw_string_begin, - STATE(3672), 1, - sym__val_number_decimal, - STATE(4165), 1, - sym__val_number, - STATE(4191), 1, - sym_expr_parenthesized, - STATE(4192), 1, - sym_val_variable, - STATE(4516), 1, - sym__match_pattern_list, - STATE(4685), 1, - sym_val_bool, - ACTIONS(3502), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3526), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3535), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3544), 2, - anon_sym_0o, - anon_sym_0x, - STATE(1412), 2, - sym_comment, - aux_sym__match_pattern_list_body_repeat1, - STATE(4515), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4732), 2, - sym__match_pattern_expression, - sym__unquoted_in_list, - STATE(4853), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3508), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3538), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4517), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [12864] = 5, + [12674] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3565), 1, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, aux_sym__immediate_decimal_token5, - STATE(1413), 1, + STATE(1411), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(1756), 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, - ts_builtin_sym_end, + ACTIONS(1754), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150369,7 +150531,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, @@ -150400,25 +150564,21 @@ 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, - [12931] = 6, + [12743] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3567), 1, - anon_sym_DOT, - ACTIONS(3569), 1, - aux_sym__immediate_decimal_token5, - STATE(1414), 1, + STATE(1412), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1736), 45, + ACTIONS(741), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150464,33 +150624,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13000] = 11, + sym_duration_unit, + [12808] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1766), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, + ACTIONS(1828), 1, sym__unquoted_pattern, - ACTIONS(3571), 1, + ACTIONS(3512), 1, anon_sym_DOT_DOT2, - ACTIONS(3575), 1, + ACTIONS(3516), 1, sym_filesize_unit, - ACTIONS(3577), 1, + ACTIONS(3518), 1, sym_duration_unit, - STATE(1415), 1, + STATE(1413), 1, sym_comment, - STATE(4775), 1, + STATE(4762), 1, sym__expr_parenthesized_immediate, - ACTIONS(3573), 2, + ACTIONS(3514), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, + ACTIONS(858), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 41, + ACTIONS(884), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -150532,12 +150693,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [13079] = 4, + [12887] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1416), 1, + STATE(1414), 1, sym_comment, - ACTIONS(2098), 10, + ACTIONS(2146), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150548,7 +150709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2096), 44, + ACTIONS(2144), 44, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -150593,91 +150754,397 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [13144] = 36, + [12952] = 36, + 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(1572), 1, + anon_sym_DOT_DOT, + ACTIONS(2732), 1, + anon_sym_DOLLAR, + ACTIONS(2734), 1, + anon_sym_LBRACE, + ACTIONS(2736), 1, + sym_val_date, + ACTIONS(3460), 1, + anon_sym_LBRACK, + STATE(1415), 1, + sym_comment, + STATE(1418), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(3552), 1, + sym__val_number_decimal, + STATE(3791), 1, + sym_expr_parenthesized, + STATE(3792), 1, + sym_val_variable, + STATE(4099), 1, + sym__val_number, + STATE(4104), 1, + sym__match_pattern_expression, + STATE(4105), 1, + sym__unquoted_in_list, + STATE(4146), 1, + sym_val_bool, + STATE(4454), 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(4441), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5087), 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(3594), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4455), 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, + [13081] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1416), 1, + sym_comment, + ACTIONS(763), 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(765), 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, + [13146] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1417), 1, + sym_comment, + ACTIONS(789), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(791), 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, + [13211] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3523), 1, + anon_sym_null, + ACTIONS(3529), 1, + anon_sym_LBRACK, + ACTIONS(3532), 1, + anon_sym_LPAREN, + ACTIONS(3535), 1, + anon_sym_DOLLAR, + ACTIONS(3538), 1, + anon_sym_LBRACE, + ACTIONS(3541), 1, + anon_sym_DOT_DOT, + ACTIONS(3547), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3550), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3559), 1, + anon_sym_0b, + ACTIONS(3565), 1, + sym_val_date, + ACTIONS(3568), 1, + anon_sym_DQUOTE, + ACTIONS(3571), 1, + anon_sym_SQUOTE, + ACTIONS(3574), 1, + anon_sym_BQUOTE, + ACTIONS(3577), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3580), 1, + sym_raw_string_begin, + STATE(3715), 1, + sym__val_number_decimal, + STATE(4099), 1, + sym__val_number, + STATE(4121), 1, + sym_expr_parenthesized, + STATE(4122), 1, + sym_val_variable, + STATE(4454), 1, + sym__match_pattern_list, + STATE(4703), 1, + sym_val_bool, + ACTIONS(3520), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3544), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3553), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3562), 2, + anon_sym_0o, + anon_sym_0x, + STATE(1418), 2, + sym_comment, + aux_sym__match_pattern_list_body_repeat1, + STATE(4441), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4746), 2, + sym__match_pattern_expression, + sym__unquoted_in_list, + STATE(5087), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3526), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3556), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3594), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4455), 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, + [13336] = 36, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1786), 1, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1802), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(1924), 1, aux_sym_unquoted_token1, - ACTIONS(2682), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2876), 1, + ACTIONS(2895), 1, anon_sym_LBRACK, - ACTIONS(2878), 1, + ACTIONS(2897), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(2899), 1, anon_sym_LBRACE, - ACTIONS(3581), 1, - anon_sym_null, ACTIONS(3585), 1, - anon_sym_DOT_DOT, + anon_sym_null, ACTIONS(3589), 1, + anon_sym_DOT_DOT, + ACTIONS(3593), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3591), 1, - aux_sym__val_number_decimal_token2, ACTIONS(3595), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3599), 1, sym_val_date, - STATE(694), 1, + STATE(700), 1, sym__val_number, - STATE(1417), 1, + STATE(1419), 1, sym_comment, - STATE(3501), 1, + STATE(3542), 1, sym__val_number_decimal, - STATE(3714), 1, + STATE(3717), 1, sym_expr_parenthesized, - STATE(3715), 1, + STATE(3748), 1, sym_val_variable, - STATE(4087), 1, + STATE(4177), 1, sym_val_bool, - STATE(4285), 1, + STATE(4208), 1, sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, + STATE(4214), 1, sym__match_pattern_list, - STATE(4587), 1, + STATE(4232), 1, + sym_unquoted, + STATE(4584), 1, sym__match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3579), 2, + ACTIONS(3583), 2, anon_sym_true, anon_sym_false, - ACTIONS(3587), 2, + ACTIONS(3591), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3593), 2, + ACTIONS(3597), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4299), 2, + STATE(4213), 2, sym__match_pattern_value, sym_val_range, - STATE(4884), 2, + STATE(5062), 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(3587), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4309), 8, + STATE(4216), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -150686,91 +151153,91 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13273] = 36, + [13465] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1376), 1, - anon_sym_null, ACTIONS(1386), 1, + anon_sym_null, + ACTIONS(1396), 1, anon_sym_LPAREN, - ACTIONS(1398), 1, + ACTIONS(1408), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1400), 1, + ACTIONS(1410), 1, aux_sym__val_number_decimal_token2, - 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(1424), 1, + ACTIONS(1434), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(1426), 1, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(1568), 1, + ACTIONS(1572), 1, anon_sym_DOT_DOT, - ACTIONS(2656), 1, + ACTIONS(2732), 1, anon_sym_DOLLAR, - ACTIONS(2658), 1, + ACTIONS(2734), 1, anon_sym_LBRACE, - ACTIONS(2662), 1, + ACTIONS(2736), 1, sym_val_date, - ACTIONS(3438), 1, + ACTIONS(3460), 1, anon_sym_LBRACK, - STATE(1412), 1, - aux_sym__match_pattern_list_body_repeat1, STATE(1418), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(1420), 1, sym_comment, - STATE(3555), 1, + STATE(3552), 1, sym__val_number_decimal, - STATE(3756), 1, + STATE(3791), 1, sym_expr_parenthesized, - STATE(3757), 1, + STATE(3792), 1, sym_val_variable, - STATE(4134), 1, - sym_val_bool, - STATE(4165), 1, + STATE(4099), 1, sym__val_number, - STATE(4295), 1, + STATE(4146), 1, + sym_val_bool, + STATE(4329), 1, sym__match_pattern_expression, - STATE(4296), 1, + STATE(4330), 1, sym__unquoted_in_list, - STATE(4516), 1, + STATE(4454), 1, sym__match_pattern_list, - ACTIONS(1374), 2, + ACTIONS(1384), 2, anon_sym_true, anon_sym_false, - ACTIONS(1396), 2, + ACTIONS(1406), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(1402), 2, + ACTIONS(1412), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(1408), 2, + ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - STATE(4515), 2, + STATE(4441), 2, sym__match_pattern_value, sym_val_range, - STATE(4853), 2, + STATE(5087), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(1378), 3, + ACTIONS(1388), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(1404), 3, + ACTIONS(1414), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3505), 4, + STATE(3594), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4517), 8, + STATE(4455), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -150779,24 +151246,24 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13402] = 6, + [13594] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3597), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3599), 1, + ACTIONS(3601), 1, aux_sym__immediate_decimal_token5, - STATE(1419), 1, + STATE(1421), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(763), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1726), 45, + ACTIONS(765), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150809,9 +151276,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, @@ -150842,91 +151307,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13471] = 36, + sym_duration_unit, + [13661] = 36, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1786), 1, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1802), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(1924), 1, aux_sym_unquoted_token1, - ACTIONS(2682), 1, + ACTIONS(2768), 1, anon_sym_LPAREN, - ACTIONS(2876), 1, + ACTIONS(2895), 1, anon_sym_LBRACK, - ACTIONS(2878), 1, + ACTIONS(2897), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(2899), 1, anon_sym_LBRACE, - ACTIONS(3581), 1, - anon_sym_null, ACTIONS(3585), 1, - anon_sym_DOT_DOT, + anon_sym_null, ACTIONS(3589), 1, + anon_sym_DOT_DOT, + ACTIONS(3593), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3591), 1, - aux_sym__val_number_decimal_token2, ACTIONS(3595), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3599), 1, sym_val_date, - STATE(694), 1, + STATE(700), 1, sym__val_number, - STATE(1420), 1, + STATE(1422), 1, sym_comment, - STATE(3501), 1, + STATE(3542), 1, sym__val_number_decimal, - STATE(3714), 1, + STATE(3717), 1, sym_expr_parenthesized, - STATE(3715), 1, + STATE(3748), 1, sym_val_variable, - STATE(4087), 1, + STATE(4177), 1, sym_val_bool, - STATE(4285), 1, + STATE(4208), 1, sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, + STATE(4214), 1, sym__match_pattern_list, - STATE(4602), 1, + STATE(4232), 1, + sym_unquoted, + STATE(4562), 1, sym__match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3579), 2, + ACTIONS(3583), 2, anon_sym_true, anon_sym_false, - ACTIONS(3587), 2, + ACTIONS(3591), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3593), 2, + ACTIONS(3597), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4299), 2, + STATE(4213), 2, sym__match_pattern_value, sym_val_range, - STATE(4884), 2, + STATE(5062), 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(3587), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4309), 8, + STATE(4216), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -150935,30 +151401,156 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13600] = 4, - ACTIONS(3), 1, + [13790] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1421), 1, + STATE(1423), 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), 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, + ACTIONS(3605), 2, + sym_raw_string_begin, + sym__space, + ACTIONS(3603), 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, + [13855] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3485), 1, + aux_sym__immediate_decimal_token5, + STATE(1424), 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, + 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, + [13922] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3607), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3609), 1, + aux_sym__immediate_decimal_token5, + STATE(1425), 1, + sym_comment, + ACTIONS(1748), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1746), 45, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, @@ -150995,24 +151587,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [13665] = 5, + [13991] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3494), 1, + ACTIONS(3611), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3613), 1, aux_sym__immediate_decimal_token5, - STATE(1422), 1, + STATE(1426), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(1748), 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, + ACTIONS(1746), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151057,22 +151649,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, - [13732] = 4, + [14059] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1423), 1, + ACTIONS(3615), 1, + aux_sym__immediate_decimal_token5, + STATE(1427), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(1814), 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), 46, + ACTIONS(1812), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151118,106 +151710,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, - [13797] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1376), 1, - anon_sym_null, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1398), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1400), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1406), 1, - anon_sym_0b, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1424), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1568), 1, - anon_sym_DOT_DOT, - ACTIONS(2656), 1, - anon_sym_DOLLAR, - ACTIONS(2658), 1, - anon_sym_LBRACE, - ACTIONS(2662), 1, - sym_val_date, - ACTIONS(3438), 1, - anon_sym_LBRACK, - STATE(1412), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(1424), 1, - sym_comment, - STATE(3555), 1, - sym__val_number_decimal, - STATE(3756), 1, - sym_expr_parenthesized, - STATE(3757), 1, - sym_val_variable, - STATE(4134), 1, - sym_val_bool, - STATE(4165), 1, - sym__val_number, - STATE(4190), 1, - sym__match_pattern_expression, - STATE(4194), 1, - sym__unquoted_in_list, - STATE(4516), 1, - sym__match_pattern_list, - ACTIONS(1374), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1396), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(1402), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4515), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4853), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1378), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(1404), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4517), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [13926] = 4, + [14125] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1425), 1, + STATE(1428), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(789), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151226,7 +151724,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 46, + ACTIONS(791), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151239,9 +151738,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, @@ -151273,24 +151770,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13991] = 6, + [14189] = 4, 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, + STATE(1429), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1726), 44, + ACTIONS(741), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151335,24 +151829,22 @@ 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, + [14253] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3605), 1, - anon_sym_DOT, - ACTIONS(3607), 1, - aux_sym__immediate_decimal_token5, - STATE(1427), 1, + STATE(1430), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(763), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1736), 44, + ACTIONS(765), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151397,21 +151889,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14127] = 4, + sym_duration_unit, + [14317] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1428), 1, + ACTIONS(3617), 1, + anon_sym_DOT, + ACTIONS(3619), 1, + aux_sym__immediate_decimal_token5, + STATE(1431), 1, sym_comment, - ACTIONS(849), 8, + ACTIONS(1756), 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), 45, + ACTIONS(1754), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151456,15 +151952,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, - [14191] = 5, + [14385] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3569), 1, + ACTIONS(3510), 1, aux_sym__immediate_decimal_token5, - STATE(1429), 1, + STATE(1432), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(1756), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151472,7 +151967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 45, + ACTIONS(1754), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151518,22 +152013,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14257] = 4, + [14451] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1430), 1, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(3621), 1, + anon_sym_DOT_DOT2, + STATE(1433), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(3623), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2013), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 45, - ts_builtin_sym_end, + ACTIONS(2011), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151546,7 +152046,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, @@ -151565,7 +152067,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, @@ -151575,17 +152076,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, - sym_duration_unit, - [14321] = 5, + [14522] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3609), 1, - aux_sym__immediate_decimal_token5, - STATE(1431), 1, + STATE(1434), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1902), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151593,7 +152089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 45, + ACTIONS(1900), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151639,21 +152135,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14387] = 4, + [14585] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1432), 1, + ACTIONS(3619), 1, + aux_sym__immediate_decimal_token5, + STATE(1435), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(1756), 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(1754), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151698,13 +152195,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, - [14451] = 4, + [14650] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1433), 1, + STATE(1436), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1814), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151712,7 +152208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 45, + ACTIONS(1812), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151758,75 +152254,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14514] = 8, - 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, - sym_comment, - ACTIONS(3613), 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), 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, - [14585] = 4, + [14713] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1435), 1, + ACTIONS(3625), 1, + aux_sym__immediate_decimal_token5, + STATE(1437), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1814), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151834,7 +152269,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 45, + ACTIONS(1812), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151847,9 +152283,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 +152314,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, + [14778] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(2025), 1, anon_sym_LPAREN2, - ACTIONS(3615), 1, + ACTIONS(2031), 1, + sym__unquoted_pattern, + ACTIONS(3627), 1, anon_sym_DOT_DOT2, - STATE(1436), 1, + STATE(1438), 1, sym_comment, - ACTIONS(3617), 2, + ACTIONS(3629), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(2023), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 42, + ACTIONS(2021), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151943,12 +152377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14719] = 4, + [14849] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1437), 1, + STATE(1439), 1, sym_comment, - ACTIONS(1872), 7, + ACTIONS(1748), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151956,7 +152390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1870), 45, + ACTIONS(1746), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152002,22 +152436,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14782] = 5, + [14912] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3607), 1, - aux_sym__immediate_decimal_token5, - STATE(1438), 1, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(3631), 1, + anon_sym_DOT_DOT2, + STATE(1440), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(3633), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2013), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 44, + ACTIONS(2011), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152050,7 +152489,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, @@ -152060,85 +152498,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [14847] = 5, + [14982] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3619), 1, - aux_sym__immediate_decimal_token5, - STATE(1439), 1, - sym_comment, - ACTIONS(1804), 7, - anon_sym_GT2, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3643), 1, + anon_sym_LBRACK, + ACTIONS(3645), 1, 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, + STATE(1441), 1, + sym_comment, + STATE(2102), 1, + sym__val_number_decimal, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(4348), 1, + sym__command_name, + STATE(4349), 1, + sym_scope_pattern, + STATE(4351), 1, + sym_wild_card, + STATE(4352), 1, + sym_command_list, + ACTIONS(3635), 2, + anon_sym_export, anon_sym_in, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3641), 4, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [14912] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3637), 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, + [15080] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3621), 1, + ACTIONS(3651), 1, anon_sym_DOT, - ACTIONS(3623), 1, + ACTIONS(3653), 1, aux_sym__immediate_decimal_token5, - STATE(1440), 1, + STATE(1442), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(1756), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1736), 43, + ACTIONS(1754), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152182,29 +152634,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14978] = 8, + [15146] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(3625), 1, - anon_sym_DOT_DOT2, - STATE(1441), 1, + ACTIONS(1860), 1, + anon_sym_DOT2, + STATE(429), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(454), 1, + sym_path, + STATE(901), 1, + sym_cell_path, + STATE(1443), 1, sym_comment, - ACTIONS(3627), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(1865), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 41, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(3655), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -152216,6 +152665,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(1862), 29, + anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -152244,23 +152697,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15048] = 6, + [15218] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3629), 1, + ACTIONS(3659), 1, aux_sym__immediate_decimal_token1, - ACTIONS(3631), 1, + ACTIONS(3661), 1, aux_sym__immediate_decimal_token5, - STATE(1442), 1, + STATE(1444), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1748), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1726), 43, + ACTIONS(1746), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152304,318 +152757,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15114] = 8, + [15284] = 22, 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, - sym_comment, - ACTIONS(3635), 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), 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, - [15184] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1444), 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), 44, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [15246] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1802), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3639), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3645), 1, + ACTIONS(3643), 1, anon_sym_LBRACK, - ACTIONS(3647), 1, + ACTIONS(3645), 1, anon_sym_STAR2, STATE(1445), 1, sym_comment, - STATE(2099), 1, + STATE(2102), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3563), 1, sym_val_string, - STATE(4326), 1, - sym__command_name, - STATE(4327), 1, - sym_scope_pattern, - STATE(4328), 1, - sym_wild_card, - STATE(4329), 1, - sym_command_list, - 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, - ACTIONS(3643), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - 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, - [15344] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DOT2, - STATE(423), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, - sym_path, - STATE(923), 1, - sym_cell_path, - STATE(1446), 1, - sym_comment, - ACTIONS(1853), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3653), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(1850), 29, - anon_sym_in, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15416] = 22, - 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(3645), 1, - anon_sym_LBRACK, - ACTIONS(3647), 1, - anon_sym_STAR2, - STATE(1447), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, + STATE(3600), 1, sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4270), 1, + STATE(4299), 1, sym_scope_pattern, - STATE(4326), 1, + STATE(4348), 1, sym__command_name, - STATE(4328), 1, + STATE(4351), 1, sym_wild_card, - STATE(4329), 1, + STATE(4352), 1, sym_command_list, - ACTIONS(3637), 2, + ACTIONS(3635), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3649), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3657), 4, + ACTIONS(3663), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(2228), 4, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3637), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -152639,12 +152833,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15514] = 4, + [15382] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1448), 1, + STATE(1446), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1748), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152652,7 +152846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 44, + ACTIONS(1746), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152697,12 +152891,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [15576] = 4, + [15444] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1449), 1, + STATE(1447), 1, sym_comment, - ACTIONS(1872), 7, + ACTIONS(1902), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152710,7 +152904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1870), 44, + ACTIONS(1900), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152755,83 +152949,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [15638] = 9, + [15506] = 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(1292), 1, - sym_cell_path, - STATE(1450), 1, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern, + ACTIONS(3665), 1, + anon_sym_DOT_DOT2, + STATE(1448), 1, sym_comment, - ACTIONS(1853), 5, + ACTIONS(3667), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2023), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3653), 12, + ACTIONS(2021), 41, ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(1850), 29, - anon_sym_in, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15709] = 5, - 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, @@ -152844,9 +152983,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, @@ -152865,7 +153002,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, @@ -152875,21 +153011,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15772] = 5, + [15576] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3623), 1, - aux_sym__immediate_decimal_token5, - STATE(1452), 1, + STATE(1449), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(1814), 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(1812), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152902,9 +153038,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, @@ -152933,56 +153067,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15835] = 20, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [15638] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(251), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3224), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(3226), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3661), 1, - anon_sym_LPAREN, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - STATE(1453), 1, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(3673), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3675), 1, + anon_sym_LBRACK, + ACTIONS(3677), 1, + anon_sym_STAR2, + STATE(1450), 1, sym_comment, - STATE(2101), 1, + STATE(1998), 1, sym__val_number_decimal, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - ACTIONS(277), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + STATE(4288), 1, + sym_cmd_identifier, + STATE(4289), 1, + sym_val_string, + STATE(4532), 1, + sym__command_name, + STATE(4534), 1, + sym_wild_card, + STATE(4535), 1, + sym_command_list, + STATE(4647), 1, + sym_scope_pattern, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3649), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2454), 4, + ACTIONS(3669), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3663), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + STATE(485), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3031), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(271), 23, + ACTIONS(3671), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -153006,50 +153144,50 @@ 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, + [15735] = 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(3291), 1, anon_sym_DQUOTE, - ACTIONS(3226), 1, + ACTIONS(3293), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, + ACTIONS(3295), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, + ACTIONS(3297), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, + ACTIONS(3299), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3661), 1, + ACTIONS(3679), 1, anon_sym_LPAREN, - ACTIONS(3663), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR, - STATE(1454), 1, + STATE(1451), 1, sym_comment, - STATE(2101), 1, + STATE(2105), 1, sym__val_number_decimal, - STATE(3063), 1, + STATE(3082), 1, sym__inter_single_quotes, - STATE(3066), 1, + STATE(3083), 1, sym__inter_double_quotes, ACTIONS(277), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3649), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2454), 4, + STATE(2455), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2839), 5, + STATE(3021), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, @@ -153079,99 +153217,83 @@ 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, + [15828] = 9, 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, + ACTIONS(2391), 1, + anon_sym_DOT2, + STATE(532), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(791), 1, + sym_path, + STATE(1335), 1, + sym_cell_path, + STATE(1452), 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, + ACTIONS(1865), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(3655), 12, 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, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + 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(1862), 29, + anon_sym_in, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [15899] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3675), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3677), 1, + ACTIONS(3653), 1, aux_sym__immediate_decimal_token5, - STATE(1456), 1, + STATE(1453), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1756), 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(1754), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153184,7 +153306,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 +153337,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16183] = 20, + [15962] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(251), 1, aux_sym_cmd_identifier_token1, - ACTIONS(958), 1, + ACTIONS(856), 1, sym_raw_string_begin, - ACTIONS(3263), 1, + ACTIONS(3291), 1, anon_sym_DQUOTE, - ACTIONS(3265), 1, + ACTIONS(3293), 1, anon_sym_SQUOTE, - ACTIONS(3267), 1, + ACTIONS(3295), 1, anon_sym_BQUOTE, - ACTIONS(3269), 1, + ACTIONS(3297), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3271), 1, + ACTIONS(3299), 1, anon_sym_DOLLAR_DQUOTE, ACTIONS(3679), 1, anon_sym_LPAREN, ACTIONS(3681), 1, anon_sym_DOLLAR, - STATE(1457), 1, + STATE(1454), 1, sym_comment, - STATE(2085), 1, + STATE(2105), 1, sym__val_number_decimal, - STATE(3091), 1, + STATE(3082), 1, sym__inter_single_quotes, - STATE(3098), 1, + STATE(3083), 1, sym__inter_double_quotes, - ACTIONS(45), 2, + ACTIONS(277), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3649), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2472), 4, + STATE(2455), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2962), 5, + STATE(2916), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(39), 23, + ACTIONS(271), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -153286,7 +153410,66 @@ 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, + [16055] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3683), 1, + anon_sym_DOT, + ACTIONS(3685), 1, + aux_sym__immediate_decimal_token5, + STATE(1455), 1, + sym_comment, + ACTIONS(1756), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1754), 42, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [16120] = 22, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(91), 1, @@ -153297,47 +153480,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(3669), 1, + ACTIONS(3673), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3671), 1, + ACTIONS(3675), 1, anon_sym_LBRACK, - ACTIONS(3673), 1, + ACTIONS(3677), 1, anon_sym_STAR2, - STATE(1458), 1, + STATE(1456), 1, sym_comment, - STATE(1976), 1, + STATE(1998), 1, sym__val_number_decimal, - STATE(4246), 1, + STATE(4288), 1, sym_cmd_identifier, - STATE(4248), 1, + STATE(4289), 1, sym_val_string, - STATE(4379), 1, - sym_scope_pattern, - STATE(4456), 1, + STATE(4532), 1, sym__command_name, - STATE(4458), 1, + STATE(4533), 1, + sym_scope_pattern, + STATE(4534), 1, sym_wild_card, - STATE(4459), 1, + STATE(4535), 1, sym_command_list, - ACTIONS(3649), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3649), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, + ACTIONS(3669), 2, anon_sym_export, anon_sym_in, - ACTIONS(3657), 3, + ACTIONS(3641), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - STATE(480), 4, + STATE(485), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3667), 23, + ACTIONS(3671), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -153361,23 +153544,23 @@ 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, + [16217] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3683), 1, - anon_sym_DOT, - ACTIONS(3685), 1, + ACTIONS(3687), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3689), 1, aux_sym__immediate_decimal_token5, - STATE(1459), 1, + STATE(1457), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(1748), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1736), 42, + ACTIONS(1746), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153420,22 +153603,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16438] = 6, + [16282] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(1460), 1, + ACTIONS(3691), 1, + aux_sym__immediate_decimal_token5, + STATE(1458), 1, sym_comment, - ACTIONS(1619), 5, + ACTIONS(1814), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 42, + sym__unquoted_pattern, + ACTIONS(1812), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153469,6 +153651,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 +153661,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16502] = 4, + [16345] = 20, ACTIONS(3), 1, anon_sym_POUND, - STATE(1461), 1, + ACTIONS(19), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(958), 1, + sym_raw_string_begin, + ACTIONS(3242), 1, + anon_sym_DQUOTE, + ACTIONS(3244), 1, + anon_sym_SQUOTE, + ACTIONS(3246), 1, + anon_sym_BQUOTE, + ACTIONS(3248), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3250), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3693), 1, + anon_sym_LPAREN, + ACTIONS(3695), 1, + anon_sym_DOLLAR, + STATE(1459), 1, sym_comment, - ACTIONS(1728), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, + STATE(2101), 1, + sym__val_number_decimal, + STATE(3155), 1, + sym__inter_single_quotes, + STATE(3156), 1, + sym__inter_double_quotes, + ACTIONS(45), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2501), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3028), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(39), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [16438] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1637), 1, + sym__entry_separator, + ACTIONS(3699), 1, + anon_sym_RBRACE, + ACTIONS(3701), 1, + sym_raw_string_begin, + STATE(1460), 1, + sym_comment, + STATE(1474), 1, + aux_sym__types_body_repeat2, + ACTIONS(3697), 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, - sym__unquoted_pattern, - ACTIONS(1726), 43, + 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, + [16504] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1637), 1, + sym__entry_separator, + ACTIONS(3706), 1, + anon_sym_RBRACE, + ACTIONS(3709), 1, + sym_raw_string_begin, + STATE(1461), 1, + sym_comment, + STATE(1474), 1, + aux_sym__types_body_repeat2, + ACTIONS(3703), 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, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_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, + [16570] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1637), 1, + sym__entry_separator, + ACTIONS(3709), 1, + sym_raw_string_begin, + ACTIONS(3712), 1, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_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(1462), 1, + sym_comment, + STATE(1474), 1, + aux_sym__types_body_repeat2, + ACTIONS(3703), 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, + [16636] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(1462), 1, + STATE(1463), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(2508), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 42, + sym__unquoted_pattern, + ACTIONS(2506), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153583,6 +153957,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, @@ -153592,19 +153967,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16626] = 4, + [16696] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1463), 1, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern, + STATE(1464), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(2023), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 43, + ACTIONS(2021), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153638,7 +154016,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 +154025,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16686] = 7, + [16760] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1637), 1, sym__entry_separator, - ACTIONS(3689), 1, + ACTIONS(3717), 1, anon_sym_RBRACE, - ACTIONS(3691), 1, + ACTIONS(3719), 1, sym_raw_string_begin, - STATE(1464), 1, + STATE(1465), 1, sym_comment, - STATE(1473), 1, + STATE(1474), 1, aux_sym__types_body_repeat2, - ACTIONS(3687), 45, + ACTIONS(3715), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -153707,78 +154084,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16752] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(1465), 1, - sym_comment, - ACTIONS(1016), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1018), 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, - [16816] = 7, + [16826] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1637), 1, sym__entry_separator, - ACTIONS(3696), 1, - anon_sym_RBRACE, - ACTIONS(3699), 1, + ACTIONS(3701), 1, sym_raw_string_begin, + ACTIONS(3721), 1, + anon_sym_RBRACE, STATE(1466), 1, sym_comment, - STATE(1473), 1, + STATE(1474), 1, aux_sym__types_body_repeat2, - ACTIONS(3693), 45, + ACTIONS(3697), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -153824,20 +154143,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, + [16892] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1637), 1, sym__entry_separator, - ACTIONS(3691), 1, + ACTIONS(3701), 1, sym_raw_string_begin, - ACTIONS(3702), 1, + ACTIONS(3721), 1, anon_sym_RBRACE, STATE(1467), 1, sym_comment, - STATE(1473), 1, + STATE(1474), 1, aux_sym__types_body_repeat2, - ACTIONS(3687), 45, + ACTIONS(3697), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -153883,20 +154202,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, + [16958] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1637), 1, sym__entry_separator, - ACTIONS(3706), 1, - anon_sym_RBRACE, - ACTIONS(3708), 1, + ACTIONS(3701), 1, sym_raw_string_begin, + ACTIONS(3723), 1, + anon_sym_RBRACE, STATE(1468), 1, sym_comment, - STATE(1473), 1, + STATE(1474), 1, aux_sym__types_body_repeat2, - ACTIONS(3704), 45, + ACTIONS(3697), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -153942,20 +154261,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17014] = 7, + [17024] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1637), 1, sym__entry_separator, - ACTIONS(3706), 1, - anon_sym_RBRACE, - ACTIONS(3708), 1, + ACTIONS(3719), 1, sym_raw_string_begin, + ACTIONS(3725), 1, + anon_sym_RBRACE, STATE(1469), 1, sym_comment, - STATE(1473), 1, + STATE(1474), 1, aux_sym__types_body_repeat2, - ACTIONS(3704), 45, + ACTIONS(3715), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154001,22 +154320,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17080] = 6, + [17090] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, STATE(1470), 1, sym_comment, - ACTIONS(1966), 5, + ACTIONS(1748), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 42, + sym__unquoted_pattern, + ACTIONS(1746), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154050,6 +154366,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, @@ -154059,22 +154376,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17144] = 6, + [17150] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, + ACTIONS(2556), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(2558), 1, sym__unquoted_pattern, STATE(1471), 1, sym_comment, - ACTIONS(2569), 5, + ACTIONS(1008), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2567), 42, + ACTIONS(1030), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154117,19 +154434,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17208] = 4, + [17214] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2556), 1, + anon_sym_LPAREN2, + ACTIONS(2558), 1, + sym__unquoted_pattern, STATE(1472), 1, sym_comment, - ACTIONS(2503), 6, + ACTIONS(996), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2501), 43, + ACTIONS(994), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154163,7 +154483,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,17 +154492,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17268] = 5, + [17278] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3712), 1, + ACTIONS(1637), 1, sym__entry_separator, - ACTIONS(3715), 1, + ACTIONS(3701), 1, sym_raw_string_begin, - STATE(1473), 2, + ACTIONS(3727), 1, + anon_sym_RBRACE, + STATE(1473), 1, sym_comment, + STATE(1474), 1, aux_sym__types_body_repeat2, - ACTIONS(3710), 46, + ACTIONS(3697), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154213,7 +154535,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_PLUS2, anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_DOT_DOLLAR, @@ -154230,20 +154551,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17330] = 7, + [17344] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(3731), 1, sym__entry_separator, - ACTIONS(3691), 1, + ACTIONS(3734), 1, sym_raw_string_begin, - ACTIONS(3717), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1474), 1, + STATE(1474), 2, sym_comment, - ACTIONS(3687), 45, + aux_sym__types_body_repeat2, + ACTIONS(3729), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154273,6 +154591,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, @@ -154289,81 +154608,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17396] = 7, - ACTIONS(103), 1, + [17406] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3708), 1, - sym_raw_string_begin, - ACTIONS(3719), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, + ACTIONS(2574), 1, + anon_sym_LPAREN2, + ACTIONS(2576), 1, + sym__unquoted_pattern, STATE(1475), 1, sym_comment, - ACTIONS(3704), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(2572), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2570), 42, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_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, - [17462] = 5, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [17470] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3685), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(1691), 1, + sym__unquoted_pattern, + ACTIONS(2564), 1, + anon_sym_LPAREN2, STATE(1476), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(2562), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(2560), 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, + [17534] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, sym__unquoted_pattern, - ACTIONS(1736), 42, - ts_builtin_sym_end, + STATE(1477), 1, + sym_comment, + ACTIONS(2568), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2566), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154376,7 +154752,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -154395,7 +154773,64 @@ 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, + [17598] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(2015), 1, anon_sym_LPAREN2, + STATE(1478), 1, + sym_comment, + ACTIONS(2013), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2011), 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, @@ -154405,19 +154840,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17524] = 4, + [17662] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1477), 1, + STATE(1479), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(1814), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1870), 43, + ACTIONS(1812), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154461,81 +154896,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17584] = 7, - ACTIONS(103), 1, + [17722] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3691), 1, - sym_raw_string_begin, - ACTIONS(3721), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1478), 1, + STATE(1480), 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, + ACTIONS(1902), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1900), 43, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17650] = 6, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [17782] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2525), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2527), 1, sym__unquoted_pattern, - STATE(1479), 1, + STATE(1481), 1, sym_comment, - ACTIONS(2577), 5, + ACTIONS(2523), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2575), 42, + ACTIONS(2521), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154578,80 +155010,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17714] = 7, - ACTIONS(103), 1, + [17846] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3708), 1, - sym_raw_string_begin, - ACTIONS(3723), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1480), 1, + ACTIONS(3736), 1, + aux_sym__immediate_decimal_token5, + STATE(1482), 1, sym_comment, - ACTIONS(3704), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(1814), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1812), 42, + ts_builtin_sym_end, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17780] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [17908] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3725), 1, + ACTIONS(3685), 1, aux_sym__immediate_decimal_token5, - STATE(1481), 1, + STATE(1483), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(1756), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1802), 42, + ACTIONS(1754), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -154694,22 +155124,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17842] = 6, + [17970] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, + ACTIONS(2594), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(2596), 1, sym__unquoted_pattern, - STATE(1482), 1, + STATE(1484), 1, sym_comment, - ACTIONS(2637), 5, + ACTIONS(1629), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2635), 42, + ACTIONS(1716), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154752,20 +155182,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17906] = 7, + [18034] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1637), 1, sym__entry_separator, - ACTIONS(3699), 1, + ACTIONS(3701), 1, sym_raw_string_begin, ACTIONS(3727), 1, anon_sym_RBRACE, - STATE(1473), 1, + STATE(1474), 1, aux_sym__types_body_repeat2, - STATE(1483), 1, + STATE(1485), 1, sym_comment, - ACTIONS(3693), 45, + ACTIONS(3697), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154811,20 +155241,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, + [18100] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1637), 1, sym__entry_separator, - ACTIONS(3708), 1, + ACTIONS(3719), 1, sym_raw_string_begin, - ACTIONS(3730), 1, + ACTIONS(3738), 1, anon_sym_RBRACE, - STATE(1473), 1, + STATE(1474), 1, aux_sym__types_body_repeat2, - STATE(1484), 1, + STATE(1486), 1, sym_comment, - ACTIONS(3704), 45, + ACTIONS(3715), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154870,20 +155300,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, + [18166] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1637), 1, sym__entry_separator, - ACTIONS(3708), 1, + ACTIONS(3719), 1, sym_raw_string_begin, - ACTIONS(3730), 1, + ACTIONS(3740), 1, anon_sym_RBRACE, - STATE(1473), 1, + STATE(1474), 1, aux_sym__types_body_repeat2, - STATE(1485), 1, + STATE(1487), 1, sym_comment, - ACTIONS(3704), 45, + ACTIONS(3715), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154929,22 +155359,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18104] = 6, + [18232] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2525), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2527), 1, sym__unquoted_pattern, - STATE(1486), 1, + STATE(1488), 1, sym_comment, - ACTIONS(1976), 5, + ACTIONS(2523), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 42, + ACTIONS(2521), 41, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154957,9 +155388,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, @@ -154987,22 +155416,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18168] = 6, + [18295] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(2574), 1, + anon_sym_LPAREN2, + ACTIONS(2576), 1, sym__unquoted_pattern, - ACTIONS(2629), 1, + STATE(1489), 1, + sym_comment, + ACTIONS(2572), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2570), 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, + [18358] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2556), 1, anon_sym_LPAREN2, - STATE(1487), 1, + ACTIONS(2558), 1, + sym__unquoted_pattern, + STATE(1490), 1, sym_comment, - ACTIONS(2525), 5, + ACTIONS(1008), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2523), 42, + ACTIONS(1030), 41, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155015,9 +155502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155045,14 +155530,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18232] = 5, + [18421] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2630), 1, aux_sym_cmd_identifier_token2, - STATE(1488), 1, + STATE(1491), 1, sym_comment, - ACTIONS(968), 18, + ACTIONS(2506), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -155071,7 +155556,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(2508), 29, anon_sym_in, anon_sym_GT2, anon_sym_DASH2, @@ -155101,15 +155586,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18293] = 4, + [18482] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2556), 1, + anon_sym_LPAREN2, + ACTIONS(2558), 1, + sym__unquoted_pattern, + STATE(1492), 1, + sym_comment, + ACTIONS(996), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(994), 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, + [18545] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(1489), 1, + STATE(1493), 1, sym_comment, - ACTIONS(3734), 2, + ACTIONS(3744), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(3732), 46, + ACTIONS(3742), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155156,75 +155698,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18352] = 6, + [18604] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(1490), 1, + ACTIONS(3750), 1, + sym__newline, + STATE(1494), 2, sym_comment, - ACTIONS(2637), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2635), 41, - ts_builtin_sym_end, + aux_sym__types_body_repeat1, + ACTIONS(3746), 7, + anon_sym_export, + aux_sym_cmd_identifier_token1, 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_DOLLAR, anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [18415] = 6, + anon_sym_PLUS2, + aux_sym__val_number_decimal_token1, + ACTIONS(3748), 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, + [18665] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1637), 1, sym__entry_separator, - ACTIONS(3708), 1, + ACTIONS(3719), 1, sym_raw_string_begin, - STATE(1473), 1, + STATE(1474), 1, aux_sym__types_body_repeat2, - STATE(1491), 1, + STATE(1495), 1, sym_comment, - ACTIONS(3704), 45, + ACTIONS(3715), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155270,19 +155811,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18478] = 4, + [18728] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1492), 1, + ACTIONS(2594), 1, + anon_sym_LPAREN2, + ACTIONS(2596), 1, + sym__unquoted_pattern, + STATE(1496), 1, sym_comment, - ACTIONS(2503), 6, + ACTIONS(1629), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2501), 42, + ACTIONS(1716), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155315,89 +155859,29 @@ 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, - [18537] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - STATE(1493), 1, - sym_comment, - ACTIONS(2501), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(2503), 29, - anon_sym_in, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18598] = 6, + [18791] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(1776), 1, sym__unquoted_pattern, - STATE(1494), 1, + STATE(1497), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(858), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 41, - ts_builtin_sym_end, + ACTIONS(884), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155410,7 +155894,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, @@ -155438,24 +155924,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18661] = 6, - ACTIONS(3), 1, + [18852] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(1495), 1, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + STATE(1498), 1, sym_comment, - 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, + ACTIONS(2521), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -155467,7 +155943,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2523), 29, + anon_sym_in, + anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155478,96 +155965,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [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, + [18913] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(1497), 1, + STATE(1499), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(2508), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1018), 41, + sym__unquoted_pattern, + ACTIONS(2506), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155600,6 +156025,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,75 +156035,19 @@ 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, - anon_sym_POUND, - ACTIONS(3740), 1, - sym__newline, - STATE(1498), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 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(3738), 39, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [18911] = 4, + [18972] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1499), 1, + STATE(1500), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(1748), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1802), 42, + ACTIONS(1746), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155720,19 +156090,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18970] = 4, + [19031] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1500), 1, + STATE(1501), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(1814), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1870), 42, + ACTIONS(1812), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155775,22 +156145,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19029] = 6, + [19090] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(1501), 1, + STATE(1502), 1, sym_comment, - ACTIONS(1619), 5, + ACTIONS(1902), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 41, + sym__unquoted_pattern, + ACTIONS(1900), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155823,6 +156190,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, @@ -155832,24 +156200,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19092] = 6, - ACTIONS(3), 1, + [19149] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(1502), 1, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + STATE(1503), 1, sym_comment, - ACTIONS(2525), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2523), 41, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(884), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -155861,7 +156219,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(858), 29, + anon_sym_in, + anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155872,37 +156241,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19155] = 5, + [19210] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1637), 1, + sym__entry_separator, + ACTIONS(3701), 1, + sym_raw_string_begin, + STATE(1474), 1, + aux_sym__types_body_repeat2, + STATE(1504), 1, + sym_comment, + ACTIONS(3697), 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, + [19273] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, + ACTIONS(1615), 1, sym__unquoted_pattern, - STATE(1503), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + STATE(1505), 1, sym_comment, - ACTIONS(868), 5, + ACTIONS(2013), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 42, + ACTIONS(2011), 41, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155915,9 +156342,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 +156370,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19216] = 6, + [19336] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, + ACTIONS(2025), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(2031), 1, sym__unquoted_pattern, - STATE(1504), 1, + STATE(1506), 1, sym_comment, - ACTIONS(2569), 5, + ACTIONS(2568), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2567), 41, + ACTIONS(2566), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156002,22 +156427,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19279] = 6, + [19399] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2025), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2031), 1, sym__unquoted_pattern, - STATE(1505), 1, + STATE(1507), 1, sym_comment, - ACTIONS(1976), 5, + ACTIONS(2023), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 41, + ACTIONS(2021), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156059,22 +156484,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19342] = 6, + [19462] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1691), 1, sym__unquoted_pattern, - STATE(1506), 1, + ACTIONS(2564), 1, + anon_sym_LPAREN2, + STATE(1508), 1, sym_comment, - ACTIONS(2577), 5, + ACTIONS(2562), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2575), 41, + ACTIONS(2560), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156116,23 +156541,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19405] = 4, - ACTIONS(3), 1, + [19525] = 20, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1507), 1, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(2738), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2740), 1, + anon_sym_COLON2, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3753), 1, + anon_sym_DASH_DASH, + STATE(1509), 1, sym_comment, - ACTIONS(1728), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 42, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, + STATE(1710), 1, + aux_sym_decl_def_repeat1, + STATE(2102), 1, + sym__val_number_decimal, + STATE(2186), 1, + sym_long_flag, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(3685), 1, + sym__command_name, + ACTIONS(3755), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3757), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 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, + [19615] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1828), 1, + sym__unquoted_pattern, + STATE(1510), 1, + sym_comment, + ACTIONS(858), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(884), 41, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -156161,7 +156657,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -156171,15 +156666,30 @@ 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, + [19675] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - STATE(1508), 1, - sym_comment, - ACTIONS(2635), 18, + ACTIONS(2937), 1, sym__newline, + STATE(1511), 1, + sym_comment, + STATE(1531), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2758), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2756), 36, + anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156191,17 +156701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(2637), 29, - anon_sym_in, - anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156212,99 +156712,110 @@ 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, + [19743] = 21, 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(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3769), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3771), 1, + sym__newline, + ACTIONS(3773), 1, + anon_sym_RBRACK, + STATE(1512), 1, 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, + STATE(1702), 1, + aux_sym__types_body_repeat1, + STATE(1763), 1, + aux_sym__command_list_body_repeat1, + STATE(2108), 1, + sym__val_number_decimal, + STATE(4629), 1, + sym__command_name, + STATE(4737), 1, + sym_cmd_identifier, + STATE(4738), 1, + sym_val_string, + STATE(4863), 1, + sym__command_list_body, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3765), 2, + anon_sym_export, + anon_sym_in, + STATE(3594), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3767), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [19835] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1510), 1, + ACTIONS(2937), 1, + sym__newline, + STATE(1513), 1, sym_comment, - ACTIONS(2565), 5, + STATE(1533), 1, + aux_sym__repeat_newline, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2758), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3757), 13, - sym__newline, + ACTIONS(2756), 38, + anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156316,9 +156827,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2563), 29, - anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -156338,8 +156846,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, @@ -156347,16 +156853,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19665] = 5, - ACTIONS(103), 1, + [19899] = 18, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - STATE(1511), 1, - sym_comment, - ACTIONS(2501), 17, - ts_builtin_sym_end, + ACTIONS(2937), 1, sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + ACTIONS(3789), 1, + anon_sym_bit_DASHand2, + ACTIONS(3791), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3793), 1, + anon_sym_bit_DASHor2, + STATE(1514), 1, + sym_comment, + STATE(1535), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3783), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3775), 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(2756), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156367,19 +156917,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [19985] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + ACTIONS(3789), 1, + anon_sym_bit_DASHand2, + ACTIONS(3791), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3793), 1, + anon_sym_bit_DASHor2, + ACTIONS(3795), 1, + anon_sym_and2, + STATE(1515), 1, + sym_comment, + STATE(1537), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(3783), 4, anon_sym_EQ_TILDE2, - ACTIONS(2503), 29, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3775), 8, 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, @@ -156387,31 +156976,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + ACTIONS(2756), 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, + [20073] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + ACTIONS(3789), 1, + anon_sym_bit_DASHand2, + ACTIONS(3791), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3793), 1, + anon_sym_bit_DASHor2, + ACTIONS(3795), 1, + anon_sym_and2, + ACTIONS(3797), 1, + anon_sym_xor2, + STATE(1516), 1, + sym_comment, + STATE(1539), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3783), 4, + anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + ACTIONS(3775), 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(2756), 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, + [20163] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + STATE(1517), 1, + sym_comment, + STATE(1541), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(3763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3775), 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(2756), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_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, - [19725] = 5, - ACTIONS(103), 1, + [20241] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - STATE(1512), 1, - sym_comment, - ACTIONS(2635), 17, - ts_builtin_sym_end, + ACTIONS(2937), 1, sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + STATE(1518), 1, + sym_comment, + STATE(1543), 1, + aux_sym__repeat_newline, + ACTIONS(2758), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2756), 35, + anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156422,19 +157161,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(2637), 29, - anon_sym_in, - anon_sym_GT2, + 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, + [20313] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(3779), 1, anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + STATE(1519), 1, + sym_comment, + STATE(1545), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3783), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3775), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -156442,55 +157232,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + ACTIONS(2756), 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [20393] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + ACTIONS(3789), 1, + anon_sym_bit_DASHand2, + STATE(1520), 1, + sym_comment, + STATE(1547), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3783), 4, + anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + ACTIONS(3775), 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(2756), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [20475] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3769), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3771), 1, + sym__newline, + ACTIONS(3799), 1, + anon_sym_RBRACK, + STATE(1521), 1, + sym_comment, + STATE(1702), 1, + aux_sym__types_body_repeat1, + STATE(1763), 1, + aux_sym__command_list_body_repeat1, + STATE(2108), 1, + sym__val_number_decimal, + STATE(4629), 1, + sym__command_name, + STATE(4737), 1, + sym_cmd_identifier, + STATE(4738), 1, + sym_val_string, + STATE(4929), 1, + sym__command_list_body, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3765), 2, + anon_sym_export, + anon_sym_in, + STATE(3594), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3767), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [20567] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + ACTIONS(3789), 1, + anon_sym_bit_DASHand2, + ACTIONS(3791), 1, + anon_sym_bit_DASHxor2, + STATE(1522), 1, + sym_comment, + STATE(1549), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(3763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3783), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3775), 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(2756), 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, - [19785] = 15, + [20651] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3801), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3803), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3809), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3811), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3813), 1, anon_sym_LBRACE, - STATE(1513), 1, + STATE(1523), 1, sym_comment, - STATE(4385), 1, + STATE(4586), 1, sym_block, - STATE(4629), 1, + STATE(4820), 1, sym_returns, - STATE(4849), 1, + STATE(4916), 1, sym__type_annotation, - STATE(5007), 1, + STATE(5119), 1, sym__one_type, - STATE(5169), 1, + STATE(5123), 1, sym__multiple_types, - ACTIONS(3749), 2, + ACTIONS(3807), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3805), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -156522,86 +157519,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [19865] = 15, + [20731] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3769), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3815), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3817), 1, + anon_sym_DOLLAR, + ACTIONS(3819), 1, anon_sym_LBRACE, - STATE(1514), 1, - sym_comment, - STATE(4397), 1, - sym_block, - STATE(4638), 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, - [19945] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1515), 1, + STATE(1524), 1, sym_comment, - ACTIONS(2938), 7, + STATE(2108), 1, + sym__val_number_decimal, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3765), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - aux_sym__val_number_decimal_token1, - ACTIONS(2940), 40, - sym_raw_string_begin, + STATE(4797), 2, + sym_cmd_identifier, + sym_val_string, + STATE(4806), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(3594), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3767), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -156625,56 +157587,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_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, + [20817] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3801), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3803), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3809), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3811), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3813), 1, anon_sym_LBRACE, - STATE(1516), 1, + STATE(1525), 1, sym_comment, - STATE(4427), 1, + STATE(4588), 1, sym_block, - STATE(4647), 1, + STATE(4825), 1, sym_returns, - STATE(4849), 1, + STATE(4916), 1, sym__type_annotation, - STATE(5007), 1, + STATE(5119), 1, sym__one_type, - STATE(5169), 1, + STATE(5123), 1, sym__multiple_types, - ACTIONS(3749), 2, + ACTIONS(3807), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3805), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -156706,81 +157652,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20083] = 15, + [20897] = 13, 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(1517), 1, - sym_comment, - STATE(4429), 1, - sym_block, - STATE(4659), 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, - [20163] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - STATE(1518), 1, - sym_comment, - ACTIONS(968), 17, - ts_builtin_sym_end, + ACTIONS(2848), 1, sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + STATE(1526), 1, + sym_comment, + STATE(1566), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2688), 29, + anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156791,16 +157697,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_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_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156811,56 +157708,116 @@ 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_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [20973] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3823), 1, + anon_sym_DASH2, + ACTIONS(3833), 1, + anon_sym_PLUS2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(1527), 1, + sym_comment, + ACTIONS(3821), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3825), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(3827), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2692), 30, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20223] = 12, + [21047] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3760), 1, - anon_sym_DOT, - STATE(1519), 1, + ACTIONS(2848), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + STATE(1528), 1, sym_comment, - STATE(1826), 1, - sym__immediate_decimal, - ACTIONS(3762), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3764), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(698), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, + STATE(1567), 1, + aux_sym__repeat_newline, + ACTIONS(2690), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3759), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 30, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2688), 33, anon_sym_in, - sym__newline, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156879,30 +157836,36 @@ 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, - [20297] = 5, + [21121] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1820), 1, - sym__unquoted_pattern, - STATE(1520), 1, + ACTIONS(3823), 1, + anon_sym_DASH2, + ACTIONS(3833), 1, + anon_sym_PLUS2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(1529), 1, sym_comment, - ACTIONS(868), 5, + ACTIONS(2694), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3825), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 41, - ts_builtin_sym_end, + ACTIONS(3829), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3831), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3835), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2692), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156915,7 +157878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156934,2471 +157897,2029 @@ 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, - [20357] = 15, + [21193] = 9, 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(1521), 1, + ACTIONS(2848), 1, + sym__newline, + STATE(1530), 1, sym_comment, - STATE(4434), 1, - sym_block, - STATE(4687), 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, - [20437] = 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(1522), 1, - sym_comment, - STATE(4435), 1, - sym_block, - STATE(4688), 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, - [20517] = 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(1523), 1, - sym_comment, - STATE(4437), 1, - sym_block, - STATE(4693), 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, - [20597] = 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(1524), 1, - sym_comment, - STATE(4440), 1, - sym_block, - STATE(4703), 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, - [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, - 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(1526), 1, - sym_comment, - STATE(4525), 1, - sym_block, - STATE(4689), 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, - [20847] = 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(1527), 1, - sym_comment, - STATE(4527), 1, - sym_block, - STATE(4694), 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, - [20927] = 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(1528), 1, - sym_comment, - STATE(4528), 1, - sym_block, - STATE(4696), 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, - [21007] = 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(1529), 1, - sym_comment, - STATE(4534), 1, - sym_block, - STATE(4702), 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, - [21087] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3772), 1, - anon_sym_LBRACK, - ACTIONS(3774), 1, - anon_sym_DOLLAR, - ACTIONS(3776), 1, - anon_sym_LBRACE, - STATE(1530), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - ACTIONS(3637), 2, - anon_sym_export, + STATE(1568), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2690), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2688), 36, 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, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, + [21261] = 8, 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(507), 1, + aux_sym__repeat_newline, STATE(1531), 1, sym_comment, - STATE(4564), 1, - sym_block, - STATE(4738), 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, - [21253] = 15, + ACTIONS(3825), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3829), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3831), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2694), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2692), 37, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [21327] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, + ACTIONS(2848), 1, + sym__newline, STATE(1532), 1, sym_comment, - STATE(4565), 1, - sym_block, - STATE(4740), 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, - [21333] = 15, + STATE(1569), 1, + aux_sym__repeat_newline, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2690), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2688), 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, + [21391] = 6, 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(507), 1, + aux_sym__repeat_newline, STATE(1533), 1, sym_comment, - STATE(4494), 1, - sym_block, - STATE(4648), 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, - [21413] = 15, + ACTIONS(3829), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2694), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2692), 39, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [21453] = 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, + ACTIONS(2848), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + ACTIONS(3789), 1, + anon_sym_bit_DASHand2, + ACTIONS(3791), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3793), 1, + anon_sym_bit_DASHor2, STATE(1534), 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(1570), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3783), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3775), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2688), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [21539] = 17, 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, + ACTIONS(3823), 1, + anon_sym_DASH2, + ACTIONS(3833), 1, + anon_sym_PLUS2, + ACTIONS(3841), 1, + anon_sym_bit_DASHand2, + ACTIONS(3843), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3845), 1, + anon_sym_bit_DASHor2, + STATE(507), 1, + aux_sym__repeat_newline, STATE(1535), 1, sym_comment, - STATE(4068), 1, - sym_block, - STATE(4691), 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, - [21573] = 15, + ACTIONS(3821), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3825), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3829), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3831), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3835), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3827), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3839), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3837), 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(2692), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [21623] = 19, 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, + ACTIONS(2848), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + ACTIONS(3789), 1, + anon_sym_bit_DASHand2, + ACTIONS(3791), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3793), 1, + anon_sym_bit_DASHor2, + ACTIONS(3795), 1, + anon_sym_and2, STATE(1536), 1, sym_comment, - STATE(4069), 1, - sym_block, - STATE(4692), 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, - [21653] = 21, + STATE(1571), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3783), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3775), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2688), 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, + [21711] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3786), 1, - sym__newline, - ACTIONS(3788), 1, - anon_sym_RBRACK, + ACTIONS(3823), 1, + anon_sym_DASH2, + ACTIONS(3833), 1, + anon_sym_PLUS2, + ACTIONS(3841), 1, + anon_sym_bit_DASHand2, + ACTIONS(3843), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3845), 1, + anon_sym_bit_DASHor2, + ACTIONS(3847), 1, + anon_sym_and2, + STATE(507), 1, + aux_sym__repeat_newline, STATE(1537), 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(4854), 1, - sym__command_list_body, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, + ACTIONS(3821), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3825), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3829), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3831), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3835), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3827), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3839), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3837), 8, 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, - [21745] = 15, + anon_sym_not_DASHin2, + anon_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(2692), 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, + [21797] = 20, 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, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + ACTIONS(3789), 1, + anon_sym_bit_DASHand2, + ACTIONS(3791), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3793), 1, + anon_sym_bit_DASHor2, + ACTIONS(3795), 1, + anon_sym_and2, + ACTIONS(3797), 1, + anon_sym_xor2, STATE(1538), 1, sym_comment, - STATE(4316), 1, - sym_block, - STATE(4781), 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, - [21825] = 15, + STATE(1572), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3783), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3775), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2688), 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, + [21887] = 19, 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(1539), 1, - sym_comment, - STATE(4320), 1, - sym_block, - STATE(4782), 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, - [21905] = 15, + ACTIONS(3823), 1, + anon_sym_DASH2, + ACTIONS(3833), 1, + anon_sym_PLUS2, + ACTIONS(3841), 1, + anon_sym_bit_DASHand2, + ACTIONS(3843), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3845), 1, + anon_sym_bit_DASHor2, + ACTIONS(3847), 1, + anon_sym_and2, + ACTIONS(3849), 1, + anon_sym_xor2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(1539), 1, + sym_comment, + ACTIONS(3821), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3825), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3829), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3831), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3835), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3827), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3839), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3837), 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(2692), 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, + [21975] = 14, 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, + ACTIONS(2848), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, STATE(1540), 1, sym_comment, - STATE(4345), 1, - sym_block, - STATE(4622), 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, - [21985] = 15, + STATE(1573), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3775), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2688), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_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, + [22053] = 13, 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, + ACTIONS(3823), 1, + anon_sym_DASH2, + ACTIONS(3833), 1, + anon_sym_PLUS2, + STATE(507), 1, + aux_sym__repeat_newline, STATE(1541), 1, sym_comment, - STATE(4346), 1, - sym_block, - STATE(4771), 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, - [22065] = 15, + ACTIONS(3821), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3825), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3829), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3831), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3835), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3827), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3837), 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(2692), 22, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22129] = 11, 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, + ACTIONS(2848), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, STATE(1542), 1, sym_comment, - STATE(4347), 1, - sym_block, - STATE(4644), 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, - [22145] = 15, + STATE(1574), 1, + aux_sym__repeat_newline, + ACTIONS(2690), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2688), 35, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22201] = 10, 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, + ACTIONS(3823), 1, + anon_sym_DASH2, + ACTIONS(3833), 1, + anon_sym_PLUS2, + STATE(507), 1, + aux_sym__repeat_newline, STATE(1543), 1, sym_comment, - STATE(4220), 1, - sym_block, - STATE(4645), 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, - [22225] = 15, + ACTIONS(2694), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3825), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3829), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3831), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2692), 36, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22271] = 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, + ACTIONS(2848), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, STATE(1544), 1, sym_comment, - STATE(4376), 1, - sym_block, - STATE(4747), 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, - [22305] = 15, + STATE(1575), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3783), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3775), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2688), 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22351] = 14, 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, + ACTIONS(3823), 1, + anon_sym_DASH2, + ACTIONS(3833), 1, + anon_sym_PLUS2, + STATE(507), 1, + aux_sym__repeat_newline, STATE(1545), 1, sym_comment, - STATE(4387), 1, - sym_block, - STATE(4643), 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, - [22385] = 15, + ACTIONS(3821), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3825), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3829), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3831), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3835), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3827), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3839), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3837), 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(2692), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22429] = 16, 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, + ACTIONS(2848), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + ACTIONS(3789), 1, + anon_sym_bit_DASHand2, STATE(1546), 1, sym_comment, - STATE(4164), 1, - sym_block, - STATE(4662), 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, - [22465] = 15, + STATE(1576), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3783), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3775), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2688), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22511] = 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, + ACTIONS(3823), 1, + anon_sym_DASH2, + ACTIONS(3833), 1, + anon_sym_PLUS2, + ACTIONS(3841), 1, + anon_sym_bit_DASHand2, + STATE(507), 1, + aux_sym__repeat_newline, STATE(1547), 1, sym_comment, - STATE(4170), 1, - sym_block, - STATE(4670), 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, - [22545] = 15, + ACTIONS(3821), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3825), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3829), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3831), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3835), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3827), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3839), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3837), 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(2692), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22591] = 17, 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, + ACTIONS(2848), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + ACTIONS(3789), 1, + anon_sym_bit_DASHand2, + ACTIONS(3791), 1, + anon_sym_bit_DASHxor2, STATE(1548), 1, sym_comment, - STATE(4201), 1, - sym_block, - STATE(4672), 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, - [22625] = 15, + STATE(1577), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3783), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3775), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2688), 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, + [22675] = 16, 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, + ACTIONS(3823), 1, + anon_sym_DASH2, + ACTIONS(3833), 1, + anon_sym_PLUS2, + ACTIONS(3841), 1, + anon_sym_bit_DASHand2, + ACTIONS(3843), 1, + anon_sym_bit_DASHxor2, + STATE(507), 1, + aux_sym__repeat_newline, STATE(1549), 1, sym_comment, - STATE(4202), 1, - sym_block, - STATE(4675), 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, - [22705] = 18, + ACTIONS(3821), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3825), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3829), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3831), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3835), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3827), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3839), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3837), 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(2692), 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, + [22757] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3022), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(3794), 1, - anon_sym_LBRACE, + ACTIONS(2822), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, STATE(1550), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - ACTIONS(3637), 2, - anon_sym_export, + STATE(1579), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2702), 29, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(3093), 2, - sym_cmd_identifier, - sym_val_string, - STATE(3095), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [22791] = 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22833] = 12, 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, + ACTIONS(2822), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, STATE(1551), 1, sym_comment, - STATE(4244), 1, - sym_block, - STATE(4704), 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, - [22871] = 15, + STATE(1581), 1, + aux_sym__repeat_newline, + ACTIONS(2704), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2702), 33, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22907] = 9, 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, + ACTIONS(2822), 1, + sym__newline, STATE(1552), 1, sym_comment, - STATE(4265), 1, - sym_block, - STATE(4705), 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, - [22951] = 15, + STATE(1583), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2704), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2702), 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, + [22975] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, + ACTIONS(2822), 1, + sym__newline, STATE(1553), 1, sym_comment, - STATE(4321), 1, - sym_block, - STATE(4634), 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, - [23031] = 15, + STATE(1585), 1, + aux_sym__repeat_newline, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2704), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2702), 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, + [23039] = 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(3778), 1, - anon_sym_LBRACE, + ACTIONS(2822), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + ACTIONS(3789), 1, + anon_sym_bit_DASHand2, + ACTIONS(3791), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3793), 1, + anon_sym_bit_DASHor2, STATE(1554), 1, sym_comment, - STATE(4322), 1, - sym_block, - STATE(4635), 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, - [23111] = 15, + STATE(1587), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3783), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3775), 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), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [23125] = 19, 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, + ACTIONS(2822), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + ACTIONS(3789), 1, + anon_sym_bit_DASHand2, + ACTIONS(3791), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3793), 1, + anon_sym_bit_DASHor2, + ACTIONS(3795), 1, + anon_sym_and2, STATE(1555), 1, sym_comment, - STATE(4053), 1, - sym_block, - STATE(4637), 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, - [23191] = 15, + STATE(1589), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3783), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3775), 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, + [23213] = 20, 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, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + ACTIONS(3789), 1, + anon_sym_bit_DASHand2, + ACTIONS(3791), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3793), 1, + anon_sym_bit_DASHor2, + ACTIONS(3795), 1, + anon_sym_and2, + ACTIONS(3797), 1, + anon_sym_xor2, STATE(1556), 1, sym_comment, - STATE(4054), 1, - sym_block, - STATE(4639), 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, - [23271] = 15, + STATE(1591), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3783), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3775), 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), 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, + [23303] = 14, 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, + ACTIONS(2822), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, STATE(1557), 1, sym_comment, - STATE(4086), 1, - sym_block, - STATE(4664), 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, - [23351] = 15, + STATE(1593), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3775), 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), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_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, + [23381] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2822), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + STATE(1558), 1, + sym_comment, + STATE(1595), 1, + aux_sym__repeat_newline, + ACTIONS(2704), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2702), 35, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23453] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2822), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + STATE(1559), 1, + sym_comment, + STATE(1597), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3783), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3775), 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), 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23533] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2822), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + ACTIONS(3789), 1, + anon_sym_bit_DASHand2, + STATE(1560), 1, + sym_comment, + STATE(1599), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3783), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3775), 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), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23615] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3801), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3803), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3809), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3811), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3813), 1, anon_sym_LBRACE, - STATE(1558), 1, + STATE(1561), 1, sym_comment, - STATE(4090), 1, + STATE(4459), 1, sym_block, - STATE(4666), 1, + STATE(4763), 1, sym_returns, - STATE(4849), 1, + STATE(4916), 1, sym__type_annotation, - STATE(5007), 1, + STATE(5119), 1, sym__one_type, - STATE(5169), 1, + STATE(5123), 1, sym__multiple_types, - ACTIONS(3749), 2, + ACTIONS(3807), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3805), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159430,105 +159951,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23431] = 15, + [23695] = 17, 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(1559), 1, + ACTIONS(2822), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_DASH2, + ACTIONS(3785), 1, + anon_sym_PLUS2, + ACTIONS(3789), 1, + anon_sym_bit_DASHand2, + ACTIONS(3791), 1, + anon_sym_bit_DASHxor2, + STATE(1562), 1, sym_comment, - STATE(4091), 1, - sym_block, - STATE(4667), 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, - [23511] = 15, + STATE(1601), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3783), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3775), 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), 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, + [23779] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3801), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3803), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3809), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3811), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3813), 1, anon_sym_LBRACE, - STATE(1560), 1, + STATE(1563), 1, sym_comment, - STATE(4093), 1, + STATE(4467), 1, sym_block, - STATE(4668), 1, + STATE(4764), 1, sym_returns, - STATE(4849), 1, + STATE(4916), 1, sym__type_annotation, - STATE(5007), 1, + STATE(5119), 1, sym__one_type, - STATE(5169), 1, + STATE(5123), 1, sym__multiple_types, - ACTIONS(3749), 2, + ACTIONS(3807), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3805), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159560,40 +160083,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23591] = 15, + [23859] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3801), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3803), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3809), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3811), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3813), 1, anon_sym_LBRACE, - STATE(1561), 1, + STATE(1564), 1, sym_comment, - STATE(4137), 1, + STATE(4451), 1, sym_block, - STATE(4679), 1, + STATE(4734), 1, sym_returns, - STATE(4849), 1, + STATE(4916), 1, sym__type_annotation, - STATE(5007), 1, + STATE(5119), 1, sym__one_type, - STATE(5169), 1, + STATE(5123), 1, sym__multiple_types, - ACTIONS(3749), 2, + ACTIONS(3807), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3805), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159625,40 +160148,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23671] = 15, + [23939] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3801), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3803), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3809), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3811), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - STATE(1562), 1, + STATE(1565), 1, sym_comment, - STATE(4142), 1, + STATE(4308), 1, sym_block, - STATE(4680), 1, + STATE(4779), 1, sym_returns, - STATE(4849), 1, + STATE(4916), 1, sym__type_annotation, - STATE(5007), 1, + STATE(5119), 1, sym__one_type, - STATE(5169), 1, + STATE(5123), 1, sym__multiple_types, - ACTIONS(3749), 2, + ACTIONS(3807), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3805), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159690,112 +160213,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23751] = 21, + [24019] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3786), 1, - sym__newline, - ACTIONS(3796), 1, - anon_sym_RBRACK, - STATE(1563), 1, - sym_comment, - STATE(1703), 1, - aux_sym__types_body_repeat1, - STATE(1770), 1, - aux_sym__command_list_body_repeat1, - STATE(2107), 1, - sym__val_number_decimal, - STATE(4524), 1, - sym__command_name, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, - sym_val_string, - STATE(4815), 1, - sym__command_list_body, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [23843] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - STATE(1564), 1, - sym_comment, - STATE(1579), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1566), 1, + sym_comment, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2744), 29, + ACTIONS(2710), 30, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159824,36 +160275,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23919] = 12, + [24093] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - STATE(1565), 1, - sym_comment, - STATE(1581), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(2746), 2, + STATE(1567), 1, + sym_comment, + ACTIONS(2712), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2744), 33, + ACTIONS(2710), 34, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159886,30 +160336,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23993] = 9, + [24165] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - STATE(1566), 1, - sym_comment, - STATE(1583), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(3802), 2, + STATE(1568), 1, + sym_comment, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2746), 3, + ACTIONS(2712), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2744), 36, + ACTIONS(2710), 37, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159945,26 +160394,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24061] = 7, + [24231] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - STATE(1567), 1, - sym_comment, - STATE(1585), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(3806), 2, + STATE(1569), 1, + sym_comment, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2746), 5, + ACTIONS(2712), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2744), 38, + ACTIONS(2710), 39, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160002,51 +160450,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24125] = 18, + [24293] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3841), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3843), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3845), 1, anon_sym_bit_DASHor2, - STATE(1568), 1, - sym_comment, - STATE(1587), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1570), 1, + sym_comment, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160055,7 +160501,8 @@ 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(2710), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160070,53 +160517,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [24211] = 19, + [24377] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3841), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3843), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3845), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3847), 1, anon_sym_and2, - STATE(1569), 1, - sym_comment, - STATE(1678), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1571), 1, + sym_comment, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160125,7 +160570,8 @@ 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(2710), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160139,55 +160585,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [24299] = 20, + [24463] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3841), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3843), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3845), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3847), 1, anon_sym_and2, - ACTIONS(3826), 1, + ACTIONS(3849), 1, anon_sym_xor2, - STATE(1570), 1, - sym_comment, - STATE(1590), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1572), 1, + sym_comment, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160196,7 +160640,8 @@ 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(2710), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160209,40 +160654,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [24389] = 14, + [24551] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - STATE(1571), 1, - sym_comment, - STATE(1592), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1573), 1, + sym_comment, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3814), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160251,7 +160694,8 @@ 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(2710), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160273,33 +160717,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24467] = 11, + [24627] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - STATE(1572), 1, - sym_comment, - STATE(1594), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(2746), 2, + STATE(1574), 1, + sym_comment, + ACTIONS(2712), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2744), 35, + ACTIONS(2710), 36, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160334,45 +160777,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24539] = 15, + [24697] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - STATE(1573), 1, - sym_comment, - STATE(1596), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1575), 1, + sym_comment, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160381,7 +160822,8 @@ 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(2710), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160399,47 +160841,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24619] = 16, + [24775] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3841), 1, anon_sym_bit_DASHand2, - STATE(1574), 1, - sym_comment, - STATE(1598), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1576), 1, + sym_comment, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160448,7 +160888,8 @@ 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(2710), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160465,49 +160906,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24701] = 17, + [24855] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3841), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3843), 1, anon_sym_bit_DASHxor2, - STATE(1575), 1, - sym_comment, - STATE(1600), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1577), 1, + sym_comment, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160516,7 +160955,8 @@ 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(2710), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160532,173 +160972,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [24785] = 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(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, + [24937] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3828), 1, - anon_sym_LBRACK, - ACTIONS(3830), 1, - anon_sym_DOLLAR, - ACTIONS(3832), 1, - anon_sym_LBRACE, - STATE(1577), 1, - sym_comment, - STATE(2107), 1, - sym__val_number_decimal, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(4760), 2, - sym_cmd_identifier, - sym_val_string, - STATE(4762), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [24951] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2837), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3779), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3785), 1, anon_sym_PLUS2, STATE(1578), 1, sym_comment, - STATE(1614), 1, + STATE(1606), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3759), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3761), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3781), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2702), 29, + ACTIONS(2718), 29, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160728,38 +161035,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25027] = 12, + [25013] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, STATE(1579), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2706), 30, + ACTIONS(2722), 30, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -160790,35 +161097,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25101] = 12, + [25087] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2837), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3779), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3785), 1, anon_sym_PLUS2, STATE(1580), 1, sym_comment, - STATE(1615), 1, + STATE(1607), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, + ACTIONS(2720), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3759), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3761), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3787), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 33, + ACTIONS(2718), 33, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160852,33 +161159,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25175] = 11, + [25161] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, STATE(1581), 1, sym_comment, - ACTIONS(2708), 2, + ACTIONS(2724), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 34, + ACTIONS(2722), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -160913,29 +161220,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25247] = 9, + [25233] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2837), 1, sym__newline, STATE(1582), 1, sym_comment, - STATE(1616), 1, + STATE(1608), 1, aux_sym__repeat_newline, - ACTIONS(3802), 2, + ACTIONS(3759), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3761), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2704), 3, + ACTIONS(2720), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2702), 36, + ACTIONS(2718), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160972,27 +161279,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25315] = 8, + [25301] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, STATE(1583), 1, sym_comment, - ACTIONS(3838), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2708), 3, + ACTIONS(2724), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2706), 37, + ACTIONS(2722), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -161030,25 +161337,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25381] = 7, + [25367] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2837), 1, sym__newline, STATE(1584), 1, sym_comment, - STATE(1617), 1, + STATE(1609), 1, aux_sym__repeat_newline, - ACTIONS(3806), 2, + ACTIONS(3761), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2704), 5, + ACTIONS(2720), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2702), 38, + ACTIONS(2718), 38, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -161087,23 +161394,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25445] = 6, + [25431] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, STATE(1585), 1, sym_comment, - ACTIONS(3842), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2708), 5, + ACTIONS(2724), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2706), 39, + ACTIONS(2722), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -161143,51 +161450,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25507] = 18, + [25493] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2837), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3779), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3785), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3789), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3791), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3793), 1, anon_sym_bit_DASHor2, STATE(1586), 1, sym_comment, - STATE(1618), 1, + STATE(1610), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3759), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3761), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3781), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3783), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3775), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161196,7 +161503,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(2718), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161211,49 +161518,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25593] = 17, + [25579] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3841), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3843), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3845), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, STATE(1587), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161262,7 +161569,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(2722), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161278,53 +161585,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25677] = 19, + [25663] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2837), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3779), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3785), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3789), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3791), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3793), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3795), 1, anon_sym_and2, STATE(1588), 1, sym_comment, - STATE(1619), 1, + STATE(1611), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(3759), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3761), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3763), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3777), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3787), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3781), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3783), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3775), 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(2718), 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, + [25751] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3823), 1, + anon_sym_DASH2, + ACTIONS(3833), 1, + anon_sym_PLUS2, + ACTIONS(3841), 1, + anon_sym_bit_DASHand2, + ACTIONS(3843), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3845), 1, + anon_sym_bit_DASHor2, + ACTIONS(3847), 1, + anon_sym_and2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(1589), 1, + sym_comment, + ACTIONS(3821), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161333,7 +161707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 13, + ACTIONS(2722), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161347,55 +161722,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [25765] = 20, + [25837] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2875), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3779), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3785), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3789), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3791), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3793), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3795), 1, anon_sym_and2, - ACTIONS(3826), 1, + ACTIONS(3797), 1, anon_sym_xor2, - STATE(1589), 1, + STATE(1590), 1, sym_comment, - STATE(1620), 1, + STATE(1612), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3759), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3761), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3781), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3783), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3775), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161404,7 +161779,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(2718), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161417,53 +161792,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [25855] = 19, + [25927] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3841), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3843), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3845), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3847), 1, anon_sym_and2, - ACTIONS(3862), 1, + ACTIONS(3849), 1, anon_sym_xor2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(1590), 1, + STATE(1591), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161472,7 +161847,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(2722), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161486,40 +161861,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [25943] = 14, + [26015] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2837), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3779), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3785), 1, anon_sym_PLUS2, - STATE(1591), 1, + STATE(1592), 1, sym_comment, - STATE(1621), 1, + STATE(1613), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3759), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3761), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3781), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3814), 8, + ACTIONS(3775), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161528,7 +161903,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(2718), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161550,38 +161925,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26021] = 13, + [26093] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(1592), 1, + STATE(1593), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3850), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161590,7 +161965,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(2722), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161613,32 +161988,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26097] = 11, + [26169] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2837), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3779), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3785), 1, anon_sym_PLUS2, - STATE(1593), 1, + STATE(1594), 1, sym_comment, - STATE(1622), 1, + STATE(1614), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, + ACTIONS(2720), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3759), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3761), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2702), 35, + ACTIONS(2718), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -161674,30 +162049,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26169] = 10, + [26241] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(1594), 1, + STATE(1595), 1, sym_comment, - ACTIONS(2708), 2, + ACTIONS(2724), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2706), 36, + ACTIONS(2722), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -161734,45 +162109,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26239] = 15, + [26311] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2837), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3779), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3785), 1, anon_sym_PLUS2, - STATE(1595), 1, + STATE(1596), 1, sym_comment, - STATE(1623), 1, + STATE(1615), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3759), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3761), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3781), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3783), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3775), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161781,7 +162156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 17, + ACTIONS(2718), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161799,43 +162174,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26319] = 14, + [26391] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(1596), 1, + STATE(1597), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161844,7 +162219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 18, + ACTIONS(2722), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161863,47 +162238,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26397] = 16, + [26469] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2837), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3779), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3785), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3789), 1, anon_sym_bit_DASHand2, - STATE(1597), 1, + STATE(1598), 1, sym_comment, - STATE(1624), 1, + STATE(1616), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3759), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3761), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3781), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3783), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3775), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161912,7 +162287,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(2718), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161929,45 +162304,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26479] = 15, + [26551] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3841), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(1598), 1, + STATE(1599), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161976,7 +162351,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(2722), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161994,49 +162369,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26559] = 17, + [26631] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2837), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3779), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3785), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3789), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3791), 1, anon_sym_bit_DASHxor2, - STATE(1599), 1, + STATE(1600), 1, sym_comment, - STATE(1625), 1, + STATE(1617), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3759), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3761), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3781), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3783), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3775), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162045,7 +162420,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(2718), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162061,47 +162436,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [26643] = 16, + [26715] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3841), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3843), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(1600), 1, + STATE(1601), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162110,7 +162485,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(2722), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -162127,41 +162502,303 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [26725] = 13, + [26797] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1602), 1, + sym_comment, + STATE(4309), 1, + sym_block, + STATE(4780), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [26877] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1603), 1, + sym_comment, + STATE(4311), 1, + sym_block, + STATE(4783), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [26957] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1604), 1, + sym_comment, + STATE(4312), 1, + sym_block, + STATE(4784), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [27037] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3016), 1, + anon_sym_DQUOTE, + ACTIONS(3018), 1, + anon_sym_SQUOTE, + ACTIONS(3020), 1, + anon_sym_BQUOTE, + ACTIONS(3028), 1, + sym_raw_string_begin, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3853), 1, + anon_sym_LBRACK, + ACTIONS(3855), 1, + anon_sym_DOLLAR, + ACTIONS(3857), 1, + anon_sym_LBRACE, + STATE(1605), 1, + sym_comment, + STATE(2102), 1, + sym__val_number_decimal, + ACTIONS(3635), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3163), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3210), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2576), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3637), 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, + [27123] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - STATE(1601), 1, - sym_comment, - STATE(1627), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1606), 1, + sym_comment, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2712), 29, + ACTIONS(2746), 30, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162190,36 +162827,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26801] = 12, + [27197] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - STATE(1602), 1, - sym_comment, - STATE(1629), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, + STATE(1607), 1, + sym_comment, + ACTIONS(2748), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 33, + ACTIONS(2746), 34, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162252,30 +162888,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26875] = 9, + [27269] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - STATE(1603), 1, - sym_comment, - STATE(1631), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(3802), 2, + STATE(1608), 1, + sym_comment, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2714), 3, + ACTIONS(2748), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2712), 36, + ACTIONS(2746), 37, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162311,91 +162946,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26943] = 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(1604), 1, - sym_comment, - STATE(4550), 1, - sym_block, - STATE(4719), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [27023] = 7, + [27335] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - STATE(1605), 1, - sym_comment, - STATE(1633), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(3806), 2, + STATE(1609), 1, + sym_comment, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2714), 5, + ACTIONS(2748), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2712), 38, + ACTIONS(2746), 39, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162433,51 +163002,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27087] = 18, + [27397] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3841), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3843), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3845), 1, anon_sym_bit_DASHor2, - STATE(1606), 1, - sym_comment, - STATE(1635), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1610), 1, + sym_comment, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162486,7 +163053,8 @@ 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(2746), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162501,53 +163069,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [27173] = 19, + [27481] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3841), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3843), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3845), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3847), 1, anon_sym_and2, - STATE(1607), 1, - sym_comment, - STATE(1637), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1611), 1, + sym_comment, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162556,7 +163122,8 @@ 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(2746), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162570,55 +163137,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [27261] = 20, + [27567] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3841), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3843), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3845), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3847), 1, anon_sym_and2, - ACTIONS(3826), 1, + ACTIONS(3849), 1, anon_sym_xor2, - STATE(1608), 1, - sym_comment, - STATE(1639), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1612), 1, + sym_comment, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162627,7 +163192,8 @@ 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(2746), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162640,40 +163206,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [27351] = 14, + [27655] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - STATE(1609), 1, - sym_comment, - STATE(1641), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1613), 1, + sym_comment, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3814), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162682,7 +163246,8 @@ 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(2746), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162704,33 +163269,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27429] = 11, + [27731] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - STATE(1610), 1, - sym_comment, - STATE(1643), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, + STATE(1614), 1, + sym_comment, + ACTIONS(2748), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2712), 35, + ACTIONS(2746), 36, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162765,45 +163329,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27501] = 15, + [27801] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - STATE(1611), 1, - sym_comment, - STATE(1645), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1615), 1, + sym_comment, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162812,7 +163374,8 @@ 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(2746), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162830,47 +163393,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27581] = 16, + [27879] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3841), 1, anon_sym_bit_DASHand2, - STATE(1612), 1, - sym_comment, - STATE(1647), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1616), 1, + sym_comment, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162879,7 +163440,8 @@ 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(2746), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162896,49 +163458,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27663] = 17, + [27959] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3841), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3843), 1, anon_sym_bit_DASHxor2, - STATE(1613), 1, - sym_comment, - STATE(1649), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1617), 1, + sym_comment, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162947,7 +163507,8 @@ 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(2746), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162963,38 +163524,1196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [27747] = 12, + [28041] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1618), 1, + sym_comment, + STATE(4323), 1, + sym_block, + STATE(4800), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [28121] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1619), 1, + sym_comment, + STATE(4324), 1, + sym_block, + STATE(4801), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [28201] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1620), 1, + sym_comment, + STATE(4264), 1, + sym_block, + STATE(4707), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [28281] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1621), 1, + sym_comment, + STATE(4452), 1, + sym_block, + STATE(4741), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [28361] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2950), 1, + aux_sym_cmd_identifier_token2, + STATE(1622), 1, + sym_comment, + ACTIONS(884), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(858), 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, + [28421] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1623), 1, + sym_comment, + STATE(4598), 1, + sym_block, + STATE(4832), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [28501] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1624), 1, + sym_comment, + STATE(4600), 1, + sym_block, + STATE(4835), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [28581] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1625), 1, + sym_comment, + STATE(4469), 1, + sym_block, + STATE(4766), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [28661] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1626), 1, + sym_comment, + STATE(4471), 1, + sym_block, + STATE(4768), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [28741] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1627), 1, + sym_comment, + STATE(4579), 1, + sym_block, + STATE(4716), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [28821] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1628), 1, + sym_comment, + STATE(4615), 1, + sym_block, + STATE(4694), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [28901] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1629), 1, + sym_comment, + STATE(4644), 1, + sym_block, + STATE(4751), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [28981] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1630), 1, + sym_comment, + STATE(4343), 1, + sym_block, + STATE(4690), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [29061] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1631), 1, + sym_comment, + STATE(4344), 1, + sym_block, + STATE(4691), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [29141] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1632), 1, + sym_comment, + STATE(4357), 1, + sym_block, + STATE(4695), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [29221] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1633), 1, + sym_comment, + STATE(4358), 1, + sym_block, + STATE(4696), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [29301] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1634), 1, + sym_comment, + STATE(4381), 1, + sym_block, + STATE(4709), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [29381] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1635), 1, + sym_comment, + STATE(4551), 1, + sym_block, + STATE(4697), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [29461] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3861), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3871), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1614), 1, + STATE(1636), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3859), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3863), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3867), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3869), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3873), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3865), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2720), 30, + ACTIONS(2578), 31, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163008,6 +164727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163025,33 +164745,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27821] = 11, + [29533] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3861), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3871), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1615), 1, + STATE(1637), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2580), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3863), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3867), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3869), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3873), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 34, + ACTIONS(2578), 35, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163065,6 +164783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163086,27 +164805,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27893] = 8, + [29603] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1616), 1, + STATE(1638), 1, sym_comment, - ACTIONS(3838), 2, + ACTIONS(3863), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3867), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3869), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2722), 3, + ACTIONS(2580), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2720), 37, + ACTIONS(2578), 38, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163121,6 +164838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163144,23 +164862,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27959] = 6, + [29667] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1617), 1, + STATE(1639), 1, sym_comment, - ACTIONS(3842), 2, + ACTIONS(3867), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2722), 5, + ACTIONS(2580), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2720), 39, + ACTIONS(2578), 40, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163175,6 +164891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163200,49 +164917,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28021] = 17, + [29727] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3861), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3871), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3879), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3881), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3883), 1, anon_sym_bit_DASHor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1618), 1, + STATE(1640), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3859), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3863), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3867), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3869), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3873), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3865), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3877), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3875), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163251,7 +164966,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(2578), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163264,54 +164979,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [28105] = 18, + [29809] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3861), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3871), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3879), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3881), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3883), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3885), 1, anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1619), 1, + STATE(1641), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3859), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3863), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3867), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3869), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3873), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3865), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3877), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3875), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163320,7 +165034,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(2578), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163333,55 +165047,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [28191] = 19, + [29893] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3861), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3871), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3879), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3881), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3883), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3885), 1, anon_sym_and2, - ACTIONS(3862), 1, + ACTIONS(3887), 1, anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1620), 1, + STATE(1642), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3859), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3863), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3867), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3869), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3873), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3865), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3877), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3875), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163390,7 +165103,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(2578), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163403,39 +165116,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or2, - [28279] = 13, + [29979] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3861), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3871), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1621), 1, + STATE(1643), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3859), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3863), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3867), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3869), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3873), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3865), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3850), 8, + ACTIONS(3875), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163444,7 +165156,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(2578), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163457,6 +165169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163467,30 +165180,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28355] = 10, + [30053] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3861), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3871), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1622), 1, + STATE(1644), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2580), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3863), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3867), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3869), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2720), 36, + ACTIONS(2578), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163504,6 +165215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163527,43 +165239,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28425] = 14, + [30121] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3861), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3871), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1623), 1, + STATE(1645), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3859), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3863), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3867), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3869), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3873), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3865), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3877), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3875), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163572,7 +165282,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(2578), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163585,51 +165295,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28503] = 15, + [30197] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3861), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3871), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3879), 1, anon_sym_bit_DASHand2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1624), 1, + STATE(1646), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3859), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3863), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3867), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3869), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3873), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3865), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3877), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3875), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163638,7 +165347,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(2578), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163651,52 +165360,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28583] = 16, + [30275] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3861), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3871), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3879), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3881), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1625), 1, + STATE(1647), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3859), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3863), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3867), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3869), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3873), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3865), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3877), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3875), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163705,7 +165413,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(2578), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163718,395 +165426,810 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [28665] = 13, + [30355] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1626), 1, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1648), 1, sym_comment, - STATE(1650), 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(2728), 29, - anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [28741] = 12, + STATE(4419), 1, + sym_block, + STATE(4700), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [30435] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1627), 1, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1649), 1, sym_comment, - ACTIONS(3834), 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, - 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(2732), 30, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [28815] = 12, + STATE(4421), 1, + sym_block, + STATE(4704), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [30515] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1628), 1, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1650), 1, sym_comment, + STATE(4433), 1, + sym_block, + STATE(4705), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [30595] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3889), 1, + anon_sym_LBRACK, + ACTIONS(3891), 1, + anon_sym_DOLLAR, + ACTIONS(3893), 1, + anon_sym_LBRACE, STATE(1651), 1, - aux_sym__repeat_newline, - ACTIONS(2730), 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(2728), 33, + sym_comment, + STATE(2102), 1, + sym__val_number_decimal, + ACTIONS(3635), 2, + anon_sym_export, anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [28889] = 11, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3163), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3210), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3637), 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, + [30681] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1629), 1, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1652), 1, sym_comment, - ACTIONS(2734), 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, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2732), 34, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - 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, - [28961] = 9, + STATE(4382), 1, + sym_block, + STATE(4710), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [30761] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - STATE(1630), 1, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1653), 1, sym_comment, - STATE(1652), 1, - aux_sym__repeat_newline, - 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(2730), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2728), 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, - [29029] = 8, + STATE(4383), 1, + sym_block, + STATE(4711), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [30841] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1631), 1, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3769), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3895), 1, + anon_sym_LBRACK, + ACTIONS(3897), 1, + anon_sym_DOLLAR, + ACTIONS(3899), 1, + anon_sym_LBRACE, + STATE(1654), 1, sym_comment, - 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(2734), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2732), 37, + STATE(2108), 1, + sym__val_number_decimal, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3765), 2, + anon_sym_export, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_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, - [29095] = 7, + STATE(4797), 2, + sym_cmd_identifier, + sym_val_string, + STATE(4806), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(3594), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3767), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [30927] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - STATE(1632), 1, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1655), 1, + sym_comment, + STATE(4453), 1, + sym_block, + STATE(4761), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [31007] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1656), 1, + sym_comment, + STATE(4384), 1, + sym_block, + STATE(4714), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [31087] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1657), 1, + sym_comment, + STATE(4514), 1, + sym_block, + STATE(4753), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [31167] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1658), 1, + sym_comment, + STATE(4517), 1, + sym_block, + STATE(4756), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [31247] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1659), 1, + sym_comment, + STATE(4399), 1, + sym_block, + STATE(4719), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [31327] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1660), 1, sym_comment, - STATE(1653), 1, - aux_sym__repeat_newline, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2730), 5, + ACTIONS(2537), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2728), 38, - anon_sym_in, + ACTIONS(3901), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164118,6 +166241,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2535), 29, + anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -164137,6 +166263,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, @@ -164144,24 +166272,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29159] = 6, + [31387] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1633), 1, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1661), 1, sym_comment, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2734), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2732), 39, - anon_sym_in, + STATE(4403), 1, + sym_block, + STATE(4720), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [31467] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2950), 1, + aux_sym_cmd_identifier_token2, + STATE(1662), 1, + sym_comment, + ACTIONS(2506), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164173,8 +166357,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_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2508), 29, + anon_sym_in, + anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -164185,75 +166377,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29221] = 18, - ACTIONS(3), 1, + [31527] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2832), 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, - STATE(1634), 1, + ACTIONS(2950), 1, + aux_sym_cmd_identifier_token2, + STATE(1663), 1, sym_comment, - STATE(1654), 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), 14, + ACTIONS(2521), 17, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164264,125 +166412,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [29307] = 17, - 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, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1635), 1, - sym_comment, - ACTIONS(3834), 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, - 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(2523), 29, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 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_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [29391] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2832), 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, - STATE(1636), 1, - sym_comment, - STATE(1655), 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, @@ -164390,452 +166432,316 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 13, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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, - 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, - 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_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(2732), 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, - [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_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + anon_sym_PLUS2, 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, - 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, - ACTIONS(3862), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1639), 1, + [31587] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1664), 1, sym_comment, - ACTIONS(3834), 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, - 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_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(2732), 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, - [29743] = 14, + STATE(4578), 1, + sym_block, + STATE(4717), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [31667] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1640), 1, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1665), 1, sym_comment, - STATE(1657), 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(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), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_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, - [29821] = 13, + STATE(4603), 1, + sym_block, + STATE(4758), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [31747] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1641), 1, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1666), 1, sym_comment, - ACTIONS(3834), 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, - 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(3850), 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(2732), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [29897] = 11, + STATE(4630), 1, + sym_block, + STATE(4767), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [31827] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1642), 1, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1667), 1, sym_comment, - STATE(1658), 1, - aux_sym__repeat_newline, - ACTIONS(2730), 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(2728), 35, - anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [29969] = 10, + STATE(4576), 1, + sym_block, + STATE(4808), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [31907] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1643), 1, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(3904), 1, + anon_sym_DOT, + STATE(1668), 1, sym_comment, - ACTIONS(2734), 2, + STATE(1838), 1, + sym__immediate_decimal, + ACTIONS(3906), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3908), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(690), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1603), 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(2732), 36, + anon_sym_PLUS2, + ACTIONS(1599), 30, anon_sym_in, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -164854,255 +166760,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30039] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1644), 1, - sym_comment, - STATE(1659), 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), 17, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30119] = 14, + [31981] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1645), 1, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1669), 1, sym_comment, - ACTIONS(3834), 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, - 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_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(2732), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30197] = 16, + STATE(4130), 1, + sym_block, + STATE(4730), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [32061] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - STATE(1646), 1, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1670), 1, sym_comment, - STATE(1660), 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), 16, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30279] = 15, + STATE(4243), 1, + sym_block, + STATE(4682), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [32141] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(3779), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3785), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(1527), 1, aux_sym__repeat_newline, - STATE(1647), 1, + STATE(1671), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3759), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3761), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3781), 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(2756), 29, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 17, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165117,60 +166948,180 @@ 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, - [30359] = 17, + [32217] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1672), 1, + sym_comment, + STATE(4246), 1, + sym_block, + STATE(4683), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [32297] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1673), 1, + sym_comment, + STATE(4260), 1, + sym_block, + STATE(4699), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [32377] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2937), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3779), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3785), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - STATE(1648), 1, - sym_comment, - STATE(1661), 1, + STATE(1529), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1674), 1, + sym_comment, + ACTIONS(2758), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3759), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3761), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3787), 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(2756), 33, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165185,48 +167136,316 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30443] = 16, + [32451] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1675), 1, + sym_comment, + STATE(4262), 1, + sym_block, + STATE(4701), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [32531] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1676), 1, + sym_comment, + ACTIONS(2933), 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(2935), 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, + [32589] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1677), 1, + sym_comment, + STATE(4263), 1, + sym_block, + STATE(4706), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [32669] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3801), 1, + anon_sym_COLON, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(1678), 1, + sym_comment, + STATE(4133), 1, + sym_block, + STATE(4731), 1, + sym_returns, + STATE(4916), 1, + sym__type_annotation, + STATE(5119), 1, + sym__one_type, + STATE(5123), 1, + sym__multiple_types, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [32749] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3914), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3918), 1, + anon_sym_and2, + ACTIONS(3928), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3932), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3934), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1649), 1, + ACTIONS(3936), 1, + anon_sym_bit_DASHor2, + STATE(1679), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3912), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3916), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3926), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3930), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3920), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3910), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165235,7 +167454,8 @@ 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(2578), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165247,56 +167467,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - [30525] = 12, + [32832] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1650), 1, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1615), 1, + sym__unquoted_pattern, + STATE(1680), 1, sym_comment, - ACTIONS(3834), 2, + STATE(1941), 1, + sym__immediate_decimal, + ACTIONS(3938), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3940), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(780), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1603), 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(2740), 30, + anon_sym_PLUS2, + ACTIONS(1599), 30, anon_sym_in, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -165307,40 +167512,54 @@ 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, - [30599] = 11, + [32903] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3914), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3928), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1651), 1, + STATE(1681), 1, sym_comment, - ACTIONS(2742), 2, + ACTIONS(3912), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3916), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3926), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3930), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2740), 34, + ACTIONS(3920), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2578), 30, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165353,7 +167572,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_and2, anon_sym_xor2, anon_sym_or2, @@ -165364,10 +167582,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -165375,28 +167589,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30671] = 8, + [32974] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1652), 1, + STATE(1682), 1, sym_comment, - 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(2742), 3, + ACTIONS(2537), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2740), 37, - anon_sym_in, + ACTIONS(3901), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165408,7 +167613,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, + ACTIONS(2535), 29, + anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -165428,28 +167634,99 @@ 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, - [30737] = 6, + [33033] = 19, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3753), 1, + anon_sym_DASH_DASH, + STATE(1683), 1, + sym_comment, + STATE(1710), 1, + aux_sym_decl_def_repeat1, + STATE(2102), 1, + sym__val_number_decimal, + STATE(2186), 1, + sym_long_flag, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(3685), 1, + sym__command_name, + ACTIONS(3755), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3757), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 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, + [33120] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1653), 1, + STATE(1684), 1, sym_comment, - ACTIONS(3842), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2742), 5, + ACTIONS(2580), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2740), 39, + ACTIONS(2578), 39, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165462,7 +167739,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_and2, anon_sym_xor2, @@ -165489,58 +167765,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30799] = 17, + [33179] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3914), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3928), 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, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1654), 1, + STATE(1685), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(2580), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3916), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3926), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3930), 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(2578), 34, + ts_builtin_sym_end, 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(2740), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165552,126 +167803,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_and2, - anon_sym_xor2, - anon_sym_or2, - [30883] = 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(1655), 1, - sym_comment, - ACTIONS(3834), 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, - 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_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(2740), 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, - [30969] = 19, - 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, - ACTIONS(3862), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1656), 1, - sym_comment, - ACTIONS(3834), 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, - 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_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -165679,76 +167813,10 @@ 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, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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, - [31057] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1657), 1, - sym_comment, - ACTIONS(3834), 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, - 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(3850), 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(2740), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -165756,30 +167824,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31133] = 10, + [33248] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1658), 1, + STATE(1686), 1, sym_comment, - ACTIONS(2742), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3916), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3926), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2740), 36, + ACTIONS(2580), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2578), 37, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165792,7 +167856,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_and2, anon_sym_xor2, anon_sym_or2, @@ -165816,365 +167880,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31203] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1659), 1, - sym_comment, - ACTIONS(3834), 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, - 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_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(2740), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [31281] = 15, - 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, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1660), 1, - sym_comment, - ACTIONS(3834), 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, - 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_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(2740), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [31361] = 16, - 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, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1661), 1, - sym_comment, - ACTIONS(3834), 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, - 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_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(2740), 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, - [31443] = 15, + [33311] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1662), 1, - sym_comment, - STATE(4545), 1, - sym_block, - STATE(4699), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31523] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1663), 1, - sym_comment, - STATE(4553), 1, - sym_block, - STATE(4722), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31603] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3809), 1, anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1664), 1, - sym_comment, - STATE(4567), 1, - sym_block, - STATE(4734), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + sym__newline, + ACTIONS(3944), 1, + anon_sym_RBRACK, + STATE(1687), 1, + sym_comment, + STATE(1728), 1, + aux_sym__types_body_repeat1, + STATE(1799), 1, + aux_sym__types_body_repeat3, + STATE(4461), 1, sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, + STATE(4884), 1, + sym__type_annotation, + STATE(5093), 1, + sym__types_body, + ACTIONS(3807), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3805), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -166206,37 +167943,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [31683] = 11, + [33388] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3914), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3928), 1, anon_sym_PLUS2, - STATE(1665), 1, + ACTIONS(3932), 1, + anon_sym_bit_DASHand2, + ACTIONS(3934), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3936), 1, + anon_sym_bit_DASHor2, + STATE(1688), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3912), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3916), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3926), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3930), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3920), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2533), 31, + ACTIONS(3922), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3910), 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(2578), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166248,51 +168005,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_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_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [31755] = 10, + [33469] = 19, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(2950), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3753), 1, + anon_sym_DASH_DASH, + STATE(1689), 1, + sym_comment, + STATE(1706), 1, + aux_sym_decl_def_repeat1, + STATE(2102), 1, + sym__val_number_decimal, + STATE(2186), 1, + sym_long_flag, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(3705), 1, + sym__command_name, + ACTIONS(3755), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3757), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 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, + [33556] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3914), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3918), 1, + anon_sym_and2, + ACTIONS(3928), 1, anon_sym_PLUS2, - STATE(1666), 1, + ACTIONS(3932), 1, + anon_sym_bit_DASHand2, + ACTIONS(3934), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3936), 1, + anon_sym_bit_DASHor2, + ACTIONS(3946), 1, + anon_sym_xor2, + STATE(1690), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(3912), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3916), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3926), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3930), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2533), 35, + ACTIONS(3920), 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(3910), 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(2578), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166304,49 +168142,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_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, - [31825] = 7, + [33641] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(1667), 1, + ACTIONS(3914), 1, + anon_sym_DASH2, + ACTIONS(3928), 1, + anon_sym_PLUS2, + STATE(1691), 1, sym_comment, - ACTIONS(3868), 2, + ACTIONS(3912), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3916), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3926), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2533), 38, + ACTIONS(3930), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3920), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3910), 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(2578), 22, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166358,47 +168194,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_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_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31889] = 5, + [33714] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1668), 1, + ACTIONS(3914), 1, + anon_sym_DASH2, + ACTIONS(3928), 1, + anon_sym_PLUS2, + STATE(1692), 1, sym_comment, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, + ACTIONS(2580), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3916), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2533), 40, + ACTIONS(3924), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3926), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2578), 36, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166411,9 +168239,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, @@ -166432,54 +168257,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31949] = 16, + [33781] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3914), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3928), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, - anon_sym_bit_DASHand2, - ACTIONS(3886), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, - anon_sym_bit_DASHor2, - STATE(1669), 1, + STATE(1693), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3912), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3916), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3926), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3930), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3920), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(3910), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166488,7 +168305,8 @@ 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(2578), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166500,54 +168318,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [32031] = 17, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33856] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3914), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3928), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(3932), 1, anon_sym_bit_DASHand2, - ACTIONS(3886), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, - anon_sym_bit_DASHor2, - ACTIONS(3890), 1, - anon_sym_and2, - STATE(1670), 1, + STATE(1694), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3912), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3916), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3926), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3930), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3920), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(3910), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166556,7 +168369,8 @@ 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(2578), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166568,55 +168382,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [32115] = 18, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33933] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3914), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3928), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(3932), 1, anon_sym_bit_DASHand2, - ACTIONS(3886), 1, + ACTIONS(3934), 1, anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, - anon_sym_bit_DASHor2, - ACTIONS(3890), 1, - anon_sym_and2, - ACTIONS(3892), 1, - anon_sym_xor2, - STATE(1671), 1, + STATE(1695), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3912), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3916), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3926), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3930), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3920), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(3910), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166625,7 +168434,8 @@ 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(2578), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166637,40 +168447,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [32201] = 12, + anon_sym_bit_DASHor2, + [34012] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3876), 1, - anon_sym_PLUS2, - STATE(1672), 1, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1691), 1, + sym__unquoted_pattern, + STATE(1696), 1, sym_comment, - ACTIONS(3864), 2, + STATE(1919), 1, + sym__immediate_decimal, + ACTIONS(3938), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3940), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(726), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1679), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3872), 2, + anon_sym_PLUS2, + ACTIONS(1677), 30, + anon_sym_in, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3880), 8, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [34083] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(3948), 1, + anon_sym_DOT, + STATE(1697), 1, + sym_comment, + STATE(1879), 1, + sym__immediate_decimal, + ACTIONS(3950), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3952), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1965), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1603), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1599), 29, anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -166678,66 +168555,113 @@ 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, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, - [32275] = 9, + [34156] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3876), 1, - anon_sym_PLUS2, - STATE(1673), 1, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3954), 1, + anon_sym_DASH_DASH, + STATE(1698), 1, sym_comment, - ACTIONS(2535), 2, + STATE(1994), 1, + aux_sym_decl_def_repeat1, + STATE(2102), 1, + sym__val_number_decimal, + STATE(2186), 1, + sym_long_flag, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(3739), 1, + sym__command_name, + ACTIONS(3635), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3637), 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, + [34242] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3956), 1, + anon_sym_DOT, + ACTIONS(3958), 1, + aux_sym__immediate_decimal_token5, + STATE(1699), 1, + sym_comment, + ACTIONS(747), 8, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2533), 37, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 35, 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_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -166756,47 +168680,242 @@ 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, - [32343] = 13, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [34302] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3876), 1, - anon_sym_PLUS2, - STATE(1674), 1, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3954), 1, + anon_sym_DASH_DASH, + STATE(1700), 1, + sym_comment, + STATE(1994), 1, + aux_sym_decl_def_repeat1, + STATE(2102), 1, + sym__val_number_decimal, + STATE(2186), 1, + sym_long_flag, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(3699), 1, + sym__command_name, + ACTIONS(3635), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3637), 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, + [34388] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3960), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3962), 1, + aux_sym__immediate_decimal_token5, + STATE(1701), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(739), 8, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + 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, - ACTIONS(3882), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + 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, + [34448] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3769), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3771), 1, + sym__newline, + STATE(1702), 1, + sym_comment, + STATE(1758), 1, + aux_sym__command_list_body_repeat1, + STATE(2108), 1, + sym__val_number_decimal, + STATE(2116), 1, + aux_sym__types_body_repeat1, + STATE(4516), 1, + sym__command_name, + STATE(4737), 1, + sym_cmd_identifier, + STATE(4738), 1, + sym_val_string, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3765), 2, + anon_sym_export, + anon_sym_in, + STATE(3594), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3767), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [34534] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1691), 1, + sym__unquoted_pattern, + STATE(1703), 1, + sym_comment, + STATE(1983), 1, + sym__immediate_decimal, + ACTIONS(3964), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3966), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(726), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1679), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1677), 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, @@ -166804,64 +168923,251 @@ 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, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, - [32419] = 14, + [34604] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3876), 1, - anon_sym_PLUS2, - ACTIONS(3884), 1, - anon_sym_bit_DASHand2, - STATE(1675), 1, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1621), 1, + anon_sym_DOT, + STATE(1704), 1, sym_comment, - ACTIONS(3864), 2, + STATE(1964), 1, + sym__immediate_decimal, + ACTIONS(3950), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3952), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1963), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1619), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + anon_sym_PLUS2, + ACTIONS(1617), 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, - ACTIONS(3882), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 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, + [34674] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3954), 1, + anon_sym_DASH_DASH, + STATE(1698), 1, + aux_sym_decl_def_repeat1, + STATE(1705), 1, + sym_comment, + STATE(2102), 1, + sym__val_number_decimal, + STATE(2186), 1, + sym_long_flag, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(3688), 1, + sym__command_name, + ACTIONS(3635), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3637), 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, + [34760] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3954), 1, + anon_sym_DASH_DASH, + STATE(1706), 1, + sym_comment, + STATE(1994), 1, + aux_sym_decl_def_repeat1, + STATE(2102), 1, + sym__val_number_decimal, + STATE(2186), 1, + sym_long_flag, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(3690), 1, + sym__command_name, + ACTIONS(3635), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3637), 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, + [34846] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1607), 1, + anon_sym_DOT, + STATE(1707), 1, + sym_comment, + STATE(1962), 1, + sym__immediate_decimal, + ACTIONS(3950), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3952), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1965), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1603), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1599), 29, anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -166869,135 +169175,335 @@ 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, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, - [32497] = 15, + [34916] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3954), 1, + anon_sym_DASH_DASH, + STATE(1700), 1, + aux_sym_decl_def_repeat1, + STATE(1708), 1, + sym_comment, + STATE(2102), 1, + sym__val_number_decimal, + STATE(2186), 1, + sym_long_flag, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(3760), 1, + sym__command_name, + ACTIONS(3635), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3637), 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, + [35002] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3954), 1, + anon_sym_DASH_DASH, + STATE(1709), 1, + sym_comment, + STATE(1711), 1, + aux_sym_decl_def_repeat1, + STATE(2102), 1, + sym__val_number_decimal, + STATE(2186), 1, + sym_long_flag, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(3706), 1, + sym__command_name, + ACTIONS(3635), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3637), 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, + [35088] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3876), 1, - anon_sym_PLUS2, - ACTIONS(3884), 1, - anon_sym_bit_DASHand2, - ACTIONS(3886), 1, - anon_sym_bit_DASHxor2, - STATE(1676), 1, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3954), 1, + anon_sym_DASH_DASH, + STATE(1710), 1, sym_comment, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3882), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + STATE(1994), 1, + aux_sym_decl_def_repeat1, + STATE(2102), 1, + sym__val_number_decimal, + STATE(2186), 1, + sym_long_flag, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(3711), 1, + sym__command_name, + ACTIONS(3635), 2, + anon_sym_export, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [32577] = 18, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3637), 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, + [35174] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(1802), 1, sym_raw_string_begin, - ACTIONS(3784), 1, + ACTIONS(3639), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3896), 1, - anon_sym_DOLLAR, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1677), 1, + ACTIONS(3954), 1, + anon_sym_DASH_DASH, + STATE(1711), 1, sym_comment, - STATE(2107), 1, + STATE(1994), 1, + aux_sym_decl_def_repeat1, + STATE(2102), 1, sym__val_number_decimal, - ACTIONS(3649), 2, + STATE(2186), 1, + sym_long_flag, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(3727), 1, + sym__command_name, + ACTIONS(3635), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3649), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3637), 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, + [35260] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3954), 1, + anon_sym_DASH_DASH, + STATE(1712), 1, + sym_comment, + STATE(1713), 1, + aux_sym_decl_def_repeat1, + STATE(2102), 1, + sym__val_number_decimal, + STATE(2186), 1, + sym_long_flag, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(3732), 1, + sym__command_name, + ACTIONS(3635), 2, anon_sym_export, anon_sym_in, - STATE(4760), 2, - sym_cmd_identifier, - sym_val_string, - STATE(4762), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(3505), 4, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3782), 23, + ACTIONS(3637), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -167021,107 +169527,105 @@ 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, + [35346] = 19, 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(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3954), 1, + anon_sym_DASH_DASH, + STATE(1713), 1, sym_comment, - ACTIONS(3834), 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, - 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, + STATE(1994), 1, + aux_sym_decl_def_repeat1, + STATE(2102), 1, + sym__val_number_decimal, + STATE(2186), 1, + sym_long_flag, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(3746), 1, + sym__command_name, + ACTIONS(3635), 2, + anon_sym_export, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(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, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3637), 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, + [35432] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1639), 1, + ACTIONS(1615), 1, sym__unquoted_pattern, - STATE(1679), 1, + STATE(1714), 1, sym_comment, - STATE(1925), 1, + STATE(1981), 1, sym__immediate_decimal, - ACTIONS(3900), 2, + ACTIONS(3964), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3902), 2, + ACTIONS(3966), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(780), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1603), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 30, + ACTIONS(1599), 29, anon_sym_in, - sym__newline, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -167149,49 +169653,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32820] = 19, + [35502] = 17, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1802), 1, sym_raw_string_begin, - ACTIONS(2549), 1, + ACTIONS(2738), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(2740), 1, + anon_sym_COLON2, + ACTIONS(3639), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3766), 1, - anon_sym_DASH_DASH, - STATE(1680), 1, + STATE(1715), 1, sym_comment, - STATE(1713), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2102), 1, sym__val_number_decimal, - STATE(2148), 1, - sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3563), 1, sym_val_string, - STATE(3729), 1, + STATE(3600), 1, + sym_cmd_identifier, + STATE(3883), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3755), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3757), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3635), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -167217,592 +169717,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, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, - STATE(1681), 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(2533), 30, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [32978] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, - STATE(1682), 1, - sym_comment, - ACTIONS(2535), 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(2533), 34, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [33047] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1683), 1, - sym_comment, - 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(2535), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2533), 37, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [33110] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1684), 1, - sym_comment, - ACTIONS(3912), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2533), 39, - 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_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [33169] = 16, - ACTIONS(3), 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, - STATE(1685), 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, - ACTIONS(2533), 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, - [33250] = 17, + [35583] = 10, ACTIONS(3), 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, - STATE(1686), 1, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + STATE(725), 1, + sym__immediate_decimal, + STATE(1716), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3964), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3966), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(724), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1675), 6, 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, - ACTIONS(2533), 14, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [33333] = 18, - ACTIONS(3), 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, - STATE(1687), 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, - ACTIONS(2533), 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, - [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, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, - STATE(1689), 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(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, - ACTIONS(2533), 22, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_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, - [33568] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, anon_sym_PLUS2, - STATE(1690), 1, - sym_comment, - ACTIONS(2535), 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(2533), 36, - ts_builtin_sym_end, + ACTIONS(1673), 29, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -167821,243 +169765,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [33635] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, - STATE(1691), 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, - ACTIONS(2533), 18, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [33710] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, - ACTIONS(3924), 1, - anon_sym_bit_DASHand2, - STATE(1692), 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, - ACTIONS(2533), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [33787] = 15, - ACTIONS(3), 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, - STATE(1693), 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, - ACTIONS(2533), 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_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33866] = 19, + [35650] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3942), 1, + sym__newline, + ACTIONS(3972), 1, + anon_sym_list, + ACTIONS(3974), 1, + anon_sym_oneof, + STATE(1717), 1, + sym_comment, + STATE(1748), 1, + aux_sym__types_body_repeat1, + STATE(1830), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4465), 1, + sym__all_type, + STATE(5058), 1, + sym__composite_argument_body, + ACTIONS(3970), 2, + anon_sym_table, + anon_sym_record, + STATE(4522), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3968), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [35721] = 17, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1802), 1, sym_raw_string_begin, - ACTIONS(2916), 1, + ACTIONS(2738), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(2740), 1, + anon_sym_COLON2, + ACTIONS(3639), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3766), 1, - anon_sym_DASH_DASH, - STATE(1694), 1, + STATE(1718), 1, sym_comment, - STATE(1710), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2102), 1, sym__val_number_decimal, - STATE(2148), 1, - sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3563), 1, sym_val_string, - STATE(3629), 1, + STATE(3600), 1, + sym_cmd_identifier, + STATE(4986), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3755), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3757), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3635), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -168083,39 +169897,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [33953] = 12, + [35802] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3938), 1, - anon_sym_DOT, - STATE(1695), 1, - sym_comment, - STATE(1855), 1, - sym__immediate_decimal, - ACTIONS(3940), 2, + ACTIONS(3976), 1, 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, + ACTIONS(3978), 1, + aux_sym__immediate_decimal_token5, + STATE(1719), 1, + sym_comment, + ACTIONS(739), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 29, + 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, @@ -168135,6 +169937,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, @@ -168144,33 +169947,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34026] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [35861] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1696), 1, + ACTIONS(3958), 1, + aux_sym__immediate_decimal_token5, + STATE(1720), 1, sym_comment, - ACTIONS(2565), 5, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3757), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2563), 29, + 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, @@ -168189,6 +169989,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, @@ -168198,38 +169999,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34085] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [35918] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3980), 1, + anon_sym_DOT2, + STATE(1721), 1, + sym_comment, + STATE(1738), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1833), 1, + sym_path, + STATE(1861), 1, + sym_cell_path, + ACTIONS(1683), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1681), 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, + [35981] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(1697), 1, - sym_comment, - STATE(1919), 1, + STATE(777), 1, sym__immediate_decimal, - ACTIONS(3900), 2, + STATE(1722), 1, + sym_comment, + ACTIONS(3964), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3902), 2, + ACTIONS(3966), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(723), 2, + STATE(776), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1619), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 30, + ACTIONS(1617), 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, + [36048] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3982), 1, + aux_sym__immediate_decimal_token5, + STATE(1723), 1, + sym_comment, + ACTIONS(763), 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(765), 35, anon_sym_in, sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -168249,6 +170153,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, @@ -168258,50 +170163,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34156] = 19, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [36105] = 7, 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(3944), 1, - anon_sym_DASH_DASH, - STATE(1698), 1, + ACTIONS(3984), 1, + anon_sym_QMARK2, + ACTIONS(3986), 1, + anon_sym_BANG, + STATE(1724), 1, sym_comment, - STATE(2081), 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(3691), 1, - sym__command_name, - ACTIONS(3637), 2, + STATE(1829), 1, + sym__path_suffix, + ACTIONS(1442), 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(1444), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168325,184 +170207,155 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34242] = 19, - 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(3944), 1, - anon_sym_DASH_DASH, - STATE(1698), 1, - aux_sym_decl_def_repeat1, - STATE(1699), 1, - sym_comment, - 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(3658), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(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, - [34328] = 19, - 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(3944), 1, - anon_sym_DASH_DASH, - STATE(1700), 1, + [36166] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3942), 1, + sym__newline, + ACTIONS(3972), 1, + anon_sym_list, + ACTIONS(3974), 1, + anon_sym_oneof, + STATE(1725), 1, sym_comment, - STATE(1702), 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(3654), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, + STATE(1748), 1, + aux_sym__types_body_repeat1, + STATE(1830), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4465), 1, + sym__all_type, + STATE(4961), 1, + sym__composite_argument_body, + ACTIONS(3970), 2, + anon_sym_table, + anon_sym_record, + STATE(4522), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3968), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [36237] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + ACTIONS(1776), 1, + sym__unquoted_pattern, + ACTIONS(3988), 1, + anon_sym_DOT_DOT2, + ACTIONS(3992), 1, + sym_filesize_unit, + ACTIONS(3994), 1, + sym_duration_unit, + STATE(1726), 1, + sym_comment, + STATE(4712), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3990), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(858), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(884), 31, 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, - [34414] = 19, + 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, + [36306] = 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(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, - anon_sym_DASH_DASH, - STATE(1701), 1, + ACTIONS(3980), 1, + anon_sym_DOT2, + STATE(1727), 1, sym_comment, - STATE(1709), 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(3627), 1, - sym__command_name, - ACTIONS(3637), 2, + STATE(1738), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1833), 1, + sym_path, + STATE(1877), 1, + sym_cell_path, + ACTIONS(1450), 3, 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, + ACTIONS(1452), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168526,117 +170379,177 @@ 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, - 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(3944), 1, - anon_sym_DASH_DASH, - STATE(1702), 1, - sym_comment, - STATE(2081), 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(3657), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(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, - [34586] = 19, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [36369] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(3942), 1, + sym__newline, + STATE(1728), 1, + sym_comment, + STATE(1822), 1, + aux_sym__types_body_repeat3, + STATE(1956), 1, + aux_sym__types_body_repeat1, + STATE(4501), 1, + sym__one_type, + STATE(4884), 1, + sym__type_annotation, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [36440] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(3942), 1, + sym__newline, + ACTIONS(3972), 1, + anon_sym_list, + ACTIONS(3974), 1, + anon_sym_oneof, + STATE(1729), 1, + sym_comment, + STATE(1748), 1, + aux_sym__types_body_repeat1, + STATE(1830), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4465), 1, + sym__all_type, + STATE(4867), 1, + sym__composite_argument_body, + ACTIONS(3970), 2, + anon_sym_table, + anon_sym_record, + STATE(4522), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3968), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [36511] = 17, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(1802), 1, sym_raw_string_begin, - ACTIONS(3784), 1, + ACTIONS(2738), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2740), 1, + anon_sym_COLON2, + ACTIONS(3639), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3786), 1, - sym__newline, - STATE(1703), 1, + STATE(1730), 1, sym_comment, - STATE(1763), 1, - aux_sym__command_list_body_repeat1, - STATE(2107), 1, + STATE(2102), 1, sym__val_number_decimal, - STATE(2121), 1, - aux_sym__types_body_repeat1, - STATE(4615), 1, - sym__command_name, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, + STATE(3563), 1, sym_val_string, - ACTIONS(3649), 2, + STATE(3600), 1, + sym_cmd_identifier, + STATE(4273), 1, + sym__command_name, + ACTIONS(3755), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3757), 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(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3782), 23, + ACTIONS(3635), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168654,35 +170567,43 @@ 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, - [34672] = 6, + [36592] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3946), 1, - anon_sym_DOT, - ACTIONS(3948), 1, - aux_sym__immediate_decimal_token5, - STATE(1704), 1, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + STATE(926), 1, + sym__immediate_decimal, + STATE(1731), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(3964), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3966), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(780), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1603), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, + ACTIONS(1599), 29, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -168701,7 +170622,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, @@ -168711,39 +170631,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [34732] = 11, + [36659] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1600), 1, - anon_sym_DOT, - STATE(1705), 1, - sym_comment, - STATE(1957), 1, + STATE(723), 1, sym__immediate_decimal, - ACTIONS(3940), 2, + STATE(1732), 1, + sym_comment, + ACTIONS(3964), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, + ACTIONS(3966), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1963), 2, + STATE(722), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1671), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 29, + ACTIONS(1669), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -168773,29 +170688,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34802] = 6, + [36726] = 10, 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(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + STATE(953), 1, + sym__immediate_decimal, + STATE(1733), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(3964), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3966), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(726), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1679), 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(1677), 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 +170736,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 +170745,89 @@ 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, + [36793] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3980), 1, + anon_sym_DOT2, + STATE(1734), 1, + sym_comment, + STATE(1738), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1833), 1, + sym_path, + STATE(1864), 1, + sym_cell_path, + ACTIONS(1689), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1687), 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, + [36856] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(1707), 1, - sym_comment, - STATE(1978), 1, + STATE(718), 1, sym__immediate_decimal, - ACTIONS(3954), 2, + STATE(1735), 1, + sym_comment, + ACTIONS(3964), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3966), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(723), 2, + STATE(717), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1663), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 29, + ACTIONS(1661), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -168886,37 +170857,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34932] = 11, + [36923] = 6, 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(1708), 1, + ACTIONS(3996), 1, + anon_sym_DOT, + ACTIONS(3998), 1, + aux_sym__immediate_decimal_token5, + STATE(1736), 1, sym_comment, - STATE(2092), 1, - sym__immediate_decimal, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(747), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 29, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 34, anon_sym_in, + anon_sym_DASH2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -168936,6 +170897,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, @@ -168945,50 +170907,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35002] = 19, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [36982] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1802), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3639), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, - anon_sym_DASH_DASH, - STATE(1709), 1, + STATE(1737), 1, sym_comment, - STATE(2081), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2102), 1, sym__val_number_decimal, - STATE(2148), 1, - sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3563), 1, sym_val_string, - STATE(3633), 1, + STATE(3600), 1, + sym_cmd_identifier, + STATE(5002), 1, sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3755), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3757), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3635), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169006,56 +170965,30 @@ 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, - [35088] = 19, + [37060] = 7, 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(3944), 1, - anon_sym_DASH_DASH, - STATE(1710), 1, + ACTIONS(3980), 1, + anon_sym_DOT2, + STATE(1738), 1, sym_comment, - STATE(2081), 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(3666), 1, - sym__command_name, - ACTIONS(3637), 2, + STATE(1740), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1833), 1, + sym_path, + ACTIONS(1515), 3, 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, + ACTIONS(1517), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169079,37 +171012,48 @@ 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, + 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, + [37120] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1766), 1, anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - STATE(1711), 1, + ACTIONS(1776), 1, + sym__unquoted_pattern, + ACTIONS(4000), 1, + anon_sym_DOT_DOT2, + ACTIONS(4004), 1, + sym_filesize_unit, + ACTIONS(4006), 1, + sym_duration_unit, + STATE(1739), 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, + STATE(4712), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 6, + ACTIONS(4002), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(858), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1582), 29, + ACTIONS(884), 30, anon_sym_in, + anon_sym_DASH2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -169136,52 +171080,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [35244] = 19, - 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(3944), 1, - anon_sym_DASH_DASH, - STATE(1712), 1, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [37188] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4008), 1, + anon_sym_DOT2, + STATE(1833), 1, + sym_path, + STATE(1740), 2, sym_comment, - STATE(1714), 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(3716), 1, - sym__command_name, - ACTIONS(3637), 2, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1508), 3, 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, + ACTIONS(1510), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169205,117 +171121,31 @@ 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, - 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(3944), 1, - anon_sym_DASH_DASH, - STATE(1713), 1, - sym_comment, - STATE(2081), 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(3628), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(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, - [35416] = 19, - 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(3944), 1, - anon_sym_DASH_DASH, - STATE(1714), 1, + [37246] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1741), 1, sym_comment, - STATE(2081), 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(3648), 1, - sym__command_name, - ACTIONS(3637), 2, + ACTIONS(1527), 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(1529), 39, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169339,36 +171169,40 @@ 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, + 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, + [37300] = 4, 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, + STATE(1742), 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, + ACTIONS(763), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1582), 29, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(765), 35, anon_sym_in, - anon_sym_EQ_GT, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -169387,6 +171221,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, @@ -169396,46 +171231,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35569] = 17, - ACTIONS(103), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [37354] = 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(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1716), 1, + ACTIONS(4011), 1, + anon_sym_DOT, + ACTIONS(4013), 1, + aux_sym__immediate_decimal_token5, + STATE(1743), 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, + 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, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_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, - 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, + sym_filesize_unit, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [37412] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4015), 1, + anon_sym_DOT2, + STATE(1744), 1, + sym_comment, + STATE(1800), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1865), 1, + sym_path, + STATE(1885), 1, + sym_cell_path, + ACTIONS(1450), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1452), 36, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169453,43 +171323,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, - [35650] = 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, + [37474] = 11, 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(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(4017), 1, + anon_sym_GT2, + ACTIONS(4019), 1, + anon_sym_AT2, + STATE(1745), 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, + STATE(4518), 1, + sym__all_type, + STATE(5055), 1, + sym_param_completer, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4725), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [37542] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4021), 1, + anon_sym_DOT, + ACTIONS(4023), 1, + aux_sym__immediate_decimal_token5, + STATE(1746), 1, + sym_comment, + ACTIONS(1756), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 29, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1754), 34, anon_sym_in, - anon_sym_EQ_GT, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -169508,6 +171437,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, @@ -169517,33 +171447,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35717] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [37600] = 6, 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, + ACTIONS(4025), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4027), 1, + aux_sym__immediate_decimal_token5, + STATE(1747), 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, + ACTIONS(1748), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 31, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1746), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -169566,6 +171489,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 +171499,34 @@ 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, + [37658] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3934), 1, + ACTIONS(3942), 1, sym__newline, - ACTIONS(3970), 1, - anon_sym_list, ACTIONS(3972), 1, + anon_sym_list, + ACTIONS(3974), 1, anon_sym_oneof, - STATE(1719), 1, + STATE(1748), 1, sym_comment, - STATE(1746), 1, - aux_sym__types_body_repeat1, - STATE(1831), 1, + STATE(1837), 1, aux_sym__composite_argument_body_repeat1, - STATE(4543), 1, + STATE(1956), 1, + aux_sym__types_body_repeat1, + STATE(4492), 1, sym__all_type, - STATE(4925), 1, - sym__composite_argument_body, - ACTIONS(3968), 2, + ACTIONS(3970), 2, anon_sym_table, anon_sym_record, - STATE(4464), 4, + STATE(4522), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(3968), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -169634,98 +171558,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [35857] = 6, + [37726] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3974), 1, + ACTIONS(4015), 1, + anon_sym_DOT2, + STATE(1749), 1, + sym_comment, + STATE(1800), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1865), 1, + sym_path, + STATE(1895), 1, + sym_cell_path, + ACTIONS(1689), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1687), 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, + [37788] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4029), 1, aux_sym__immediate_decimal_token1, - ACTIONS(3976), 1, + ACTIONS(4031), 1, aux_sym__immediate_decimal_token5, - STATE(1720), 1, + STATE(1750), 1, sym_comment, - ACTIONS(747), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(739), 7, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOT_DOT2, - sym_filesize_unit, + aux_sym__val_number_decimal_token1, + sym_duration_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, + ACTIONS(741), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [35916] = 17, + 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, + [37846] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1802), 1, sym_raw_string_begin, - ACTIONS(2664), 1, + ACTIONS(2950), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3641), 1, + ACTIONS(3639), 1, aux_sym_cmd_identifier_token1, - STATE(1721), 1, + STATE(1751), 1, sym_comment, - STATE(2099), 1, + STATE(2102), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3563), 1, sym_val_string, - STATE(4836), 1, + STATE(3600), 1, + sym_cmd_identifier, + STATE(4844), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3755), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3757), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3635), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -169751,154 +171726,43 @@ 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, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(925), 1, - sym__immediate_decimal, - STATE(1723), 1, - sym_comment, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1631), 29, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [36121] = 17, + [37924] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1802), 1, sym_raw_string_begin, - ACTIONS(2664), 1, + ACTIONS(2950), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3641), 1, + ACTIONS(3639), 1, aux_sym_cmd_identifier_token1, - STATE(1724), 1, + STATE(1752), 1, sym_comment, - STATE(2099), 1, + STATE(2102), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3563), 1, sym_val_string, - STATE(4171), 1, + STATE(3600), 1, + sym_cmd_identifier, + STATE(4159), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3755), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3757), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3635), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -169924,14 +171788,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [36202] = 5, + [38002] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3948), 1, - aux_sym__immediate_decimal_token5, - STATE(1725), 1, + STATE(1753), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(789), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -169940,7 +171802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 35, + ACTIONS(791), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -169976,34 +171838,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [36259] = 12, + [38056] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3809), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3811), 1, anon_sym_oneof, - ACTIONS(3934), 1, - sym__newline, - STATE(1726), 1, + ACTIONS(4019), 1, + anon_sym_AT2, + ACTIONS(4033), 1, + anon_sym_GT2, + STATE(1754), 1, sym_comment, - STATE(1783), 1, - aux_sym__types_body_repeat3, - STATE(1934), 1, - aux_sym__types_body_repeat1, - STATE(4557), 1, - sym__one_type, - STATE(4821), 1, - sym__type_annotation, - ACTIONS(3749), 2, + STATE(4437), 1, + sym__all_type, + STATE(4957), 1, + sym_param_completer, + ACTIONS(3807), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4725), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3805), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170035,260 +171895,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [36330] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1727), 1, - sym_comment, - STATE(1742), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, - sym_path, - STATE(1862), 1, - sym_cell_path, - ACTIONS(1681), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1679), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [36393] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(737), 1, - sym__immediate_decimal, - STATE(1728), 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(736), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1669), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1667), 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, - [36460] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(739), 1, - sym__immediate_decimal, - STATE(1729), 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(738), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1671), 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, - [36527] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(741), 1, - sym__immediate_decimal, - STATE(1730), 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(740), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1675), 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, - [36594] = 12, + [38124] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(3970), 1, + ACTIONS(3809), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(3811), 1, anon_sym_oneof, - STATE(1731), 1, + ACTIONS(4019), 1, + anon_sym_AT2, + ACTIONS(4035), 1, + anon_sym_GT2, + STATE(1755), 1, sym_comment, - STATE(1746), 1, - aux_sym__types_body_repeat1, - STATE(1831), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4543), 1, + STATE(4462), 1, sym__all_type, - STATE(4808), 1, - sym__composite_argument_body, - ACTIONS(3968), 2, + STATE(4862), 1, + sym_param_completer, + ACTIONS(3807), 2, anon_sym_table, anon_sym_record, - STATE(4464), 4, + STATE(4725), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(3805), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170320,34 +171952,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [36665] = 12, + [38192] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(3970), 1, + ACTIONS(3803), 1, + anon_sym_LBRACK, + ACTIONS(3809), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(3811), 1, anon_sym_oneof, - STATE(1732), 1, + STATE(1756), 1, sym_comment, - STATE(1746), 1, - aux_sym__types_body_repeat1, - STATE(1831), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4543), 1, - sym__all_type, - STATE(5027), 1, - sym__composite_argument_body, - ACTIONS(3968), 2, + STATE(4916), 1, + sym__type_annotation, + STATE(5070), 1, + sym__multiple_types, + STATE(5142), 1, + sym__one_type, + ACTIONS(3807), 2, anon_sym_table, anon_sym_record, - STATE(4464), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(3805), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170379,24 +172009,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [36736] = 7, + [38260] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3982), 1, - anon_sym_QMARK2, - ACTIONS(3984), 1, - anon_sym_BANG, - STATE(1733), 1, + ACTIONS(3998), 1, + aux_sym__immediate_decimal_token5, + STATE(1757), 1, sym_comment, - STATE(1833), 1, - sym__path_suffix, - ACTIONS(1446), 4, + 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, + [38316] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3769), 1, + aux_sym_cmd_identifier_token1, + STATE(1758), 1, + sym_comment, + STATE(1759), 1, + aux_sym__command_list_body_repeat1, + STATE(2108), 1, + sym__val_number_decimal, + STATE(4519), 1, + sym__command_name, + STATE(4737), 1, + sym_cmd_identifier, + STATE(4738), 1, + sym_val_string, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3765), 2, + anon_sym_export, + anon_sym_in, + STATE(3594), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3767), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [38396] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4043), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4052), 1, + anon_sym_DQUOTE, + ACTIONS(4055), 1, + anon_sym_SQUOTE, + ACTIONS(4058), 1, + anon_sym_BQUOTE, + ACTIONS(4061), 1, + sym_raw_string_begin, + STATE(2108), 1, + sym__val_number_decimal, + STATE(4737), 1, + sym_cmd_identifier, + STATE(4738), 1, + sym_val_string, + STATE(4759), 1, + sym__command_name, + ACTIONS(4037), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1448), 37, - sym_raw_string_begin, + ACTIONS(4046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4049), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1759), 2, + sym_comment, + aux_sym__command_list_body_repeat1, + STATE(3594), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4040), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170420,38 +172185,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + [38474] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1796), 1, anon_sym_DQUOTE, + ACTIONS(1798), 1, anon_sym_SQUOTE, + ACTIONS(1800), 1, anon_sym_BQUOTE, - [36797] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1734), 1, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + STATE(1760), 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, + STATE(2102), 1, + sym__val_number_decimal, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(4986), 1, + sym__command_name, + ACTIONS(3755), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3757), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 25, 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, @@ -170469,43 +172240,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_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, - [36860] = 8, + [38552] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1735), 1, + STATE(1761), 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, + ACTIONS(1496), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1434), 37, + anon_sym_DOT2, + ACTIONS(1498), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -170543,136 +172295,46 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3990), 1, - anon_sym_GT2, - ACTIONS(3992), 1, - anon_sym_AT2, - STATE(1737), 1, - sym_comment, - STATE(4431), 1, - sym__all_type, - STATE(4807), 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, - [37050] = 8, - ACTIONS(3), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [38606] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3994), 1, - anon_sym_DOT2, - STATE(1738), 1, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + STATE(1762), 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, + STATE(2102), 1, + sym__val_number_decimal, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(4273), 1, + sym__command_name, + ACTIONS(3755), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3757), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 25, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1679), 36, - sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170690,118 +172352,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_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [37112] = 11, + [38684] = 17, 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, - 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, - 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, + ACTIONS(1422), 1, anon_sym_DQUOTE, - ACTIONS(93), 1, + ACTIONS(1424), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, + ACTIONS(1426), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(105), 1, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3669), 1, + ACTIONS(3769), 1, aux_sym_cmd_identifier_token1, - STATE(1740), 1, + STATE(1759), 1, + aux_sym__command_list_body_repeat1, + STATE(1763), 1, sym_comment, - STATE(1976), 1, + STATE(2108), 1, sym__val_number_decimal, - STATE(3951), 1, + STATE(4627), 1, sym__command_name, - STATE(4246), 1, + STATE(4737), 1, sym_cmd_identifier, - STATE(4248), 1, + STATE(4738), 1, sym_val_string, - ACTIONS(3768), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3649), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(480), 4, + ACTIONS(3765), 2, + anon_sym_export, + anon_sym_in, + STATE(3594), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3665), 25, - anon_sym_export, + ACTIONS(3767), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170819,33 +172416,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [37258] = 8, - ACTIONS(3), 1, + [38764] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3994), 1, - anon_sym_DOT2, - STATE(1741), 1, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + STATE(1764), 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, + STATE(2102), 1, + sym__val_number_decimal, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(3883), 1, + sym__command_name, + ACTIONS(3755), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3757), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 25, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1641), 36, - sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170863,39 +172477,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_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, - [37320] = 7, + [38842] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1742), 1, + STATE(1765), 1, sym_comment, - STATE(1743), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, - sym_path, - ACTIONS(1458), 3, + ACTIONS(1519), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1460), 37, + anon_sym_DOT2, + ACTIONS(1521), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -170933,21 +172532,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, + [38896] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4004), 1, - anon_sym_DOT2, - STATE(1825), 1, - sym_path, - STATE(1743), 2, + STATE(1766), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, + ACTIONS(1500), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1526), 37, + anon_sym_DOT2, + ACTIONS(1502), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -170985,23 +172582,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37438] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + [38950] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4007), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - aux_sym__immediate_decimal_token5, - STATE(1744), 1, + STATE(1767), 1, sym_comment, - ACTIONS(739), 6, + ACTIONS(1504), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, + anon_sym_DOT2, + ACTIONS(1506), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171026,149 +172619,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37496] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(4011), 1, - anon_sym_GT2, - STATE(1745), 1, - sym_comment, - STATE(4402), 1, - sym__all_type, - STATE(5025), 1, - sym_param_completer, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4712), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [37564] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1746), 1, - sym_comment, - STATE(1828), 1, - aux_sym__composite_argument_body_repeat1, - STATE(1934), 1, - aux_sym__types_body_repeat1, - STATE(4482), 1, - sym__all_type, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4464), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [37632] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + [39004] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4013), 1, - anon_sym_DOT, - ACTIONS(4015), 1, - aux_sym__immediate_decimal_token5, - STATE(1747), 1, + STATE(1768), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1736), 34, + ACTIONS(741), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -171203,69 +172683,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [37690] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4017), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4019), 1, - aux_sym__immediate_decimal_token5, - STATE(1748), 1, - sym_comment, - ACTIONS(747), 7, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(749), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [37748] = 4, + [39058] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1749), 1, + STATE(1769), 1, sym_comment, - ACTIONS(1478), 4, + ACTIONS(1523), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1480), 39, + ACTIONS(1525), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171305,18 +172734,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [37802] = 4, + [39112] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1750), 1, + ACTIONS(4015), 1, + anon_sym_DOT2, + STATE(1770), 1, sym_comment, - ACTIONS(1543), 4, + STATE(1800), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1865), 1, + sym_path, + STATE(1901), 1, + sym_cell_path, + ACTIONS(1683), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1545), 39, + ACTIONS(1681), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171343,8 +172780,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 +172788,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, + [39174] = 16, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1751), 1, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + STATE(1771), 1, sym_comment, - ACTIONS(1466), 4, + STATE(2102), 1, + sym__val_number_decimal, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(5113), 1, + sym__command_name, + ACTIONS(3755), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3757), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 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 +172843,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, + [39252] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4064), 1, + aux_sym__immediate_decimal_token5, + STATE(1772), 1, + sym_comment, + ACTIONS(763), 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(765), 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, + [39308] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1796), 1, anon_sym_DQUOTE, + ACTIONS(1798), 1, anon_sym_SQUOTE, + ACTIONS(1800), 1, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37910] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1752), 1, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + STATE(1773), 1, sym_comment, - ACTIONS(1470), 4, + STATE(2102), 1, + sym__val_number_decimal, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(5035), 1, + sym__command_name, + ACTIONS(3755), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3757), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3635), 25, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1472), 39, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171434,64 +172956,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37964] = 16, + [39386] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1802), 1, sym_raw_string_begin, - ACTIONS(2549), 1, + ACTIONS(2630), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3639), 1, aux_sym_cmd_identifier_token1, - STATE(1753), 1, + STATE(1774), 1, sym_comment, - STATE(2099), 1, + STATE(2102), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3563), 1, sym_val_string, - STATE(4950), 1, + STATE(3600), 1, + sym_cmd_identifier, + STATE(5213), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3755), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3757), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3635), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -171517,18 +173025,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38042] = 4, + [39464] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1754), 1, + ACTIONS(4066), 1, + anon_sym_QMARK2, + ACTIONS(4068), 1, + anon_sym_BANG, + STATE(1775), 1, sym_comment, - ACTIONS(1514), 4, + STATE(1868), 1, + sym__path_suffix, + ACTIONS(1442), 4, 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 +173070,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,107 +173078,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, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, + [39524] = 16, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1755), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(5195), 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, - [38174] = 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, + ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(2549), 1, + ACTIONS(2950), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3673), 1, aux_sym_cmd_identifier_token1, - STATE(1756), 1, + STATE(1776), 1, sym_comment, - STATE(2099), 1, + STATE(1998), 1, sym__val_number_decimal, - STATE(3532), 1, + STATE(4062), 1, + sym__command_name, + STATE(4288), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(4289), 1, sym_val_string, - STATE(5197), 1, - sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3755), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3757), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(485), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3669), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -171691,82 +173140,78 @@ 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, + [39602] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1757), 1, + STATE(1777), 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, + ACTIONS(4070), 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, - sym_duration_unit, - [38306] = 11, + anon_sym_RBRACE, + [39653] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(4072), 1, + sym__newline, + ACTIONS(4078), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(4080), 1, anon_sym_oneof, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(4021), 1, - anon_sym_GT2, - STATE(1758), 1, + STATE(1778), 1, sym_comment, - STATE(4541), 1, - sym__all_type, - STATE(4897), 1, - sym_param_completer, - ACTIONS(3749), 2, + STATE(1975), 1, + aux_sym__repeat_newline, + STATE(3071), 1, + sym__type_annotation, + ACTIONS(4076), 2, anon_sym_table, anon_sym_record, - STATE(4712), 4, + STATE(3128), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4074), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -171795,180 +173240,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_path, anon_sym_range, anon_sym_signature, - 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, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1760), 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), 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, - [38482] = 5, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [39718] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3988), 1, - aux_sym__immediate_decimal_token5, - STATE(1761), 1, + ACTIONS(4072), 1, + sym__newline, + ACTIONS(4078), 1, + anon_sym_list, + ACTIONS(4080), 1, + anon_sym_oneof, + STATE(1779), 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, + STATE(1795), 1, + aux_sym__repeat_newline, + STATE(3050), 1, + sym__type_annotation, + ACTIONS(4076), 2, + anon_sym_table, + anon_sym_record, + STATE(3128), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4074), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [39783] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4023), 1, + ACTIONS(4082), 1, aux_sym__immediate_decimal_token5, - STATE(1762), 1, + STATE(1780), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(1814), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 34, + ACTIONS(1812), 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, @@ -171999,47 +173348,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [38594] = 17, + [39838] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - STATE(1763), 1, + ACTIONS(4084), 1, + anon_sym_BANG, + STATE(1781), 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, + ACTIONS(1456), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, + anon_sym_DOT2, + ACTIONS(1458), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172063,45 +173385,35 @@ 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, - anon_sym_POUND, - ACTIONS(4031), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(4040), 1, - anon_sym_DQUOTE, - ACTIONS(4043), 1, - anon_sym_SQUOTE, - ACTIONS(4046), 1, - anon_sym_BQUOTE, - ACTIONS(4049), 1, - sym_raw_string_begin, - STATE(2107), 1, - sym__val_number_decimal, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, - sym_val_string, - STATE(4744), 1, - sym__command_name, - ACTIONS(4025), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(4034), 2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4037), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(1764), 2, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [39893] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4086), 1, + aux_sym__immediate_decimal_token5, + STATE(1782), 1, sym_comment, - aux_sym__command_list_body_repeat1, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4028), 23, + ACTIONS(763), 6, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(765), 35, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172125,16 +173437,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38752] = 6, + 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, + [39948] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4052), 1, + ACTIONS(4088), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4054), 1, + ACTIONS(4090), 1, aux_sym__immediate_decimal_token5, - STATE(1765), 1, + STATE(1783), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1748), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -172142,11 +173465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 34, + ACTIONS(1746), 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, @@ -172177,44 +173499,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [38810] = 16, - ACTIONS(103), 1, + [40005] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1766), 1, + STATE(1784), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(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, + 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, @@ -172232,51 +173529,63 @@ 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, - ACTIONS(103), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [40058] = 16, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1802), 1, sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3639), 1, aux_sym_cmd_identifier_token1, - STATE(1767), 1, + STATE(1785), 1, sym_comment, - STATE(2099), 1, + STATE(2102), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3563), 1, sym_val_string, - STATE(4171), 1, + STATE(3600), 1, + sym_cmd_identifier, + STATE(5049), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3635), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3649), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, + ACTIONS(3637), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172294,51 +173603,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38966] = 16, - ACTIONS(103), 1, + [40135] = 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(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1768), 1, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(4072), 1, + sym__newline, + 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(3845), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, + STATE(1975), 1, + aux_sym__repeat_newline, + STATE(4499), 1, + sym__type_annotation, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [40200] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(4072), 1, + sym__newline, + STATE(1787), 1, + sym_comment, + STATE(1793), 1, + aux_sym__repeat_newline, + STATE(4587), 1, + sym__type_annotation, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [40265] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4092), 1, + anon_sym_DOT2, + STATE(1865), 1, + sym_path, + STATE(1788), 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), 36, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172356,39 +173753,46 @@ 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, + 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, + [40322] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(4101), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(4104), 1, anon_sym_oneof, - STATE(1769), 1, - sym_comment, - STATE(4849), 1, - sym__type_annotation, - STATE(5087), 1, + STATE(4829), 1, sym__one_type, - STATE(5102), 1, - sym__multiple_types, - ACTIONS(3749), 2, + STATE(4884), 1, + sym__type_annotation, + ACTIONS(4098), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(1789), 2, + sym_comment, + aux_sym__types_body_repeat3, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4095), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -172420,46 +173824,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [39112] = 17, + [40385] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - STATE(1764), 1, - aux_sym__command_list_body_repeat1, - STATE(1770), 1, + STATE(1790), 1, sym_comment, - STATE(2107), 1, - sym__val_number_decimal, - STATE(4374), 1, - sym__command_name, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, - sym_val_string, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, + ACTIONS(4107), 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, + [40436] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1791), 1, + sym_comment, + ACTIONS(1527), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, + anon_sym_DOT2, + ACTIONS(1529), 38, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172483,44 +173908,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39192] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1771), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4092), 1, - sym__command_name, - ACTIONS(3768), 2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_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, + anon_sym_QMARK2, + anon_sym_BANG, + [40489] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + anon_sym_QMARK2, + STATE(1792), 1, + sym_comment, + 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, @@ -172538,30 +173952,245 @@ 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, - [39270] = 7, + 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, + [40544] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4056), 1, - anon_sym_QMARK2, - ACTIONS(4058), 1, - anon_sym_BANG, - STATE(1772), 1, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + ACTIONS(4072), 1, + sym__newline, + STATE(1793), 1, sym_comment, - STATE(1867), 1, - sym__path_suffix, - ACTIONS(1446), 4, + STATE(1975), 1, + aux_sym__repeat_newline, + STATE(4485), 1, + sym__type_annotation, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [40609] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4109), 1, + anon_sym_DOT, + ACTIONS(4111), 1, + aux_sym__immediate_decimal_token5, + STATE(1794), 1, + sym_comment, + ACTIONS(1756), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1754), 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, + [40666] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4072), 1, + sym__newline, + ACTIONS(4078), 1, + anon_sym_list, + ACTIONS(4080), 1, + anon_sym_oneof, + STATE(1795), 1, + sym_comment, + STATE(1975), 1, + aux_sym__repeat_newline, + STATE(2950), 1, + sym__type_annotation, + ACTIONS(4076), 2, + anon_sym_table, + anon_sym_record, + STATE(3128), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4074), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [40731] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1796), 1, + sym_comment, + ACTIONS(4113), 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, + [40782] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1797), 1, + sym_comment, + ACTIONS(1519), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1448), 36, + ACTIONS(1521), 38, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -172598,44 +174227,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [39330] = 16, - ACTIONS(103), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [40835] = 16, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1802), 1, sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3639), 1, aux_sym_cmd_identifier_token1, - STATE(1773), 1, + STATE(1798), 1, sym_comment, - STATE(2099), 1, + STATE(2102), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3563), 1, sym_val_string, - STATE(5023), 1, + STATE(3600), 1, + sym_cmd_identifier, + STATE(4161), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3635), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3649), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, + ACTIONS(3637), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172653,31 +174284,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39408] = 8, + [40912] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3994), 1, - anon_sym_DOT2, - STATE(1774), 1, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + STATE(1789), 1, + aux_sym__types_body_repeat3, + STATE(1799), 1, sym_comment, - STATE(1812), 1, + STATE(4508), 1, + sym__one_type, + STATE(4884), 1, + sym__type_annotation, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [40977] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4015), 1, + anon_sym_DOT2, + STATE(1788), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, + STATE(1800), 1, + sym_comment, + STATE(1865), 1, sym_path, - STATE(1896), 1, - sym_cell_path, - ACTIONS(1432), 3, + ACTIONS(1515), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1434), 36, + ACTIONS(1517), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -172714,80 +174397,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [39470] = 16, - ACTIONS(103), 1, + [41036] = 16, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3673), 1, aux_sym_cmd_identifier_token1, - STATE(1775), 1, + STATE(1801), 1, sym_comment, - STATE(2099), 1, + STATE(1998), 1, sym__val_number_decimal, - STATE(3532), 1, + STATE(4065), 1, + sym__command_name, + STATE(4288), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(4289), 1, sym_val_string, - STATE(5033), 1, - sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3649), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + ACTIONS(3669), 2, + anon_sym_export, + anon_sym_in, + STATE(485), 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(3671), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172811,27 +174458,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_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, + [41113] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1777), 1, + STATE(1802), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -172840,7 +174472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 34, + ACTIONS(741), 34, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -172875,44 +174507,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [39655] = 16, + [41166] = 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(1778), 1, + ACTIONS(4013), 1, + aux_sym__immediate_decimal_token5, + STATE(1803), 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(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, @@ -172936,80 +174546,55 @@ 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, + 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, + [41221] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1802), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3639), 1, aux_sym_cmd_identifier_token1, - STATE(1779), 1, + STATE(1804), 1, sym_comment, - STATE(2099), 1, + STATE(2102), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3563), 1, sym_val_string, - STATE(4959), 1, + STATE(3600), 1, + sym_cmd_identifier, + STATE(5039), 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, - [39809] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1780), 1, - sym_comment, - ACTIONS(1478), 4, + ACTIONS(3635), 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, + anon_sym_in, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3637), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173033,25 +174618,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_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, + [41298] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1781), 1, + STATE(1805), 1, sym_comment, - ACTIONS(4060), 42, + ACTIONS(4115), 42, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -173094,12 +174666,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, anon_sym_LBRACE, anon_sym_RBRACE, - [39913] = 3, + [41349] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1782), 1, + STATE(1806), 1, sym_comment, - ACTIONS(4062), 42, + ACTIONS(4117), 42, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -173142,153 +174714,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, anon_sym_LBRACE, anon_sym_RBRACE, - [39964] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - STATE(1783), 1, - sym_comment, - STATE(1784), 1, - aux_sym__types_body_repeat3, - STATE(4531), 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, - [40029] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4070), 1, - anon_sym_list, - ACTIONS(4073), 1, - anon_sym_oneof, - STATE(4701), 1, - sym__one_type, - STATE(4821), 1, - sym__type_annotation, - ACTIONS(4067), 2, - anon_sym_table, - anon_sym_record, - STATE(1784), 2, - sym_comment, - aux_sym__types_body_repeat3, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4064), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [40092] = 16, + [41400] = 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(1785), 1, + STATE(1807), 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, + ACTIONS(1496), 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(1498), 38, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173312,17 +174750,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [40169] = 4, + 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, + [41453] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1786), 1, + STATE(1808), 1, sym_comment, - ACTIONS(1543), 4, + ACTIONS(1500), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1545), 38, + ACTIONS(1502), 38, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -173361,17 +174812,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [40222] = 4, + [41506] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1787), 1, + STATE(1809), 1, sym_comment, - ACTIONS(1466), 4, + ACTIONS(1504), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1468), 38, + ACTIONS(1506), 38, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -173410,30 +174861,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [40275] = 10, + [41559] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(4072), 1, + sym__newline, + ACTIONS(4078), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(4080), 1, anon_sym_oneof, - ACTIONS(4076), 1, - sym__newline, - STATE(1788), 1, - sym_comment, - STATE(1970), 1, + STATE(1778), 1, aux_sym__repeat_newline, - STATE(4401), 1, + STATE(1810), 1, + sym_comment, + STATE(3068), 1, sym__type_annotation, - ACTIONS(3749), 2, + ACTIONS(4076), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(3128), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4074), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173465,99 +174916,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40340] = 10, + [41624] = 16, 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, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + STATE(1811), 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, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [40405] = 16, + STATE(2102), 1, + sym__val_number_decimal, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(4871), 1, + sym__command_name, + ACTIONS(3635), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3637), 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, + [41701] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(93), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(105), 1, + ACTIONS(1802), 1, sym_raw_string_begin, - ACTIONS(3669), 1, + ACTIONS(3639), 1, aux_sym_cmd_identifier_token1, - STATE(1790), 1, + STATE(1812), 1, sym_comment, - STATE(1976), 1, + STATE(2102), 1, sym__val_number_decimal, - STATE(3942), 1, - sym__command_name, - STATE(4246), 1, - sym_cmd_identifier, - STATE(4248), 1, + STATE(3563), 1, sym_val_string, - ACTIONS(3649), 2, + STATE(3600), 1, + sym_cmd_identifier, + STATE(4125), 1, + sym__command_name, + ACTIONS(3635), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3649), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3637), 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, + [41778] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + STATE(1813), 1, + sym_comment, + STATE(2102), 1, + sym__val_number_decimal, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(4237), 1, + sym__command_name, + ACTIONS(3635), 2, anon_sym_export, anon_sym_in, - STATE(480), 4, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3667), 23, + ACTIONS(3637), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173581,226 +175099,204 @@ 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, + [41855] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(4076), 1, - sym__newline, - STATE(1791), 1, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + STATE(1814), 1, sym_comment, - STATE(1970), 1, - aux_sym__repeat_newline, - STATE(4552), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [40547] = 3, + STATE(2102), 1, + sym__val_number_decimal, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(3898), 1, + sym__command_name, + ACTIONS(3635), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3637), 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, + [41932] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1792), 1, + STATE(1815), 1, sym_comment, - ACTIONS(4078), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [40598] = 3, + ACTIONS(763), 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(765), 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, + [41985] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1793), 1, + ACTIONS(4023), 1, + aux_sym__immediate_decimal_token5, + STATE(1816), 1, sym_comment, - ACTIONS(4080), 42, + ACTIONS(1756), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1754), 34, + anon_sym_in, 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_DASH2, anon_sym_LBRACE, - anon_sym_RBRACE, - [40649] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4076), 1, - sym__newline, - ACTIONS(4086), 1, - anon_sym_list, - ACTIONS(4088), 1, - anon_sym_oneof, - STATE(1794), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [42040] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4090), 1, - anon_sym_QMARK2, - STATE(1795), 1, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + STATE(1817), 1, sym_comment, - ACTIONS(1438), 4, + STATE(2102), 1, + sym__val_number_decimal, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(5237), 1, + sym__command_name, + ACTIONS(3635), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 37, - sym_raw_string_begin, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3637), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173824,25 +175320,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_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, - [40769] = 4, + [42117] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1796), 1, + STATE(1818), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(789), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -173851,7 +175334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 34, + ACTIONS(791), 34, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -173886,30 +175369,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [40822] = 10, + [42170] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3809), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3811), 1, anon_sym_oneof, - STATE(1784), 1, - aux_sym__types_body_repeat3, - STATE(1797), 1, + ACTIONS(4072), 1, + sym__newline, + STATE(1786), 1, + aux_sym__repeat_newline, + STATE(1819), 1, sym_comment, - STATE(4559), 1, - sym__one_type, - STATE(4821), 1, + STATE(4435), 1, sym__type_annotation, - ACTIONS(3749), 2, + ACTIONS(3807), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3805), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173941,93 +175424,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40887] = 4, + [42235] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1798), 1, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(3639), 1, + aux_sym_cmd_identifier_token1, + STATE(1820), 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, + STATE(2102), 1, + sym__val_number_decimal, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(5246), 1, + sym__command_name, + ACTIONS(3635), 2, + anon_sym_export, 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(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3637), 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, + [42312] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1802), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3639), 1, aux_sym_cmd_identifier_token1, - STATE(1799), 1, + STATE(1821), 1, sym_comment, - STATE(2099), 1, + STATE(2102), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3563), 1, sym_val_string, - STATE(5063), 1, + STATE(3600), 1, + sym_cmd_identifier, + STATE(4407), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3635), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3647), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3649), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3637), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174051,19 +175546,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [41017] = 4, + [42389] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + STATE(1789), 1, + aux_sym__types_body_repeat3, + STATE(1822), 1, sym_comment, - ACTIONS(1470), 4, - anon_sym_export, + STATE(4560), 1, + sym__one_type, + STATE(4884), 1, + sym__type_annotation, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3805), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [42454] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(3639), 1, aux_sym_cmd_identifier_token1, + STATE(1823), 1, + sym_comment, + STATE(2102), 1, + sym__val_number_decimal, + STATE(3563), 1, + sym_val_string, + STATE(3600), 1, + sym_cmd_identifier, + STATE(5012), 1, + sym__command_name, + ACTIONS(3635), 2, + anon_sym_export, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1472), 38, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(3647), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3649), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3637), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174087,27 +175662,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + [42531] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1824), 1, + sym_comment, + ACTIONS(4119), 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, - [41070] = 5, + 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, + [42582] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4015), 1, - aux_sym__immediate_decimal_token5, - STATE(1801), 1, + STATE(1825), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(1748), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -174115,7 +175723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 34, + ACTIONS(1746), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -174150,63 +175758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [41125] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1802), 1, - sym_comment, - ACTIONS(1474), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1476), 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, - [41178] = 5, + [42634] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4092), 1, - aux_sym__immediate_decimal_token5, - STATE(1803), 1, + STATE(1826), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1814), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -174214,7 +175771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 34, + ACTIONS(1812), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -174249,16 +175806,12 @@ static const uint16_t ts_small_parse_table[] = { 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, + [42686] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1827), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1902), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -174266,10 +175819,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 33, + ACTIONS(1900), 34, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -174300,16 +175854,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [41290] = 6, + [42738] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4098), 1, - anon_sym_DOT, - ACTIONS(4100), 1, + ACTIONS(4111), 1, aux_sym__immediate_decimal_token5, - STATE(1805), 1, + STATE(1828), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(1756), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -174317,7 +175869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 33, + ACTIONS(1754), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -174351,19 +175903,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [41347] = 4, + [42792] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1806), 1, + STATE(1829), 1, sym_comment, - ACTIONS(1514), 4, + ACTIONS(1537), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1516), 38, + ACTIONS(1539), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174390,6 +175941,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, @@ -174398,67 +175951,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [41400] = 3, + [42844] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1807), 1, - sym_comment, - ACTIONS(4102), 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, + ACTIONS(3972), 1, anon_sym_list, + ACTIONS(3974), 1, anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [41451] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1808), 1, + STATE(1830), 1, sym_comment, - ACTIONS(4104), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(1839), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4496), 1, + sym__all_type, + ACTIONS(3970), 2, + anon_sym_table, + anon_sym_record, + STATE(4522), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3968), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174488,52 +176002,22 @@ 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, + [42906] = 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(1809), 1, + STATE(1831), 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(763), 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(765), 35, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174557,134 +176041,81 @@ 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, + [42958] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4076), 1, - sym__newline, - ACTIONS(4086), 1, - anon_sym_list, - ACTIONS(4088), 1, - anon_sym_oneof, - STATE(1810), 1, + ACTIONS(866), 1, + anon_sym_DOT_DOT2, + ACTIONS(4121), 1, + sym_filesize_unit, + ACTIONS(4123), 1, + sym_duration_unit, + STATE(1832), 1, sym_comment, - STATE(1814), 1, - aux_sym__repeat_newline, - STATE(3053), 1, - sym__type_annotation, - ACTIONS(4084), 2, - anon_sym_table, - anon_sym_record, - STATE(3131), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4082), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [41644] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(4076), 1, + ACTIONS(868), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(858), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(884), 31, + anon_sym_in, sym__newline, - STATE(1788), 1, - aux_sym__repeat_newline, - STATE(1811), 1, - sym_comment, - STATE(4603), 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, - [41709] = 7, + 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, + [43018] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3994), 1, - anon_sym_DOT2, - STATE(1812), 1, + STATE(1833), 1, sym_comment, - STATE(1813), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, - sym_path, - ACTIONS(1458), 3, + ACTIONS(1533), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1460), 36, + anon_sym_DOT2, + ACTIONS(1535), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174711,6 +176142,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,21 +176152,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [41768] = 6, + [43070] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4106), 1, - anon_sym_DOT2, - STATE(1857), 1, - sym_path, - STATE(1813), 2, + ACTIONS(4125), 1, + anon_sym_BANG, + STATE(1834), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, + ACTIONS(1456), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1526), 36, + anon_sym_DOT2, + ACTIONS(1458), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -174770,30 +176201,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [41825] = 10, + [43124] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4076), 1, - sym__newline, - ACTIONS(4086), 1, + ACTIONS(4127), 1, + aux_sym__immediate_decimal_token5, + STATE(1835), 1, + sym_comment, + ACTIONS(1814), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1812), 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, + [43178] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1836), 1, + sym_comment, + ACTIONS(789), 6, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(791), 35, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + 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, + [43230] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3972), 1, anon_sym_list, - ACTIONS(4088), 1, + ACTIONS(3974), 1, anon_sym_oneof, - STATE(1814), 1, + STATE(1837), 1, sym_comment, - STATE(1970), 1, - aux_sym__repeat_newline, - STATE(3054), 1, - sym__type_annotation, - ACTIONS(4084), 2, + STATE(1839), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4515), 1, + sym__all_type, + ACTIONS(3970), 2, anon_sym_table, anon_sym_record, - STATE(3131), 4, + STATE(4522), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4082), 31, + ACTIONS(3968), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174825,30 +176351,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41890] = 10, + [43292] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4076), 1, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern, + ACTIONS(4129), 1, + anon_sym_DOT_DOT2, + STATE(1838), 1, + sym_comment, + ACTIONS(4131), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2023), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2021), 31, + anon_sym_in, sym__newline, - ACTIONS(4086), 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_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [43352] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4139), 1, anon_sym_list, - ACTIONS(4088), 1, + ACTIONS(4142), 1, anon_sym_oneof, - STATE(1794), 1, - aux_sym__repeat_newline, - STATE(1815), 1, - sym_comment, - STATE(2916), 1, - sym__type_annotation, - ACTIONS(4084), 2, + STATE(4794), 1, + sym__all_type, + ACTIONS(4136), 2, anon_sym_table, anon_sym_record, - STATE(3131), 4, + STATE(1839), 2, + sym_comment, + aux_sym__composite_argument_body_repeat1, + STATE(4522), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4082), 31, + ACTIONS(4133), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174880,19 +176455,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41955] = 5, + [43412] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4090), 1, - anon_sym_BANG, - STATE(1816), 1, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(4145), 1, + anon_sym_DOT_DOT2, + STATE(1840), 1, + sym_comment, + ACTIONS(4147), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2013), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2011), 31, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [43472] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1841), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(1541), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1440), 37, + ACTIONS(1543), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -174930,227 +176555,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [42010] = 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(1817), 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, + [43524] = 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(1842), 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, + ACTIONS(739), 6, 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, - [42164] = 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(1819), 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, 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, - 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, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(741), 35, sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1820), 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, - 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, @@ -175174,143 +176592,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42318] = 16, - 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, + 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, - 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, + sym_filesize_unit, 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, + [43576] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4009), 1, - aux_sym__immediate_decimal_token5, - STATE(1823), 1, + ACTIONS(4149), 1, + anon_sym_DOT_DOT2, + ACTIONS(4153), 1, + sym_filesize_unit, + ACTIONS(4155), 1, + sym_duration_unit, + ACTIONS(4157), 1, + sym__unquoted_pattern, + STATE(1843), 1, sym_comment, - ACTIONS(739), 6, + ACTIONS(4151), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(858), 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(884), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -175336,32 +176649,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [42527] = 5, + [43638] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4109), 1, - aux_sym__immediate_decimal_token5, - STATE(1824), 1, + ACTIONS(4125), 1, + anon_sym_QMARK2, + STATE(1844), 1, sym_comment, - ACTIONS(771), 6, + ACTIONS(1456), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(773), 35, + anon_sym_DOT2, + ACTIONS(1458), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175385,28 +176694,27 @@ 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, - [42582] = 4, + [43692] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1825), 1, + STATE(1845), 1, sym_comment, - ACTIONS(1462), 4, + ACTIONS(2272), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1464), 37, + ACTIONS(2270), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -175444,27 +176752,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [42634] = 8, + [43743] = 6, 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, + ACTIONS(4159), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4161), 1, + aux_sym__immediate_decimal_token5, + STATE(1846), 1, sym_comment, - ACTIONS(4113), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + ACTIONS(1748), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 31, + sym__unquoted_pattern, + ACTIONS(1746), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -175487,6 +176791,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,117 +176801,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [42694] = 8, + [43798] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(4115), 1, - anon_sym_DOT_DOT2, - STATE(1827), 1, + STATE(1847), 1, sym_comment, - ACTIONS(4117), 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), 31, + ACTIONS(2142), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + ACTIONS(2140), 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_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, - [42754] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1828), 1, - sym_comment, - STATE(1838), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4448), 1, - sym__all_type, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4464), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [42816] = 4, + anon_sym_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, + [43849] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1829), 1, + STATE(1848), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1748), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -175614,66 +176861,10 @@ static const uint16_t ts_small_parse_table[] = { 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, - [42868] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(876), 1, - anon_sym_DOT_DOT2, - ACTIONS(4119), 1, - sym_filesize_unit, - ACTIONS(4121), 1, - sym_duration_unit, - STATE(1830), 1, - 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, + ACTIONS(1746), 33, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -175692,6 +176883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -175701,74 +176893,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [42928] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1831), 1, - sym_comment, - STATE(1838), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4484), 1, - sym__all_type, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4464), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [42990] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [43900] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_QMARK2, - STATE(1832), 1, + STATE(1849), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(2290), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 36, + ACTIONS(2288), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175795,6 +176932,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, @@ -175803,17 +176942,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43044] = 4, + [43951] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1833), 1, + STATE(1850), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(1523), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1522), 37, + ACTIONS(1525), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -175851,12 +176989,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43096] = 4, + [44002] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1834), 1, + STATE(1851), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1814), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -175864,11 +177002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 34, + ACTIONS(1812), 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, @@ -175899,118 +177036,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [43148] = 4, - ACTIONS(3), 1, + [44053] = 28, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1835), 1, + ACTIONS(2738), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2740), 1, + anon_sym_COLON2, + ACTIONS(4163), 1, + anon_sym_null, + ACTIONS(4167), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_DOLLAR, + ACTIONS(4171), 1, + anon_sym_DOT_DOT, + ACTIONS(4175), 1, + sym_val_date, + ACTIONS(4177), 1, + anon_sym_DQUOTE, + ACTIONS(4179), 1, + anon_sym_SQUOTE, + ACTIONS(4181), 1, + anon_sym_BQUOTE, + ACTIONS(4183), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4185), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4187), 1, + aux_sym_unquoted_token1, + ACTIONS(4189), 1, + sym_raw_string_begin, + STATE(1852), 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, - 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, + STATE(1859), 1, + sym__inter_double_quotes, + STATE(1874), 1, + sym__inter_single_quotes, + STATE(3787), 1, + sym__val_number_decimal, + STATE(5027), 1, + sym_val_bool, + ACTIONS(3036), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3048), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4173), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5124), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4165), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1871), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1441), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [44152] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4100), 1, - aux_sym__immediate_decimal_token5, - STATE(1836), 1, + STATE(1853), 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, + ACTIONS(1500), 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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43254] = 5, + ACTIONS(1502), 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, + [44203] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_BANG, - STATE(1837), 1, + STATE(1854), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(1504), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 36, + ACTIONS(1506), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176037,6 +177191,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, @@ -176045,27 +177201,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43308] = 8, + [44254] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4131), 1, + ACTIONS(3972), 1, anon_sym_list, - ACTIONS(4134), 1, + ACTIONS(3974), 1, anon_sym_oneof, - STATE(4736), 1, + STATE(1855), 1, + sym_comment, + STATE(4196), 1, sym__all_type, - ACTIONS(4128), 2, + ACTIONS(3970), 2, anon_sym_table, anon_sym_record, - STATE(1838), 2, + STATE(4522), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3968), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [44313] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, + anon_sym_list, + ACTIONS(3811), 1, + anon_sym_oneof, + STATE(1856), 1, sym_comment, - aux_sym__composite_argument_body_repeat1, - STATE(4464), 4, + STATE(4969), 1, + sym__type_annotation, + ACTIONS(3807), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4125), 31, + ACTIONS(3805), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176097,22 +177303,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43368] = 5, + [44372] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4137), 1, - aux_sym__immediate_decimal_token5, - STATE(1839), 1, + ACTIONS(4121), 1, + sym_filesize_unit, + ACTIONS(4123), 1, + sym_duration_unit, + ACTIONS(4191), 1, + anon_sym_DOT_DOT2, + STATE(1857), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(4193), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(858), 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(884), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -176134,7 +177345,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, @@ -176144,21 +177354,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43422] = 4, + [44431] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4195), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4197), 1, + aux_sym__immediate_decimal_token5, + STATE(1858), 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, + [44486] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1840), 1, + STATE(1859), 1, sym_comment, - ACTIONS(747), 6, + ACTIONS(2260), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(749), 35, + ACTIONS(2258), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176183,38 +177437,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43474] = 9, - ACTIONS(3), 1, + [44537] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(4143), 1, + ACTIONS(4199), 1, + anon_sym_DOT, + ACTIONS(4201), 1, + aux_sym__immediate_decimal_token5, + STATE(1860), 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, - ACTIONS(4145), 1, + 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, - ACTIONS(4147), 1, - sym__unquoted_pattern, - STATE(1841), 1, + [44592] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1861), 1, sym_comment, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 3, + ACTIONS(1689), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(968), 32, + ACTIONS(1687), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176239,7 +177533,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -176247,20 +177546,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43536] = 4, + [44643] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1842), 1, + STATE(1862), 1, sym_comment, - ACTIONS(771), 6, + ACTIONS(1541), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(773), 35, + anon_sym_DOT2, + ACTIONS(1543), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176284,30 +177582,74 @@ 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, - [43588] = 4, + [44694] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1843), 1, + STATE(1863), 1, + sym_comment, + ACTIONS(1902), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1900), 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, + [44745] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1864), 1, sym_comment, - ACTIONS(849), 6, + ACTIONS(1848), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(851), 35, + ACTIONS(1846), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176332,29 +177674,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43640] = 4, + [44796] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1844), 1, + STATE(1865), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(1533), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1537), 37, + ACTIONS(1535), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176381,8 +177726,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, @@ -176391,16 +177734,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43692] = 4, + [44847] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1845), 1, + STATE(1866), 1, sym_comment, - ACTIONS(1474), 3, + ACTIONS(1496), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1476), 37, + ACTIONS(1498), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176438,74 +177781,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43743] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1846), 1, - sym_comment, - STATE(4128), 1, - sym__all_type, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4464), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [43802] = 4, + [44898] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1847), 1, + ACTIONS(4203), 1, + anon_sym_DOT, + ACTIONS(4205), 1, + aux_sym__immediate_decimal_token5, + STATE(1867), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1756), 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), 33, + ACTIONS(1754), 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, @@ -176534,123 +177830,121 @@ 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, - [43853] = 4, + [44953] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1848), 1, + STATE(1868), 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), 33, + ACTIONS(1537), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43904] = 4, + anon_sym_DOT2, + ACTIONS(1539), 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, + [45004] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1849), 1, + STATE(1869), 1, sym_comment, - ACTIONS(1872), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 33, + ACTIONS(1527), 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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43955] = 8, + ACTIONS(1529), 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, + [45055] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1615), 1, sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(4149), 1, + ACTIONS(4207), 1, anon_sym_DOT_DOT2, - STATE(1850), 1, + STATE(1870), 1, sym_comment, - ACTIONS(4151), 2, + ACTIONS(4209), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(2013), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 30, + ACTIONS(2011), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -176681,26 +177975,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44014] = 8, + [45114] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1851), 1, + STATE(1871), 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, + ACTIONS(1519), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1521), 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, + [45165] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1872), 1, + sym_comment, + ACTIONS(2150), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2148), 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, + [45216] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4211), 1, + sym__entry_separator, + STATE(1873), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3729), 38, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176730,18 +178109,23 @@ 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, - [44073] = 4, + anon_sym_record, + anon_sym_list, + anon_sym_GT2, + anon_sym_oneof, + [45267] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1852), 1, + STATE(1874), 1, sym_comment, - ACTIONS(2094), 3, + ACTIONS(2260), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2092), 37, + ACTIONS(2258), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176779,87 +178163,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44124] = 28, - ACTIONS(103), 1, + [45318] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(4153), 1, + STATE(1875), 1, + sym_comment, + ACTIONS(2268), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2266), 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, - 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, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(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, + [45369] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3972), 1, + anon_sym_list, + ACTIONS(3974), 1, + anon_sym_oneof, + STATE(1876), 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, + STATE(4669), 1, + sym__all_type, + ACTIONS(3970), 2, + anon_sym_table, + anon_sym_record, + STATE(4522), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3968), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [45428] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1877), 1, + sym_comment, + ACTIONS(1580), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1582), 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, - ACTIONS(3036), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, 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_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [45479] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1854), 1, + STATE(1878), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(2286), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 37, + ACTIONS(2284), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176897,27 +178355,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44274] = 8, + [45530] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2025), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2031), 1, sym__unquoted_pattern, - ACTIONS(4181), 1, + ACTIONS(4214), 1, anon_sym_DOT_DOT2, - STATE(1855), 1, + STATE(1879), 1, sym_comment, - ACTIONS(4183), 2, + ACTIONS(4216), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + ACTIONS(2023), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 30, + ACTIONS(2021), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -176948,17 +178406,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44333] = 4, + [45589] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1856), 1, + ACTIONS(3972), 1, + anon_sym_list, + ACTIONS(3974), 1, + anon_sym_oneof, + STATE(1880), 1, + sym_comment, + STATE(4807), 1, + sym__type_annotation, + ACTIONS(3970), 2, + anon_sym_table, + anon_sym_record, + STATE(4715), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3968), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [45648] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1881), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(1504), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 37, + ACTIONS(1506), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176985,8 +178495,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, @@ -176995,17 +178503,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44384] = 4, + [45698] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1857), 1, + STATE(1882), 1, sym_comment, - ACTIONS(1462), 4, + ACTIONS(1496), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1464), 36, + ACTIONS(1498), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -177042,113 +178549,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44435] = 4, - ACTIONS(3), 1, + [45748] = 27, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1858), 1, - sym_comment, - ACTIONS(1556), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1558), 37, + ACTIONS(2950), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4163), 1, + anon_sym_null, + ACTIONS(4175), 1, + sym_val_date, + ACTIONS(4220), 1, + anon_sym_LPAREN, + ACTIONS(4222), 1, + anon_sym_DOLLAR, + ACTIONS(4224), 1, + anon_sym_DOT_DOT, + ACTIONS(4228), 1, + anon_sym_DQUOTE, + ACTIONS(4230), 1, + anon_sym_SQUOTE, + ACTIONS(4232), 1, + anon_sym_BQUOTE, + ACTIONS(4234), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4236), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4238), 1, + aux_sym_unquoted_token1, + ACTIONS(4240), 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(1883), 1, + sym_comment, + STATE(1903), 1, + sym__inter_single_quotes, + STATE(1914), 1, + sym__inter_double_quotes, + STATE(3838), 1, + sym__val_number_decimal, + STATE(5027), 1, + sym_val_bool, + ACTIONS(3036), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + ACTIONS(3046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3048), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - 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, + ACTIONS(4226), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4915), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4218), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1899), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1456), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [45844] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1860), 1, + STATE(1884), 1, sym_comment, - ACTIONS(2260), 3, + ACTIONS(1523), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2258), 37, + ACTIONS(1525), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177175,8 +178656,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -177185,17 +178664,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44592] = 4, + [45894] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1861), 1, + STATE(1885), 1, sym_comment, - ACTIONS(2264), 3, + ACTIONS(1580), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2262), 37, + ACTIONS(1582), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177222,8 +178702,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, @@ -177232,16 +178710,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44643] = 4, + [45944] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1862), 1, + ACTIONS(4242), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4244), 1, + aux_sym__immediate_decimal_token5, + STATE(1886), 1, + sym_comment, + ACTIONS(1748), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1746), 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, + [45998] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4246), 1, + anon_sym_DOT2, + STATE(1887), 1, sym_comment, - ACTIONS(1643), 3, + STATE(1936), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2126), 1, + sym_path, + STATE(2153), 1, + sym_cell_path, + ACTIONS(1858), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1641), 37, + ACTIONS(1856), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177266,12 +178800,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, @@ -177279,74 +178808,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44694] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - STATE(1863), 1, - sym_comment, - STATE(4972), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [44753] = 6, + [46056] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4189), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4191), 1, + ACTIONS(4205), 1, aux_sym__immediate_decimal_token5, - STATE(1864), 1, + STATE(1888), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1756), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1726), 32, + ACTIONS(1754), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -177379,16 +178855,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44808] = 4, + [46108] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1865), 1, + ACTIONS(4246), 1, + anon_sym_DOT2, + STATE(1889), 1, sym_comment, - ACTIONS(2274), 3, + STATE(1936), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2126), 1, + sym_path, + STATE(2184), 1, + sym_cell_path, + ACTIONS(1882), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2272), 37, + ACTIONS(1880), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177413,12 +178897,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, @@ -177426,17 +178905,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44859] = 4, + [46166] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1866), 1, + STATE(1890), 1, sym_comment, - ACTIONS(1824), 3, + ACTIONS(1500), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1822), 37, + ACTIONS(1502), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177463,8 +178943,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, @@ -177473,17 +178951,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44910] = 4, + [46216] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1867), 1, + STATE(1891), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(2286), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1522), 36, + ACTIONS(2284), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -177520,19 +178997,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44961] = 4, + [46266] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1868), 1, + ACTIONS(4248), 1, + anon_sym_QMARK2, + ACTIONS(4250), 1, + anon_sym_BANG, + STATE(1892), 1, sym_comment, - ACTIONS(1535), 4, + STATE(2122), 1, + sym__path_suffix, + ACTIONS(1442), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1537), 36, + ACTIONS(1444), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177556,10 +179038,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -177567,64 +179046,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45012] = 4, - ACTIONS(3), 1, + [46322] = 27, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1869), 1, - sym_comment, - ACTIONS(1478), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1480), 37, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4163), 1, + anon_sym_null, + ACTIONS(4167), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_DOLLAR, + ACTIONS(4171), 1, + anon_sym_DOT_DOT, + ACTIONS(4175), 1, + sym_val_date, + ACTIONS(4177), 1, + anon_sym_DQUOTE, + ACTIONS(4179), 1, + anon_sym_SQUOTE, + ACTIONS(4181), 1, + anon_sym_BQUOTE, + ACTIONS(4183), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4185), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4187), 1, + aux_sym_unquoted_token1, + ACTIONS(4189), 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(1859), 1, + sym__inter_double_quotes, + STATE(1874), 1, + sym__inter_single_quotes, + STATE(1893), 1, + sym_comment, + STATE(3787), 1, + sym__val_number_decimal, + STATE(5027), 1, + sym_val_bool, + ACTIONS(3036), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + ACTIONS(3046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3048), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [45063] = 4, + ACTIONS(4173), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5124), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4165), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1871), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1441), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [46418] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4252), 1, + anon_sym_DOT, + ACTIONS(4254), 1, + aux_sym__immediate_decimal_token5, + STATE(1894), 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, + [46472] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1870), 1, + STATE(1895), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(1848), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1545), 37, + ACTIONS(1846), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177651,8 +179201,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, @@ -177661,17 +179209,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45114] = 4, + [46522] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1871), 1, + STATE(1896), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(1527), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1468), 37, + ACTIONS(1529), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177698,8 +179247,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, @@ -177708,17 +179255,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45165] = 4, + [46572] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1872), 1, + STATE(1897), 1, sym_comment, - ACTIONS(2086), 3, + ACTIONS(2150), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2084), 37, + ACTIONS(2148), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177745,8 +179293,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, @@ -177755,64 +179301,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45216] = 4, + [46622] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1873), 1, + ACTIONS(4256), 1, + aux_sym__immediate_decimal_token5, + STATE(1898), 1, sym_comment, - ACTIONS(1470), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1814), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1812), 32, anon_sym_in, - ACTIONS(1472), 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, - [45267] = 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, + [46674] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1874), 1, + STATE(1899), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1519), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1516), 37, + ACTIONS(1521), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177839,8 +179386,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, @@ -177849,66 +179394,14 @@ 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, + [46724] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4197), 1, + ACTIONS(3744), 1, sym__entry_separator, - STATE(1876), 2, + STATE(1900), 1, sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 38, + ACTIONS(3742), 38, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_any, @@ -177947,166 +179440,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, anon_sym_GT2, anon_sym_oneof, - [45428] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1877), 1, - sym_comment, - STATE(4566), 1, - sym__all_type, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4464), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [45487] = 6, - 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, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(741), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [45542] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4204), 1, - anon_sym_DOT, - ACTIONS(4206), 1, - aux_sym__immediate_decimal_token5, - STATE(1879), 1, - sym_comment, - ACTIONS(1738), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 32, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [45597] = 4, + [46774] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1880), 1, + STATE(1901), 1, sym_comment, - ACTIONS(2270), 3, + ACTIONS(1689), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2268), 37, + ACTIONS(1687), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178133,8 +179478,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -178143,18 +179486,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45648] = 4, + [46824] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1881), 1, + ACTIONS(4246), 1, + anon_sym_DOT2, + STATE(1902), 1, sym_comment, - ACTIONS(2256), 3, + STATE(1936), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2126), 1, + sym_path, + STATE(2196), 1, + sym_cell_path, + ACTIONS(1890), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 36, + ACTIONS(1888), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178178,10 +179528,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178189,24 +179536,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45698] = 7, + [46882] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4208), 1, - anon_sym_QMARK2, - ACTIONS(4210), 1, - anon_sym_BANG, - STATE(1882), 1, + STATE(1903), 1, sym_comment, - STATE(2111), 1, - sym__path_suffix, - ACTIONS(1446), 4, + ACTIONS(2260), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1448), 32, + ACTIONS(2258), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178230,7 +179571,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178238,25 +179582,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45754] = 8, + [46932] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1883), 1, + STATE(1904), 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(2290), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1882), 32, + ACTIONS(2288), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178280,7 +179617,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 +179628,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45812] = 4, + [46982] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4258), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4260), 1, + aux_sym__immediate_decimal_token5, + STATE(1905), 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, + [47036] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1884), 1, + ACTIONS(4246), 1, + anon_sym_DOT2, + STATE(1906), 1, sym_comment, - ACTIONS(1474), 3, + STATE(1936), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2126), 1, + sym_path, + STATE(2160), 1, + sym_cell_path, + ACTIONS(1450), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1476), 36, + ACTIONS(1452), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178323,10 +179718,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178334,16 +179726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45862] = 4, + [47094] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1885), 1, + STATE(1907), 1, sym_comment, - ACTIONS(2264), 3, + ACTIONS(2268), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2262), 36, + ACTIONS(2266), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178380,16 +179772,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45912] = 4, + [47144] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1886), 1, + STATE(1908), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(2272), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1480), 36, + ACTIONS(2270), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178426,16 +179818,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45962] = 4, + [47194] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1887), 1, + STATE(1909), 1, sym_comment, - ACTIONS(2260), 3, + ACTIONS(2142), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2258), 36, + ACTIONS(2140), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178472,24 +179864,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46012] = 8, + [47244] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4262), 1, + aux_sym__immediate_decimal_token5, + STATE(1910), 1, + sym_comment, + ACTIONS(763), 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(765), 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, + [47296] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + aux_sym__immediate_decimal_token5, + STATE(1911), 1, + sym_comment, + ACTIONS(1756), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1754), 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, + [47350] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, + ACTIONS(4246), 1, anon_sym_DOT2, - STATE(1888), 1, + STATE(1912), 1, sym_comment, - STATE(1947), 1, + STATE(1936), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, + STATE(2126), 1, sym_path, - STATE(2205), 1, + STATE(2204), 1, sym_cell_path, - ACTIONS(1864), 3, + ACTIONS(1874), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1862), 32, + ACTIONS(1872), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178522,18 +180009,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46070] = 4, + [47408] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1889), 1, + ACTIONS(4246), 1, + anon_sym_DOT2, + STATE(1913), 1, sym_comment, - ACTIONS(2086), 3, + STATE(1936), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2126), 1, + sym_path, + STATE(2191), 1, + sym_cell_path, + ACTIONS(1894), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2084), 36, + ACTIONS(1892), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178557,10 +180051,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178568,16 +180059,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46120] = 4, + [47466] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1890), 1, + STATE(1914), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(2260), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1468), 36, + ACTIONS(2258), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178614,18 +180105,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46170] = 4, + [47516] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1891), 1, + ACTIONS(4246), 1, + anon_sym_DOT2, + STATE(1915), 1, sym_comment, - ACTIONS(1470), 3, + STATE(1936), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2126), 1, + sym_path, + STATE(2205), 1, + sym_cell_path, + ACTIONS(1865), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1472), 36, + ACTIONS(1862), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178649,10 +180147,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178660,64 +180155,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46220] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4214), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4216), 1, - aux_sym__immediate_decimal_token5, - STATE(1892), 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), 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, - [46274] = 6, + [47574] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4218), 1, - anon_sym_DOT, - ACTIONS(4220), 1, + ACTIONS(4201), 1, aux_sym__immediate_decimal_token5, - STATE(1893), 1, + STATE(1916), 1, sym_comment, - ACTIONS(739), 7, + ACTIONS(747), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -178725,7 +180170,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(741), 30, + anon_sym_COLON2, + ACTIONS(749), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -178756,76 +180202,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [46328] = 8, + [47626] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1894), 1, + ACTIONS(4268), 1, + anon_sym_DOT_DOT2, + STATE(1917), 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, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(4270), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2154), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2152), 30, anon_sym_in, - ACTIONS(1866), 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, - [46386] = 6, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [47679] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4222), 1, - anon_sym_DOT, - ACTIONS(4224), 1, - aux_sym__immediate_decimal_token5, - STATE(1895), 1, + ACTIONS(1691), 1, + sym__unquoted_pattern, + ACTIONS(2564), 1, + anon_sym_LPAREN2, + STATE(1918), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(2562), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 31, + ACTIONS(2560), 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, @@ -178844,7 +180287,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, @@ -178854,182 +180296,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [46440] = 4, + [47732] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1896), 1, + ACTIONS(2574), 1, + anon_sym_LPAREN2, + ACTIONS(2576), 1, + sym__unquoted_pattern, + STATE(1919), 1, sym_comment, - ACTIONS(1556), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(2572), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2570), 31, anon_sym_in, - ACTIONS(1558), 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, - [46490] = 27, + 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, + [47785] = 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(4274), 1, + anon_sym_GT2, + ACTIONS(4276), 1, + sym__entry_separator, + STATE(1873), 1, + aux_sym__types_body_repeat2, + STATE(1920), 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(4272), 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, + [47838] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1898), 1, + ACTIONS(2525), 1, + anon_sym_LPAREN2, + ACTIONS(2527), 1, + sym__unquoted_pattern, + STATE(1921), 1, sym_comment, - ACTIONS(1824), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(2523), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2521), 31, anon_sym_in, - ACTIONS(1822), 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, - [46636] = 5, + 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, + [47891] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4226), 1, - aux_sym__immediate_decimal_token5, - STATE(1899), 1, + ACTIONS(2594), 1, + anon_sym_LPAREN2, + ACTIONS(2596), 1, + sym__unquoted_pattern, + STATE(1922), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(1629), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 32, + ACTIONS(1716), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -179052,7 +180475,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,135 +180484,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [46688] = 27, + [47944] = 6, 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, + ACTIONS(4276), 1, + sym__entry_separator, + ACTIONS(4278), 1, + anon_sym_RBRACK, + STATE(1873), 1, + aux_sym__types_body_repeat2, + STATE(1923), 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(4280), 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, + [47997] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4276), 1, + sym__entry_separator, + ACTIONS(4282), 1, + anon_sym_RBRACK, + STATE(1873), 1, + aux_sym__types_body_repeat2, + STATE(1924), 1, + sym_comment, + ACTIONS(4280), 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, + [48050] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1901), 1, + ACTIONS(2556), 1, + anon_sym_LPAREN2, + ACTIONS(2558), 1, + sym__unquoted_pattern, + STATE(1925), 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, + ACTIONS(1008), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1030), 31, 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, + 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, + [48103] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2556), 1, + anon_sym_LPAREN2, + ACTIONS(2558), 1, + sym__unquoted_pattern, + STATE(1926), 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, + [48156] = 4, 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, + STATE(1927), 1, sym_comment, - ACTIONS(747), 7, + ACTIONS(739), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -179198,7 +180685,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(749), 30, + anon_sym_COLON2, + ACTIONS(741), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -179229,16 +180717,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [46896] = 4, + [48205] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3734), 1, + STATE(1928), 1, + sym_comment, + ACTIONS(763), 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(765), 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, + [48254] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1929), 1, + sym_comment, + ACTIONS(789), 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(791), 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, + [48303] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4276), 1, sym__entry_separator, - STATE(1903), 1, + ACTIONS(4284), 1, + anon_sym_GT2, + STATE(1873), 1, + aux_sym__types_body_repeat2, + STATE(1930), 1, sym_comment, - ACTIONS(3732), 38, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4272), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179273,23 +180853,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, + anon_sym_oneof, + [48356] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4276), 1, + sym__entry_separator, + ACTIONS(4286), 1, anon_sym_GT2, + STATE(1873), 1, + aux_sym__types_body_repeat2, + STATE(1931), 1, + sym_comment, + ACTIONS(4272), 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, - [46946] = 5, + [48409] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4206), 1, - aux_sym__immediate_decimal_token5, - STATE(1904), 1, + STATE(1932), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(1748), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1736), 32, + ACTIONS(1746), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -179322,65 +180946,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [46998] = 5, + [48458] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4256), 1, - aux_sym__immediate_decimal_token5, - STATE(1905), 1, + ACTIONS(4276), 1, + sym__entry_separator, + ACTIONS(4288), 1, + anon_sym_RBRACK, + STATE(1873), 1, + aux_sym__types_body_repeat2, + STATE(1933), 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, - [47050] = 4, + ACTIONS(4280), 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, + [48511] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1934), 1, + sym_comment, + ACTIONS(1814), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1812), 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, + [48560] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1935), 1, + sym_comment, + ACTIONS(1902), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1900), 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, + [48609] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1906), 1, + ACTIONS(4246), 1, + anon_sym_DOT2, + STATE(1936), 1, sym_comment, - ACTIONS(2270), 3, + STATE(1937), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2126), 1, + sym_path, + ACTIONS(1515), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2268), 36, + ACTIONS(1517), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179404,10 +181123,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179415,18 +181131,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47100] = 4, + [48664] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1907), 1, + ACTIONS(4290), 1, + anon_sym_DOT2, + STATE(2126), 1, + sym_path, + STATE(1937), 2, sym_comment, - ACTIONS(2274), 3, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1508), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2272), 36, + ACTIONS(1510), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179450,10 +181170,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179461,18 +181178,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47150] = 4, + [48717] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4276), 1, + sym__entry_separator, + ACTIONS(4293), 1, + anon_sym_GT2, + STATE(1873), 1, + aux_sym__types_body_repeat2, + STATE(1938), 1, + sym_comment, + ACTIONS(4272), 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, + [48770] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1908), 1, + STATE(1939), 1, sym_comment, - ACTIONS(1643), 3, + ACTIONS(1519), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1641), 36, + anon_sym_DOT2, + ACTIONS(1521), 34, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179496,10 +181260,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179507,24 +181268,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47200] = 8, + anon_sym_QMARK2, + anon_sym_BANG, + [48819] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1909), 1, + STATE(1940), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2203), 1, - sym_cell_path, - ACTIONS(1880), 3, + ACTIONS(1523), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1878), 32, + anon_sym_DOT2, + ACTIONS(1525), 34, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179557,18 +181313,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47258] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [48868] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1910), 1, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern, + STATE(1941), 1, + sym_comment, + ACTIONS(2023), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2021), 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, + [48921] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1942), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1496), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1516), 36, + anon_sym_DOT2, + ACTIONS(1498), 34, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179592,10 +181397,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179603,24 +181405,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47308] = 8, + anon_sym_QMARK2, + anon_sym_BANG, + [48970] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, + STATE(1943), 1, + sym_comment, + ACTIONS(1500), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOT2, - STATE(1911), 1, + ACTIONS(1502), 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, + [49019] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1944), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2182), 1, - sym_cell_path, - ACTIONS(1432), 3, + ACTIONS(1504), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1434), 32, + anon_sym_DOT2, + ACTIONS(1506), 34, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179653,14 +181495,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47366] = 5, + anon_sym_QMARK2, + anon_sym_BANG, + [49068] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4254), 1, aux_sym__immediate_decimal_token5, - STATE(1912), 1, + STATE(1945), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(747), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -179668,8 +181512,7 @@ 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, + ACTIONS(749), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -179700,167 +181543,588 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [47418] = 4, + [49119] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1913), 1, + STATE(1946), 1, sym_comment, - ACTIONS(2094), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(2508), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(2506), 32, anon_sym_in, - ACTIONS(2092), 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, + 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, + [49168] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(858), 1, + anon_sym_COLON2, + ACTIONS(864), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4295), 1, + sym_filesize_unit, + ACTIONS(4297), 1, + sym_duration_unit, + STATE(1947), 1, + sym_comment, + ACTIONS(862), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(860), 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, + [49225] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3046), 1, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + ACTIONS(4220), 1, + anon_sym_LPAREN, + ACTIONS(4222), 1, + anon_sym_DOLLAR, + ACTIONS(4224), 1, + anon_sym_DOT_DOT, + ACTIONS(4228), 1, anon_sym_DQUOTE, + ACTIONS(4230), 1, anon_sym_SQUOTE, + ACTIONS(4232), 1, anon_sym_BQUOTE, - [47468] = 4, - ACTIONS(3), 1, - anon_sym_POUND, + ACTIONS(4234), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4236), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4238), 1, + aux_sym_unquoted_token1, + ACTIONS(4240), 1, + sym_raw_string_begin, + ACTIONS(4301), 1, + anon_sym_null, + ACTIONS(4305), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4309), 1, + sym_val_date, + STATE(1903), 1, + sym__inter_single_quotes, STATE(1914), 1, + sym__inter_double_quotes, + STATE(1948), 1, sym_comment, - ACTIONS(1543), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1545), 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, + STATE(3838), 1, + sym__val_number_decimal, + STATE(5027), 1, + sym_val_bool, + ACTIONS(4226), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4299), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(4307), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4915), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4303), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + STATE(1899), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1450), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [49320] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4266), 1, + aux_sym__immediate_decimal_token5, + STATE(1949), 1, + sym_comment, + ACTIONS(1756), 6, + 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, - [47518] = 4, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1754), 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, + [49371] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1915), 1, + ACTIONS(4311), 1, + aux_sym__immediate_decimal_token5, + STATE(1950), 1, sym_comment, - ACTIONS(2256), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1814), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1812), 31, anon_sym_in, - ACTIONS(2254), 36, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [49422] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4313), 1, + aux_sym__immediate_decimal_token5, + STATE(1951), 1, + sym_comment, + ACTIONS(763), 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(765), 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, + [49473] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3046), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4167), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, + anon_sym_DOLLAR, + ACTIONS(4171), 1, + anon_sym_DOT_DOT, + ACTIONS(4177), 1, + anon_sym_DQUOTE, + ACTIONS(4179), 1, + anon_sym_SQUOTE, + ACTIONS(4181), 1, + anon_sym_BQUOTE, + ACTIONS(4183), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4185), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4187), 1, + aux_sym_unquoted_token1, + ACTIONS(4189), 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, + ACTIONS(4301), 1, + anon_sym_null, + ACTIONS(4305), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4309), 1, + sym_val_date, + STATE(1859), 1, + sym__inter_double_quotes, + STATE(1874), 1, + sym__inter_single_quotes, + STATE(1952), 1, + sym_comment, + STATE(3787), 1, + sym__val_number_decimal, + STATE(5027), 1, + sym_val_bool, + ACTIONS(4173), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4299), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(4307), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5124), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4315), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + STATE(1871), 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, + [49568] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4276), 1, + sym__entry_separator, + ACTIONS(4317), 1, + anon_sym_RBRACK, + STATE(1873), 1, + aux_sym__types_body_repeat2, + STATE(1953), 1, + sym_comment, + ACTIONS(4280), 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, + [49621] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern, + STATE(1954), 1, + sym_comment, + ACTIONS(2568), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2566), 31, + anon_sym_in, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + 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, + [49674] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4319), 1, + anon_sym_DOT_DOT2, + STATE(1955), 1, + sym_comment, + ACTIONS(4321), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2104), 5, + anon_sym_GT2, anon_sym_STAR2, - aux_sym__val_number_decimal_token1, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2100), 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, + [49727] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4323), 1, + sym__newline, + STATE(1956), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3748), 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, + [49776] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4330), 1, + sym_long_flag_identifier, + ACTIONS(4332), 1, + anon_sym_EQ2, + STATE(1957), 1, + sym_comment, + STATE(2140), 1, + sym__flag_equals_value, + ACTIONS(4328), 9, + sym_raw_string_begin, + aux_sym_cmd_identifier_token4, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47568] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1916), 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(4326), 26, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1858), 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, @@ -179874,35 +182138,266 @@ 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, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [47626] = 5, + [49831] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4319), 1, + anon_sym_DOT_DOT2, + STATE(1958), 1, + sym_comment, + ACTIONS(4321), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1629), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1716), 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, + [49884] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + STATE(1959), 1, + sym_comment, + ACTIONS(2013), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2011), 31, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [49937] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2102), 1, + anon_sym_EQ_GT, + ACTIONS(4319), 1, + anon_sym_DOT_DOT2, + STATE(1960), 1, + sym_comment, + ACTIONS(4321), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2104), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2100), 29, + anon_sym_in, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [49992] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4334), 1, + anon_sym_DOT_DOT2, + STATE(1961), 1, + sym_comment, + ACTIONS(4336), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2013), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2011), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [50045] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4338), 1, + anon_sym_DOT_DOT2, + STATE(1962), 1, + sym_comment, + ACTIONS(4340), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2023), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2021), 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, + [50098] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4258), 1, - aux_sym__immediate_decimal_token5, - STATE(1917), 1, + ACTIONS(4342), 1, + anon_sym_DOT_DOT2, + STATE(1963), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(4344), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2110), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 31, + ACTIONS(2108), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -179924,7 +182419,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, @@ -179934,26 +182428,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47677] = 6, + [50151] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1918), 1, + ACTIONS(4346), 1, + anon_sym_DOT_DOT2, + STATE(1964), 1, sym_comment, - ACTIONS(2577), 5, + ACTIONS(4348), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2118), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2575), 31, + ACTIONS(2116), 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, @@ -179981,26 +182475,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47730] = 6, + [50204] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1919), 1, + ACTIONS(4350), 1, + anon_sym_DOT_DOT2, + STATE(1965), 1, sym_comment, - ACTIONS(1976), 5, + ACTIONS(4352), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2126), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 31, + ACTIONS(2124), 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, @@ -180028,23 +182522,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47783] = 4, + [50257] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1920), 1, + STATE(1966), 1, + sym_comment, + ACTIONS(1527), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1529), 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, + [50306] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2848), 1, + sym__newline, + STATE(1967), 1, + sym_comment, + STATE(2054), 1, + aux_sym__repeat_newline, + ACTIONS(4354), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2690), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2688), 26, + anon_sym_in, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [50364] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1968), 1, sym_comment, - ACTIONS(2503), 6, + ACTIONS(2523), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2501), 32, + ACTIONS(2521), 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, @@ -180063,7 +182651,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, @@ -180073,18 +182660,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47832] = 6, + [50412] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4360), 1, + anon_sym_QMARK2, + STATE(1969), 1, + sym_comment, + ACTIONS(1456), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1458), 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, + [50462] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4262), 1, - anon_sym_GT2, - ACTIONS(4264), 1, + ACTIONS(4276), 1, sym__entry_separator, - STATE(1876), 1, + STATE(1873), 1, aux_sym__types_body_repeat2, - STATE(1921), 1, + STATE(1970), 1, sym_comment, - ACTIONS(4260), 35, + ACTIONS(4280), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180120,18 +182750,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [47885] = 6, + [50512] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4360), 1, + anon_sym_BANG, + STATE(1971), 1, + sym_comment, + ACTIONS(1456), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1458), 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, + [50562] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4276), 1, sym__entry_separator, - ACTIONS(4266), 1, - anon_sym_RBRACK, - STATE(1876), 1, + STATE(1873), 1, aux_sym__types_body_repeat2, - STATE(1922), 1, + STATE(1972), 1, sym_comment, - ACTIONS(4268), 35, + ACTIONS(4272), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180167,18 +182840,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [47938] = 6, + [50612] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(3734), 1, + sym_raw_string_begin, + ACTIONS(4362), 1, sym__entry_separator, - ACTIONS(4270), 1, + STATE(1973), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3729), 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, - STATE(1876), 1, + 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, + [50662] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4367), 1, + anon_sym_RBRACK, + ACTIONS(4369), 1, + sym__entry_separator, + ACTIONS(4371), 1, + sym_raw_string_begin, + STATE(1974), 1, + sym_comment, + STATE(2104), 1, aux_sym__types_body_repeat2, - STATE(1923), 1, + ACTIONS(4365), 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, + [50716] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4373), 1, + sym__newline, + STATE(1975), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(4268), 35, + ACTIONS(1926), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180214,26 +182976,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [47991] = 6, + [50764] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, + ACTIONS(2594), 1, anon_sym_LPAREN2, - STATE(1924), 1, + ACTIONS(2596), 1, + sym__unquoted_pattern, + STATE(1976), 1, sym_comment, - ACTIONS(2525), 5, + ACTIONS(1629), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2523), 31, + ACTIONS(1716), 30, anon_sym_in, - sym__newline, 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, + [50816] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4378), 1, + anon_sym_RBRACK, + ACTIONS(4380), 1, + sym__entry_separator, + ACTIONS(4382), 1, + sym_raw_string_begin, + STATE(1973), 1, + aux_sym__types_body_repeat2, + STATE(1977), 1, + sym_comment, + ACTIONS(4376), 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, + [50870] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4380), 1, + sym__entry_separator, + ACTIONS(4382), 1, + sym_raw_string_begin, + ACTIONS(4384), 1, + anon_sym_RBRACK, + STATE(1973), 1, + aux_sym__types_body_repeat2, + STATE(1978), 1, + sym_comment, + ACTIONS(4376), 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, + [50924] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + STATE(1979), 1, + sym_comment, + ACTIONS(2013), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2011), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -180261,26 +183162,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48044] = 6, + [50976] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, + ACTIONS(2025), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(2031), 1, sym__unquoted_pattern, - STATE(1925), 1, + STATE(1980), 1, sym_comment, - ACTIONS(2569), 5, + ACTIONS(2568), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2567), 31, + ACTIONS(2566), 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, @@ -180308,73 +183208,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48097] = 6, - ACTIONS(103), 1, + [51028] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(4272), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1926), 1, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern, + STATE(1981), 1, sym_comment, - ACTIONS(4268), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [48150] = 6, + ACTIONS(2023), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2021), 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, + [51080] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(1691), 1, sym__unquoted_pattern, - STATE(1927), 1, + ACTIONS(2564), 1, + anon_sym_LPAREN2, + STATE(1982), 1, sym_comment, - ACTIONS(2637), 5, + ACTIONS(2562), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2635), 31, + ACTIONS(2560), 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, @@ -180402,26 +183300,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48203] = 6, + [51132] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, + ACTIONS(2574), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(2576), 1, sym__unquoted_pattern, - STATE(1928), 1, + STATE(1983), 1, sym_comment, - ACTIONS(1619), 5, + ACTIONS(2572), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 31, + ACTIONS(2570), 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 +183346,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48256] = 5, + [51184] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4224), 1, - aux_sym__immediate_decimal_token5, - STATE(1929), 1, + STATE(1984), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(2508), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1736), 31, + ACTIONS(2506), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -180495,120 +183390,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48307] = 6, - ACTIONS(103), 1, + [51232] = 6, + ACTIONS(3), 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, + ACTIONS(2525), 1, + anon_sym_LPAREN2, + ACTIONS(2527), 1, + sym__unquoted_pattern, + STATE(1985), 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, + ACTIONS(2523), 5, anon_sym_GT2, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1931), 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, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2521), 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, + [51284] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(2556), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2558), 1, sym__unquoted_pattern, - STATE(1932), 1, + STATE(1986), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(1008), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 31, + ACTIONS(1030), 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, @@ -180636,26 +183482,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48466] = 6, + [51336] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(2556), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2558), 1, sym__unquoted_pattern, - STATE(1933), 1, + STATE(1987), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(996), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1018), 31, + ACTIONS(994), 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, @@ -180683,268 +183528,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48519] = 4, + [51388] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4278), 1, + ACTIONS(4386), 1, sym__newline, - STATE(1934), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3738), 36, + ACTIONS(4390), 1, anon_sym_LBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [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, + STATE(1988), 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, + ACTIONS(4393), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2933), 7, 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, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2935), 26, 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, + anon_sym_null, 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, + 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, + [51442] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4220), 1, - aux_sym__immediate_decimal_token5, - STATE(1939), 1, + STATE(1989), 1, sym_comment, ACTIONS(739), 7, anon_sym_STAR, @@ -180985,65 +183619,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [48877] = 7, + [51490] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4332), 1, + anon_sym_EQ2, + STATE(1990), 1, + sym_comment, + STATE(2187), 1, + sym__flag_equals_value, + ACTIONS(4395), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4397), 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, + [51542] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1991), 1, + sym_comment, + ACTIONS(1748), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1746), 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, + [51590] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1992), 1, + sym_comment, + ACTIONS(1814), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1812), 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, + [51638] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4305), 1, - sym_long_flag_identifier, - ACTIONS(4307), 1, - anon_sym_EQ2, - STATE(1940), 1, + STATE(1993), 1, sym_comment, - STATE(2191), 1, - sym__flag_equals_value, - ACTIONS(4303), 9, - sym_raw_string_begin, - aux_sym_cmd_identifier_token4, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - ACTIONS(4301), 26, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(1902), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1900), 31, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, - [48932] = 4, + 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, + [51686] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1941), 1, + ACTIONS(4403), 1, + anon_sym_DASH_DASH, + STATE(2186), 1, + sym_long_flag, + STATE(1994), 2, sym_comment, - ACTIONS(1514), 4, + aux_sym_decl_def_repeat1, + ACTIONS(4399), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1516), 34, + ACTIONS(4401), 31, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181068,7 +183836,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, @@ -181076,16 +183843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [48981] = 5, + [51738] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4309), 1, - aux_sym__immediate_decimal_token5, - STATE(1942), 1, + STATE(1995), 1, sym_comment, - ACTIONS(771), 7, + ACTIONS(763), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -181093,7 +183856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(773), 30, + ACTIONS(765), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -181124,179 +183887,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [49032] = 27, + [51786] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3036), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4230), 1, - anon_sym_LPAREN, - ACTIONS(4232), 1, - anon_sym_DOLLAR, - ACTIONS(4234), 1, - anon_sym_DOT_DOT, - ACTIONS(4238), 1, - anon_sym_DQUOTE, - ACTIONS(4240), 1, - anon_sym_SQUOTE, - ACTIONS(4242), 1, - anon_sym_BQUOTE, - ACTIONS(4244), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4246), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4248), 1, - aux_sym_unquoted_token1, - ACTIONS(4250), 1, - sym_raw_string_begin, - ACTIONS(4285), 1, - anon_sym_null, - ACTIONS(4289), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4293), 1, - sym_val_date, - STATE(1881), 1, - sym__inter_double_quotes, - STATE(1915), 1, - sym__inter_single_quotes, - STATE(1943), 1, + STATE(1996), 1, sym_comment, - STATE(3811), 1, - sym__val_number_decimal, - STATE(5068), 1, - sym_val_bool, - ACTIONS(4236), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4283), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4291), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4918), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4311), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1886), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1458), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [49127] = 4, - ACTIONS(103), 1, + ACTIONS(1008), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + 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, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [51834] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1944), 1, + STATE(1997), 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(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, + [51882] = 7, 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, + ACTIONS(4410), 1, aux_sym_cmd_identifier_token6, + ACTIONS(4412), 1, 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, + ACTIONS(4414), 1, sym_duration_unit, - [49225] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1946), 1, + STATE(1998), 1, sym_comment, - ACTIONS(849), 8, + ACTIONS(4408), 5, 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, + ACTIONS(4406), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -181326,28 +184022,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_duration_unit, - [49274] = 7, + [51936] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, + ACTIONS(2391), 1, anon_sym_DOT2, - STATE(1947), 1, - sym_comment, - STATE(1948), 1, + STATE(443), 1, + sym_cell_path, + STATE(532), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, + STATE(791), 1, sym_path, - ACTIONS(1458), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + STATE(1999), 1, + sym_comment, + ACTIONS(1450), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1452), 31, + ts_builtin_sym_end, anon_sym_in, - ACTIONS(1460), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + [51992] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4416), 1, + sym__newline, + STATE(2000), 1, + sym_comment, + ACTIONS(4393), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2933), 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(2935), 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, + [52044] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4369), 1, + sym__entry_separator, + ACTIONS(4371), 1, sym_raw_string_begin, + ACTIONS(4419), 1, + anon_sym_RBRACK, + STATE(2001), 1, + sym_comment, + STATE(2104), 1, + aux_sym__types_body_repeat2, + ACTIONS(4365), 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, @@ -181361,13 +184149,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, @@ -181375,26 +184163,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [49329] = 6, - ACTIONS(3), 1, + [52098] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4313), 1, - anon_sym_DOT2, - STATE(2133), 1, - sym_path, - STATE(1948), 2, + ACTIONS(4369), 1, + sym__entry_separator, + ACTIONS(4371), 1, + sym_raw_string_begin, + ACTIONS(4421), 1, + anon_sym_RBRACK, + STATE(2002), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, + STATE(2104), 1, + aux_sym__types_body_repeat2, + ACTIONS(4365), 33, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1526), 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, @@ -181408,13 +184196,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, @@ -181422,22 +184210,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [49382] = 4, + [52152] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(1949), 1, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(4425), 1, + anon_sym_DASH2, + ACTIONS(4429), 1, + anon_sym_PLUS2, + STATE(2003), 1, sym_comment, - ACTIONS(1728), 6, - anon_sym_GT2, + STATE(2019), 1, + aux_sym__repeat_newline, + ACTIONS(4354), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 32, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4427), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2756), 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, + [52218] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2937), 1, sym__newline, + ACTIONS(4425), 1, anon_sym_DASH2, + ACTIONS(4429), 1, + anon_sym_PLUS2, + STATE(2004), 1, + sym_comment, + STATE(2021), 1, + aux_sym__repeat_newline, + ACTIONS(2758), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4354), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4431), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2756), 23, + anon_sym_in, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -181457,31 +184312,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [52282] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4380), 1, + sym__entry_separator, + ACTIONS(4382), 1, + sym_raw_string_begin, + ACTIONS(4433), 1, + anon_sym_RBRACK, + STATE(1973), 1, + aux_sym__types_body_repeat2, + STATE(2005), 1, + sym_comment, + ACTIONS(4376), 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, + [52336] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2937), 1, + sym__newline, + STATE(2006), 1, + sym_comment, + STATE(2022), 1, + aux_sym__repeat_newline, + ACTIONS(4354), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(2758), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2756), 26, + anon_sym_in, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49431] = 4, + [52394] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1950), 1, + STATE(2007), 1, + sym_comment, + ACTIONS(2935), 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, + [52440] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2937), 1, + sym__newline, + STATE(2008), 1, sym_comment, - ACTIONS(1804), 6, + STATE(2024), 1, + aux_sym__repeat_newline, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2758), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 32, + ACTIONS(2756), 28, anon_sym_in, - sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -181502,9 +184494,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -181512,26 +184501,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49480] = 4, + [52494] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(1951), 1, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(4425), 1, + anon_sym_DASH2, + ACTIONS(4429), 1, + anon_sym_PLUS2, + ACTIONS(4439), 1, + anon_sym_bit_DASHand2, + ACTIONS(4441), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4443), 1, + anon_sym_bit_DASHor2, + STATE(2009), 1, sym_comment, - ACTIONS(1872), 6, - anon_sym_GT2, + STATE(2026), 1, + aux_sym__repeat_newline, + ACTIONS(4354), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1870), 32, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2756), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4427), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4437), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4435), 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, + [52570] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2937), 1, sym__newline, + ACTIONS(4425), 1, anon_sym_DASH2, - anon_sym_LBRACE, + ACTIONS(4429), 1, + anon_sym_PLUS2, + ACTIONS(4439), 1, + anon_sym_bit_DASHand2, + ACTIONS(4441), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4443), 1, + anon_sym_bit_DASHor2, + ACTIONS(4445), 1, anon_sym_and2, + STATE(2010), 1, + sym_comment, + STATE(2028), 1, + aux_sym__repeat_newline, + ACTIONS(4354), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2756), 3, + anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, + ACTIONS(4427), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4437), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4435), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -181539,43 +184618,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [52648] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(4425), 1, + anon_sym_DASH2, + ACTIONS(4429), 1, + anon_sym_PLUS2, + ACTIONS(4439), 1, + anon_sym_bit_DASHand2, + ACTIONS(4441), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4443), 1, + anon_sym_bit_DASHor2, + ACTIONS(4445), 1, + anon_sym_and2, + ACTIONS(4447), 1, + anon_sym_xor2, + STATE(2011), 1, + sym_comment, + STATE(2030), 1, + aux_sym__repeat_newline, + ACTIONS(2756), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4354), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4437), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, + ACTIONS(4435), 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, + [52728] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(4425), 1, + anon_sym_DASH2, + ACTIONS(4429), 1, + anon_sym_PLUS2, + STATE(2012), 1, + sym_comment, + STATE(2032), 1, + aux_sym__repeat_newline, + ACTIONS(4354), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(4427), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4435), 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(2756), 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, - [49529] = 6, + [52796] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(1952), 1, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(4425), 1, + anon_sym_DASH2, + ACTIONS(4429), 1, + anon_sym_PLUS2, + STATE(2013), 1, sym_comment, - ACTIONS(1966), 5, + STATE(2034), 1, + aux_sym__repeat_newline, + ACTIONS(2758), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4354), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1964), 31, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2756), 25, anon_sym_in, - sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -181595,126 +184778,259 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [52858] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(4425), 1, + anon_sym_DASH2, + ACTIONS(4429), 1, + anon_sym_PLUS2, + STATE(2014), 1, + sym_comment, + STATE(2036), 1, + aux_sym__repeat_newline, + ACTIONS(4354), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(4427), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4437), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2756), 7, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49582] = 4, + ACTIONS(4435), 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, + [52928] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1953), 1, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(4425), 1, + anon_sym_DASH2, + ACTIONS(4429), 1, + anon_sym_PLUS2, + ACTIONS(4439), 1, + anon_sym_bit_DASHand2, + STATE(2015), 1, sym_comment, - ACTIONS(1478), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, + STATE(2038), 1, + aux_sym__repeat_newline, + ACTIONS(4354), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4427), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4437), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2756), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4435), 8, 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, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [53000] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(1954), 1, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(4425), 1, + anon_sym_DASH2, + ACTIONS(4429), 1, + anon_sym_PLUS2, + ACTIONS(4439), 1, + anon_sym_bit_DASHand2, + ACTIONS(4441), 1, + anon_sym_bit_DASHxor2, + STATE(2016), 1, sym_comment, - ACTIONS(1543), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1545), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [49680] = 7, + STATE(2040), 1, + aux_sym__repeat_newline, + ACTIONS(4354), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4427), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4437), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2756), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4435), 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, + [53074] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2017), 1, + sym_comment, + ACTIONS(789), 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(791), 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, + [53122] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2136), 1, - anon_sym_EQ_GT, - ACTIONS(4316), 1, - anon_sym_DOT_DOT2, - STATE(1955), 1, + ACTIONS(2848), 1, + sym__newline, + ACTIONS(4425), 1, + anon_sym_DASH2, + ACTIONS(4429), 1, + anon_sym_PLUS2, + STATE(2018), 1, sym_comment, - ACTIONS(4318), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2138), 5, - anon_sym_GT2, + STATE(2052), 1, + aux_sym__repeat_newline, + ACTIONS(4354), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2134), 29, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4427), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2688), 19, anon_sym_in, - anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -181725,43 +185041,48 @@ 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, - [49735] = 6, + [53188] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4320), 1, - anon_sym_DOT_DOT2, - STATE(1956), 1, + ACTIONS(4451), 1, + anon_sym_DASH2, + ACTIONS(4461), 1, + anon_sym_PLUS2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2019), 1, sym_comment, - ACTIONS(4322), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(4449), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4453), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1964), 30, + ACTIONS(4457), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4459), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4463), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4455), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2692), 20, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -181772,43 +185093,44 @@ 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, - [49788] = 6, + [53252] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4324), 1, - anon_sym_DOT_DOT2, - STATE(1957), 1, + ACTIONS(2848), 1, + sym__newline, + ACTIONS(4425), 1, + anon_sym_DASH2, + ACTIONS(4429), 1, + anon_sym_PLUS2, + STATE(2020), 1, sym_comment, - ACTIONS(4326), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + STATE(2053), 1, + aux_sym__repeat_newline, + ACTIONS(2690), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4354), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1974), 30, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4431), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2688), 23, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -181827,80 +185149,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49841] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1958), 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, + [53316] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4316), 1, - anon_sym_DOT_DOT2, - STATE(1959), 1, + ACTIONS(4451), 1, + anon_sym_DASH2, + ACTIONS(4461), 1, + anon_sym_PLUS2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2021), 1, sym_comment, - ACTIONS(4318), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1619), 5, + ACTIONS(2694), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4453), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1706), 30, + ACTIONS(4457), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4459), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4463), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2692), 24, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -181919,35 +185200,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, - [49943] = 6, + [53378] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4328), 1, - anon_sym_DOT_DOT2, - STATE(1960), 1, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2022), 1, sym_comment, - ACTIONS(4330), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 5, - anon_sym_GT2, + ACTIONS(4453), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(4457), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4459), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2694), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2152), 30, + ACTIONS(2692), 27, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -181966,35 +185246,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49996] = 6, + [53434] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4332), 1, - anon_sym_DOT_DOT2, - STATE(1961), 1, + ACTIONS(2848), 1, + sym__newline, + STATE(2023), 1, sym_comment, - ACTIONS(4334), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 5, + STATE(2055), 1, + aux_sym__repeat_newline, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2690), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2100), 30, + ACTIONS(2688), 28, anon_sym_in, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182013,8 +185291,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, @@ -182022,26 +185298,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50049] = 6, + [53488] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4336), 1, - anon_sym_DOT_DOT2, - STATE(1962), 1, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2024), 1, sym_comment, - ACTIONS(4338), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 5, + ACTIONS(4457), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2694), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2076), 30, + ACTIONS(2692), 29, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182060,8 +185337,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, @@ -182069,166 +185344,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50102] = 6, + [53540] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4340), 1, - anon_sym_DOT_DOT2, - STATE(1963), 1, + ACTIONS(2848), 1, + sym__newline, + ACTIONS(4425), 1, + anon_sym_DASH2, + ACTIONS(4429), 1, + anon_sym_PLUS2, + ACTIONS(4439), 1, + anon_sym_bit_DASHand2, + ACTIONS(4441), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4443), 1, + anon_sym_bit_DASHor2, + STATE(2025), 1, sym_comment, - ACTIONS(4342), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 5, - anon_sym_GT2, + STATE(2056), 1, + aux_sym__repeat_newline, + ACTIONS(4354), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2120), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2688), 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(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4437), 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, - [50155] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1964), 1, - sym_comment, - ACTIONS(1470), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1472), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_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, - anon_sym_POUND, - STATE(1965), 1, - sym_comment, - ACTIONS(1474), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(4435), 8, 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, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [53616] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4316), 1, - anon_sym_DOT_DOT2, - STATE(1966), 1, + ACTIONS(4451), 1, + anon_sym_DASH2, + ACTIONS(4461), 1, + anon_sym_PLUS2, + ACTIONS(4469), 1, + anon_sym_bit_DASHand2, + ACTIONS(4471), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4473), 1, + anon_sym_bit_DASHor2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2026), 1, sym_comment, - ACTIONS(4318), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2138), 5, + ACTIONS(4449), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4453), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2134), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + ACTIONS(4457), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4459), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4463), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4455), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4467), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2692), 5, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(4465), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -182236,45 +185459,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [53690] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2848), 1, + sym__newline, + ACTIONS(4425), 1, + anon_sym_DASH2, + ACTIONS(4429), 1, + anon_sym_PLUS2, + ACTIONS(4439), 1, + anon_sym_bit_DASHand2, + ACTIONS(4441), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4443), 1, + anon_sym_bit_DASHor2, + ACTIONS(4445), 1, + anon_sym_and2, + STATE(2027), 1, + sym_comment, + STATE(2057), 1, + aux_sym__repeat_newline, + ACTIONS(4354), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2688), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4437), 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, + ACTIONS(4435), 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, + [53768] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4451), 1, + anon_sym_DASH2, + ACTIONS(4461), 1, + anon_sym_PLUS2, + ACTIONS(4469), 1, anon_sym_bit_DASHand2, + ACTIONS(4471), 1, anon_sym_bit_DASHxor2, + ACTIONS(4473), 1, anon_sym_bit_DASHor2, - [50306] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1967), 1, + ACTIONS(4475), 1, + anon_sym_and2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2028), 1, sym_comment, - ACTIONS(2577), 5, + ACTIONS(4449), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4453), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2575), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, + ACTIONS(4457), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4459), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4463), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2692), 4, + sym__newline, + anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, + ACTIONS(4455), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4467), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4465), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -182282,92 +185576,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [53844] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(4425), 1, + anon_sym_DASH2, + ACTIONS(4429), 1, + anon_sym_PLUS2, + ACTIONS(4439), 1, + anon_sym_bit_DASHand2, + ACTIONS(4441), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4443), 1, + anon_sym_bit_DASHor2, + ACTIONS(4445), 1, + anon_sym_and2, + ACTIONS(4447), 1, + anon_sym_xor2, + STATE(2029), 1, + sym_comment, + STATE(2058), 1, + aux_sym__repeat_newline, + ACTIONS(2688), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4354), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4437), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + ACTIONS(4435), 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, + [53924] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4451), 1, + anon_sym_DASH2, + ACTIONS(4461), 1, + anon_sym_PLUS2, + ACTIONS(4469), 1, + anon_sym_bit_DASHand2, + ACTIONS(4471), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4473), 1, + anon_sym_bit_DASHor2, + ACTIONS(4475), 1, + anon_sym_and2, + ACTIONS(4477), 1, + anon_sym_xor2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2030), 1, + sym_comment, + ACTIONS(4449), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4453), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50358] = 7, - ACTIONS(103), 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, - sym_comment, - STATE(2091), 1, - aux_sym__types_body_repeat2, - ACTIONS(4344), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(2692), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4455), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4467), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4465), 8, 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, - [50412] = 6, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [54002] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(1969), 1, + ACTIONS(2848), 1, + sym__newline, + ACTIONS(4425), 1, + anon_sym_DASH2, + ACTIONS(4429), 1, + anon_sym_PLUS2, + STATE(2031), 1, sym_comment, - ACTIONS(1619), 5, - anon_sym_GT2, + STATE(2059), 1, + aux_sym__repeat_newline, + ACTIONS(4354), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1706), 30, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4427), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4435), 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, @@ -182375,86 +185737,51 @@ 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(2688), 11, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50464] = 4, + [54070] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4352), 1, - sym__newline, - STATE(1970), 2, + ACTIONS(4451), 1, + anon_sym_DASH2, + ACTIONS(4461), 1, + anon_sym_PLUS2, + STATE(507), 1, aux_sym__repeat_newline, + STATE(2032), 1, 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, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1971), 1, - sym_comment, - ACTIONS(1728), 6, + ACTIONS(4449), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4453), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 31, + ACTIONS(4457), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4459), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4463), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4455), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4465), 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, @@ -182462,40 +185789,47 @@ 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(2692), 12, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_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, - [50560] = 4, + [54136] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(1972), 1, + ACTIONS(2848), 1, + sym__newline, + ACTIONS(4425), 1, + anon_sym_DASH2, + ACTIONS(4429), 1, + anon_sym_PLUS2, + STATE(2033), 1, sym_comment, - ACTIONS(1804), 6, + STATE(2060), 1, + aux_sym__repeat_newline, + ACTIONS(2690), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4354), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 31, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2688), 25, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182514,32 +185848,38 @@ 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, - [50608] = 4, + [54198] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1973), 1, + ACTIONS(4451), 1, + anon_sym_DASH2, + ACTIONS(4461), 1, + anon_sym_PLUS2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2034), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(2694), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4453), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1870), 31, + ACTIONS(4457), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4459), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2692), 26, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182558,38 +185898,59 @@ 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, - [50656] = 6, + [54258] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(1974), 1, + ACTIONS(2848), 1, + sym__newline, + ACTIONS(4425), 1, + anon_sym_DASH2, + ACTIONS(4429), 1, + anon_sym_PLUS2, + STATE(2035), 1, sym_comment, - ACTIONS(1966), 5, - anon_sym_GT2, + STATE(2061), 1, + aux_sym__repeat_newline, + ACTIONS(4354), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1964), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4427), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4437), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2688), 7, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4435), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -182597,148 +185958,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [54328] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4451), 1, + anon_sym_DASH2, + ACTIONS(4461), 1, + anon_sym_PLUS2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2036), 1, + sym_comment, + ACTIONS(4449), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4453), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4457), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4459), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4463), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4467), 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, + ACTIONS(2692), 8, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [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, + ACTIONS(4465), 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, + [54396] = 16, 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(2848), 1, + sym__newline, + ACTIONS(4425), 1, + anon_sym_DASH2, + ACTIONS(4429), 1, + anon_sym_PLUS2, + ACTIONS(4439), 1, + anon_sym_bit_DASHand2, + STATE(2037), 1, sym_comment, - ACTIONS(1432), 2, + STATE(2062), 1, + aux_sym__repeat_newline, + ACTIONS(4354), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4423), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(1434), 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, + ACTIONS(4431), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4427), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4437), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2688), 6, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4435), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -182746,36 +186068,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [54468] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4451), 1, + anon_sym_DASH2, + ACTIONS(4461), 1, + anon_sym_PLUS2, + ACTIONS(4469), 1, + anon_sym_bit_DASHand2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2038), 1, + sym_comment, + ACTIONS(4449), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4453), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4457), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4459), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4463), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4467), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - [50868] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1978), 1, - sym_comment, - ACTIONS(1976), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1974), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + ACTIONS(2692), 7, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4465), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -182783,196 +186123,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [54538] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2848), 1, + sym__newline, + ACTIONS(4425), 1, + anon_sym_DASH2, + ACTIONS(4429), 1, + anon_sym_PLUS2, + ACTIONS(4439), 1, + anon_sym_bit_DASHand2, + ACTIONS(4441), 1, + anon_sym_bit_DASHxor2, + STATE(2039), 1, + sym_comment, + STATE(2063), 1, + aux_sym__repeat_newline, + ACTIONS(4354), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4358), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4437), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + ACTIONS(2688), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4435), 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, + [54612] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4451), 1, + anon_sym_DASH2, + ACTIONS(4461), 1, + anon_sym_PLUS2, + ACTIONS(4469), 1, + anon_sym_bit_DASHand2, + ACTIONS(4471), 1, + anon_sym_bit_DASHxor2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2040), 1, + sym_comment, + ACTIONS(4449), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4453), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - 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, + ACTIONS(4455), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4467), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2692), 6, 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4465), 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, + [54684] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2822), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4425), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4429), 1, anon_sym_PLUS2, - STATE(1982), 1, + STATE(2041), 1, sym_comment, - STATE(1997), 1, + STATE(2065), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2744), 19, + ACTIONS(2702), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -182992,35 +186289,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51144] = 12, + [54750] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2822), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4425), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4429), 1, anon_sym_PLUS2, - STATE(1983), 1, + STATE(2042), 1, sym_comment, - STATE(1999), 1, + STATE(2067), 1, aux_sym__repeat_newline, - ACTIONS(2746), 2, + ACTIONS(2704), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4431), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2744), 23, + ACTIONS(2702), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -183044,29 +186341,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51208] = 9, + [54814] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2822), 1, sym__newline, - STATE(1984), 1, + STATE(2043), 1, sym_comment, - STATE(2001), 1, + STATE(2069), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2746), 3, + ACTIONS(2704), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2744), 26, + ACTIONS(2702), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -183093,25 +186390,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51266] = 7, + [54872] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2822), 1, sym__newline, - STATE(1985), 1, + STATE(2044), 1, sym_comment, - STATE(2003), 1, + STATE(2071), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2746), 5, + ACTIONS(2704), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2744), 28, + ACTIONS(2702), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -183140,56 +186437,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51320] = 18, + [54926] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2822), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4425), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4429), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4439), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4441), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4443), 1, anon_sym_bit_DASHor2, - STATE(1986), 1, + STATE(2045), 1, sym_comment, - STATE(2005), 1, + STATE(2073), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2744), 4, + ACTIONS(2702), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4437), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4435), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183198,57 +186495,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51396] = 19, + [55002] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2822), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4425), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4429), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4439), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4441), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4443), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4445), 1, anon_sym_and2, - STATE(1987), 1, + STATE(2046), 1, sym_comment, - STATE(2007), 1, + STATE(2075), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2744), 3, + ACTIONS(2702), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4437), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4435), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183257,100 +186554,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51474] = 20, + [55080] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2822), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4425), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4429), 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, + STATE(2047), 1, sym_comment, - STATE(2009), 1, + STATE(2079), 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, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4358), 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, + ACTIONS(4423), 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, + ACTIONS(4431), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4397), 8, + ACTIONS(4435), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183359,7 +186596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 11, + ACTIONS(2702), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -183371,79 +186608,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51622] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - ACTIONS(4411), 1, - anon_sym_RBRACK, - STATE(1990), 1, - sym_comment, - STATE(2091), 1, - aux_sym__types_body_repeat2, - ACTIONS(4344), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [51676] = 11, + [55148] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2822), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4425), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4429), 1, anon_sym_PLUS2, - STATE(1991), 1, + STATE(2048), 1, sym_comment, - STATE(2013), 1, + STATE(2081), 1, aux_sym__repeat_newline, - ACTIONS(2746), 2, + ACTIONS(2704), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2744), 25, + ACTIONS(2702), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -183469,45 +186659,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51738] = 15, + [55210] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2822), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4425), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4429), 1, anon_sym_PLUS2, - STATE(1992), 1, + STATE(2049), 1, sym_comment, - STATE(2015), 1, + STATE(2083), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4437), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2744), 7, + ACTIONS(2702), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -183515,7 +186705,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(4435), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183524,54 +186714,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51808] = 16, + [55280] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2822), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4425), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4429), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4439), 1, anon_sym_bit_DASHand2, - STATE(1993), 1, + STATE(2050), 1, sym_comment, - STATE(2017), 1, + STATE(2085), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4437), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2744), 6, + ACTIONS(2702), 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(4435), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183580,55 +186770,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51880] = 17, + [55352] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2822), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4425), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4429), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4439), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4441), 1, anon_sym_bit_DASHxor2, - STATE(1994), 1, + STATE(2051), 1, sym_comment, - STATE(2019), 1, + STATE(2087), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4437), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2744), 5, + ACTIONS(2702), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4435), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183637,88 +186827,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51954] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4415), 1, - anon_sym_RBRACK, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(4419), 1, - sym_raw_string_begin, - STATE(1995), 1, - sym_comment, - STATE(2102), 1, - aux_sym__types_body_repeat2, - ACTIONS(4413), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [52008] = 13, + [55426] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - STATE(1996), 1, - sym_comment, - STATE(2032), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(2052), 1, + sym_comment, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2702), 19, + ACTIONS(2710), 20, anon_sym_in, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -183737,38 +186879,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52074] = 12, + [55490] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(1997), 1, + STATE(2053), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(2712), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2706), 20, + ACTIONS(2710), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -183782,6 +186919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -183789,36 +186930,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52138] = 12, + [55552] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(1998), 1, - sym_comment, - STATE(2033), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + STATE(2054), 1, + sym_comment, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2702), 23, + ACTIONS(2712), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2710), 27, anon_sym_in, + sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -183838,38 +186973,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52202] = 11, + [55608] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(1999), 1, + STATE(2055), 1, sym_comment, - ACTIONS(2708), 2, + ACTIONS(4457), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2712), 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(2706), 24, + anon_sym_PLUS2, + ACTIONS(2710), 29, anon_sym_in, sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -183889,38 +187017,63 @@ 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, - [52264] = 9, + [55660] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, - STATE(2000), 1, - sym_comment, - STATE(2034), 1, + ACTIONS(4451), 1, + anon_sym_DASH2, + ACTIONS(4461), 1, + anon_sym_PLUS2, + ACTIONS(4469), 1, + anon_sym_bit_DASHand2, + ACTIONS(4471), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4473), 1, + anon_sym_bit_DASHor2, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, + STATE(2056), 1, + sym_comment, + ACTIONS(4449), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2704), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2702), 26, - anon_sym_in, - anon_sym_DASH2, + ACTIONS(4463), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4455), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4467), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2710), 5, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(4465), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -183928,47 +187081,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + [55734] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4451), 1, + anon_sym_DASH2, + ACTIONS(4461), 1, + anon_sym_PLUS2, + ACTIONS(4469), 1, anon_sym_bit_DASHand2, + ACTIONS(4471), 1, anon_sym_bit_DASHxor2, + ACTIONS(4473), 1, anon_sym_bit_DASHor2, - [52322] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(540), 1, + ACTIONS(4475), 1, + anon_sym_and2, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2001), 1, + STATE(2057), 1, sym_comment, - ACTIONS(4425), 2, + ACTIONS(4449), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2708), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2706), 27, - anon_sym_in, + ACTIONS(4463), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2710), 4, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(4455), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4467), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4465), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -183976,44 +187139,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [55810] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4451), 1, + anon_sym_DASH2, + ACTIONS(4461), 1, + anon_sym_PLUS2, + ACTIONS(4469), 1, + anon_sym_bit_DASHand2, + ACTIONS(4471), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4473), 1, + anon_sym_bit_DASHor2, + ACTIONS(4475), 1, + anon_sym_and2, + ACTIONS(4477), 1, + anon_sym_xor2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2058), 1, + sym_comment, + ACTIONS(4449), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4453), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4457), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4459), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4463), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2710), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4467), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [52378] = 7, + ACTIONS(4465), 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, + [55888] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, - STATE(2002), 1, - sym_comment, - STATE(2035), 1, + ACTIONS(4451), 1, + anon_sym_DASH2, + ACTIONS(4461), 1, + anon_sym_PLUS2, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2704), 5, + STATE(2059), 1, + sym_comment, + ACTIONS(4449), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4453), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2702), 28, + ACTIONS(4457), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4459), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4463), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4455), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4465), 8, 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, @@ -184021,41 +187238,45 @@ 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(2710), 12, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_mod2, - 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, + [55954] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(4451), 1, + anon_sym_DASH2, + ACTIONS(4461), 1, + anon_sym_PLUS2, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2003), 1, + STATE(2060), 1, sym_comment, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2708), 5, + ACTIONS(2712), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4453), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2706), 29, + ACTIONS(4457), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4459), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2710), 26, anon_sym_in, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184075,63 +187296,57 @@ 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, - [52484] = 18, + [56014] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4461), 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(2004), 1, - sym_comment, - STATE(2036), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(2061), 1, + sym_comment, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4467), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(2710), 8, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4465), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184140,55 +187355,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52560] = 17, + [56082] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4469), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, - anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2005), 1, + STATE(2062), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4467), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 5, + ACTIONS(2710), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4437), 8, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4465), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184197,57 +187410,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52634] = 19, + [56152] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4469), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4471), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, - anon_sym_bit_DASHor2, - ACTIONS(4407), 1, - anon_sym_and2, - STATE(2006), 1, - sym_comment, - STATE(2037), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(2063), 1, + sym_comment, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4463), 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(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4467), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(2710), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4465), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184256,57 +187466,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52712] = 18, + [56224] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(2837), 1, + sym__newline, + ACTIONS(4425), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4429), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, - anon_sym_bit_DASHor2, - ACTIONS(4447), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2007), 1, + STATE(2064), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + STATE(2088), 1, + aux_sym__repeat_newline, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(2718), 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, @@ -184314,59 +187512,51 @@ 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_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [56290] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4461), 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(2008), 1, - sym_comment, - STATE(2038), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(2702), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4381), 2, + STATE(2065), 1, + sym_comment, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4455), 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(2722), 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, @@ -184374,100 +187564,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52868] = 19, + 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, + [56354] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(2837), 1, + sym__newline, + ACTIONS(4425), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4429), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, - anon_sym_bit_DASHor2, - ACTIONS(4447), 1, - anon_sym_and2, - ACTIONS(4449), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2009), 1, + STATE(2066), 1, sym_comment, - ACTIONS(4421), 2, + STATE(2089), 1, + aux_sym__repeat_newline, + ACTIONS(2720), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4431), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 3, - sym__newline, + ACTIONS(2718), 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_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, - [52946] = 14, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [56418] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - STATE(2010), 1, - sym_comment, - STATE(2039), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(2067), 1, + sym_comment, + ACTIONS(2724), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4463), 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, + ACTIONS(2722), 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, @@ -184475,11 +187663,10 @@ 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, - 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, @@ -184487,39 +187674,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53014] = 13, + [56480] = 9, 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(2011), 1, + ACTIONS(2837), 1, + sym__newline, + STATE(2068), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + STATE(2090), 1, + aux_sym__repeat_newline, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(2720), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2718), 26, anon_sym_in, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -184527,46 +187710,43 @@ 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, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53080] = 11, + [56538] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(2012), 1, - sym_comment, - STATE(2040), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + STATE(2069), 1, + sym_comment, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2702), 25, + ACTIONS(2724), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2722), 27, anon_sym_in, + sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184591,32 +187771,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53142] = 10, + [56594] = 7, 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(2013), 1, + ACTIONS(2837), 1, + sym__newline, + STATE(2070), 1, sym_comment, - ACTIONS(2708), 2, + STATE(2091), 1, + aux_sym__repeat_newline, + ACTIONS(4356), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2720), 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_PLUS2, + ACTIONS(2718), 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, - ACTIONS(2706), 26, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [56648] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2071), 1, + sym_comment, + ACTIONS(4457), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2724), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2722), 29, anon_sym_in, sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184636,58 +187857,63 @@ 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, - [53202] = 15, + [56700] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2837), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4425), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4429), 1, anon_sym_PLUS2, - STATE(2014), 1, + ACTIONS(4439), 1, + anon_sym_bit_DASHand2, + ACTIONS(4441), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4443), 1, + anon_sym_bit_DASHor2, + STATE(2072), 1, sym_comment, - STATE(2041), 1, + STATE(2092), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(2718), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4437), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2702), 7, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4435), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184696,52 +187922,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53272] = 14, + [56776] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - STATE(540), 1, + ACTIONS(4469), 1, + anon_sym_bit_DASHand2, + ACTIONS(4471), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4473), 1, + anon_sym_bit_DASHor2, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2015), 1, + STATE(2073), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4467), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 8, + ACTIONS(2722), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4465), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184750,54 +187979,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53340] = 16, + [56850] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2837), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4425), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4429), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4439), 1, anon_sym_bit_DASHand2, - STATE(2016), 1, + ACTIONS(4441), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4443), 1, + anon_sym_bit_DASHor2, + ACTIONS(4445), 1, + anon_sym_and2, + STATE(2074), 1, sym_comment, - STATE(2042), 1, + STATE(2093), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(2718), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4437), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2702), 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(4435), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184806,53 +188038,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53412] = 15, + [56928] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4469), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + ACTIONS(4471), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4473), 1, + anon_sym_bit_DASHor2, + ACTIONS(4475), 1, + anon_sym_and2, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2017), 1, + STATE(2075), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(2722), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4467), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4465), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184861,55 +188096,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53482] = 17, + [57004] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2875), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4425), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4429), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4439), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4441), 1, anon_sym_bit_DASHxor2, - STATE(2018), 1, + ACTIONS(4443), 1, + anon_sym_bit_DASHor2, + ACTIONS(4445), 1, + anon_sym_and2, + ACTIONS(4447), 1, + anon_sym_xor2, + STATE(2076), 1, sym_comment, - STATE(2043), 1, + STATE(2094), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(2718), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4437), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2702), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4435), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184918,54 +188156,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53556] = 16, + [57084] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4469), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4471), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + ACTIONS(4473), 1, + anon_sym_bit_DASHor2, + ACTIONS(4475), 1, + anon_sym_and2, + ACTIONS(4477), 1, + anon_sym_xor2, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2019), 1, + STATE(2077), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(2722), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4467), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4465), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184974,45 +188215,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53628] = 13, + [57162] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2837), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4425), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4429), 1, anon_sym_PLUS2, - STATE(2020), 1, + STATE(2078), 1, sym_comment, - STATE(2045), 1, + STATE(2095), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2712), 19, + ACTIONS(4435), 8, anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -185020,6 +188257,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + ACTIONS(2718), 11, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -185027,40 +188269,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53694] = 12, + [57230] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - STATE(2021), 1, - sym_comment, - STATE(2047), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, + STATE(2079), 1, + sym_comment, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 23, + ACTIONS(4455), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4465), 8, anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -185068,10 +188309,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + ACTIONS(2722), 12, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -185079,31 +188322,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53758] = 9, + [57296] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2837), 1, sym__newline, - STATE(2022), 1, + ACTIONS(4425), 1, + anon_sym_DASH2, + ACTIONS(4429), 1, + anon_sym_PLUS2, + STATE(2080), 1, sym_comment, - STATE(2049), 1, + STATE(2096), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, + ACTIONS(2720), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2714), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2712), 26, + ACTIONS(2718), 25, anon_sym_in, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -185128,27 +188373,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53816] = 7, + [57358] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - STATE(2023), 1, - sym_comment, - STATE(2051), 1, + ACTIONS(4451), 1, + anon_sym_DASH2, + ACTIONS(4461), 1, + anon_sym_PLUS2, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2714), 5, + STATE(2081), 1, + sym_comment, + ACTIONS(2724), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4453), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2712), 28, + ACTIONS(4457), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4459), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2722), 26, anon_sym_in, - anon_sym_DASH2, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -185168,63 +188418,58 @@ 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, - [53870] = 18, + [57418] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2837), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4425), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4429), 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(2024), 1, + STATE(2082), 1, sym_comment, - STATE(2053), 1, + STATE(2097), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4437), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(2718), 7, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4435), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185233,117 +188478,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53946] = 19, + [57488] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4461), 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(2025), 1, - sym_comment, - STATE(2055), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(2083), 1, + sym_comment, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4467), 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, - [54024] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2722), 8, 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_LBRACE, anon_sym_and2, - ACTIONS(4409), 1, anon_sym_xor2, - STATE(2026), 1, - sym_comment, - STATE(2057), 1, - aux_sym__repeat_newline, - ACTIONS(2712), 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_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4465), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185352,91 +188532,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54104] = 14, + [57556] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2837), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4425), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4429), 1, anon_sym_PLUS2, - STATE(2027), 1, + ACTIONS(4439), 1, + anon_sym_bit_DASHand2, + STATE(2084), 1, sym_comment, - STATE(2059), 1, + STATE(2098), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - 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, - ACTIONS(2712), 11, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(4437), 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, - [54172] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(2028), 1, - sym_comment, - STATE(2061), 1, - aux_sym__repeat_newline, - ACTIONS(2714), 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(2712), 25, - anon_sym_in, + ACTIONS(2718), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4435), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -185444,66 +188588,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_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, - [54234] = 15, + [57628] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - STATE(2029), 1, - sym_comment, - STATE(2063), 1, + ACTIONS(4469), 1, + anon_sym_bit_DASHand2, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(2085), 1, + sym_comment, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4467), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2712), 7, + ACTIONS(2722), 7, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4465), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185512,54 +188643,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54304] = 16, + [57698] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2837), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4425), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4429), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4439), 1, anon_sym_bit_DASHand2, - STATE(2030), 1, + ACTIONS(4441), 1, + anon_sym_bit_DASHxor2, + STATE(2086), 1, sym_comment, - STATE(2065), 1, + STATE(2099), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4437), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2712), 6, + ACTIONS(2718), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4435), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185568,55 +188700,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54376] = 17, + [57772] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4469), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4471), 1, anon_sym_bit_DASHxor2, - STATE(2031), 1, - sym_comment, - STATE(2067), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(2087), 1, + sym_comment, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4467), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2712), 5, + ACTIONS(2722), 6, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4465), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185625,38 +188756,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54450] = 12, + [57844] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2032), 1, + STATE(2088), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2720), 20, + ACTIONS(2746), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -185677,33 +188808,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54514] = 11, + [57908] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2033), 1, + STATE(2089), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2748), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 24, + ACTIONS(2746), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -185728,27 +188859,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54576] = 8, + [57970] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2034), 1, + STATE(2090), 1, sym_comment, - ACTIONS(4425), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2722), 3, + ACTIONS(2748), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2720), 27, + ACTIONS(2746), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -185776,23 +188907,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54632] = 6, + [58026] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2035), 1, + STATE(2091), 1, sym_comment, - ACTIONS(4429), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2722), 5, + ACTIONS(2748), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2720), 29, + ACTIONS(2746), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -185822,55 +188953,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54684] = 17, + [58078] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4469), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4471), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4473), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2036), 1, + STATE(2092), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4467), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 5, + ACTIONS(2746), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4437), 8, + ACTIONS(4465), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185879,56 +189010,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, + [58152] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4469), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4471), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4473), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4475), 1, anon_sym_and2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2037), 1, + STATE(2093), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 4, + ACTIONS(2746), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4467), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4465), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185937,57 +189068,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, + [58228] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4469), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4471), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4473), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4475), 1, anon_sym_and2, - ACTIONS(4449), 1, + ACTIONS(4477), 1, anon_sym_xor2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2038), 1, + STATE(2094), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 3, + ACTIONS(2746), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4467), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4465), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185996,38 +189127,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, + [58306] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2039), 1, + STATE(2095), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(4465), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186036,7 +189167,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(2746), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -186049,30 +189180,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54978] = 10, + [58372] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2040), 1, + STATE(2096), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2748), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2720), 26, + ACTIONS(2746), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -186099,43 +189230,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55038] = 14, + [58432] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2041), 1, + STATE(2097), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4467), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 8, + ACTIONS(2746), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -186144,7 +189275,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(4465), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186153,45 +189284,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, + [58500] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4469), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2042), 1, + STATE(2098), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4467), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 7, + ACTIONS(2746), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -186199,7 +189330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4465), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186208,54 +189339,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, + [58570] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4469), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4471), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2043), 1, + STATE(2099), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4467), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 6, + ACTIONS(2746), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4465), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186264,41 +189395,351 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55248] = 13, + [58642] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(4386), 1, sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(2044), 1, + ACTIONS(4390), 1, + anon_sym_LBRACK, + ACTIONS(4479), 1, + anon_sym_DOT_DOT, + STATE(2100), 1, sym_comment, - STATE(2068), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4393), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2933), 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(2935), 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, + [58698] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(890), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4482), 1, + sym_filesize_unit, + ACTIONS(4484), 1, + sym_duration_unit, + STATE(2101), 1, + sym_comment, + ACTIONS(888), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(886), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [58752] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4490), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4492), 1, + sym_filesize_unit, + ACTIONS(4494), 1, + sym_duration_unit, + STATE(2102), 1, + sym_comment, + ACTIONS(4488), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4486), 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, + [58806] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4369), 1, + sym__entry_separator, + ACTIONS(4371), 1, + sym_raw_string_begin, + ACTIONS(4496), 1, + anon_sym_RBRACK, + STATE(2103), 1, + sym_comment, + STATE(2104), 1, + aux_sym__types_body_repeat2, + ACTIONS(4365), 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, + [58860] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3734), 1, + sym_raw_string_begin, + ACTIONS(4498), 1, + sym__entry_separator, + STATE(2104), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3729), 34, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_RBRACK, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [58910] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(972), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4501), 1, + sym_filesize_unit, + ACTIONS(4503), 1, + sym_duration_unit, + STATE(2105), 1, + sym_comment, + ACTIONS(970), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(968), 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, + [58964] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4509), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4511), 1, + sym_filesize_unit, + ACTIONS(4513), 1, + sym_duration_unit, + STATE(2106), 1, + sym_comment, + ACTIONS(4507), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4505), 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, + [59018] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1776), 1, + sym__unquoted_pattern, + STATE(2107), 1, + sym_comment, + ACTIONS(858), 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(2728), 19, + anon_sym_PLUS2, + ACTIONS(884), 31, anon_sym_in, + sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -186310,37 +189751,156 @@ 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, - [55314] = 12, + [59068] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4519), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4521), 1, + sym_filesize_unit, + ACTIONS(4523), 1, + sym_duration_unit, + STATE(2108), 1, + sym_comment, + ACTIONS(4517), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4515), 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, + [59122] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4380), 1, + sym__entry_separator, + ACTIONS(4382), 1, + sym_raw_string_begin, + ACTIONS(4525), 1, + anon_sym_RBRACK, + STATE(1973), 1, + aux_sym__types_body_repeat2, + STATE(2109), 1, + sym_comment, + ACTIONS(4376), 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, + [59176] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(4425), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4429), 1, anon_sym_PLUS2, - STATE(540), 1, + ACTIONS(4439), 1, + anon_sym_bit_DASHand2, + ACTIONS(4441), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4443), 1, + anon_sym_bit_DASHor2, + ACTIONS(4445), 1, + anon_sym_and2, + ACTIONS(4447), 1, + anon_sym_xor2, + STATE(2077), 1, aux_sym__repeat_newline, - STATE(2045), 1, + STATE(2110), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(2702), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4423), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4431), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(4427), 4, @@ -186348,13 +189908,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2732), 20, + ACTIONS(4437), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4435), 8, anon_sym_in, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -186362,44 +189922,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [55378] = 12, + [59256] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(2046), 1, + STATE(2111), 1, sym_comment, - STATE(2069), 1, - aux_sym__repeat_newline, - ACTIONS(2730), 2, + ACTIONS(2508), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + sym__unquoted_pattern, + ACTIONS(2506), 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, + [59303] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1776), 1, + sym__unquoted_pattern, + STATE(2112), 1, + sym_comment, + ACTIONS(858), 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(2728), 23, + anon_sym_PLUS2, + ACTIONS(884), 30, anon_sym_in, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -186418,338 +190000,737 @@ 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, - [55442] = 11, + [59352] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4157), 1, + sym__unquoted_pattern, + STATE(2113), 1, + sym_comment, + ACTIONS(858), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(884), 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, + [59401] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(2825), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(2833), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2047), 1, + ACTIONS(2851), 1, + anon_sym_bit_DASHand2, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(2877), 1, + anon_sym_and2, + ACTIONS(2879), 1, + anon_sym_xor2, + ACTIONS(2881), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2883), 1, + anon_sym_bit_DASHor2, + ACTIONS(4527), 1, + anon_sym_or2, + STATE(2114), 1, sym_comment, - ACTIONS(2734), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + STATE(2119), 1, + aux_sym__repeat_newline, + ACTIONS(2827), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(2829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(2831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(2840), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2844), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2732), 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, + ACTIONS(2842), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(2846), 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, - [55504] = 9, + ACTIONS(2835), 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, + [59480] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2115), 1, + sym_comment, + ACTIONS(3744), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3742), 34, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_RBRACK, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [59527] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(4529), 1, sym__newline, - STATE(2048), 1, + STATE(2116), 2, sym_comment, - STATE(2070), 1, + aux_sym__types_body_repeat1, + ACTIONS(3746), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(3748), 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, + [59576] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2117), 1, + sym_comment, + ACTIONS(3744), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3742), 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, + [59623] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4369), 1, + sym__entry_separator, + ACTIONS(4371), 1, + sym_raw_string_begin, + STATE(2104), 1, + aux_sym__types_body_repeat2, + STATE(2118), 1, + sym_comment, + ACTIONS(4365), 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, + [59674] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2796), 1, + anon_sym_DASH2, + ACTIONS(2800), 1, + anon_sym_and2, + ACTIONS(2802), 1, + anon_sym_xor2, + ACTIONS(2812), 1, + anon_sym_PLUS2, + ACTIONS(2816), 1, + anon_sym_bit_DASHand2, + ACTIONS(2818), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2820), 1, + anon_sym_bit_DASHor2, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(4532), 1, + anon_sym_or2, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, + STATE(2119), 1, + sym_comment, + ACTIONS(2794), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2798), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(2808), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(2810), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2730), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2728), 26, - anon_sym_in, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(2814), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2804), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(2806), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [55562] = 8, + ACTIONS(2792), 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, + [59753] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4534), 1, + sym__newline, + STATE(2120), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3746), 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(3748), 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, + [59802] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + STATE(2121), 1, + sym_comment, + ACTIONS(2092), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2090), 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, + [59851] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2122), 1, + sym_comment, + ACTIONS(1537), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1539), 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, + [59898] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2527), 1, + sym__unquoted_pattern, + STATE(2123), 1, + sym_comment, + ACTIONS(2523), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2521), 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, + [59947] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2124), 1, + sym_comment, + ACTIONS(1541), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1543), 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, + [59994] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2049), 1, + ACTIONS(2596), 1, + sym__unquoted_pattern, + STATE(2125), 1, sym_comment, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2734), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2732), 27, + ACTIONS(1629), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [55618] = 7, + ACTIONS(1716), 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, + [60043] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - STATE(2050), 1, + STATE(2126), 1, sym_comment, - STATE(2071), 1, - aux_sym__repeat_newline, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2730), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2728), 28, + ACTIONS(1533), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [55672] = 6, + anon_sym_DOT2, + ACTIONS(1535), 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, + [60090] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2051), 1, + STATE(2127), 1, sym_comment, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2734), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2732), 29, - anon_sym_in, + ACTIONS(2144), 36, sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [55724] = 18, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + 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, + [60135] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2875), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4425), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4429), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4439), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4441), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4443), 1, anon_sym_bit_DASHor2, - STATE(2052), 1, + ACTIONS(4445), 1, + anon_sym_and2, + ACTIONS(4447), 1, + anon_sym_xor2, + ACTIONS(4539), 1, + anon_sym_or2, + STATE(2128), 1, sym_comment, - STATE(2072), 1, + STATE(2130), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4354), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4356), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4358), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2728), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(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, - [55800] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, - anon_sym_bit_DASHor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2053), 1, - sym_comment, - ACTIONS(4421), 2, + ACTIONS(4423), 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, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(4427), 4, @@ -186757,18 +190738,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4437), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2732), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4437), 8, + ACTIONS(4435), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186777,57 +190752,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, + [60214] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2875), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(3823), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(3833), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(3841), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(3843), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(3845), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(3847), 1, anon_sym_and2, - STATE(2054), 1, - sym_comment, - STATE(2073), 1, + ACTIONS(3849), 1, + anon_sym_xor2, + ACTIONS(4541), 1, + anon_sym_or2, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(2129), 1, + sym_comment, + ACTIONS(3821), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(3825), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2728), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(3837), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186836,56 +190811,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55952] = 18, + [60293] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(4451), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4461), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4469), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4471), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4473), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4475), 1, anon_sym_and2, - STATE(540), 1, + ACTIONS(4477), 1, + anon_sym_xor2, + ACTIONS(4543), 1, + anon_sym_or2, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2055), 1, + STATE(2130), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4449), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4453), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4457), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4459), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4463), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2732), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4455), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4467), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4465), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186894,58 +190870,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56028] = 20, + [60372] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2558), 1, + sym__unquoted_pattern, + STATE(2131), 1, + sym_comment, + ACTIONS(1008), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1030), 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, + [60421] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2558), 1, + sym__unquoted_pattern, + STATE(2132), 1, + sym_comment, + ACTIONS(996), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(994), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [60470] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4380), 1, + sym__entry_separator, + ACTIONS(4382), 1, + sym_raw_string_begin, + STATE(1973), 1, + aux_sym__types_body_repeat2, + STATE(2133), 1, + sym_comment, + ACTIONS(4376), 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, + [60521] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2875), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(3779), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(3785), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(3789), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(3791), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(3793), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(3795), 1, anon_sym_and2, - ACTIONS(4409), 1, + ACTIONS(3797), 1, anon_sym_xor2, - STATE(2056), 1, - sym_comment, - STATE(2074), 1, - aux_sym__repeat_newline, - ACTIONS(2728), 2, - anon_sym_LBRACE, + ACTIONS(4545), 1, anon_sym_or2, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + STATE(2129), 1, + aux_sym__repeat_newline, + STATE(2134), 1, + sym_comment, + ACTIONS(3759), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(3761), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(3763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(3777), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3787), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(3781), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(3783), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(3775), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186954,58 +191062,504 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56108] = 19, + [60600] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2135), 1, + sym_comment, + ACTIONS(858), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(884), 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, + [60646] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2136), 1, + sym_comment, + ACTIONS(2504), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2502), 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, + [60692] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2137), 1, + sym_comment, + ACTIONS(2600), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2598), 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, + [60738] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2138), 1, + sym_comment, + ACTIONS(1523), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1525), 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, + [60784] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4551), 1, + aux_sym_cmd_identifier_token6, + STATE(2139), 1, + sym_comment, + ACTIONS(4549), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4547), 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, + [60832] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2140), 1, + sym_comment, + ACTIONS(4553), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4555), 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, + [60878] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2141), 1, + sym_comment, + ACTIONS(2933), 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(2935), 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, + [60924] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2142), 1, + sym_comment, + ACTIONS(2142), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2140), 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, + [60970] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2143), 1, + sym_comment, + ACTIONS(1527), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1529), 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, + [61016] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2144), 1, + sym_comment, + ACTIONS(2604), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2602), 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, + [61062] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2145), 1, + sym_comment, + ACTIONS(2608), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2606), 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, + [61108] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4559), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4569), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, - anon_sym_bit_DASHor2, - ACTIONS(4447), 1, - anon_sym_and2, - ACTIONS(4449), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2057), 1, + STATE(2146), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4557), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4561), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4565), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4567), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4571), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2732), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4563), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(2578), 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, @@ -187013,41 +191567,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56186] = 14, + 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, + [61168] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4559), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4569), 1, anon_sym_PLUS2, - STATE(2058), 1, + STATE(2147), 1, sym_comment, - STATE(2075), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(2580), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4561), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4565), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4567), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4571), 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, + ACTIONS(2578), 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, @@ -187055,11 +191611,10 @@ 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, - 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, @@ -187067,39 +191622,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56254] = 13, + [61226] = 7, 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(2059), 1, + STATE(2148), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4561), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4565), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4567), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(2580), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2578), 26, anon_sym_in, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -187107,46 +191654,36 @@ 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, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56320] = 11, + [61278] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(2060), 1, + STATE(2149), 1, sym_comment, - STATE(2076), 1, - aux_sym__repeat_newline, - ACTIONS(2730), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4565), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2728), 25, + ACTIONS(2580), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2578), 28, anon_sym_in, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -187166,108 +191703,114 @@ 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, - [56382] = 10, + [61326] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4559), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4569), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2061), 1, + ACTIONS(4577), 1, + anon_sym_bit_DASHand2, + ACTIONS(4579), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4581), 1, + anon_sym_bit_DASHor2, + STATE(2150), 1, sym_comment, - ACTIONS(2734), 2, + ACTIONS(4557), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4561), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4565), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4567), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2732), 26, - anon_sym_in, - sym__newline, + ACTIONS(4571), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2578), 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(4563), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4575), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [56442] = 15, + ACTIONS(4573), 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, + [61396] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4559), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4569), 1, anon_sym_PLUS2, - STATE(2062), 1, + ACTIONS(4577), 1, + anon_sym_bit_DASHand2, + ACTIONS(4579), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4581), 1, + anon_sym_bit_DASHor2, + ACTIONS(4583), 1, + anon_sym_and2, + STATE(2151), 1, sym_comment, - STATE(2077), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4557), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4561), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4565), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4567), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4571), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(2578), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4563), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4575), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2728), 7, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4573), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187276,52 +191819,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56512] = 14, + [61468] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4559), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4569), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2063), 1, + ACTIONS(4577), 1, + anon_sym_bit_DASHand2, + ACTIONS(4579), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4581), 1, + anon_sym_bit_DASHor2, + ACTIONS(4583), 1, + anon_sym_and2, + ACTIONS(4585), 1, + anon_sym_xor2, + STATE(2152), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(2578), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4557), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4561), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4565), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4567), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4571), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4563), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4575), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2732), 8, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4573), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187330,55 +191875,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56580] = 16, + [61542] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4383), 1, + STATE(2153), 1, + sym_comment, + ACTIONS(2612), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2610), 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, + [61588] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4559), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4569), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - STATE(2064), 1, + STATE(2154), 1, sym_comment, - STATE(2078), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4557), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4561), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4565), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4567), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4571), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4563), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4573), 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(2578), 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, - ACTIONS(2728), 6, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [61650] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4559), 1, + anon_sym_DASH2, + ACTIONS(4569), 1, + anon_sym_PLUS2, + STATE(2155), 1, + sym_comment, + ACTIONS(2580), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4561), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4565), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4567), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2578), 25, + anon_sym_in, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - 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, @@ -187386,53 +192001,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56652] = 15, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [61706] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4559), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4569), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2065), 1, + STATE(2156), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4557), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4561), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4565), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4567), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4571), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4563), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4575), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2732), 7, - sym__newline, + ACTIONS(2578), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4573), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187441,55 +192065,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56722] = 17, + [61770] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4559), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4569), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4577), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - STATE(2066), 1, + STATE(2157), 1, sym_comment, - STATE(2079), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4557), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4561), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4565), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4567), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4571), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4563), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4575), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2728), 5, + ACTIONS(2578), 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(4573), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187498,54 +192117,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56796] = 16, + [61836] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4559), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4569), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4577), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4579), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2067), 1, + STATE(2158), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4557), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4561), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4565), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4567), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4571), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4563), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4575), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2732), 6, - sym__newline, + ACTIONS(2578), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4573), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187554,41 +192170,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56868] = 12, + [61904] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4591), 1, + aux_sym_cmd_identifier_token6, + STATE(2159), 1, + sym_comment, + ACTIONS(4589), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4587), 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, + [61952] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2160), 1, + sym_comment, + ACTIONS(1580), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1582), 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, + [61998] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2161), 1, + sym_comment, + ACTIONS(1878), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1876), 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, + [62044] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2162), 1, + sym_comment, + ACTIONS(2588), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2586), 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, + [62090] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2163), 1, + sym_comment, + ACTIONS(1496), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1498), 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, + [62136] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2164), 1, + sym_comment, + ACTIONS(1500), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1502), 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, + [62182] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4595), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4605), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2068), 1, + STATE(2165), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4593), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4597), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4601), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4603), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4607), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4599), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2740), 20, + ACTIONS(2578), 19, anon_sym_in, - sym__newline, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -187606,36 +192472,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56932] = 11, + [62242] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4595), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4605), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2069), 1, + STATE(2166), 1, sym_comment, - ACTIONS(2742), 2, + ACTIONS(2580), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4597), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4601), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4603), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4607), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2740), 24, + ACTIONS(2578), 23, anon_sym_in, - sym__newline, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -187657,31 +192520,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56994] = 8, + [62300] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2070), 1, + STATE(2167), 1, sym_comment, - ACTIONS(4425), 2, + ACTIONS(4597), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4601), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4603), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2742), 3, + ACTIONS(2580), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2740), 27, + ACTIONS(2578), 26, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -187705,27 +192565,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57050] = 6, + [62352] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2071), 1, + STATE(2168), 1, sym_comment, - ACTIONS(4429), 2, + ACTIONS(4601), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2742), 5, + ACTIONS(2580), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2740), 29, + ACTIONS(2578), 28, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -187751,55 +192608,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57102] = 17, + [62400] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4595), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4605), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4613), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4615), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4617), 1, anon_sym_bit_DASHor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2072), 1, + STATE(2169), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4593), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4597), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4601), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4603), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4607), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(2578), 4, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4599), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4611), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2740), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4437), 8, + ACTIONS(4609), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187808,56 +192662,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57176] = 18, + [62470] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4595), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4605), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4613), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4615), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4617), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4619), 1, anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2073), 1, + STATE(2170), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4593), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4597), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4601), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4603), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4607), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2740), 4, - sym__newline, - anon_sym_LBRACE, + ACTIONS(2578), 3, + anon_sym_EQ_GT, anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4599), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4611), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4609), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187866,57 +192717,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57252] = 19, + [62542] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4595), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4605), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4613), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4615), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4617), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4619), 1, anon_sym_and2, - ACTIONS(4449), 1, + ACTIONS(4621), 1, anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2074), 1, + STATE(2171), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(2578), 2, + anon_sym_EQ_GT, + anon_sym_or2, + ACTIONS(4593), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4597), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4601), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4603), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4607), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2740), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4599), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4611), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4609), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187925,38 +192773,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57330] = 13, + [62616] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4595), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4605), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2075), 1, + STATE(2172), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4593), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4597), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4601), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4603), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4607), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4599), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(4609), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187965,9 +192811,8 @@ 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, - sym__newline, - anon_sym_LBRACE, + ACTIONS(2578), 11, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -187978,33 +192823,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57396] = 10, + [62678] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4595), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4605), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2076), 1, + STATE(2173), 1, sym_comment, - ACTIONS(2742), 2, + ACTIONS(2580), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4597), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4601), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4603), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2740), 26, + ACTIONS(2578), 25, anon_sym_in, - sym__newline, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188028,52 +192870,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57456] = 14, + [62734] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4595), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4605), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2077), 1, + STATE(2174), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4593), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4597), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4601), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4603), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4607), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4599), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4611), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2740), 8, - sym__newline, - anon_sym_LBRACE, + ACTIONS(2578), 7, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4609), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188082,53 +192921,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57524] = 15, + [62798] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4595), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4605), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4613), 1, anon_sym_bit_DASHand2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2078), 1, + STATE(2175), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4593), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4597), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4601), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4603), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4607), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4599), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4611), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2740), 7, - sym__newline, - anon_sym_LBRACE, + ACTIONS(2578), 6, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4609), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188137,527 +192973,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57594] = 16, + [62864] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4595), 1, anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2079), 1, - sym_comment, - ACTIONS(4421), 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, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2740), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4437), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [57666] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2080), 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, - [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, + ACTIONS(4605), 1, 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, + ACTIONS(4613), 1, anon_sym_bit_DASHand2, + ACTIONS(4615), 1, anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [57814] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2083), 1, + STATE(2176), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(4593), 2, 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, + ACTIONS(4597), 2, 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, + ACTIONS(4601), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4603), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(4607), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [57914] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(974), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4458), 1, - sym_filesize_unit, - ACTIONS(4460), 1, - sym_duration_unit, - STATE(2085), 1, - sym_comment, - ACTIONS(972), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(970), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [57968] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - sym__newline, - STATE(2086), 1, - sym_comment, - ACTIONS(4376), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2938), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 27, - 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, - [58020] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(4419), 1, - sym_raw_string_begin, - ACTIONS(4465), 1, - anon_sym_RBRACK, - STATE(2087), 1, - sym_comment, - STATE(2102), 1, - aux_sym__types_body_repeat2, - ACTIONS(4413), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [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, + ACTIONS(4599), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4611), 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_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2578), 5, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [58168] = 4, + ACTIONS(4609), 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, + [62932] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2177), 1, + sym_comment, + 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, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_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, + [62978] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2090), 1, + ACTIONS(1002), 1, + aux_sym_cmd_identifier_token6, + STATE(2178), 1, sym_comment, - ACTIONS(771), 7, + ACTIONS(1000), 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(773), 30, + ACTIONS(998), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -188687,24 +193111,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_duration_unit, - [58216] = 5, - ACTIONS(103), 1, + [63026] = 27, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3715), 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(4467), 1, - sym__entry_separator, - STATE(2091), 2, + ACTIONS(3083), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4625), 1, + anon_sym_null, + ACTIONS(4629), 1, + sym__newline, + ACTIONS(4631), 1, + anon_sym_GT2, + ACTIONS(4633), 1, + anon_sym_DOT_DOT, + ACTIONS(4637), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4639), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4643), 1, + sym_val_date, + STATE(2179), 1, sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 34, + STATE(2223), 1, + aux_sym__types_body_repeat1, + STATE(2246), 1, + aux_sym__collection_body_repeat1, + STATE(3879), 1, + sym__val_number_decimal, + STATE(4448), 1, + sym__collection_entry, + STATE(4897), 1, + sym_val_bool, + STATE(4951), 1, + sym__collection_body, + ACTIONS(4623), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4635), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4641), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4280), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5104), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4627), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3594), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [63118] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2180), 1, + sym_comment, + ACTIONS(2150), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2148), 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 +193204,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 +193218,16 @@ 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, + [63164] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4470), 1, - anon_sym_QMARK2, - STATE(2094), 1, + STATE(2181), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(2389), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 32, + ACTIONS(2387), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -188868,19 +193260,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [58416] = 5, + [63210] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4470), 1, - anon_sym_BANG, - STATE(2095), 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(3083), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4625), 1, + anon_sym_null, + ACTIONS(4629), 1, + sym__newline, + ACTIONS(4633), 1, + anon_sym_DOT_DOT, + ACTIONS(4637), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4639), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4643), 1, + sym_val_date, + ACTIONS(4645), 1, + anon_sym_GT2, + STATE(2182), 1, + sym_comment, + STATE(2223), 1, + aux_sym__types_body_repeat1, + STATE(2246), 1, + aux_sym__collection_body_repeat1, + STATE(3879), 1, + sym__val_number_decimal, + STATE(4448), 1, + sym__collection_entry, + STATE(4897), 1, + sym_val_bool, + STATE(5214), 1, + sym__collection_body, + ACTIONS(4623), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4635), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4641), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4280), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5104), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4627), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3594), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [63302] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2183), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(2933), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 32, + ACTIONS(2935), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -188905,7 +193359,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, @@ -188913,534 +193367,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [58466] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2096), 1, - sym_comment, - ACTIONS(2637), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2635), 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, - [58518] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2097), 1, - sym_comment, - ACTIONS(996), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(994), 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, - [58570] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(2098), 1, - sym_comment, - 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, - [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, + [63348] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2100), 1, + STATE(2184), 1, sym_comment, - ACTIONS(1016), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1018), 30, + ACTIONS(2365), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [58726] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(888), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4482), 1, - sym_filesize_unit, - ACTIONS(4484), 1, - sym_duration_unit, - STATE(2101), 1, - sym_comment, - ACTIONS(886), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(884), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [58780] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3715), 1, + ACTIONS(2363), 32, sym_raw_string_begin, - ACTIONS(4486), 1, - sym__entry_separator, - STATE(2102), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 34, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_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_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [58830] = 7, - ACTIONS(103), 1, + [63394] = 27, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4493), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4495), 1, - sym_filesize_unit, - ACTIONS(4497), 1, - sym_duration_unit, - STATE(2103), 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(3083), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4625), 1, + anon_sym_null, + ACTIONS(4629), 1, + sym__newline, + ACTIONS(4633), 1, + anon_sym_DOT_DOT, + ACTIONS(4637), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4639), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4643), 1, + sym_val_date, + ACTIONS(4647), 1, + anon_sym_GT2, + STATE(2185), 1, sym_comment, - ACTIONS(4491), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4489), 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, - [58884] = 7, - ACTIONS(103), 1, + STATE(2223), 1, + aux_sym__types_body_repeat1, + STATE(2246), 1, + aux_sym__collection_body_repeat1, + STATE(3879), 1, + sym__val_number_decimal, + STATE(4448), 1, + sym__collection_entry, + STATE(4897), 1, + sym_val_bool, + STATE(5053), 1, + sym__collection_body, + ACTIONS(4623), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4635), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4641), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4280), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5104), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4627), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3594), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [63486] = 4, + ACTIONS(3), 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, + STATE(2186), 1, sym_comment, - ACTIONS(4413), 33, + 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_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, - [58938] = 7, - ACTIONS(103), 1, + [63532] = 4, + ACTIONS(3), 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, + STATE(2187), 1, sym_comment, - ACTIONS(4413), 33, + ACTIONS(4653), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4655), 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, - [58992] = 7, + [63578] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, - sym__newline, - ACTIONS(4373), 1, - anon_sym_LBRACK, - STATE(2106), 1, + STATE(2188), 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, + ACTIONS(4657), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4659), 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_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, - [59046] = 7, + [63624] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4507), 1, + ACTIONS(1014), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4509), 1, - sym_filesize_unit, - ACTIONS(4511), 1, - sym_duration_unit, - STATE(2107), 1, + STATE(2189), 1, sym_comment, - ACTIONS(4505), 5, + ACTIONS(1012), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4503), 29, + ACTIONS(1010), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -189470,26 +193643,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [59100] = 7, - ACTIONS(103), 1, + [63672] = 4, + ACTIONS(3), 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, + STATE(2190), 1, sym_comment, - ACTIONS(4344), 33, + ACTIONS(2290), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2288), 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, @@ -189503,13 +193671,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, @@ -189517,70 +193685,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59154] = 4, - ACTIONS(103), 1, + [63718] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2109), 1, + STATE(2191), 1, sym_comment, - ACTIONS(849), 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(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, - [59202] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, + ACTIONS(1890), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1888), 32, sym_raw_string_begin, - ACTIONS(4515), 1, - anon_sym_RBRACK, - STATE(2091), 1, - aux_sym__types_body_repeat2, - STATE(2110), 1, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_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, + [63764] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2192), 1, sym_comment, - ACTIONS(4344), 33, + ACTIONS(1629), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1716), 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 +193755,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 +193769,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59256] = 4, + [63810] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2111), 1, + STATE(2193), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(4661), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1522), 32, + ACTIONS(4663), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -189651,64 +193811,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59303] = 4, - ACTIONS(103), 1, + [63856] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2112), 1, + STATE(2194), 1, sym_comment, - ACTIONS(3734), 2, + ACTIONS(2162), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2160), 32, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 34, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_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_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [59350] = 4, + [63902] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2113), 1, + ACTIONS(1036), 1, + aux_sym_cmd_identifier_token6, + STATE(2195), 1, sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 34, + ACTIONS(1034), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1032), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [63950] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2196), 1, + sym_comment, + ACTIONS(2584), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2582), 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 +193924,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_RBRACK, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -189737,18 +193938,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59397] = 5, + [63996] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2114), 1, + STATE(2197), 1, sym_comment, - ACTIONS(2637), 3, + ACTIONS(2519), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2635), 32, + ACTIONS(2517), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -189781,18 +193980,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59446] = 5, + [64042] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4147), 1, - sym__unquoted_pattern, - STATE(2115), 1, + STATE(2198), 1, sym_comment, - ACTIONS(868), 3, + ACTIONS(2554), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(968), 32, + ACTIONS(2552), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -189825,18 +194022,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59495] = 5, + [64088] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4669), 1, + aux_sym_cmd_identifier_token6, + STATE(2199), 1, + sym_comment, + ACTIONS(4667), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4665), 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, + [64136] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4675), 1, + aux_sym_cmd_identifier_token6, + STATE(2200), 1, + sym_comment, + ACTIONS(4673), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4671), 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, + [64184] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(2116), 1, + STATE(2201), 1, sym_comment, - ACTIONS(1619), 3, + ACTIONS(2260), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1706), 32, + ACTIONS(2258), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -189869,107 +194150,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59544] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4517), 1, - sym__newline, - STATE(2117), 2, - 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, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [59593] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(4419), 1, - sym_raw_string_begin, - STATE(2102), 1, - aux_sym__types_body_repeat2, - STATE(2118), 1, - sym_comment, - ACTIONS(4413), 33, - anon_sym_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, - [59644] = 5, + [64230] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2119), 1, + STATE(2202), 1, sym_comment, - ACTIONS(996), 3, + ACTIONS(2260), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(994), 32, + ACTIONS(2258), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190002,24 +194192,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59693] = 6, - ACTIONS(103), 1, + [64276] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - STATE(2091), 1, - aux_sym__types_body_repeat2, - STATE(2120), 1, + STATE(2203), 1, sym_comment, - ACTIONS(4344), 33, + ACTIONS(2268), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2266), 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 +194220,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 +194234,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59744] = 5, + [64322] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4520), 1, - sym__newline, - STATE(2121), 2, + STATE(2204), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 3, + ACTIONS(2431), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3738), 31, + ACTIONS(2429), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190084,6 +194268,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 +194276,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59793] = 5, + [64368] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2122), 1, + STATE(2205), 1, sym_comment, - ACTIONS(1016), 3, + ACTIONS(1858), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1018), 32, + ACTIONS(1856), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190135,180 +194318,16 @@ 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, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2792), 1, - anon_sym_DASH2, - ACTIONS(2798), 1, - anon_sym_PLUS2, - ACTIONS(2802), 1, - anon_sym_bit_DASHand2, - ACTIONS(2804), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2903), 1, - anon_sym_bit_DASHor2, - ACTIONS(2910), 1, - anon_sym_and2, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(2918), 1, - anon_sym_xor2, - ACTIONS(4525), 1, - anon_sym_or2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2124), 1, - sym_comment, - ACTIONS(2782), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2784), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2786), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2790), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2800), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2794), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2796), 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, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [60049] = 5, + [64414] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4527), 1, - anon_sym_LBRACK2, - STATE(2126), 1, + STATE(2206), 1, sym_comment, - ACTIONS(2130), 3, + ACTIONS(2537), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2128), 32, + ACTIONS(2535), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190341,17 +194360,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60098] = 4, + [64460] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2127), 1, + STATE(2207), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(2272), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1537), 32, + ACTIONS(2270), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190384,253 +194402,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60145] = 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, - ACTIONS(4529), 1, - anon_sym_or2, - STATE(2128), 1, - sym_comment, - STATE(2129), 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(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, - [60224] = 20, + [64506] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(4677), 1, sym__newline, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, - anon_sym_bit_DASHor2, - ACTIONS(4447), 1, - anon_sym_and2, - ACTIONS(4449), 1, - anon_sym_xor2, - ACTIONS(4531), 1, - anon_sym_or2, - STATE(540), 1, + STATE(2208), 2, aux_sym__repeat_newline, - STATE(2129), 1, - sym_comment, - ACTIONS(4421), 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, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4437), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [60303] = 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, - ACTIONS(4533), 1, - anon_sym_or2, - STATE(2130), 1, sym_comment, - STATE(2131), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - 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, - [60382] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3836), 1, + ACTIONS(1931), 8, + anon_sym_DOLLAR, 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, - ACTIONS(3862), 1, - anon_sym_xor2, - ACTIONS(4535), 1, - anon_sym_or2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2131), 1, - sym_comment, - ACTIONS(3834), 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, - 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_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, - [60461] = 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1926), 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, + [64554] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2132), 1, + STATE(2209), 1, sym_comment, - ACTIONS(2503), 4, + ACTIONS(2286), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - sym__unquoted_pattern, - ACTIONS(2501), 32, + ACTIONS(2284), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190663,17 +194487,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60508] = 4, + [64600] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2133), 1, + STATE(2210), 1, sym_comment, - ACTIONS(1462), 4, + ACTIONS(2616), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1464), 32, + ACTIONS(2614), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190706,58 +194529,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60555] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2134), 1, - sym_comment, - ACTIONS(2096), 36, - sym__newline, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [60600] = 4, + [64646] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2135), 1, + STATE(2211), 1, sym_comment, - ACTIONS(2573), 3, + ACTIONS(1852), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2571), 32, + ACTIONS(1850), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190790,16 +194571,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60646] = 4, + [64692] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2136), 1, + STATE(2212), 1, sym_comment, - ACTIONS(2938), 3, + ACTIONS(1519), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2940), 32, + ACTIONS(1521), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190824,7 +194605,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -190832,120 +194613,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60692] = 10, + [64738] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(3914), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(3918), 1, + anon_sym_and2, + ACTIONS(3928), 1, anon_sym_PLUS2, - STATE(2137), 1, + ACTIONS(3932), 1, + anon_sym_bit_DASHand2, + ACTIONS(3934), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3936), 1, + anon_sym_bit_DASHor2, + ACTIONS(3946), 1, + anon_sym_xor2, + ACTIONS(4680), 1, + anon_sym_or2, + STATE(2213), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(3912), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4539), 2, + ACTIONS(3916), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(3926), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(3930), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2533), 23, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [60750] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2138), 1, - sym_comment, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2533), 26, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(3920), 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, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [60802] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2139), 1, - sym_comment, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2533), 28, + ACTIONS(3910), 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, @@ -190953,67 +194668,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_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, - [60850] = 16, + [64811] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(2954), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(2962), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(2974), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(2976), 1, anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, + ACTIONS(2978), 1, anon_sym_bit_DASHor2, - STATE(2140), 1, + ACTIONS(2980), 1, + anon_sym_and2, + ACTIONS(3030), 1, + anon_sym_xor2, + ACTIONS(4682), 1, + anon_sym_or2, + STATE(2214), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(2956), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(2958), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(2960), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, + ACTIONS(2964), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2533), 4, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4553), 4, + ACTIONS(2968), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(2972), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4549), 8, + ACTIONS(2970), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191022,53 +194723,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, + [64884] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(2857), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(2869), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(2873), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(2885), 1, anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, + ACTIONS(2944), 1, anon_sym_bit_DASHor2, - ACTIONS(4563), 1, + ACTIONS(2946), 1, anon_sym_and2, - STATE(2141), 1, + ACTIONS(2948), 1, + anon_sym_xor2, + ACTIONS(4684), 1, + anon_sym_or2, + STATE(2215), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(2855), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2859), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(2865), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(2867), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(2871), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2533), 3, - anon_sym_EQ_GT, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4553), 4, + ACTIONS(2861), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(2863), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4549), 8, + ACTIONS(2853), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191077,54 +194778,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60992] = 18, + [64957] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4559), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4569), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(4577), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(4579), 1, anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, + ACTIONS(4581), 1, anon_sym_bit_DASHor2, - ACTIONS(4563), 1, + ACTIONS(4583), 1, anon_sym_and2, - ACTIONS(4565), 1, + ACTIONS(4585), 1, anon_sym_xor2, - STATE(2142), 1, - sym_comment, - ACTIONS(2533), 2, - anon_sym_EQ_GT, + ACTIONS(4686), 1, anon_sym_or2, - ACTIONS(4539), 2, + STATE(2216), 1, + sym_comment, + ACTIONS(4557), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4561), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4565), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4567), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(4571), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(4563), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(4575), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4549), 8, + ACTIONS(4573), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191133,83 +194833,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61066] = 12, + [65030] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4595), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4605), 1, anon_sym_PLUS2, - STATE(2143), 1, + ACTIONS(4613), 1, + anon_sym_bit_DASHand2, + ACTIONS(4615), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4617), 1, + anon_sym_bit_DASHor2, + ACTIONS(4619), 1, + anon_sym_and2, + ACTIONS(4621), 1, + anon_sym_xor2, + ACTIONS(4688), 1, + anon_sym_or2, + STATE(2217), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4593), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4597), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4601), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4603), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(4607), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(4599), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4549), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 11, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(4611), 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, - [61128] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_DASH2, - ACTIONS(4545), 1, - anon_sym_PLUS2, - STATE(2144), 1, - sym_comment, - ACTIONS(2535), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2533), 25, + ACTIONS(4609), 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, @@ -191217,62 +194888,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [61184] = 13, + [65103] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + STATE(2218), 1, + sym_comment, + ACTIONS(2146), 8, + anon_sym_DOLLAR, anon_sym_DASH2, - ACTIONS(4545), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2144), 26, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [65148] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3861), 1, + anon_sym_DASH2, + ACTIONS(3871), 1, anon_sym_PLUS2, - STATE(2145), 1, + ACTIONS(3879), 1, + anon_sym_bit_DASHand2, + ACTIONS(3881), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3883), 1, + anon_sym_bit_DASHor2, + ACTIONS(3885), 1, + anon_sym_and2, + ACTIONS(3887), 1, + anon_sym_xor2, + ACTIONS(4690), 1, + anon_sym_or2, + STATE(2219), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(3859), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3863), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(3867), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(3869), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(3873), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(3865), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(3877), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 7, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4549), 8, + ACTIONS(3875), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191281,50 +194984,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61248] = 14, + [65221] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_DASH2, - ACTIONS(4545), 1, - anon_sym_PLUS2, - ACTIONS(4557), 1, - anon_sym_bit_DASHand2, - STATE(2146), 1, + STATE(2220), 1, sym_comment, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, + ACTIONS(4696), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(4698), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(4700), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 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(4692), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191333,51 +195011,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61314] = 15, + ACTIONS(4694), 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, + [65272] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4704), 1, + anon_sym_RBRACE, + ACTIONS(4706), 1, + sym__entry_separator, + ACTIONS(4708), 1, + sym_raw_string_begin, + STATE(2221), 1, + sym_comment, + STATE(2225), 1, + aux_sym__types_body_repeat2, + ACTIONS(4702), 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, + [65322] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4706), 1, + sym__entry_separator, + ACTIONS(4708), 1, + sym_raw_string_begin, + ACTIONS(4710), 1, + anon_sym_RBRACE, + STATE(2222), 1, + sym_comment, + STATE(2225), 1, + aux_sym__types_body_repeat2, + ACTIONS(4702), 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, + [65372] = 25, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3083), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4625), 1, + anon_sym_null, + ACTIONS(4629), 1, + sym__newline, + ACTIONS(4633), 1, + anon_sym_DOT_DOT, + ACTIONS(4637), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4639), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4643), 1, + sym_val_date, + STATE(2223), 1, + sym_comment, + STATE(2250), 1, + aux_sym__collection_body_repeat1, + STATE(2405), 1, + aux_sym__types_body_repeat1, + STATE(3879), 1, + sym__val_number_decimal, + STATE(4460), 1, + sym__collection_entry, + STATE(4897), 1, + sym_val_bool, + ACTIONS(4623), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4635), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4641), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4280), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5104), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4627), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3594), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [65458] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_DASH2, - ACTIONS(4545), 1, - anon_sym_PLUS2, - ACTIONS(4557), 1, - anon_sym_bit_DASHand2, - ACTIONS(4559), 1, - anon_sym_bit_DASHxor2, - STATE(2147), 1, + STATE(2224), 1, sym_comment, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, + ACTIONS(4714), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(4716), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(4718), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 5, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4549), 8, + ACTIONS(4712), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191386,232 +195202,533 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61382] = 4, + ACTIONS(4694), 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, + [65508] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3734), 1, + sym_raw_string_begin, + ACTIONS(4720), 1, + sym__entry_separator, + STATE(2225), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3729), 30, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym_unquoted_token1, + [65554] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2148), 1, + ACTIONS(4723), 1, + sym__newline, + STATE(2226), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(4567), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4569), 32, + ACTIONS(1931), 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(1926), 24, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, - [61428] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [65600] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4575), 1, - aux_sym_cmd_identifier_token6, - STATE(2149), 1, + ACTIONS(4706), 1, + sym__entry_separator, + ACTIONS(4708), 1, + sym_raw_string_begin, + ACTIONS(4726), 1, + anon_sym_RBRACE, + STATE(2225), 1, + aux_sym__types_body_repeat2, + STATE(2227), 1, sym_comment, - ACTIONS(4573), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4571), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [61476] = 4, - ACTIONS(3), 1, + ACTIONS(4702), 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, + [65650] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2150), 1, + ACTIONS(4732), 1, + sym__entry_separator, + ACTIONS(4734), 1, + sym_raw_string_begin, + STATE(2228), 1, sym_comment, - ACTIONS(2521), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2519), 32, + STATE(2243), 1, + aux_sym__types_body_repeat2, + ACTIONS(4730), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4728), 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, + [65699] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4732), 1, + sym__entry_separator, + ACTIONS(4734), 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(2229), 1, + sym_comment, + STATE(2243), 1, + aux_sym__types_body_repeat2, + ACTIONS(4736), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4728), 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_DASH_DASH, + 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, - [61522] = 5, + aux_sym__unquoted_in_list_token1, + [65748] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1002), 1, - aux_sym_cmd_identifier_token6, - STATE(2151), 1, + ACTIONS(4732), 1, + sym__entry_separator, + ACTIONS(4734), 1, + sym_raw_string_begin, + STATE(2230), 1, sym_comment, - ACTIONS(1000), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(998), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [61570] = 4, + STATE(2243), 1, + aux_sym__types_body_repeat2, + ACTIONS(4730), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4728), 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, + [65797] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2152), 1, + STATE(2231), 1, sym_comment, - ACTIONS(1860), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1523), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1525), 29, + anon_sym_if, anon_sym_in, - ACTIONS(1858), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_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, + [65840] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4732), 1, + sym__entry_separator, + ACTIONS(4734), 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(2232), 1, + sym_comment, + STATE(2243), 1, + aux_sym__types_body_repeat2, + ACTIONS(4738), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4728), 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, + [65889] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2233), 1, + sym_comment, + ACTIONS(1527), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1529), 29, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + [65932] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4706), 1, + sym__entry_separator, + ACTIONS(4708), 1, + sym_raw_string_begin, + STATE(2225), 1, + aux_sym__types_body_repeat2, + STATE(2234), 1, + sym_comment, + ACTIONS(4702), 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, - [61616] = 4, + aux_sym_unquoted_token1, + [65979] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2153), 1, + ACTIONS(4386), 1, + sym__newline, + ACTIONS(4390), 1, + anon_sym_LBRACK, + ACTIONS(4479), 1, + anon_sym_DOT_DOT, + STATE(2235), 1, sym_comment, - ACTIONS(2938), 7, + ACTIONS(4393), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2933), 5, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2935), 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, + [66030] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4732), 1, + sym__entry_separator, + ACTIONS(4734), 1, + sym_raw_string_begin, + STATE(2236), 1, + sym_comment, + STATE(2243), 1, + aux_sym__types_body_repeat2, + ACTIONS(4740), 2, + anon_sym_RBRACK, anon_sym_DOT_DOT, + ACTIONS(4728), 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, - ACTIONS(2940), 28, + [66079] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2237), 1, + sym_comment, + ACTIONS(2146), 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(2144), 25, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -191623,10 +195740,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -191639,2914 +195754,3843 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [61662] = 4, + [66122] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2238), 1, sym_comment, - ACTIONS(2086), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1519), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1521), 29, + anon_sym_if, anon_sym_in, - ACTIONS(2084), 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, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [66165] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2239), 1, + sym_comment, + ACTIONS(1504), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1506), 29, 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_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, + [66208] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2240), 1, + sym_comment, + ACTIONS(3744), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3742), 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_DASH_DASH, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61708] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [66251] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2155), 1, - sym_comment, - ACTIONS(2270), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2268), 32, + ACTIONS(4732), 1, + sym__entry_separator, + ACTIONS(4734), 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(2241), 1, + sym_comment, + STATE(2243), 1, + aux_sym__types_body_repeat2, + ACTIONS(4738), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4728), 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_DASH_DASH, + 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, - [61754] = 4, + aux_sym__unquoted_in_list_token1, + [66300] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2156), 1, + ACTIONS(4742), 1, + sym__newline, + STATE(2242), 2, sym_comment, - ACTIONS(2274), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2272), 32, + aux_sym__types_body_repeat1, + ACTIONS(3746), 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(3748), 23, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_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_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, + [66345] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3734), 1, + sym_raw_string_begin, + ACTIONS(4745), 1, + sym__entry_separator, + STATE(2243), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3729), 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, - [61800] = 27, + aux_sym__unquoted_in_list_token1, + [66390] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2244), 1, + sym_comment, + ACTIONS(1496), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1498), 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, + [66433] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2245), 1, + sym_comment, + ACTIONS(1500), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1502), 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, + [66476] = 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(3083), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, + ACTIONS(4625), 1, anon_sym_null, - ACTIONS(4583), 1, - sym__newline, - ACTIONS(4585), 1, - anon_sym_GT2, - ACTIONS(4587), 1, + ACTIONS(4633), 1, anon_sym_DOT_DOT, - ACTIONS(4591), 1, + ACTIONS(4637), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, + ACTIONS(4639), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, + ACTIONS(4643), 1, sym_val_date, - STATE(2157), 1, + STATE(2246), 1, sym_comment, - STATE(2224), 1, - aux_sym__types_body_repeat1, - STATE(2250), 1, + STATE(2247), 1, aux_sym__collection_body_repeat1, - STATE(3843), 1, + STATE(3879), 1, sym__val_number_decimal, - STATE(4539), 1, + STATE(4463), 1, sym__collection_entry, - STATE(4928), 1, + STATE(4897), 1, sym_val_bool, - STATE(5104), 1, - sym__collection_body, - ACTIONS(4577), 2, + ACTIONS(4623), 2, anon_sym_true, anon_sym_false, - ACTIONS(4589), 2, + ACTIONS(4635), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, + ACTIONS(4641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4239), 2, + STATE(4280), 2, sym_val_string, sym__unquoted_in_record, - STATE(4861), 2, + STATE(5104), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, + ACTIONS(4627), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3505), 4, + STATE(3594), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [61892] = 4, + [66556] = 22, ACTIONS(3), 1, anon_sym_POUND, - STATE(2158), 1, + ACTIONS(4751), 1, + anon_sym_null, + ACTIONS(4757), 1, + anon_sym_DOT_DOT, + ACTIONS(4763), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4766), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4772), 1, + sym_val_date, + ACTIONS(4775), 1, + anon_sym_DQUOTE, + ACTIONS(4778), 1, + anon_sym_SQUOTE, + ACTIONS(4781), 1, + anon_sym_BQUOTE, + ACTIONS(4784), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4787), 1, + sym_raw_string_begin, + STATE(3879), 1, + sym__val_number_decimal, + STATE(4792), 1, + sym__collection_entry, + STATE(4897), 1, + sym_val_bool, + ACTIONS(4748), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4760), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4769), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2247), 2, sym_comment, - ACTIONS(1888), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1886), 32, + aux_sym__collection_body_repeat1, + STATE(4667), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5104), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4754), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3594), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [66634] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2248), 1, + sym_comment, + ACTIONS(3744), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3742), 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, + [66676] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2249), 1, + sym_comment, + ACTIONS(2933), 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(2935), 24, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_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_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, - [61938] = 27, + [66718] = 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(3083), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, + ACTIONS(4625), 1, anon_sym_null, - ACTIONS(4583), 1, - sym__newline, - ACTIONS(4587), 1, + ACTIONS(4633), 1, anon_sym_DOT_DOT, - ACTIONS(4591), 1, + ACTIONS(4637), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, + ACTIONS(4639), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, + ACTIONS(4643), 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, + STATE(2247), 1, aux_sym__collection_body_repeat1, - STATE(3843), 1, + STATE(2250), 1, + sym_comment, + STATE(3879), 1, sym__val_number_decimal, - STATE(4539), 1, + STATE(4500), 1, sym__collection_entry, - STATE(4928), 1, + STATE(4897), 1, sym_val_bool, - STATE(5019), 1, - sym__collection_body, - ACTIONS(4577), 2, + ACTIONS(4623), 2, anon_sym_true, anon_sym_false, - ACTIONS(4589), 2, + ACTIONS(4635), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, + ACTIONS(4641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4239), 2, + STATE(4280), 2, sym_val_string, sym__unquoted_in_record, - STATE(4861), 2, + STATE(5104), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, + ACTIONS(4627), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3505), 4, + STATE(3594), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [62030] = 4, + [66798] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2160), 1, + ACTIONS(4790), 1, + sym__newline, + STATE(2251), 2, sym_comment, - ACTIONS(1478), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1480), 32, + aux_sym__types_body_repeat1, + ACTIONS(3746), 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(3748), 23, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, - [62076] = 5, + [66842] = 6, 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, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2162), 1, - sym_comment, - ACTIONS(1543), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1545), 32, + ACTIONS(4732), 1, + sym__entry_separator, + ACTIONS(4734), 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(2243), 1, + aux_sym__types_body_repeat2, + STATE(2252), 1, + sym_comment, + ACTIONS(4728), 28, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + 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, - [62170] = 4, + aux_sym__unquoted_in_list_token1, + [66888] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2163), 1, + STATE(2253), 1, sym_comment, - ACTIONS(1466), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1468), 32, + STATE(3151), 1, + sym_redirection, + ACTIONS(4795), 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(4797), 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(4793), 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, + [66933] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2254), 1, + sym_comment, + ACTIONS(2933), 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(2935), 24, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_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_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, - [62216] = 4, + [66974] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2164), 1, + STATE(2255), 1, sym_comment, - ACTIONS(868), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + STATE(3173), 1, + sym_redirection, + ACTIONS(4795), 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(4797), 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(4799), 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(3291), 1, + sym_redirection, + ACTIONS(4795), 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(4797), 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(4801), 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] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2257), 1, + sym_comment, + ACTIONS(1580), 2, + anon_sym_EQ, + anon_sym_DOT_DOT2, + ACTIONS(1582), 27, + anon_sym_if, anon_sym_in, - ACTIONS(968), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_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, + [67103] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2258), 1, + sym_comment, + STATE(3289), 1, + sym_redirection, + ACTIONS(4795), 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(4797), 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(4803), 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, + [67147] = 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, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4811), 1, + anon_sym_LBRACE, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2259), 1, + sym_comment, + STATE(2262), 1, + aux_sym__repeat_newline, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2708), 1, + sym__binary_predicate_parenthesized, + STATE(2709), 1, + sym_where_predicate, + STATE(3187), 1, + sym_val_closure, + ACTIONS(1904), 2, + anon_sym_true, + anon_sym_false, + STATE(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [67229] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2260), 1, + sym_comment, + STATE(3305), 1, + sym_redirection, + ACTIONS(4815), 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(4817), 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(4793), 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, + [67273] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2261), 1, + sym_comment, + STATE(3304), 1, + sym_redirection, + ACTIONS(4815), 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(4817), 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(4799), 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, + [67317] = 25, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4811), 1, + anon_sym_LBRACE, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2262), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2766), 1, + sym__binary_predicate_parenthesized, + STATE(2770), 1, + sym_where_predicate, + STATE(3109), 1, + aux_sym__repeat_newline, + STATE(3200), 1, + sym_val_closure, + ACTIONS(1904), 2, + anon_sym_true, + anon_sym_false, + STATE(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [67399] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4819), 1, + anon_sym_QMARK2, + ACTIONS(4821), 1, + anon_sym_BANG, + STATE(448), 1, + sym__path_suffix, + STATE(2263), 1, + sym_comment, + ACTIONS(1442), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1444), 23, 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_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, + [67444] = 23, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2264), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2732), 1, + sym__binary_predicate_parenthesized, + STATE(2737), 1, + sym_where_predicate, + STATE(3109), 1, + aux_sym__repeat_newline, + ACTIONS(1904), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [67520] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + ACTIONS(4823), 1, + anon_sym_DOT, + STATE(2265), 1, + sym_comment, + STATE(2406), 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(2515), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1599), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [67572] = 23, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2266), 1, + sym_comment, + STATE(2283), 1, + aux_sym__repeat_newline, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2747), 1, + sym__binary_predicate_parenthesized, + STATE(2842), 1, + sym_where_predicate, + ACTIONS(1904), 2, + anon_sym_true, + anon_sym_false, + STATE(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [67648] = 23, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2267), 1, + sym_comment, + STATE(2290), 1, + aux_sym__repeat_newline, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2780), 1, + sym__binary_predicate_parenthesized, + STATE(2782), 1, + sym_where_predicate, + ACTIONS(1904), 2, + anon_sym_true, + anon_sym_false, + STATE(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [67724] = 23, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2268), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2795), 1, + sym__binary_predicate_parenthesized, + STATE(2797), 1, + sym_where_predicate, + STATE(3109), 1, + aux_sym__repeat_newline, + ACTIONS(1904), 2, + anon_sym_true, + anon_sym_false, + STATE(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [67800] = 23, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2269), 1, + sym_comment, + STATE(2284), 1, + aux_sym__repeat_newline, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2663), 1, + sym__binary_predicate_parenthesized, + STATE(2664), 1, + sym_where_predicate, + ACTIONS(1904), 2, + anon_sym_true, + anon_sym_false, + STATE(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [67876] = 23, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2270), 1, + sym_comment, + STATE(2286), 1, + aux_sym__repeat_newline, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2772), 1, + sym__binary_predicate_parenthesized, + STATE(2773), 1, + sym_where_predicate, + ACTIONS(1904), 2, + anon_sym_true, + anon_sym_false, + STATE(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [67952] = 23, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2264), 1, + aux_sym__repeat_newline, + STATE(2271), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2677), 1, + sym__binary_predicate_parenthesized, + STATE(2678), 1, + sym_where_predicate, + ACTIONS(1904), 2, + anon_sym_true, + anon_sym_false, + STATE(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [68028] = 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, - [62262] = 4, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2272), 1, + sym_comment, + STATE(2289), 1, + aux_sym__repeat_newline, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2765), 1, + sym__binary_predicate_parenthesized, + STATE(2768), 1, + sym_where_predicate, + ACTIONS(1904), 2, + anon_sym_true, + anon_sym_false, + STATE(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [68104] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1450), 1, + anon_sym_DOT_DOT2, + ACTIONS(4829), 1, + anon_sym_DOT2, + STATE(454), 1, + sym_path, + STATE(2257), 1, + sym_cell_path, + STATE(2273), 1, + sym_comment, + STATE(2277), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1452), 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, + [68150] = 23, ACTIONS(3), 1, anon_sym_POUND, - STATE(2165), 1, - sym_comment, - ACTIONS(1470), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1472), 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, + ACTIONS(197), 1, anon_sym_DQUOTE, + ACTIONS(199), 1, anon_sym_SQUOTE, + ACTIONS(201), 1, anon_sym_BQUOTE, - [62308] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2166), 1, - sym_comment, - ACTIONS(1474), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1476), 32, + ACTIONS(211), 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, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2274), 1, + sym_comment, + STATE(2288), 1, + aux_sym__repeat_newline, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2757), 1, + sym__binary_predicate_parenthesized, + STATE(2761), 1, + sym_where_predicate, + ACTIONS(1904), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [68226] = 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, - [62354] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2167), 1, - sym_comment, - ACTIONS(1514), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1516), 32, + ACTIONS(211), 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, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2275), 1, + sym_comment, + STATE(2276), 1, + aux_sym__repeat_newline, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2811), 1, + sym__binary_predicate_parenthesized, + STATE(2825), 1, + sym_where_predicate, + ACTIONS(1904), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [68302] = 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, - [62400] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2168), 1, - sym_comment, - ACTIONS(2256), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2254), 32, + ACTIONS(211), 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, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2276), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2786), 1, + sym__binary_predicate_parenthesized, + STATE(2791), 1, + sym_where_predicate, + STATE(3109), 1, + aux_sym__repeat_newline, + ACTIONS(1904), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [62446] = 11, + STATE(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [68378] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - STATE(2169), 1, + ACTIONS(1515), 1, + anon_sym_DOT_DOT2, + ACTIONS(4829), 1, + anon_sym_DOT2, + STATE(454), 1, + sym_path, + STATE(2277), 1, sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2533), 19, + STATE(2278), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1517), 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_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62506] = 10, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [68422] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - STATE(2170), 1, + ACTIONS(1508), 1, + anon_sym_DOT_DOT2, + ACTIONS(4831), 1, + anon_sym_DOT2, + STATE(454), 1, + sym_path, + STATE(2278), 2, sym_comment, - ACTIONS(2535), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2533), 23, + 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_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62564] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [68464] = 23, 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, + ACTIONS(197), 1, anon_sym_DQUOTE, + ACTIONS(199), 1, anon_sym_SQUOTE, + ACTIONS(201), 1, anon_sym_BQUOTE, - [62610] = 7, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2279), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2762), 1, + sym__binary_predicate_parenthesized, + STATE(2831), 1, + sym_where_predicate, + STATE(3109), 1, + aux_sym__repeat_newline, + ACTIONS(1904), 2, + anon_sym_true, + anon_sym_false, + STATE(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [68540] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2172), 1, + ACTIONS(1683), 1, + anon_sym_DOT_DOT2, + ACTIONS(4829), 1, + anon_sym_DOT2, + STATE(454), 1, + sym_path, + STATE(470), 1, + sym_cell_path, + STATE(2277), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2280), 1, sym_comment, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2533), 26, - anon_sym_in, - anon_sym_DASH2, + ACTIONS(1681), 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_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62662] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [68586] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2173), 1, + ACTIONS(1689), 1, + anon_sym_DOT_DOT2, + ACTIONS(4829), 1, + anon_sym_DOT2, + STATE(454), 1, + sym_path, + STATE(475), 1, + sym_cell_path, + STATE(2277), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2281), 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, + ACTIONS(1687), 22, 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, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, + [68632] = 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, - [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, + ACTIONS(211), 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, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2282), 1, + sym_comment, + STATE(2295), 1, + aux_sym__repeat_newline, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2667), 1, + sym__binary_predicate_parenthesized, + STATE(2669), 1, + sym_where_predicate, + ACTIONS(1904), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [68708] = 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, - [62754] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2175), 1, - sym_comment, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2533), 28, - anon_sym_in, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 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_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62802] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2176), 1, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2283), 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, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2662), 1, + sym_where_predicate, + STATE(2836), 1, + sym__binary_predicate_parenthesized, + STATE(3109), 1, + aux_sym__repeat_newline, + ACTIONS(1904), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [68784] = 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, - [62848] = 16, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2284), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2689), 1, + sym__binary_predicate_parenthesized, + STATE(2711), 1, + sym_where_predicate, + STATE(3109), 1, + aux_sym__repeat_newline, + ACTIONS(1904), 2, + anon_sym_true, + anon_sym_false, + STATE(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [68860] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - ACTIONS(4639), 1, - anon_sym_bit_DASHand2, - ACTIONS(4641), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, - anon_sym_bit_DASHor2, - STATE(2177), 1, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2268), 1, + aux_sym__repeat_newline, + STATE(2285), 1, sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2533), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [62918] = 4, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2834), 1, + sym__binary_predicate_parenthesized, + STATE(2838), 1, + sym_where_predicate, + ACTIONS(1904), 2, + anon_sym_true, + anon_sym_false, + STATE(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [68936] = 23, 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, + 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, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - 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(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2286), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2700), 1, + sym__binary_predicate_parenthesized, + STATE(2702), 1, + sym_where_predicate, + STATE(3109), 1, + aux_sym__repeat_newline, + ACTIONS(1904), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69012] = 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, - [62964] = 4, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2279), 1, + aux_sym__repeat_newline, + STATE(2287), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2660), 1, + sym_where_predicate, + STATE(2755), 1, + sym__binary_predicate_parenthesized, + ACTIONS(1904), 2, + anon_sym_true, + anon_sym_false, + STATE(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69088] = 23, 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, + 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, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - 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(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2288), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2746), 1, + sym__binary_predicate_parenthesized, + STATE(2829), 1, + sym_where_predicate, + STATE(3109), 1, + aux_sym__repeat_newline, + ACTIONS(1904), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69164] = 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, - [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, + ACTIONS(211), 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, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2289), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2723), 1, + sym__binary_predicate_parenthesized, + STATE(2733), 1, + sym_where_predicate, + STATE(3109), 1, + aux_sym__repeat_newline, + ACTIONS(1904), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69240] = 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, - [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, + ACTIONS(211), 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, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2290), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2785), 1, + sym__binary_predicate_parenthesized, + STATE(2787), 1, + sym_where_predicate, + STATE(3109), 1, + aux_sym__repeat_newline, + ACTIONS(1904), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69316] = 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, - [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, + ACTIONS(211), 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, + ACTIONS(2676), 1, + aux_sym_expr_unary_token1, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4834), 1, + anon_sym_LPAREN, + ACTIONS(4836), 1, + anon_sym_DOLLAR, + ACTIONS(4838), 1, + anon_sym_DASH2, + ACTIONS(4840), 1, + anon_sym_LBRACE, + STATE(1328), 1, + sym__expr_unary_minus, + STATE(2291), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2550), 1, + sym__where_predicate_lhs, + STATE(2849), 1, + sym__binary_predicate, + STATE(2854), 1, + sym_where_predicate, + STATE(3273), 1, + sym_val_closure, + ACTIONS(2238), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(2224), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2856), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69392] = 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, - [63148] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2183), 1, - sym_comment, - ACTIONS(2617), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2615), 32, + ACTIONS(211), 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, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4811), 1, + anon_sym_LBRACE, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2292), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2659), 1, + sym_where_predicate, + STATE(2763), 1, + sym__binary_predicate, + STATE(3117), 1, + sym_val_closure, + ACTIONS(1904), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69468] = 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, - [63194] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - ACTIONS(4639), 1, - anon_sym_bit_DASHand2, - ACTIONS(4641), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, - anon_sym_bit_DASHor2, - ACTIONS(4645), 1, - anon_sym_and2, - STATE(2184), 1, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2293), 1, sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2533), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [63266] = 18, + STATE(2294), 1, + aux_sym__repeat_newline, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2710), 1, + sym_where_predicate, + STATE(2839), 1, + sym__binary_predicate_parenthesized, + ACTIONS(1904), 2, + anon_sym_true, + anon_sym_false, + STATE(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69544] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - ACTIONS(4639), 1, - anon_sym_bit_DASHand2, - ACTIONS(4641), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, - anon_sym_bit_DASHor2, - ACTIONS(4645), 1, - anon_sym_and2, - ACTIONS(4647), 1, - anon_sym_xor2, - STATE(2185), 1, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2294), 1, sym_comment, - ACTIONS(2533), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [63340] = 12, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2742), 1, + sym_where_predicate, + STATE(2789), 1, + sym__binary_predicate_parenthesized, + STATE(3109), 1, + aux_sym__repeat_newline, + ACTIONS(1904), 2, + anon_sym_true, + anon_sym_false, + STATE(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 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(4609), 1, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + sym__newline, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - STATE(2186), 1, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2295), 1, sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 11, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [63402] = 9, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2805), 1, + sym__binary_predicate_parenthesized, + STATE(2807), 1, + sym_where_predicate, + STATE(3109), 1, + aux_sym__repeat_newline, + ACTIONS(1904), 2, + anon_sym_true, + anon_sym_false, + STATE(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69696] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - STATE(2187), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(2296), 1, sym_comment, - ACTIONS(2535), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2533), 25, - anon_sym_in, - anon_sym_LBRACE, + STATE(2532), 1, + sym__immediate_decimal, + ACTIONS(4842), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4844), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(780), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1599), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [63458] = 13, + [69745] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - STATE(2188), 1, + ACTIONS(1693), 1, + anon_sym_BANG, + STATE(2297), 1, sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2533), 7, + ACTIONS(1456), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1458), 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_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [63522] = 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [69784] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - ACTIONS(4639), 1, - anon_sym_bit_DASHand2, - STATE(2189), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1621), 1, + anon_sym_DOT, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(2298), 1, sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2533), 6, - anon_sym_LBRACE, + STATE(2514), 1, + sym__immediate_decimal, + ACTIONS(1609), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1611), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2513), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1617), 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, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [63588] = 15, + [69833] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - ACTIONS(4639), 1, - anon_sym_bit_DASHand2, - ACTIONS(4641), 1, - anon_sym_bit_DASHxor2, - STATE(2190), 1, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(1653), 1, + anon_sym_LPAREN2, + ACTIONS(4846), 1, + anon_sym_DOLLAR, + ACTIONS(4848), 1, + anon_sym_DOT, + STATE(2299), 1, sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2533), 5, - anon_sym_LBRACE, + STATE(2464), 1, + sym__immediate_decimal, + ACTIONS(4850), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4852), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2588), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1599), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [63656] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2191), 1, - sym_comment, - ACTIONS(4649), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4651), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [63702] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1014), 1, - aux_sym_cmd_identifier_token6, - STATE(2192), 1, - sym_comment, - ACTIONS(1012), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1010), 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, - [63750] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2193), 1, - sym_comment, - ACTIONS(2565), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2563), 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, - [63796] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2194), 1, - sym_comment, - ACTIONS(2260), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2258), 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, - [63842] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1008), 1, - aux_sym_cmd_identifier_token6, - STATE(2195), 1, - sym_comment, - ACTIONS(1006), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1004), 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, - [63890] = 4, + [69884] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(2196), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1691), 1, + sym__unquoted_pattern, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(2300), 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, + STATE(2536), 1, + sym__immediate_decimal, + ACTIONS(4842), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4844), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(726), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1677), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [69933] = 21, ACTIONS(3), 1, anon_sym_POUND, - STATE(2197), 1, - sym_comment, - ACTIONS(2264), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2262), 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, + ACTIONS(197), 1, anon_sym_DQUOTE, + ACTIONS(199), 1, anon_sym_SQUOTE, + ACTIONS(201), 1, anon_sym_BQUOTE, - [63982] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2198), 1, - sym_comment, - ACTIONS(2609), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2607), 32, + ACTIONS(211), 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, + ACTIONS(2676), 1, + aux_sym_expr_unary_token1, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4834), 1, + anon_sym_LPAREN, + ACTIONS(4836), 1, + anon_sym_DOLLAR, + ACTIONS(4838), 1, + anon_sym_DASH2, + STATE(1328), 1, + sym__expr_unary_minus, + STATE(2301), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2550), 1, + sym__where_predicate_lhs, + STATE(2890), 1, + sym__binary_predicate, + STATE(2891), 1, + sym_where_predicate, + ACTIONS(2238), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [64028] = 5, - ACTIONS(103), 1, + STATE(2224), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2856), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70003] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4657), 1, - aux_sym_cmd_identifier_token6, - STATE(2199), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(725), 1, + sym__immediate_decimal, + STATE(2302), 1, sym_comment, - ACTIONS(4655), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4653), 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, - [64076] = 5, + ACTIONS(1611), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1665), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(724), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1673), 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, + [70049] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4663), 1, - aux_sym_cmd_identifier_token6, - STATE(2200), 1, + ACTIONS(1599), 1, + sym__space, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(3279), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(4854), 1, + anon_sym_DOT, + ACTIONS(4856), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4858), 1, + aux_sym__immediate_decimal_token2, + STATE(2303), 1, sym_comment, - ACTIONS(4661), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4659), 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, - [64124] = 5, + STATE(2498), 1, + sym__immediate_decimal, + ACTIONS(4860), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2644), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1603), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [70103] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4665), 1, + ACTIONS(4862), 1, + anon_sym_DOT, + ACTIONS(4864), 1, + aux_sym__immediate_decimal_token5, + STATE(2304), 1, + sym_comment, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 21, sym__newline, - STATE(2201), 2, - aux_sym__repeat_newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_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, + [70143] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4866), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4868), 1, + aux_sym__immediate_decimal_token5, + STATE(2305), 1, sym_comment, - ACTIONS(1960), 8, + 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, + [70183] = 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(2676), 1, + aux_sym_expr_unary_token1, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4834), 1, + anon_sym_LPAREN, + ACTIONS(4836), 1, anon_sym_DOLLAR, + ACTIONS(4838), 1, 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, - sym_raw_string_begin, + STATE(1328), 1, + sym__expr_unary_minus, + STATE(2306), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2550), 1, + sym__where_predicate_lhs, + STATE(2892), 1, + sym__binary_predicate, + STATE(2893), 1, + sym_where_predicate, + ACTIONS(2238), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_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, - [64172] = 27, + STATE(2224), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2856), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70253] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(197), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(199), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(201), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, - anon_sym_null, - ACTIONS(4583), 1, - sym__newline, - ACTIONS(4587), 1, - anon_sym_DOT_DOT, - ACTIONS(4591), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, - sym_val_date, - ACTIONS(4668), 1, - anon_sym_GT2, - STATE(2202), 1, + ACTIONS(2676), 1, + aux_sym_expr_unary_token1, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4834), 1, + anon_sym_LPAREN, + ACTIONS(4836), 1, + anon_sym_DOLLAR, + ACTIONS(4838), 1, + anon_sym_DASH2, + STATE(1328), 1, + sym__expr_unary_minus, + STATE(2307), 1, sym_comment, - STATE(2224), 1, - aux_sym__types_body_repeat1, - STATE(2250), 1, - aux_sym__collection_body_repeat1, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4539), 1, - sym__collection_entry, - STATE(4871), 1, - sym__collection_body, - STATE(4928), 1, - sym_val_bool, - ACTIONS(4577), 2, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2550), 1, + sym__where_predicate_lhs, + STATE(2894), 1, + sym__binary_predicate, + STATE(2895), 1, + sym_where_predicate, + ACTIONS(2238), 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, + STATE(2224), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2856), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [64264] = 4, + [70323] = 21, ACTIONS(3), 1, anon_sym_POUND, - STATE(2203), 1, - sym_comment, - ACTIONS(2224), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2222), 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, + ACTIONS(197), 1, anon_sym_DQUOTE, + ACTIONS(199), 1, anon_sym_SQUOTE, + ACTIONS(201), 1, anon_sym_BQUOTE, - [64310] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2204), 1, - sym_comment, - ACTIONS(2539), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2537), 32, + ACTIONS(211), 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, + ACTIONS(2676), 1, + aux_sym_expr_unary_token1, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4834), 1, + anon_sym_LPAREN, + ACTIONS(4836), 1, + anon_sym_DOLLAR, + ACTIONS(4838), 1, + anon_sym_DASH2, + STATE(1328), 1, + sym__expr_unary_minus, + STATE(2308), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2550), 1, + sym__where_predicate_lhs, + STATE(2896), 1, + sym__binary_predicate, + STATE(2897), 1, + sym_where_predicate, + ACTIONS(2238), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(2224), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2856), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70393] = 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, - [64356] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2205), 1, - sym_comment, - ACTIONS(2204), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2202), 32, + ACTIONS(211), 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, + ACTIONS(2676), 1, + aux_sym_expr_unary_token1, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4834), 1, + anon_sym_LPAREN, + ACTIONS(4836), 1, + anon_sym_DOLLAR, + ACTIONS(4838), 1, + anon_sym_DASH2, + STATE(1328), 1, + sym__expr_unary_minus, + STATE(2309), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2550), 1, + sym__where_predicate_lhs, + STATE(2898), 1, + sym__binary_predicate, + STATE(2947), 1, + sym_where_predicate, + ACTIONS(2238), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(2224), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2856), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70463] = 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, - [64402] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2206), 1, - sym_comment, - ACTIONS(2513), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2511), 32, + ACTIONS(211), 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, + ACTIONS(2676), 1, + aux_sym_expr_unary_token1, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4834), 1, + anon_sym_LPAREN, + ACTIONS(4836), 1, + anon_sym_DOLLAR, + ACTIONS(4838), 1, + anon_sym_DASH2, + STATE(1328), 1, + sym__expr_unary_minus, + STATE(2310), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2550), 1, + sym__where_predicate_lhs, + STATE(2902), 1, + sym__binary_predicate, + STATE(2903), 1, + sym_where_predicate, + ACTIONS(2238), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(2224), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2856), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70533] = 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, - [64448] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2207), 1, - sym_comment, - ACTIONS(2593), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2591), 32, + ACTIONS(211), 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, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2311), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2692), 1, + sym__binary_predicate, + STATE(2693), 1, + sym_where_predicate, + ACTIONS(1904), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70603] = 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, - [64494] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2208), 1, - sym_comment, - ACTIONS(2094), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2092), 32, + ACTIONS(211), 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, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2312), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2694), 1, + sym__binary_predicate, + STATE(2696), 1, + sym_where_predicate, + ACTIONS(1904), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70673] = 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, - [64540] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2209), 1, - sym_comment, - ACTIONS(1868), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1866), 32, + ACTIONS(211), 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, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2313), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2697), 1, + sym__binary_predicate, + STATE(2698), 1, + sym_where_predicate, + ACTIONS(1904), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70743] = 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, - [64586] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2210), 1, - sym_comment, - ACTIONS(2196), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2194), 32, + ACTIONS(211), 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, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2314), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2699), 1, + sym__binary_predicate, + STATE(2701), 1, + sym_where_predicate, + ACTIONS(1904), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70813] = 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, - [64632] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2211), 1, - sym_comment, - ACTIONS(2517), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2515), 32, + ACTIONS(211), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2315), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2703), 1, + sym__binary_predicate, + STATE(2704), 1, + sym_where_predicate, + ACTIONS(1904), 2, + anon_sym_true, + anon_sym_false, + STATE(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70883] = 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, - [64678] = 11, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_DASH2, + ACTIONS(4813), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(911), 1, + sym__expr_unary_minus, + STATE(2316), 1, + sym_comment, + STATE(2368), 1, + sym_val_string, + STATE(2410), 1, + sym__where_predicate_lhs_path_head, + STATE(2556), 1, + sym__where_predicate_lhs, + STATE(2706), 1, + sym__binary_predicate, + STATE(2707), 1, + sym_where_predicate, + ACTIONS(1904), 2, + anon_sym_true, + anon_sym_false, + STATE(2220), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2823), 2, + sym_expr_unary, + sym_val_bool, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70953] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_DASH2, - ACTIONS(4545), 1, - anon_sym_PLUS2, - STATE(2212), 1, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(1653), 1, + anon_sym_LPAREN2, + ACTIONS(4846), 1, + anon_sym_DOLLAR, + STATE(2317), 1, sym_comment, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2533), 19, - anon_sym_in, - anon_sym_EQ_GT, + STATE(2647), 1, + sym__immediate_decimal, + ACTIONS(4870), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4872), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1294), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1599), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [64738] = 18, + [71001] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2810), 1, - anon_sym_DASH2, - ACTIONS(2822), 1, - anon_sym_PLUS2, - ACTIONS(2826), 1, - anon_sym_bit_DASHand2, - ACTIONS(2828), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2830), 1, - anon_sym_bit_DASHor2, - ACTIONS(2864), 1, + ACTIONS(1653), 1, + anon_sym_LPAREN2, + ACTIONS(1691), 1, + sym__unquoted_pattern, + ACTIONS(4846), 1, + anon_sym_DOLLAR, + STATE(2318), 1, + sym_comment, + STATE(2650), 1, + sym__immediate_decimal, + ACTIONS(4870), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4872), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1302), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1677), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and2, - ACTIONS(2866), 1, anon_sym_xor2, - ACTIONS(4670), 1, anon_sym_or2, - STATE(2213), 1, - sym_comment, - ACTIONS(2808), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2812), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2818), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2820), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2824), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2814), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2806), 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, - [64811] = 18, + [71049] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3876), 1, - anon_sym_PLUS2, - ACTIONS(3884), 1, - anon_sym_bit_DASHand2, - ACTIONS(3886), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, - anon_sym_bit_DASHor2, - ACTIONS(3890), 1, + ACTIONS(1653), 1, + anon_sym_LPAREN2, + ACTIONS(1698), 1, + anon_sym_DOT, + ACTIONS(4846), 1, + anon_sym_DOLLAR, + STATE(2319), 1, + sym_comment, + STATE(2587), 1, + sym__immediate_decimal, + ACTIONS(1657), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1659), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2586), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1617), 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, - ACTIONS(3892), 1, anon_sym_xor2, - ACTIONS(4672), 1, anon_sym_or2, - STATE(2214), 1, - sym_comment, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3882), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3880), 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, - [64884] = 18, + [71097] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - ACTIONS(4639), 1, - anon_sym_bit_DASHand2, - ACTIONS(4641), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, - anon_sym_bit_DASHor2, - ACTIONS(4645), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(777), 1, + sym__immediate_decimal, + STATE(2320), 1, + sym_comment, + ACTIONS(1611), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1665), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(776), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1617), 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, - ACTIONS(4647), 1, anon_sym_xor2, - ACTIONS(4674), 1, anon_sym_or2, - STATE(2215), 1, - sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [64957] = 18, + [71143] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_DASH2, - ACTIONS(4545), 1, - anon_sym_PLUS2, - ACTIONS(4557), 1, - anon_sym_bit_DASHand2, - ACTIONS(4559), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, - anon_sym_bit_DASHor2, - ACTIONS(4563), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(718), 1, + sym__immediate_decimal, + STATE(2321), 1, + sym_comment, + ACTIONS(1611), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1665), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(717), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1661), 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, - ACTIONS(4565), 1, anon_sym_xor2, - ACTIONS(4676), 1, anon_sym_or2, - STATE(2216), 1, - sym_comment, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4555), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4549), 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, - [65030] = 7, + [71189] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(2217), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(723), 1, + sym__immediate_decimal, + STATE(2322), 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, + ACTIONS(1611), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1665), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(722), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1669), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -194563,185 +199607,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [65081] = 18, + [71235] = 6, 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, + ACTIONS(4874), 1, + anon_sym_DOT, + ACTIONS(4876), 1, + aux_sym__immediate_decimal_token5, + STATE(2323), 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, - ACTIONS(3024), 1, anon_sym_xor2, - ACTIONS(4688), 1, anon_sym_or2, - STATE(2218), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [71274] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1599), 1, + sym__space, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(3279), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(4878), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4880), 1, + aux_sym__immediate_decimal_token2, + STATE(2324), 1, sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(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, - [65154] = 4, + STATE(2833), 1, + sym__immediate_decimal, + ACTIONS(4882), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2949), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1603), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [71325] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(2219), 1, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + ACTIONS(1776), 1, + sym__unquoted_pattern, + ACTIONS(4884), 1, + anon_sym_DOT_DOT2, + ACTIONS(4888), 1, + sym_filesize_unit, + ACTIONS(4890), 1, + sym_duration_unit, + STATE(2325), 1, sym_comment, - ACTIONS(2098), 8, + STATE(4712), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4886), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(884), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [71372] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1677), 1, + sym__space, + ACTIONS(1691), 1, + sym__unquoted_pattern, + ACTIONS(3279), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2096), 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, + ACTIONS(4878), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4880), 1, + aux_sym__immediate_decimal_token2, + STATE(2326), 1, + sym_comment, + STATE(2821), 1, + sym__immediate_decimal, + ACTIONS(4882), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2998), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1679), 13, sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [65199] = 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [71423] = 5, ACTIONS(3), 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, + ACTIONS(4864), 1, + aux_sym__immediate_decimal_token5, + STATE(2327), 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, - ACTIONS(3932), 1, anon_sym_xor2, - ACTIONS(4690), 1, anon_sym_or2, - STATE(2220), 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, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [71460] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2221), 1, + ACTIONS(4892), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4894), 1, + aux_sym__immediate_decimal_token5, + STATE(2328), 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, - ACTIONS(4680), 15, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -194757,290 +199815,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [65322] = 5, - ACTIONS(103), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [71499] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4700), 1, - sym__entry_separator, - STATE(2222), 2, + ACTIONS(4896), 1, + aux_sym__immediate_decimal_token5, + STATE(2329), 1, sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 30, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(763), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(765), 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__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [65368] = 7, + 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, + [71536] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4705), 1, - anon_sym_RBRACE, - ACTIONS(4707), 1, - sym__entry_separator, - ACTIONS(4709), 1, - sym_raw_string_begin, - STATE(2222), 1, - aux_sym__types_body_repeat2, - STATE(2223), 1, - sym_comment, - ACTIONS(4703), 29, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1617), 1, + sym__space, + ACTIONS(3279), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [65418] = 25, - 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, + ACTIONS(4856), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4858), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(4898), 1, + anon_sym_DOT, + STATE(2330), 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, + STATE(2643), 1, + sym__immediate_decimal, + ACTIONS(4860), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2594), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1619), 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, + [71587] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, - sym__entry_separator, - ACTIONS(4709), 1, - sym_raw_string_begin, - ACTIONS(4711), 1, - anon_sym_RBRACE, - STATE(2222), 1, - aux_sym__types_body_repeat2, - STATE(2225), 1, - sym_comment, - ACTIONS(4703), 29, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(3230), 1, + anon_sym_LPAREN2, + ACTIONS(3695), 1, 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, - [65554] = 5, + ACTIONS(4900), 1, + anon_sym_DOT, + ACTIONS(4902), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4904), 1, + aux_sym__immediate_decimal_token2, + STATE(2331), 1, + sym_comment, + STATE(2518), 1, + sym__immediate_decimal, + ACTIONS(1599), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4906), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2728), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1603), 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, + [71640] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4713), 1, + ACTIONS(1653), 1, + anon_sym_LPAREN2, + ACTIONS(4846), 1, + anon_sym_DOLLAR, + STATE(1291), 1, + sym__immediate_decimal, + STATE(2332), 1, + sym_comment, + ACTIONS(1659), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1730), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1290), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1617), 15, + ts_builtin_sym_end, sym__newline, - STATE(2226), 2, - aux_sym__repeat_newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [71685] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1653), 1, + anon_sym_LPAREN2, + ACTIONS(4846), 1, + anon_sym_DOLLAR, + STATE(1297), 1, + sym__immediate_decimal, + STATE(2333), 1, sym_comment, - ACTIONS(1960), 7, + ACTIONS(1659), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1730), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1296), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1661), 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, + [71730] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1653), 1, + anon_sym_LPAREN2, + ACTIONS(4846), 1, 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(1955), 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, - [65600] = 7, - ACTIONS(103), 1, + STATE(1299), 1, + sym__immediate_decimal, + STATE(2334), 1, + sym_comment, + ACTIONS(1659), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1730), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1298), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1669), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [71775] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4707), 1, - sym__entry_separator, - ACTIONS(4709), 1, - sym_raw_string_begin, - ACTIONS(4716), 1, - anon_sym_RBRACE, - STATE(2222), 1, - aux_sym__types_body_repeat2, - STATE(2227), 1, + ACTIONS(1653), 1, + anon_sym_LPAREN2, + ACTIONS(4846), 1, + anon_sym_DOLLAR, + STATE(1301), 1, + sym__immediate_decimal, + STATE(2335), 1, sym_comment, - ACTIONS(4703), 29, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1659), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1730), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1300), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1673), 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, + [71820] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3230), 1, + anon_sym_LPAREN2, + ACTIONS(3695), 1, 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, - [65650] = 4, + ACTIONS(4902), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4904), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(4908), 1, + anon_sym_DOT, + STATE(2336), 1, + sym_comment, + STATE(2727), 1, + sym__immediate_decimal, + ACTIONS(1617), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4906), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2726), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1619), 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, + [71870] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2228), 1, + STATE(2337), 1, sym_comment, - ACTIONS(1478), 3, - anon_sym_EQ, + ACTIONS(1496), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1480), 29, - anon_sym_if, - anon_sym_in, + ACTIONS(1498), 21, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -195052,34 +200135,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - 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, anon_sym_QMARK2, anon_sym_BANG, - [65693] = 4, + [71904] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2229), 1, + STATE(2338), 1, sym_comment, - ACTIONS(1470), 3, - anon_sym_EQ, + ACTIONS(1500), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1472), 29, - anon_sym_if, - anon_sym_in, + ACTIONS(1502), 21, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -195091,34 +200165,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - 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, anon_sym_QMARK2, anon_sym_BANG, - [65736] = 4, + [71938] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2230), 1, + STATE(2339), 1, sym_comment, - ACTIONS(1474), 3, - anon_sym_EQ, + ACTIONS(1504), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1476), 29, - anon_sym_if, - anon_sym_in, + ACTIONS(1506), 21, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -195130,118 +200195,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, anon_sym_QMARK2, anon_sym_BANG, - [65779] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, - sym_raw_string_begin, - STATE(2231), 1, - sym_comment, - STATE(2245), 1, - aux_sym__types_body_repeat2, - ACTIONS(4720), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4718), 27, - anon_sym_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, - 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, - anon_sym_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, - [65877] = 4, + [71972] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2233), 1, + ACTIONS(4910), 1, + aux_sym__immediate_decimal_token5, + STATE(2340), 1, sym_comment, - ACTIONS(1514), 3, - anon_sym_EQ, + ACTIONS(763), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1516), 29, - anon_sym_if, - anon_sym_in, + sym__unquoted_pattern, + ACTIONS(765), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -195253,365 +200226,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_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, - anon_sym_QMARK2, - anon_sym_BANG, - [65920] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, - sym_raw_string_begin, - STATE(2234), 1, - sym_comment, - STATE(2245), 1, - aux_sym__types_body_repeat2, - ACTIONS(4728), 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, - [65969] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, - sym_raw_string_begin, - STATE(2235), 1, - sym_comment, - STATE(2245), 1, - aux_sym__types_body_repeat2, - ACTIONS(4730), 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, - [66018] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, - sym_raw_string_begin, - STATE(2236), 1, - sym_comment, - STATE(2245), 1, - aux_sym__types_body_repeat2, - ACTIONS(4730), 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, - [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, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, - sym_raw_string_begin, - STATE(2238), 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, - [66167] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2239), 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, - 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, - 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, - 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, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4732), 1, - sym__newline, - STATE(2241), 2, - 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, - 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, - [66302] = 4, + sym_filesize_unit, + sym_duration_unit, + [72008] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(2242), 1, - sym_comment, - ACTIONS(1543), 3, - anon_sym_EQ, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + ACTIONS(1828), 1, + sym__unquoted_pattern, + ACTIONS(4912), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1545), 29, - anon_sym_if, - anon_sym_in, + ACTIONS(4916), 1, + sym_filesize_unit, + ACTIONS(4918), 1, + sym_duration_unit, + STATE(2341), 1, + sym_comment, + STATE(4762), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4914), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(884), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -195623,34 +200267,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_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, - [66345] = 4, + [72054] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2243), 1, + ACTIONS(4920), 1, + anon_sym_DOT, + ACTIONS(4922), 1, + aux_sym__immediate_decimal_token5, + STATE(2342), 1, sym_comment, - ACTIONS(1466), 3, - anon_sym_EQ, + ACTIONS(1756), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1468), 29, - anon_sym_if, - anon_sym_in, + sym__unquoted_pattern, + ACTIONS(1754), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -195662,489 +200294,259 @@ static const uint16_t 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_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, - anon_sym_QMARK2, - anon_sym_BANG, - [66388] = 4, - ACTIONS(3), 1, + [72092] = 11, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2244), 1, - sym_comment, - ACTIONS(2098), 7, + ACTIONS(1617), 1, + sym__space, + ACTIONS(3279), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, 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(2096), 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, + ACTIONS(4924), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4926), 1, + aux_sym__immediate_decimal_token2, + STATE(2343), 1, + sym_comment, + STATE(3108), 1, + sym__immediate_decimal, + ACTIONS(4860), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3107), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1619), 13, 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, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [72140] = 11, 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, + ACTIONS(1661), 1, + sym__space, + ACTIONS(3279), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, 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, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, - anon_sym_null, - ACTIONS(4587), 1, - anon_sym_DOT_DOT, - ACTIONS(4591), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, - sym_val_date, - STATE(2246), 1, + ACTIONS(4924), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4926), 1, + aux_sym__immediate_decimal_token2, + STATE(2344), 1, sym_comment, - STATE(2249), 1, - aux_sym__collection_body_repeat1, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4445), 1, - sym__collection_entry, - STATE(4928), 1, - sym_val_bool, - ACTIONS(4577), 2, - 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, - [66556] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4738), 1, + STATE(2995), 1, + sym__immediate_decimal, + ACTIONS(4860), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2992), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1663), 13, sym__newline, - STATE(2247), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 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, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [72188] = 11, ACTIONS(103), 1, anon_sym_POUND, - STATE(2248), 1, - sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 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, + ACTIONS(1669), 1, + sym__space, + ACTIONS(3279), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, 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, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, - anon_sym_null, - ACTIONS(4587), 1, - anon_sym_DOT_DOT, - ACTIONS(4591), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, - sym_val_date, - STATE(2249), 1, - aux_sym__collection_body_repeat1, - STATE(2250), 1, - sym_comment, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4441), 1, - sym__collection_entry, - STATE(4928), 1, - sym_val_bool, - ACTIONS(4577), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4589), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4239), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [66800] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2251), 1, + ACTIONS(4924), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4926), 1, + aux_sym__immediate_decimal_token2, + STATE(2345), 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, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, + STATE(3091), 1, + sym__immediate_decimal, + ACTIONS(4860), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3074), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1671), 13, sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [66842] = 6, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [72236] = 11, 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, - sym_comment, - ACTIONS(4718), 28, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1673), 1, + sym__space, + ACTIONS(3279), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [66888] = 4, + ACTIONS(4924), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4926), 1, + aux_sym__immediate_decimal_token2, + STATE(2346), 1, + sym_comment, + STATE(2994), 1, + sym__immediate_decimal, + ACTIONS(4860), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3094), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1675), 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, + [72284] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2253), 1, + ACTIONS(4928), 1, + anon_sym_QMARK2, + ACTIONS(4930), 1, + anon_sym_BANG, + STATE(2347), 1, sym_comment, - ACTIONS(2938), 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, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, + STATE(2461), 1, + sym__path_suffix, + ACTIONS(1444), 20, + anon_sym_EQ, sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT2, + [72322] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(3230), 1, + anon_sym_LPAREN2, + ACTIONS(3695), 1, 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, - [66929] = 6, - ACTIONS(3), 1, + ACTIONS(4932), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4934), 1, + aux_sym__immediate_decimal_token2, + STATE(2348), 1, + sym_comment, + STATE(2901), 1, + sym__immediate_decimal, + ACTIONS(1599), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4936), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3121), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1603), 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, + [72372] = 12, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2254), 1, + ACTIONS(1691), 1, + sym__unquoted_pattern, + ACTIONS(3230), 1, + anon_sym_LPAREN2, + ACTIONS(3695), 1, + anon_sym_DOLLAR, + ACTIONS(4932), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4934), 1, + aux_sym__immediate_decimal_token2, + STATE(2349), 1, sym_comment, - STATE(3109), 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(4783), 13, + STATE(2906), 1, + sym__immediate_decimal, + ACTIONS(1677), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4936), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3150), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1679), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196156,34 +200558,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, - [66974] = 6, - ACTIONS(3), 1, + [72422] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2255), 1, + ACTIONS(4938), 1, + anon_sym_DOT, + ACTIONS(4940), 1, + aux_sym__immediate_decimal_token5, + STATE(2350), 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, + 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, @@ -196197,32 +200588,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [67019] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [72460] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2256), 1, + ACTIONS(4942), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4944), 1, + aux_sym__immediate_decimal_token5, + STATE(2351), 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, + 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, @@ -196235,74 +200619,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [67063] = 25, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [72498] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(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, + ACTIONS(4946), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4948), 1, + aux_sym__immediate_decimal_token5, + STATE(2352), 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(2776), 1, - sym__binary_predicate_parenthesized, - STATE(2777), 1, - sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - STATE(3134), 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, - [67145] = 4, + ACTIONS(1748), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1746), 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, + [72536] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2258), 1, + STATE(2353), 1, sym_comment, - ACTIONS(1556), 2, - anon_sym_EQ, + ACTIONS(763), 2, anon_sym_DOT_DOT2, - ACTIONS(1558), 27, - anon_sym_if, - anon_sym_in, + sym__unquoted_pattern, + ACTIONS(765), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196314,103 +200674,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_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_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [67185] = 25, + sym_filesize_unit, + sym_duration_unit, + [72570] = 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(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, + STATE(2354), 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, + 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, + [72604] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2260), 1, + ACTIONS(4876), 1, + aux_sym__immediate_decimal_token5, + STATE(2355), 1, sym_comment, - STATE(3230), 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(4803), 12, + 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, @@ -196422,34 +200737,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, - [67311] = 6, + 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, + [72640] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2261), 1, + STATE(2356), 1, sym_comment, - STATE(3334), 1, - sym_redirection, - ACTIONS(4805), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4807), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(4789), 12, + 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, @@ -196461,33 +200767,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, - [67355] = 6, + 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, + [72674] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2262), 1, + STATE(2357), 1, sym_comment, - STATE(3229), 1, - sym_redirection, - ACTIONS(4805), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4807), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(4783), 12, + 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, @@ -196499,23 +200797,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, - [67399] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4809), 1, + 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, - ACTIONS(4811), 1, anon_sym_BANG, - STATE(437), 1, - sym__path_suffix, - STATE(2263), 1, + [72708] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2358), 1, sym_comment, - ACTIONS(1446), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1448), 23, - anon_sym_if, - anon_sym_in, + sym__unquoted_pattern, + ACTIONS(741), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196528,510 +200826,275 @@ static 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, - [67444] = 23, + sym_filesize_unit, + sym_duration_unit, + [72742] = 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(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(2264), 1, + STATE(2359), 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(2759), 1, - sym__binary_predicate_parenthesized, - STATE(2765), 1, - sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - 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, - [67520] = 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(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(789), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(791), 21, 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(2264), 1, - aux_sym__repeat_newline, - STATE(2265), 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(2749), 1, - sym__binary_predicate_parenthesized, - STATE(2750), 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, - [67596] = 23, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_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, + [72776] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(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(2266), 1, + ACTIONS(4950), 1, + anon_sym_DOT2, + STATE(454), 1, + sym_path, + STATE(784), 1, + sym_cell_path, + STATE(2277), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2360), 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(2718), 1, - sym__binary_predicate_parenthesized, - STATE(2719), 1, - sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - 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, - [67672] = 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(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(1880), 19, + anon_sym_if, 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(2267), 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(2672), 1, - sym__binary_predicate_parenthesized, - STATE(2673), 1, - sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - 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, - [67748] = 23, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [72816] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(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(4799), 1, + ACTIONS(4950), 1, + anon_sym_DOT2, + STATE(454), 1, + sym_path, + STATE(869), 1, + sym_cell_path, + STATE(2277), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2361), 1, + sym_comment, + ACTIONS(1872), 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, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2268), 1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [72856] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4952), 1, + aux_sym__immediate_decimal_token5, + STATE(2362), 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(2743), 1, - sym__binary_predicate, - STATE(2744), 1, - sym_where_predicate, - STATE(3161), 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, - [67824] = 23, - ACTIONS(3), 1, + ACTIONS(765), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(763), 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, + [72891] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(4956), 1, + anon_sym_GT2, + ACTIONS(4958), 1, + sym__entry_separator, + ACTIONS(4960), 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(2269), 1, + STATE(2363), 1, sym_comment, - STATE(2279), 1, - aux_sym__repeat_newline, STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2727), 1, - sym__binary_predicate_parenthesized, - STATE(2729), 1, - sym_where_predicate, - ACTIONS(1937), 2, + aux_sym__types_body_repeat2, + ACTIONS(4954), 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, - [67900] = 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, - 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(2270), 1, - sym_comment, - STATE(2280), 1, - aux_sym__repeat_newline, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2738), 1, - sym__binary_predicate_parenthesized, - STATE(2739), 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, - [67976] = 23, + aux_sym__unquoted_in_record_token1, + [72930] = 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(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(2271), 1, + ACTIONS(4962), 1, + aux_sym__immediate_decimal_token5, + STATE(2364), 1, sym_comment, - STATE(2281), 1, - aux_sym__repeat_newline, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2746), 1, - sym__binary_predicate_parenthesized, - STATE(2753), 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, - [68052] = 23, + ACTIONS(1814), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1812), 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, + [72965] = 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(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(2272), 1, + STATE(2365), 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(2754), 1, - sym__binary_predicate_parenthesized, - STATE(2755), 1, - sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - 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, - [68128] = 8, + ACTIONS(763), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(765), 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, + [72998] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1432), 1, + STATE(2366), 1, + sym_comment, + ACTIONS(789), 2, 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__unquoted_pattern, + ACTIONS(791), 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, + [73031] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4964), 1, + anon_sym_DOT, + ACTIONS(4966), 1, + aux_sym__immediate_decimal_token5, + STATE(2367), 1, sym_comment, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 22, - anon_sym_if, - anon_sym_in, + ACTIONS(1756), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1754), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -197043,517 +201106,194 @@ static const uint16_t ts_small_parse_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, - [68174] = 23, + [73068] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(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(2274), 1, + ACTIONS(1643), 1, + anon_sym_QMARK2, + ACTIONS(1645), 1, + anon_sym_BANG, + STATE(2368), 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(2771), 1, - sym__binary_predicate_parenthesized, - STATE(2772), 1, - sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - 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, - [68250] = 23, - ACTIONS(3), 1, + STATE(2488), 1, + sym__path_suffix, + ACTIONS(4970), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4968), 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, + [73107] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(4958), 1, + sym__entry_separator, + ACTIONS(4960), 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(2275), 1, + ACTIONS(4972), 1, + anon_sym_GT2, + STATE(2369), 1, sym_comment, - STATE(2289), 1, - aux_sym__repeat_newline, STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2775), 1, - sym__binary_predicate_parenthesized, - STATE(2781), 1, - sym_where_predicate, - ACTIONS(1937), 2, + aux_sym__types_body_repeat2, + ACTIONS(4954), 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, - [68326] = 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, - 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(2267), 1, - aux_sym__repeat_newline, - STATE(2276), 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(2788), 1, - sym__binary_predicate_parenthesized, - STATE(2804), 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, - [68402] = 23, - ACTIONS(3), 1, + aux_sym__unquoted_in_record_token1, + [73146] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(3734), 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(2277), 1, + ACTIONS(4974), 1, + sym__entry_separator, + STATE(2370), 2, sym_comment, - STATE(2278), 1, - aux_sym__repeat_newline, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2646), 1, - sym__binary_predicate_parenthesized, - STATE(2680), 1, - sym_where_predicate, - ACTIONS(1937), 2, + aux_sym__types_body_repeat2, + ACTIONS(3729), 19, 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, - [68478] = 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_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, - 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(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2278), 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(2676), 1, - sym__binary_predicate_parenthesized, - STATE(2677), 1, - sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - 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, - [68554] = 23, + aux_sym__unquoted_in_record_token1, + [73181] = 13, 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(1615), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3329), 1, + anon_sym_LPAREN2, + ACTIONS(3855), 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(2279), 1, + ACTIONS(4977), 1, + anon_sym_DOT, + ACTIONS(4979), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4981), 1, + aux_sym__immediate_decimal_token2, + STATE(2371), 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(2649), 1, - sym__binary_predicate_parenthesized, - STATE(2650), 1, - sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - 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, - [68630] = 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(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, + STATE(2602), 1, + sym__immediate_decimal, + ACTIONS(1603), 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(2280), 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(2654), 1, - sym__binary_predicate_parenthesized, - STATE(2655), 1, - sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, + ACTIONS(4983), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2873), 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, - [68706] = 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(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(1599), 9, + anon_sym_EQ, 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(2281), 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(2658), 1, - sym__binary_predicate_parenthesized, - STATE(2659), 1, - sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - 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, - [68782] = 23, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [73232] = 8, 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, - ACTIONS(4821), 1, - anon_sym_LBRACE, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(2282), 1, + ACTIONS(1689), 1, + anon_sym_DOT_DOT2, + ACTIONS(4985), 1, + anon_sym_DOT2, + STATE(791), 1, + sym_path, + STATE(957), 1, + sym_cell_path, + STATE(2372), 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(2823), 1, - sym__binary_predicate, - STATE(2827), 1, - sym_where_predicate, - STATE(3287), 1, - sym_val_closure, - 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, - [68858] = 11, + STATE(2411), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1687), 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, + [73273] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(4823), 1, - anon_sym_DOT, - STATE(2283), 1, + ACTIONS(1450), 1, + anon_sym_DOT_DOT2, + ACTIONS(4985), 1, + anon_sym_DOT2, + STATE(443), 1, + sym_cell_path, + STATE(791), 1, + sym_path, + STATE(2373), 1, sym_comment, - STATE(2409), 1, - sym__immediate_decimal, - ACTIONS(4825), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4827), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2503), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 16, + STATE(2411), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1452), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -197565,345 +201305,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [73314] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(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(2284), 1, + ACTIONS(4987), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4989), 1, + aux_sym__immediate_decimal_token5, + STATE(2374), 1, sym_comment, - STATE(2288), 1, - aux_sym__repeat_newline, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2730), 1, - sym__binary_predicate_parenthesized, - STATE(2731), 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, - [68986] = 23, + ACTIONS(1748), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1746), 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, + [73351] = 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(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(2285), 1, + STATE(2375), 1, sym_comment, - STATE(2294), 1, - aux_sym__repeat_newline, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2732), 1, - sym__binary_predicate_parenthesized, - STATE(2740), 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, - [69062] = 23, + 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, + [73384] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4991), 1, + anon_sym_QMARK2, + ACTIONS(4993), 1, + anon_sym_BANG, + STATE(894), 1, + sym__path_suffix, + STATE(2376), 1, + sym_comment, + ACTIONS(1442), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1444), 17, + ts_builtin_sym_end, 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(2266), 1, - aux_sym__repeat_newline, - STATE(2286), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [73423] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4940), 1, + aux_sym__immediate_decimal_token5, + STATE(2377), 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(2741), 1, - sym__binary_predicate_parenthesized, - STATE(2742), 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, - [69138] = 23, - ACTIONS(3), 1, + 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, + [73458] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(3230), 1, + anon_sym_LPAREN2, + ACTIONS(3695), 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(2272), 1, - aux_sym__repeat_newline, - STATE(2287), 1, + ACTIONS(4995), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4997), 1, + aux_sym__immediate_decimal_token2, + STATE(2378), 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(2747), 1, - sym__binary_predicate_parenthesized, - STATE(2748), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, + STATE(3149), 1, + sym__immediate_decimal, + ACTIONS(1673), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4906), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3148), 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, - [69214] = 23, - ACTIONS(3), 1, + ACTIONS(1675), 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, + [73505] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(3230), 1, + anon_sym_LPAREN2, + ACTIONS(3695), 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(2288), 1, + ACTIONS(4995), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4997), 1, + aux_sym__immediate_decimal_token2, + STATE(2379), 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(2697), 1, - sym__binary_predicate_parenthesized, - STATE(2698), 1, - sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, + STATE(3145), 1, + sym__immediate_decimal, + ACTIONS(1661), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4906), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3144), 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, - [69290] = 23, - ACTIONS(3), 1, + ACTIONS(1663), 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, + [73552] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(3230), 1, + anon_sym_LPAREN2, + ACTIONS(3695), 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(4995), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4997), 1, + aux_sym__immediate_decimal_token2, + STATE(2380), 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, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, + STATE(3119), 1, + sym__immediate_decimal, + ACTIONS(1617), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4906), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3118), 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, - [69366] = 7, + ACTIONS(1619), 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, + [73599] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1458), 1, + ACTIONS(1683), 1, anon_sym_DOT_DOT2, - ACTIONS(4813), 1, + ACTIONS(4985), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(791), 1, sym_path, - STATE(2290), 1, + STATE(916), 1, + sym_cell_path, + STATE(2381), 1, sym_comment, - STATE(2291), 1, + STATE(2411), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 23, - anon_sym_if, - anon_sym_in, + ACTIONS(1681), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -197915,31 +201568,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_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, - [69410] = 6, - ACTIONS(3), 1, + [73640] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1524), 1, + ACTIONS(4999), 1, + anon_sym_DOT, + ACTIONS(5001), 1, + aux_sym__immediate_decimal_token5, + STATE(2382), 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, - ACTIONS(4829), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2291), 2, + sym__unquoted_pattern, + [73677] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3230), 1, + anon_sym_LPAREN2, + ACTIONS(3695), 1, + anon_sym_DOLLAR, + ACTIONS(4995), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4997), 1, + aux_sym__immediate_decimal_token2, + STATE(2383), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 23, - anon_sym_if, - anon_sym_in, + STATE(3147), 1, + sym__immediate_decimal, + ACTIONS(1669), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4906), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3146), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1671), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -197951,33 +201640,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_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, - [69452] = 8, - ACTIONS(3), 1, + [73724] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1681), 1, - anon_sym_DOT_DOT2, - ACTIONS(4813), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(465), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2292), 1, + ACTIONS(5003), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5005), 1, + aux_sym__immediate_decimal_token5, + STATE(2384), 1, sym_comment, - ACTIONS(1679), 22, - anon_sym_if, + ACTIONS(741), 7, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -197989,33 +201669,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_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, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [73761] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1643), 1, + ACTIONS(4958), 1, + sym__entry_separator, + ACTIONS(4960), 1, + sym_raw_string_begin, + ACTIONS(5007), 1, + anon_sym_GT2, + STATE(2370), 1, + aux_sym__types_body_repeat2, + STATE(2385), 1, + sym_comment, + ACTIONS(4954), 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, + [73800] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(884), 1, + sym__space, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + ACTIONS(5009), 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, + ACTIONS(5013), 1, + sym_filesize_unit, + ACTIONS(5015), 1, + sym_duration_unit, + ACTIONS(5017), 1, + sym__unquoted_pattern, + STATE(2386), 1, sym_comment, - ACTIONS(1641), 22, - anon_sym_if, + STATE(4671), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5011), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(858), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198028,134 +201738,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_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [69544] = 23, - ACTIONS(3), 1, + [73847] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(4958), 1, + sym__entry_separator, + ACTIONS(4960), 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, - sym_comment, + ACTIONS(5019), 1, + anon_sym_GT2, 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, + aux_sym__types_body_repeat2, + STATE(2387), 1, + sym_comment, + ACTIONS(4954), 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, - 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, - 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, - 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, + aux_sym__unquoted_in_record_token1, + [73886] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1700), 1, - anon_sym_BANG, - STATE(2296), 1, + ACTIONS(4922), 1, + aux_sym__immediate_decimal_token5, + STATE(2388), 1, sym_comment, - ACTIONS(1438), 2, + ACTIONS(1756), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1440), 23, - anon_sym_if, - anon_sym_in, + sym__unquoted_pattern, + ACTIONS(1754), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198168,38 +201794,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_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, - [69735] = 10, - ACTIONS(3), 1, + [73921] = 4, + ACTIONS(103), 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(2389), 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(765), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(763), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198213,35 +201827,53 @@ 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, - [69784] = 11, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [73953] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1651), 1, + ACTIONS(1691), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3329), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(3855), 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(5021), 1, aux_sym__immediate_decimal_token1, + ACTIONS(5023), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4838), 2, + STATE(2390), 1, + sym_comment, + STATE(3069), 1, + sym__immediate_decimal, + ACTIONS(1679), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5025), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2580), 2, + STATE(3343), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1596), 15, - ts_builtin_sym_end, + ACTIONS(1677), 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, + [74001] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2391), 1, + sym_comment, + ACTIONS(1902), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1900), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198253,32 +201885,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69835] = 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(2299), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74033] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + anon_sym_DOT2, + STATE(2392), 1, sym_comment, - STATE(2533), 1, - sym__immediate_decimal, - ACTIONS(4840), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4842), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 16, + STATE(2443), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2549), 1, + sym_path, + STATE(2638), 1, + sym_cell_path, + ACTIONS(1452), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1450), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198292,32 +201924,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, - [69884] = 10, + anon_sym_DOT_DOT2, + [74073] = 5, 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(2300), 1, + ACTIONS(5029), 1, + aux_sym__immediate_decimal_token5, + STATE(2393), 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(1814), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1812), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198329,35 +201948,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, - [69933] = 10, - 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, - sym_comment, - STATE(2603), 1, - sym__immediate_decimal, - ACTIONS(4844), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74107] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5031), 1, 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(5033), 1, + aux_sym__immediate_decimal_token5, + STATE(2394), 1, + sym_comment, + ACTIONS(1746), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1748), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198369,131 +201980,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, - [69981] = 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(2302), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2563), 1, - sym__where_predicate_lhs, - STATE(2854), 1, - sym__binary_predicate, - STATE(2855), 1, - sym_where_predicate, - ACTIONS(2174), 2, - 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_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(2303), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2563), 1, - sym__where_predicate_lhs, - STATE(2861), 1, - sym__binary_predicate, - STATE(2862), 1, - sym_where_predicate, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(2221), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2831), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70121] = 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [74143] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - STATE(2304), 1, + ACTIONS(5035), 1, + anon_sym_BANG, + STATE(2395), 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, - ts_builtin_sym_end, + ACTIONS(1458), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198505,79 +202004,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [70169] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2305), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2798), 1, - sym__binary_predicate, - STATE(2799), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70239] = 9, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT2, + [74175] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(722), 1, - sym__immediate_decimal, - STATE(2306), 1, + ACTIONS(5037), 1, + anon_sym_DOT_DOT2, + STATE(2396), 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(5039), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2011), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198594,27 +202043,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70285] = 9, + [74213] = 7, 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(1860), 1, + anon_sym_DOT2, + STATE(414), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(454), 1, + sym_path, + STATE(2397), 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(5043), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5041), 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, + [74251] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5035), 1, + anon_sym_QMARK2, + STATE(2398), 1, + sym_comment, + ACTIONS(1458), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198626,32 +202094,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_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [70331] = 9, - ACTIONS(3), 1, + anon_sym_DOT2, + [74283] = 7, + ACTIONS(103), 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, + ACTIONS(5045), 1, + anon_sym_QMARK2, + ACTIONS(5047), 1, + anon_sym_BANG, + STATE(2399), 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, + STATE(2568), 1, + sym__path_suffix, + ACTIONS(1444), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1442), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198665,30 +202131,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [70377] = 9, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [74321] = 4, 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(2309), 1, + STATE(2400), 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(1748), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1746), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198705,181 +202158,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70423] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2310), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2800), 1, - sym__binary_predicate, - STATE(2801), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70493] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2311), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2802), 1, - sym__binary_predicate, - STATE(2803), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70563] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2312), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2805), 1, - sym__binary_predicate, - STATE(2808), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70633] = 13, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74353] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, + STATE(2401), 1, + sym_comment, + ACTIONS(741), 6, sym__space, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4848), 1, - anon_sym_DOT, - ACTIONS(4850), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4852), 1, - aux_sym__immediate_decimal_token2, - STATE(2313), 1, - sym_comment, - STATE(2509), 1, - sym__immediate_decimal, - ACTIONS(4854), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2608), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 13, + 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, @@ -198893,30 +202187,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [70687] = 10, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [74385] = 8, + ACTIONS(103), 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(5027), 1, + anon_sym_DOT2, + STATE(2402), 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, + STATE(2443), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2549), 1, + sym_path, + STATE(2598), 1, + sym_cell_path, + ACTIONS(1687), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1689), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198928,316 +202218,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - 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, - 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_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [74425] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(4958), 1, + sym__entry_separator, + ACTIONS(4960), 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, - 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, - 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, + aux_sym__types_body_repeat2, + STATE(2403), 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, + ACTIONS(4954), 18, 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, - ACTIONS(3), 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_record_token1, + [74461] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4856), 1, + ACTIONS(5049), 1, anon_sym_DOT, - ACTIONS(4858), 1, + ACTIONS(5051), 1, aux_sym__immediate_decimal_token5, - STATE(2321), 1, + STATE(2404), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(1754), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1756), 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(741), 21, + [74497] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5053), 1, + sym__newline, + STATE(2405), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3746), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3748), 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, + [74531] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern, + ACTIONS(5056), 1, + anon_sym_DOT_DOT2, + STATE(2406), 1, + sym_comment, + ACTIONS(5058), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2021), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199254,24 +202341,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + [74569] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5001), 1, + aux_sym__immediate_decimal_token5, + STATE(2407), 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, - [71195] = 6, + 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, + [74603] = 4, 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, + STATE(2408), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(1814), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 21, + ACTIONS(1812), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199291,29 +202398,87 @@ 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, - [71235] = 9, + [74635] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1615), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3329), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(3855), 1, anon_sym_DOLLAR, - STATE(1342), 1, - sym__immediate_decimal, - STATE(2323), 1, + ACTIONS(5021), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5023), 1, + aux_sym__immediate_decimal_token2, + STATE(2409), 1, sym_comment, - ACTIONS(1657), 2, + STATE(3000), 1, + sym__immediate_decimal, + ACTIONS(1603), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5025), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1341), 2, + STATE(3360), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1675), 15, + ACTIONS(1599), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [74683] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1860), 1, + anon_sym_DOT2, + STATE(454), 1, + sym_path, + STATE(2397), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2410), 1, + sym_comment, + ACTIONS(5062), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5060), 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, + [74721] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1515), 1, + anon_sym_DOT_DOT2, + ACTIONS(4985), 1, + anon_sym_DOT2, + STATE(791), 1, + sym_path, + STATE(2411), 1, + sym_comment, + STATE(2421), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1517), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -199329,17 +202494,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71280] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74759] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4864), 1, - aux_sym__immediate_decimal_token5, - STATE(2324), 1, + ACTIONS(4950), 1, + anon_sym_DOT2, + STATE(454), 1, + sym_path, + STATE(938), 1, + sym_cell_path, + STATE(2277), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2412), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 21, + ACTIONS(1892), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199352,41 +202522,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, - [71317] = 12, - ACTIONS(103), 1, + [74797] = 7, + 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(4950), 1, + anon_sym_DOT2, + STATE(454), 1, + sym_path, + STATE(901), 1, + sym_cell_path, + STATE(2277), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2413), 1, 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, + ACTIONS(1862), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199399,36 +202553,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_LBRACE, anon_sym_RBRACE, - [71368] = 13, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [74835] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3251), 1, + ACTIONS(1766), 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(5064), 1, + anon_sym_DOT_DOT2, + ACTIONS(5068), 1, + sym_filesize_unit, + ACTIONS(5070), 1, + sym_duration_unit, + ACTIONS(5072), 1, + sym__unquoted_pattern, + STATE(2414), 1, sym_comment, - STATE(2560), 1, - sym__immediate_decimal, - ACTIONS(1596), 2, + STATE(4836), 1, + sym__expr_parenthesized_immediate, + ACTIONS(884), 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(5066), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(858), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199440,20 +202593,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, - [71421] = 6, + [74881] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4876), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4878), 1, - aux_sym__immediate_decimal_token5, - STATE(2327), 1, + ACTIONS(4950), 1, + anon_sym_DOT2, + STATE(454), 1, + sym_path, + STATE(930), 1, + sym_cell_path, + STATE(2277), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2415), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 20, - ts_builtin_sym_end, + ACTIONS(1888), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199465,28 +202618,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + [74919] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5074), 1, + aux_sym__immediate_decimal_token5, + STATE(2416), 1, + sym_comment, + ACTIONS(765), 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, - [71460] = 6, + ACTIONS(763), 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, + [74953] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4880), 1, - anon_sym_DOT, - ACTIONS(4882), 1, - aux_sym__immediate_decimal_token5, - STATE(2328), 1, + ACTIONS(4950), 1, + anon_sym_DOT2, + STATE(454), 1, + sym_path, + STATE(940), 1, + sym_cell_path, + STATE(2277), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2417), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 20, - ts_builtin_sym_end, + ACTIONS(1856), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199498,40 +202678,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + [74991] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2418), 1, + sym_comment, + ACTIONS(791), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71499] = 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, - anon_sym_DOLLAR, - ACTIONS(4884), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4886), 1, - aux_sym__immediate_decimal_token2, - STATE(2329), 1, - sym_comment, - STATE(2713), 1, - sym__immediate_decimal, - ACTIONS(4888), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3013), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 13, + ACTIONS(789), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199545,32 +202710,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [71550] = 12, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75023] = 4, 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, + STATE(2419), 1, + sym_comment, + ACTIONS(3744), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3742), 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, + [75055] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5076), 1, + anon_sym_DOT, + ACTIONS(5078), 1, + aux_sym__immediate_decimal_token5, + STATE(2420), 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, - ACTIONS(4884), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4886), 1, - aux_sym__immediate_decimal_token2, - STATE(2330), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75091] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1508), 1, + anon_sym_DOT_DOT2, + ACTIONS(5080), 1, + anon_sym_DOT2, + STATE(791), 1, + sym_path, + STATE(2421), 2, 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, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199582,29 +202795,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [71601] = 10, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75127] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(4890), 1, + ACTIONS(5083), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5085), 1, + aux_sym__immediate_decimal_token5, + STATE(2422), 1, + sym_comment, + ACTIONS(739), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(4894), 1, sym_filesize_unit, - ACTIONS(4896), 1, sym_duration_unit, - STATE(2331), 1, - sym_comment, - STATE(4739), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4892), 2, + 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, - ACTIONS(968), 16, + [75163] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4966), 1, + aux_sym__immediate_decimal_token5, + STATE(2423), 1, + sym_comment, + ACTIONS(1756), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1754), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199616,33 +202853,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71648] = 9, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75197] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(3329), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(3855), 1, anon_sym_DOLLAR, - STATE(1337), 1, - sym__immediate_decimal, - STATE(2332), 1, + ACTIONS(4979), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4981), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5087), 1, + anon_sym_DOT, + STATE(2424), 1, sym_comment, - ACTIONS(1657), 2, + STATE(2869), 1, + sym__immediate_decimal, + ACTIONS(1619), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(4983), 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(1336), 2, + STATE(2868), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1667), 15, - ts_builtin_sym_end, + ACTIONS(1617), 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, + [75245] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + anon_sym_DOT2, + STATE(2425), 1, + sym_comment, + STATE(2443), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2549), 1, + sym_path, + STATE(2626), 1, + sym_cell_path, + ACTIONS(1681), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1683), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199654,31 +202924,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [71693] = 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [75285] = 4, ACTIONS(3), 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, + STATE(2426), 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, + ACTIONS(2933), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(2935), 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, + [75316] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2427), 1, + sym_comment, + ACTIONS(741), 7, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199690,31 +202979,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [71738] = 9, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75347] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(3329), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(3855), 1, anon_sym_DOLLAR, - STATE(1340), 1, - sym__immediate_decimal, - STATE(2334), 1, + ACTIONS(5089), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5091), 1, + aux_sym__immediate_decimal_token2, + STATE(2428), 1, sym_comment, - ACTIONS(1657), 2, + STATE(3355), 1, + sym__immediate_decimal, + ACTIONS(1619), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(4983), 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, + STATE(3351), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1671), 15, + ACTIONS(1617), 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, + [75392] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2429), 1, + sym_comment, + ACTIONS(765), 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(763), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199726,20 +203040,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, - [71783] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75423] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4858), 1, - aux_sym__immediate_decimal_token5, - STATE(2335), 1, - sym_comment, - ACTIONS(739), 2, + ACTIONS(884), 1, + sym__space, + ACTIONS(4149), 1, anon_sym_DOT_DOT2, + ACTIONS(5013), 1, + sym_filesize_unit, + ACTIONS(5015), 1, + sym_duration_unit, + ACTIONS(5017), 1, sym__unquoted_pattern, - ACTIONS(741), 21, + STATE(2430), 1, + sym_comment, + ACTIONS(4151), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(858), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199753,23 +203074,72 @@ 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, + [75464] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2431), 1, + sym_comment, + ACTIONS(791), 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, - [71820] = 4, + ACTIONS(789), 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, + [75495] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5093), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5095), 1, + aux_sym__immediate_decimal_token5, + STATE(2432), 1, + sym_comment, + ACTIONS(1746), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1748), 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, + [75530] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2336), 1, + STATE(2433), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(1748), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 21, + ACTIONS(1746), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199781,29 +203151,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71854] = 6, - ACTIONS(3), 1, + [75561] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4898), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4900), 1, + ACTIONS(5097), 1, + anon_sym_DOT, + ACTIONS(5099), 1, aux_sym__immediate_decimal_token5, - STATE(2337), 1, + STATE(2434), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(1754), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1756), 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(1726), 19, + [75596] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2435), 1, + sym_comment, + ACTIONS(1529), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1527), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199817,33 +203209,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [71892] = 10, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [75627] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, + ACTIONS(1615), 1, sym__unquoted_pattern, - ACTIONS(4902), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, anon_sym_DOT_DOT2, - ACTIONS(4906), 1, - sym_filesize_unit, - ACTIONS(4908), 1, - sym_duration_unit, - STATE(2338), 1, + STATE(2436), 1, sym_comment, - STATE(4775), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4904), 2, + ACTIONS(5103), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(968), 15, + ACTIONS(2011), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -199859,15 +203243,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71938] = 4, - ACTIONS(3), 1, + [75664] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2339), 1, + STATE(2437), 1, sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(851), 21, + ACTIONS(1498), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1496), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199881,41 +203266,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71972] = 12, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [75695] = 7, 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, + ACTIONS(5105), 1, + anon_sym_QMARK2, + ACTIONS(5107), 1, + anon_sym_BANG, + STATE(2438), 1, sym_comment, - STATE(2705), 1, - sym__immediate_decimal, - ACTIONS(1582), 2, + STATE(2625), 1, + sym__path_suffix, + ACTIONS(1444), 4, 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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1442), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199927,30 +203298,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, - [72022] = 11, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [75732] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, + STATE(2439), 1, + sym_comment, + ACTIONS(1502), 3, 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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1500), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [75763] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2440), 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, + ACTIONS(1506), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1504), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199964,15 +203350,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72070] = 4, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [75794] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2342), 1, + STATE(2441), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(1814), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 21, + ACTIONS(1812), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199984,40 +203375,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, - sym_filesize_unit, - sym_duration_unit, - [72104] = 11, - ACTIONS(103), 1, + [75825] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1667), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4912), 1, + ACTIONS(1748), 1, + sym__unquoted_pattern, + ACTIONS(5109), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, - aux_sym__immediate_decimal_token2, - STATE(2343), 1, + ACTIONS(5111), 1, + aux_sym__immediate_decimal_token5, + STATE(2442), 1, sym_comment, - STATE(3008), 1, - sym__immediate_decimal, - ACTIONS(4854), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3006), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1669), 13, + ACTIONS(1746), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200031,30 +203406,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72152] = 11, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [75860] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1671), 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(2344), 1, + ACTIONS(5027), 1, + anon_sym_DOT2, + STATE(2443), 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, + STATE(2444), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2549), 1, + sym_path, + ACTIONS(1517), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1515), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200068,30 +203439,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72200] = 11, + anon_sym_DOT_DOT2, + [75897] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1675), 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(2345), 1, + ACTIONS(5113), 1, + anon_sym_DOT2, + STATE(2549), 1, + sym_path, + STATE(2444), 2, sym_comment, - STATE(3012), 1, - sym__immediate_decimal, - ACTIONS(4854), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3011), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 13, + 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, @@ -200105,33 +203468,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72248] = 12, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + [75932] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 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(2346), 1, + STATE(2445), 1, sym_comment, - STATE(2875), 1, - sym__immediate_decimal, - ACTIONS(1596), 2, + ACTIONS(1902), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1900), 18, ts_builtin_sym_end, - sym__space, - ACTIONS(4920), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3199), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200143,18 +203490,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, - [72298] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75963] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4922), 1, + ACTIONS(1756), 1, + sym__unquoted_pattern, + ACTIONS(5116), 1, + anon_sym_DOT, + ACTIONS(5118), 1, aux_sym__immediate_decimal_token5, - STATE(2347), 1, + STATE(2446), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 20, - ts_builtin_sym_end, + ACTIONS(1754), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200166,27 +203519,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_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, + [75998] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5078), 1, + aux_sym__immediate_decimal_token5, + STATE(2447), 1, + sym_comment, + ACTIONS(747), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [72334] = 6, - ACTIONS(3), 1, + 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, + [76031] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4924), 1, - anon_sym_DOT, - ACTIONS(4926), 1, + ACTIONS(5120), 1, + anon_sym_DOT2, + STATE(2448), 1, + sym_comment, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2611), 1, + sym_path, + STATE(2790), 1, + sym_cell_path, + ACTIONS(1452), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1450), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + [76070] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5051), 1, aux_sym__immediate_decimal_token5, - STATE(2348), 1, + STATE(2449), 1, + sym_comment, + ACTIONS(1754), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1756), 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, + [76103] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3329), 1, + anon_sym_LPAREN2, + ACTIONS(3855), 1, + anon_sym_DOLLAR, + ACTIONS(5089), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5091), 1, + aux_sym__immediate_decimal_token2, + STATE(2450), 1, + sym_comment, + STATE(3333), 1, + sym__immediate_decimal, + ACTIONS(1663), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(4983), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3332), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1661), 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, + [76148] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2170), 1, + anon_sym_BANG, + STATE(2451), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1456), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 19, + anon_sym_DOT2, + ACTIONS(1458), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200198,64 +203669,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [72372] = 7, + [76181] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(724), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2349), 1, + ACTIONS(3329), 1, + anon_sym_LPAREN2, + ACTIONS(3855), 1, + anon_sym_DOLLAR, + ACTIONS(5089), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5091), 1, + aux_sym__immediate_decimal_token2, + STATE(2452), 1, sym_comment, - ACTIONS(1862), 19, - anon_sym_if, + STATE(3337), 1, + sym__immediate_decimal, + ACTIONS(1671), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(4983), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3335), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1669), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [72412] = 6, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [76226] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4930), 1, + ACTIONS(3329), 1, + anon_sym_LPAREN2, + ACTIONS(3855), 1, + anon_sym_DOLLAR, + ACTIONS(5089), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4932), 1, + ACTIONS(5091), 1, + aux_sym__immediate_decimal_token2, + STATE(2453), 1, + sym_comment, + STATE(3339), 1, + sym__immediate_decimal, + ACTIONS(1675), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(4983), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3338), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1673), 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, + [76271] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5122), 1, aux_sym__immediate_decimal_token5, - STATE(2350), 1, + STATE(2454), 1, sym_comment, - ACTIONS(749), 6, + ACTIONS(1812), 4, 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(1814), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200271,56 +203770,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [72450] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(735), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2351), 1, - sym_comment, - ACTIONS(1878), 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, - [72490] = 6, + [76304] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4934), 1, - anon_sym_DOT, - ACTIONS(4936), 1, - aux_sym__immediate_decimal_token5, - STATE(2352), 1, + STATE(2455), 1, sym_comment, - ACTIONS(741), 6, + ACTIONS(1521), 3, 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(1519), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200335,34 +203794,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [72528] = 12, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [76335] = 8, 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(5120), 1, + anon_sym_DOT2, + STATE(2456), 1, sym_comment, - STATE(2894), 1, - sym__immediate_decimal, - ACTIONS(1631), 2, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2611), 1, + sym_path, + STATE(2817), 1, + sym_cell_path, + ACTIONS(1681), 4, ts_builtin_sym_end, sym__space, - ACTIONS(4920), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3138), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1683), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200374,18 +203827,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, - [72578] = 5, + anon_sym_DOT_DOT2, + [76374] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4882), 1, + ACTIONS(5124), 1, aux_sym__immediate_decimal_token5, - STATE(2354), 1, + STATE(2457), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(763), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 20, - ts_builtin_sym_end, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(765), 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, + [76407] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2458), 1, + sym_comment, + ACTIONS(1535), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200397,24 +203874,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + 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, + [76436] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5126), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(5128), 1, + anon_sym_DOT_DOT2, + ACTIONS(5132), 1, sym_filesize_unit, + ACTIONS(5134), 1, sym_duration_unit, - [72614] = 4, - ACTIONS(3), 1, + ACTIONS(5136), 1, + sym__unquoted_pattern_in_record, + STATE(2459), 1, + sym_comment, + STATE(4773), 1, + sym__expr_parenthesized_immediate, + ACTIONS(858), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5130), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(884), 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, + [76481] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2355), 1, + STATE(2460), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 20, - ts_builtin_sym_end, + 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, @@ -200426,39 +203937,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, - [72647] = 11, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [76512] = 3, + 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(2356), 1, + STATE(2461), 1, sym_comment, - STATE(3132), 1, - sym__immediate_decimal, - ACTIONS(1675), 2, - ts_builtin_sym_end, - 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(1539), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200470,24 +203961,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, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT2, + [76541] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4942), 1, - anon_sym_DOT, - ACTIONS(4944), 1, - aux_sym__immediate_decimal_token5, - STATE(2357), 1, + STATE(2462), 1, sym_comment, - ACTIONS(741), 7, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 13, + ACTIONS(1543), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200499,33 +203987,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_DOT_DOT2, - sym__unquoted_pattern, - [72731] = 11, + 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, + [76570] = 8, 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(5120), 1, + anon_sym_DOT2, + STATE(2463), 1, sym_comment, - STATE(3195), 1, - sym__immediate_decimal, - ACTIONS(1582), 2, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2611), 1, + sym_path, + STATE(2803), 1, + sym_cell_path, + ACTIONS(1687), 4, 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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1689), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200537,21 +204025,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, - [72778] = 7, + anon_sym_DOT_DOT2, + [76609] = 7, 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, - sym_comment, - ACTIONS(1446), 2, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern, + ACTIONS(5138), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1448), 17, + STATE(2464), 1, + sym_comment, + ACTIONS(5140), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2021), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200567,19 +204056,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [72817] = 5, + [76646] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4926), 1, - aux_sym__immediate_decimal_token5, - STATE(2360), 1, - sym_comment, - ACTIONS(1738), 2, + ACTIONS(5144), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 19, + STATE(2465), 1, + sym_comment, + ACTIONS(5146), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5142), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200596,94 +204083,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + [76678] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2466), 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, - [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, + [76708] = 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(2467), 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(1498), 4, + ts_builtin_sym_end, 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(1496), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200695,24 +204131,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, - [72973] = 8, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [76738] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1681), 1, - anon_sym_DOT_DOT2, - ACTIONS(4971), 1, + ACTIONS(5148), 1, anon_sym_DOT2, - STATE(783), 1, + STATE(791), 1, sym_path, - STATE(932), 1, + STATE(1335), 1, sym_cell_path, - STATE(2364), 1, - sym_comment, - STATE(2387), 1, + STATE(2411), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1679), 17, + STATE(2468), 1, + sym_comment, + ACTIONS(1862), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200728,21 +204164,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73014] = 6, + [76774] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4973), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4975), 1, + ACTIONS(1756), 1, + sym__unquoted_pattern, + ACTIONS(5150), 1, + anon_sym_DOT, + ACTIONS(5152), 1, aux_sym__immediate_decimal_token5, - STATE(2365), 1, + STATE(2469), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 18, + ACTIONS(1754), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200759,19 +204192,17 @@ 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, - [73051] = 5, - ACTIONS(3), 1, + [76808] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4977), 1, - aux_sym__immediate_decimal_token5, - STATE(2366), 1, + STATE(2470), 1, sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 19, + ACTIONS(1502), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1500), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200783,31 +204214,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_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_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [76838] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2471), 1, + sym_comment, + ACTIONS(1506), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73086] = 8, + ACTIONS(1504), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [76868] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1643), 1, - anon_sym_DOT_DOT2, - ACTIONS(4971), 1, + ACTIONS(958), 1, + sym_raw_string_begin, + ACTIONS(3242), 1, + anon_sym_DQUOTE, + ACTIONS(3244), 1, + anon_sym_SQUOTE, + ACTIONS(3246), 1, + anon_sym_BQUOTE, + ACTIONS(3248), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3250), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3693), 1, + anon_sym_LPAREN, + ACTIONS(3695), 1, + anon_sym_DOLLAR, + ACTIONS(5154), 1, + sym__unquoted_naive, + STATE(2472), 1, + sym_comment, + STATE(3155), 1, + sym__inter_single_quotes, + STATE(3156), 1, + sym__inter_double_quotes, + STATE(2501), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3169), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [76920] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5120), 1, anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(935), 1, - sym_cell_path, - STATE(2367), 1, + STATE(2473), 1, sym_comment, - STATE(2387), 1, + STATE(2478), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1641), 17, + STATE(2611), 1, + sym_path, + ACTIONS(1517), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1515), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200819,29 +204309,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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73127] = 6, + anon_sym_DOT_DOT2, + [76956] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4979), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4981), 1, - aux_sym__immediate_decimal_token5, - STATE(2368), 1, + STATE(2474), 1, sym_comment, - ACTIONS(749), 7, + ACTIONS(1529), 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(747), 13, + ACTIONS(1527), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200854,21 +204333,29 @@ 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, - [73164] = 6, - ACTIONS(3), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [76986] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4983), 1, - anon_sym_DOT, - ACTIONS(4985), 1, - aux_sym__immediate_decimal_token5, - STATE(2369), 1, - sym_comment, - ACTIONS(1738), 2, + ACTIONS(4149), 1, anon_sym_DOT_DOT2, + ACTIONS(5068), 1, + sym_filesize_unit, + ACTIONS(5070), 1, + sym_duration_unit, + ACTIONS(5072), 1, sym__unquoted_pattern, - ACTIONS(1736), 18, + STATE(2475), 1, + sym_comment, + ACTIONS(884), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4151), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(858), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200880,59 +204367,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73201] = 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, - anon_sym_DOT2, - [73240] = 5, + [77026] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4936), 1, - aux_sym__immediate_decimal_token5, - STATE(2371), 1, + STATE(2476), 1, sym_comment, - ACTIONS(741), 6, + ACTIONS(1746), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 15, + ACTIONS(1748), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200948,188 +204393,52 @@ static const uint16_t ts_small_parse_table[] = { 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, + [77056] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4995), 1, - anon_sym_QMARK2, - ACTIONS(4997), 1, - anon_sym_BANG, - STATE(2374), 1, + ACTIONS(5156), 1, + anon_sym_DOT2, + STATE(2477), 1, sym_comment, - STATE(2476), 1, - sym__path_suffix, - ACTIONS(1446), 3, + STATE(2529), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2725), 1, + sym_path, + STATE(2930), 1, + sym_cell_path, + ACTIONS(1689), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1448), 16, + ACTIONS(1687), 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, - 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, + [77094] = 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(2377), 1, + ACTIONS(5158), 1, + anon_sym_DOT2, + STATE(2611), 1, + sym_path, + STATE(2478), 2, sym_comment, - STATE(3111), 1, - sym__immediate_decimal, - ACTIONS(1667), 2, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 4, 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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1508), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201141,35 +204450,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, - [73511] = 13, + anon_sym_DOT_DOT2, + [77128] = 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(5001), 1, - anon_sym_DOT, - ACTIONS(5003), 1, + ACTIONS(5161), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5005), 1, - aux_sym__immediate_decimal_token2, - STATE(2378), 1, + ACTIONS(5163), 1, + aux_sym__immediate_decimal_token5, + STATE(2479), 1, sym_comment, - STATE(2637), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, + ACTIONS(1748), 4, 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_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1746), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -201177,18 +204473,22 @@ 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, - [73562] = 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77162] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2379), 1, - sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, + ACTIONS(1814), 1, sym__unquoted_pattern, - ACTIONS(851), 20, - ts_builtin_sym_end, + ACTIONS(5165), 1, + aux_sym__immediate_decimal_token5, + STATE(2480), 1, + sym_comment, + ACTIONS(1812), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201200,29 +204500,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [73595] = 5, + [77194] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5009), 1, - aux_sym__immediate_decimal_token5, - STATE(2380), 1, + STATE(2481), 1, sym_comment, - ACTIONS(773), 6, + ACTIONS(1812), 4, 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(1814), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201238,31 +204532,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [73630] = 11, + [77224] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4938), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4940), 1, - aux_sym__immediate_decimal_token2, - STATE(2381), 1, + STATE(2482), 1, sym_comment, - STATE(3121), 1, - sym__immediate_decimal, - ACTIONS(1671), 2, - ts_builtin_sym_end, + ACTIONS(1900), 4, 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, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1902), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201274,90 +204554,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, - [73677] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1432), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(4971), 1, - anon_sym_DOT2, - STATE(453), 1, - sym_cell_path, - STATE(783), 1, - sym_path, - STATE(2382), 1, - sym_comment, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 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, - [73718] = 12, + sym__unquoted_pattern, + [77254] = 14, 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, - sym_comment, - STATE(2994), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5015), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3221), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 9, + ACTIONS(1480), 1, + anon_sym_COMMA, + ACTIONS(5169), 1, anon_sym_EQ, + ACTIONS(5171), 1, sym__newline, - anon_sym_PIPE, + ACTIONS(5173), 1, anon_sym_COLON, + ACTIONS(5175), 1, + anon_sym_LPAREN, + ACTIONS(5177), 1, + anon_sym_DASH2, + STATE(2483), 1, + sym_comment, + STATE(2595), 1, + sym_flag_capsule, + STATE(2596), 1, + aux_sym_parameter_repeat1, + STATE(3410), 1, + aux_sym_parameter_repeat2, + STATE(4244), 1, + aux_sym__repeat_newline, + STATE(3256), 2, + sym_param_type, + sym_param_value, + ACTIONS(5167), 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, - [73766] = 6, - ACTIONS(103), 1, + [77304] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5017), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5019), 1, - aux_sym__immediate_decimal_token5, - STATE(2384), 1, + ACTIONS(5148), 1, + anon_sym_DOT2, + STATE(791), 1, + sym_path, + STATE(1306), 1, + sym_cell_path, + STATE(2411), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2484), 1, sym_comment, - ACTIONS(1726), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 15, + ACTIONS(1888), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201369,82 +204620,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [73802] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2385), 1, - sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 19, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [73834] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [77340] = 15, 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, + ACTIONS(856), 1, 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, + ACTIONS(3291), 1, anon_sym_DQUOTE, + ACTIONS(3293), 1, anon_sym_SQUOTE, + ACTIONS(3295), 1, anon_sym_BQUOTE, - [73868] = 7, - ACTIONS(3), 1, + ACTIONS(3297), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3299), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3679), 1, + anon_sym_LPAREN, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(5179), 1, + sym__unquoted_naive, + STATE(2485), 1, + sym_comment, + STATE(3082), 1, + sym__inter_single_quotes, + STATE(3083), 1, + sym__inter_double_quotes, + STATE(2455), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3052), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [77392] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1458), 1, - anon_sym_DOT_DOT2, - ACTIONS(4971), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(2387), 1, + ACTIONS(5181), 1, + anon_sym_BANG, + STATE(2486), 1, sym_comment, - STATE(2407), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 17, - ts_builtin_sym_end, + 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, @@ -201456,29 +204683,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, - [73906] = 8, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [77424] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(5148), 1, anon_sym_DOT2, - STATE(2388), 1, - sym_comment, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, + STATE(791), 1, sym_path, - STATE(2615), 1, + STATE(1307), 1, sym_cell_path, - ACTIONS(1641), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 14, + STATE(2411), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2487), 1, + sym_comment, + ACTIONS(1880), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201490,24 +204713,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, - [73946] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [77460] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2389), 1, + STATE(2488), 1, sym_comment, - STATE(2417), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(5028), 2, + ACTIONS(5185), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5026), 16, + ACTIONS(5183), 17, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -201524,16 +204741,21 @@ 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, + [77490] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2390), 1, + ACTIONS(5099), 1, + aux_sym__immediate_decimal_token5, + STATE(2489), 1, sym_comment, - ACTIONS(1514), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1516), 19, + ACTIONS(1754), 5, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1756), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201545,26 +204767,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, - anon_sym_QMARK2, - anon_sym_BANG, - [74016] = 4, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [77522] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2391), 1, + ACTIONS(5148), 1, + anon_sym_DOT2, + STATE(791), 1, + sym_path, + STATE(1327), 1, + sym_cell_path, + STATE(2411), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2490), 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(1856), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201576,37 +204795,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, + [77558] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5003), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5005), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5030), 1, - anon_sym_DOT, - STATE(2392), 1, + STATE(2491), 1, sym_comment, - STATE(2909), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, + ACTIONS(763), 6, 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_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(765), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -201614,24 +204818,25 @@ 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, - [74096] = 5, - ACTIONS(103), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77588] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4944), 1, + ACTIONS(1748), 1, + sym__unquoted_pattern, + ACTIONS(5187), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5189), 1, aux_sym__immediate_decimal_token5, - STATE(2393), 1, + STATE(2492), 1, sym_comment, - ACTIONS(741), 7, + ACTIONS(1746), 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 +204848,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, + [77622] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(5148), 1, anon_sym_DOT2, - STATE(2394), 1, - sym_comment, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, + STATE(791), 1, sym_path, - STATE(2627), 1, + STATE(1345), 1, sym_cell_path, - ACTIONS(1434), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1432), 14, + STATE(2411), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2493), 1, + sym_comment, + ACTIONS(1892), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201674,27 +204878,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, - [74170] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [77658] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5032), 1, - anon_sym_DOT, - ACTIONS(5034), 1, - aux_sym__immediate_decimal_token5, - STATE(2395), 1, + ACTIONS(5191), 1, + anon_sym_QMARK2, + ACTIONS(5193), 1, + anon_sym_BANG, + STATE(2494), 1, sym_comment, - ACTIONS(739), 6, - sym_identifier, + STATE(2749), 1, + sym__path_suffix, + ACTIONS(1442), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(741), 13, + anon_sym_DOT2, + ACTIONS(1444), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -201704,27 +204908,27 @@ 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, - [74206] = 6, + [77694] = 8, 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, + ACTIONS(5156), 1, + anon_sym_DOT2, + STATE(2495), 1, sym_comment, - ACTIONS(747), 6, - sym_identifier, + STATE(2529), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2725), 1, + sym_path, + STATE(2883), 1, + sym_cell_path, + ACTIONS(1683), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(749), 13, + ACTIONS(1681), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -201734,138 +204938,88 @@ 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, - [74242] = 11, - 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, - sym_comment, - STATE(4725), 1, - sym__expr_parenthesized_immediate, - ACTIONS(968), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5042), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [74288] = 4, + [77732] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2398), 1, + STATE(2496), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(789), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 19, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(791), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + 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, - [74320] = 5, - ACTIONS(103), 1, + [77762] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5050), 1, - aux_sym__immediate_decimal_token5, - STATE(2399), 1, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1784), 1, + anon_sym_LPAREN, + ACTIONS(1796), 1, + anon_sym_DQUOTE, + ACTIONS(1798), 1, + anon_sym_SQUOTE, + ACTIONS(1800), 1, + anon_sym_BQUOTE, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(5195), 1, + anon_sym_DOLLAR, + ACTIONS(5197), 1, + sym__unquoted_naive, + STATE(728), 1, + sym__inter_single_quotes, + STATE(729), 1, + sym__inter_double_quotes, + STATE(2497), 1, sym_comment, - ACTIONS(773), 7, - ts_builtin_sym_end, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3159), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [77814] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2021), 1, sym__space, + ACTIONS(2025), 1, 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, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, + ACTIONS(2031), 1, sym__unquoted_pattern, - [74354] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2400), 1, - sym_comment, - ACTIONS(1804), 2, + ACTIONS(5199), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 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, + STATE(2498), 1, + sym_comment, + ACTIONS(5201), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74386] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2401), 1, - sym_comment, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 19, + ACTIONS(2023), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201879,51 +205033,57 @@ 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, - [74418] = 6, - ACTIONS(103), 1, + [77852] = 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(97), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(5203), 1, + anon_sym_LPAREN, + ACTIONS(5205), 1, + anon_sym_DOLLAR, + ACTIONS(5207), 1, + sym__unquoted_naive, + STATE(1342), 1, + sym__inter_single_quotes, + STATE(1343), 1, + sym__inter_double_quotes, + STATE(2499), 1, + sym_comment, + STATE(485), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3284), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [77904] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2403), 1, - sym_comment, - ACTIONS(1474), 2, - anon_sym_DOT_DOT2, + ACTIONS(5148), 1, anon_sym_DOT2, - ACTIONS(1476), 19, + STATE(791), 1, + sym_path, + STATE(1339), 1, + sym_cell_path, + STATE(2411), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_comment, + ACTIONS(1872), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201939,26 +205099,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [74486] = 7, + [77940] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5052), 1, - anon_sym_QMARK2, - ACTIONS(5054), 1, - anon_sym_BANG, - STATE(2404), 1, + STATE(2501), 1, sym_comment, - STATE(2566), 1, - sym__path_suffix, - ACTIONS(1448), 3, + ACTIONS(1521), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1446), 15, + ACTIONS(1519), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201970,54 +205121,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - [74524] = 5, + [77970] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4985), 1, + ACTIONS(5209), 1, + anon_sym_DOT, + ACTIONS(5211), 1, aux_sym__immediate_decimal_token5, - STATE(2405), 1, + STATE(2502), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1756), 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(1754), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + 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, - [74558] = 7, - ACTIONS(3), 1, + [78004] = 8, + ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1615), 1, sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(2011), 1, + sym__space, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(5056), 1, + ACTIONS(5213), 1, anon_sym_DOT_DOT2, - STATE(2406), 1, + STATE(2503), 1, sym_comment, - ACTIONS(5058), 2, + ACTIONS(5215), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 16, + ACTIONS(2013), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202031,49 +205183,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [74596] = 6, + [78042] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1524), 1, - anon_sym_DOT_DOT2, - ACTIONS(5060), 1, + ACTIONS(5156), 1, anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(2407), 2, + STATE(2504), 1, sym_comment, + STATE(2529), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 17, - ts_builtin_sym_end, + STATE(2725), 1, + sym_path, + STATE(2844), 1, + sym_cell_path, + ACTIONS(1450), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1452), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_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, - [74632] = 4, + [78080] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2408), 1, + ACTIONS(1756), 1, + sym__unquoted_pattern, + ACTIONS(5118), 1, + aux_sym__immediate_decimal_token5, + STATE(2505), 1, sym_comment, - ACTIONS(1466), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1468), 19, - ts_builtin_sym_end, + ACTIONS(1754), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202085,28 +205234,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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [74664] = 7, + anon_sym_LPAREN2, + [78112] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(5063), 1, + ACTIONS(5144), 1, anon_sym_DOT_DOT2, - STATE(2409), 1, + STATE(2506), 1, sym_comment, - ACTIONS(5065), 2, + ACTIONS(5146), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 16, + ACTIONS(5142), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202123,19 +205267,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74702] = 4, - ACTIONS(103), 1, + [78144] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2410), 1, + ACTIONS(5144), 1, + anon_sym_DOT_DOT2, + STATE(2507), 1, sym_comment, - ACTIONS(749), 6, - sym__space, - anon_sym_LPAREN2, + ACTIONS(5146), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(747), 15, + ACTIONS(5142), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202149,18 +205291,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [74734] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [78176] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2411), 1, - sym_comment, - ACTIONS(1470), 2, - anon_sym_DOT_DOT2, + ACTIONS(5217), 1, anon_sym_DOT2, - ACTIONS(1472), 19, - ts_builtin_sym_end, + STATE(2257), 1, + sym_cell_path, + STATE(2458), 1, + sym_path, + STATE(2508), 1, + sym_comment, + STATE(2573), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1452), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202172,31 +205320,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [74766] = 8, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + [78212] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2412), 1, + ACTIONS(5181), 1, + anon_sym_QMARK2, + STATE(2509), 1, 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(1458), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 14, + ACTIONS(1456), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202211,20 +205349,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [74806] = 7, - ACTIONS(3), 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, + [78244] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5219), 1, + aux_sym__immediate_decimal_token5, + STATE(2510), 1, sym_comment, - ACTIONS(1882), 17, + ACTIONS(1812), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1814), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202236,26 +205375,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [74844] = 7, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [78276] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(923), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2414), 1, + ACTIONS(5144), 1, + anon_sym_DOT_DOT2, + STATE(2511), 1, sym_comment, - ACTIONS(1850), 17, + ACTIONS(5146), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1716), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202268,25 +205400,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74882] = 7, + [78308] = 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(5221), 1, + anon_sym_DOT_DOT2, + STATE(2512), 1, sym_comment, - ACTIONS(1858), 17, + ACTIONS(5223), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2152), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202299,25 +205427,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74920] = 7, + [78340] = 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(5225), 1, + anon_sym_DOT_DOT2, + STATE(2513), 1, sym_comment, - ACTIONS(1866), 17, + ACTIONS(5227), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2108), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202330,90 +205454,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74958] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DOT2, - STATE(420), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, - sym_path, - STATE(2417), 1, - sym_comment, - ACTIONS(5069), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5067), 16, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - [74996] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5011), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5013), 1, - aux_sym__immediate_decimal_token2, - STATE(2418), 1, - sym_comment, - STATE(2991), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5015), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3351), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [75044] = 5, + [78372] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5071), 1, - aux_sym__immediate_decimal_token5, - STATE(2419), 1, - sym_comment, - ACTIONS(1804), 2, + ACTIONS(5229), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 18, - ts_builtin_sym_end, + STATE(2514), 1, + sym_comment, + ACTIONS(5231), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2116), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202425,22 +205480,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, - [75078] = 4, + [78404] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2420), 1, - sym_comment, - ACTIONS(1478), 2, + ACTIONS(5233), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1480), 19, - ts_builtin_sym_end, + STATE(2515), 1, + sym_comment, + ACTIONS(5235), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2124), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202452,26 +205507,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, - anon_sym_QMARK2, - anon_sym_BANG, - [75110] = 4, + [78436] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2421), 1, + STATE(2516), 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,19 +205534,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, + [78466] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2422), 1, - sym_comment, - ACTIONS(1543), 2, + ACTIONS(5237), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1545), 19, + STATE(2517), 1, + sym_comment, + ACTIONS(5239), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5142), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202511,50 +205564,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [75174] = 6, + [78497] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5073), 1, - anon_sym_DOT, - ACTIONS(5075), 1, - aux_sym__immediate_decimal_token5, - STATE(2423), 1, - sym_comment, - ACTIONS(1736), 4, - sym__space, + ACTIONS(2025), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 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, + ACTIONS(2031), 1, sym__unquoted_pattern, - [75210] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2424), 1, - sym_comment, - ACTIONS(1872), 2, + ACTIONS(5241), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 18, + STATE(2518), 1, + sym_comment, + ACTIONS(2021), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5243), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2023), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202566,31 +205593,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75241] = 8, + [78534] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5027), 1, anon_sym_DOT2, - STATE(2425), 1, - sym_comment, - STATE(2489), 1, + ACTIONS(5247), 1, + sym__space, + STATE(2443), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, + STATE(2519), 1, + sym_comment, + STATE(2549), 1, sym_path, - STATE(2701), 1, + STATE(3016), 1, sym_cell_path, - ACTIONS(1434), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1432), 12, + ACTIONS(5245), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202602,21 +205620,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, - [75280] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [78571] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2426), 1, - sym_comment, - ACTIONS(851), 7, - ts_builtin_sym_end, + ACTIONS(5027), 1, + anon_sym_DOT2, + ACTIONS(5251), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(849), 13, + STATE(2443), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2520), 1, + sym_comment, + STATE(2549), 1, + sym_path, + STATE(3017), 1, + sym_cell_path, + ACTIONS(5249), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202628,126 +205649,119 @@ static const uint16_t 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, + anon_sym_RPAREN, + anon_sym_RBRACE, + [78608] = 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(2427), 1, - sym_comment, - STATE(3279), 1, - sym__immediate_decimal, - ACTIONS(1669), 2, - sym_identifier, + ACTIONS(5255), 1, 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, + STATE(2521), 1, + sym_comment, + ACTIONS(5253), 17, anon_sym_EQ, + sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [75356] = 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + [78637] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(1748), 1, + sym__unquoted_pattern, + STATE(2522), 1, + sym_comment, + ACTIONS(1746), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5079), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, - aux_sym__immediate_decimal_token2, - STATE(2428), 1, + [78666] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2523), 1, sym_comment, - STATE(3304), 1, - sym__immediate_decimal, - ACTIONS(1673), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3285), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 9, + 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_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [75401] = 11, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [78693] = 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, - sym_comment, - STATE(3220), 1, - sym__immediate_decimal, - ACTIONS(1677), 2, - sym_identifier, + ACTIONS(5259), 1, 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, + STATE(2524), 1, + sym_comment, + ACTIONS(5257), 17, anon_sym_EQ, + sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [75446] = 7, + anon_sym_LBRACE, + anon_sym_RBRACE, + [78722] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, + STATE(2525), 1, sym_comment, - STATE(2434), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - ACTIONS(1460), 3, + ACTIONS(1900), 5, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1458), 14, + ACTIONS(1902), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202759,25 +205773,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, - [75483] = 6, + sym__unquoted_pattern, + [78751] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5083), 1, - anon_sym_DOT, - ACTIONS(5085), 1, - aux_sym__immediate_decimal_token5, - STATE(2431), 1, + ACTIONS(5261), 1, + anon_sym_BANG, + STATE(2526), 1, sym_comment, - ACTIONS(1736), 5, + ACTIONS(1458), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 13, + ACTIONS(1456), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202790,26 +205800,23 @@ 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, - [75518] = 8, + anon_sym_DOT2, + [78782] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(1888), 1, + sym__space, + ACTIONS(5027), 1, anon_sym_DOT2, - STATE(2432), 1, - sym_comment, - STATE(2489), 1, + STATE(2443), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, + STATE(2527), 1, + sym_comment, + STATE(2549), 1, sym_path, - STATE(2756), 1, + STATE(3103), 1, sym_cell_path, - ACTIONS(1679), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 12, + ACTIONS(1890), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202821,23 +205828,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, - [75557] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [78819] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(2025), 1, anon_sym_LPAREN2, - ACTIONS(5087), 1, - anon_sym_DOT_DOT2, - STATE(2433), 1, + ACTIONS(2031), 1, + sym__unquoted_pattern, + STATE(2528), 1, sym_comment, - ACTIONS(5089), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 15, - ts_builtin_sym_end, + ACTIONS(2566), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202849,50 +205851,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [75594] = 6, - ACTIONS(103), 1, + [78850] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5091), 1, + ACTIONS(5156), 1, anon_sym_DOT2, - STATE(2542), 1, - sym_path, - STATE(2434), 2, + STATE(2529), 1, sym_comment, + STATE(2533), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 3, - sym__space, + STATE(2725), 1, + sym_path, + ACTIONS(1515), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1517), 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, - ACTIONS(1524), 14, + [78885] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5265), 1, + anon_sym_DASH2, + STATE(2530), 1, + sym_comment, + ACTIONS(5263), 17, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + 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, - anon_sym_DOT_DOT2, - [75629] = 6, + [78914] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1902), 1, sym__unquoted_pattern, - ACTIONS(5094), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5096), 1, - aux_sym__immediate_decimal_token5, - STATE(2435), 1, + STATE(2531), 1, sym_comment, - ACTIONS(1726), 17, + ACTIONS(1900), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202910,22 +205934,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [75664] = 7, + [78943] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2025), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2031), 1, sym__unquoted_pattern, - ACTIONS(5098), 1, - anon_sym_DOT_DOT2, - STATE(2436), 1, + STATE(2532), 1, sym_comment, - ACTIONS(5100), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 15, - ts_builtin_sym_end, + ACTIONS(2021), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202937,53 +205955,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [75701] = 11, + [78974] = 6, 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(2437), 1, - sym_comment, - STATE(3347), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - sym_identifier, + ACTIONS(5267), 1, + anon_sym_DOT2, + STATE(2725), 1, + sym_path, + ACTIONS(1508), 2, anon_sym_DASH2, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3345), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 9, + anon_sym_DOT_DOT2, + STATE(2533), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 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, - [75746] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [79007] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2438), 1, + ACTIONS(5270), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5272), 1, + aux_sym__immediate_decimal_token5, + STATE(2534), 1, sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 18, - ts_builtin_sym_end, + ACTIONS(1746), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1748), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202995,53 +206011,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, - [75777] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym__unquoted_pattern, + [79040] = 5, 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, - sym_comment, - ACTIONS(773), 7, - ts_builtin_sym_end, - sym__space, + ACTIONS(1691), 1, + sym__unquoted_pattern, + ACTIONS(2564), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(771), 13, + STATE(2535), 1, + sym_comment, + ACTIONS(2560), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203053,18 +206035,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75839] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79071] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2441), 1, + ACTIONS(2574), 1, + anon_sym_LPAREN2, + ACTIONS(2576), 1, + sym__unquoted_pattern, + STATE(2536), 1, sym_comment, - ACTIONS(1516), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1514), 17, + ACTIONS(2570), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203078,25 +206063,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [75870] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79102] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5034), 1, + ACTIONS(5211), 1, aux_sym__immediate_decimal_token5, - STATE(2442), 1, + STATE(2537), 1, sym_comment, - ACTIONS(739), 6, + ACTIONS(1756), 4, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, sym__unquoted_pattern_in_record, - ACTIONS(741), 13, + ACTIONS(1754), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -203110,22 +206092,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75903] = 6, - ACTIONS(103), 1, + [79133] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5102), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5104), 1, - aux_sym__immediate_decimal_token5, - STATE(2443), 1, + ACTIONS(5274), 1, + anon_sym_DOT2, + STATE(2538), 1, sym_comment, - ACTIONS(1726), 5, + STATE(2623), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2924), 1, + sym_path, + STATE(3079), 1, + sym_cell_path, + ACTIONS(1452), 14, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 13, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203137,57 +206119,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, - 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, + [79168] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_QMARK2, - STATE(2445), 1, - sym_comment, - ACTIONS(1438), 3, + ACTIONS(5278), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1440), 16, + STATE(2539), 1, + sym_comment, + ACTIONS(5276), 17, anon_sym_EQ, sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, anon_sym_LBRACK, @@ -203199,18 +206143,24 @@ static const uint16_t ts_small_parse_table[] = { 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_LBRACE, + anon_sym_RBRACE, + [79197] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2446), 1, - sym_comment, - ACTIONS(1545), 3, + ACTIONS(1880), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1543), 17, + ACTIONS(5027), 1, + anon_sym_DOT2, + STATE(2443), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2540), 1, + sym_comment, + STATE(2549), 1, + sym_path, + STATE(2983), 1, + sym_cell_path, + ACTIONS(1882), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203224,22 +206174,13 @@ 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, + [79234] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(5120), 1, - anon_sym_DOT, - ACTIONS(5122), 1, - aux_sym__immediate_decimal_token5, - STATE(2447), 1, + STATE(2541), 1, sym_comment, - ACTIONS(1736), 17, + ACTIONS(1529), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203251,31 +206192,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [76082] = 9, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79261] = 6, ACTIONS(103), 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(5280), 1, + anon_sym_DOT, + ACTIONS(5282), 1, + aux_sym__immediate_decimal_token5, + STATE(2542), 1, sym_comment, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 13, + ACTIONS(1754), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1756), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203289,19 +206224,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [76123] = 5, + sym__unquoted_pattern, + [79294] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5124), 1, - aux_sym__immediate_decimal_token5, - STATE(2449), 1, + STATE(2543), 1, sym_comment, - ACTIONS(1802), 4, + ACTIONS(1746), 5, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 15, + ACTIONS(1748), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203313,24 +206248,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [76156] = 4, - ACTIONS(103), 1, + [79323] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2450), 1, + ACTIONS(1756), 1, + sym__unquoted_pattern, + ACTIONS(5152), 1, + aux_sym__immediate_decimal_token5, + STATE(2544), 1, sym_comment, - ACTIONS(749), 7, + ACTIONS(1754), 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(747), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203342,18 +206272,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, - [76187] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [79354] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2451), 1, + STATE(2545), 1, sym_comment, - ACTIONS(1472), 3, + ACTIONS(1543), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1470), 17, + ACTIONS(1541), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203368,47 +206300,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, anon_sym_DOT2, - [76218] = 5, - ACTIONS(3), 1, + [79383] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5126), 1, - aux_sym__immediate_decimal_token5, - STATE(2452), 1, + ACTIONS(1856), 1, + sym__space, + ACTIONS(5027), 1, + anon_sym_DOT2, + STATE(2443), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2546), 1, sym_comment, - ACTIONS(771), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(773), 13, - anon_sym_EQ, + STATE(2549), 1, + sym_path, + STATE(2989), 1, + sym_cell_path, + ACTIONS(1858), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76251] = 4, + anon_sym_RBRACE, + [79420] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2453), 1, + STATE(2547), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 18, - ts_builtin_sym_end, + ACTIONS(1498), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203420,22 +206348,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, - [76282] = 4, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79447] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2454), 1, + STATE(2548), 1, sym_comment, - ACTIONS(1480), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1478), 17, + ACTIONS(1525), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203447,29 +206372,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [76313] = 7, + [79474] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5128), 1, - anon_sym_QMARK2, - ACTIONS(5130), 1, - anon_sym_BANG, - STATE(2455), 1, + STATE(2549), 1, sym_comment, - STATE(2609), 1, - sym__path_suffix, - ACTIONS(1448), 4, - ts_builtin_sym_end, + ACTIONS(1535), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1446), 13, + ACTIONS(1533), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203481,27 +206399,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [76350] = 8, - ACTIONS(103), 1, + [79503] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2456), 1, + STATE(2550), 1, sym_comment, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2761), 1, - sym_cell_path, - ACTIONS(1641), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 12, + ACTIONS(4714), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4716), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4718), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4712), 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, + [79536] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2551), 1, + sym_comment, + ACTIONS(1502), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203513,17 +206448,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, - [76389] = 4, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79563] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2457), 1, + STATE(2552), 1, sym_comment, - ACTIONS(1468), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1466), 17, + ACTIONS(1506), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203535,22 +206472,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [76420] = 4, + [79590] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2458), 1, + STATE(2553), 1, sym_comment, - ACTIONS(1476), 3, + ACTIONS(1812), 5, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1474), 17, + ACTIONS(1814), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203562,24 +206501,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, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76451] = 5, + sym__unquoted_pattern, + [79619] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2164), 1, - anon_sym_BANG, - STATE(2459), 1, + ACTIONS(2525), 1, + anon_sym_LPAREN2, + ACTIONS(2527), 1, + sym__unquoted_pattern, + STATE(2554), 1, sym_comment, - ACTIONS(1438), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1440), 17, - ts_builtin_sym_end, + ACTIONS(2521), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203591,24 +206524,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, + [79650] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5075), 1, - aux_sym__immediate_decimal_token5, - STATE(2460), 1, - sym_comment, - ACTIONS(1736), 4, + ACTIONS(1862), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 15, + ACTIONS(5027), 1, + anon_sym_DOT2, + STATE(2443), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2549), 1, + sym_path, + STATE(2555), 1, + sym_comment, + STATE(3076), 1, + sym_cell_path, + ACTIONS(1865), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203622,47 +206558,43 @@ 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, + [79687] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_BANG, - STATE(2461), 1, + STATE(2556), 1, sym_comment, - ACTIONS(1438), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1440), 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, + ACTIONS(4696), 2, 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_LT2, + ACTIONS(4698), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4700), 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, + [79720] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2462), 1, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + STATE(2557), 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(2011), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203674,84 +206606,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_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76580] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79751] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2463), 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, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - 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(1615), 1, + sym__unquoted_pattern, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(5284), 1, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76610] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3224), 1, - anon_sym_DQUOTE, - ACTIONS(3226), 1, - anon_sym_SQUOTE, - ACTIONS(3228), 1, - anon_sym_BQUOTE, - ACTIONS(3230), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3661), 1, - anon_sym_LPAREN, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(5132), 1, - sym__unquoted_naive, - STATE(2464), 1, - sym_comment, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - STATE(2454), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2967), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [76662] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2465), 1, + STATE(2558), 1, sym_comment, - ACTIONS(1516), 4, + ACTIONS(2011), 2, ts_builtin_sym_end, sym__space, + ACTIONS(5286), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1514), 15, + ACTIONS(2013), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203763,25 +206640,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76692] = 7, + [79788] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1274), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2466), 1, + ACTIONS(1814), 1, + sym__unquoted_pattern, + STATE(2559), 1, sym_comment, - ACTIONS(1866), 15, - ts_builtin_sym_end, + ACTIONS(1812), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203793,56 +206659,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, - [76728] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5144), 1, - anon_sym_LPAREN, - ACTIONS(5146), 1, - anon_sym_DASH2, - STATE(2467), 1, - 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_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [76778] = 4, + anon_sym_LPAREN2, + [79817] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2468), 1, + ACTIONS(5261), 1, + anon_sym_QMARK2, + STATE(2560), 1, sym_comment, - ACTIONS(1726), 4, + ACTIONS(1458), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 15, + ACTIONS(1456), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203854,30 +206689,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76808] = 9, + anon_sym_DOT2, + [79848] = 8, ACTIONS(103), 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, - sym_comment, - ACTIONS(968), 2, - ts_builtin_sym_end, + ACTIONS(1872), 1, sym__space, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 11, + ACTIONS(5027), 1, + anon_sym_DOT2, + STATE(2443), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2549), 1, + sym_path, + STATE(2561), 1, + sym_comment, + STATE(3054), 1, + sym_cell_path, + ACTIONS(1874), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203889,20 +206718,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, - [76848] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [79885] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, - 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, + ACTIONS(1814), 1, + sym__unquoted_pattern, + ACTIONS(5288), 1, + aux_sym__immediate_decimal_token5, + STATE(2562), 1, sym_comment, - ACTIONS(1850), 15, + ACTIONS(1812), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203918,16 +206745,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76884] = 5, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [79916] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - ACTIONS(5148), 1, - aux_sym__immediate_decimal_token5, - STATE(2471), 1, + ACTIONS(5027), 1, + anon_sym_DOT2, + ACTIONS(5292), 1, + sym__space, + STATE(2443), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2549), 1, + sym_path, + STATE(2563), 1, sym_comment, - ACTIONS(1802), 17, + STATE(3009), 1, + sym_cell_path, + ACTIONS(5290), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203941,21 +206775,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [76916] = 4, + [79953] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2472), 1, - sym_comment, - ACTIONS(1480), 4, - ts_builtin_sym_end, + ACTIONS(5027), 1, + anon_sym_DOT2, + ACTIONS(5296), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1478), 15, + STATE(2443), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2549), 1, + sym_path, + STATE(2564), 1, + sym_comment, + STATE(3010), 1, + sym_cell_path, + ACTIONS(5294), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203967,51 +206802,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_DOT2, - [76946] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2473), 1, - sym_comment, - ACTIONS(849), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(851), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76976] = 7, - ACTIONS(3), 1, + anon_sym_RBRACE, + [79990] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5134), 1, + ACTIONS(5027), 1, anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1272), 1, - sym_cell_path, - STATE(2387), 1, + ACTIONS(5300), 1, + sym__space, + STATE(2443), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2474), 1, + STATE(2549), 1, + sym_path, + STATE(2565), 1, sym_comment, - ACTIONS(1858), 15, - ts_builtin_sym_end, + STATE(3011), 1, + sym_cell_path, + ACTIONS(5298), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204023,20 +206831,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, - [77012] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [80027] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5152), 1, - anon_sym_DOT_DOT2, - STATE(2475), 1, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + STATE(2566), 1, sym_comment, - ACTIONS(5154), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 16, + STATE(4713), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5302), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204053,47 +206859,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3), 1, + [80058] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5134), 1, + ACTIONS(1892), 1, + sym__space, + ACTIONS(5027), 1, anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1273), 1, - sym_cell_path, - STATE(2387), 1, + STATE(2443), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2477), 1, + STATE(2549), 1, + sym_path, + STATE(2567), 1, sym_comment, - ACTIONS(1862), 15, - ts_builtin_sym_end, + STATE(3008), 1, + sym_cell_path, + ACTIONS(1894), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204105,20 +206886,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, - [77110] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [80095] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5152), 1, - anon_sym_DOT_DOT2, - STATE(2478), 1, + STATE(2568), 1, sym_comment, - ACTIONS(5154), 2, + ACTIONS(1539), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1706), 16, + ACTIONS(1537), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204132,23 +206911,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, - [77142] = 7, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [80124] = 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(5237), 1, + anon_sym_DOT_DOT2, + STATE(2569), 1, sym_comment, - ACTIONS(1882), 15, + ACTIONS(5239), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1716), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204164,19 +206939,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77178] = 6, + [80155] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(2508), 1, sym__unquoted_pattern, - ACTIONS(5156), 1, - anon_sym_DOT, - ACTIONS(5158), 1, - aux_sym__immediate_decimal_token5, - STATE(2480), 1, + STATE(2570), 1, sym_comment, - ACTIONS(1736), 16, - ts_builtin_sym_end, + ACTIONS(2506), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204188,21 +206958,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, - [77212] = 5, + [80184] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5152), 1, - anon_sym_DOT_DOT2, - STATE(2481), 1, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + STATE(2571), 1, sym_comment, - ACTIONS(5154), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 16, + STATE(4713), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5302), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204219,48 +206990,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77244] = 6, + [80215] = 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(2572), 1, sym_comment, - ACTIONS(1728), 4, - sym_identifier, + ACTIONS(1504), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 13, + anon_sym_DOT2, + ACTIONS(1506), 15, anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [77278] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2483), 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, @@ -204270,120 +207011,23 @@ 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, - 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, - sym_comment, - ACTIONS(1472), 4, - ts_builtin_sym_end, - sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1470), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, anon_sym_QMARK2, anon_sym_BANG, - anon_sym_DOT2, - [77442] = 4, - ACTIONS(103), 1, + [80244] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2487), 1, + ACTIONS(5217), 1, + anon_sym_DOT2, + STATE(2458), 1, + sym_path, + STATE(2573), 1, sym_comment, - ACTIONS(1870), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 15, + STATE(2574), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1517), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204395,55 +207039,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [77472] = 6, + [80277] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_DOT, - ACTIONS(5176), 1, - aux_sym__immediate_decimal_token5, - STATE(2488), 1, - sym_comment, - ACTIONS(1738), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 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, - [77506] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5304), 1, anon_sym_DOT2, - STATE(2489), 1, - sym_comment, - STATE(2492), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - ACTIONS(1460), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1458), 12, + STATE(2458), 1, + sym_path, + STATE(2574), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204455,18 +207065,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [77542] = 4, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + [80308] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2490), 1, + ACTIONS(5307), 1, + anon_sym_QMARK2, + ACTIONS(5309), 1, + anon_sym_BANG, + STATE(2575), 1, sym_comment, - ACTIONS(1468), 4, + STATE(2864), 1, + sym__path_suffix, + ACTIONS(1444), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1466), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204478,27 +207093,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_QMARK2, - anon_sym_BANG, + anon_sym_COLON, anon_sym_DOT2, - [77572] = 8, + [80341] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2491), 1, + STATE(2576), 1, sym_comment, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2868), 1, - sym_cell_path, - ACTIONS(1643), 2, + ACTIONS(1519), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1641), 13, + anon_sym_DOT2, + ACTIONS(1521), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -204512,22 +207118,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77610] = 6, - ACTIONS(103), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [80370] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5180), 1, - anon_sym_DOT2, - STATE(2611), 1, - sym_path, - STATE(2492), 2, + ACTIONS(5237), 1, + anon_sym_DOT_DOT2, + STATE(2577), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(5239), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1524), 12, + ACTIONS(5142), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204539,21 +207143,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, - [77644] = 5, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80401] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5085), 1, - aux_sym__immediate_decimal_token5, - STATE(2493), 1, - sym_comment, - ACTIONS(1736), 5, - ts_builtin_sym_end, - sym__space, + ACTIONS(2556), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 13, + ACTIONS(2558), 1, + sym__unquoted_pattern, + STATE(2578), 1, + sym_comment, + ACTIONS(1030), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204565,25 +207167,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [77676] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80432] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2494), 1, + STATE(2579), 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 +207195,68 @@ 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, + [80461] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2496), 1, + STATE(2580), 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, + ACTIONS(1527), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, anon_sym_DOT2, - [77796] = 5, + ACTIONS(1529), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [80490] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5152), 1, - anon_sym_DOT_DOT2, - STATE(2497), 1, + ACTIONS(5313), 1, + anon_sym_DASH2, + STATE(2581), 1, sym_comment, - ACTIONS(5154), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 16, + ACTIONS(5311), 17, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + 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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [77828] = 8, + [80519] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2498), 1, + STATE(2582), 1, sym_comment, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2900), 1, - sym_cell_path, - ACTIONS(1681), 2, + ACTIONS(1496), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1679), 13, + anon_sym_DOT2, + ACTIONS(1498), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -204717,16 +207270,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77866] = 5, + anon_sym_QMARK2, + anon_sym_BANG, + [80548] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(2556), 1, + anon_sym_LPAREN2, + ACTIONS(2558), 1, sym__unquoted_pattern, - ACTIONS(5122), 1, - aux_sym__immediate_decimal_token5, - STATE(2499), 1, + STATE(2583), 1, sym_comment, - ACTIONS(1736), 17, + ACTIONS(994), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204743,18 +207298,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [77898] = 5, + [80579] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5189), 1, + STATE(2584), 1, + sym_comment, + ACTIONS(1500), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, - STATE(2500), 1, + anon_sym_DOT2, + ACTIONS(1502), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_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, + [80608] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5315), 1, + anon_sym_DOT_DOT2, + STATE(2585), 1, sym_comment, - ACTIONS(5191), 2, + ACTIONS(5317), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 16, + ACTIONS(2152), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204766,22 +207346,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, - [77930] = 5, + [80639] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5193), 1, + ACTIONS(5319), 1, anon_sym_DOT_DOT2, - STATE(2501), 1, + STATE(2586), 1, sym_comment, - ACTIONS(5195), 2, + ACTIONS(5321), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 16, + ACTIONS(2108), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204793,22 +207372,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, - [77962] = 5, + [80670] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5197), 1, + ACTIONS(5323), 1, anon_sym_DOT_DOT2, - STATE(2502), 1, + STATE(2587), 1, sym_comment, - ACTIONS(5199), 2, + ACTIONS(5325), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 16, + ACTIONS(2116), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204820,22 +207398,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, - [77994] = 5, + [80701] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5201), 1, + ACTIONS(5327), 1, anon_sym_DOT_DOT2, - STATE(2503), 1, + STATE(2588), 1, sym_comment, - ACTIONS(5203), 2, + ACTIONS(5329), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 16, + ACTIONS(2124), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204847,24 +207424,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, - [78026] = 6, + [80732] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(2594), 1, + anon_sym_LPAREN2, + ACTIONS(2596), 1, sym__unquoted_pattern, - ACTIONS(5205), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5207), 1, - aux_sym__immediate_decimal_token5, - STATE(2504), 1, + STATE(2589), 1, sym_comment, - ACTIONS(1726), 16, - ts_builtin_sym_end, + ACTIONS(1716), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204876,27 +207448,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [78060] = 8, - ACTIONS(103), 1, + [80763] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - sym__space, - ACTIONS(1968), 1, + ACTIONS(1766), 1, anon_sym_LPAREN2, - ACTIONS(5209), 1, - anon_sym_DOT_DOT2, - STATE(2505), 1, + STATE(2590), 1, sym_comment, - ACTIONS(5211), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 13, + STATE(4713), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5302), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204910,18 +207476,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [78098] = 5, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80794] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5213), 1, - anon_sym_BANG, - STATE(2506), 1, + ACTIONS(5237), 1, + anon_sym_DOT_DOT2, + STATE(2591), 1, sym_comment, - ACTIONS(1440), 3, - sym__space, + ACTIONS(5239), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 15, + ACTIONS(5142), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204933,79 +207502,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [78130] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80825] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2507), 1, - sym_comment, - ACTIONS(771), 6, - sym_identifier, + ACTIONS(5333), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(773), 13, + STATE(2592), 1, + sym_comment, + ACTIONS(5331), 17, anon_sym_EQ, + sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [78160] = 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + [80854] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2508), 1, + ACTIONS(5335), 1, + aux_sym__immediate_decimal_token5, + STATE(2593), 1, sym_comment, - ACTIONS(1535), 3, + ACTIONS(1814), 4, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1537), 16, + sym__unquoted_pattern_in_record, + ACTIONS(1812), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [78190] = 8, + [80885] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(2108), 1, sym__space, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(5215), 1, + ACTIONS(5337), 1, anon_sym_DOT_DOT2, - STATE(2509), 1, + STATE(2594), 1, sym_comment, - ACTIONS(5217), 2, + ACTIONS(5339), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 13, + ACTIONS(2110), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205019,43 +207582,79 @@ 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, + [80917] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5219), 1, - aux_sym__immediate_decimal_token5, - STATE(2510), 1, + ACTIONS(1480), 1, + anon_sym_COMMA, + ACTIONS(5169), 1, + anon_sym_EQ, + ACTIONS(5171), 1, + sym__newline, + ACTIONS(5173), 1, + anon_sym_COLON, + ACTIONS(5343), 1, + anon_sym_DASH2, + STATE(2595), 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, + STATE(2607), 1, + aux_sym_parameter_repeat1, + STATE(3439), 1, + aux_sym_parameter_repeat2, + STATE(4244), 1, + aux_sym__repeat_newline, + STATE(3256), 2, + sym_param_type, + sym_param_value, + ACTIONS(5341), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [80961] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1480), 1, + anon_sym_COMMA, + ACTIONS(5169), 1, + anon_sym_EQ, + ACTIONS(5171), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(5173), 1, + anon_sym_COLON, + ACTIONS(5347), 1, + anon_sym_DASH2, + STATE(2596), 1, + sym_comment, + STATE(2705), 1, + aux_sym_parameter_repeat1, + STATE(3436), 1, + aux_sym_parameter_repeat2, + STATE(4244), 1, + aux_sym__repeat_newline, + STATE(3256), 2, + sym_param_type, + sym_param_value, + ACTIONS(5345), 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_DOT_DOT2, - sym__unquoted_pattern, - [78260] = 4, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [81005] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2511), 1, + STATE(2597), 1, sym_comment, - ACTIONS(1462), 3, + ACTIONS(1878), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1464), 16, + ACTIONS(1876), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -205067,23 +207666,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, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [78290] = 5, + [81033] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5213), 1, - anon_sym_QMARK2, - STATE(2512), 1, + STATE(2598), 1, sym_comment, - ACTIONS(1440), 3, + ACTIONS(1846), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 15, + ACTIONS(1848), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205098,104 +207694,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [78322] = 7, + [81061] = 12, 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, + ACTIONS(1480), 1, + anon_sym_COMMA, + ACTIONS(5169), 1, + anon_sym_EQ, + ACTIONS(5171), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [78358] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2514), 1, + ACTIONS(5173), 1, + anon_sym_COLON, + ACTIONS(5351), 1, + anon_sym_DASH2, + STATE(2599), 1, sym_comment, - ACTIONS(1802), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 15, - sym__newline, - anon_sym_SEMI, + STATE(2633), 1, + aux_sym_parameter_repeat1, + STATE(3415), 1, + aux_sym_parameter_repeat2, + STATE(4244), 1, + aux_sym__repeat_newline, + STATE(3256), 2, + sym_param_type, + sym_param_value, + ACTIONS(5349), 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, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [78388] = 5, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [81105] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, + ACTIONS(1615), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2013), 1, + anon_sym_DASH2, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(2515), 1, + ACTIONS(5353), 1, + anon_sym_DOT_DOT2, + STATE(2600), 1, sym_comment, - ACTIONS(1706), 16, + ACTIONS(5355), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2011), 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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [78419] = 8, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [81141] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__space, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2516), 1, + STATE(2601), 1, sym_comment, - STATE(2542), 1, - sym_path, - STATE(2932), 1, - sym_cell_path, - ACTIONS(1860), 13, + ACTIONS(1876), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1878), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205209,44 +207777,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [78456] = 4, + anon_sym_DOT_DOT2, + [81169] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5223), 1, + ACTIONS(2023), 1, anon_sym_DASH2, - STATE(2517), 1, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern_in_record, + ACTIONS(5357), 1, + anon_sym_DOT_DOT2, + STATE(2602), 1, sym_comment, - ACTIONS(5221), 17, + ACTIONS(5359), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2021), 11, 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, + [81205] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5225), 1, - anon_sym_BANG, - STATE(2518), 1, + STATE(2603), 1, sym_comment, - ACTIONS(1440), 4, + ACTIONS(1543), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 13, + ACTIONS(1541), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205260,46 +207830,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [78516] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1866), 1, - sym__space, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2519), 1, - sym_comment, - STATE(2542), 1, - sym_path, - STATE(3025), 1, - sym_cell_path, - ACTIONS(1868), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [78553] = 5, + [81233] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DOT_DOT2, - STATE(2520), 1, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + STATE(2604), 1, sym_comment, - ACTIONS(5229), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 15, + STATE(4680), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5302), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -205315,70 +207855,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78584] = 8, - 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, - sym_comment, - STATE(2542), 1, - sym_path, - STATE(3003), 1, - sym_cell_path, - ACTIONS(5231), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [78621] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, - STATE(2522), 1, - sym_comment, - ACTIONS(2501), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [78650] = 5, + [81263] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(1766), 1, anon_sym_LPAREN2, - STATE(2523), 1, + STATE(2605), 1, sym_comment, - ACTIONS(1964), 16, + STATE(4680), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5302), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205390,21 +207877,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, + [81293] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(1766), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2524), 1, + STATE(2606), 1, sym_comment, - ACTIONS(994), 16, + STATE(4680), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5302), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205416,72 +207902,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78712] = 5, + [81323] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5235), 1, - aux_sym__immediate_decimal_token5, - STATE(2525), 1, - sym_comment, - ACTIONS(1804), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 13, + ACTIONS(1480), 1, + anon_sym_COMMA, + ACTIONS(5169), 1, anon_sym_EQ, + ACTIONS(5171), 1, sym__newline, - anon_sym_PIPE, + ACTIONS(5173), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [78743] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5239), 1, + ACTIONS(5363), 1, anon_sym_DASH2, - STATE(2526), 1, + STATE(2607), 1, sym_comment, - ACTIONS(5237), 17, - anon_sym_EQ, + STATE(2705), 1, + aux_sym_parameter_repeat1, + STATE(3420), 1, + aux_sym_parameter_repeat2, + STATE(4244), 1, + aux_sym__repeat_newline, + STATE(3256), 2, + sym_param_type, + sym_param_value, + ACTIONS(5361), 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, - [78772] = 5, + [81367] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(1814), 1, sym__unquoted_pattern, - STATE(2527), 1, + STATE(2608), 1, sym_comment, - ACTIONS(2635), 16, + ACTIONS(1812), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205493,21 +207957,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, - [78803] = 5, + anon_sym_LPAREN2, + [81395] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1902), 1, sym__unquoted_pattern, - STATE(2528), 1, + STATE(2609), 1, sym_comment, - ACTIONS(2575), 16, + ACTIONS(1900), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205519,23 +207981,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, - [78834] = 4, + anon_sym_LPAREN2, + [81423] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2529), 1, + ACTIONS(5120), 1, + anon_sym_DOT2, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2610), 1, sym_comment, - ACTIONS(1802), 5, + STATE(2611), 1, + sym_path, + STATE(3186), 1, + sym_cell_path, + ACTIONS(1862), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 13, + ACTIONS(1865), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205547,45 +208013,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, - [78863] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5243), 1, - anon_sym_DASH2, - STATE(2530), 1, - sym_comment, - ACTIONS(5241), 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, - [78892] = 4, + [81459] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2531), 1, + STATE(2611), 1, sym_comment, - ACTIONS(1726), 5, + ACTIONS(1535), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 13, + ACTIONS(1533), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205598,42 +208036,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [78921] = 4, + anon_sym_DOT2, + [81487] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2532), 1, - sym_comment, - ACTIONS(1537), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1535), 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, + ACTIONS(5120), 1, anon_sym_DOT2, - [78950] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2533), 1, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2611), 1, + sym_path, + STATE(2612), 1, sym_comment, - ACTIONS(1974), 16, + STATE(3127), 1, + sym_cell_path, + ACTIONS(1880), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1882), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205645,21 +208065,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, - [78981] = 5, - ACTIONS(3), 1, + [81523] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2534), 1, + ACTIONS(5120), 1, + anon_sym_DOT2, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2611), 1, + sym_path, + STATE(2613), 1, sym_comment, - ACTIONS(2523), 16, + STATE(3132), 1, + sym_cell_path, + ACTIONS(1856), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1858), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205671,21 +208093,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, - [79012] = 5, - ACTIONS(3), 1, + [81559] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2535), 1, + ACTIONS(5120), 1, + anon_sym_DOT2, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2611), 1, + sym_path, + STATE(2614), 1, sym_comment, - ACTIONS(2567), 16, + STATE(3141), 1, + sym_cell_path, + ACTIONS(1872), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1874), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205697,79 +208121,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, - [79043] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2536), 1, - sym_comment, - ACTIONS(1470), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1472), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [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, + [81595] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - ACTIONS(5247), 1, - sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2538), 1, + ACTIONS(5282), 1, + aux_sym__immediate_decimal_token5, + STATE(2615), 1, sym_comment, - STATE(2542), 1, - sym_path, - STATE(3037), 1, - sym_cell_path, - ACTIONS(5245), 13, + ACTIONS(1754), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1756), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205783,22 +208145,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79142] = 8, - ACTIONS(103), 1, + sym__unquoted_pattern, + [81625] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - ACTIONS(5251), 1, - sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2539), 1, + ACTIONS(2508), 1, + sym__unquoted_pattern, + STATE(2616), 1, sym_comment, - STATE(2542), 1, - sym_path, - STATE(3036), 1, - sym_cell_path, - ACTIONS(5249), 13, + ACTIONS(2506), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205810,68 +208166,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [79179] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [81653] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5255), 1, - anon_sym_DASH2, - STATE(2540), 1, + ACTIONS(5365), 1, + anon_sym_BANG, + STATE(2617), 1, sym_comment, - ACTIONS(5253), 17, + 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_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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [81683] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5259), 1, - anon_sym_DASH2, - STATE(2541), 1, + ACTIONS(5365), 1, + anon_sym_QMARK2, + STATE(2618), 1, sym_comment, - ACTIONS(5257), 17, + 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_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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [81713] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2542), 1, + ACTIONS(5367), 1, + aux_sym__immediate_decimal_token5, + STATE(2619), 1, sym_comment, - ACTIONS(1464), 3, + ACTIONS(1812), 2, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1462), 15, + anon_sym_LPAREN2, + ACTIONS(1814), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205885,21 +208244,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [79266] = 6, + sym__unquoted_pattern, + [81743] = 7, 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, - sym_comment, - ACTIONS(1726), 2, + ACTIONS(4328), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 14, + ACTIONS(5369), 1, + sym_long_flag_identifier, + ACTIONS(5371), 1, + anon_sym_EQ2, + STATE(2620), 1, + sym_comment, + STATE(3034), 1, + sym__flag_equals_value, + ACTIONS(4326), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205913,48 +208272,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [79299] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2544), 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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79328] = 8, + [81777] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(5267), 1, - sym__space, - STATE(2430), 1, + STATE(2473), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, + STATE(2611), 1, sym_path, - STATE(2545), 1, + STATE(2621), 1, sym_comment, - STATE(3016), 1, + STATE(3184), 1, sym_cell_path, - ACTIONS(5265), 13, + ACTIONS(1892), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1894), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205966,18 +208300,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, - [79365] = 5, + [81813] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(1748), 1, sym__unquoted_pattern, - STATE(2546), 1, + STATE(2622), 1, sym_comment, - ACTIONS(1018), 16, + ACTIONS(1746), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205989,21 +208320,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, - [79396] = 5, + anon_sym_LPAREN2, + [81841] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2547), 1, + ACTIONS(5274), 1, + anon_sym_DOT2, + STATE(2623), 1, sym_comment, - STATE(4746), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 16, + STATE(2649), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2924), 1, + sym_path, + ACTIONS(1517), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206015,21 +208349,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, - [79427] = 4, + anon_sym_COLON, + [81873] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2548), 1, + STATE(2624), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(1748), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1480), 15, + sym__unquoted_pattern_in_record, + ACTIONS(1746), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -206041,26 +208371,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, - anon_sym_QMARK2, - anon_sym_BANG, - [79456] = 8, + [81901] = 4, 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, + STATE(2625), 1, sym_comment, - STATE(3005), 1, - sym_cell_path, - ACTIONS(5271), 13, + ACTIONS(1539), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1537), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206072,21 +208396,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, + [81929] = 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(2626), 1, sym_comment, - ACTIONS(1736), 2, + ACTIONS(1687), 3, sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1689), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206100,20 +208421,42 @@ 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, + [81957] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5225), 1, - anon_sym_QMARK2, - STATE(2551), 1, + STATE(2627), 1, sym_comment, - ACTIONS(1440), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(1814), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1812), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 13, + [81985] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2594), 1, + anon_sym_LPAREN2, + ACTIONS(2596), 1, + sym__unquoted_pattern, + STATE(2628), 1, + sym_comment, + ACTIONS(1716), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206125,18 +208468,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [79557] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82015] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2552), 1, + STATE(2629), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1902), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1516), 15, + sym__unquoted_pattern_in_record, + ACTIONS(1900), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -206148,26 +208492,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79586] = 8, + [82043] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1882), 1, - sym__space, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2553), 1, + STATE(2630), 1, sym_comment, - STATE(2968), 1, - sym_cell_path, - ACTIONS(1884), 13, + ACTIONS(1850), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1852), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206181,23 +208518,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79623] = 8, + anon_sym_DOT_DOT2, + [82071] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2631), 1, + sym_comment, + ACTIONS(1852), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1850), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [82099] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1878), 1, + ACTIONS(5373), 1, + sym__newline, + ACTIONS(5375), 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(5379), 1, + anon_sym_COLON2, + ACTIONS(5381), 1, + anon_sym_EQ2, + STATE(2632), 1, sym_comment, - STATE(2987), 1, - sym_cell_path, - ACTIONS(1880), 13, - sym__newline, + STATE(2919), 1, + aux_sym_attribute_repeat1, + STATE(4147), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5377), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -206208,18 +208571,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, - [79660] = 5, + [82137] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1480), 1, + anon_sym_COMMA, + ACTIONS(5169), 1, + anon_sym_EQ, + ACTIONS(5171), 1, + sym__newline, + ACTIONS(5173), 1, + anon_sym_COLON, + ACTIONS(5385), 1, + anon_sym_DASH2, + STATE(2633), 1, + sym_comment, + STATE(2705), 1, + aux_sym_parameter_repeat1, + STATE(3402), 1, + aux_sym_parameter_repeat2, + STATE(4244), 1, + aux_sym__repeat_newline, + STATE(3256), 2, + sym_param_type, + sym_param_value, + ACTIONS(5383), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [82181] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(1615), 1, sym__unquoted_pattern, - ACTIONS(5158), 1, - aux_sym__immediate_decimal_token5, - STATE(2555), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + STATE(2634), 1, sym_comment, - ACTIONS(1736), 16, + ACTIONS(2011), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206235,51 +208629,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [79691] = 7, - ACTIONS(3), 1, + [82211] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, + ACTIONS(5371), 1, + anon_sym_EQ2, + ACTIONS(5389), 1, + sym__space, + ACTIONS(5391), 1, + sym_short_flag_identifier, + STATE(2635), 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, + STATE(3057), 1, + sym__flag_equals_value, + ACTIONS(5387), 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, - [79726] = 8, + anon_sym_RBRACE, + [82245] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, + ACTIONS(5395), 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, + ACTIONS(5397), 1, + anon_sym_DOT_DOT2, + STATE(2636), 1, sym_comment, - STATE(2931), 1, - sym_cell_path, - ACTIONS(1864), 13, + ACTIONS(5399), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5393), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206293,14 +208682,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79763] = 4, - ACTIONS(3), 1, + [82277] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - STATE(2558), 1, + ACTIONS(5120), 1, + anon_sym_DOT2, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2611), 1, + sym_path, + STATE(2637), 1, sym_comment, - ACTIONS(1726), 17, + STATE(3202), 1, + sym_cell_path, + ACTIONS(5292), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5290), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206312,24 +208710,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, - [79792] = 4, + [82313] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2559), 1, + STATE(2638), 1, sym_comment, - ACTIONS(1870), 5, - ts_builtin_sym_end, + ACTIONS(1582), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 13, + ACTIONS(1580), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206341,26 +208731,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, - [79821] = 8, + [82341] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(5279), 1, - anon_sym_DOT_DOT2, - STATE(2560), 1, + ACTIONS(5120), 1, + anon_sym_DOT2, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2611), 1, + sym_path, + STATE(2639), 1, sym_comment, - ACTIONS(1974), 2, + STATE(3206), 1, + sym_cell_path, + ACTIONS(5296), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5281), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 11, + ACTIONS(5294), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206372,43 +208762,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, - [79858] = 4, - ACTIONS(3), 1, + [82377] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2561), 1, - sym_comment, - ACTIONS(1543), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, + ACTIONS(5120), 1, anon_sym_DOT2, - ACTIONS(1545), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79887] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DOT_DOT2, - STATE(2562), 1, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2611), 1, + sym_path, + STATE(2640), 1, sym_comment, - ACTIONS(5229), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 15, + STATE(3209), 1, + sym_cell_path, + ACTIONS(5300), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5298), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206420,48 +208790,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, - [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, + [82413] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5227), 1, + ACTIONS(1716), 1, + sym__space, + ACTIONS(5397), 1, anon_sym_DOT_DOT2, - STATE(2564), 1, + STATE(2641), 1, sym_comment, - ACTIONS(5229), 2, + ACTIONS(5399), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1706), 15, - ts_builtin_sym_end, + ACTIONS(1629), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206473,27 +208814,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, - [79982] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [82445] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5283), 1, + ACTIONS(2152), 1, + sym__space, + ACTIONS(5401), 1, anon_sym_DOT_DOT2, - STATE(2565), 1, + STATE(2642), 1, sym_comment, - ACTIONS(1964), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5285), 2, + ACTIONS(5403), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 11, + ACTIONS(2154), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206505,16 +208840,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, - [80019] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [82477] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2566), 1, - sym_comment, - ACTIONS(1522), 3, + ACTIONS(2116), 1, sym__space, + ACTIONS(5405), 1, + anon_sym_DOT_DOT2, + STATE(2643), 1, + sym_comment, + ACTIONS(5407), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1520), 15, + ACTIONS(2118), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206528,18 +208868,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [80048] = 5, - ACTIONS(3), 1, + [82509] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2567), 1, + ACTIONS(2124), 1, + sym__space, + ACTIONS(5409), 1, + anon_sym_DOT_DOT2, + STATE(2644), 1, sym_comment, - STATE(4746), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 16, + ACTIONS(5411), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2126), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206553,42 +208894,43 @@ 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, - [80079] = 4, - ACTIONS(3), 1, + [82541] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2568), 1, + ACTIONS(5413), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5415), 1, + aux_sym__immediate_decimal_token5, + STATE(2645), 1, sym_comment, - ACTIONS(1466), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1468), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(1746), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1748), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [80108] = 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, + sym__unquoted_pattern, + [82573] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, sym__unquoted_pattern, - STATE(2569), 1, + STATE(2646), 1, sym_comment, - ACTIONS(1802), 17, + ACTIONS(2566), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206600,45 +208942,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [80137] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5289), 1, - anon_sym_DASH2, - STATE(2570), 1, - sym_comment, - ACTIONS(5287), 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, - [80166] = 4, + [82603] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, sym__unquoted_pattern, - STATE(2571), 1, + STATE(2647), 1, sym_comment, - ACTIONS(1870), 17, + ACTIONS(2021), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206650,22 +208967,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, + [82633] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(1691), 1, sym__unquoted_pattern, - ACTIONS(5291), 1, - aux_sym__immediate_decimal_token5, - STATE(2572), 1, + ACTIONS(2564), 1, + anon_sym_LPAREN2, + STATE(2648), 1, sym_comment, - ACTIONS(1802), 16, + ACTIONS(2560), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206681,23 +208995,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [80226] = 8, - ACTIONS(103), 1, + [82663] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1850), 1, - sym__space, - ACTIONS(5024), 1, + ACTIONS(5417), 1, anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, + STATE(2924), 1, sym_path, - STATE(2573), 1, + STATE(2649), 2, sym_comment, - STATE(3050), 1, - sym_cell_path, - ACTIONS(1853), 13, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206709,19 +209019,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, + anon_sym_COLON, + [82693] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DOT_DOT2, - STATE(2574), 1, + ACTIONS(2574), 1, + anon_sym_LPAREN2, + ACTIONS(2576), 1, + sym__unquoted_pattern, + STATE(2650), 1, sym_comment, - ACTIONS(5229), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 15, + ACTIONS(2570), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206737,44 +209045,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80294] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5293), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - ACTIONS(1524), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - STATE(2575), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 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, - [80327] = 5, + [82723] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5296), 1, - anon_sym_DOT_DOT2, - STATE(2576), 1, + ACTIONS(2525), 1, + anon_sym_LPAREN2, + ACTIONS(2527), 1, + sym__unquoted_pattern, + STATE(2651), 1, sym_comment, - ACTIONS(5298), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 15, + ACTIONS(2521), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206790,44 +209070,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80358] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5176), 1, - aux_sym__immediate_decimal_token5, - STATE(2577), 1, - sym_comment, - ACTIONS(1738), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 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, - [80389] = 5, + [82753] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5300), 1, - anon_sym_DOT_DOT2, - STATE(2578), 1, + ACTIONS(1776), 1, + sym__unquoted_pattern, + STATE(2652), 1, sym_comment, - ACTIONS(5302), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 15, - ts_builtin_sym_end, + ACTIONS(884), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206839,21 +209089,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, - [80420] = 5, - ACTIONS(3), 1, + [82781] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5304), 1, - anon_sym_DOT_DOT2, - STATE(2579), 1, + ACTIONS(5420), 1, + anon_sym_DOT, + ACTIONS(5422), 1, + aux_sym__immediate_decimal_token5, + STATE(2653), 1, sym_comment, - ACTIONS(5306), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 15, + ACTIONS(1754), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1756), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206865,20 +209119,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80451] = 5, + sym__unquoted_pattern, + [82813] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5308), 1, - anon_sym_DOT_DOT2, - STATE(2580), 1, + ACTIONS(2556), 1, + anon_sym_LPAREN2, + ACTIONS(2558), 1, + sym__unquoted_pattern, + STATE(2654), 1, sym_comment, - ACTIONS(5310), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 15, + ACTIONS(1030), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206894,16 +209145,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80482] = 5, + [82843] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(2556), 1, anon_sym_LPAREN2, - STATE(2581), 1, + ACTIONS(2558), 1, + sym__unquoted_pattern, + STATE(2655), 1, sym_comment, - STATE(4746), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 16, + ACTIONS(994), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206915,25 +209167,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, - [80513] = 6, + [82873] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5312), 1, - anon_sym_DOT, - ACTIONS(5314), 1, - aux_sym__immediate_decimal_token5, - STATE(2582), 1, + ACTIONS(5120), 1, + anon_sym_DOT2, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2611), 1, + sym_path, + STATE(2656), 1, sym_comment, - ACTIONS(1736), 3, + STATE(3170), 1, + sym_cell_path, + ACTIONS(5247), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 12, + ACTIONS(5245), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206945,16 +209198,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, - sym__unquoted_pattern, - [80545] = 4, - ACTIONS(3), 1, + [82909] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - STATE(2583), 1, + ACTIONS(5120), 1, + anon_sym_DOT2, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2611), 1, + sym_path, + STATE(2657), 1, sym_comment, - ACTIONS(1802), 16, + STATE(3226), 1, + sym_cell_path, + ACTIONS(5251), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5249), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206966,59 +209226,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_LPAREN2, - [80573] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5318), 1, - anon_sym_DASH2, - STATE(2584), 1, - sym_comment, - STATE(2787), 1, - aux_sym_parameter_repeat1, - STATE(3394), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5316), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [80617] = 8, + [82945] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5120), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(2473), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2585), 1, - sym_comment, STATE(2611), 1, sym_path, - STATE(3086), 1, + STATE(2658), 1, + sym_comment, + STATE(3199), 1, sym_cell_path, - ACTIONS(5247), 2, + ACTIONS(1888), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5245), 11, + ACTIONS(1890), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207030,17 +209254,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, - [80653] = 5, - ACTIONS(103), 1, + [82981] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5320), 1, - aux_sym__immediate_decimal_token5, - STATE(2586), 1, + ACTIONS(5426), 1, + anon_sym_and2, + ACTIONS(5428), 1, + anon_sym_xor2, + ACTIONS(5430), 1, + anon_sym_or2, + STATE(2659), 1, sym_comment, - ACTIONS(1802), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 14, + ACTIONS(5424), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207054,18 +209279,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [80683] = 5, + [83012] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(2587), 1, + STATE(2660), 1, sym_comment, - ACTIONS(1706), 15, - ts_builtin_sym_end, + STATE(2668), 1, + aux_sym__repeat_newline, + ACTIONS(5432), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207077,43 +209298,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80713] = 4, + [83039] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2588), 1, - sym_comment, - ACTIONS(1804), 3, + ACTIONS(5156), 1, + anon_sym_DOT2, + ACTIONS(5436), 1, 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, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2589), 1, + STATE(2529), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2661), 1, sym_comment, - ACTIONS(1872), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1870), 14, + STATE(2725), 1, + sym_path, + STATE(2859), 1, + sym_cell_path, + ACTIONS(5434), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -207125,27 +209329,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, - [80769] = 9, - ACTIONS(103), 1, + [83074] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5322), 1, + ACTIONS(5438), 1, sym__newline, - ACTIONS(5324), 1, - sym__space, - ACTIONS(5328), 1, - anon_sym_COLON2, - ACTIONS(5330), 1, - anon_sym_EQ2, - STATE(2590), 1, + ACTIONS(5443), 1, + anon_sym_and2, + STATE(2662), 1, sym_comment, - STATE(2840), 1, - aux_sym_attribute_repeat1, - STATE(4319), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5326), 11, + STATE(2802), 1, + aux_sym__repeat_newline, + ACTIONS(5441), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -207156,17 +209351,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, - [80807] = 4, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [83105] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern, - STATE(2591), 1, - sym_comment, - ACTIONS(1870), 16, - ts_builtin_sym_end, + ACTIONS(5445), 1, sym__newline, + ACTIONS(5450), 1, + anon_sym_and2, + STATE(2663), 1, + sym_comment, + STATE(2722), 1, + aux_sym__repeat_newline, + ACTIONS(5448), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -207177,54 +209376,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, - [80835] = 12, + [83136] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, + ACTIONS(5443), 1, + anon_sym_and2, + ACTIONS(5452), 1, sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5334), 1, - anon_sym_DASH2, - STATE(2592), 1, + STATE(2664), 1, sym_comment, - STATE(2787), 1, - aux_sym_parameter_repeat1, - STATE(3384), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, + STATE(2729), 1, aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5332), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [80879] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2593), 1, - sym_comment, - STATE(4777), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 15, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5432), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -207235,26 +209401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [80909] = 8, - ACTIONS(103), 1, + [83167] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2594), 1, + STATE(2665), 1, sym_comment, - STATE(2611), 1, - sym_path, - STATE(3197), 1, - sym_cell_path, - ACTIONS(1878), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1880), 11, + ACTIONS(5142), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207266,15 +209421,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, - [80945] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83192] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - STATE(2595), 1, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2666), 1, sym_comment, - ACTIONS(1726), 16, - ts_builtin_sym_end, + ACTIONS(5455), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207286,21 +209445,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [80973] = 4, - ACTIONS(103), 1, + [83219] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2596), 1, - sym_comment, - ACTIONS(1874), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1876), 14, + ACTIONS(2875), 1, sym__newline, + ACTIONS(5450), 1, + anon_sym_and2, + ACTIONS(5459), 1, + anon_sym_xor2, + STATE(2667), 1, + sym_comment, + STATE(2808), 1, + aux_sym__repeat_newline, + ACTIONS(5457), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -207312,22 +209474,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [81001] = 7, - ACTIONS(103), 1, + anon_sym_or2, + [83252] = 4, + 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, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2668), 1, sym_comment, - STATE(3073), 1, - sym__flag_equals_value, - ACTIONS(5336), 13, + ACTIONS(5461), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207340,21 +209495,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [81035] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83279] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5346), 1, - sym__space, - ACTIONS(5348), 1, - anon_sym_DOT_DOT2, - STATE(2598), 1, - sym_comment, - ACTIONS(5350), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5344), 13, + ACTIONS(2875), 1, sym__newline, + ACTIONS(5443), 1, + anon_sym_and2, + ACTIONS(5465), 1, + anon_sym_xor2, + STATE(2669), 1, + sym_comment, + STATE(2810), 1, + aux_sym__repeat_newline, + ACTIONS(5463), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -207366,123 +209523,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [81067] = 8, - ACTIONS(103), 1, + anon_sym_or2, + [83312] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(1865), 1, + anon_sym_DASH2, + ACTIONS(5156), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(2529), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2599), 1, + STATE(2670), 1, sym_comment, - STATE(2611), 1, + STATE(2725), 1, sym_path, - STATE(3212), 1, + STATE(2859), 1, sym_cell_path, - ACTIONS(1866), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1868), 11, + ACTIONS(1862), 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, - [81103] = 5, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [83347] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2600), 1, + ACTIONS(1882), 1, + anon_sym_DASH2, + ACTIONS(5156), 1, + anon_sym_DOT2, + STATE(2529), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2671), 1, sym_comment, - ACTIONS(2575), 15, - ts_builtin_sym_end, + STATE(2725), 1, + sym_path, + STATE(2953), 1, + sym_cell_path, + ACTIONS(1880), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [81133] = 4, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [83382] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2601), 1, + ACTIONS(1858), 1, + anon_sym_DASH2, + ACTIONS(5156), 1, + anon_sym_DOT2, + STATE(2529), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2672), 1, sym_comment, - ACTIONS(1641), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 14, + STATE(2725), 1, + sym_path, + STATE(2866), 1, + sym_cell_path, + ACTIONS(1856), 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, - anon_sym_DOT_DOT2, - [81161] = 8, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [83417] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(1874), 1, + anon_sym_DASH2, + ACTIONS(5156), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(2529), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2602), 1, + STATE(2673), 1, sym_comment, - STATE(2611), 1, + STATE(2725), 1, sym_path, - STATE(3143), 1, + STATE(2966), 1, sym_cell_path, - ACTIONS(1882), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1884), 11, + ACTIONS(1872), 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, - [81197] = 5, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [83452] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1894), 1, + anon_sym_DASH2, + ACTIONS(5156), 1, + anon_sym_DOT2, + STATE(2529), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2674), 1, + sym_comment, + STATE(2725), 1, + sym_path, + STATE(2881), 1, + sym_cell_path, + ACTIONS(1892), 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, + [83487] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1890), 1, + anon_sym_DASH2, + ACTIONS(5156), 1, + anon_sym_DOT2, + STATE(2529), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2675), 1, + sym_comment, + STATE(2725), 1, + sym_path, + STATE(2929), 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, + [83522] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2603), 1, + STATE(2676), 1, sym_comment, - ACTIONS(1974), 15, - ts_builtin_sym_end, + ACTIONS(5302), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207494,23 +209703,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, - [81227] = 6, - ACTIONS(103), 1, + [83547] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1706), 1, - sym__space, - ACTIONS(5348), 1, - anon_sym_DOT_DOT2, - STATE(2604), 1, - sym_comment, - ACTIONS(5350), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1619), 13, + ACTIONS(2875), 1, sym__newline, + ACTIONS(5450), 1, + anon_sym_and2, + ACTIONS(5459), 1, + anon_sym_xor2, + STATE(2677), 1, + sym_comment, + STATE(2760), 1, + aux_sym__repeat_newline, + ACTIONS(5448), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -207522,21 +209733,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, - [81259] = 6, - ACTIONS(103), 1, + anon_sym_or2, + [83580] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2152), 1, - sym__space, - ACTIONS(5352), 1, - anon_sym_DOT_DOT2, - STATE(2605), 1, - sym_comment, - ACTIONS(5354), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 13, + ACTIONS(2875), 1, sym__newline, + ACTIONS(5443), 1, + anon_sym_and2, + ACTIONS(5465), 1, + anon_sym_xor2, + STATE(2678), 1, + sym_comment, + STATE(2764), 1, + aux_sym__repeat_newline, + ACTIONS(5432), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -207548,20 +209759,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, - [81291] = 6, - ACTIONS(103), 1, + anon_sym_or2, + [83613] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__space, - ACTIONS(5356), 1, - anon_sym_DOT_DOT2, - STATE(2606), 1, + ACTIONS(5469), 1, + anon_sym_and2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2679), 1, sym_comment, - ACTIONS(5358), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 13, + ACTIONS(5467), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207574,20 +209782,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, - [81323] = 6, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [83642] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2076), 1, - sym__space, - ACTIONS(5360), 1, - anon_sym_DOT_DOT2, - STATE(2607), 1, + STATE(2680), 1, sym_comment, - ACTIONS(5362), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 13, + ACTIONS(5142), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207601,19 +209803,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81355] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83667] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2120), 1, - sym__space, - ACTIONS(5364), 1, - anon_sym_DOT_DOT2, - STATE(2608), 1, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2681), 1, sym_comment, - ACTIONS(5366), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 13, + ACTIONS(5471), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207626,18 +209826,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, - [81387] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83694] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2609), 1, + ACTIONS(5473), 1, + anon_sym_BANG, + STATE(2682), 1, sym_comment, - ACTIONS(1522), 4, + ACTIONS(1458), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1520), 13, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207649,43 +209850,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_COLON, anon_sym_DOT2, - [81415] = 4, + [83721] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2610), 1, - sym_comment, - ACTIONS(1728), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 14, + ACTIONS(5475), 1, anon_sym_EQ, - sym_identifier, + ACTIONS(5477), 1, sym__newline, - anon_sym_PIPE, + ACTIONS(5482), 1, anon_sym_COLON, - anon_sym_RBRACK, + STATE(2683), 1, + sym_comment, + STATE(4634), 1, + aux_sym__repeat_newline, + STATE(5059), 1, + sym_param_type, + ACTIONS(5480), 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, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [81443] = 4, + [83756] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2611), 1, + STATE(2684), 1, sym_comment, - ACTIONS(1464), 4, - ts_builtin_sym_end, + ACTIONS(2506), 2, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1462), 13, + anon_sym_LPAREN2, + ACTIONS(2508), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207697,47 +209899,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_DOT_DOT2, - anon_sym_DOT2, - [81471] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym__unquoted_pattern, + [83783] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1966), 1, - anon_sym_DASH2, - ACTIONS(1968), 1, + ACTIONS(1766), 1, anon_sym_LPAREN2, - ACTIONS(5368), 1, - anon_sym_DOT_DOT2, - STATE(2612), 1, + ACTIONS(5486), 1, + sym__space, + STATE(2685), 1, sym_comment, - ACTIONS(5370), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 11, - anon_sym_EQ, - sym_identifier, + STATE(4672), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5484), 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, - [81507] = 5, + anon_sym_RBRACE, + [83814] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2613), 1, + STATE(2686), 1, sym_comment, - STATE(4777), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 15, - ts_builtin_sym_end, + ACTIONS(5302), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207749,20 +209944,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, - [81537] = 5, + [83839] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2614), 1, + STATE(2687), 1, sym_comment, - ACTIONS(2523), 15, - ts_builtin_sym_end, + ACTIONS(5142), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207774,19 +209966,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, - [81567] = 4, + [83864] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2615), 1, - sym_comment, - ACTIONS(1822), 3, + ACTIONS(2521), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1824), 14, + ACTIONS(2525), 1, + anon_sym_LPAREN2, + ACTIONS(2527), 1, + sym__unquoted_pattern, + STATE(2688), 1, + sym_comment, + ACTIONS(2523), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207800,49 +209996,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, - [81595] = 4, + [83895] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2616), 1, - sym_comment, - ACTIONS(1876), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1874), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(5450), 1, + anon_sym_and2, + ACTIONS(5488), 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, - [81623] = 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(2617), 1, + STATE(2689), 1, sym_comment, - STATE(3084), 1, - sym_cell_path, - ACTIONS(1862), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1864), 11, - sym__newline, + STATE(2724), 1, + aux_sym__repeat_newline, + ACTIONS(5491), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -207853,17 +210018,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, - [81659] = 5, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [83926] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2618), 1, + STATE(2690), 1, sym_comment, - ACTIONS(2567), 15, - ts_builtin_sym_end, + ACTIONS(5302), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207875,20 +210038,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, - [81689] = 5, + [83951] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2619), 1, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2691), 1, sym_comment, - ACTIONS(2635), 15, - ts_builtin_sym_end, + ACTIONS(5493), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207900,17 +210062,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81719] = 4, + [83978] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(2620), 1, + STATE(2692), 1, sym_comment, - ACTIONS(968), 16, + ACTIONS(5495), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207927,48 +210088,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81747] = 12, + [84003] = 3, 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, - 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(2693), 1, sym_comment, - ACTIONS(1886), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1888), 14, + ACTIONS(5497), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207982,80 +210107,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, - [81819] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5378), 1, - anon_sym_DASH2, - STATE(2623), 1, - sym_comment, - STATE(2787), 1, - aux_sym_parameter_repeat1, - STATE(3367), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - 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, - [81863] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84028] = 4, 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, - 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(5499), 1, + anon_sym_and2, + STATE(2694), 1, sym_comment, - STATE(3094), 1, - sym_cell_path, - ACTIONS(1858), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1860), 11, + ACTIONS(5495), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208067,17 +210129,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, - [81927] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_xor2, + anon_sym_or2, + [84055] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(2626), 1, + ACTIONS(5503), 1, + anon_sym_and2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2695), 1, sym_comment, - ACTIONS(1964), 15, - ts_builtin_sym_end, + ACTIONS(5501), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208089,19 +210154,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [81957] = 4, - ACTIONS(103), 1, + [84084] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2627), 1, + ACTIONS(5426), 1, + anon_sym_and2, + STATE(2696), 1, sym_comment, - ACTIONS(1558), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1556), 14, + ACTIONS(5497), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208115,24 +210178,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, - [81985] = 8, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [84111] = 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(2628), 1, + ACTIONS(5499), 1, + anon_sym_and2, + ACTIONS(5505), 1, + anon_sym_xor2, + STATE(2697), 1, sym_comment, - STATE(3122), 1, - sym_cell_path, - ACTIONS(5233), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5231), 11, + ACTIONS(5495), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208144,20 +210201,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, - [82021] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_or2, + [84140] = 5, + 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, + ACTIONS(5426), 1, + anon_sym_and2, + ACTIONS(5428), 1, + anon_sym_xor2, + STATE(2698), 1, sym_comment, - ACTIONS(1726), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 12, + ACTIONS(5497), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208169,24 +210225,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, - [82053] = 8, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_or2, + [84169] = 3, + 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, + STATE(2699), 1, sym_comment, - STATE(3097), 1, - sym_cell_path, - ACTIONS(5251), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5249), 11, + ACTIONS(5507), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208198,50 +210245,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, - [82089] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84194] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, + ACTIONS(2875), 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, + ACTIONS(5450), 1, + anon_sym_and2, + ACTIONS(5459), 1, + anon_sym_xor2, + STATE(2700), 1, sym_comment, - STATE(3363), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, + STATE(2818), 1, aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5384), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [82133] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2632), 1, - sym_comment, - STATE(4777), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 15, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5509), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208252,26 +210274,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_RPAREN, anon_sym_or2, - [82163] = 8, - ACTIONS(103), 1, + [84227] = 3, + 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(2701), 1, sym_comment, - STATE(3213), 1, - sym_cell_path, - ACTIONS(1850), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1853), 11, + ACTIONS(5511), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208283,21 +210293,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, - [82199] = 7, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84252] = 7, + 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, - sym_comment, - STATE(2933), 1, - sym__flag_equals_value, - ACTIONS(4301), 13, + ACTIONS(2875), 1, sym__newline, + ACTIONS(5443), 1, + anon_sym_and2, + ACTIONS(5465), 1, + anon_sym_xor2, + STATE(2702), 1, + sym_comment, + STATE(2837), 1, + aux_sym__repeat_newline, + ACTIONS(5441), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208309,24 +210323,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, - [82233] = 8, - ACTIONS(103), 1, + anon_sym_or2, + [84285] = 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(2635), 1, + ACTIONS(5499), 1, + anon_sym_and2, + STATE(2703), 1, sym_comment, - STATE(3123), 1, - sym_cell_path, - ACTIONS(5273), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5271), 11, + ACTIONS(5507), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208338,23 +210343,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, - [82269] = 8, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_xor2, + anon_sym_or2, + [84312] = 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(2636), 1, + ACTIONS(5426), 1, + anon_sym_and2, + STATE(2704), 1, sym_comment, - STATE(3124), 1, - sym_cell_path, - ACTIONS(5267), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5265), 11, + ACTIONS(5511), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208366,45 +210366,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, - [82305] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_xor2, + anon_sym_or2, + [84339] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1976), 1, + ACTIONS(5515), 1, + anon_sym_EQ, + ACTIONS(5518), 1, + sym__newline, + ACTIONS(5521), 1, + anon_sym_COLON, + ACTIONS(5524), 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, + STATE(4244), 1, + aux_sym__repeat_newline, + STATE(2705), 2, sym_comment, - ACTIONS(5392), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 11, - anon_sym_EQ, + aux_sym_parameter_repeat1, + STATE(3256), 2, + sym_param_type, + sym_param_value, + ACTIONS(5513), 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, - [82341] = 5, - ACTIONS(103), 1, + [84376] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5277), 1, - aux_sym__immediate_decimal_token5, - STATE(2638), 1, + ACTIONS(5499), 1, + anon_sym_and2, + ACTIONS(5505), 1, + anon_sym_xor2, + STATE(2706), 1, sym_comment, - ACTIONS(1736), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 14, + ACTIONS(5507), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208418,18 +210421,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [82371] = 5, + anon_sym_or2, + [84405] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2639), 1, + ACTIONS(5426), 1, + anon_sym_and2, + ACTIONS(5428), 1, + anon_sym_xor2, + STATE(2707), 1, sym_comment, - ACTIONS(994), 15, - ts_builtin_sym_end, + ACTIONS(5511), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208441,21 +210443,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_or2, + [84434] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(5450), 1, anon_sym_and2, + ACTIONS(5459), 1, anon_sym_xor2, + ACTIONS(5528), 1, anon_sym_or2, - [82401] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2640), 1, + STATE(2708), 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, - sym__newline, + STATE(2792), 1, + aux_sym__repeat_newline, + ACTIONS(5526), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208466,20 +210472,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [82429] = 5, + anon_sym_RPAREN, + [84469] = 8, 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(2875), 1, sym__newline, + ACTIONS(5443), 1, + anon_sym_and2, + ACTIONS(5465), 1, + anon_sym_xor2, + ACTIONS(5532), 1, + anon_sym_or2, + STATE(2709), 1, + sym_comment, + STATE(2824), 1, + aux_sym__repeat_newline, + ACTIONS(5530), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208490,18 +210499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [82459] = 4, + anon_sym_RPAREN, + [84504] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, - STATE(2642), 1, + STATE(2710), 1, sym_comment, - ACTIONS(2501), 16, - ts_builtin_sym_end, + STATE(2835), 1, + aux_sym__repeat_newline, + ACTIONS(5534), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208513,19 +210519,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [82487] = 4, + [84531] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2643), 1, - sym_comment, - ACTIONS(5394), 15, + ACTIONS(5443), 1, + anon_sym_and2, + ACTIONS(5536), 1, sym__newline, + STATE(2711), 1, + sym_comment, + STATE(2730), 1, + aux_sym__repeat_newline, + ACTIONS(5539), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208537,20 +210546,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82514] = 4, + [84562] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2644), 1, + ACTIONS(5541), 1, + anon_sym_DOT_DOT2, + STATE(2712), 1, sym_comment, - ACTIONS(1886), 4, + ACTIONS(1716), 2, ts_builtin_sym_end, sym__space, + ACTIONS(5543), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1888), 12, + ACTIONS(1629), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208562,21 +210573,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, - [82541] = 6, - ACTIONS(103), 1, + [84593] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5396), 1, - anon_sym_DOT_DOT2, - STATE(2645), 1, + ACTIONS(5469), 1, + anon_sym_and2, + ACTIONS(5547), 1, + anon_sym_xor2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2713), 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(5545), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208588,20 +210596,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, - [82572] = 7, + anon_sym_RPAREN, + anon_sym_or2, + [84624] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5503), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5551), 1, anon_sym_xor2, - STATE(2646), 1, - sym_comment, - STATE(2678), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(5400), 12, + STATE(2714), 1, + sym_comment, + ACTIONS(5549), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208614,18 +210623,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [82605] = 6, + [84655] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5469), 1, anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2647), 1, + STATE(2715), 1, sym_comment, - ACTIONS(5406), 13, + ACTIONS(5545), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208638,19 +210645,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, - [82636] = 6, + [84684] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5503), 1, anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2648), 1, + STATE(2716), 1, sym_comment, - ACTIONS(5412), 13, + ACTIONS(5549), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208663,15 +210669,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, - [82667] = 4, - ACTIONS(3), 1, + [84713] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2643), 1, - aux_sym__repeat_newline, - STATE(2649), 1, + ACTIONS(5553), 1, + anon_sym_DOT_DOT2, + STATE(2717), 1, sym_comment, - ACTIONS(5418), 15, + ACTIONS(2152), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5555), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2154), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208683,19 +210696,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [82694] = 4, + [84744] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2650), 1, + ACTIONS(5477), 1, + sym__newline, + ACTIONS(5482), 1, + anon_sym_COLON, + ACTIONS(5557), 1, + anon_sym_EQ, + STATE(2718), 1, sym_comment, - STATE(2684), 1, + STATE(4634), 1, aux_sym__repeat_newline, - ACTIONS(5420), 15, - sym__newline, + STATE(4878), 1, + sym_param_type, + ACTIONS(5480), 11, + ts_builtin_sym_end, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208706,43 +210723,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [82721] = 6, + [84779] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5422), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5424), 1, - aux_sym__immediate_decimal_token5, - STATE(2651), 1, + ACTIONS(1828), 1, + sym__unquoted_pattern, + STATE(2719), 1, sym_comment, - ACTIONS(1728), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 11, - anon_sym_EQ, + ACTIONS(884), 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, - [82752] = 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, + [84806] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2652), 1, + STATE(2720), 1, sym_comment, - ACTIONS(5426), 15, + ACTIONS(5559), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208758,14 +210769,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82779] = 4, + [84833] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2653), 1, + STATE(2721), 1, sym_comment, - ACTIONS(5428), 15, + ACTIONS(5561), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208781,18 +210792,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82806] = 6, + [84860] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5469), 1, anon_sym_and2, - ACTIONS(5430), 1, - sym__newline, - STATE(2654), 1, - sym_comment, - STATE(2685), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(5418), 13, + STATE(2722), 1, + sym_comment, + ACTIONS(5455), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208806,18 +210816,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [82837] = 6, + [84889] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5433), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5450), 1, anon_sym_and2, - STATE(2655), 1, - sym_comment, - STATE(2686), 1, + ACTIONS(5563), 1, + sym__newline, + STATE(2715), 1, aux_sym__repeat_newline, - ACTIONS(5420), 13, + STATE(2723), 1, + sym_comment, + ACTIONS(5566), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208831,16 +210841,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [82868] = 5, + [84920] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5469), 1, anon_sym_and2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2656), 1, + STATE(2724), 1, sym_comment, - ACTIONS(5426), 14, + ACTIONS(5559), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208855,16 +210865,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [82897] = 5, + [84949] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2657), 1, + STATE(2725), 1, + sym_comment, + ACTIONS(1533), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1535), 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, + [84976] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5568), 1, + anon_sym_DOT_DOT2, + STATE(2726), 1, sym_comment, - ACTIONS(5428), 14, + ACTIONS(2108), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5570), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2110), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208876,23 +210913,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [82926] = 7, - ACTIONS(3), 1, + [85007] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(5572), 1, + anon_sym_DOT_DOT2, + STATE(2727), 1, + sym_comment, + ACTIONS(2116), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5574), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2118), 11, sym__newline, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2658), 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, + [85038] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5576), 1, + anon_sym_DOT_DOT2, + STATE(2728), 1, sym_comment, - STATE(2687), 1, - aux_sym__repeat_newline, - ACTIONS(5418), 12, + ACTIONS(2124), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5578), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2126), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208903,22 +210963,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [82959] = 7, + [85069] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5503), 1, anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2659), 1, - sym_comment, - STATE(2688), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(5420), 12, + STATE(2729), 1, + sym_comment, + ACTIONS(5461), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208930,19 +210985,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, - [82992] = 6, + [85098] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5503), 1, anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2660), 1, + STATE(2730), 1, sym_comment, - ACTIONS(5426), 13, + ACTIONS(5561), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208955,19 +211009,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, - [83023] = 6, + [85127] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5469), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5547), 1, anon_sym_xor2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2661), 1, + STATE(2731), 1, sym_comment, - ACTIONS(5428), 13, + ACTIONS(5559), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208981,15 +211036,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83054] = 4, + [85158] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(5450), 1, + anon_sym_and2, + ACTIONS(5459), 1, + anon_sym_xor2, + STATE(2731), 1, aux_sym__repeat_newline, - STATE(2662), 1, + STATE(2732), 1, sym_comment, - ACTIONS(5440), 15, - sym__newline, + ACTIONS(5491), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209001,18 +211061,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, - [83081] = 4, + [85191] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(5443), 1, + anon_sym_and2, + ACTIONS(5580), 1, + sym__newline, + STATE(2716), 1, aux_sym__repeat_newline, - STATE(2663), 1, + STATE(2733), 1, sym_comment, - ACTIONS(5442), 15, - sym__newline, + ACTIONS(5583), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209024,19 +211085,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, - [83108] = 5, + [85222] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5469), 1, anon_sym_and2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2664), 1, + STATE(2734), 1, sym_comment, - ACTIONS(5440), 14, + ACTIONS(5471), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209051,16 +211111,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [83137] = 5, - ACTIONS(3), 1, + [85251] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2665), 1, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + ACTIONS(2180), 1, + sym__space, + STATE(2735), 1, sym_comment, - ACTIONS(5442), 14, + STATE(5092), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2182), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209073,20 +211135,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [83166] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [85282] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2666), 1, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + ACTIONS(2132), 1, + sym__space, + STATE(2736), 1, sym_comment, - ACTIONS(5440), 13, + STATE(5092), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2134), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209099,20 +211160,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, - [83197] = 6, + anon_sym_RBRACE, + [85313] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(5443), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5465), 1, anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2667), 1, + STATE(2737), 1, sym_comment, - ACTIONS(5442), 13, - sym__newline, + STATE(2769), 1, + aux_sym__repeat_newline, + ACTIONS(5539), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209125,14 +211187,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83228] = 4, - ACTIONS(3), 1, + [85346] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2668), 1, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + ACTIONS(2136), 1, + sym__space, + STATE(2738), 1, sym_comment, - STATE(2689), 1, - aux_sym__repeat_newline, - ACTIONS(5444), 15, + STATE(5092), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2138), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209145,17 +211211,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, - [83255] = 4, + anon_sym_RBRACE, + [85377] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2669), 1, - sym_comment, - STATE(2690), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(5446), 15, + STATE(2739), 1, + sym_comment, + ACTIONS(5585), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209171,14 +211235,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83282] = 4, + [85404] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(5469), 1, + anon_sym_and2, + ACTIONS(5547), 1, + anon_sym_xor2, + ACTIONS(5589), 1, + anon_sym_or2, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2670), 1, + STATE(2740), 1, sym_comment, - ACTIONS(5448), 15, + ACTIONS(5587), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209191,17 +211261,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [83309] = 4, - ACTIONS(3), 1, + [85437] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2671), 1, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + ACTIONS(2176), 1, + sym__space, + STATE(2741), 1, sym_comment, - ACTIONS(5450), 15, + STATE(5092), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2178), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209214,21 +211285,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, - [83336] = 6, + anon_sym_RBRACE, + [85468] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5452), 1, - sym__newline, - STATE(2672), 1, + STATE(2742), 1, sym_comment, - STATE(2691), 1, + STATE(2796), 1, aux_sym__repeat_newline, - ACTIONS(5444), 13, + ACTIONS(5441), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209240,20 +211306,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, - [83367] = 6, - ACTIONS(3), 1, + [85495] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5455), 1, - sym__newline, - STATE(2673), 1, + STATE(2743), 1, sym_comment, - STATE(2692), 1, - aux_sym__repeat_newline, - ACTIONS(5446), 13, + ACTIONS(1746), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1748), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209265,18 +211330,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, - [83398] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + sym__unquoted_pattern, + [85522] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2674), 1, + ACTIONS(5591), 1, + aux_sym__immediate_decimal_token5, + STATE(2744), 1, sym_comment, - ACTIONS(5448), 14, + ACTIONS(1812), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1814), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209288,19 +211355,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [83427] = 5, + sym__unquoted_pattern, + [85551] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5503), 1, anon_sym_and2, - STATE(540), 1, + ACTIONS(5551), 1, + anon_sym_xor2, + ACTIONS(5595), 1, + anon_sym_or2, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2675), 1, + STATE(2745), 1, sym_comment, - ACTIONS(5450), 14, + ACTIONS(5593), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209313,22 +211382,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, - [83456] = 7, + [85584] = 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(2676), 1, + STATE(2746), 1, sym_comment, - STATE(2693), 1, + STATE(2840), 1, aux_sym__repeat_newline, - ACTIONS(5444), 12, + ACTIONS(5566), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209340,21 +211402,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, - [83489] = 7, + [85611] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5450), 1, anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2677), 1, - sym_comment, - STATE(2694), 1, + ACTIONS(5597), 1, + sym__newline, + STATE(2679), 1, aux_sym__repeat_newline, - ACTIONS(5446), 12, + STATE(2747), 1, + sym_comment, + ACTIONS(5600), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209366,19 +211428,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, - ACTIONS(3), 1, + [85642] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2678), 1, + ACTIONS(5381), 1, + anon_sym_EQ2, + ACTIONS(5602), 1, + sym__space, + STATE(2748), 1, sym_comment, - ACTIONS(5448), 13, + STATE(2919), 1, + aux_sym_attribute_repeat1, + ACTIONS(5377), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209391,19 +211454,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [83553] = 6, + anon_sym_RBRACE, + [85673] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2749), 1, + sym_comment, + ACTIONS(1537), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1539), 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, + [85700] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5469), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5547), 1, anon_sym_xor2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2679), 1, + STATE(2750), 1, sym_comment, - ACTIONS(5450), 13, + ACTIONS(5467), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209417,20 +211503,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83584] = 7, + [85731] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5503), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5551), 1, anon_sym_xor2, - STATE(2679), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2680), 1, + STATE(2751), 1, sym_comment, - ACTIONS(5458), 12, + ACTIONS(5501), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209443,18 +211528,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83617] = 6, + [85762] = 4, ACTIONS(103), 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, + STATE(2752), 1, sym_comment, - ACTIONS(1738), 13, + ACTIONS(1812), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1814), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209468,20 +211550,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [83648] = 6, - ACTIONS(103), 1, + sym__unquoted_pattern, + [85789] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5462), 1, - anon_sym_DOT_DOT2, - STATE(2682), 1, + STATE(2753), 1, sym_comment, - ACTIONS(2152), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5464), 2, + ACTIONS(1541), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1543), 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, - ACTIONS(2154), 11, + [85816] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2754), 1, + sym_comment, + ACTIONS(1900), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1902), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209493,39 +211594,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, - [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, + sym__unquoted_pattern, + [85843] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(2666), 1, aux_sym__repeat_newline, - STATE(2684), 1, + STATE(2755), 1, sym_comment, - ACTIONS(5470), 15, + ACTIONS(5448), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209541,16 +211620,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83737] = 5, + [85870] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5503), 1, anon_sym_and2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2685), 1, + STATE(2756), 1, sym_comment, - ACTIONS(5394), 14, + ACTIONS(5604), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209565,16 +211644,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [83766] = 5, + [85899] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, + STATE(2681), 1, aux_sym__repeat_newline, - STATE(2686), 1, + STATE(2757), 1, sym_comment, - ACTIONS(5470), 14, + ACTIONS(5606), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209587,20 +211664,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, + [85926] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5469), 1, anon_sym_and2, - ACTIONS(5410), 1, + ACTIONS(5547), 1, anon_sym_xor2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2687), 1, + STATE(2758), 1, sym_comment, - ACTIONS(5394), 13, + ACTIONS(5585), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209614,18 +211692,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83826] = 6, + [85957] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5503), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5551), 1, anon_sym_xor2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2688), 1, + STATE(2759), 1, sym_comment, - ACTIONS(5470), 13, + ACTIONS(5604), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209639,14 +211717,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83857] = 4, + [85988] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(5469), 1, + anon_sym_and2, + ACTIONS(5547), 1, + anon_sym_xor2, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2689), 1, + STATE(2760), 1, sym_comment, - ACTIONS(5472), 15, + ACTIONS(5455), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209659,17 +211741,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, - [83884] = 4, + [86019] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(2691), 1, aux_sym__repeat_newline, - STATE(2690), 1, + STATE(2761), 1, sym_comment, - ACTIONS(5474), 15, + ACTIONS(5608), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209685,16 +211765,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83911] = 5, + [86046] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, + STATE(2720), 1, aux_sym__repeat_newline, - STATE(2691), 1, + STATE(2762), 1, sym_comment, - ACTIONS(5472), 14, + ACTIONS(5491), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209707,18 +211785,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, - [83940] = 5, + [86073] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5499), 1, anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2692), 1, + ACTIONS(5505), 1, + anon_sym_xor2, + ACTIONS(5612), 1, + anon_sym_or2, + STATE(2763), 1, sym_comment, - ACTIONS(5474), 14, + ACTIONS(5610), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209731,20 +211812,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [83969] = 6, + anon_sym_RBRACE, + [86104] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5503), 1, anon_sym_and2, - ACTIONS(5410), 1, + ACTIONS(5551), 1, anon_sym_xor2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2693), 1, + STATE(2764), 1, sym_comment, - ACTIONS(5472), 13, + ACTIONS(5461), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209758,19 +211838,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [84000] = 6, + [86135] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5450), 1, anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, + ACTIONS(5614), 1, + sym__newline, + STATE(2734), 1, aux_sym__repeat_newline, - STATE(2694), 1, + STATE(2765), 1, sym_comment, - ACTIONS(5474), 13, - sym__newline, + ACTIONS(5606), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209782,20 +211861,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [84031] = 6, - ACTIONS(103), 1, + [86166] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1706), 1, - sym__space, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(2695), 1, - sym_comment, - ACTIONS(1619), 13, + ACTIONS(2875), 1, sym__newline, + ACTIONS(5450), 1, + anon_sym_and2, + ACTIONS(5459), 1, + anon_sym_xor2, + ACTIONS(5528), 1, + anon_sym_or2, + STATE(2740), 1, + aux_sym__repeat_newline, + STATE(2766), 1, + sym_comment, + ACTIONS(5617), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209807,39 +211890,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, - [84062] = 5, + [86201] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5314), 1, - aux_sym__immediate_decimal_token5, - STATE(2696), 1, - sym_comment, - ACTIONS(1736), 3, - ts_builtin_sym_end, + ACTIONS(1716), 1, sym__space, + ACTIONS(2594), 1, anon_sym_LPAREN2, - ACTIONS(1738), 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(2596), 1, sym__unquoted_pattern, - [84091] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2697), 1, + STATE(2767), 1, sym_comment, - STATE(2806), 1, - aux_sym__repeat_newline, - ACTIONS(5476), 15, + ACTIONS(1629), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209852,18 +211914,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, - [84118] = 4, + anon_sym_RBRACE, + [86232] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2698), 1, + ACTIONS(5443), 1, + anon_sym_and2, + ACTIONS(5619), 1, + sym__newline, + STATE(2768), 1, sym_comment, - STATE(2807), 1, + STATE(2775), 1, aux_sym__repeat_newline, - ACTIONS(5478), 15, - sym__newline, + ACTIONS(5608), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209875,21 +211938,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, - [84145] = 6, - ACTIONS(103), 1, + [86263] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - sym__space, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(2699), 1, + ACTIONS(5503), 1, + anon_sym_and2, + ACTIONS(5551), 1, + anon_sym_xor2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2769), 1, sym_comment, - ACTIONS(1966), 13, + ACTIONS(5561), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209902,16 +211964,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [84176] = 4, + anon_sym_or2, + [86294] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(5443), 1, + anon_sym_and2, + ACTIONS(5465), 1, + anon_sym_xor2, + ACTIONS(5532), 1, + anon_sym_or2, + STATE(2745), 1, aux_sym__repeat_newline, - STATE(2700), 1, + STATE(2770), 1, sym_comment, - ACTIONS(5480), 15, - sym__newline, + ACTIONS(5622), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209923,20 +211992,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, - [84203] = 4, + [86329] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2701), 1, + ACTIONS(5624), 1, + anon_sym_EQ2, + ACTIONS(5626), 1, + sym_short_flag_identifier, + STATE(2771), 1, sym_comment, - ACTIONS(1558), 4, + STATE(3179), 1, + sym__flag_equals_value, + ACTIONS(5389), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1556), 12, + ACTIONS(5387), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209948,16 +212018,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, - [84230] = 4, + [86362] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(5450), 1, + anon_sym_and2, + ACTIONS(5459), 1, + anon_sym_xor2, + STATE(2750), 1, aux_sym__repeat_newline, - STATE(2702), 1, + STATE(2772), 1, sym_comment, - ACTIONS(5482), 15, - sym__newline, + ACTIONS(5600), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209969,21 +212043,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [84257] = 6, + [86395] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5484), 1, + ACTIONS(2875), 1, sym__newline, - STATE(2703), 1, - sym_comment, - STATE(2811), 1, + ACTIONS(5443), 1, + anon_sym_and2, + ACTIONS(5465), 1, + anon_sym_xor2, + STATE(2751), 1, aux_sym__repeat_newline, - ACTIONS(5476), 13, + STATE(2773), 1, + sym_comment, + ACTIONS(5534), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209995,22 +212069,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, - [84288] = 6, - ACTIONS(103), 1, + [86428] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5487), 1, - anon_sym_DOT_DOT2, - STATE(2704), 1, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2774), 1, sym_comment, - ACTIONS(2100), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5489), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 11, + ACTIONS(5628), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210022,20 +212089,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, - [84319] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86455] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5491), 1, - anon_sym_DOT_DOT2, - STATE(2705), 1, + ACTIONS(5503), 1, + anon_sym_and2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2775), 1, sym_comment, - ACTIONS(2076), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5493), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 11, + ACTIONS(5493), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210047,43 +212114,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, - [84350] = 6, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [86484] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5495), 1, + ACTIONS(5541), 1, anon_sym_DOT_DOT2, - STATE(2706), 1, + STATE(2776), 1, sym_comment, - ACTIONS(2120), 2, + ACTIONS(5395), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5497), 2, + ACTIONS(5543), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 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, - [84381] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(2575), 1, - sym__space, - STATE(2707), 1, - sym_comment, - ACTIONS(2577), 13, + ACTIONS(5393), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210095,20 +212142,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, - [84412] = 6, + [86515] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(1030), 1, sym__space, - ACTIONS(1978), 1, + ACTIONS(2556), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2558), 1, sym__unquoted_pattern, - STATE(2708), 1, + STATE(2777), 1, sym_comment, - ACTIONS(1976), 13, + ACTIONS(1008), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210122,18 +212167,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84443] = 5, + [86546] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5499), 1, - aux_sym__immediate_decimal_token5, - STATE(2709), 1, + ACTIONS(5624), 1, + anon_sym_EQ2, + ACTIONS(5630), 1, + sym_long_flag_identifier, + STATE(2778), 1, sym_comment, - ACTIONS(1802), 3, + STATE(3183), 1, + sym__flag_equals_value, + ACTIONS(4328), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 12, + ACTIONS(4326), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210145,44 +212193,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [84472] = 6, + [86579] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2523), 1, + ACTIONS(994), 1, sym__space, - ACTIONS(2629), 1, + ACTIONS(2556), 1, anon_sym_LPAREN2, - STATE(2710), 1, - sym_comment, - ACTIONS(2525), 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, - [84503] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, - ACTIONS(5501), 1, - sym__space, - STATE(2711), 1, + ACTIONS(2558), 1, + sym__unquoted_pattern, + STATE(2779), 1, sym_comment, - STATE(2840), 1, - aux_sym_attribute_repeat1, - ACTIONS(5326), 13, + ACTIONS(996), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210196,18 +212218,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84534] = 6, + [86610] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5503), 1, + ACTIONS(2875), 1, sym__newline, - STATE(2712), 1, + ACTIONS(5450), 1, + anon_sym_and2, + ACTIONS(5459), 1, + anon_sym_xor2, + STATE(2780), 1, sym_comment, STATE(2814), 1, aux_sym__repeat_newline, - ACTIONS(5478), 13, + ACTIONS(5606), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210219,20 +212243,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, - [84565] = 6, + [86643] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(5422), 1, + aux_sym__immediate_decimal_token5, + STATE(2781), 1, + sym_comment, + ACTIONS(1754), 3, + ts_builtin_sym_end, sym__space, - ACTIONS(2631), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2713), 1, - sym_comment, - ACTIONS(2569), 13, + ACTIONS(1756), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210244,19 +212267,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, - [84596] = 5, + sym__unquoted_pattern, + [86672] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(5443), 1, anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2714), 1, + ACTIONS(5465), 1, + anon_sym_xor2, + STATE(2782), 1, sym_comment, - ACTIONS(5480), 14, - sym__newline, + STATE(2820), 1, + aux_sym__repeat_newline, + ACTIONS(5608), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210268,42 +212293,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [84625] = 5, + [86705] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2715), 1, - sym_comment, - ACTIONS(5482), 14, + ACTIONS(5477), 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_xor2, - anon_sym_or2, - [84654] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2716), 1, + ACTIONS(5482), 1, + anon_sym_COLON, + ACTIONS(5632), 1, + anon_sym_EQ, + STATE(2783), 1, sym_comment, - ACTIONS(2501), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2503), 14, - sym__newline, + STATE(4634), 1, + aux_sym__repeat_newline, + STATE(5242), 1, + sym_param_type, + ACTIONS(5480), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210315,20 +212321,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [84681] = 6, - ACTIONS(103), 1, + [86740] = 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(2717), 1, + ACTIONS(5469), 1, + anon_sym_and2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2784), 1, sym_comment, - ACTIONS(2637), 13, + ACTIONS(5585), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210341,21 +212343,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, - [84712] = 7, + anon_sym_xor2, + anon_sym_or2, + [86769] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2875), 1, sym__newline, - ACTIONS(5402), 1, + ACTIONS(5450), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5459), 1, anon_sym_xor2, - STATE(2647), 1, + STATE(2713), 1, aux_sym__repeat_newline, - STATE(2718), 1, + STATE(2785), 1, sym_comment, - ACTIONS(5476), 12, + ACTIONS(5566), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210368,20 +212371,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [84745] = 7, + [86802] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2648), 1, + STATE(2739), 1, aux_sym__repeat_newline, - STATE(2719), 1, + STATE(2786), 1, sym_comment, - ACTIONS(5478), 12, + ACTIONS(5634), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210393,20 +212391,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [84778] = 6, + [86829] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(5443), 1, anon_sym_and2, - ACTIONS(5410), 1, + ACTIONS(5465), 1, anon_sym_xor2, - STATE(540), 1, + STATE(2714), 1, aux_sym__repeat_newline, - STATE(2720), 1, + STATE(2787), 1, sym_comment, - ACTIONS(5480), 13, - sym__newline, + ACTIONS(5583), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210419,44 +212420,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [84809] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - ACTIONS(5508), 1, - sym_short_flag_identifier, - STATE(2721), 1, - sym_comment, - STATE(3126), 1, - sym__flag_equals_value, - ACTIONS(5338), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5336), 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, - [84842] = 6, + [86862] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(1691), 1, + sym__unquoted_pattern, + ACTIONS(2560), 1, sym__space, - ACTIONS(2583), 1, + ACTIONS(2564), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2722), 1, + STATE(2788), 1, sym_comment, - ACTIONS(996), 13, + ACTIONS(2562), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210470,18 +212445,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84873] = 6, - ACTIONS(103), 1, + [86893] = 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(2774), 1, + aux_sym__repeat_newline, + STATE(2789), 1, sym_comment, - ACTIONS(1016), 13, + ACTIONS(5509), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210494,19 +212465,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, - [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, + [86920] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2790), 1, sym_comment, - ACTIONS(5482), 13, + ACTIONS(1582), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1580), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210518,22 +212490,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_or2, - [84935] = 7, + anon_sym_DOT_DOT2, + [86947] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - ACTIONS(5512), 1, - anon_sym_or2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2725), 1, + STATE(2791), 1, sym_comment, - ACTIONS(5510), 12, + STATE(2832), 1, + aux_sym__repeat_newline, + ACTIONS(5636), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210546,20 +212511,23 @@ 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_and2, + anon_sym_xor2, + anon_sym_or2, + [86974] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5469), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5547), 1, anon_sym_xor2, - ACTIONS(5516), 1, + ACTIONS(5589), 1, anon_sym_or2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2726), 1, + STATE(2792), 1, sym_comment, - ACTIONS(5514), 12, + ACTIONS(5638), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210572,14 +212540,14 @@ 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, + [87007] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2652), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2727), 1, + STATE(2793), 1, sym_comment, - ACTIONS(5518), 15, + ACTIONS(5640), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210595,39 +212563,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85028] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5396), 1, - anon_sym_DOT_DOT2, - STATE(2728), 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, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [85059] = 4, + [87034] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2653), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2729), 1, + STATE(2794), 1, sym_comment, - ACTIONS(5520), 15, + ACTIONS(5642), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210643,15 +212586,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85086] = 4, + [87061] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2700), 1, + ACTIONS(5450), 1, + anon_sym_and2, + ACTIONS(5644), 1, + sym__newline, + STATE(2784), 1, aux_sym__repeat_newline, - STATE(2730), 1, + STATE(2795), 1, sym_comment, - ACTIONS(5522), 15, - sym__newline, + ACTIONS(5634), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210663,17 +212609,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, - [85113] = 4, + [87092] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2702), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2731), 1, + STATE(2796), 1, sym_comment, - ACTIONS(5524), 15, + ACTIONS(5647), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210689,18 +212634,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85140] = 6, + [87119] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5443), 1, anon_sym_and2, - ACTIONS(5526), 1, + ACTIONS(5649), 1, sym__newline, - STATE(2714), 1, + STATE(2756), 1, aux_sym__repeat_newline, - STATE(2732), 1, + STATE(2797), 1, sym_comment, - ACTIONS(5522), 13, + ACTIONS(5636), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210714,18 +212659,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [85171] = 6, + [87150] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2144), 1, + ACTIONS(5371), 1, + anon_sym_EQ2, + ACTIONS(5654), 1, sym__space, - STATE(2733), 1, + STATE(2798), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2146), 13, + STATE(2952), 1, + sym__flag_equals_value, + ACTIONS(5652), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210739,18 +212684,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85202] = 6, - ACTIONS(103), 1, + [87181] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2148), 1, - sym__space, - STATE(2734), 1, + ACTIONS(5469), 1, + anon_sym_and2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2799), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2150), 13, + ACTIONS(5640), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210763,21 +212706,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [85233] = 7, + anon_sym_xor2, + anon_sym_or2, + [87210] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5656), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5658), 1, + aux_sym__immediate_decimal_token5, + STATE(2800), 1, + sym_comment, + ACTIONS(1748), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1746), 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, + [87241] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5469), 1, anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - ACTIONS(5516), 1, - anon_sym_or2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2735), 1, + STATE(2801), 1, sym_comment, - ACTIONS(5529), 12, + ACTIONS(5628), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210790,18 +212755,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [85266] = 6, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [87270] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2170), 1, - sym__space, - STATE(2736), 1, + ACTIONS(5503), 1, + anon_sym_and2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2802), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2172), 13, + ACTIONS(5647), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210814,19 +212779,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, - [85297] = 6, + anon_sym_xor2, + anon_sym_or2, + [87299] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2072), 1, - sym__space, - STATE(2737), 1, + STATE(2803), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2074), 13, + ACTIONS(1846), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1848), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210838,20 +212803,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, - [85328] = 6, + anon_sym_DOT_DOT2, + [87326] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5503), 1, anon_sym_and2, - ACTIONS(5531), 1, - sym__newline, - STATE(2656), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2738), 1, + STATE(2804), 1, sym_comment, - ACTIONS(5518), 13, + ACTIONS(5642), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210865,18 +212828,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [85359] = 6, + [87355] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5534), 1, + ACTIONS(2875), 1, sym__newline, - STATE(2657), 1, + ACTIONS(5450), 1, + anon_sym_and2, + ACTIONS(5459), 1, + anon_sym_xor2, + STATE(2758), 1, aux_sym__repeat_newline, - STATE(2739), 1, + STATE(2805), 1, sym_comment, - ACTIONS(5520), 13, + ACTIONS(5634), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210888,20 +212853,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, - [85390] = 6, - ACTIONS(3), 1, + [87388] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5537), 1, - sym__newline, - STATE(2715), 1, - aux_sym__repeat_newline, - STATE(2740), 1, + ACTIONS(4397), 1, + sym__space, + ACTIONS(5371), 1, + anon_sym_EQ2, + STATE(2806), 1, sym_comment, - ACTIONS(5524), 13, + STATE(3046), 1, + sym__flag_equals_value, + ACTIONS(4395), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210913,22 +212878,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, - [85421] = 7, + anon_sym_RBRACE, + [87419] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2875), 1, sym__newline, - ACTIONS(5402), 1, + ACTIONS(5443), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5465), 1, anon_sym_xor2, - STATE(2720), 1, + STATE(2759), 1, aux_sym__repeat_newline, - STATE(2741), 1, + STATE(2807), 1, sym_comment, - ACTIONS(5522), 12, + ACTIONS(5636), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210941,20 +212905,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [85454] = 7, + [87452] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5469), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5547), 1, anon_sym_xor2, - STATE(2724), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2742), 1, + STATE(2808), 1, sym_comment, - ACTIONS(5524), 12, + ACTIONS(5640), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210967,18 +212930,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [85487] = 6, - ACTIONS(3), 1, + [87483] = 4, + ACTIONS(103), 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, + STATE(2809), 1, sym_comment, - ACTIONS(5540), 13, + ACTIONS(1850), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1852), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210990,20 +212952,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, - [85518] = 6, + anon_sym_DOT_DOT2, + [87510] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5503), 1, anon_sym_and2, - ACTIONS(5552), 1, + ACTIONS(5551), 1, anon_sym_xor2, - ACTIONS(5554), 1, - anon_sym_or2, - STATE(2744), 1, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2810), 1, sym_comment, - ACTIONS(5548), 13, + ACTIONS(5642), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211016,13 +212977,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, - [85549] = 3, + anon_sym_or2, + [87541] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2745), 1, + STATE(2793), 1, + aux_sym__repeat_newline, + STATE(2811), 1, sym_comment, - ACTIONS(4680), 16, + ACTIONS(5457), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211035,24 +212998,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85574] = 7, + [87568] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(5660), 1, + anon_sym_DOT, + ACTIONS(5662), 1, + aux_sym__immediate_decimal_token5, + STATE(2812), 1, + sym_comment, + ACTIONS(1756), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1754), 11, + anon_sym_EQ, sym__newline, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2660), 1, - aux_sym__repeat_newline, - STATE(2746), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [87599] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(2011), 1, + sym__space, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + STATE(2813), 1, sym_comment, - ACTIONS(5518), 12, + ACTIONS(2013), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211064,15 +213050,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, - [85607] = 4, + anon_sym_RBRACE, + [87630] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2747), 1, - sym_comment, - STATE(2757), 1, + ACTIONS(5469), 1, + anon_sym_and2, + ACTIONS(5547), 1, + anon_sym_xor2, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(5556), 15, + STATE(2814), 1, + sym_comment, + ACTIONS(5471), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211085,17 +213075,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, - [85634] = 4, - ACTIONS(3), 1, + [87661] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2748), 1, + ACTIONS(1754), 1, + sym__space, + ACTIONS(5051), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5664), 1, + anon_sym_DOT, + STATE(2815), 1, sym_comment, - STATE(2758), 1, - aux_sym__repeat_newline, - ACTIONS(5558), 15, + ACTIONS(1756), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211108,21 +213100,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, - [85661] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [87692] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5560), 1, - sym__newline, - STATE(2749), 1, + STATE(2816), 1, sym_comment, - STATE(2766), 1, - aux_sym__repeat_newline, - ACTIONS(5556), 13, + ACTIONS(1876), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1878), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211133,21 +213123,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, - [85692] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [87719] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5563), 1, - sym__newline, - STATE(2750), 1, + STATE(2817), 1, sym_comment, - STATE(2767), 1, - aux_sym__repeat_newline, - ACTIONS(5558), 13, + ACTIONS(1687), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1689), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211158,23 +213146,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [85723] = 7, + anon_sym_DOT_DOT2, + [87746] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5469), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5547), 1, anon_sym_xor2, - STATE(2751), 1, - sym_comment, - STATE(2773), 1, + STATE(507), 1, aux_sym__repeat_newline, - ACTIONS(5556), 12, + STATE(2818), 1, + sym_comment, + ACTIONS(5628), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211187,20 +213172,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [85756] = 7, - ACTIONS(3), 1, + [87777] = 6, + 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, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern, + ACTIONS(2566), 1, + sym__space, + STATE(2819), 1, sym_comment, - STATE(2774), 1, - aux_sym__repeat_newline, - ACTIONS(5558), 12, + ACTIONS(2568), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211212,21 +213196,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, - [85789] = 7, + anon_sym_RBRACE, + [87808] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5503), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5551), 1, anon_sym_xor2, - STATE(2661), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2753), 1, + STATE(2820), 1, sym_comment, - ACTIONS(5520), 12, + ACTIONS(5493), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211239,14 +213222,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [85822] = 4, - ACTIONS(3), 1, + [87839] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2662), 1, - aux_sym__repeat_newline, - STATE(2754), 1, + ACTIONS(2570), 1, + sym__space, + ACTIONS(2574), 1, + anon_sym_LPAREN2, + ACTIONS(2576), 1, + sym__unquoted_pattern, + STATE(2821), 1, sym_comment, - ACTIONS(5566), 15, + ACTIONS(2572), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211259,17 +213246,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, - [85849] = 4, + anon_sym_RBRACE, + [87870] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2663), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2755), 1, + STATE(2822), 1, sym_comment, - ACTIONS(5568), 15, + ACTIONS(5467), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211285,17 +213270,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85876] = 4, - ACTIONS(103), 1, + [87897] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2756), 1, + STATE(2823), 1, sym_comment, - ACTIONS(1641), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 12, + ACTIONS(4694), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211307,15 +213287,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, - [85903] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [87922] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(5503), 1, + anon_sym_and2, + ACTIONS(5551), 1, + anon_sym_xor2, + ACTIONS(5595), 1, + anon_sym_or2, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2757), 1, + STATE(2824), 1, sym_comment, - ACTIONS(5570), 15, + ACTIONS(5666), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211328,17 +213318,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, + [87955] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(2794), 1, aux_sym__repeat_newline, - STATE(2758), 1, + STATE(2825), 1, sym_comment, - ACTIONS(5572), 15, + ACTIONS(5463), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211354,18 +213341,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85957] = 6, + [87982] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5574), 1, - sym__newline, - STATE(2664), 1, - aux_sym__repeat_newline, - STATE(2759), 1, + STATE(2826), 1, sym_comment, - ACTIONS(5566), 13, + ACTIONS(5668), 16, + anon_sym_EQ, + anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211376,25 +213360,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [85988] = 7, - ACTIONS(103), 1, + anon_sym_RBRACE, + [88007] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - ACTIONS(5577), 1, - sym_long_flag_identifier, - STATE(2760), 1, - sym_comment, - STATE(3204), 1, - sym__flag_equals_value, - ACTIONS(4303), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4301), 11, + ACTIONS(5477), 1, sym__newline, + ACTIONS(5482), 1, + anon_sym_COLON, + ACTIONS(5670), 1, + anon_sym_EQ, + STATE(2827), 1, + sym_comment, + STATE(4634), 1, + aux_sym__repeat_newline, + STATE(4922), 1, + sym_param_type, + ACTIONS(5480), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211405,17 +213389,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, - [86021] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [88042] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2761), 1, + STATE(2828), 1, sym_comment, - ACTIONS(1822), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1824), 12, + ACTIONS(5672), 16, + anon_sym_EQ, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211427,19 +213409,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, - [86048] = 6, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + [88067] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(5581), 1, - sym__space, - STATE(2762), 1, + STATE(2829), 1, sym_comment, - STATE(4626), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5579), 13, + STATE(2841), 1, + aux_sym__repeat_newline, + ACTIONS(5583), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211452,23 +213432,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, - [86079] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, anon_sym_and2, - ACTIONS(5404), 1, anon_sym_xor2, - ACTIONS(5585), 1, anon_sym_or2, - STATE(2763), 1, + [88094] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5473), 1, + anon_sym_QMARK2, + STATE(2830), 1, sym_comment, - STATE(2778), 1, - aux_sym__repeat_newline, - ACTIONS(5583), 11, + ACTIONS(1458), 15, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211479,16 +213456,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, - [86114] = 4, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_DOT2, + [88121] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2764), 1, + STATE(2721), 1, + aux_sym__repeat_newline, + STATE(2831), 1, sym_comment, - ACTIONS(1726), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 14, + ACTIONS(5539), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211501,20 +213478,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, - sym__unquoted_pattern, - [86141] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [88148] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5587), 1, - sym__newline, - STATE(2665), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2765), 1, + STATE(2832), 1, sym_comment, - ACTIONS(5568), 13, + ACTIONS(5604), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211526,18 +213501,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, - [86172] = 5, - ACTIONS(3), 1, + [88175] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2766), 1, + ACTIONS(2021), 1, + sym__space, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern, + STATE(2833), 1, sym_comment, - ACTIONS(5570), 14, + ACTIONS(2023), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211550,19 +213528,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, - [86201] = 5, + anon_sym_RBRACE, + [88206] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5450), 1, anon_sym_and2, - STATE(540), 1, + ACTIONS(5674), 1, + sym__newline, + STATE(2799), 1, aux_sym__repeat_newline, - STATE(2767), 1, + STATE(2834), 1, sym_comment, - ACTIONS(5572), 14, - sym__newline, + ACTIONS(5457), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211576,15 +213554,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [86230] = 4, - ACTIONS(103), 1, + [88237] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2768), 1, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2835), 1, sym_comment, - ACTIONS(1802), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 14, + ACTIONS(5501), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211597,18 +213574,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [86257] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [88264] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2769), 1, - sym_comment, - ACTIONS(1870), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1872), 14, + ACTIONS(5450), 1, + anon_sym_and2, + ACTIONS(5677), 1, sym__newline, + STATE(2801), 1, + aux_sym__repeat_newline, + STATE(2836), 1, + sym_comment, + ACTIONS(5509), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211620,24 +213600,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [86284] = 8, + anon_sym_xor2, + anon_sym_or2, + [88295] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5503), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5551), 1, anon_sym_xor2, - ACTIONS(5592), 1, - anon_sym_or2, - STATE(2735), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2770), 1, + STATE(2837), 1, sym_comment, - ACTIONS(5590), 11, + ACTIONS(5647), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211649,20 +213626,19 @@ 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, + [88326] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5443), 1, anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2666), 1, + ACTIONS(5680), 1, + sym__newline, + STATE(2804), 1, aux_sym__repeat_newline, - STATE(2771), 1, + STATE(2838), 1, sym_comment, - ACTIONS(5566), 12, + ACTIONS(5463), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211674,21 +213650,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, - [86352] = 7, + [88357] = 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(2667), 1, + STATE(2822), 1, aux_sym__repeat_newline, - STATE(2772), 1, + STATE(2839), 1, sym_comment, - ACTIONS(5568), 12, + ACTIONS(5600), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211700,19 +213672,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, - [86385] = 6, + [88384] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2773), 1, + STATE(2840), 1, sym_comment, - ACTIONS(5570), 13, + ACTIONS(5545), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211725,19 +213695,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, - [86416] = 6, + [88411] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(2774), 1, + STATE(2841), 1, sym_comment, - ACTIONS(5572), 13, + ACTIONS(5549), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211750,16 +213718,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, - [86447] = 4, + [88438] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2670), 1, + ACTIONS(5443), 1, + anon_sym_and2, + ACTIONS(5683), 1, + sym__newline, + STATE(2695), 1, aux_sym__repeat_newline, - STATE(2775), 1, + STATE(2842), 1, sym_comment, - ACTIONS(5400), 15, - sym__newline, + ACTIONS(5534), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211771,25 +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, - [86474] = 8, + [88469] = 3, 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, + STATE(2843), 1, sym_comment, - ACTIONS(5594), 11, + ACTIONS(1543), 15, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211800,23 +213765,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, - [86509] = 8, + anon_sym_COLON, + anon_sym_DOT2, + [88493] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + STATE(2844), 1, + sym_comment, + ACTIONS(1580), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1582), 13, + anon_sym_EQ, + sym_identifier, 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, + anon_sym_PIPE, + 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, + [88519] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + STATE(2845), 1, sym_comment, - ACTIONS(5596), 11, + STATE(5092), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2180), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2182), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211827,21 +213813,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, - [86544] = 7, - ACTIONS(3), 1, + [88549] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - ACTIONS(5512), 1, - anon_sym_or2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2778), 1, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + STATE(2846), 1, sym_comment, - ACTIONS(5598), 12, + STATE(5092), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2132), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2134), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211853,13 +213837,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, + [88579] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5686), 1, + sym_identifier, + ACTIONS(5688), 1, + sym__newline, + ACTIONS(5690), 1, + anon_sym_RBRACK, + ACTIONS(5692), 1, + anon_sym_DOLLAR, + ACTIONS(5694), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5696), 1, + anon_sym_DASH_DASH, + ACTIONS(5698), 1, + anon_sym_DASH2, + STATE(2483), 1, + sym_param_long_flag, + STATE(2599), 1, + sym__param_name, + STATE(2847), 1, + sym_comment, + STATE(2851), 1, + aux_sym__repeat_newline, + STATE(3234), 1, + aux_sym_parameter_parens_repeat1, + STATE(3334), 1, + sym_param_rest, + STATE(3336), 1, + sym_param_opt, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 1, + sym_parameter, + [88631] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5686), 1, + sym_identifier, + ACTIONS(5688), 1, + sym__newline, + ACTIONS(5692), 1, + anon_sym_DOLLAR, + ACTIONS(5694), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5696), 1, + anon_sym_DASH_DASH, + ACTIONS(5698), 1, + anon_sym_DASH2, + ACTIONS(5700), 1, anon_sym_RPAREN, - [86577] = 3, + STATE(2483), 1, + sym_param_long_flag, + STATE(2599), 1, + sym__param_name, + STATE(2848), 1, + sym_comment, + STATE(2852), 1, + aux_sym__repeat_newline, + STATE(3240), 1, + aux_sym_parameter_parens_repeat1, + STATE(3334), 1, + sym_param_rest, + STATE(3336), 1, + sym_param_opt, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 1, + sym_parameter, + [88683] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2779), 1, + ACTIONS(5702), 1, + anon_sym_and2, + ACTIONS(5704), 1, + anon_sym_xor2, + ACTIONS(5706), 1, + anon_sym_or2, + STATE(2849), 1, sym_comment, - ACTIONS(5150), 16, + ACTIONS(5610), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211871,17 +213931,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, - [86602] = 3, + [88713] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2780), 1, + STATE(2850), 1, sym_comment, - ACTIONS(5269), 16, + ACTIONS(5708), 15, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211895,17 +213952,121 @@ 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, - [86627] = 4, + [88737] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2671), 1, + ACTIONS(5686), 1, + sym_identifier, + ACTIONS(5688), 1, + sym__newline, + ACTIONS(5692), 1, + anon_sym_DOLLAR, + ACTIONS(5694), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5696), 1, + anon_sym_DASH_DASH, + ACTIONS(5698), 1, + anon_sym_DASH2, + ACTIONS(5710), 1, + anon_sym_RBRACK, + STATE(2483), 1, + sym_param_long_flag, + STATE(2599), 1, + sym__param_name, + STATE(2851), 1, + sym_comment, + STATE(3139), 1, + aux_sym_parameter_parens_repeat1, + STATE(3334), 1, + sym_param_rest, + STATE(3336), 1, + sym_param_opt, + STATE(3344), 1, aux_sym__repeat_newline, - STATE(2781), 1, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 1, + sym_parameter, + [88789] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5686), 1, + sym_identifier, + ACTIONS(5688), 1, + sym__newline, + ACTIONS(5692), 1, + anon_sym_DOLLAR, + ACTIONS(5694), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5696), 1, + anon_sym_DASH_DASH, + ACTIONS(5698), 1, + anon_sym_DASH2, + ACTIONS(5712), 1, + anon_sym_RPAREN, + STATE(2483), 1, + sym_param_long_flag, + STATE(2599), 1, + sym__param_name, + STATE(2852), 1, + sym_comment, + STATE(3143), 1, + aux_sym_parameter_parens_repeat1, + STATE(3334), 1, + sym_param_rest, + STATE(3336), 1, + sym_param_opt, + STATE(3344), 1, + aux_sym__repeat_newline, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 1, + sym_parameter, + [88841] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5714), 1, + sym_identifier, + ACTIONS(5719), 1, + anon_sym_DOLLAR, + ACTIONS(5722), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5725), 1, + anon_sym_DASH_DASH, + ACTIONS(5728), 1, + anon_sym_DASH2, + STATE(2483), 1, + sym_param_long_flag, + STATE(2599), 1, + sym__param_name, + STATE(3334), 1, + sym_param_rest, + STATE(3336), 1, + sym_param_opt, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 1, + sym_parameter, + STATE(2853), 2, sym_comment, - ACTIONS(5458), 15, + aux_sym_parameter_parens_repeat1, + ACTIONS(5717), 3, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + [88887] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5731), 1, + anon_sym_and2, + ACTIONS(5733), 1, + anon_sym_xor2, + ACTIONS(5735), 1, + anon_sym_or2, + STATE(2854), 1, + sym_comment, + ACTIONS(5424), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211917,16 +214078,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [86654] = 3, - ACTIONS(3), 1, + [88917] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2782), 1, + STATE(2855), 1, sym_comment, - ACTIONS(5150), 16, + ACTIONS(2148), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2150), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211940,15 +214100,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, + [88943] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2783), 1, + STATE(2856), 1, sym_comment, - ACTIONS(5269), 16, + ACTIONS(4694), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211960,22 +214118,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86704] = 4, - ACTIONS(103), 1, + [88967] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2784), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + ACTIONS(5737), 1, + anon_sym_DOT, + STATE(2857), 1, sym_comment, - ACTIONS(1874), 4, - ts_builtin_sym_end, + STATE(3631), 1, + sym__immediate_decimal, + ACTIONS(5739), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5741), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3681), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1599), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [89007] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2090), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1876), 12, + ACTIONS(5743), 1, + anon_sym_LBRACK2, + STATE(2858), 1, + sym_comment, + ACTIONS(2092), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211987,42 +214171,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_DOT_DOT2, - [86731] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [89035] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - ACTIONS(5602), 1, + ACTIONS(1858), 1, anon_sym_DASH2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2785), 1, + STATE(2859), 1, sym_comment, - STATE(2826), 1, - sym_cell_path, - ACTIONS(5600), 11, + ACTIONS(1856), 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, - [86766] = 3, + [89061] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2786), 1, - sym_comment, - ACTIONS(5150), 16, + ACTIONS(5745), 1, sym__newline, + STATE(788), 1, + aux_sym__pipe_separator, + STATE(2860), 1, + sym_comment, + STATE(3418), 1, + aux_sym__repeat_newline, + ACTIONS(5748), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2377), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -212032,76 +214220,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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [86791] = 9, + [89093] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5606), 1, - anon_sym_EQ, - ACTIONS(5609), 1, + ACTIONS(5686), 1, + sym_identifier, + ACTIONS(5688), 1, sym__newline, - ACTIONS(5612), 1, - anon_sym_COLON, - ACTIONS(5615), 1, + ACTIONS(5692), 1, + anon_sym_DOLLAR, + ACTIONS(5694), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5696), 1, + anon_sym_DASH_DASH, + ACTIONS(5698), 1, anon_sym_DASH2, - STATE(4189), 1, + ACTIONS(5750), 1, + anon_sym_RPAREN, + STATE(2483), 1, + sym_param_long_flag, + STATE(2599), 1, + sym__param_name, + STATE(2861), 1, + sym_comment, + STATE(3242), 1, + aux_sym_parameter_parens_repeat1, + STATE(3334), 1, + sym_param_rest, + STATE(3336), 1, + sym_param_opt, + STATE(3344), 1, aux_sym__repeat_newline, - STATE(2787), 2, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 1, + sym_parameter, + [89145] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5754), 1, + anon_sym_DASH2, + ACTIONS(5756), 1, + anon_sym_DOT_DOT2, + STATE(2862), 1, sym_comment, - aux_sym_parameter_repeat1, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5604), 8, + ACTIONS(5758), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5752), 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, - [86828] = 6, - ACTIONS(3), 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, - sym_comment, - ACTIONS(5400), 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, - [86859] = 6, + [89175] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5340), 1, - anon_sym_EQ2, - ACTIONS(5622), 1, + ACTIONS(5602), 1, sym__space, - STATE(2789), 1, + STATE(2863), 1, sym_comment, - STATE(2955), 1, - sym__flag_equals_value, - ACTIONS(5620), 13, + STATE(2919), 1, + aux_sym_attribute_repeat1, + ACTIONS(5377), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212115,18 +214302,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [86890] = 6, - ACTIONS(103), 1, + [89203] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4367), 1, - sym__space, - ACTIONS(5340), 1, - anon_sym_EQ2, - STATE(2790), 1, + STATE(2864), 1, sym_comment, - STATE(3070), 1, - sym__flag_equals_value, - ACTIONS(4365), 13, + ACTIONS(1539), 15, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212138,51 +214321,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, - [86921] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1853), 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, - sym_comment, - STATE(2826), 1, - sym_cell_path, - ACTIONS(1850), 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, - [86956] = 8, + anon_sym_DOT2, + [89227] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(1629), 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, + ACTIONS(5756), 1, + anon_sym_DOT_DOT2, + STATE(2865), 1, sym_comment, - STATE(2934), 1, - sym_cell_path, - ACTIONS(1862), 11, + ACTIONS(5758), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1716), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -212194,76 +214347,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [86991] = 8, + [89257] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, + ACTIONS(2612), 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, + STATE(2866), 1, sym_comment, - STATE(2843), 1, - sym_cell_path, - ACTIONS(1866), 11, + ACTIONS(2610), 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, - [87026] = 8, - ACTIONS(3), 1, + [89283] = 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, + ACTIONS(5257), 1, + anon_sym_EQ2, + STATE(2867), 1, sym_comment, - STATE(3032), 1, - sym_cell_path, - ACTIONS(1878), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5259), 14, sym__newline, + sym__space, + 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, - [87061] = 8, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + anon_sym_COLON2, + [89309] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1884), 1, + ACTIONS(2110), 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(5760), 1, + anon_sym_DOT_DOT2, + STATE(2868), 1, sym_comment, - STATE(2899), 1, - sym_cell_path, - ACTIONS(1882), 11, + ACTIONS(5762), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2108), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -212275,22 +214415,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [87096] = 8, + [89339] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1860), 1, + ACTIONS(2118), 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, + ACTIONS(5764), 1, + anon_sym_DOT_DOT2, + STATE(2869), 1, sym_comment, - STATE(2914), 1, - sym_cell_path, - ACTIONS(1858), 11, + ACTIONS(5766), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2116), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -212302,12 +214439,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [87131] = 3, - ACTIONS(3), 1, + [89369] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2797), 1, + ACTIONS(2525), 1, + anon_sym_LPAREN2, + ACTIONS(2527), 1, + sym__unquoted_pattern, + STATE(2870), 1, sym_comment, - ACTIONS(5269), 16, + ACTIONS(2521), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2523), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212319,17 +214463,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, - [87156] = 3, - ACTIONS(3), 1, + [89399] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2798), 1, + ACTIONS(2594), 1, + anon_sym_LPAREN2, + ACTIONS(2596), 1, + sym__unquoted_pattern, + STATE(2871), 1, sym_comment, - ACTIONS(5624), 16, + ACTIONS(1716), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1629), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212341,17 +214487,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, - [87181] = 3, - ACTIONS(3), 1, + [89429] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2799), 1, + ACTIONS(884), 1, + sym__space, + ACTIONS(5017), 1, + sym__unquoted_pattern, + STATE(2872), 1, sym_comment, - ACTIONS(5626), 16, + ACTIONS(858), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212365,18 +214510,103 @@ 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, - [87206] = 4, + [89457] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - STATE(2800), 1, + ACTIONS(2126), 1, + anon_sym_DASH2, + ACTIONS(5768), 1, + anon_sym_DOT_DOT2, + STATE(2873), 1, + sym_comment, + ACTIONS(5770), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2124), 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, + [89487] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2154), 1, + anon_sym_DASH2, + ACTIONS(5772), 1, + anon_sym_DOT_DOT2, + STATE(2874), 1, + sym_comment, + ACTIONS(5774), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2152), 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, + [89517] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5686), 1, + sym_identifier, + ACTIONS(5688), 1, + sym__newline, + ACTIONS(5692), 1, + anon_sym_DOLLAR, + ACTIONS(5694), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5696), 1, + anon_sym_DASH_DASH, + ACTIONS(5698), 1, + anon_sym_DASH2, + ACTIONS(5776), 1, + anon_sym_PIPE, + STATE(2483), 1, + sym_param_long_flag, + STATE(2599), 1, + sym__param_name, + STATE(2875), 1, sym_comment, - ACTIONS(5624), 15, + STATE(2942), 1, + aux_sym__repeat_newline, + STATE(3162), 1, + aux_sym_parameter_parens_repeat1, + STATE(3334), 1, + sym_param_rest, + STATE(3336), 1, + sym_param_opt, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 1, + sym_parameter, + [89569] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5381), 1, + anon_sym_EQ2, + ACTIONS(5778), 1, sym__newline, + ACTIONS(5780), 1, + sym__space, + STATE(2876), 1, + sym_comment, + STATE(3025), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(5782), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212388,17 +214618,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, - [87233] = 4, - ACTIONS(3), 1, + [89601] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_and2, - STATE(2801), 1, + ACTIONS(5624), 1, + anon_sym_EQ2, + STATE(2877), 1, sym_comment, - ACTIONS(5626), 15, + STATE(3133), 1, + sym__flag_equals_value, + ACTIONS(4397), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4395), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212410,20 +214642,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor2, - anon_sym_or2, - [87260] = 5, - ACTIONS(3), 1, + [89631] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - ACTIONS(5544), 1, - anon_sym_xor2, - STATE(2802), 1, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + STATE(2878), 1, sym_comment, - ACTIONS(5624), 14, + ACTIONS(2011), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2013), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212435,19 +214666,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, - [87289] = 5, - ACTIONS(3), 1, + [89661] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_and2, - ACTIONS(5552), 1, - anon_sym_xor2, - STATE(2803), 1, + ACTIONS(2556), 1, + anon_sym_LPAREN2, + ACTIONS(2558), 1, + sym__unquoted_pattern, + STATE(2879), 1, sym_comment, - ACTIONS(5626), 14, + ACTIONS(1030), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1008), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212459,21 +214690,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_or2, - [87318] = 6, - ACTIONS(3), 1, + [89691] = 6, + 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, + ACTIONS(2556), 1, + anon_sym_LPAREN2, + ACTIONS(2558), 1, + sym__unquoted_pattern, + STATE(2880), 1, sym_comment, - ACTIONS(5458), 13, + ACTIONS(994), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(996), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212484,15 +214714,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, + [89721] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1890), 1, + anon_sym_DASH2, + STATE(2881), 1, + sym_comment, + ACTIONS(1888), 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_xor2, - anon_sym_or2, - [87349] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [89747] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2805), 1, + STATE(2882), 1, sym_comment, - ACTIONS(5631), 16, + ACTIONS(5142), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212504,19 +214754,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_and2, anon_sym_xor2, anon_sym_or2, - [87374] = 4, + [89771] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2806), 1, + STATE(2883), 1, + sym_comment, + ACTIONS(1689), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1687), 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, + [89797] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2884), 1, sym_comment, - ACTIONS(5406), 15, + ACTIONS(5302), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212528,18 +214797,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87401] = 4, + [89821] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2807), 1, + STATE(2885), 1, sym_comment, - ACTIONS(5412), 15, + ACTIONS(5142), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212551,16 +214818,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87428] = 3, + [89845] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2808), 1, + STATE(2886), 1, sym_comment, - ACTIONS(5633), 16, + ACTIONS(5302), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212572,19 +214839,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, - [87453] = 4, + [89869] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - STATE(2809), 1, + STATE(2887), 1, sym_comment, - ACTIONS(5631), 15, + ACTIONS(5142), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212596,18 +214860,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, - [87480] = 4, - ACTIONS(3), 1, + [89893] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_and2, - STATE(2810), 1, + ACTIONS(5786), 1, + sym__space, + STATE(2888), 2, sym_comment, - ACTIONS(5633), 15, + aux_sym_attribute_repeat1, + ACTIONS(5784), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212621,18 +214885,13 @@ 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, - [87507] = 5, + [89919] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2811), 1, + STATE(2889), 1, sym_comment, - ACTIONS(5406), 14, + ACTIONS(5302), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212644,19 +214903,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87536] = 5, + [89943] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - ACTIONS(5544), 1, - anon_sym_xor2, - STATE(2812), 1, + STATE(2890), 1, sym_comment, - ACTIONS(5631), 14, + ACTIONS(5495), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212668,19 +214924,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, - [87565] = 5, + [89967] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_and2, - ACTIONS(5552), 1, - anon_sym_xor2, - STATE(2813), 1, + STATE(2891), 1, sym_comment, - ACTIONS(5633), 14, + ACTIONS(5497), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212692,19 +214945,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [87594] = 5, + [89991] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5702), 1, anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2814), 1, + STATE(2892), 1, sym_comment, - ACTIONS(5412), 14, + ACTIONS(5495), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212716,17 +214968,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [87623] = 4, + [90017] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1820), 1, - sym__unquoted_pattern, - STATE(2815), 1, + ACTIONS(5731), 1, + anon_sym_and2, + STATE(2893), 1, sym_comment, - ACTIONS(968), 15, + ACTIONS(5497), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -212739,22 +214990,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, - [87650] = 6, - ACTIONS(103), 1, + [90043] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(2816), 1, + ACTIONS(5702), 1, + anon_sym_and2, + ACTIONS(5704), 1, + anon_sym_xor2, + STATE(2894), 1, sym_comment, - ACTIONS(1964), 2, + ACTIONS(5495), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(1966), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212766,16 +215014,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, - [87680] = 4, - ACTIONS(103), 1, + anon_sym_or2, + [90071] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2817), 1, + ACTIONS(5731), 1, + anon_sym_and2, + ACTIONS(5733), 1, + anon_sym_xor2, + STATE(2895), 1, sym_comment, - ACTIONS(1802), 3, + ACTIONS(5497), 13, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212787,23 +215037,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, - sym__unquoted_pattern, - [87706] = 7, + anon_sym_or2, + [90099] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5635), 1, - sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2818), 1, + STATE(2896), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(5638), 3, + ACTIONS(5507), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -212813,16 +215056,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, - [87738] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90123] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2819), 1, + STATE(2897), 1, sym_comment, - ACTIONS(1870), 3, + ACTIONS(5511), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1872), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212834,16 +215077,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [87764] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90147] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2820), 1, + ACTIONS(5702), 1, + anon_sym_and2, + STATE(2898), 1, sym_comment, - ACTIONS(2084), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2086), 13, + ACTIONS(5507), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212855,42 +215100,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, - [87790] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5642), 1, - anon_sym_DASH2, - ACTIONS(5644), 1, - anon_sym_DOT_DOT2, - STATE(2821), 1, - sym_comment, - ACTIONS(5646), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5640), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [87820] = 4, + anon_sym_xor2, + anon_sym_or2, + [90173] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2822), 1, - sym_comment, - ACTIONS(5257), 2, - sym__space, + ACTIONS(5276), 1, anon_sym_EQ2, - ACTIONS(5259), 13, + STATE(2899), 1, + sym_comment, + ACTIONS(5278), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212901,21 +215122,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, - [87846] = 6, - ACTIONS(3), 1, + anon_sym_COLON2, + [90199] = 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(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern, + STATE(2900), 1, sym_comment, - ACTIONS(5540), 12, + ACTIONS(2566), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2568), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212927,19 +215148,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [87876] = 6, + [90229] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(2025), 1, anon_sym_LPAREN2, - STATE(2824), 1, + ACTIONS(2031), 1, + sym__unquoted_pattern, + STATE(2901), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2144), 2, + ACTIONS(2021), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2146), 11, + ACTIONS(2023), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212951,63 +215172,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, - [87906] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5654), 1, - aux_sym__immediate_decimal_token5, - STATE(2825), 1, - sym_comment, - ACTIONS(1804), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 11, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [87934] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1868), 1, - anon_sym_DASH2, - STATE(2826), 1, - sym_comment, - ACTIONS(1866), 14, - anon_sym_EQ, - sym_identifier, - 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, - [87960] = 6, + [90259] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5656), 1, + ACTIONS(5702), 1, anon_sym_and2, - ACTIONS(5658), 1, + ACTIONS(5704), 1, anon_sym_xor2, - ACTIONS(5660), 1, - anon_sym_or2, - STATE(2827), 1, + STATE(2902), 1, sym_comment, - ACTIONS(5548), 12, + ACTIONS(5507), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213020,48 +215194,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, - [87990] = 14, + anon_sym_or2, + [90287] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5662), 1, - sym_identifier, - ACTIONS(5667), 1, - anon_sym_DOLLAR, - ACTIONS(5670), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5673), 1, - anon_sym_DASH_DASH, - ACTIONS(5676), 1, - anon_sym_DASH2, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - STATE(2828), 2, - sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(5665), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - [88036] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5287), 1, - anon_sym_EQ2, - STATE(2829), 1, + ACTIONS(5731), 1, + anon_sym_and2, + ACTIONS(5733), 1, + anon_sym_xor2, + STATE(2903), 1, sym_comment, - ACTIONS(5289), 14, + ACTIONS(5511), 13, + ts_builtin_sym_end, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213072,21 +215217,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_COLON2, - [88062] = 6, + anon_sym_or2, + [90315] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - STATE(2830), 1, + ACTIONS(1691), 1, + sym__unquoted_pattern, + ACTIONS(2564), 1, + anon_sym_LPAREN2, + STATE(2904), 1, sym_comment, - STATE(3135), 1, - sym__flag_equals_value, - ACTIONS(4367), 2, + ACTIONS(2560), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4365), 11, + ACTIONS(2562), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213098,13 +215242,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, - [88092] = 3, - ACTIONS(3), 1, + [90345] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2831), 1, + ACTIONS(5624), 1, + anon_sym_EQ2, + STATE(2905), 1, sym_comment, - ACTIONS(4680), 15, + STATE(3125), 1, + sym__flag_equals_value, + ACTIONS(5654), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5652), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213116,22 +215266,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, - [88116] = 6, + [90375] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(2574), 1, anon_sym_LPAREN2, - STATE(2832), 1, + ACTIONS(2576), 1, + sym__unquoted_pattern, + STATE(2906), 1, sym_comment, - STATE(4646), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5581), 2, + ACTIONS(2570), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5579), 11, + ACTIONS(2572), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213143,15 +215290,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, - [88146] = 4, + [90405] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2833), 1, + STATE(2907), 1, sym_comment, - ACTIONS(5241), 2, + ACTIONS(5263), 2, sym__space, anon_sym_EQ2, - ACTIONS(5243), 13, + ACTIONS(5265), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213165,19 +215312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88172] = 6, + [90431] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2834), 1, + STATE(2908), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2148), 2, - ts_builtin_sym_end, + ACTIONS(5311), 2, sym__space, - ACTIONS(2150), 11, + anon_sym_EQ2, + ACTIONS(5313), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213189,16 +215332,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, - [88202] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90457] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5253), 1, - anon_sym_EQ2, - STATE(2835), 1, + STATE(2909), 1, sym_comment, - ACTIONS(5255), 14, - sym__newline, + ACTIONS(5331), 2, sym__space, + anon_sym_EQ2, + ACTIONS(5333), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213209,18 +215354,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COLON2, - [88228] = 4, + [90483] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(856), 1, + sym_raw_string_begin, + ACTIONS(3291), 1, + anon_sym_DQUOTE, + ACTIONS(3293), 1, + anon_sym_SQUOTE, + ACTIONS(3295), 1, + anon_sym_BQUOTE, + ACTIONS(3297), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3299), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5789), 1, + aux_sym_env_var_token1, + STATE(2910), 1, + sym_comment, + STATE(3082), 1, + sym__inter_single_quotes, + STATE(3083), 1, + sym__inter_double_quotes, + STATE(4798), 2, + sym_val_string, + sym_val_interpolated, + STATE(2455), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [90527] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2836), 1, + STATE(2911), 1, sym_comment, - ACTIONS(2501), 3, + ACTIONS(1746), 3, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(2503), 12, + ACTIONS(1748), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213233,19 +215409,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, sym__unquoted_pattern, - [88254] = 6, + [90553] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2837), 1, + ACTIONS(5099), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5791), 1, + anon_sym_DOT, + STATE(2912), 1, sym_comment, - ACTIONS(994), 2, + ACTIONS(1754), 2, ts_builtin_sym_end, sym__space, - ACTIONS(996), 11, + ACTIONS(1756), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213257,19 +215433,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, - [88284] = 6, - ACTIONS(103), 1, + [90583] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(5662), 1, + aux_sym__immediate_decimal_token5, + STATE(2913), 1, + sym_comment, + ACTIONS(1756), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1754), 11, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2838), 1, + [90611] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2914), 1, sym_comment, - ACTIONS(1018), 2, - ts_builtin_sym_end, + ACTIONS(5253), 2, sym__space, - ACTIONS(1016), 11, + anon_sym_EQ2, + ACTIONS(5255), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213281,16 +215476,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [88314] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90637] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5501), 1, - sym__space, - STATE(2839), 1, + STATE(2915), 1, sym_comment, - STATE(2867), 1, - aux_sym_attribute_repeat1, - ACTIONS(5679), 13, + ACTIONS(5276), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5278), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213304,16 +215500,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88342] = 5, + [90663] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5501), 1, + ACTIONS(5602), 1, sym__space, - STATE(2840), 1, + STATE(2916), 1, sym_comment, - STATE(2857), 1, + STATE(2944), 1, aux_sym_attribute_repeat1, - ACTIONS(5681), 13, + ACTIONS(5793), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213327,13 +215523,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88370] = 3, + [90691] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2841), 1, + ACTIONS(5795), 1, + aux_sym__immediate_decimal_token5, + STATE(2917), 1, sym_comment, - ACTIONS(5150), 15, - ts_builtin_sym_end, + ACTIONS(1814), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1812), 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, + [90719] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2918), 1, + sym_comment, + ACTIONS(5257), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5259), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213345,17 +215566,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88394] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90745] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5241), 1, + ACTIONS(5602), 1, + sym__space, + STATE(2888), 1, + aux_sym_attribute_repeat1, + STATE(2919), 1, + sym_comment, + ACTIONS(5797), 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, + [90773] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5263), 1, anon_sym_EQ2, - STATE(2842), 1, + STATE(2920), 1, sym_comment, - ACTIONS(5243), 14, + ACTIONS(5265), 14, sym__newline, sym__space, anon_sym_SEMI, @@ -213370,35 +215613,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, anon_sym_COLON2, - [88420] = 4, - ACTIONS(3), 1, + [90799] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2521), 1, - anon_sym_DASH2, - STATE(2843), 1, + ACTIONS(5311), 1, + anon_sym_EQ2, + STATE(2921), 1, sym_comment, - ACTIONS(2519), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(5313), 14, sym__newline, + sym__space, + 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, - [88446] = 3, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + anon_sym_COLON2, + [90825] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2844), 1, + STATE(2922), 1, sym_comment, - ACTIONS(5269), 15, + ACTIONS(2506), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2508), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213410,16 +215656,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88470] = 3, - ACTIONS(3), 1, + sym__unquoted_pattern, + [90851] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2845), 1, - sym_comment, - ACTIONS(5150), 15, + ACTIONS(5381), 1, + anon_sym_EQ2, + ACTIONS(5799), 1, ts_builtin_sym_end, + ACTIONS(5801), 1, + sym__space, + STATE(2923), 1, + sym_comment, + STATE(3033), 1, + aux_sym_attribute_repeat1, + ACTIONS(5377), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213431,25 +215682,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, - [88494] = 7, + [90883] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5683), 1, - sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2846), 1, + STATE(2924), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(5686), 3, + ACTIONS(1535), 15, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -213459,81 +215701,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, - [88526] = 17, + anon_sym_COLON, + anon_sym_DOT2, + [90907] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5686), 1, sym_identifier, - ACTIONS(5690), 1, + ACTIONS(5688), 1, sym__newline, ACTIONS(5692), 1, - anon_sym_PIPE, - ACTIONS(5694), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5694), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5696), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5698), 1, anon_sym_DASH2, - STATE(2467), 1, + ACTIONS(5803), 1, + anon_sym_RBRACK, + STATE(2483), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2599), 1, sym__param_name, - STATE(2847), 1, + STATE(2925), 1, sym_comment, - STATE(2852), 1, - aux_sym__repeat_newline, - STATE(3179), 1, + STATE(3237), 1, aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, + STATE(3334), 1, sym_param_rest, - STATE(3328), 1, + STATE(3336), 1, sym_param_opt, - STATE(3582), 1, + STATE(3344), 1, + aux_sym__repeat_newline, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 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, + [90959] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2849), 1, + ACTIONS(5331), 1, + anon_sym_EQ2, + STATE(2926), 1, sym_comment, - ACTIONS(5704), 15, - anon_sym_else, - anon_sym_catch, + ACTIONS(5333), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213544,38 +215758,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, - [88646] = 3, + anon_sym_COLON2, + [90985] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2850), 1, + ACTIONS(5756), 1, + anon_sym_DOT_DOT2, + ACTIONS(5807), 1, + anon_sym_DASH2, + STATE(2927), 1, sym_comment, - ACTIONS(5269), 15, - ts_builtin_sym_end, + ACTIONS(5758), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5805), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [88670] = 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, + [91015] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2851), 1, - sym_comment, - ACTIONS(5150), 15, - ts_builtin_sym_end, + ACTIONS(5809), 1, sym__newline, + STATE(788), 1, + aux_sym__pipe_separator, + STATE(2928), 1, + sym_comment, + STATE(3418), 1, + aux_sym__repeat_newline, + ACTIONS(5812), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2377), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -213585,52 +215809,66 @@ static const uint16_t 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, + [91047] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(2584), 1, + anon_sym_DASH2, + STATE(2929), 1, + sym_comment, + ACTIONS(2582), 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, + [91073] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2930), 1, + sym_comment, + ACTIONS(1848), 2, anon_sym_DASH2, - ACTIONS(5706), 1, + anon_sym_DOT_DOT2, + ACTIONS(1846), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, 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, + 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, + [91099] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2853), 1, - sym_comment, - ACTIONS(5269), 15, - ts_builtin_sym_end, + ACTIONS(5477), 1, sym__newline, + ACTIONS(5482), 1, + anon_sym_COLON, + ACTIONS(5814), 1, + anon_sym_EQ, + STATE(2931), 1, + sym_comment, + STATE(4634), 1, + aux_sym__repeat_newline, + STATE(5013), 1, + sym_param_type, + ACTIONS(5480), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213641,16 +215879,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88770] = 3, + [91133] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2854), 1, + ACTIONS(5816), 1, + anon_sym_LBRACK2, + STATE(2932), 1, sym_comment, - ACTIONS(5624), 15, - ts_builtin_sym_end, + ACTIONS(2092), 2, + anon_sym_LBRACK, + anon_sym_DASH2, + ACTIONS(2090), 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, + [91161] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2933), 1, + sym_comment, + ACTIONS(5818), 15, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213662,16 +215921,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, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [91185] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2855), 1, + STATE(2934), 1, sym_comment, - ACTIONS(5626), 15, + ACTIONS(1812), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1814), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213683,18 +215944,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88818] = 4, - ACTIONS(3), 1, + sym__unquoted_pattern, + [91211] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - STATE(2856), 1, + STATE(2935), 1, sym_comment, - ACTIONS(5624), 14, + ACTIONS(1900), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1902), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213706,17 +215966,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [88844] = 4, + sym__unquoted_pattern, + [91237] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5710), 1, - sym__space, - STATE(2857), 2, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + STATE(2936), 1, sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(5708), 13, + STATE(4670), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5486), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5484), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213728,17 +215991,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [88870] = 4, + [91267] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - STATE(2858), 1, + ACTIONS(5686), 1, + sym_identifier, + ACTIONS(5688), 1, + sym__newline, + ACTIONS(5692), 1, + anon_sym_DOLLAR, + ACTIONS(5694), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5696), 1, + anon_sym_DASH_DASH, + ACTIONS(5698), 1, + anon_sym_DASH2, + ACTIONS(5820), 1, + anon_sym_RBRACK, + STATE(2483), 1, + sym_param_long_flag, + STATE(2599), 1, + sym__param_name, + STATE(2925), 1, + aux_sym__repeat_newline, + STATE(2937), 1, sym_comment, - ACTIONS(5626), 14, - ts_builtin_sym_end, + STATE(3229), 1, + aux_sym_parameter_parens_repeat1, + STATE(3334), 1, + sym_param_rest, + STATE(3336), 1, + sym_param_opt, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 1, + sym_parameter, + [91319] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5686), 1, + sym_identifier, + ACTIONS(5688), 1, + sym__newline, + ACTIONS(5692), 1, + anon_sym_DOLLAR, + ACTIONS(5694), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5696), 1, + anon_sym_DASH_DASH, + ACTIONS(5698), 1, + anon_sym_DASH2, + ACTIONS(5822), 1, + anon_sym_RPAREN, + STATE(2483), 1, + sym_param_long_flag, + STATE(2599), 1, + sym__param_name, + STATE(2861), 1, + aux_sym__repeat_newline, + STATE(2938), 1, + sym_comment, + STATE(3176), 1, + aux_sym_parameter_parens_repeat1, + STATE(3334), 1, + sym_param_rest, + STATE(3336), 1, + sym_param_opt, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 1, + sym_parameter, + [91371] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2939), 1, + sym_comment, + ACTIONS(2140), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2142), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213750,19 +216081,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_xor2, - anon_sym_or2, - [88896] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [91397] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - ACTIONS(5650), 1, - anon_sym_xor2, - STATE(2859), 1, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + STATE(2940), 1, sym_comment, - ACTIONS(5624), 13, + STATE(5092), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2136), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2138), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213774,18 +216107,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [88924] = 5, - ACTIONS(3), 1, + [91427] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - ACTIONS(5658), 1, - anon_sym_xor2, - STATE(2860), 1, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + STATE(2941), 1, sym_comment, - ACTIONS(5626), 13, + STATE(5092), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2176), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2178), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213797,15 +216131,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_or2, - [88952] = 3, + [91457] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2861), 1, + ACTIONS(5686), 1, + sym_identifier, + ACTIONS(5688), 1, + sym__newline, + ACTIONS(5692), 1, + anon_sym_DOLLAR, + ACTIONS(5694), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5696), 1, + anon_sym_DASH_DASH, + ACTIONS(5698), 1, + anon_sym_DASH2, + ACTIONS(5824), 1, + anon_sym_PIPE, + STATE(2483), 1, + sym_param_long_flag, + STATE(2599), 1, + sym__param_name, + STATE(2942), 1, sym_comment, - ACTIONS(5631), 15, - ts_builtin_sym_end, + STATE(3230), 1, + aux_sym_parameter_parens_repeat1, + STATE(3334), 1, + sym_param_rest, + STATE(3336), 1, + sym_param_opt, + STATE(3344), 1, + aux_sym__repeat_newline, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 1, + sym_parameter, + [91509] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5477), 1, sym__newline, + ACTIONS(5482), 1, + anon_sym_COLON, + ACTIONS(5826), 1, + anon_sym_EQ, + STATE(2943), 1, + sym_comment, + STATE(4634), 1, + aux_sym__repeat_newline, + STATE(5248), 1, + sym_param_type, + ACTIONS(5480), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213816,16 +216192,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, - [88976] = 3, - ACTIONS(3), 1, + [91543] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2862), 1, + ACTIONS(5602), 1, + sym__space, + STATE(2888), 1, + aux_sym_attribute_repeat1, + STATE(2944), 1, sym_comment, - ACTIONS(5633), 15, - ts_builtin_sym_end, + ACTIONS(5828), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213837,18 +216213,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, - [89000] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [91571] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2863), 1, - sym_comment, - ACTIONS(1556), 2, - anon_sym_DASH2, + ACTIONS(5756), 1, anon_sym_DOT_DOT2, - ACTIONS(1558), 13, + ACTIONS(5832), 1, + anon_sym_DASH2, + STATE(2945), 1, + sym_comment, + ACTIONS(5758), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5830), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -213860,18 +216239,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [89026] = 4, - ACTIONS(3), 1, + [91601] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - STATE(2864), 1, + ACTIONS(5253), 1, + anon_sym_EQ2, + STATE(2946), 1, sym_comment, - ACTIONS(5631), 14, - ts_builtin_sym_end, + ACTIONS(5255), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213882,16 +216259,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [89052] = 4, + anon_sym_RBRACE, + anon_sym_COLON2, + [91627] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5656), 1, + ACTIONS(5731), 1, anon_sym_and2, - STATE(2865), 1, + STATE(2947), 1, sym_comment, - ACTIONS(5633), 14, + ACTIONS(5511), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213906,19 +216283,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_xor2, anon_sym_or2, - [89078] = 6, + [91653] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5644), 1, - anon_sym_DOT_DOT2, - ACTIONS(5715), 1, - anon_sym_DASH2, - STATE(2866), 1, + STATE(2948), 1, sym_comment, - ACTIONS(5646), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5713), 11, + ACTIONS(2508), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(2506), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -213930,16 +216303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89108] = 5, + anon_sym_LPAREN2, + [91678] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5501), 1, + ACTIONS(2124), 1, sym__space, - STATE(2857), 1, - aux_sym_attribute_repeat1, - STATE(2867), 1, + STATE(2949), 1, sym_comment, - ACTIONS(5717), 13, + ACTIONS(2126), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213953,15 +216325,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89136] = 4, + [91703] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2868), 1, - sym_comment, - ACTIONS(1824), 2, + ACTIONS(5836), 1, + anon_sym_AT2, + ACTIONS(5838), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1822), 13, + STATE(2950), 1, + sym_comment, + STATE(3311), 1, + sym_param_completer, + ACTIONS(5834), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -213973,18 +216348,18 @@ 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, - ACTIONS(103), 1, + [91732] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5221), 1, - anon_sym_EQ2, - STATE(2869), 1, - sym_comment, - ACTIONS(5223), 14, + ACTIONS(1928), 1, sym__newline, - sym__space, + ACTIONS(5840), 1, + anon_sym_catch, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(2951), 1, + sym_comment, + ACTIONS(1926), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213995,18 +216370,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_COLON2, - [89188] = 4, + anon_sym_RPAREN, + [91761] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_EQ2, - STATE(2870), 1, + ACTIONS(5845), 1, + sym__space, + STATE(2952), 1, sym_comment, - ACTIONS(5239), 14, + ACTIONS(5843), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214017,46 +216390,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, - [89214] = 6, + [91786] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5644), 1, - anon_sym_DOT_DOT2, - ACTIONS(5721), 1, + ACTIONS(2365), 1, anon_sym_DASH2, - STATE(2871), 1, + STATE(2953), 1, sym_comment, - ACTIONS(5646), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5719), 11, + ACTIONS(2363), 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, - [89244] = 6, - ACTIONS(103), 1, + [91811] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2872), 1, + ACTIONS(2600), 1, + anon_sym_DASH2, + STATE(2954), 1, sym_comment, - ACTIONS(2635), 2, - ts_builtin_sym_end, + ACTIONS(2598), 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, + [91836] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2604), 1, + anon_sym_DASH2, + STATE(2955), 1, + sym_comment, + ACTIONS(2602), 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, + [91861] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2608), 1, + anon_sym_DASH2, + STATE(2956), 1, + sym_comment, + ACTIONS(2606), 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, + [91886] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5778), 1, + sym__newline, + ACTIONS(5780), 1, sym__space, - ACTIONS(2637), 11, + STATE(2957), 1, + sym_comment, + STATE(2968), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(5847), 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, + [91915] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5849), 1, + anon_sym_else, + ACTIONS(5851), 1, sym__newline, + STATE(2958), 1, + sym_comment, + STATE(3089), 1, + aux_sym__repeat_newline, + ACTIONS(5854), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214067,19 +216521,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, - [89274] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + [91944] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2873), 1, + STATE(2959), 1, sym_comment, - ACTIONS(2575), 2, + ACTIONS(5708), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(2577), 11, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214091,16 +216542,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, - [89304] = 4, - ACTIONS(103), 1, + [91967] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5257), 1, - anon_sym_EQ2, - STATE(2874), 1, + ACTIONS(5856), 1, + anon_sym_catch, + STATE(2960), 1, sym_comment, - ACTIONS(5259), 14, + ACTIONS(5858), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214111,21 +216561,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_COLON2, - [89330] = 6, + [91992] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(5072), 1, sym__unquoted_pattern, - STATE(2875), 1, + STATE(2961), 1, sym_comment, - ACTIONS(1974), 2, + ACTIONS(884), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1976), 11, + ACTIONS(858), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214137,19 +216585,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, - [89360] = 6, + [92019] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(2876), 1, - sym_comment, - ACTIONS(1706), 2, - ts_builtin_sym_end, + ACTIONS(2502), 1, sym__space, - ACTIONS(1619), 11, + STATE(2962), 1, + sym_comment, + ACTIONS(2504), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214161,19 +216604,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, - [89390] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [92044] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2877), 1, + ACTIONS(2389), 1, + anon_sym_DASH2, + STATE(2963), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2170), 2, - ts_builtin_sym_end, + ACTIONS(2387), 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, + [92069] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2517), 1, sym__space, - ACTIONS(2172), 11, + STATE(2964), 1, + sym_comment, + ACTIONS(2519), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214185,19 +216646,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, - [89420] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [92094] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2878), 1, + STATE(2965), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2072), 2, + ACTIONS(5331), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2074), 11, + anon_sym_EQ2, + ACTIONS(5333), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214209,87 +216669,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, - [89450] = 17, + [92119] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(2431), 1, + anon_sym_DASH2, + STATE(2966), 1, + sym_comment, + ACTIONS(2429), 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(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, + [92144] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(2588), 1, + anon_sym_DASH2, + STATE(2967), 1, + sym_comment, + ACTIONS(2586), 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(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, + [92169] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2128), 1, + ACTIONS(5860), 1, + sym__newline, + ACTIONS(5863), 1, sym__space, - ACTIONS(5727), 1, - anon_sym_LBRACK2, - STATE(2881), 1, + STATE(2968), 2, sym_comment, - ACTIONS(2130), 13, - sym__newline, + aux_sym__command_parenthesized_repeat1, + ACTIONS(5866), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214301,20 +216733,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, - [89582] = 6, + [92196] = 4, 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(2552), 1, sym__space, - ACTIONS(1738), 11, + STATE(2969), 1, + sym_comment, + ACTIONS(2554), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214326,19 +216752,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [89612] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [92221] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5126), 1, + anon_sym_LPAREN2, + ACTIONS(5870), 1, + anon_sym_DASH2, + STATE(2970), 1, + sym_comment, + STATE(4904), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5868), 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, + [92250] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5126), 1, + anon_sym_LPAREN2, + ACTIONS(5874), 1, + anon_sym_DASH2, + STATE(2971), 1, + sym_comment, + STATE(4904), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5872), 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, + [92279] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5468), 1, - aux_sym__immediate_decimal_token5, - STATE(2883), 1, - sym_comment, - ACTIONS(1738), 3, - sym_identifier, + ACTIONS(5126), 1, + anon_sym_LPAREN2, + ACTIONS(5878), 1, anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 11, + STATE(2972), 1, + sym_comment, + STATE(4904), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5876), 11, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -214348,20 +216823,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [89640] = 6, + [92308] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1619), 1, + ACTIONS(5126), 1, + anon_sym_LPAREN2, + ACTIONS(5882), 1, anon_sym_DASH2, - ACTIONS(5644), 1, - anon_sym_DOT_DOT2, - STATE(2884), 1, + STATE(2973), 1, sym_comment, - ACTIONS(5646), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1706), 11, + STATE(4904), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5880), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -214373,15 +216846,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89670] = 4, + [92337] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2885), 1, - sym_comment, - ACTIONS(5253), 2, + ACTIONS(2266), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5255), 13, + STATE(2974), 1, + sym_comment, + ACTIONS(2268), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214395,19 +216867,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89696] = 6, + [92362] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2154), 1, + ACTIONS(1629), 1, anon_sym_DASH2, - ACTIONS(5731), 1, - anon_sym_DOT_DOT2, - STATE(2886), 1, + ACTIONS(2594), 1, + anon_sym_LPAREN2, + ACTIONS(2596), 1, + sym__unquoted_pattern_in_record, + STATE(2975), 1, sym_comment, - ACTIONS(5733), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 11, + ACTIONS(1716), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -214419,54 +216890,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89726] = 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(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, + [92391] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2888), 1, - sym_comment, - ACTIONS(2523), 2, - ts_builtin_sym_end, + ACTIONS(2270), 1, sym__space, - ACTIONS(2525), 11, + STATE(2976), 1, + sym_comment, + ACTIONS(2272), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214478,52 +216909,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, - [89808] = 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(5737), 1, anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2889), 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(3), 1, + anon_sym_RBRACE, + [92416] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - ACTIONS(5658), 1, - anon_sym_xor2, - STATE(2890), 1, + STATE(2977), 1, sym_comment, - ACTIONS(5633), 13, + ACTIONS(5263), 3, ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5265), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214535,16 +216932,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_or2, - [89888] = 3, + [92441] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(2891), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1621), 1, + anon_sym_DOT, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(2978), 1, sym_comment, - ACTIONS(5739), 15, - anon_sym_else, + STATE(3680), 1, + sym__immediate_decimal, + ACTIONS(5739), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5741), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3679), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1617), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [92478] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5884), 1, anon_sym_catch, + ACTIONS(5886), 1, sym__newline, + STATE(2951), 1, + aux_sym__repeat_newline, + STATE(2979), 1, + sym_comment, + ACTIONS(5889), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214556,73 +216982,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [89912] = 11, + [92507] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, ACTIONS(1615), 1, sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(2897), 1, anon_sym_DOLLAR, - ACTIONS(5741), 1, + ACTIONS(5891), 1, anon_sym_DOT, - STATE(2892), 1, + STATE(2980), 1, sym_comment, - STATE(3577), 1, + STATE(3701), 1, sym__immediate_decimal, - ACTIONS(5743), 2, + ACTIONS(5893), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(5745), 2, + ACTIONS(5895), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3636), 2, + STATE(3681), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1596), 4, - anon_sym_if, + ACTIONS(1599), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [89952] = 6, + [92546] = 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(2367), 1, sym__space, - ACTIONS(5620), 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, - [89982] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2894), 1, + STATE(2981), 1, sym_comment, - ACTIONS(2567), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2569), 11, + ACTIONS(2369), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214634,20 +217029,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, - [90012] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [92571] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, - ACTIONS(5747), 1, - ts_builtin_sym_end, - ACTIONS(5749), 1, + ACTIONS(2379), 1, sym__space, - STATE(2895), 1, + STATE(2982), 1, sym_comment, - STATE(3009), 1, - aux_sym_attribute_repeat1, - ACTIONS(5326), 11, + ACTIONS(2381), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214659,16 +217050,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, - [90044] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [92596] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(2363), 1, sym__space, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(2896), 1, + STATE(2983), 1, sym_comment, - ACTIONS(868), 13, + ACTIONS(2365), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214682,17 +217073,21 @@ 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, + [92621] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2897), 1, - sym_comment, - ACTIONS(5287), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5289), 13, + ACTIONS(5809), 1, sym__newline, + STATE(788), 1, + aux_sym__pipe_separator, + STATE(2984), 1, + sym_comment, + STATE(3418), 1, + aux_sym__repeat_newline, + ACTIONS(5812), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2377), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -214702,156 +217097,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, - [90098] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5751), 1, - anon_sym_LBRACK2, - STATE(2898), 1, - sym_comment, - ACTIONS(2130), 2, - anon_sym_LBRACK, - anon_sym_DASH2, - ACTIONS(2128), 12, - anon_sym_EQ, - 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, - [90126] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1860), 1, - anon_sym_DASH2, - STATE(2899), 1, - sym_comment, - ACTIONS(1858), 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, - [90152] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2900), 1, - sym_comment, - ACTIONS(1643), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1641), 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, - [90178] = 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(5753), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2901), 1, - sym_comment, - STATE(3202), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [90230] = 17, + [92652] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, + ACTIONS(5897), 1, + anon_sym_else, + ACTIONS(5899), 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(2985), 1, sym_comment, - STATE(3172), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, + STATE(2990), 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, - anon_sym_POUND, - STATE(2903), 1, - sym_comment, - ACTIONS(1726), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 12, - sym__newline, + ACTIONS(5902), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214862,16 +217119,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_RPAREN, + [92681] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2904), 1, - sym_comment, - ACTIONS(2092), 2, + ACTIONS(2598), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(2094), 13, + STATE(2986), 1, + sym_comment, + ACTIONS(2600), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214885,16 +217141,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90334] = 5, + [92706] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5501), 1, + ACTIONS(2602), 1, sym__space, - STATE(2840), 1, - aux_sym_attribute_repeat1, - STATE(2905), 1, + STATE(2987), 1, sym_comment, - ACTIONS(5326), 13, + ACTIONS(2604), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214908,39 +217162,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90362] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2102), 1, - anon_sym_DASH2, - ACTIONS(5757), 1, - anon_sym_DOT_DOT2, - STATE(2906), 1, - sym_comment, - ACTIONS(5759), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 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, - [90392] = 4, + [92731] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2907), 1, - sym_comment, - ACTIONS(5221), 2, + ACTIONS(2606), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5223), 13, + STATE(2988), 1, + sym_comment, + ACTIONS(2608), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214954,15 +217183,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90418] = 4, + [92756] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2908), 1, - sym_comment, - ACTIONS(5237), 2, + ACTIONS(2610), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5239), 13, + STATE(2989), 1, + sym_comment, + ACTIONS(2612), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214976,79 +217204,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90444] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2078), 1, - anon_sym_DASH2, - ACTIONS(5761), 1, - anon_sym_DOT_DOT2, - STATE(2909), 1, - sym_comment, - ACTIONS(5763), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90474] = 17, + [92781] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, + ACTIONS(1928), 1, sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5765), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2879), 1, + ACTIONS(5904), 1, + anon_sym_else, + STATE(507), 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, - anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, - ACTIONS(5767), 1, - sym__newline, - ACTIONS(5769), 1, - sym__space, - STATE(2911), 1, + STATE(2990), 1, sym_comment, - STATE(3033), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5771), 11, + ACTIONS(1926), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215060,99 +217227,18 @@ 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, - 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(5773), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2880), 1, - aux_sym__repeat_newline, - STATE(2912), 1, - sym_comment, - STATE(3088), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [90610] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2122), 1, - anon_sym_DASH2, - ACTIONS(5775), 1, - anon_sym_DOT_DOT2, - STATE(2913), 1, - sym_comment, - ACTIONS(5777), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90640] = 4, + [92810] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2593), 1, - anon_sym_DASH2, - STATE(2914), 1, - sym_comment, - ACTIONS(2591), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(5907), 1, + anon_sym_catch, + ACTIONS(5909), 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_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90666] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - ACTIONS(5650), 1, - anon_sym_xor2, - STATE(2915), 1, + STATE(2991), 1, sym_comment, - ACTIONS(5631), 13, - ts_builtin_sym_end, - sym__newline, + STATE(3045), 1, + aux_sym__repeat_newline, + ACTIONS(5912), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215163,42 +217249,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [90694] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5781), 1, - anon_sym_AT2, - ACTIONS(5783), 1, - anon_sym_DASH2, - STATE(2916), 1, - sym_comment, - STATE(3241), 1, - sym_param_completer, - ACTIONS(5779), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90723] = 6, + [92839] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5767), 1, - sym__newline, - ACTIONS(5769), 1, + ACTIONS(2210), 1, sym__space, - STATE(2917), 1, + STATE(2992), 1, sym_comment, - STATE(3043), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5785), 11, + ACTIONS(2212), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215210,21 +217270,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [90752] = 7, + anon_sym_RBRACE, + [92864] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5787), 1, + ACTIONS(5745), 1, sym__newline, STATE(788), 1, aux_sym__pipe_separator, - STATE(2918), 1, + STATE(2993), 1, sym_comment, - STATE(3365), 1, + STATE(3418), 1, aux_sym__repeat_newline, - ACTIONS(5790), 2, + ACTIONS(5748), 2, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2303), 9, + ACTIONS(2377), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -215234,18 +217295,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, - [90783] = 6, - ACTIONS(3), 1, + [92895] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5792), 1, - anon_sym_else, - ACTIONS(5794), 1, - sym__newline, - STATE(2919), 1, + ACTIONS(2230), 1, + sym__space, + STATE(2994), 1, sym_comment, - STATE(3047), 1, - aux_sym__repeat_newline, - ACTIONS(5797), 11, + ACTIONS(2232), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215257,14 +217315,15 @@ 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, + [92920] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2268), 1, + ACTIONS(2214), 1, sym__space, - STATE(2920), 1, + STATE(2995), 1, sym_comment, - ACTIONS(2270), 13, + ACTIONS(2216), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215278,14 +217337,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90837] = 4, + [92945] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2272), 1, + ACTIONS(2387), 1, sym__space, - STATE(2921), 1, + STATE(2996), 1, sym_comment, - ACTIONS(2274), 13, + ACTIONS(2389), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215299,16 +217358,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90862] = 4, - ACTIONS(103), 1, + [92970] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2922), 1, + ACTIONS(2554), 1, + anon_sym_DASH2, + STATE(2997), 1, sym_comment, - ACTIONS(5241), 3, - ts_builtin_sym_end, + ACTIONS(2552), 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, + [92995] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2234), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5243), 11, + STATE(2998), 1, + sym_comment, + ACTIONS(2236), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215320,20 +217398,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, - [90887] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93020] = 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, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2568), 1, anon_sym_DASH2, - ACTIONS(1736), 10, + STATE(2999), 1, + sym_comment, + ACTIONS(2566), 11, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -215343,60 +217423,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90916] = 4, + [93049] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2256), 1, + ACTIONS(2023), 1, anon_sym_DASH2, - STATE(2924), 1, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern_in_record, + STATE(3000), 1, sym_comment, - ACTIONS(2254), 13, + ACTIONS(2021), 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, - [90941] = 4, + [93078] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2256), 1, + ACTIONS(1691), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2562), 1, anon_sym_DASH2, - STATE(2925), 1, + ACTIONS(2564), 1, + anon_sym_LPAREN2, + STATE(3001), 1, sym_comment, - ACTIONS(2254), 13, + ACTIONS(2560), 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, - [90966] = 5, + [93107] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5799), 1, - ts_builtin_sym_end, - ACTIONS(5801), 1, + ACTIONS(1599), 1, sym__space, - STATE(2926), 2, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(3279), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(5914), 1, + anon_sym_DOT, + ACTIONS(5916), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5918), 1, + aux_sym__immediate_decimal_token2, + STATE(3002), 1, sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(5708), 11, + STATE(3647), 1, + sym__immediate_decimal, + ACTIONS(1603), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(5920), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3901), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [93150] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1615), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2013), 1, + anon_sym_DASH2, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + STATE(3003), 1, + sym_comment, + ACTIONS(2011), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93179] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5922), 1, + anon_sym_else, + ACTIONS(5924), 1, sym__newline, + STATE(2985), 1, + aux_sym__repeat_newline, + STATE(3004), 1, + sym_comment, + ACTIONS(5927), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215407,18 +217544,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, - [90993] = 6, + anon_sym_RPAREN, + [93208] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5806), 1, + ACTIONS(2523), 1, anon_sym_DASH2, - STATE(2927), 1, + ACTIONS(2525), 1, + anon_sym_LPAREN2, + ACTIONS(2527), 1, + sym__unquoted_pattern_in_record, + STATE(3005), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5804), 11, + ACTIONS(2521), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -215430,18 +217568,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91022] = 6, + [93237] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5810), 1, + ACTIONS(5931), 1, + anon_sym_LT, + ACTIONS(5933), 1, anon_sym_DASH2, - STATE(2928), 1, + STATE(3006), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5808), 11, + ACTIONS(5929), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -215451,39 +217587,39 @@ 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, - ACTIONS(103), 1, + [93264] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5747), 1, - ts_builtin_sym_end, - ACTIONS(5749), 1, - sym__space, - STATE(2929), 1, + ACTIONS(5933), 1, + anon_sym_DASH2, + ACTIONS(5935), 1, + anon_sym_LT, + STATE(3007), 1, sym_comment, - STATE(3009), 1, - aux_sym_attribute_repeat1, - ACTIONS(5326), 11, + ACTIONS(5929), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [91080] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93291] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(1888), 1, sym__space, - STATE(2930), 1, + STATE(3008), 1, sym_comment, - ACTIONS(2154), 13, + ACTIONS(1890), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215497,14 +217633,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91105] = 4, + [93316] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2202), 1, + ACTIONS(5247), 1, sym__space, - STATE(2931), 1, + STATE(3009), 1, sym_comment, - ACTIONS(2204), 13, + ACTIONS(5245), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215518,14 +217654,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91130] = 4, + [93341] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2591), 1, + ACTIONS(5939), 1, sym__space, - STATE(2932), 1, + STATE(3010), 1, sym_comment, - ACTIONS(2593), 13, + ACTIONS(5937), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215539,14 +217675,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91155] = 4, + [93366] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4651), 1, + ACTIONS(5251), 1, sym__space, - STATE(2933), 1, + STATE(3011), 1, sym_comment, - ACTIONS(4649), 13, + ACTIONS(5249), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215560,37 +217696,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91180] = 4, + [93391] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2204), 1, - anon_sym_DASH2, - STATE(2934), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(3012), 1, sym_comment, - ACTIONS(2202), 13, - anon_sym_EQ, - sym_identifier, + STATE(3985), 1, + sym__immediate_decimal, + ACTIONS(5941), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5943), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(780), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1599), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91205] = 4, + anon_sym_EQ_GT, + [93428] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2935), 1, - sym_comment, - ACTIONS(2084), 3, - ts_builtin_sym_end, + ACTIONS(2383), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(2086), 11, + STATE(3013), 1, + sym_comment, + ACTIONS(2385), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215602,65 +217742,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, - [91230] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93453] = 13, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2609), 1, - anon_sym_DASH2, - STATE(2936), 1, + ACTIONS(1599), 1, + sym__entry_separator, + ACTIONS(1615), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1786), 1, + anon_sym_DOLLAR, + ACTIONS(5945), 1, + anon_sym_LPAREN2, + ACTIONS(5947), 1, + anon_sym_DOT, + ACTIONS(5949), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5951), 1, + aux_sym__immediate_decimal_token2, + STATE(3014), 1, sym_comment, - ACTIONS(2607), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, + STATE(3617), 1, + sym__immediate_decimal, + ACTIONS(1603), 2, 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_DOT_DOT, + ACTIONS(5953), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3905), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [93496] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(5812), 1, + ACTIONS(5955), 1, anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2937), 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, - [91284] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5683), 1, + ACTIONS(5957), 1, sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2938), 1, + STATE(3015), 1, sym_comment, - STATE(3365), 1, + STATE(3059), 1, aux_sym__repeat_newline, - ACTIONS(5686), 2, - ts_builtin_sym_end, + ACTIONS(5960), 11, anon_sym_SEMI, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -215670,15 +217796,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, - [91315] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + [93525] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2939), 1, + ACTIONS(5964), 1, + sym__space, + STATE(3016), 1, sym_comment, - ACTIONS(5704), 14, - ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, + ACTIONS(5962), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215690,16 +217816,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, - [91338] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93550] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2940), 1, - sym_comment, - ACTIONS(5287), 3, - ts_builtin_sym_end, + ACTIONS(5968), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5289), 11, + STATE(3017), 1, + sym_comment, + ACTIONS(5966), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215711,62 +217837,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, - [91363] = 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93575] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1008), 1, + anon_sym_DASH2, + ACTIONS(2556), 1, anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(2941), 1, + ACTIONS(2558), 1, + sym__unquoted_pattern_in_record, + STATE(3018), 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(1030), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - [91400] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93604] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2513), 1, + ACTIONS(996), 1, anon_sym_DASH2, - STATE(2942), 1, + ACTIONS(2556), 1, + anon_sym_LPAREN2, + ACTIONS(2558), 1, + sym__unquoted_pattern_in_record, + STATE(3019), 1, sym_comment, - ACTIONS(2511), 13, + ACTIONS(994), 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, - [91425] = 4, + [93633] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2517), 1, + ACTIONS(2286), 1, anon_sym_DASH2, - STATE(2943), 1, + STATE(3020), 1, sym_comment, - ACTIONS(2515), 13, + ACTIONS(2284), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215780,18 +217906,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91450] = 6, - ACTIONS(3), 1, + [93658] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_else, - ACTIONS(5817), 1, + ACTIONS(5778), 1, sym__newline, - STATE(2944), 1, + ACTIONS(5780), 1, + sym__space, + STATE(2957), 1, + aux_sym__command_parenthesized_repeat1, + STATE(3021), 1, sym_comment, - STATE(2963), 1, - aux_sym__repeat_newline, - ACTIONS(5820), 11, + ACTIONS(5970), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215803,42 +217929,21 @@ 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, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5824), 1, - anon_sym_DASH2, - STATE(2945), 1, - sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5822), 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, - [91508] = 6, + [93687] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5826), 1, - anon_sym_catch, - ACTIONS(5828), 1, + ACTIONS(5972), 1, sym__newline, - STATE(2946), 1, + STATE(854), 1, + aux_sym__pipe_separator, + STATE(3022), 1, sym_comment, - STATE(3048), 1, + STATE(3418), 1, aux_sym__repeat_newline, - ACTIONS(5831), 11, + ACTIONS(5975), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2377), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -215848,15 +217953,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, - [91537] = 4, + [93718] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2218), 1, - sym__space, - STATE(2947), 1, + STATE(3023), 1, sym_comment, - ACTIONS(2220), 13, + ACTIONS(5257), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5259), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215868,73 +217974,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [91562] = 6, - ACTIONS(3), 1, + [93743] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5835), 1, - anon_sym_DASH2, - STATE(2948), 1, + ACTIONS(5977), 1, + anon_sym_LBRACK2, + STATE(3024), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5833), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2090), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2092), 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, - [91591] = 13, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [93770] = 6, 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, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5847), 1, - anon_sym_else, - ACTIONS(5849), 1, + ACTIONS(5778), 1, sym__newline, - STATE(2950), 1, + ACTIONS(5780), 1, + sym__space, + STATE(2968), 1, + aux_sym__command_parenthesized_repeat1, + STATE(3025), 1, sym_comment, - STATE(3057), 1, - aux_sym__repeat_newline, - ACTIONS(5852), 11, + ACTIONS(5979), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215946,14 +218019,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, + [93799] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2220), 1, + ACTIONS(2290), 1, anon_sym_DASH2, - STATE(2951), 1, + STATE(3026), 1, sym_comment, - ACTIONS(2218), 13, + ACTIONS(2288), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215967,42 +218040,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91688] = 4, - ACTIONS(3), 1, + [93824] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2260), 1, - anon_sym_DASH2, - STATE(2952), 1, + STATE(3027), 1, sym_comment, - ACTIONS(2258), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(2140), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2142), 11, 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, - [91713] = 7, - 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, + [93849] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5635), 1, + ACTIONS(5801), 1, + sym__space, + ACTIONS(5981), 1, + ts_builtin_sym_end, + STATE(3028), 1, + sym_comment, + STATE(3063), 1, + aux_sym_attribute_repeat1, + ACTIONS(5793), 11, sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2953), 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, + [93878] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3029), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(5638), 2, + ACTIONS(5253), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5255), 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, + [93903] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3030), 1, + sym_comment, + ACTIONS(5668), 14, ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -216012,35 +218124,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, - [91744] = 4, + anon_sym_COLON, + [93926] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2264), 1, + ACTIONS(5126), 1, + anon_sym_LPAREN2, + ACTIONS(5832), 1, anon_sym_DASH2, - STATE(2954), 1, + STATE(3031), 1, sym_comment, - ACTIONS(2262), 13, + STATE(4775), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5830), 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, + [93955] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5856), 1, + ACTIONS(884), 1, sym__space, - STATE(2955), 1, + STATE(3032), 1, sym_comment, - ACTIONS(5854), 13, + ACTIONS(858), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216054,14 +218169,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91794] = 4, + [93980] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4633), 1, + ACTIONS(5801), 1, sym__space, - STATE(2956), 1, + ACTIONS(5983), 1, + ts_builtin_sym_end, + STATE(3033), 1, sym_comment, - ACTIONS(4631), 13, + STATE(3078), 1, + aux_sym_attribute_repeat1, + ACTIONS(5797), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216073,20 +218192,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, - [91819] = 6, + [94009] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5749), 1, + ACTIONS(4555), 1, sym__space, - ACTIONS(5858), 1, - ts_builtin_sym_end, - STATE(2926), 1, - aux_sym_attribute_repeat1, - STATE(2957), 1, + STATE(3034), 1, sym_comment, - ACTIONS(5717), 11, + ACTIONS(4553), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216098,16 +218211,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_RPAREN, + anon_sym_RBRACE, + [94034] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2958), 1, + STATE(3035), 1, sym_comment, - ACTIONS(5253), 3, + ACTIONS(2148), 3, ts_builtin_sym_end, sym__space, - anon_sym_EQ2, - ACTIONS(5255), 11, + anon_sym_LPAREN2, + ACTIONS(2150), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216119,16 +218234,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, + [94059] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2959), 1, + STATE(3036), 1, sym_comment, - ACTIONS(5221), 3, + ACTIONS(5276), 3, ts_builtin_sym_end, sym__space, anon_sym_EQ2, - ACTIONS(5223), 11, + ACTIONS(5278), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216140,71 +218255,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [91898] = 13, - ACTIONS(103), 1, + [94084] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__space, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(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, + ACTIONS(1928), 1, sym__newline, + ACTIONS(5985), 1, + anon_sym_else, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(3037), 1, + sym_comment, + ACTIONS(1926), 11, anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3872), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [91941] = 6, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [94113] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5642), 1, + ACTIONS(2537), 1, anon_sym_DASH2, - STATE(2961), 1, + STATE(3038), 1, sym_comment, - STATE(4655), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5640), 11, + ACTIONS(2535), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91970] = 6, - ACTIONS(103), 1, + [94138] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5749), 1, - sym__space, - ACTIONS(5868), 1, - ts_builtin_sym_end, - STATE(2957), 1, - aux_sym_attribute_repeat1, - STATE(2962), 1, + STATE(3039), 1, sym_comment, - ACTIONS(5679), 11, + ACTIONS(5672), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216216,18 +218318,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, - [91999] = 6, + anon_sym_COLON, + [94161] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(5870), 1, + ACTIONS(5988), 1, anon_sym_else, - STATE(540), 1, + ACTIONS(5990), 1, + sym__newline, + STATE(2958), 1, aux_sym__repeat_newline, - STATE(2963), 1, + STATE(3040), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(5993), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216239,18 +218342,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [92028] = 6, + [94190] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1691), 1, + sym__unquoted_pattern, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(3041), 1, + sym_comment, + STATE(4083), 1, + sym__immediate_decimal, + ACTIONS(5941), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5943), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(726), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1677), 4, + anon_sym_if, sym__newline, - ACTIONS(5873), 1, - anon_sym_catch, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2964), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [94227] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5799), 1, + ts_builtin_sym_end, + ACTIONS(5801), 1, + sym__space, + STATE(3033), 1, + aux_sym_attribute_repeat1, + STATE(3042), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(5377), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216261,18 +218392,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, - [92057] = 4, - ACTIONS(103), 1, + [94256] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2965), 1, + STATE(3043), 1, sym_comment, - ACTIONS(5237), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5239), 11, + ACTIONS(1748), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1746), 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, + [94281] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5995), 1, + anon_sym_catch, + ACTIONS(5997), 1, sym__newline, + STATE(2979), 1, + aux_sym__repeat_newline, + STATE(3044), 1, + sym_comment, + ACTIONS(6000), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216283,18 +218435,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, - [92082] = 6, + anon_sym_RPAREN, + [94310] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5876), 1, + ACTIONS(6002), 1, anon_sym_catch, - ACTIONS(5878), 1, + ACTIONS(6004), 1, sym__newline, - STATE(2966), 1, + STATE(3045), 1, sym_comment, - STATE(3042), 1, + STATE(3066), 1, aux_sym__repeat_newline, - ACTIONS(5881), 11, + ACTIONS(6007), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216306,14 +218459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [92111] = 4, + [94339] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5885), 1, + ACTIONS(4655), 1, sym__space, - STATE(2967), 1, + STATE(3046), 1, sym_comment, - ACTIONS(5883), 13, + ACTIONS(4653), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216327,14 +218480,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92136] = 4, + [94364] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1858), 1, + ACTIONS(4659), 1, sym__space, - STATE(2968), 1, + STATE(3047), 1, + sym_comment, + ACTIONS(4657), 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, + [94389] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4663), 1, + sym__space, + STATE(3048), 1, sym_comment, - ACTIONS(1860), 13, + ACTIONS(4661), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216348,18 +218522,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92161] = 6, + [94414] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5715), 1, + ACTIONS(2616), 1, anon_sym_DASH2, - STATE(2969), 1, + STATE(3049), 1, sym_comment, - STATE(4655), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5713), 11, + ACTIONS(2614), 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, + [94439] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5836), 1, + anon_sym_AT2, + ACTIONS(6011), 1, + anon_sym_DASH2, + STATE(3050), 1, + sym_comment, + STATE(3386), 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, + [94468] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3051), 1, + sym_comment, + ACTIONS(1814), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1812), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -216371,14 +218586,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92190] = 4, + anon_sym_LPAREN2, + [94493] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5889), 1, + ACTIONS(6015), 1, sym__space, - STATE(2970), 1, + STATE(3052), 1, sym_comment, - ACTIONS(5887), 13, + ACTIONS(6013), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216392,14 +218608,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92215] = 4, + [94518] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3053), 1, + sym_comment, + ACTIONS(1902), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1900), 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, + [94543] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5346), 1, + ACTIONS(2429), 1, sym__space, - STATE(2971), 1, + STATE(3054), 1, sym_comment, - ACTIONS(5344), 13, + ACTIONS(2431), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216413,15 +218650,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92240] = 4, - ACTIONS(103), 1, + [94568] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5893), 1, - sym__space, - STATE(2972), 1, - sym_comment, - ACTIONS(5891), 13, + ACTIONS(6017), 1, + anon_sym_else, + ACTIONS(6019), 1, sym__newline, + STATE(3055), 1, + sym_comment, + STATE(3081), 1, + aux_sym__repeat_newline, + ACTIONS(6022), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216433,15 +218673,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, + [94597] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5897), 1, + ACTIONS(2586), 1, sym__space, - STATE(2973), 1, + STATE(3056), 1, sym_comment, - ACTIONS(5895), 13, + ACTIONS(2588), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216455,14 +218694,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92290] = 4, + [94622] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5901), 1, + ACTIONS(6026), 1, sym__space, - STATE(2974), 1, + STATE(3057), 1, sym_comment, - ACTIONS(5899), 13, + ACTIONS(6024), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216476,14 +218715,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92315] = 4, + [94647] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5905), 1, + ACTIONS(1716), 1, sym__space, - STATE(2975), 1, + STATE(3058), 1, sym_comment, - ACTIONS(5903), 13, + ACTIONS(1629), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216497,21 +218736,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92340] = 7, + [94672] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5907), 1, + ACTIONS(6028), 1, + anon_sym_else, + ACTIONS(6030), 1, sym__newline, - STATE(788), 1, - aux_sym__pipe_separator, - STATE(2976), 1, - sym_comment, - STATE(3365), 1, + STATE(3037), 1, aux_sym__repeat_newline, - ACTIONS(5910), 2, + STATE(3059), 1, + sym_comment, + ACTIONS(6033), 11, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -216521,14 +218758,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, - [92371] = 4, + anon_sym_RPAREN, + [94701] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2198), 1, - sym__space, - STATE(2977), 1, + STATE(3060), 1, sym_comment, - ACTIONS(2200), 13, + ACTIONS(5311), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5313), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216540,37 +218780,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, - [92396] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2978), 1, - sym_comment, - ACTIONS(2503), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(2501), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [92421] = 4, + [94726] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, + ACTIONS(2160), 1, sym__space, - STATE(2979), 1, + STATE(3061), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(2162), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216584,37 +218801,14 @@ 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, + [94751] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(2152), 1, sym__space, - STATE(2981), 1, + STATE(3062), 1, sym_comment, - ACTIONS(2078), 13, + ACTIONS(2154), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216628,14 +218822,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92500] = 4, + [94776] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(5801), 1, sym__space, - STATE(2982), 1, + ACTIONS(6035), 1, + ts_builtin_sym_end, + STATE(3063), 1, sym_comment, - ACTIONS(2122), 13, + STATE(3078), 1, + aux_sym_attribute_repeat1, + ACTIONS(5828), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216647,20 +218845,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, - [92525] = 6, + [94805] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1966), 1, - anon_sym_DASH2, - ACTIONS(1968), 1, + ACTIONS(5126), 1, anon_sym_LPAREN2, - STATE(2983), 1, + ACTIONS(5807), 1, + anon_sym_DASH2, + STATE(3064), 1, sym_comment, - ACTIONS(1964), 11, + STATE(4775), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5805), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216672,36 +218868,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92554] = 4, + [94834] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2984), 1, - sym_comment, - ACTIONS(1804), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6037), 1, + anon_sym_else, + ACTIONS(6039), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [92579] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5914), 1, - sym__space, - STATE(2985), 1, + STATE(3055), 1, + aux_sym__repeat_newline, + STATE(3065), 1, sym_comment, - ACTIONS(5912), 13, - sym__newline, + ACTIONS(6042), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216713,58 +218891,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, - [92604] = 4, + [94863] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5916), 1, - anon_sym_catch, - STATE(2986), 1, - sym_comment, - ACTIONS(5918), 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, - [92629] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2222), 1, - sym__space, - STATE(2987), 1, - sym_comment, - ACTIONS(2224), 13, + ACTIONS(1928), 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, - [92654] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5581), 1, - sym__space, - STATE(2988), 1, + ACTIONS(6044), 1, + anon_sym_catch, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(3066), 1, sym_comment, - ACTIONS(5579), 13, - sym__newline, + ACTIONS(1926), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216776,40 +218914,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, - [92679] = 6, + [94892] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2577), 1, + ACTIONS(858), 1, anon_sym_DASH2, - STATE(2989), 1, + STATE(3067), 1, sym_comment, - ACTIONS(2575), 11, + ACTIONS(884), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92708] = 5, + [94917] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5922), 1, - anon_sym_LT, - ACTIONS(5924), 1, + ACTIONS(5836), 1, + anon_sym_AT2, + ACTIONS(6049), 1, anon_sym_DASH2, - STATE(2990), 1, + STATE(3068), 1, sym_comment, - ACTIONS(5920), 12, + STATE(3297), 1, + sym_param_completer, + ACTIONS(6047), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216819,21 +218956,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, + [94946] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1976), 1, + ACTIONS(2572), 1, anon_sym_DASH2, - ACTIONS(1978), 1, + ACTIONS(2574), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2576), 1, sym__unquoted_pattern_in_record, - STATE(2991), 1, + STATE(3069), 1, sym_comment, - ACTIONS(1974), 11, + ACTIONS(2570), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216845,40 +218981,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92764] = 5, + [94975] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5924), 1, + ACTIONS(2504), 1, anon_sym_DASH2, - ACTIONS(5926), 1, - anon_sym_LT, - STATE(2992), 1, + STATE(3070), 1, sym_comment, - ACTIONS(5920), 12, + ACTIONS(2502), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92791] = 6, + [95000] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2525), 1, + ACTIONS(5836), 1, + anon_sym_AT2, + ACTIONS(6011), 1, anon_sym_DASH2, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2993), 1, + STATE(3071), 1, sym_comment, - ACTIONS(2523), 11, + STATE(3375), 1, + sym_param_completer, + ACTIONS(6009), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216890,149 +219025,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92820] = 6, + [95029] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2569), 1, + ACTIONS(2268), 1, anon_sym_DASH2, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_record, - STATE(2994), 1, - sym_comment, - ACTIONS(2567), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [92849] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2995), 1, + STATE(3072), 1, sym_comment, - ACTIONS(1872), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1870), 12, + ACTIONS(2266), 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, - [92874] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2206), 1, - sym__space, - STATE(2996), 1, - sym_comment, - ACTIONS(2208), 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, - [92899] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2210), 1, - sym__space, - STATE(2997), 1, - sym_comment, - ACTIONS(2212), 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, - [92924] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2214), 1, - sym__space, - STATE(2998), 1, - sym_comment, - ACTIONS(2216), 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, - [92949] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(5928), 1, - anon_sym_DOT, - STATE(2999), 1, - sym_comment, - STATE(3680), 1, - sym__immediate_decimal, - ACTIONS(5930), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5932), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3636), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [92988] = 4, + [95054] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2270), 1, + ACTIONS(1629), 1, anon_sym_DASH2, - STATE(3000), 1, + STATE(3073), 1, sym_comment, - ACTIONS(2268), 13, + ACTIONS(1716), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -217046,17 +219067,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93013] = 5, + [95079] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5048), 1, - sym__unquoted_pattern, - STATE(3001), 1, - sym_comment, - ACTIONS(968), 2, - ts_builtin_sym_end, + ACTIONS(2218), 1, sym__space, - ACTIONS(868), 11, + STATE(3074), 1, + sym_comment, + ACTIONS(2220), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217068,14 +219086,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [93040] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95104] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2274), 1, + ACTIONS(2162), 1, anon_sym_DASH2, - STATE(3002), 1, + STATE(3075), 1, sym_comment, - ACTIONS(2272), 13, + ACTIONS(2160), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -217089,14 +219109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93065] = 4, + [95129] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(1856), 1, sym__space, - STATE(3003), 1, + STATE(3076), 1, sym_comment, - ACTIONS(5249), 13, + ACTIONS(1858), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217110,41 +219130,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93090] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3004), 1, - sym_comment, - STATE(3926), 1, - sym__immediate_decimal, - ACTIONS(5934), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5936), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [93127] = 4, + [95154] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5940), 1, + ACTIONS(2535), 1, sym__space, - STATE(3005), 1, + STATE(3077), 1, sym_comment, - ACTIONS(5938), 13, + ACTIONS(2537), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217158,14 +219151,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93152] = 4, + [95179] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2226), 1, + ACTIONS(6051), 1, + ts_builtin_sym_end, + ACTIONS(6053), 1, sym__space, - STATE(3006), 1, + STATE(3078), 2, sym_comment, - ACTIONS(2228), 13, + aux_sym_attribute_repeat1, + ACTIONS(5784), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217177,39 +219173,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, - [93177] = 6, + [95206] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2637), 1, - anon_sym_DASH2, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_record, - STATE(3007), 1, + STATE(3079), 1, sym_comment, - ACTIONS(2635), 11, + ACTIONS(1582), 14, + ts_builtin_sym_end, anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93206] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2230), 1, - sym__space, - STATE(3008), 1, - sym_comment, - ACTIONS(2232), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217221,20 +219192,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, - [93231] = 6, + anon_sym_COLON, + [95229] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5749), 1, + ACTIONS(2284), 1, sym__space, - ACTIONS(5942), 1, - ts_builtin_sym_end, - STATE(2926), 1, - aux_sym_attribute_repeat1, - STATE(3009), 1, + STATE(3080), 1, sym_comment, - ACTIONS(5681), 11, + ACTIONS(2286), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217246,15 +219212,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, - [93260] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95254] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2238), 1, - sym__space, - STATE(3010), 1, - sym_comment, - ACTIONS(2240), 13, + ACTIONS(1928), 1, sym__newline, + ACTIONS(6056), 1, + anon_sym_else, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(3081), 1, + sym_comment, + ACTIONS(1926), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217266,15 +219237,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, - [93285] = 4, + [95283] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2242), 1, + ACTIONS(2258), 1, sym__space, - STATE(3011), 1, + STATE(3082), 1, sym_comment, - ACTIONS(2244), 13, + ACTIONS(2260), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217288,14 +219258,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93310] = 4, + [95308] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2246), 1, + ACTIONS(2258), 1, sym__space, - STATE(3012), 1, + STATE(3083), 1, sym_comment, - ACTIONS(2248), 13, + ACTIONS(2260), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217309,14 +219279,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93335] = 4, + [95333] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2250), 1, + ACTIONS(2288), 1, sym__space, - STATE(3013), 1, + STATE(3084), 1, sym_comment, - ACTIONS(2252), 13, + ACTIONS(2290), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217330,102 +219300,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93360] = 6, + [95358] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(996), 1, + ACTIONS(2260), 1, anon_sym_DASH2, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(3014), 1, + STATE(3085), 1, sym_comment, - ACTIONS(994), 11, + ACTIONS(2258), 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, - [93389] = 6, + [95383] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1016), 1, + ACTIONS(2260), 1, anon_sym_DASH2, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(3015), 1, + STATE(3086), 1, sym_comment, - ACTIONS(1018), 11, + ACTIONS(2258), 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, - [93418] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5247), 1, - sym__space, - STATE(3016), 1, - sym_comment, - ACTIONS(5245), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [93443] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2537), 1, - sym__space, - STATE(3017), 1, - sym_comment, - ACTIONS(2539), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [93468] = 4, + [95408] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2607), 1, + ACTIONS(2614), 1, sym__space, - STATE(3018), 1, + STATE(3087), 1, sym_comment, - ACTIONS(2609), 13, + ACTIONS(2616), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217439,57 +219363,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93493] = 4, - ACTIONS(103), 1, + [95433] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2511), 1, - sym__space, - STATE(3019), 1, + ACTIONS(2272), 1, + anon_sym_DASH2, + STATE(3088), 1, sym_comment, - ACTIONS(2513), 13, + ACTIONS(2270), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - [93518] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95458] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - STATE(3020), 1, - sym_comment, - ACTIONS(868), 13, + ACTIONS(1928), 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, - [93543] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1706), 1, - sym__space, - STATE(3021), 1, + ACTIONS(6059), 1, + anon_sym_else, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(3089), 1, sym_comment, - ACTIONS(1619), 13, - sym__newline, + ACTIONS(1926), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217501,15 +219407,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, - [93568] = 4, - ACTIONS(103), 1, + [95487] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2515), 1, - sym__space, - STATE(3022), 1, + STATE(3090), 1, sym_comment, - ACTIONS(2517), 13, + ACTIONS(5818), 14, + ts_builtin_sym_end, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217521,16 +219427,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, - [93593] = 4, + [95510] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2112), 1, + ACTIONS(2222), 1, sym__space, - STATE(3023), 1, + STATE(3091), 1, sym_comment, - ACTIONS(2114), 13, + ACTIONS(2224), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217544,18 +219448,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93618] = 6, + [95535] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, + ACTIONS(5126), 1, anon_sym_LPAREN2, - ACTIONS(5721), 1, + ACTIONS(5754), 1, anon_sym_DASH2, - STATE(3024), 1, + STATE(3092), 1, sym_comment, - STATE(4655), 1, + STATE(4775), 1, sym__expr_parenthesized_immediate, - ACTIONS(5719), 11, + ACTIONS(5752), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217567,58 +219471,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93647] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2519), 1, - sym__space, - STATE(3025), 1, - sym_comment, - ACTIONS(2521), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [93672] = 6, + [95564] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5781), 1, - anon_sym_AT2, - ACTIONS(5946), 1, + ACTIONS(2519), 1, anon_sym_DASH2, - STATE(3026), 1, + STATE(3093), 1, sym_comment, - STATE(3284), 1, - sym_param_completer, - ACTIONS(5944), 11, + ACTIONS(2517), 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, - [93701] = 4, + [95589] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2505), 1, + ACTIONS(2226), 1, sym__space, - STATE(3027), 1, + STATE(3094), 1, sym_comment, - ACTIONS(2507), 13, + ACTIONS(2228), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217632,19 +219513,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93726] = 6, + [95614] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5948), 1, - anon_sym_else, - ACTIONS(5950), 1, + ACTIONS(6062), 1, sym__newline, - STATE(3028), 1, + STATE(854), 1, + aux_sym__pipe_separator, + STATE(3095), 1, sym_comment, - STATE(3044), 1, + STATE(3418), 1, aux_sym__repeat_newline, - ACTIONS(5953), 11, + ACTIONS(6065), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2377), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -217654,16 +219537,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, - [93755] = 3, - ACTIONS(3), 1, + [95645] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3029), 1, + ACTIONS(6069), 1, + sym__space, + STATE(3096), 1, sym_comment, - ACTIONS(5739), 14, - ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, + ACTIONS(6067), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217675,14 +219556,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, + [95670] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2615), 1, + ACTIONS(5395), 1, sym__space, - STATE(3030), 1, + STATE(3097), 1, sym_comment, - ACTIONS(2617), 13, + ACTIONS(5393), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217696,18 +219579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93803] = 6, + [95695] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5767), 1, - sym__newline, - ACTIONS(5769), 1, + ACTIONS(6073), 1, sym__space, - STATE(2917), 1, - aux_sym__command_parenthesized_repeat1, - STATE(3031), 1, + STATE(3098), 1, sym_comment, - ACTIONS(5955), 11, + ACTIONS(6071), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217719,39 +219599,16 @@ 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, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2224), 1, - anon_sym_DASH2, - STATE(3032), 1, - sym_comment, - ACTIONS(2222), 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, - [93857] = 6, + anon_sym_RBRACE, + [95720] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5767), 1, - sym__newline, - ACTIONS(5769), 1, + ACTIONS(6077), 1, sym__space, - STATE(3033), 1, + STATE(3099), 1, sym_comment, - STATE(3043), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5957), 11, + ACTIONS(6075), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217759,60 +219616,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_GT_PIPE, anon_sym_o_GT_PIPE, anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [93886] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_DASH2, - STATE(3034), 1, - sym_comment, - ACTIONS(2537), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93911] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2617), 1, - anon_sym_DASH2, - STATE(3035), 1, - sym_comment, - ACTIONS(2615), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_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, - [93936] = 4, + anon_sym_RBRACE, + [95745] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5961), 1, + ACTIONS(6081), 1, sym__space, - STATE(3036), 1, + STATE(3100), 1, sym_comment, - ACTIONS(5959), 13, + ACTIONS(6079), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217826,14 +219642,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93961] = 4, + [95770] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5965), 1, + ACTIONS(6085), 1, sym__space, - STATE(3037), 1, + STATE(3101), 1, sym_comment, - ACTIONS(5963), 13, + ACTIONS(6083), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217847,66 +219663,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93986] = 4, - ACTIONS(3), 1, + [95795] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_DASH2, - STATE(3038), 1, + ACTIONS(6089), 1, + sym__space, + STATE(3102), 1, sym_comment, - ACTIONS(2563), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(6087), 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, - [94011] = 10, - ACTIONS(3), 1, + anon_sym_RBRACE, + [95820] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3039), 1, + ACTIONS(2582), 1, + sym__space, + STATE(3103), 1, sym_comment, - STATE(3909), 1, - sym__immediate_decimal, - ACTIONS(5934), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5936), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [94048] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5967), 1, - anon_sym_else, - ACTIONS(5969), 1, + ACTIONS(2584), 13, sym__newline, - STATE(2944), 1, - aux_sym__repeat_newline, - STATE(3040), 1, - sym_comment, - ACTIONS(5972), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217918,18 +219704,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94077] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [95845] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5974), 1, - anon_sym_catch, - ACTIONS(5976), 1, - sym__newline, - STATE(2946), 1, - aux_sym__repeat_newline, - STATE(3041), 1, + ACTIONS(5486), 1, + sym__space, + STATE(3104), 1, sym_comment, - ACTIONS(5979), 11, + ACTIONS(5484), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217941,18 +219725,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94106] = 6, + anon_sym_RBRACE, + [95870] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5981), 1, - anon_sym_catch, - ACTIONS(5983), 1, + ACTIONS(5209), 1, + anon_sym_DOT, + ACTIONS(5211), 1, + aux_sym__immediate_decimal_token5, + STATE(3105), 1, + sym_comment, + ACTIONS(1756), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(1754), 10, + anon_sym_EQ, sym__newline, - STATE(2964), 1, - aux_sym__repeat_newline, - STATE(3042), 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, + [95899] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2296), 1, + sym__space, + STATE(3106), 1, sym_comment, - ACTIONS(5986), 11, + ACTIONS(2298), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217964,17 +219769,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94135] = 5, + anon_sym_RBRACE, + [95924] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5988), 1, - sym__newline, - ACTIONS(5991), 1, + ACTIONS(2108), 1, sym__space, - STATE(3043), 2, + STATE(3107), 1, sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5994), 11, + ACTIONS(2110), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217986,18 +219790,16 @@ 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, - ACTIONS(3), 1, + anon_sym_RBRACE, + [95949] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5996), 1, - anon_sym_else, - ACTIONS(5998), 1, - sym__newline, - STATE(2937), 1, - aux_sym__repeat_newline, - STATE(3044), 1, + ACTIONS(2116), 1, + sym__space, + STATE(3108), 1, sym_comment, - ACTIONS(6001), 11, + ACTIONS(2118), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218009,16 +219811,67 @@ 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, + anon_sym_RBRACE, + [95974] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1931), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(6091), 1, + sym__newline, + STATE(3109), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1926), 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, + [96001] = 13, ACTIONS(103), 1, anon_sym_POUND, - STATE(3045), 1, + ACTIONS(1599), 1, + sym__entry_separator, + ACTIONS(1603), 1, + anon_sym_RBRACK, + ACTIONS(1615), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1786), 1, + anon_sym_DOLLAR, + ACTIONS(5945), 1, + anon_sym_LPAREN2, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6096), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6098), 1, + aux_sym__immediate_decimal_token2, + STATE(3110), 1, sym_comment, - ACTIONS(2092), 3, + STATE(3676), 1, + sym__immediate_decimal, + ACTIONS(6100), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3846), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [96043] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3111), 1, + sym_comment, + ACTIONS(2535), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(2094), 11, + ACTIONS(2537), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218030,16 +219883,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, - [94216] = 4, + [96067] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3046), 1, + STATE(3112), 1, sym_comment, - ACTIONS(5257), 3, + ACTIONS(2614), 2, ts_builtin_sym_end, sym__space, - anon_sym_EQ2, - ACTIONS(5259), 11, + ACTIONS(2616), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218051,18 +219903,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, - [94241] = 6, + [96091] = 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(3113), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(6102), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218074,18 +219921,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94270] = 6, + anon_sym_RBRACE, + [96113] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1691), 1, + sym__unquoted_pattern, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(3114), 1, + sym_comment, + STATE(4210), 1, + sym__immediate_decimal, + ACTIONS(6104), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6106), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(726), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1677), 3, sym__newline, - ACTIONS(6006), 1, - anon_sym_catch, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3048), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [96149] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3115), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(2502), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2504), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218096,15 +219968,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, + [96173] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2258), 1, - sym__space, - STATE(3049), 1, + STATE(3116), 1, sym_comment, - ACTIONS(2260), 13, + ACTIONS(2296), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2298), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218116,16 +219988,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [94324] = 4, - ACTIONS(103), 1, + [96197] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1866), 1, - sym__space, - STATE(3050), 1, + STATE(3117), 1, sym_comment, - ACTIONS(1868), 13, + ACTIONS(5424), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218139,14 +220007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94349] = 4, + [96219] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2563), 1, - sym__space, - STATE(3051), 1, + STATE(3118), 1, sym_comment, - ACTIONS(2565), 13, + ACTIONS(2108), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2110), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218158,16 +220027,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, - [94374] = 4, + [96243] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2571), 1, - sym__space, - STATE(3052), 1, + STATE(3119), 1, sym_comment, - ACTIONS(2573), 13, + ACTIONS(2116), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2118), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218179,108 +220047,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, - [94399] = 6, - ACTIONS(3), 1, + [96267] = 12, + ACTIONS(103), 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, + ACTIONS(1599), 1, + sym__space, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(3279), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, 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, + ACTIONS(6108), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6110), 1, + aux_sym__immediate_decimal_token2, + STATE(3120), 1, sym_comment, - STATE(3239), 1, - sym_param_completer, - ACTIONS(5779), 11, - anon_sym_EQ, - sym_identifier, + STATE(4009), 1, + sym__immediate_decimal, + ACTIONS(1603), 2, sym__newline, - anon_sym_PIPE, - 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_SEMI, + ACTIONS(6112), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2949), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [96307] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3055), 1, + STATE(3121), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2124), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2126), 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, - [94482] = 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, + [96331] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_DASH2, - STATE(3056), 1, + ACTIONS(6114), 1, + anon_sym_catch, + STATE(3122), 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(5858), 12, + ts_builtin_sym_end, 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, @@ -218291,36 +220115,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, - [94536] = 4, + [96355] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(3123), 1, + sym_comment, + STATE(4205), 1, + sym__immediate_decimal, + ACTIONS(6104), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6106), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(780), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1599), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [96391] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2573), 1, + ACTIONS(5933), 1, anon_sym_DASH2, - STATE(3058), 1, + STATE(3124), 1, sym_comment, - ACTIONS(2571), 13, + ACTIONS(5929), 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_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94561] = 4, + [96415] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2194), 1, - sym__space, - STATE(3059), 1, + STATE(3125), 1, sym_comment, - ACTIONS(2196), 13, + ACTIONS(5845), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5843), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218332,16 +220181,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, - [94586] = 4, + [96439] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4629), 1, - sym__space, - STATE(3060), 1, + ACTIONS(1617), 1, + sym__entry_separator, + ACTIONS(1786), 1, + anon_sym_DOLLAR, + ACTIONS(5945), 1, + anon_sym_LPAREN2, + ACTIONS(5949), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5951), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6116), 1, + anon_sym_DOT, + STATE(3126), 1, + sym_comment, + STATE(3904), 1, + sym__immediate_decimal, + ACTIONS(1619), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(5953), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3903), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [96479] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3127), 1, sym_comment, - ACTIONS(4627), 13, + ACTIONS(2363), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2365), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218353,58 +220229,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [94611] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1619), 1, - anon_sym_DASH2, - STATE(3061), 1, - sym_comment, - ACTIONS(1706), 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, - [94636] = 4, + [96503] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2114), 1, + ACTIONS(6120), 1, anon_sym_DASH2, - STATE(3062), 1, + STATE(3128), 1, sym_comment, - ACTIONS(2112), 13, + ACTIONS(6118), 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_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94661] = 4, + [96527] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2254), 1, - sym__space, - STATE(3063), 1, + STATE(3129), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(2598), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2600), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218416,19 +220269,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, - [94686] = 5, + [96551] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6016), 1, - anon_sym_LBRACK2, - STATE(3064), 1, + STATE(3130), 1, sym_comment, - ACTIONS(2128), 2, + ACTIONS(2602), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2130), 11, + ACTIONS(2604), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218440,36 +220289,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, - [94713] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1960), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(6018), 1, - sym__newline, - STATE(3065), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1955), 11, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [94740] = 4, + [96575] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2254), 1, - sym__space, - STATE(3066), 1, + STATE(3131), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(2606), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2608), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218481,16 +220309,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, - [94765] = 4, + [96599] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2262), 1, - sym__space, - STATE(3067), 1, + STATE(3132), 1, sym_comment, - ACTIONS(2264), 13, + ACTIONS(2610), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2612), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218502,41 +220329,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, - [94790] = 4, - ACTIONS(3), 1, + [96623] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2507), 1, - anon_sym_DASH2, - STATE(3068), 1, + STATE(3133), 1, sym_comment, - ACTIONS(2505), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94815] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6021), 1, - anon_sym_else, - ACTIONS(6023), 1, + ACTIONS(4655), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4653), 11, 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, @@ -218547,15 +220349,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, - [94844] = 4, + [96647] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4625), 1, - sym__space, - STATE(3070), 1, + STATE(3134), 1, sym_comment, - ACTIONS(4623), 13, + ACTIONS(2367), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2369), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218567,20 +220369,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, + [96671] = 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(3135), 1, sym_comment, - ACTIONS(6033), 11, + ACTIONS(2379), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2381), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218591,36 +220389,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, + [96695] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6037), 1, - sym__space, - STATE(3073), 1, + STATE(3136), 1, sym_comment, - ACTIONS(6035), 13, + ACTIONS(2383), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2385), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218632,16 +220409,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, - [94948] = 4, + [96719] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2234), 1, - sym__space, - STATE(3074), 1, + STATE(3137), 1, sym_comment, - ACTIONS(2236), 13, + ACTIONS(2387), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2389), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218653,41 +220429,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, + [96743] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_else, - STATE(3076), 1, + STATE(3138), 1, sym_comment, - ACTIONS(6043), 12, + ACTIONS(4659), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4657), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218699,47 +220449,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_RBRACE, - [95031] = 15, + [96767] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5686), 1, sym_identifier, - ACTIONS(5694), 1, + ACTIONS(5692), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5694), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5696), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5698), 1, anon_sym_DASH2, - ACTIONS(5723), 1, + ACTIONS(6122), 1, anon_sym_RBRACK, - STATE(2467), 1, + STATE(2483), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2599), 1, sym__param_name, - STATE(2828), 1, + STATE(2853), 1, aux_sym_parameter_parens_repeat1, - STATE(3077), 1, + STATE(3139), 1, sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, + STATE(3334), 1, sym_param_rest, - STATE(3328), 1, + STATE(3336), 1, sym_param_opt, - STATE(3582), 1, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 1, sym_parameter, - [95077] = 4, + [96813] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3078), 1, + STATE(3140), 1, sym_comment, - ACTIONS(2537), 2, + ACTIONS(4663), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2539), 11, + ACTIONS(4661), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218751,12 +220500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95101] = 3, - ACTIONS(3), 1, + [96837] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3079), 1, + STATE(3141), 1, sym_comment, - ACTIONS(4783), 13, + ACTIONS(2429), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2431), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218768,46 +220520,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, - [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, + [96861] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3081), 1, + STATE(3142), 1, sym_comment, - ACTIONS(5856), 2, + ACTIONS(2586), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5854), 11, + ACTIONS(2588), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218819,71 +220540,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, - [95189] = 9, - 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, - 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, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [95223] = 15, + [96885] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5686), 1, sym_identifier, - ACTIONS(5694), 1, + ACTIONS(5692), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5694), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5696), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5698), 1, anon_sym_DASH2, - ACTIONS(6053), 1, + ACTIONS(6124), 1, anon_sym_RPAREN, - STATE(2467), 1, + STATE(2483), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2599), 1, sym__param_name, - STATE(2828), 1, + STATE(2853), 1, aux_sym_parameter_parens_repeat1, - STATE(3083), 1, + STATE(3143), 1, sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, + STATE(3334), 1, sym_param_rest, - STATE(3328), 1, + STATE(3336), 1, sym_param_opt, - STATE(3582), 1, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 1, sym_parameter, - [95269] = 4, + [96931] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3084), 1, + STATE(3144), 1, sym_comment, - ACTIONS(2202), 2, + ACTIONS(2210), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2204), 11, + ACTIONS(2212), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218895,15 +220591,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, + [96955] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3085), 1, + STATE(3145), 1, sym_comment, - ACTIONS(5889), 2, + ACTIONS(2214), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5887), 11, + ACTIONS(2216), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218915,15 +220611,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, + [96979] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3086), 1, + STATE(3146), 1, sym_comment, - ACTIONS(5965), 2, + ACTIONS(2218), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5963), 11, + ACTIONS(2220), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218935,12 +220631,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, + [97003] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3087), 1, + STATE(3147), 1, sym_comment, - ACTIONS(4789), 13, + ACTIONS(2222), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2224), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218952,48 +220651,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, - [95363] = 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(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, - 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, + [97027] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3089), 1, + STATE(3148), 1, sym_comment, - ACTIONS(2505), 2, + ACTIONS(2226), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2507), 11, + ACTIONS(2228), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219005,43 +220671,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, - [95433] = 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, - anon_sym_DOLLAR, - ACTIONS(6055), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6057), 1, - aux_sym__immediate_decimal_token2, - STATE(3090), 1, - sym_comment, - STATE(4026), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6059), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3013), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [95473] = 4, + [97051] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3091), 1, + STATE(3149), 1, sym_comment, - ACTIONS(2254), 2, + ACTIONS(2230), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2256), 11, + ACTIONS(2232), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219053,15 +220691,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, + [97075] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3092), 1, + STATE(3150), 1, sym_comment, - ACTIONS(5885), 2, + ACTIONS(2234), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5883), 11, + ACTIONS(2236), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219073,35 +220711,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, - [95521] = 4, + [97099] = 3, 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, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3094), 1, + STATE(3151), 1, sym_comment, - ACTIONS(2591), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2593), 11, + ACTIONS(4799), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219113,34 +220728,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, - [95569] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97121] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6067), 1, - anon_sym_DASH2, - STATE(3095), 1, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(3152), 1, sym_comment, - ACTIONS(6065), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5593), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [95593] = 4, + [97145] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3096), 1, + ACTIONS(6128), 1, + anon_sym_else, + STATE(3153), 1, sym_comment, - STATE(3211), 1, - aux_sym__repeat_newline, - ACTIONS(5590), 12, + ACTIONS(6126), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219152,16 +220770,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, - [95617] = 4, + [97169] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(718), 1, + sym__immediate_decimal, + STATE(3154), 1, + sym_comment, + ACTIONS(5741), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6130), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(717), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1661), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [97203] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3097), 1, + STATE(3155), 1, sym_comment, - ACTIONS(5961), 2, + ACTIONS(2258), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5959), 11, + ACTIONS(2260), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219173,15 +220815,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, - [95641] = 4, + [97227] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3098), 1, + STATE(3156), 1, sym_comment, - ACTIONS(2254), 2, + ACTIONS(2258), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2256), 11, + ACTIONS(2260), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219193,63 +220835,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, - [95665] = 12, + [97251] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1631), 1, + ACTIONS(1677), 1, sym__entry_separator, - ACTIONS(1639), 1, + ACTIONS(1691), 1, sym__unquoted_pattern_in_list, - ACTIONS(6069), 1, + ACTIONS(6132), 1, anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(6134), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, + ACTIONS(6136), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, + ACTIONS(6138), 1, aux_sym__immediate_decimal_token2, - STATE(3099), 1, + STATE(3157), 1, sym_comment, - STATE(3932), 1, + STATE(4052), 1, sym__immediate_decimal, - ACTIONS(1633), 2, + ACTIONS(1679), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(6077), 2, + ACTIONS(6140), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4123), 2, + STATE(4203), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [95705] = 4, + [97291] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6079), 1, - anon_sym_catch, - STATE(3100), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(723), 1, + sym__immediate_decimal, + STATE(3158), 1, sym_comment, - ACTIONS(5918), 12, - ts_builtin_sym_end, + ACTIONS(5741), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6130), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(722), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1669), 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, - [95729] = 4, - ACTIONS(103), 1, + anon_sym_EQ_GT, + [97325] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3101), 1, + STATE(3159), 1, sym_comment, - ACTIONS(2206), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2208), 11, + ACTIONS(6015), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219261,34 +220905,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, - [95753] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97347] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(3102), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(725), 1, + sym__immediate_decimal, + STATE(3160), 1, sym_comment, - ACTIONS(6081), 13, + ACTIONS(5741), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6130), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(724), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1673), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [95775] = 4, - ACTIONS(103), 1, + anon_sym_EQ_GT, + [97381] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3103), 1, + STATE(3161), 1, sym_comment, - ACTIONS(2210), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2212), 11, + ACTIONS(6142), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219300,34 +220949,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, - [95799] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97403] = 15, 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, + ACTIONS(5686), 1, + sym_identifier, + ACTIONS(5692), 1, anon_sym_DOLLAR, + ACTIONS(5694), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5696), 1, + anon_sym_DASH_DASH, + ACTIONS(5698), 1, anon_sym_DASH2, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [95823] = 4, + ACTIONS(5824), 1, + anon_sym_PIPE, + STATE(2483), 1, + sym_param_long_flag, + STATE(2599), 1, + sym__param_name, + STATE(2853), 1, + aux_sym_parameter_parens_repeat1, + STATE(3162), 1, + sym_comment, + STATE(3334), 1, + sym_param_rest, + STATE(3336), 1, + sym_param_opt, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 1, + sym_parameter, + [97449] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5924), 1, + ACTIONS(6146), 1, anon_sym_DASH2, - STATE(3105), 1, + STATE(3163), 1, sym_comment, - ACTIONS(5920), 12, + ACTIONS(6144), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -219337,83 +220999,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT2, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95847] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6083), 1, - anon_sym_else, - STATE(3106), 1, - sym_comment, - ACTIONS(6043), 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, - [95871] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3107), 1, - sym_comment, - ACTIONS(2258), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2260), 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, - [95895] = 12, + [97473] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(1599), 1, + sym__entry_separator, + ACTIONS(1615), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6132), 1, anon_sym_DOLLAR, - ACTIONS(4866), 1, - anon_sym_DOT, - ACTIONS(5862), 1, + ACTIONS(6134), 1, + anon_sym_LPAREN2, + ACTIONS(6136), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5864), 1, + ACTIONS(6138), 1, aux_sym__immediate_decimal_token2, - STATE(3108), 1, + STATE(3164), 1, sym_comment, - STATE(3870), 1, + STATE(4044), 1, sym__immediate_decimal, - ACTIONS(1586), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, + ACTIONS(1603), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6140), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3869), 2, + STATE(4171), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [95935] = 3, - ACTIONS(3), 1, + [97513] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3109), 1, + STATE(3165), 1, sym_comment, - ACTIONS(6085), 13, + ACTIONS(2266), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2268), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219425,17 +221050,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, - [95957] = 4, + [97537] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3110), 1, + STATE(3166), 1, sym_comment, - ACTIONS(2226), 2, + ACTIONS(2270), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2228), 11, + ACTIONS(2272), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219447,15 +221070,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, - [95981] = 4, - ACTIONS(103), 1, + [97561] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3111), 1, + STATE(3167), 1, sym_comment, - ACTIONS(2230), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2232), 11, + ACTIONS(4793), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219467,15 +221087,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, - [96005] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97583] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3112), 1, + STATE(3168), 1, sym_comment, - ACTIONS(2234), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2236), 11, + ACTIONS(6148), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219487,12 +221106,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, - [96029] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97605] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3113), 1, + STATE(3169), 1, sym_comment, - ACTIONS(6087), 13, + ACTIONS(6015), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6013), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219504,14 +221128,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, + [97629] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3114), 1, + STATE(3170), 1, sym_comment, - ACTIONS(6089), 13, + ACTIONS(5964), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5962), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219523,14 +221148,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [96073] = 3, + [97653] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3115), 1, + STATE(3171), 1, sym_comment, - ACTIONS(6091), 13, + ACTIONS(6150), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219544,53 +221167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96095] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6095), 1, - anon_sym_DASH2, - STATE(3116), 1, - sym_comment, - ACTIONS(6093), 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, - [96119] = 5, + [97675] = 3, 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, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96145] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3118), 1, + STATE(3172), 1, sym_comment, - ACTIONS(6103), 13, + ACTIONS(6152), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219604,63 +221186,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96167] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(5841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6105), 1, - anon_sym_DOT, - STATE(3119), 1, - sym_comment, - STATE(3862), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(5845), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3861), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [96207] = 4, + [97697] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6109), 1, - anon_sym_DASH2, - STATE(3120), 1, - sym_comment, - ACTIONS(6107), 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, - [96231] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3121), 1, + STATE(3173), 1, sym_comment, - ACTIONS(2238), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2240), 11, + ACTIONS(6154), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219672,15 +221203,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96255] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97719] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3122), 1, + STATE(3174), 1, sym_comment, - ACTIONS(5251), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5249), 11, + ACTIONS(6156), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219692,15 +221222,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, - [96279] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97741] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3123), 1, + STATE(3175), 1, sym_comment, - ACTIONS(5940), 2, + ACTIONS(6069), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5938), 11, + ACTIONS(6067), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219712,15 +221244,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, - [96303] = 4, + [97765] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5686), 1, + sym_identifier, + ACTIONS(5692), 1, + anon_sym_DOLLAR, + ACTIONS(5694), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5696), 1, + anon_sym_DASH_DASH, + ACTIONS(5698), 1, + anon_sym_DASH2, + ACTIONS(5750), 1, + anon_sym_RPAREN, + STATE(2483), 1, + sym_param_long_flag, + STATE(2599), 1, + sym__param_name, + STATE(2853), 1, + aux_sym_parameter_parens_repeat1, + STATE(3176), 1, + sym_comment, + STATE(3334), 1, + sym_param_rest, + STATE(3336), 1, + sym_param_opt, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 1, + sym_parameter, + [97811] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3124), 1, + STATE(3177), 1, sym_comment, - ACTIONS(5247), 2, + ACTIONS(5395), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5245), 11, + ACTIONS(5393), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219732,15 +221295,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, + [97835] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3125), 1, + STATE(3178), 1, sym_comment, - ACTIONS(2242), 2, + ACTIONS(6073), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2244), 11, + ACTIONS(6071), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219752,15 +221315,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, + [97859] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3126), 1, + STATE(3179), 1, sym_comment, - ACTIONS(6037), 2, + ACTIONS(6026), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6035), 11, + ACTIONS(6024), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219772,44 +221335,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, - [96375] = 12, - 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(6055), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6057), 1, - aux_sym__immediate_decimal_token2, - STATE(3127), 1, - sym_comment, - STATE(4013), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6059), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2982), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [96415] = 5, + [97883] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(868), 1, + ACTIONS(6160), 1, anon_sym_DASH2, - ACTIONS(5116), 1, - sym__unquoted_pattern_in_record, - STATE(3128), 1, + STATE(3180), 1, sym_comment, - ACTIONS(968), 11, + ACTIONS(6158), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -219819,16 +221352,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, - [96441] = 4, + [97907] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6113), 1, + ACTIONS(6164), 1, anon_sym_DASH2, - STATE(3129), 1, + STATE(3181), 1, sym_comment, - ACTIONS(6111), 12, + ACTIONS(6162), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -219838,18 +221372,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, - anon_sym_LPAREN2, - [96465] = 4, - ACTIONS(103), 1, + [97931] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3130), 1, + ACTIONS(6166), 1, + anon_sym_else, + STATE(3182), 1, sym_comment, - ACTIONS(2214), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2216), 11, + ACTIONS(6126), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219861,35 +221394,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, - [96489] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6117), 1, - anon_sym_DASH2, - STATE(3131), 1, - sym_comment, - ACTIONS(6115), 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, - [96513] = 4, + anon_sym_RBRACE, + [97955] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3132), 1, + STATE(3183), 1, sym_comment, - ACTIONS(2246), 2, + ACTIONS(4555), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2248), 11, + ACTIONS(4553), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219901,15 +221415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96537] = 4, + [97979] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3133), 1, + STATE(3184), 1, sym_comment, - ACTIONS(2615), 2, + ACTIONS(1888), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2617), 11, + ACTIONS(1890), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219921,35 +221435,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, - [96561] = 4, - ACTIONS(3), 1, + [98003] = 13, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3134), 1, + ACTIONS(1599), 1, + sym__entry_separator, + ACTIONS(1603), 1, + anon_sym_RBRACE, + ACTIONS(1615), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1786), 1, + anon_sym_DOLLAR, + ACTIONS(5945), 1, + anon_sym_LPAREN2, + ACTIONS(6168), 1, + anon_sym_DOT, + ACTIONS(6170), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6172), 1, + aux_sym__immediate_decimal_token2, + STATE(3185), 1, sym_comment, - STATE(3173), 1, - aux_sym__repeat_newline, - ACTIONS(5596), 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, - [96585] = 4, + STATE(3671), 1, + sym__immediate_decimal, + ACTIONS(6174), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3846), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [98045] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3135), 1, + STATE(3186), 1, sym_comment, - ACTIONS(4625), 2, + ACTIONS(1856), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4623), 11, + ACTIONS(1858), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219961,12 +221484,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, - [96609] = 3, + [98069] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3136), 1, + STATE(3187), 1, sym_comment, - ACTIONS(6119), 13, + STATE(3212), 1, + aux_sym__repeat_newline, + ACTIONS(5530), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219979,15 +221504,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, - [96631] = 4, + [98093] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6123), 1, + ACTIONS(6178), 1, anon_sym_DASH2, - STATE(3137), 1, + STATE(3188), 1, sym_comment, - ACTIONS(6121), 12, + ACTIONS(6176), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -220000,34 +221524,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96655] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3138), 1, - sym_comment, - ACTIONS(2250), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2252), 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, - [96679] = 4, + [98117] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6127), 1, + ACTIONS(6182), 1, anon_sym_DASH2, - STATE(3139), 1, + STATE(3189), 1, sym_comment, - ACTIONS(6125), 12, + ACTIONS(6180), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -220040,14 +221544,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96703] = 4, + [98141] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6131), 1, + ACTIONS(6186), 1, anon_sym_DASH2, - STATE(3140), 1, + STATE(3190), 1, sym_comment, - ACTIONS(6129), 12, + ACTIONS(6184), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -220060,15 +221564,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96727] = 4, + [98165] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3141), 1, + STATE(3191), 1, sym_comment, - ACTIONS(2262), 2, + ACTIONS(6081), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2264), 11, + ACTIONS(6079), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220080,35 +221584,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, - [96751] = 4, + [98189] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6135), 1, - anon_sym_DASH2, - STATE(3142), 1, + ACTIONS(6188), 1, + anon_sym_else, + STATE(3192), 1, sym_comment, - ACTIONS(6133), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6126), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96775] = 4, + [98213] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3143), 1, + STATE(3193), 1, sym_comment, - ACTIONS(1858), 2, + ACTIONS(6085), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1860), 11, + ACTIONS(6083), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220120,14 +221624,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, - [96799] = 4, + [98237] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6139), 1, + ACTIONS(6192), 1, anon_sym_DASH2, - STATE(3144), 1, + STATE(3194), 1, sym_comment, - ACTIONS(6137), 12, + ACTIONS(6190), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -220140,12 +221644,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96823] = 3, - ACTIONS(3), 1, + [98261] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3145), 1, + STATE(3195), 1, sym_comment, - ACTIONS(6141), 13, + ACTIONS(6089), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6087), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220157,36 +221664,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [96845] = 3, + [98285] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3146), 1, + ACTIONS(6196), 1, + anon_sym_DASH2, + STATE(3196), 1, sym_comment, - ACTIONS(6143), 13, + ACTIONS(6194), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [96867] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [98309] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3147), 1, + STATE(3197), 1, sym_comment, - ACTIONS(4629), 2, + ACTIONS(5486), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4627), 11, + ACTIONS(5484), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220198,15 +221704,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, - [96891] = 4, - ACTIONS(103), 1, + [98333] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3148), 1, + STATE(3198), 1, sym_comment, - ACTIONS(2607), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2609), 11, + ACTIONS(6198), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220218,41 +221721,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, - [96915] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3149), 1, - sym_comment, - STATE(4120), 1, - sym__immediate_decimal, - ACTIONS(6145), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6147), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [96951] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98355] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3150), 1, + STATE(3199), 1, sym_comment, - ACTIONS(5581), 2, + ACTIONS(2582), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5579), 11, + ACTIONS(2584), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220264,46 +221743,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, + [98379] = 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(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, + aux_sym__repeat_newline, + STATE(3200), 1, sym_comment, - ACTIONS(4633), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4631), 11, + ACTIONS(5622), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220315,15 +221762,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, - [97045] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + [98403] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3153), 1, + STATE(3201), 1, sym_comment, - ACTIONS(2563), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2565), 11, + ACTIONS(6200), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220335,40 +221780,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, - [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, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98425] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3155), 1, + STATE(3202), 1, sym_comment, - ACTIONS(2571), 2, + ACTIONS(5247), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2573), 11, + ACTIONS(5245), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220380,15 +221802,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, + [98449] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3156), 1, + STATE(3203), 1, sym_comment, - ACTIONS(2218), 2, + ACTIONS(884), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2220), 11, + ACTIONS(858), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220400,185 +221822,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, - [97151] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6153), 1, - anon_sym_DASH2, - STATE(3157), 1, - sym_comment, - ACTIONS(6151), 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, - [97175] = 4, + [98473] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6157), 1, + ACTIONS(6204), 1, + anon_sym_QMARK, + ACTIONS(6206), 1, anon_sym_DASH2, - STATE(3158), 1, + STATE(3204), 1, sym_comment, - ACTIONS(6155), 12, + ACTIONS(6202), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [97199] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6159), 1, - anon_sym_else, - STATE(3159), 1, - sym_comment, - ACTIONS(6043), 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, - [97223] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(741), 1, - sym__immediate_decimal, - STATE(3160), 1, - sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(740), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1675), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [97257] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3161), 1, - sym_comment, - ACTIONS(5548), 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, - [97279] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3162), 1, - sym_comment, - ACTIONS(2511), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2513), 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, - [97303] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3163), 1, - sym_comment, - ACTIONS(2194), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2196), 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, - [97327] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3164), 1, - sym_comment, - STATE(4125), 1, - sym__immediate_decimal, - ACTIONS(6145), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6147), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [97363] = 4, + [98499] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3165), 1, + STATE(3205), 1, sym_comment, - ACTIONS(968), 2, + ACTIONS(1716), 2, ts_builtin_sym_end, sym__space, - ACTIONS(868), 11, + ACTIONS(1629), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220590,32 +221863,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, + [98523] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3166), 1, + STATE(3206), 1, sym_comment, - ACTIONS(5346), 2, + ACTIONS(5939), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5344), 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, - [97411] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3167), 1, - sym_comment, - ACTIONS(6161), 13, + ACTIONS(5937), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220627,17 +221883,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, - [97433] = 4, + [98547] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3168), 1, + STATE(3207), 1, sym_comment, - ACTIONS(2515), 2, + ACTIONS(2160), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2517), 11, + ACTIONS(2162), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220649,12 +221903,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, - [97457] = 3, + [98571] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3169), 1, + STATE(3208), 1, sym_comment, - ACTIONS(6163), 13, + ACTIONS(6208), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220668,15 +221922,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97479] = 4, + [98593] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3170), 1, + STATE(3209), 1, sym_comment, - ACTIONS(5893), 2, + ACTIONS(5251), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5891), 11, + ACTIONS(5249), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220688,156 +221942,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, - [97503] = 15, + [98617] = 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, + ACTIONS(6212), 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, + STATE(3210), 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, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(6210), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(6165), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3172), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97595] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3173), 1, - sym_comment, - ACTIONS(5514), 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_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [97619] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, + 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(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, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3175), 1, - sym_comment, - STATE(3928), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4079), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [97705] = 4, + [98641] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3176), 1, + STATE(3211), 1, sym_comment, - ACTIONS(5897), 2, + ACTIONS(2517), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5895), 11, + ACTIONS(2519), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220849,15 +221982,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, - [97729] = 4, - ACTIONS(103), 1, + [98665] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3177), 1, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(3212), 1, sym_comment, - ACTIONS(2198), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2200), 11, + ACTIONS(5666), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220869,96 +222001,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, - [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, + [98689] = 6, 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(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, - anon_sym_POUND, - STATE(3180), 1, - sym_comment, - ACTIONS(1706), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1619), 11, + ACTIONS(5990), 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, - [97865] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3181), 1, + ACTIONS(6214), 1, + anon_sym_else, + STATE(3213), 1, sym_comment, - ACTIONS(5901), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5899), 11, - sym__newline, + STATE(3217), 1, + aux_sym__repeat_newline, + ACTIONS(5993), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220969,15 +222024,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, - [97889] = 4, + [98717] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3182), 1, + STATE(3214), 1, sym_comment, - ACTIONS(2100), 2, + ACTIONS(2552), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2102), 11, + ACTIONS(2554), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220989,40 +222044,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97913] = 6, + [98741] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5969), 1, + ACTIONS(6039), 1, sym__newline, - ACTIONS(6175), 1, + ACTIONS(6216), 1, anon_sym_else, - STATE(3183), 1, - sym_comment, - STATE(3186), 1, - aux_sym__repeat_newline, - ACTIONS(5972), 10, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [97941] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6023), 1, - sym__newline, - ACTIONS(6177), 1, - anon_sym_else, - STATE(3184), 1, + STATE(3215), 1, sym_comment, - STATE(3188), 1, + STATE(3219), 1, aux_sym__repeat_newline, - ACTIONS(6026), 10, + ACTIONS(6042), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221033,18 +222066,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, + [98769] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6030), 1, + ACTIONS(5957), 1, sym__newline, - ACTIONS(6179), 1, + ACTIONS(6218), 1, anon_sym_else, - STATE(3185), 1, + STATE(3216), 1, sym_comment, - STATE(3189), 1, + STATE(3220), 1, aux_sym__repeat_newline, - ACTIONS(6033), 10, + ACTIONS(5960), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221055,18 +222088,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, + [98797] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5817), 1, + ACTIONS(5851), 1, sym__newline, - ACTIONS(6181), 1, + ACTIONS(6220), 1, anon_sym_else, - STATE(3186), 1, + STATE(3217), 1, sym_comment, - STATE(3190), 1, + STATE(3221), 1, aux_sym__repeat_newline, - ACTIONS(5820), 10, + ACTIONS(5854), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221077,18 +222110,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, + [98825] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5950), 1, + ACTIONS(5924), 1, sym__newline, - ACTIONS(6183), 1, + ACTIONS(6222), 1, anon_sym_else, - STATE(3187), 1, + STATE(3218), 1, sym_comment, - STATE(3191), 1, + STATE(3222), 1, aux_sym__repeat_newline, - ACTIONS(5953), 10, + ACTIONS(5927), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221099,18 +222132,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, + [98853] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5794), 1, + ACTIONS(6019), 1, sym__newline, - ACTIONS(6185), 1, + ACTIONS(6224), 1, anon_sym_else, - STATE(3188), 1, + STATE(3219), 1, sym_comment, - STATE(3192), 1, + STATE(3223), 1, aux_sym__repeat_newline, - ACTIONS(5797), 10, + ACTIONS(6022), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221121,18 +222154,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, + [98881] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5849), 1, + ACTIONS(6030), 1, sym__newline, - ACTIONS(6187), 1, + ACTIONS(6226), 1, anon_sym_else, - STATE(3189), 1, + STATE(3220), 1, sym_comment, - STATE(3193), 1, + STATE(3224), 1, aux_sym__repeat_newline, - ACTIONS(5852), 10, + ACTIONS(6033), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221143,18 +222176,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, + [98909] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1928), 1, sym__newline, - ACTIONS(6189), 1, + ACTIONS(6228), 1, anon_sym_else, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(3190), 1, + STATE(3221), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(1926), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221165,18 +222198,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, + [98937] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5998), 1, + ACTIONS(5899), 1, sym__newline, - ACTIONS(6192), 1, + ACTIONS(6231), 1, anon_sym_else, - STATE(3191), 1, + STATE(3222), 1, sym_comment, - STATE(3194), 1, + STATE(3225), 1, aux_sym__repeat_newline, - ACTIONS(6001), 10, + ACTIONS(5902), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221187,18 +222220,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, + [98965] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1928), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6233), 1, anon_sym_else, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(3192), 1, + STATE(3223), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(1926), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221209,18 +222242,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, + [98993] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1928), 1, sym__newline, - ACTIONS(6197), 1, + ACTIONS(6236), 1, anon_sym_else, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(3193), 1, + STATE(3224), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(1926), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221231,18 +222264,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, + [99021] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1928), 1, sym__newline, - ACTIONS(6200), 1, + ACTIONS(6239), 1, anon_sym_else, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(3194), 1, + STATE(3225), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(1926), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221253,15 +222286,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98249] = 4, + [99049] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3195), 1, + STATE(3226), 1, sym_comment, - ACTIONS(2076), 2, + ACTIONS(5968), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2078), 11, + ACTIONS(5966), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221273,15 +222306,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, + [99073] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3196), 1, + STATE(3227), 1, sym_comment, - ACTIONS(5905), 2, + ACTIONS(2152), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5903), 11, + ACTIONS(2154), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221293,165 +222326,288 @@ static const 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, + [99097] = 12, ACTIONS(103), 1, anon_sym_POUND, - STATE(3197), 1, + ACTIONS(1677), 1, + sym__space, + ACTIONS(1691), 1, + sym__unquoted_pattern, + ACTIONS(3279), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(6108), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6110), 1, + aux_sym__immediate_decimal_token2, + STATE(3228), 1, + sym_comment, + STATE(4048), 1, + sym__immediate_decimal, + ACTIONS(1679), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6112), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2998), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [99137] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5686), 1, + sym_identifier, + ACTIONS(5692), 1, + anon_sym_DOLLAR, + ACTIONS(5694), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5696), 1, + anon_sym_DASH_DASH, + ACTIONS(5698), 1, + anon_sym_DASH2, + ACTIONS(5803), 1, + anon_sym_RBRACK, + STATE(2483), 1, + sym_param_long_flag, + STATE(2599), 1, + sym__param_name, + STATE(2853), 1, + aux_sym_parameter_parens_repeat1, + STATE(3229), 1, + sym_comment, + STATE(3334), 1, + sym_param_rest, + STATE(3336), 1, + sym_param_opt, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 1, + sym_parameter, + [99183] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5686), 1, + sym_identifier, + ACTIONS(5692), 1, + anon_sym_DOLLAR, + ACTIONS(5694), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5696), 1, + anon_sym_DASH_DASH, + ACTIONS(5698), 1, + anon_sym_DASH2, + ACTIONS(6242), 1, + anon_sym_PIPE, + STATE(2483), 1, + sym_param_long_flag, + STATE(2599), 1, + sym__param_name, + STATE(2853), 1, + aux_sym_parameter_parens_repeat1, + STATE(3230), 1, + sym_comment, + STATE(3334), 1, + sym_param_rest, + STATE(3336), 1, + sym_param_opt, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 1, + sym_parameter, + [99229] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2146), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(3231), 1, + sym_comment, + ACTIONS(2144), 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, + [99253] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(777), 1, + sym__immediate_decimal, + STATE(3232), 1, + sym_comment, + ACTIONS(5741), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6130), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(776), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1617), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [99287] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1617), 1, + sym__entry_separator, + ACTIONS(1786), 1, + anon_sym_DOLLAR, + ACTIONS(5945), 1, + anon_sym_LPAREN2, + ACTIONS(6096), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6098), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6116), 1, + anon_sym_DOT, + STATE(3233), 1, sym_comment, - ACTIONS(2222), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2224), 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, - [98321] = 15, + STATE(3842), 1, + sym__immediate_decimal, + ACTIONS(1619), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6100), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3841), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [99327] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5686), 1, sym_identifier, - ACTIONS(5694), 1, + ACTIONS(5692), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5694), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5696), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5698), 1, anon_sym_DASH2, - ACTIONS(6203), 1, + ACTIONS(5710), 1, anon_sym_RBRACK, - STATE(2467), 1, + STATE(2483), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2599), 1, sym__param_name, - STATE(2828), 1, + STATE(2853), 1, aux_sym_parameter_parens_repeat1, - STATE(3198), 1, + STATE(3234), 1, sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, + STATE(3334), 1, sym_param_rest, - STATE(3328), 1, + STATE(3336), 1, sym_param_opt, - STATE(3582), 1, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 1, sym_parameter, - [98367] = 4, - ACTIONS(103), 1, + [99373] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3199), 1, + ACTIONS(6246), 1, + anon_sym_DASH2, + STATE(3235), 1, sym_comment, - ACTIONS(2120), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2122), 11, + ACTIONS(6244), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [98391] = 12, + 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, + [99397] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1617), 1, + sym__space, + ACTIONS(3279), 1, anon_sym_LPAREN2, - ACTIONS(6047), 1, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(4898), 1, + anon_sym_DOT, + ACTIONS(5916), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, + ACTIONS(5918), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6105), 1, - anon_sym_DOT, - STATE(3200), 1, + STATE(3236), 1, sym_comment, - STATE(3808), 1, + STATE(3900), 1, sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, + ACTIONS(1619), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(5920), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3807), 2, + STATE(3899), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [98431] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3201), 1, - sym_comment, - ACTIONS(2152), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2154), 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, - [98455] = 15, + [99437] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5686), 1, sym_identifier, - ACTIONS(5694), 1, + ACTIONS(5692), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5694), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5696), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5698), 1, anon_sym_DASH2, - ACTIONS(6205), 1, + ACTIONS(6248), 1, anon_sym_RBRACK, - STATE(2467), 1, + STATE(2483), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2599), 1, sym__param_name, - STATE(2828), 1, + STATE(2853), 1, aux_sym_parameter_parens_repeat1, - STATE(3202), 1, + STATE(3237), 1, sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, + STATE(3334), 1, sym_param_rest, - STATE(3328), 1, + STATE(3336), 1, sym_param_opt, - STATE(3582), 1, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 1, sym_parameter, - [98501] = 4, + [99483] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3203), 1, + STATE(3238), 1, sym_comment, - ACTIONS(2112), 2, + ACTIONS(2284), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2114), 11, + ACTIONS(2286), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221463,15 +222619,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, - [98525] = 4, + [99507] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3204), 1, + STATE(3239), 1, sym_comment, - ACTIONS(4651), 2, + ACTIONS(2288), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4649), 11, + ACTIONS(2290), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221483,52 +222639,135 @@ static const 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, - ACTIONS(103), 1, + [99531] = 15, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3205), 1, + ACTIONS(5686), 1, + sym_identifier, + ACTIONS(5692), 1, + anon_sym_DOLLAR, + ACTIONS(5694), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5696), 1, + anon_sym_DASH_DASH, + ACTIONS(5698), 1, + anon_sym_DASH2, + ACTIONS(5712), 1, + anon_sym_RPAREN, + STATE(2483), 1, + sym_param_long_flag, + STATE(2599), 1, + sym__param_name, + STATE(2853), 1, + aux_sym_parameter_parens_repeat1, + STATE(3240), 1, sym_comment, - ACTIONS(2268), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2270), 11, + STATE(3334), 1, + sym_param_rest, + STATE(3336), 1, + sym_param_opt, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 1, + sym_parameter, + [99577] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6252), 1, + anon_sym_DASH2, + STATE(3241), 1, + sym_comment, + ACTIONS(6250), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [98573] = 4, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [99601] = 15, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3206), 1, + ACTIONS(5686), 1, + sym_identifier, + ACTIONS(5692), 1, + anon_sym_DOLLAR, + ACTIONS(5694), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5696), 1, + anon_sym_DASH_DASH, + ACTIONS(5698), 1, + anon_sym_DASH2, + ACTIONS(6254), 1, + anon_sym_RPAREN, + STATE(2483), 1, + sym_param_long_flag, + STATE(2599), 1, + sym__param_name, + STATE(2853), 1, + aux_sym_parameter_parens_repeat1, + STATE(3242), 1, sym_comment, - ACTIONS(2272), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2274), 11, + STATE(3334), 1, + sym_param_rest, + STATE(3336), 1, + sym_param_opt, + STATE(3377), 1, + sym_param_short_flag, + STATE(3652), 1, + sym_parameter, + [99647] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(858), 1, + anon_sym_DASH2, + ACTIONS(5136), 1, + sym__unquoted_pattern_in_record, + STATE(3243), 1, + sym_comment, + ACTIONS(884), 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, - [98597] = 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, + [99673] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3207), 1, + ACTIONS(6258), 1, + anon_sym_DASH2, + STATE(3244), 1, + sym_comment, + ACTIONS(6256), 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, + [99697] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3245), 1, sym_comment, - ACTIONS(6207), 13, + ACTIONS(6260), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221542,14 +222781,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98619] = 4, + [99719] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6212), 1, + ACTIONS(6265), 1, sym__space, - STATE(3208), 1, + STATE(3246), 1, sym_comment, - ACTIONS(6210), 12, + ACTIONS(6263), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221562,12 +222801,12 @@ 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, + [99743] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3209), 1, + STATE(3247), 1, sym_comment, - ACTIONS(5885), 13, + ACTIONS(6267), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221581,15 +222820,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98665] = 4, - ACTIONS(103), 1, + [99765] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3210), 1, + STATE(3248), 1, sym_comment, - ACTIONS(5914), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5912), 11, + ACTIONS(5480), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221601,14 +222837,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, - [98689] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99787] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3211), 1, + STATE(3249), 1, sym_comment, - ACTIONS(5529), 12, + ACTIONS(6269), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221621,15 +222857,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98713] = 4, + anon_sym_RBRACE, + [99809] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3212), 1, + STATE(3250), 1, sym_comment, - ACTIONS(2519), 2, + ACTIONS(6077), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2521), 11, + ACTIONS(6075), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221641,15 +222878,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98737] = 4, - ACTIONS(103), 1, + [99833] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3213), 1, + STATE(3251), 1, sym_comment, - ACTIONS(1866), 2, + ACTIONS(6200), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(1868), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221661,18 +222896,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98761] = 6, + [99854] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5969), 1, - sym__newline, - ACTIONS(6214), 1, - anon_sym_else, - STATE(3214), 1, + STATE(3252), 1, sym_comment, - STATE(3319), 1, - aux_sym__repeat_newline, - ACTIONS(5972), 9, + ACTIONS(4801), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221682,12 +222913,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, + [99875] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3215), 1, + ACTIONS(2385), 1, + anon_sym_DASH2, + STATE(3253), 1, + sym_comment, + ACTIONS(2383), 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, + [99898] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3254), 1, sym_comment, - ACTIONS(6216), 12, + ACTIONS(6271), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221700,39 +222951,58 @@ 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, + [99919] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1776), 1, + ACTIONS(1786), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(5945), 1, anon_sym_LPAREN2, - ACTIONS(5841), 1, + ACTIONS(5949), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, + ACTIONS(5951), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6218), 1, + ACTIONS(6273), 1, anon_sym_RBRACK, - ACTIONS(6220), 1, + ACTIONS(6275), 1, anon_sym_DOLLAR2, - ACTIONS(6222), 1, + ACTIONS(6277), 1, aux_sym__unquoted_in_list_token2, - STATE(3216), 1, + STATE(3255), 1, sym_comment, - STATE(3603), 1, + STATE(3623), 1, sym__immediate_decimal, - ACTIONS(5845), 2, + ACTIONS(5953), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3860), 2, + STATE(3902), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [98848] = 3, + [99958] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3217), 1, + ACTIONS(6281), 1, + anon_sym_DASH2, + STATE(3256), 1, + sym_comment, + ACTIONS(6279), 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, + [99981] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3257), 1, sym_comment, - ACTIONS(6224), 12, + ACTIONS(6283), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221745,12 +223015,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98869] = 3, + [100002] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3218), 1, + STATE(3258), 1, sym_comment, - ACTIONS(6226), 12, + ACTIONS(6285), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221763,69 +223033,69 @@ 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, + [100023] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6230), 1, - anon_sym_DASH2, - STATE(3219), 1, + STATE(3259), 1, sym_comment, - ACTIONS(6228), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6287), 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, - [98913] = 4, + [100044] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_DASH2, - STATE(3220), 1, + ACTIONS(6289), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6291), 1, + aux_sym__immediate_decimal_token5, + STATE(3260), 1, sym_comment, - ACTIONS(2246), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 8, + anon_sym_if, sym__newline, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [98936] = 4, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [100071] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2252), 1, - anon_sym_DASH2, - STATE(3221), 1, + STATE(3261), 1, sym_comment, - ACTIONS(2250), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6293), 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, - [98959] = 3, + [100092] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3222), 1, + STATE(3262), 1, sym_comment, - ACTIONS(6232), 12, + ACTIONS(6295), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221838,12 +223108,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98980] = 3, + [100113] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3223), 1, + STATE(3263), 1, sym_comment, - ACTIONS(6234), 12, + ACTIONS(4793), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221855,13 +223126,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [99001] = 3, + [100134] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3224), 1, + STATE(3264), 1, + sym_comment, + ACTIONS(6148), 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, + [100155] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3265), 1, sym_comment, - ACTIONS(6236), 12, + ACTIONS(6297), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221874,12 +223162,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, + [100176] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3225), 1, + STATE(3266), 1, sym_comment, - ACTIONS(6238), 12, + ACTIONS(6299), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221892,14 +223180,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, + [100197] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, + ACTIONS(5832), 1, anon_sym_DASH2, - STATE(3226), 1, + STATE(3267), 1, sym_comment, - ACTIONS(2214), 11, + ACTIONS(5830), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -221911,18 +223199,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99066] = 6, + [100220] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - STATE(788), 1, - aux_sym__pipe_separator, - STATE(3227), 1, + STATE(3268), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(2303), 9, + ACTIONS(6301), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221932,18 +223216,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, - [99093] = 6, + anon_sym_RPAREN, + [100241] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(3228), 1, + STATE(3269), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(2303), 9, + ACTIONS(6150), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221953,13 +223235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [99120] = 3, + [100262] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3229), 1, + STATE(3270), 1, sym_comment, - ACTIONS(6085), 12, - ts_builtin_sym_end, + ACTIONS(6303), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221971,12 +223252,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, - [99141] = 3, + anon_sym_RPAREN, + [100283] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3230), 1, + STATE(3271), 1, sym_comment, - ACTIONS(6240), 12, + ACTIONS(6198), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221988,32 +223271,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, - [99162] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5715), 1, - anon_sym_DASH2, - STATE(3231), 1, - sym_comment, - ACTIONS(5713), 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, - [99185] = 3, + [100304] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3232), 1, + STATE(3272), 1, sym_comment, - ACTIONS(6242), 12, + ACTIONS(6305), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222026,258 +223289,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99206] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6246), 1, - anon_sym_DASH2, - STATE(3233), 1, - sym_comment, - ACTIONS(6244), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99229] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5642), 1, - anon_sym_DASH2, - STATE(3234), 1, - sym_comment, - ACTIONS(5640), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99252] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1667), 1, - sym__entry_separator, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3235), 1, - sym_comment, - STATE(4116), 1, - sym__immediate_decimal, - ACTIONS(1669), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4115), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99289] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1671), 1, - sym__entry_separator, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3236), 1, - sym_comment, - STATE(4119), 1, - sym__immediate_decimal, - ACTIONS(1673), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4117), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99326] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1675), 1, - sym__entry_separator, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3237), 1, - sym_comment, - STATE(4122), 1, - sym__immediate_decimal, - ACTIONS(1677), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4121), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99363] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1667), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6254), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, - aux_sym__immediate_decimal_token2, - STATE(3008), 1, - sym__immediate_decimal, - STATE(3238), 1, - sym_comment, - ACTIONS(1669), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3006), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99400] = 4, + [100325] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6260), 1, - anon_sym_DASH2, - STATE(3239), 1, - sym_comment, - ACTIONS(6258), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99423] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1671), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6254), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, - aux_sym__immediate_decimal_token2, - STATE(3010), 1, - sym__immediate_decimal, - STATE(3240), 1, + STATE(3273), 1, sym_comment, - ACTIONS(1673), 2, + ACTIONS(5424), 12, + ts_builtin_sym_end, 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, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6260), 1, - anon_sym_DASH2, - STATE(3241), 1, - sym_comment, - ACTIONS(6258), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99483] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6264), 1, - anon_sym_DASH2, - STATE(3242), 1, - sym_comment, - ACTIONS(6262), 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, - [99506] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6268), 1, - anon_sym_DASH2, - STATE(3243), 1, - sym_comment, - ACTIONS(6266), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, anon_sym_PIPE, - 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, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [100346] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6272), 1, + ACTIONS(5754), 1, anon_sym_DASH2, - STATE(3244), 1, + STATE(3274), 1, sym_comment, - ACTIONS(6270), 11, + ACTIONS(5752), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222289,12 +223326,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99552] = 3, + [100369] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3245), 1, + STATE(3275), 1, sym_comment, - ACTIONS(6274), 12, + ACTIONS(6307), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222307,12 +223344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99573] = 3, + [100390] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3246), 1, + STATE(3276), 1, sym_comment, - ACTIONS(6276), 12, + ACTIONS(6309), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222325,12 +223362,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99594] = 3, + [100411] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3247), 1, + STATE(3277), 1, sym_comment, - ACTIONS(6278), 12, + ACTIONS(6311), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222343,33 +223380,12 @@ 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, - anon_sym_POUND, - ACTIONS(6280), 1, - anon_sym_DOT, - ACTIONS(6282), 1, - aux_sym__immediate_decimal_token5, - STATE(3248), 1, - sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 8, - anon_sym_if, - 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, + [100432] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3249), 1, + STATE(3278), 1, sym_comment, - ACTIONS(6284), 12, + ACTIONS(6313), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222382,12 +223398,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99663] = 3, + [100453] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3250), 1, + STATE(3279), 1, sym_comment, - ACTIONS(6286), 12, + ACTIONS(6315), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222400,32 +223416,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, + [100474] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3252), 1, + STATE(3280), 1, sym_comment, - ACTIONS(4789), 12, - ts_builtin_sym_end, + ACTIONS(6317), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222437,54 +223433,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, - [99728] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + [100495] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6292), 1, + ACTIONS(1599), 1, + sym__entry_separator, + ACTIONS(1603), 1, + anon_sym_RBRACE, + ACTIONS(1615), 1, + sym__unquoted_pattern_in_record, + ACTIONS(5945), 1, + anon_sym_LPAREN2, + ACTIONS(6319), 1, + anon_sym_DOLLAR, + ACTIONS(6321), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6294), 1, - aux_sym__immediate_decimal_token5, - STATE(3253), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 8, - anon_sym_if, - 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, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6296), 1, - sym__newline, - ACTIONS(6299), 1, - anon_sym_DASH2, - STATE(3254), 1, + ACTIONS(6323), 1, + aux_sym__immediate_decimal_token2, + STATE(3281), 1, sym_comment, - ACTIONS(2096), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4376), 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, - [99782] = 3, + STATE(4107), 1, + sym__immediate_decimal, + ACTIONS(6325), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4171), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100534] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3255), 1, + STATE(3282), 1, sym_comment, - ACTIONS(6301), 12, + ACTIONS(6327), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222497,31 +223479,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, - ACTIONS(3), 1, + [100555] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6305), 1, - anon_sym_DASH2, - STATE(3256), 1, - sym_comment, - ACTIONS(6303), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1677), 1, + sym__entry_separator, + ACTIONS(1679), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1691), 1, + sym__unquoted_pattern_in_list, + ACTIONS(5945), 1, + anon_sym_LPAREN2, + ACTIONS(6319), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99826] = 3, + ACTIONS(6329), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6331), 1, + aux_sym__immediate_decimal_token2, + STATE(3283), 1, + sym_comment, + STATE(4337), 1, + sym__immediate_decimal, + ACTIONS(6333), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4203), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100594] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3257), 1, + STATE(3284), 1, sym_comment, - ACTIONS(6307), 12, + ACTIONS(6015), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222533,16 +223524,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, - [99847] = 3, + [100615] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3258), 1, - sym_comment, - ACTIONS(6163), 12, - ts_builtin_sym_end, + ACTIONS(2875), 1, sym__newline, - anon_sym_SEMI, + STATE(854), 1, + aux_sym__pipe_separator, + STATE(3285), 1, + sym_comment, + STATE(3418), 1, + aux_sym__repeat_newline, + ACTIONS(2377), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222552,12 +223545,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, - [99868] = 3, + [100642] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3259), 1, + STATE(3286), 1, sym_comment, - ACTIONS(6309), 12, + ACTIONS(6335), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222570,31 +223563,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99889] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5721), 1, - anon_sym_DASH2, - STATE(3260), 1, - sym_comment, - ACTIONS(5719), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99912] = 3, + [100663] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3261), 1, + STATE(3287), 1, sym_comment, - ACTIONS(6311), 12, + ACTIONS(6337), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222607,12 +223581,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99933] = 3, + [100684] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3262), 1, + STATE(3288), 1, sym_comment, - ACTIONS(6313), 12, + ACTIONS(6339), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222625,12 +223599,12 @@ 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, + [100705] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3263), 1, + STATE(3289), 1, sym_comment, - ACTIONS(6315), 12, + ACTIONS(6341), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222643,38 +223617,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99975] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1675), 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(3012), 1, - sym__immediate_decimal, - STATE(3264), 1, - sym_comment, - ACTIONS(1677), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3011), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100012] = 3, + [100726] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3265), 1, + STATE(3290), 1, sym_comment, - ACTIONS(6317), 12, + ACTIONS(6343), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222687,13 +223635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100033] = 3, + [100747] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3266), 1, + STATE(3291), 1, sym_comment, - ACTIONS(6081), 12, - ts_builtin_sym_end, + ACTIONS(4803), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222705,114 +223652,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [100054] = 6, + anon_sym_RPAREN, + [100768] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6319), 1, - anon_sym_DOT, - ACTIONS(6321), 1, - aux_sym__immediate_decimal_token5, - STATE(3267), 1, - sym_comment, - ACTIONS(739), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 6, + ACTIONS(1661), 1, sym__space, + ACTIONS(3279), 1, 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, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6327), 1, - anon_sym_DASH2, - STATE(3269), 1, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(6345), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6347), 1, + aux_sym__immediate_decimal_token2, + STATE(2995), 1, + sym__immediate_decimal, + STATE(3292), 1, sym_comment, - ACTIONS(6325), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1663), 2, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [100133] = 6, + anon_sym_SEMI, + ACTIONS(5920), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2992), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100805] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6329), 1, + ACTIONS(1669), 1, + sym__space, + ACTIONS(3279), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(6345), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6331), 1, - aux_sym__immediate_decimal_token5, - STATE(3270), 1, + ACTIONS(6347), 1, + aux_sym__immediate_decimal_token2, + STATE(3091), 1, + sym__immediate_decimal, + STATE(3293), 1, sym_comment, - ACTIONS(747), 4, + ACTIONS(1671), 2, 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, - ACTIONS(3), 1, + ACTIONS(5920), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3074), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100842] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2208), 1, - anon_sym_DASH2, - STATE(3271), 1, + ACTIONS(1673), 1, + sym__space, + ACTIONS(3279), 1, + anon_sym_LPAREN2, + ACTIONS(3681), 1, + anon_sym_DOLLAR, + ACTIONS(6345), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6347), 1, + aux_sym__immediate_decimal_token2, + STATE(2994), 1, + sym__immediate_decimal, + STATE(3294), 1, sym_comment, - ACTIONS(2206), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1675), 2, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [100183] = 3, + anon_sym_SEMI, + ACTIONS(5920), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3094), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100879] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3272), 1, + STATE(3295), 1, sym_comment, - ACTIONS(6333), 12, + ACTIONS(6349), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222825,60 +223749,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100204] = 12, - 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(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(3273), 1, - sym_comment, - STATE(4177), 1, - sym__immediate_decimal, - ACTIONS(6339), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4079), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100243] = 4, + [100900] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2212), 1, - anon_sym_DASH2, - STATE(3274), 1, + STATE(3296), 1, sym_comment, - ACTIONS(2210), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6351), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [100266] = 4, + [100921] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, + ACTIONS(6355), 1, anon_sym_DASH2, - STATE(3275), 1, + STATE(3297), 1, sym_comment, - ACTIONS(2226), 11, + ACTIONS(6353), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222890,60 +223786,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100289] = 6, + [100944] = 11, 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, + ACTIONS(1617), 1, + sym__space, + ACTIONS(3279), 1, 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(3681), 1, + anon_sym_DOLLAR, + ACTIONS(6345), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6347), 1, + aux_sym__immediate_decimal_token2, + STATE(3108), 1, + sym__immediate_decimal, + STATE(3298), 1, + sym_comment, + ACTIONS(1619), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(5920), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3107), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100981] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(1617), 1, sym__entry_separator, - ACTIONS(5837), 1, + ACTIONS(5945), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, + ACTIONS(6319), 1, anon_sym_DOLLAR, - ACTIONS(6250), 1, + ACTIONS(6357), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, + ACTIONS(6359), 1, aux_sym__immediate_decimal_token2, - STATE(3277), 1, + STATE(3299), 1, sym_comment, - STATE(4075), 1, + STATE(4169), 1, sym__immediate_decimal, - ACTIONS(1586), 2, + ACTIONS(1619), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(6051), 2, + ACTIONS(6100), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4074), 2, + STATE(4168), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100353] = 3, + [101018] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3278), 1, + STATE(3300), 1, sym_comment, - ACTIONS(6143), 12, - ts_builtin_sym_end, + ACTIONS(6361), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222955,31 +223855,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [100374] = 4, + anon_sym_RPAREN, + [101039] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2232), 1, - anon_sym_DASH2, - STATE(3279), 1, + STATE(3301), 1, sym_comment, - ACTIONS(2230), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5480), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [101060] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2875), 1, + sym__newline, + STATE(788), 1, + aux_sym__pipe_separator, + STATE(3302), 1, + sym_comment, + STATE(3418), 1, + aux_sym__repeat_newline, + ACTIONS(2377), 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, + [101087] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1464), 1, + anon_sym_BANG, + ACTIONS(6363), 1, + anon_sym_QMARK2, + STATE(351), 1, + sym__path_suffix, + STATE(3303), 1, + sym_comment, + ACTIONS(1444), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1442), 6, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [100397] = 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_DOT2, + [101116] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3280), 1, + STATE(3304), 1, + sym_comment, + ACTIONS(6154), 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, + [101137] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3305), 1, + sym_comment, + ACTIONS(4799), 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, + [101158] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3306), 1, sym_comment, - ACTIONS(6345), 12, + ACTIONS(6365), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222992,12 +223971,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, + [101179] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3281), 1, + STATE(3307), 1, sym_comment, - ACTIONS(6087), 12, + ACTIONS(6267), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -223010,12 +223989,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, - [100439] = 3, + [101200] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3282), 1, + STATE(3308), 1, sym_comment, - ACTIONS(6089), 12, + ACTIONS(6269), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -223028,12 +224007,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [100460] = 3, + [101221] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3283), 1, + STATE(3309), 1, sym_comment, - ACTIONS(6091), 12, + ACTIONS(6260), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -223046,14 +224025,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, + [101242] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6349), 1, + ACTIONS(6369), 1, anon_sym_DASH2, - STATE(3284), 1, + STATE(3310), 1, sym_comment, - ACTIONS(6347), 11, + ACTIONS(6367), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223065,14 +224044,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100504] = 4, + [101265] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2236), 1, + ACTIONS(6373), 1, anon_sym_DASH2, - STATE(3285), 1, + STATE(3311), 1, sym_comment, - ACTIONS(2234), 11, + ACTIONS(6371), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223084,40 +224063,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100527] = 12, + [101288] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1631), 1, + ACTIONS(6375), 1, + anon_sym_DOT, + ACTIONS(6377), 1, + aux_sym__immediate_decimal_token5, + STATE(3312), 1, + sym_comment, + ACTIONS(747), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [101315] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6379), 1, + anon_sym_DOT2, + STATE(349), 1, + sym_path, + STATE(373), 1, + sym_cell_path, + STATE(3313), 1, + sym_comment, + STATE(3412), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1452), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1633), 1, + ACTIONS(1450), 5, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(1639), 1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + [101346] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3314), 1, + sym_comment, + ACTIONS(6381), 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, + [101367] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + anon_sym_DOLLAR, + ACTIONS(5945), 1, + anon_sym_LPAREN2, + ACTIONS(5949), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5951), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6275), 1, + anon_sym_DOLLAR2, + ACTIONS(6277), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6383), 1, + anon_sym_RBRACK, + STATE(3315), 1, + sym_comment, + STATE(3623), 1, + sym__immediate_decimal, + ACTIONS(5953), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3902), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [101406] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1677), 1, + sym__entry_separator, + ACTIONS(1679), 1, + anon_sym_RBRACE, + ACTIONS(1691), 1, sym__unquoted_pattern_in_record, - ACTIONS(5837), 1, + ACTIONS(5945), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, + ACTIONS(6319), 1, anon_sym_DOLLAR, - ACTIONS(6335), 1, + ACTIONS(6321), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6337), 1, + ACTIONS(6323), 1, aux_sym__immediate_decimal_token2, - STATE(3286), 1, + STATE(3316), 1, sym_comment, - STATE(4208), 1, + STATE(4112), 1, sym__immediate_decimal, - ACTIONS(6339), 2, + ACTIONS(6325), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4123), 2, + STATE(4203), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100566] = 3, + [101445] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3287), 1, + STATE(3317), 1, sym_comment, - ACTIONS(5548), 12, - ts_builtin_sym_end, + ACTIONS(6385), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223129,13 +224196,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, + [101466] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3288), 1, + STATE(3318), 1, sym_comment, - ACTIONS(6103), 12, - ts_builtin_sym_end, + ACTIONS(6387), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223147,12 +224214,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [100608] = 3, + anon_sym_RPAREN, + [101487] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3289), 1, + STATE(3319), 1, sym_comment, - ACTIONS(6351), 12, + ACTIONS(6389), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223165,14 +224233,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100629] = 4, + [101508] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2154), 1, + ACTIONS(6393), 1, anon_sym_DASH2, - STATE(3290), 1, + STATE(3320), 1, sym_comment, - ACTIONS(2152), 11, + ACTIONS(6391), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223184,79 +224252,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100652] = 3, + [101531] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3291), 1, + ACTIONS(6397), 1, + anon_sym_DASH2, + STATE(3321), 1, sym_comment, - ACTIONS(6353), 12, + ACTIONS(6395), 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, - [100673] = 11, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [101554] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__space, - ACTIONS(3212), 1, + ACTIONS(1661), 1, + sym__entry_separator, + ACTIONS(5945), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(6319), 1, anon_sym_DOLLAR, - ACTIONS(6254), 1, + ACTIONS(6357), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, + ACTIONS(6359), 1, aux_sym__immediate_decimal_token2, - STATE(2981), 1, - sym__immediate_decimal, - STATE(3292), 1, + STATE(3322), 1, sym_comment, - ACTIONS(1586), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, + STATE(4198), 1, + sym__immediate_decimal, + ACTIONS(1663), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6100), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2979), 2, + STATE(4197), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100710] = 8, + [101591] = 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(1669), 1, + sym__entry_separator, + ACTIONS(5945), 1, + anon_sym_LPAREN2, + ACTIONS(6319), 1, + anon_sym_DOLLAR, + ACTIONS(6357), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6359), 1, + aux_sym__immediate_decimal_token2, + STATE(3323), 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(4200), 1, + sym__immediate_decimal, + ACTIONS(1671), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6100), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4199), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [101628] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1673), 1, sym__entry_separator, - ACTIONS(1432), 5, + ACTIONS(5945), 1, + anon_sym_LPAREN2, + ACTIONS(6319), 1, + anon_sym_DOLLAR, + ACTIONS(6357), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6359), 1, + aux_sym__immediate_decimal_token2, + STATE(3324), 1, + sym_comment, + STATE(4202), 1, + sym__immediate_decimal, + ACTIONS(1675), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [100741] = 3, + ACTIONS(6100), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4201), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [101665] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3294), 1, + STATE(3325), 1, sym_comment, - ACTIONS(6357), 12, + ACTIONS(6102), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223268,13 +224367,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [100762] = 3, + [101686] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3295), 1, + STATE(3326), 1, sym_comment, - ACTIONS(4803), 12, + ACTIONS(6208), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223286,13 +224385,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, + [101707] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6399), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6401), 1, + aux_sym__immediate_decimal_token5, + STATE(3327), 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, + [101734] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2298), 1, + anon_sym_DASH2, + STATE(3328), 1, + sym_comment, + ACTIONS(2296), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [100783] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [101757] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3296), 1, + STATE(3329), 1, sym_comment, - ACTIONS(6359), 12, + ACTIONS(6403), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223305,12 +224443,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100804] = 3, + [101778] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3297), 1, + STATE(3330), 1, sym_comment, - ACTIONS(6361), 12, + ACTIONS(6405), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223323,14 +224461,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100825] = 6, + [101799] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6363), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6365), 1, + ACTIONS(6407), 1, + anon_sym_DOT, + ACTIONS(6409), 1, aux_sym__immediate_decimal_token5, - STATE(3298), 1, + STATE(3331), 1, sym_comment, ACTIONS(747), 4, anon_sym_RBRACK, @@ -223344,32 +224482,33 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [100852] = 3, + [101826] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3299), 1, + ACTIONS(2212), 1, + anon_sym_DASH2, + STATE(3332), 1, sym_comment, - ACTIONS(6367), 12, + ACTIONS(2210), 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, - [100873] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [101849] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6371), 1, + ACTIONS(2216), 1, anon_sym_DASH2, - STATE(3300), 1, + STATE(3333), 1, sym_comment, - ACTIONS(6369), 11, + ACTIONS(2214), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223381,68 +224520,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100896] = 3, + [101872] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3301), 1, + ACTIONS(6413), 1, + anon_sym_DASH2, + STATE(3334), 1, sym_comment, - ACTIONS(6161), 12, - ts_builtin_sym_end, + ACTIONS(6411), 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, - [100917] = 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, + [101895] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3302), 1, + ACTIONS(2220), 1, + anon_sym_DASH2, + STATE(3335), 1, sym_comment, - ACTIONS(6119), 12, - ts_builtin_sym_end, + ACTIONS(2218), 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, - [100938] = 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, + [101918] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3303), 1, + ACTIONS(6417), 1, + anon_sym_DASH2, + STATE(3336), 1, sym_comment, - ACTIONS(6207), 12, - ts_builtin_sym_end, + ACTIONS(6415), 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, - [100959] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [101941] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, + ACTIONS(2224), 1, anon_sym_DASH2, - STATE(3304), 1, + STATE(3337), 1, sym_comment, - ACTIONS(2238), 11, + ACTIONS(2222), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223454,14 +224596,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100982] = 4, + [101964] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2244), 1, + ACTIONS(2228), 1, anon_sym_DASH2, - STATE(3305), 1, + STATE(3338), 1, sym_comment, - ACTIONS(2242), 11, + ACTIONS(2226), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223473,32 +224615,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101005] = 5, + [101987] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1960), 1, + ACTIONS(2232), 1, anon_sym_DASH2, - ACTIONS(6373), 1, - sym__newline, - STATE(3306), 2, - aux_sym__repeat_newline, + STATE(3339), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(2230), 11, anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101030] = 3, + [102010] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3307), 1, + STATE(3340), 1, sym_comment, - ACTIONS(6376), 12, + ACTIONS(6419), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223511,12 +224652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101051] = 3, + [102031] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3308), 1, + STATE(3341), 1, sym_comment, - ACTIONS(6378), 12, + ACTIONS(6142), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223528,31 +224670,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, - [101072] = 3, + [102052] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6421), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6423), 1, + aux_sym__immediate_decimal_token5, + STATE(3342), 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, + [102079] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3309), 1, + ACTIONS(2236), 1, + anon_sym_DASH2, + STATE(3343), 1, sym_comment, - ACTIONS(6380), 12, + ACTIONS(2234), 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_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102102] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1931), 1, + anon_sym_DASH2, + ACTIONS(6425), 1, + sym__newline, + STATE(3344), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1926), 9, + anon_sym_EQ, + sym_identifier, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [101093] = 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102127] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3310), 1, + STATE(3345), 1, sym_comment, - ACTIONS(5885), 12, + ACTIONS(6152), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -223565,12 +224748,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, - [101114] = 3, + [102148] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3311), 1, + STATE(3346), 1, sym_comment, - ACTIONS(6382), 12, + ACTIONS(6428), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223583,12 +224766,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101135] = 3, + [102169] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3312), 1, + ACTIONS(5807), 1, + anon_sym_DASH2, + STATE(3347), 1, + sym_comment, + ACTIONS(5805), 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, + [102192] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3348), 1, sym_comment, - ACTIONS(6141), 12, + ACTIONS(6156), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -223601,12 +224803,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, + [102213] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3313), 1, + STATE(3349), 1, sym_comment, - ACTIONS(6384), 12, + ACTIONS(6430), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223619,14 +224821,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, + [102234] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6388), 1, + ACTIONS(6434), 1, anon_sym_DASH2, - STATE(3314), 1, + STATE(3350), 1, sym_comment, - ACTIONS(6386), 11, + ACTIONS(6432), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223638,12 +224840,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101200] = 3, + [102257] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3315), 1, + ACTIONS(2110), 1, + anon_sym_DASH2, + STATE(3351), 1, sym_comment, - ACTIONS(6390), 12, + ACTIONS(2108), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102280] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3352), 1, + sym_comment, + ACTIONS(6436), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223656,14 +224877,18 @@ 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, + [102301] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3316), 1, - sym_comment, - ACTIONS(6392), 12, + ACTIONS(5990), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6438), 1, + anon_sym_else, + STATE(3353), 1, + sym_comment, + STATE(3359), 1, + aux_sym__repeat_newline, + ACTIONS(5993), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223673,19 +224898,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [102328] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6442), 1, + anon_sym_DASH2, + STATE(3354), 1, + sym_comment, + ACTIONS(6440), 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, + [102351] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2118), 1, + anon_sym_DASH2, + STATE(3355), 1, + sym_comment, + ACTIONS(2116), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [101242] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102374] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6444), 1, + anon_sym_DOT, + ACTIONS(6446), 1, + aux_sym__immediate_decimal_token5, + STATE(3356), 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, + [102401] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6023), 1, + ACTIONS(6039), 1, sym__newline, - ACTIONS(6394), 1, + ACTIONS(6448), 1, anon_sym_else, - STATE(3317), 1, + STATE(3357), 1, sym_comment, - STATE(3321), 1, + STATE(3362), 1, aux_sym__repeat_newline, - ACTIONS(6026), 9, + ACTIONS(6042), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223695,18 +224978,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, - [101269] = 6, + [102428] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6030), 1, + ACTIONS(5957), 1, sym__newline, - ACTIONS(6396), 1, + ACTIONS(6450), 1, anon_sym_else, - STATE(3318), 1, + STATE(3358), 1, sym_comment, - STATE(3322), 1, + STATE(3363), 1, aux_sym__repeat_newline, - ACTIONS(6033), 9, + ACTIONS(5960), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223716,18 +224999,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, - [101296] = 6, + [102455] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5817), 1, + ACTIONS(5851), 1, sym__newline, - ACTIONS(6398), 1, + ACTIONS(6452), 1, anon_sym_else, - STATE(3319), 1, + STATE(3359), 1, sym_comment, - STATE(3323), 1, + STATE(3364), 1, aux_sym__repeat_newline, - ACTIONS(5820), 9, + ACTIONS(5854), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223737,18 +225020,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, - [101323] = 6, + [102482] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2126), 1, + anon_sym_DASH2, + STATE(3360), 1, + sym_comment, + ACTIONS(2124), 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, + [102505] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5950), 1, + ACTIONS(5924), 1, sym__newline, - ACTIONS(6400), 1, + ACTIONS(6454), 1, anon_sym_else, - STATE(3320), 1, + STATE(3361), 1, sym_comment, - STATE(3324), 1, + STATE(3365), 1, aux_sym__repeat_newline, - ACTIONS(5953), 9, + ACTIONS(5927), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223758,18 +225060,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, - [101350] = 6, + [102532] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5794), 1, + ACTIONS(6019), 1, sym__newline, - ACTIONS(6402), 1, + ACTIONS(6456), 1, anon_sym_else, - STATE(3321), 1, + STATE(3362), 1, sym_comment, - STATE(3325), 1, + STATE(3366), 1, aux_sym__repeat_newline, - ACTIONS(5797), 9, + ACTIONS(6022), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223779,18 +225081,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, - [101377] = 6, + [102559] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5849), 1, + ACTIONS(6030), 1, sym__newline, - ACTIONS(6404), 1, + ACTIONS(6458), 1, anon_sym_else, - STATE(3322), 1, + STATE(3363), 1, sym_comment, - STATE(3326), 1, + STATE(3367), 1, aux_sym__repeat_newline, - ACTIONS(5852), 9, + ACTIONS(6033), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223800,18 +225102,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, - [101404] = 6, + [102586] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1928), 1, sym__newline, - ACTIONS(6406), 1, + ACTIONS(6460), 1, anon_sym_else, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(3323), 1, + STATE(3364), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(1926), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223821,18 +225123,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, - [101431] = 6, + [102613] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5998), 1, + ACTIONS(5899), 1, sym__newline, - ACTIONS(6409), 1, + ACTIONS(6463), 1, anon_sym_else, - STATE(3324), 1, + STATE(3365), 1, sym_comment, - STATE(3327), 1, + STATE(3368), 1, aux_sym__repeat_newline, - ACTIONS(6001), 9, + ACTIONS(5902), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223842,18 +225144,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, - [101458] = 6, + [102640] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1928), 1, sym__newline, - ACTIONS(6411), 1, + ACTIONS(6465), 1, anon_sym_else, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(3325), 1, + STATE(3366), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(1926), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223863,18 +225165,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, - [101485] = 6, + [102667] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1928), 1, sym__newline, - ACTIONS(6414), 1, + ACTIONS(6468), 1, anon_sym_else, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(3326), 1, + STATE(3367), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(1926), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223884,18 +225186,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, - [101512] = 6, + [102694] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1928), 1, sym__newline, - ACTIONS(6417), 1, + ACTIONS(6471), 1, anon_sym_else, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(3327), 1, + STATE(3368), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(1926), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223905,31 +225207,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, - [101539] = 4, - ACTIONS(3), 1, + [102721] = 12, + ACTIONS(103), 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, + ACTIONS(1599), 1, + sym__entry_separator, + ACTIONS(1603), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1615), 1, + sym__unquoted_pattern_in_list, + ACTIONS(5945), 1, + anon_sym_LPAREN2, + ACTIONS(6319), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [101562] = 3, + ACTIONS(6329), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6331), 1, + aux_sym__immediate_decimal_token2, + STATE(3369), 1, + sym_comment, + STATE(4151), 1, + sym__immediate_decimal, + ACTIONS(6333), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4171), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [102760] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3329), 1, + STATE(3370), 1, sym_comment, - ACTIONS(6424), 12, + ACTIONS(6474), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223942,12 +225252,12 @@ 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, + [102781] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3330), 1, + STATE(3371), 1, sym_comment, - ACTIONS(6426), 12, + ACTIONS(6476), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223960,38 +225270,12 @@ 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, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1596), 1, - anon_sym_LBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(6428), 1, - anon_sym_DOT, - STATE(3331), 1, - sym_comment, - STATE(3892), 1, - sym__immediate_decimal, - ACTIONS(6430), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4186), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101641] = 3, + [102802] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3332), 1, + STATE(3372), 1, sym_comment, - ACTIONS(4791), 12, + ACTIONS(6478), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224004,12 +225288,12 @@ 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, + [102823] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3333), 1, + STATE(3373), 1, sym_comment, - ACTIONS(6434), 12, + ACTIONS(6480), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224022,13 +225306,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101683] = 3, + [102844] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3334), 1, + ACTIONS(2154), 1, + anon_sym_DASH2, + STATE(3374), 1, sym_comment, - ACTIONS(4783), 12, - ts_builtin_sym_end, + ACTIONS(2152), 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, + [102867] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6484), 1, + anon_sym_DASH2, + STATE(3375), 1, + sym_comment, + ACTIONS(6482), 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, + [102890] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6486), 1, + anon_sym_DOT, + ACTIONS(6488), 1, + aux_sym__immediate_decimal_token5, + STATE(3376), 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, + [102917] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6492), 1, + anon_sym_DASH2, + STATE(3377), 1, + sym_comment, + ACTIONS(6490), 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, + [102940] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3378), 1, + sym_comment, + ACTIONS(6494), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224040,143 +225401,220 @@ static const 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_RPAREN, + [102961] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(1599), 1, + anon_sym_LBRACE, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3335), 1, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + anon_sym_DOT, + STATE(3379), 1, sym_comment, - STATE(4075), 1, + STATE(4057), 1, sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, + ACTIONS(6498), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6500), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4074), 2, + STATE(4119), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [101741] = 11, + [102998] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6502), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6504), 1, + aux_sym__immediate_decimal_token5, + STATE(3380), 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, + [103025] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3381), 1, + sym_comment, + ACTIONS(6506), 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, + [103046] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1667), 1, + ACTIONS(1617), 1, sym__entry_separator, - ACTIONS(6069), 1, + ACTIONS(6132), 1, anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(6134), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, + ACTIONS(6136), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, + ACTIONS(6138), 1, aux_sym__immediate_decimal_token2, - STATE(3336), 1, + STATE(3382), 1, sym_comment, - STATE(4116), 1, + STATE(4169), 1, sym__immediate_decimal, - ACTIONS(1669), 2, + ACTIONS(1619), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(6077), 2, + ACTIONS(6140), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4115), 2, + STATE(4168), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [101778] = 11, + [103083] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1671), 1, + ACTIONS(1661), 1, sym__entry_separator, - ACTIONS(6069), 1, + ACTIONS(6132), 1, anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(6134), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, + ACTIONS(6136), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, + ACTIONS(6138), 1, aux_sym__immediate_decimal_token2, - STATE(3337), 1, + STATE(3383), 1, sym_comment, - STATE(4119), 1, + STATE(4198), 1, sym__immediate_decimal, - ACTIONS(1673), 2, + ACTIONS(1663), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(6077), 2, + ACTIONS(6140), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4117), 2, + STATE(4197), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [101815] = 11, + [103120] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1675), 1, + ACTIONS(1669), 1, sym__entry_separator, - ACTIONS(6069), 1, + ACTIONS(6132), 1, anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(6134), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, + ACTIONS(6136), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, + ACTIONS(6138), 1, aux_sym__immediate_decimal_token2, - STATE(3338), 1, + STATE(3384), 1, sym_comment, - STATE(4122), 1, + STATE(4200), 1, sym__immediate_decimal, - ACTIONS(1677), 2, + ACTIONS(1671), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(6077), 2, + ACTIONS(6140), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4121), 2, + STATE(4199), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [101852] = 12, + [103157] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1776), 1, + ACTIONS(1673), 1, + sym__entry_separator, + ACTIONS(6132), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(6134), 1, anon_sym_LPAREN2, - ACTIONS(5841), 1, + ACTIONS(6136), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, + ACTIONS(6138), 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(3385), 1, sym_comment, - STATE(3603), 1, + STATE(4202), 1, sym__immediate_decimal, - ACTIONS(5845), 2, + ACTIONS(1675), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6140), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3860), 2, + STATE(4201), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [101891] = 3, + [103194] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3340), 1, + ACTIONS(6484), 1, + anon_sym_DASH2, + STATE(3386), 1, + sym_comment, + ACTIONS(6482), 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, + [103217] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6510), 1, + anon_sym_DASH2, + STATE(3387), 1, + sym_comment, + ACTIONS(6508), 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, + [103240] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3388), 1, sym_comment, - ACTIONS(6438), 12, + ACTIONS(6512), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224189,12 +225627,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, + [103261] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3341), 1, + STATE(3389), 1, sym_comment, - ACTIONS(6440), 12, + ACTIONS(6514), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224207,41 +225645,60 @@ 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, + [103282] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6516), 1, + anon_sym_else, + STATE(3390), 1, + sym_comment, + ACTIONS(6126), 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, + [103305] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1631), 1, + ACTIONS(1599), 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, + ACTIONS(1603), 1, + anon_sym_RBRACE, + ACTIONS(1786), 1, anon_sym_DOLLAR, - ACTIONS(6442), 1, + ACTIONS(5945), 1, + anon_sym_LPAREN2, + ACTIONS(6096), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6444), 1, + ACTIONS(6098), 1, aux_sym__immediate_decimal_token2, - STATE(3342), 1, + ACTIONS(6518), 1, + anon_sym_DOT, + STATE(3391), 1, sym_comment, - STATE(4286), 1, + STATE(4079), 1, sym__immediate_decimal, - ACTIONS(6446), 2, + ACTIONS(6100), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4123), 2, + STATE(3846), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [101972] = 4, + [103344] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2200), 1, + ACTIONS(2369), 1, anon_sym_DASH2, - STATE(3343), 1, + STATE(3392), 1, sym_comment, - ACTIONS(2198), 11, + ACTIONS(2367), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224253,41 +225710,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101995] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACE, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6047), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6448), 1, - anon_sym_DOT, - STATE(3344), 1, - sym_comment, - STATE(3937), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3809), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102034] = 4, + [103367] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2102), 1, + ACTIONS(2381), 1, anon_sym_DASH2, - STATE(3345), 1, + STATE(3393), 1, sym_comment, - ACTIONS(2100), 11, + ACTIONS(2379), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224299,97 +225729,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102057] = 4, + [103390] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6450), 1, - anon_sym_else, - STATE(3346), 1, - sym_comment, - ACTIONS(6043), 11, + ACTIONS(6520), 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, - [102080] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2078), 1, + ACTIONS(6523), 1, anon_sym_DASH2, - STATE(3347), 1, + STATE(3394), 1, sym_comment, - ACTIONS(2076), 11, + ACTIONS(2144), 2, anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4393), 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, - [102103] = 6, + [103417] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6452), 1, - anon_sym_DOT, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token5, - STATE(3348), 1, + ACTIONS(6525), 1, + anon_sym_DOT2, + STATE(349), 1, + sym_path, + STATE(3395), 2, sym_comment, - ACTIONS(739), 4, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1508), 5, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(741), 6, + anon_sym_COLON2, + [103443] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1605), 1, anon_sym_LPAREN2, + ACTIONS(1677), 1, + anon_sym_LBRACE, + ACTIONS(1691), 1, + sym__unquoted_pattern, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(3396), 1, + sym_comment, + STATE(4805), 1, + sym__immediate_decimal, + ACTIONS(6528), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6530), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(726), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103477] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3397), 1, + sym_comment, + ACTIONS(1498), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [102130] = 3, + ACTIONS(1496), 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, + [103499] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3349), 1, + ACTIONS(6532), 1, + anon_sym_DOT, + ACTIONS(6534), 1, + aux_sym__immediate_decimal_token5, + STATE(3398), 1, sym_comment, - ACTIONS(6456), 12, + 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, + [103525] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6541), 1, + anon_sym_DASH2, + ACTIONS(6538), 2, sym__newline, - anon_sym_SEMI, + anon_sym_COMMA, + STATE(3399), 2, + sym_comment, + aux_sym_parameter_repeat2, + ACTIONS(6536), 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, - [102151] = 6, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [103549] = 4, 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, + STATE(3400), 1, sym_comment, - ACTIONS(747), 4, + ACTIONS(1502), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1500), 8, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [103571] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6543), 1, + anon_sym_DOT, + ACTIONS(6545), 1, + aux_sym__immediate_decimal_token5, + STATE(3401), 1, + sym_comment, + ACTIONS(747), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, ACTIONS(749), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, @@ -224397,119 +225889,90 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [102178] = 4, + [103597] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2122), 1, + ACTIONS(6549), 1, anon_sym_DASH2, - STATE(3351), 1, + STATE(3399), 1, + aux_sym_parameter_repeat2, + STATE(3402), 1, sym_comment, - ACTIONS(2120), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1480), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(6547), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102201] = 3, + [103623] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3352), 1, + ACTIONS(6446), 1, + aux_sym__immediate_decimal_token5, + STATE(3403), 1, sym_comment, - ACTIONS(6462), 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, - [102222] = 12, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [103647] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, + STATE(3404), 1, + sym_comment, + ACTIONS(1506), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1598), 1, + ACTIONS(1504), 8, 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, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [103669] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3354), 1, + ACTIONS(6551), 1, + aux_sym__immediate_decimal_token5, + STATE(3405), 1, sym_comment, - ACTIONS(6464), 12, + ACTIONS(763), 4, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [102282] = 9, - 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, - sym_comment, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(1305), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [102314] = 4, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(765), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [103693] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2098), 1, + ACTIONS(2146), 1, anon_sym_DASH2, - STATE(3356), 1, + STATE(3406), 1, sym_comment, - ACTIONS(2096), 10, + ACTIONS(2144), 10, anon_sym_EQ, sym_identifier, sym__newline, @@ -224520,149 +225983,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102336] = 11, + [103715] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, + STATE(3407), 1, + sym_comment, + ACTIONS(1521), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6466), 1, + 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, + [103737] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(884), 1, + sym__space, + ACTIONS(1766), 1, anon_sym_LPAREN2, - ACTIONS(6468), 1, + ACTIONS(5017), 1, + sym__unquoted_pattern, + ACTIONS(6553), 1, anon_sym_DOT_DOT2, - ACTIONS(6472), 1, + ACTIONS(6557), 1, sym_filesize_unit, - ACTIONS(6474), 1, + ACTIONS(6559), 1, sym_duration_unit, - STATE(3357), 1, + STATE(3408), 1, sym_comment, - STATE(4728), 1, + STATE(4671), 1, sym__expr_parenthesized_immediate, - ACTIONS(868), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6470), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [102372] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6476), 1, - aux_sym__immediate_decimal_token5, - STATE(3358), 1, - sym_comment, - ACTIONS(771), 4, + ACTIONS(858), 2, sym__newline, anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 6, - sym__space, - anon_sym_LPAREN2, + ACTIONS(6555), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [102396] = 9, + [103773] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2764), 1, + ACTIONS(2676), 1, aux_sym_expr_unary_token1, - ACTIONS(4819), 1, + ACTIONS(4838), 1, anon_sym_DASH2, - ACTIONS(4832), 1, + ACTIONS(4846), 1, anon_sym_DOLLAR, - ACTIONS(5168), 1, + ACTIONS(5203), 1, anon_sym_LPAREN, - STATE(1294), 1, + STATE(1328), 1, sym__expr_unary_minus, - STATE(3359), 1, + STATE(3409), 1, + sym_comment, + ACTIONS(2238), 2, + anon_sym_true, + anon_sym_false, + STATE(1315), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [103805] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5347), 1, + anon_sym_DASH2, + STATE(3399), 1, + aux_sym_parameter_repeat2, + STATE(3410), 1, + sym_comment, + ACTIONS(1480), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(5345), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [103831] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(73), 1, + aux_sym_expr_unary_token1, + ACTIONS(1651), 1, + anon_sym_DOLLAR, + ACTIONS(4834), 1, + anon_sym_LPAREN, + ACTIONS(4838), 1, + anon_sym_DASH2, + STATE(1328), 1, + sym__expr_unary_minus, + STATE(3411), 1, sym_comment, - ACTIONS(2174), 2, + ACTIONS(2238), 2, anon_sym_true, anon_sym_false, - STATE(1305), 4, + STATE(1315), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [102428] = 5, + [103863] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6343), 1, - aux_sym__immediate_decimal_token5, - STATE(3360), 1, + ACTIONS(6379), 1, + anon_sym_DOT2, + STATE(349), 1, + sym_path, + STATE(3395), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3412), 1, sym_comment, - ACTIONS(739), 4, + ACTIONS(1517), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1515), 5, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + [103891] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6488), 1, + aux_sym__immediate_decimal_token5, + STATE(3413), 1, + sym_comment, + ACTIONS(747), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(741), 6, + ACTIONS(749), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [102452] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1631), 1, - anon_sym_LBRACE, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3361), 1, - sym_comment, - STATE(4787), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102486] = 6, - ACTIONS(3), 1, + [103915] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6482), 1, - anon_sym_DOT, - ACTIONS(6484), 1, - aux_sym__immediate_decimal_token5, - STATE(3362), 1, + ACTIONS(6379), 1, + anon_sym_DOT2, + STATE(349), 1, + sym_path, + STATE(3412), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3414), 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, + STATE(3736), 1, + sym_cell_path, + ACTIONS(1681), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [102512] = 6, + sym__entry_separator, + ACTIONS(1683), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [103945] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(5385), 1, anon_sym_DASH2, - STATE(3363), 1, - sym_comment, - STATE(3371), 1, + STATE(3399), 1, aux_sym_parameter_repeat2, - ACTIONS(1494), 2, + STATE(3415), 1, + sym_comment, + ACTIONS(1480), 2, sym__newline, anon_sym_COMMA, - ACTIONS(5332), 7, + ACTIONS(5383), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -224670,14 +226174,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102538] = 6, + [103971] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6486), 1, - anon_sym_DOT, - ACTIONS(6488), 1, + ACTIONS(6561), 1, aux_sym__immediate_decimal_token5, - STATE(3364), 1, + STATE(3416), 1, + sym_comment, + ACTIONS(763), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(765), 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, + [103995] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6565), 1, + aux_sym__immediate_decimal_token5, + STATE(3417), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, @@ -224690,16 +226213,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102564] = 5, + [104021] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2875), 1, sym__newline, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(3365), 1, + STATE(3418), 1, sym_comment, - ACTIONS(2531), 9, + ACTIONS(2533), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224709,44 +226232,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, - [102588] = 11, - ACTIONS(103), 1, + [104045] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(4969), 1, - sym__unquoted_pattern, - ACTIONS(6490), 1, - anon_sym_DOT_DOT2, - ACTIONS(6494), 1, - sym_filesize_unit, - ACTIONS(6496), 1, - sym_duration_unit, - STATE(3366), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN, + ACTIONS(2776), 1, + aux_sym_expr_unary_token1, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + ACTIONS(4809), 1, + anon_sym_DASH2, + STATE(911), 1, + sym__expr_unary_minus, + STATE(3419), 1, sym_comment, - STATE(4625), 1, - sym__expr_parenthesized_immediate, - ACTIONS(868), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6492), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [102624] = 6, + ACTIONS(1904), 2, + anon_sym_true, + anon_sym_false, + STATE(914), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [104077] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6500), 1, + ACTIONS(6569), 1, anon_sym_DASH2, - STATE(3367), 1, - sym_comment, - STATE(3371), 1, + STATE(3399), 1, aux_sym_parameter_repeat2, - ACTIONS(1494), 2, + STATE(3420), 1, + sym_comment, + ACTIONS(1480), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6498), 7, + ACTIONS(6567), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -224754,95 +226275,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102650] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - aux_sym__immediate_decimal_token5, - STATE(3368), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [102674] = 8, + [104103] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6355), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3369), 1, + STATE(3421), 1, sym_comment, - STATE(3378), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3663), 1, - sym_cell_path, - ACTIONS(1641), 3, + ACTIONS(1525), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1643), 4, + ACTIONS(1523), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [102704] = 5, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [104125] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6504), 1, + ACTIONS(6377), 1, aux_sym__immediate_decimal_token5, - STATE(3370), 1, + STATE(3422), 1, sym_comment, - ACTIONS(771), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(747), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(773), 6, + 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, - sym__entry_separator, - [102728] = 5, + [104149] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6511), 1, + ACTIONS(173), 1, + aux_sym_expr_unary_token1, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, anon_sym_DASH2, - ACTIONS(6508), 2, - sym__newline, - anon_sym_COMMA, - STATE(3371), 2, + STATE(911), 1, + sym__expr_unary_minus, + STATE(3423), 1, sym_comment, - aux_sym_parameter_repeat2, - ACTIONS(6506), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102752] = 4, + ACTIONS(1904), 2, + anon_sym_true, + anon_sym_false, + STATE(914), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [104181] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3372), 1, + STATE(3424), 1, sym_comment, - ACTIONS(1480), 3, + ACTIONS(1529), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1478), 8, + ACTIONS(1527), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -224851,236 +226353,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [102774] = 5, - ACTIONS(3), 1, + [104203] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6282), 1, + ACTIONS(6571), 1, aux_sym__immediate_decimal_token5, - STATE(3373), 1, + STATE(3425), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(763), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_list, + ACTIONS(765), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102798] = 6, + sym__entry_separator, + [104227] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5378), 1, - anon_sym_DASH2, - STATE(3371), 1, - aux_sym_parameter_repeat2, - STATE(3374), 1, + ACTIONS(6573), 1, + anon_sym_else, + STATE(3426), 1, sym_comment, - ACTIONS(1494), 2, + ACTIONS(6126), 10, 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_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [104249] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, - anon_sym_LBRACE, - ACTIONS(1588), 1, + ACTIONS(884), 1, + sym__entry_separator, + ACTIONS(6277), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6575), 1, anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3375), 1, + ACTIONS(6577), 1, + anon_sym_DOT_DOT2, + ACTIONS(6581), 1, + sym_filesize_unit, + ACTIONS(6583), 1, + sym_duration_unit, + STATE(3427), 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, + STATE(4728), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - [102858] = 4, + ACTIONS(858), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6579), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [104285] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3376), 1, + ACTIONS(6409), 1, + aux_sym__immediate_decimal_token5, + STATE(3428), 1, sym_comment, - ACTIONS(1545), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1543), 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, - [102880] = 4, + 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, + [104309] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3377), 1, + ACTIONS(6585), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6587), 1, + aux_sym__immediate_decimal_token5, + STATE(3429), 1, sym_comment, - ACTIONS(1468), 3, + 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, - ACTIONS(1466), 8, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, + [104335] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6589), 1, + anon_sym_DOT, + ACTIONS(6591), 1, + aux_sym__immediate_decimal_token5, + STATE(3430), 1, + sym_comment, + ACTIONS(747), 2, anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [102902] = 7, + 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, + [104361] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6355), 1, + ACTIONS(6379), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(349), 1, sym_path, - STATE(3378), 1, - sym_comment, - STATE(3380), 1, + STATE(3412), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 3, + STATE(3431), 1, + sym_comment, + STATE(3735), 1, + sym_cell_path, + ACTIONS(1687), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1458), 5, + ACTIONS(1689), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_COLON2, - [102930] = 4, + [104391] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3379), 1, + ACTIONS(6593), 1, + aux_sym__immediate_decimal_token5, + STATE(3432), 1, sym_comment, - ACTIONS(1472), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1470), 8, + ACTIONS(763), 4, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [102952] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3380), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 3, + sym__unquoted_pattern_in_list, + ACTIONS(765), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1524), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [102978] = 9, + [104415] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(173), 1, - aux_sym_expr_unary_token1, - ACTIONS(1584), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(4795), 1, + ACTIONS(2192), 1, + aux_sym_expr_unary_token1, + ACTIONS(4807), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4809), 1, anon_sym_DASH2, - STATE(945), 1, + STATE(911), 1, sym__expr_unary_minus, - STATE(3381), 1, + STATE(3433), 1, sym_comment, - ACTIONS(1937), 2, + ACTIONS(2184), 2, anon_sym_true, anon_sym_false, - STATE(953), 4, + STATE(914), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [103010] = 4, - ACTIONS(103), 1, + [104447] = 10, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3382), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1617), 1, + anon_sym_LBRACE, + ACTIONS(1621), 1, + anon_sym_DOT, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(3434), 1, + sym_comment, + STATE(4118), 1, + sym__immediate_decimal, + ACTIONS(6498), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6500), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4117), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104481] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6595), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6597), 1, + aux_sym__immediate_decimal_token5, + STATE(3435), 1, sym_comment, - ACTIONS(1476), 3, + 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__entry_separator, - ACTIONS(1474), 8, + sym_filesize_unit, + sym_duration_unit, + [104507] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + anon_sym_DASH2, + STATE(3399), 1, + aux_sym_parameter_repeat2, + STATE(3436), 1, + sym_comment, + ACTIONS(1480), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(6599), 7, + sym_identifier, + anon_sym_PIPE, 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, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104533] = 11, ACTIONS(103), 1, anon_sym_POUND, - STATE(3383), 1, - sym_comment, - ACTIONS(1516), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1599), 1, sym__entry_separator, - ACTIONS(1514), 8, - anon_sym_RBRACK, + ACTIONS(1603), 1, 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, + ACTIONS(5945), 1, + anon_sym_LPAREN2, + ACTIONS(6319), 1, + anon_sym_DOLLAR, + ACTIONS(6357), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6359), 1, + aux_sym__immediate_decimal_token2, + STATE(3437), 1, + sym_comment, + STATE(4726), 1, + sym__immediate_decimal, + ACTIONS(6100), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4171), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104569] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6518), 1, + ACTIONS(1599), 1, + anon_sym_LBRACE, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(3438), 1, + sym_comment, + STATE(4742), 1, + sym__immediate_decimal, + ACTIONS(6528), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6530), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(780), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104603] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5363), 1, anon_sym_DASH2, - STATE(3371), 1, + STATE(3399), 1, aux_sym_parameter_repeat2, - STATE(3384), 1, + STATE(3439), 1, sym_comment, - ACTIONS(1494), 2, + ACTIONS(1480), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6516), 7, + ACTIONS(5361), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -225088,134 +226671,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103080] = 10, - ACTIONS(3), 1, + [104629] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1677), 1, + sym__entry_separator, + ACTIONS(1679), 1, + anon_sym_RBRACE, + ACTIONS(5945), 1, + anon_sym_LPAREN2, + ACTIONS(6319), 1, + anon_sym_DOLLAR, + ACTIONS(6357), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6359), 1, + aux_sym__immediate_decimal_token2, + STATE(3440), 1, + sym_comment, + STATE(4782), 1, + sym__immediate_decimal, + ACTIONS(6100), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4203), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104665] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1776), 1, + aux_sym_unquoted_token2, + ACTIONS(6603), 1, + anon_sym_DOLLAR, + ACTIONS(6605), 1, + aux_sym__immediate_decimal_token2, + STATE(510), 1, + sym__immediate_decimal, + STATE(3441), 1, + sym_comment, + ACTIONS(6607), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(698), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104698] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6609), 1, + anon_sym_DQUOTE, + ACTIONS(6611), 1, + anon_sym_SQUOTE, + ACTIONS(6613), 1, + anon_sym_BQUOTE, + ACTIONS(6615), 1, + aux_sym_path_token1, + ACTIONS(6617), 1, + sym_raw_string_begin, + STATE(3442), 1, + sym_comment, + STATE(4017), 1, + sym_val_string, + STATE(4222), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [104729] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6619), 1, + anon_sym_DQUOTE, + ACTIONS(6621), 1, + anon_sym_SQUOTE, + ACTIONS(6623), 1, + anon_sym_BQUOTE, + ACTIONS(6625), 1, + aux_sym_path_token1, + ACTIONS(6627), 1, + sym_raw_string_begin, + STATE(2347), 1, + sym_val_string, + STATE(3443), 1, + sym_comment, + STATE(2523), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [104760] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6629), 1, + anon_sym_DQUOTE, + ACTIONS(6631), 1, + anon_sym_SQUOTE, + ACTIONS(6633), 1, + anon_sym_BQUOTE, + ACTIONS(6635), 1, + aux_sym_path_token1, + ACTIONS(6637), 1, + sym_raw_string_begin, + STATE(1724), 1, + sym_val_string, + STATE(3444), 1, + sym_comment, + STATE(1765), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [104791] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6639), 1, + anon_sym_DQUOTE, + ACTIONS(6641), 1, + anon_sym_SQUOTE, + ACTIONS(6643), 1, + anon_sym_BQUOTE, + ACTIONS(6645), 1, + aux_sym_path_token1, + ACTIONS(6647), 1, + sym_raw_string_begin, + STATE(2376), 1, + sym_val_string, + STATE(3445), 1, + sym_comment, + STATE(2354), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [104822] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(6625), 1, + aux_sym_path_token1, + ACTIONS(6649), 1, + anon_sym_DQUOTE, + ACTIONS(6651), 1, + anon_sym_SQUOTE, + ACTIONS(6653), 1, + anon_sym_BQUOTE, + STATE(2347), 1, + sym_val_string, + STATE(3446), 1, + sym_comment, + STATE(2238), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [104853] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3028), 1, + sym_raw_string_begin, + ACTIONS(6655), 1, + anon_sym_DQUOTE, + ACTIONS(6657), 1, + anon_sym_SQUOTE, + ACTIONS(6659), 1, + anon_sym_BQUOTE, + ACTIONS(6661), 1, + aux_sym_path_token1, + STATE(2494), 1, + sym_val_string, + STATE(3447), 1, + sym_comment, + STATE(2576), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [104884] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(6663), 1, + anon_sym_DQUOTE, + ACTIONS(6665), 1, + anon_sym_SQUOTE, + ACTIONS(6667), 1, + anon_sym_BQUOTE, + ACTIONS(6669), 1, + aux_sym_path_token1, + STATE(3448), 1, + sym_comment, + STATE(3649), 1, + sym_val_string, + STATE(3594), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [104915] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1596), 1, - anon_sym_LBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3385), 1, + ACTIONS(6671), 1, + anon_sym_DQUOTE, + ACTIONS(6673), 1, + anon_sym_SQUOTE, + ACTIONS(6675), 1, + anon_sym_BQUOTE, + ACTIONS(6677), 1, + aux_sym_path_token1, + ACTIONS(6679), 1, + sym_raw_string_begin, + STATE(336), 1, + sym_val_string, + STATE(3449), 1, sym_comment, - STATE(4713), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103114] = 8, + STATE(356), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [104946] = 6, 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(6681), 1, + anon_sym_DOT, + ACTIONS(6683), 1, + aux_sym__immediate_decimal_token5, + STATE(3450), 1, sym_comment, - STATE(3661), 1, - sym_cell_path, - ACTIONS(1679), 3, + ACTIONS(1754), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1681), 4, + ACTIONS(1756), 4, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [103144] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACE, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3387), 1, - sym_comment, - STATE(4753), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4079), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103180] = 5, - ACTIONS(103), 1, + sym__unquoted_pattern_in_list, + [104971] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6321), 1, + ACTIONS(6591), 1, aux_sym__immediate_decimal_token5, - STATE(3388), 1, + STATE(3451), 1, sym_comment, - ACTIONS(739), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 6, - sym__space, - anon_sym_LPAREN2, + 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, - [103204] = 11, + [104994] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1633), 1, + ACTIONS(858), 1, anon_sym_RBRACE, - ACTIONS(5837), 1, + ACTIONS(884), 1, + sym__entry_separator, + ACTIONS(5126), 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, + ACTIONS(6685), 1, + anon_sym_DOT_DOT2, + ACTIONS(6689), 1, + sym_filesize_unit, + ACTIONS(6691), 1, + sym_duration_unit, + ACTIONS(6693), 1, + sym__unquoted_pattern_in_record, + STATE(3452), 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, + STATE(4815), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - [103240] = 6, + ACTIONS(6687), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [105029] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6520), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6522), 1, - aux_sym__immediate_decimal_token5, - STATE(3390), 1, + STATE(3453), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 7, + ACTIONS(741), 8, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, @@ -225223,1034 +226973,800 @@ 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, + [105050] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6524), 1, - anon_sym_DOT, - ACTIONS(6526), 1, - aux_sym__immediate_decimal_token5, - STATE(3392), 1, + STATE(3454), 1, sym_comment, - ACTIONS(739), 3, - anon_sym_RBRACE, + ACTIONS(739), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, + sym__unquoted_pattern, ACTIONS(741), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [103318] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1774), 1, - anon_sym_LPAREN, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(4797), 1, - anon_sym_DASH2, - STATE(945), 1, - sym__expr_unary_minus, - STATE(3393), 1, - sym_comment, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(953), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [103350] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6530), 1, - anon_sym_DASH2, - STATE(3371), 1, - aux_sym_parameter_repeat2, - STATE(3394), 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, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [103376] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6532), 1, - anon_sym_else, - STATE(3395), 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(3), 1, + [105071] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1786), 1, anon_sym_DOLLAR, - ACTIONS(2406), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - STATE(945), 1, - sym__expr_unary_minus, - STATE(3396), 1, + ACTIONS(5945), 1, + anon_sym_LPAREN2, + ACTIONS(6170), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6172), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6693), 1, + aux_sym__unquoted_in_record_token2, + STATE(3455), 1, sym_comment, - ACTIONS(2398), 2, - anon_sym_true, - anon_sym_false, - STATE(953), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(3742), 1, + sym__immediate_decimal, + ACTIONS(6174), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3815), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [103430] = 6, + [105104] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6534), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6536), 1, + ACTIONS(6695), 1, aux_sym__immediate_decimal_token5, - STATE(3397), 1, + STATE(3456), 1, sym_comment, - ACTIONS(747), 3, + ACTIONS(763), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(749), 6, + ACTIONS(765), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [103456] = 5, + [105127] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token5, - STATE(3398), 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, + ACTIONS(3230), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [103480] = 5, + ACTIONS(3695), 1, + anon_sym_DOLLAR, + ACTIONS(4932), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4934), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5072), 1, + aux_sym_unquoted_token2, + STATE(2878), 1, + sym__immediate_decimal, + STATE(3457), 1, + sym_comment, + ACTIONS(4936), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3227), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105160] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6538), 1, + ACTIONS(6697), 1, + anon_sym_DOT, + ACTIONS(6699), 1, aux_sym__immediate_decimal_token5, - STATE(3399), 1, + STATE(3458), 1, sym_comment, - ACTIONS(771), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(773), 6, + ACTIONS(1754), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [103504] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6540), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6542), 1, - aux_sym__immediate_decimal_token5, - STATE(3400), 1, - sym_comment, - ACTIONS(747), 2, + ACTIONS(1756), 4, + sym__newline, + anon_sym_SEMI, 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, + [105185] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, + ACTIONS(1776), 1, + aux_sym_unquoted_token2, + ACTIONS(3906), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, + ACTIONS(6603), 1, + anon_sym_DOLLAR, + ACTIONS(6701), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - STATE(3401), 1, + STATE(1840), 1, + sym__immediate_decimal, + STATE(3459), 1, sym_comment, - STATE(3922), 1, + ACTIONS(6703), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(698), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105218] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1776), 1, + aux_sym_unquoted_token2, + ACTIONS(3938), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6603), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + aux_sym__immediate_decimal_token2, + STATE(1959), 1, sym__immediate_decimal, - ACTIONS(6077), 2, + STATE(3460), 1, + sym_comment, + ACTIONS(6707), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4234), 2, + STATE(884), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103563] = 9, + [105251] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1792), 1, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(6544), 1, + ACTIONS(6663), 1, anon_sym_DQUOTE, - ACTIONS(6546), 1, + ACTIONS(6665), 1, anon_sym_SQUOTE, - ACTIONS(6548), 1, + ACTIONS(6667), 1, anon_sym_BQUOTE, - ACTIONS(6550), 1, + ACTIONS(6709), 1, aux_sym_path_token1, - STATE(2374), 1, + STATE(3303), 1, sym_val_string, - STATE(3402), 1, + STATE(3461), 1, sym_comment, - STATE(2228), 4, + STATE(3594), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [103594] = 9, + [105282] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1426), 1, + ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(6552), 1, + ACTIONS(6711), 1, anon_sym_DQUOTE, - ACTIONS(6554), 1, + ACTIONS(6713), 1, anon_sym_SQUOTE, - ACTIONS(6556), 1, + ACTIONS(6715), 1, anon_sym_BQUOTE, - ACTIONS(6558), 1, + ACTIONS(6717), 1, aux_sym_path_token1, - STATE(3403), 1, - sym_comment, - STATE(3610), 1, + STATE(481), 1, sym_val_string, - STATE(3505), 4, + STATE(3462), 1, + sym_comment, + STATE(485), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [103625] = 9, + [105313] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6560), 1, - anon_sym_DQUOTE, - ACTIONS(6562), 1, - anon_sym_SQUOTE, - ACTIONS(6564), 1, - anon_sym_BQUOTE, - ACTIONS(6566), 1, - aux_sym_path_token1, - ACTIONS(6568), 1, - sym_raw_string_begin, - STATE(336), 1, - sym_val_string, - STATE(3404), 1, + ACTIONS(6545), 1, + aux_sym__immediate_decimal_token5, + STATE(3463), 1, sym_comment, - STATE(365), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [103656] = 10, + ACTIONS(747), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(749), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [105336] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(5945), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(6277), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6319), 1, anon_sym_DOLLAR, - ACTIONS(5743), 1, + ACTIONS(6329), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6570), 1, + ACTIONS(6331), 1, aux_sym__immediate_decimal_token2, - STATE(3405), 1, + STATE(3464), 1, sym_comment, - STATE(3600), 1, + STATE(4374), 1, sym__immediate_decimal, - ACTIONS(6572), 2, + ACTIONS(6333), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3625), 2, + STATE(4120), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103689] = 10, + [105369] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(6132), 1, anon_sym_DOLLAR, - ACTIONS(5934), 1, + ACTIONS(6134), 1, + anon_sym_LPAREN2, + ACTIONS(6136), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6574), 1, + ACTIONS(6138), 1, aux_sym__immediate_decimal_token2, - STATE(3406), 1, + ACTIONS(6277), 1, + aux_sym__unquoted_in_list_token2, + STATE(3465), 1, sym_comment, - STATE(3914), 1, + STATE(4033), 1, sym__immediate_decimal, - ACTIONS(6576), 2, + ACTIONS(6140), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(4120), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103722] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3407), 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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [103743] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6578), 1, - anon_sym_DQUOTE, - ACTIONS(6580), 1, - anon_sym_SQUOTE, - ACTIONS(6582), 1, - anon_sym_BQUOTE, - ACTIONS(6584), 1, - aux_sym_path_token1, - ACTIONS(6586), 1, - sym_raw_string_begin, - STATE(374), 1, - sym_val_string, - STATE(3408), 1, - sym_comment, - STATE(391), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [103774] = 10, + [105402] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1776), 1, + ACTIONS(1786), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(5945), 1, anon_sym_LPAREN2, - ACTIONS(6047), 1, + ACTIONS(6096), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, + ACTIONS(6098), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6222), 1, + ACTIONS(6277), 1, aux_sym__unquoted_in_list_token2, - STATE(3409), 1, + STATE(3466), 1, sym_comment, - STATE(3719), 1, + STATE(3759), 1, sym__immediate_decimal, - ACTIONS(6051), 2, + ACTIONS(6100), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3780), 2, + STATE(3815), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103807] = 10, + [105435] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5837), 1, + ACTIONS(5945), 1, anon_sym_LPAREN2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6248), 1, + ACTIONS(6319), 1, anon_sym_DOLLAR, - ACTIONS(6442), 1, + ACTIONS(6321), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6444), 1, + ACTIONS(6323), 1, aux_sym__immediate_decimal_token2, - STATE(3410), 1, + ACTIONS(6693), 1, + aux_sym__unquoted_in_record_token2, + STATE(3467), 1, sym_comment, - STATE(4350), 1, + STATE(4412), 1, sym__immediate_decimal, - ACTIONS(6446), 2, + ACTIONS(6325), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4234), 2, + STATE(4120), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103840] = 10, - ACTIONS(103), 1, + [105468] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(1661), 1, + anon_sym_LBRACE, + ACTIONS(2897), 1, anon_sym_DOLLAR, - ACTIONS(6478), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, - aux_sym__immediate_decimal_token2, - STATE(3411), 1, - sym_comment, - STATE(4660), 1, + STATE(718), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + STATE(3468), 1, + sym_comment, + ACTIONS(6500), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + ACTIONS(6719), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(717), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103873] = 5, + [105499] = 9, 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, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3414), 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, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(6596), 1, - anon_sym_DQUOTE, - ACTIONS(6598), 1, - anon_sym_SQUOTE, - ACTIONS(6600), 1, - anon_sym_BQUOTE, - ACTIONS(6602), 1, - aux_sym_path_token1, - STATE(406), 1, - sym_val_string, - STATE(3415), 1, - sym_comment, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [103973] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6604), 1, - anon_sym_DOT, - ACTIONS(6606), 1, - aux_sym__immediate_decimal_token5, - STATE(3416), 1, - sym_comment, - ACTIONS(1736), 4, + ACTIONS(1605), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1738), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [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__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(2897), 1, 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, + STATE(723), 1, + sym__immediate_decimal, + STATE(3469), 1, sym_comment, - STATE(4630), 1, + ACTIONS(6500), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6719), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(722), 2, sym__expr_parenthesized_immediate, - ACTIONS(6610), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [104054] = 5, + sym_val_variable, + [105530] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6488), 1, - aux_sym__immediate_decimal_token5, - STATE(3419), 1, + STATE(3470), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(789), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + ACTIONS(791), 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, - [104077] = 10, + [105551] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4969), 1, + ACTIONS(1776), 1, aux_sym_unquoted_token2, - ACTIONS(5862), 1, + ACTIONS(5195), 1, + anon_sym_DOLLAR, + ACTIONS(5739), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5864), 1, + ACTIONS(6721), 1, aux_sym__immediate_decimal_token2, - STATE(3420), 1, + STATE(3471), 1, sym_comment, - STATE(3608), 1, + STATE(3634), 1, sym__immediate_decimal, - ACTIONS(5866), 2, + ACTIONS(6723), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3853), 2, + STATE(3667), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104110] = 10, + [105584] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4969), 1, + ACTIONS(1776), 1, aux_sym_unquoted_token2, - ACTIONS(6055), 1, + ACTIONS(5195), 1, + anon_sym_DOLLAR, + ACTIONS(5941), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6057), 1, + ACTIONS(6725), 1, aux_sym__immediate_decimal_token2, - STATE(3421), 1, + STATE(3472), 1, sym_comment, - STATE(3961), 1, + STATE(3986), 1, sym__immediate_decimal, - ACTIONS(6059), 2, + ACTIONS(6727), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2930), 2, + STATE(884), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104143] = 9, + [105617] = 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(6729), 1, anon_sym_DQUOTE, - ACTIONS(6620), 1, + ACTIONS(6731), 1, anon_sym_SQUOTE, - ACTIONS(6622), 1, + ACTIONS(6733), 1, anon_sym_BQUOTE, - STATE(2374), 1, + ACTIONS(6735), 1, + aux_sym_path_token1, + ACTIONS(6737), 1, + sym_raw_string_begin, + STATE(371), 1, sym_val_string, - STATE(3422), 1, + STATE(3473), 1, sym_comment, - STATE(2548), 4, + STATE(393), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104174] = 6, - ACTIONS(103), 1, + [105648] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6624), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6626), 1, + ACTIONS(6739), 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, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3424), 1, + STATE(3474), 1, sym_comment, - ACTIONS(747), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(763), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(765), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [104220] = 4, + [105671] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3425), 1, + ACTIONS(6741), 1, + aux_sym__immediate_decimal_token5, + STATE(3475), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(763), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(765), 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, - [104241] = 6, - ACTIONS(3), 1, + [105694] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6628), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6630), 1, - aux_sym__immediate_decimal_token5, - STATE(3426), 1, - sym_comment, - ACTIONS(1728), 2, + ACTIONS(858), 1, + anon_sym_RBRACK, + ACTIONS(884), 1, + sym__entry_separator, + ACTIONS(6277), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6575), 1, + anon_sym_LPAREN2, + ACTIONS(6743), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(6747), 1, + sym_filesize_unit, + ACTIONS(6749), 1, + sym_duration_unit, + STATE(3476), 1, + sym_comment, + STATE(4728), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6745), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [104266] = 9, - ACTIONS(3), 1, + [105729] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1667), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(1776), 1, + aux_sym_unquoted_token2, + ACTIONS(5195), 1, anon_sym_DOLLAR, - STATE(737), 1, - sym__immediate_decimal, - STATE(3427), 1, + ACTIONS(6498), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6751), 1, + aux_sym__immediate_decimal_token2, + STATE(3477), 1, sym_comment, - ACTIONS(6432), 2, + STATE(3949), 1, + sym__immediate_decimal, + ACTIONS(6753), 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(4100), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104297] = 9, + [105762] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1671), 1, + ACTIONS(1673), 1, anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(2897), 1, anon_sym_DOLLAR, - STATE(739), 1, + STATE(725), 1, sym__immediate_decimal, - STATE(3428), 1, + STATE(3478), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6500), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, + ACTIONS(6719), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(738), 2, + STATE(724), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104328] = 4, + [105793] = 10, ACTIONS(103), 1, anon_sym_POUND, - STATE(3429), 1, + ACTIONS(1786), 1, + anon_sym_DOLLAR, + ACTIONS(5945), 1, + anon_sym_LPAREN2, + ACTIONS(5949), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5951), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6277), 1, + aux_sym__unquoted_in_list_token2, + STATE(3479), 1, sym_comment, - ACTIONS(849), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + STATE(3623), 1, + sym__immediate_decimal, + ACTIONS(5953), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3902), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105826] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6755), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6757), 1, + aux_sym__immediate_decimal_token5, + STATE(3480), 1, + sym_comment, + ACTIONS(1748), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(851), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(1746), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [104349] = 10, + [105851] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(3279), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR, - ACTIONS(4850), 1, + ACTIONS(5017), 1, + aux_sym_unquoted_token2, + ACTIONS(5916), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4852), 1, + ACTIONS(5918), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4969), 1, - aux_sym_unquoted_token2, - STATE(2505), 1, - sym__immediate_decimal, - STATE(3430), 1, + STATE(3481), 1, sym_comment, - ACTIONS(4854), 2, + STATE(3657), 1, + sym__immediate_decimal, + ACTIONS(5920), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2605), 2, + STATE(3888), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104382] = 10, + [105884] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(3279), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR, - ACTIONS(4884), 1, + ACTIONS(5017), 1, + aux_sym_unquoted_token2, + ACTIONS(6108), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4886), 1, + ACTIONS(6110), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4969), 1, - aux_sym_unquoted_token2, - STATE(2699), 1, - sym__immediate_decimal, - STATE(3431), 1, + STATE(3482), 1, sym_comment, - ACTIONS(4888), 2, + STATE(3967), 1, + sym__immediate_decimal, + ACTIONS(6112), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2930), 2, + STATE(3062), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104415] = 9, - ACTIONS(3), 1, + [105917] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3329), 1, anon_sym_LPAREN2, - ACTIONS(1675), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(4979), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(4981), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5136), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(6759), 1, anon_sym_DOLLAR, - STATE(741), 1, + STATE(2600), 1, sym__immediate_decimal, - STATE(3432), 1, + STATE(3483), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6761), 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(2874), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104446] = 9, + [105950] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6634), 1, + ACTIONS(6639), 1, anon_sym_DQUOTE, - ACTIONS(6636), 1, + ACTIONS(6641), 1, anon_sym_SQUOTE, - ACTIONS(6638), 1, + ACTIONS(6643), 1, anon_sym_BQUOTE, - ACTIONS(6640), 1, - aux_sym_path_token1, - ACTIONS(6642), 1, + ACTIONS(6647), 1, sym_raw_string_begin, - STATE(1772), 1, + ACTIONS(6763), 1, + aux_sym_path_token1, + STATE(2575), 1, sym_val_string, - STATE(3433), 1, + STATE(3484), 1, sym_comment, - STATE(1780), 4, + STATE(2354), 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, + [105981] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1442), 1, + ACTIONS(1460), 1, anon_sym_BANG, - STATE(3435), 1, + STATE(3485), 1, sym_comment, - ACTIONS(1440), 3, + ACTIONS(1458), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1438), 6, + ACTIONS(1456), 6, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_COLON2, anon_sym_DOT2, - [104531] = 10, + [106004] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3329), 1, anon_sym_LPAREN2, - ACTIONS(1592), 1, + ACTIONS(5021), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5023), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(6644), 1, + ACTIONS(5136), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(6759), 1, anon_sym_DOLLAR, - ACTIONS(6646), 1, - aux_sym__immediate_decimal_token2, - STATE(642), 1, + STATE(3003), 1, sym__immediate_decimal, - STATE(3436), 1, + STATE(3486), 1, sym_comment, - ACTIONS(6648), 2, + ACTIONS(6765), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + STATE(3374), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104564] = 10, + [106037] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3487), 1, + sym_comment, + ACTIONS(763), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(765), 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, + [106058] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1635), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(6644), 1, - anon_sym_DOLLAR, - ACTIONS(6650), 1, - aux_sym__immediate_decimal_token2, - STATE(941), 1, - sym__immediate_decimal, - STATE(3437), 1, + STATE(3488), 1, sym_comment, - ACTIONS(6652), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(888), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104597] = 9, + ACTIONS(763), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(765), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [106079] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(6654), 1, + ACTIONS(838), 1, anon_sym_DQUOTE, - ACTIONS(6656), 1, + ACTIONS(840), 1, anon_sym_SQUOTE, - ACTIONS(6658), 1, + ACTIONS(842), 1, anon_sym_BQUOTE, - ACTIONS(6660), 1, + ACTIONS(856), 1, + sym_raw_string_begin, + ACTIONS(6767), 1, aux_sym_path_token1, - STATE(502), 1, + STATE(2399), 1, sym_val_string, - STATE(3438), 1, + STATE(3489), 1, sym_comment, - STATE(480), 4, + STATE(2455), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104628] = 6, + [106110] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6662), 1, - anon_sym_DOT, - ACTIONS(6664), 1, + ACTIONS(6769), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6771), 1, aux_sym__immediate_decimal_token5, - STATE(3439), 1, + STATE(3490), 1, sym_comment, - ACTIONS(1736), 4, + ACTIONS(1746), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1738), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1748), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [104653] = 5, + sym__unquoted_pattern, + [106135] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6666), 1, + ACTIONS(6534), 1, aux_sym__immediate_decimal_token5, - STATE(3440), 1, + STATE(3491), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 7, + ACTIONS(749), 7, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, @@ -226258,1458 +227774,1504 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104676] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6668), 1, - anon_sym_DQUOTE, - ACTIONS(6670), 1, - anon_sym_SQUOTE, - ACTIONS(6672), 1, - anon_sym_BQUOTE, - ACTIONS(6674), 1, - aux_sym_path_token1, - ACTIONS(6676), 1, - sym_raw_string_begin, - STATE(3441), 1, - sym_comment, - STATE(3677), 1, - sym_val_string, - STATE(3791), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [104707] = 10, + [106158] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(3279), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, - aux_sym_unquoted_token2, - ACTIONS(4836), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5170), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR, - ACTIONS(6678), 1, + ACTIONS(4856), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4858), 1, aux_sym__immediate_decimal_token2, - STATE(2433), 1, + ACTIONS(5017), 1, + aux_sym_unquoted_token2, + STATE(2503), 1, sym__immediate_decimal, - STATE(3442), 1, + STATE(3492), 1, sym_comment, - ACTIONS(6680), 2, + ACTIONS(4860), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2576), 2, + STATE(2642), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104740] = 10, + [106191] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(3279), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, - aux_sym_unquoted_token2, - ACTIONS(4844), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5170), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR, - ACTIONS(6682), 1, + ACTIONS(4878), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4880), 1, aux_sym__immediate_decimal_token2, - STATE(2626), 1, + ACTIONS(5017), 1, + aux_sym_unquoted_token2, + STATE(2813), 1, sym__immediate_decimal, - STATE(3443), 1, + STATE(3493), 1, sym_comment, - ACTIONS(6684), 2, + ACTIONS(4882), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1264), 2, + STATE(3062), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104773] = 9, + [106224] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6686), 1, + ACTIONS(3028), 1, + sym_raw_string_begin, + ACTIONS(6625), 1, + aux_sym_path_token1, + ACTIONS(6655), 1, anon_sym_DQUOTE, - ACTIONS(6688), 1, + ACTIONS(6657), 1, anon_sym_SQUOTE, - ACTIONS(6690), 1, + ACTIONS(6659), 1, anon_sym_BQUOTE, - ACTIONS(6692), 1, - aux_sym_path_token1, - ACTIONS(6694), 1, - sym_raw_string_begin, - STATE(3268), 1, + STATE(2347), 1, sym_val_string, - STATE(3444), 1, + STATE(3494), 1, sym_comment, - STATE(3372), 4, + STATE(2576), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104804] = 5, + [106255] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6696), 1, - aux_sym__immediate_decimal_token5, - STATE(3445), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, + ACTIONS(1776), 1, sym__unquoted_pattern, - ACTIONS(773), 7, + ACTIONS(6773), 1, + anon_sym_DOT_DOT2, + ACTIONS(6777), 1, + sym_filesize_unit, + ACTIONS(6779), 1, + sym_duration_unit, + STATE(3495), 1, + sym_comment, + ACTIONS(6775), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(884), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, + [106284] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3496), 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, - [104827] = 10, + sym__entry_separator, + [106305] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(4825), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(6698), 1, - aux_sym__immediate_decimal_token2, - STATE(2406), 1, - sym__immediate_decimal, - STATE(3446), 1, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(6781), 1, + anon_sym_DQUOTE, + ACTIONS(6783), 1, + anon_sym_SQUOTE, + ACTIONS(6785), 1, + anon_sym_BQUOTE, + ACTIONS(6787), 1, + aux_sym_path_token1, + STATE(399), 1, + sym_val_string, + STATE(3497), 1, sym_comment, - ACTIONS(6700), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2500), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104860] = 10, + STATE(424), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [106336] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1776), 1, aux_sym_unquoted_token2, - ACTIONS(4840), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5164), 1, + ACTIONS(5195), 1, anon_sym_DOLLAR, - ACTIONS(6702), 1, + ACTIONS(6528), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6789), 1, aux_sym__immediate_decimal_token2, - STATE(2523), 1, - sym__immediate_decimal, - STATE(3447), 1, + STATE(3498), 1, sym_comment, - ACTIONS(6704), 2, + STATE(4822), 1, + sym__immediate_decimal, + ACTIONS(6791), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(884), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104893] = 4, + [106369] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3448), 1, + ACTIONS(6523), 1, + anon_sym_DASH2, + STATE(3499), 1, sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(851), 8, - anon_sym_if, + ACTIONS(4393), 9, + sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104914] = 10, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [106390] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5837), 1, + ACTIONS(3230), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, + ACTIONS(3695), 1, anon_sym_DOLLAR, - ACTIONS(6335), 1, + ACTIONS(4902), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6337), 1, + ACTIONS(4904), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6616), 1, - aux_sym__unquoted_in_record_token2, - STATE(3449), 1, - sym_comment, - STATE(4159), 1, + ACTIONS(5072), 1, + aux_sym_unquoted_token2, + STATE(2558), 1, sym__immediate_decimal, - ACTIONS(6339), 2, + STATE(3500), 1, + sym_comment, + ACTIONS(4906), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4234), 2, + STATE(2717), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104947] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6706), 1, - aux_sym__immediate_decimal_token5, - STATE(3450), 1, - sym_comment, - ACTIONS(771), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [104970] = 10, + [106423] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1647), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1776), 1, aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(6603), 1, anon_sym_DOLLAR, - ACTIONS(5930), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6708), 1, + ACTIONS(6793), 1, aux_sym__immediate_decimal_token2, - STATE(3451), 1, - sym_comment, - STATE(3687), 1, + STATE(948), 1, sym__immediate_decimal, - ACTIONS(6710), 2, + STATE(3501), 1, + sym_comment, + ACTIONS(6795), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3625), 2, + STATE(884), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105003] = 4, + [106456] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3452), 1, + STATE(3502), 1, sym_comment, - ACTIONS(771), 4, + ACTIONS(739), 4, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(773), 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, - [105024] = 10, - 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(6145), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6712), 1, - aux_sym__immediate_decimal_token2, - STATE(3453), 1, - sym_comment, - STATE(4112), 1, - sym__immediate_decimal, - ACTIONS(6714), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(888), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105057] = 9, + [106477] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(942), 1, + ACTIONS(6797), 1, anon_sym_DQUOTE, - ACTIONS(944), 1, + ACTIONS(6799), 1, anon_sym_SQUOTE, - ACTIONS(946), 1, + ACTIONS(6801), 1, anon_sym_BQUOTE, - ACTIONS(958), 1, - sym_raw_string_begin, - ACTIONS(6716), 1, + ACTIONS(6803), 1, aux_sym_path_token1, - STATE(2455), 1, + ACTIONS(6805), 1, + sym_raw_string_begin, + STATE(1775), 1, sym_val_string, - STATE(3454), 1, + STATE(3503), 1, sym_comment, - STATE(2472), 4, + STATE(1797), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105088] = 10, + [106508] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - aux_sym_unquoted_token2, - ACTIONS(3374), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6718), 1, - anon_sym_DOLLAR, - ACTIONS(6720), 1, - aux_sym__immediate_decimal_token2, - STATE(1441), 1, - sym__immediate_decimal, - STATE(3455), 1, + STATE(3504), 1, sym_comment, - ACTIONS(6722), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(950), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105121] = 11, - 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, - anon_sym_LPAREN2, - ACTIONS(6724), 1, + ACTIONS(789), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - ACTIONS(6728), 1, + sym__unquoted_pattern, + ACTIONS(791), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(6730), 1, sym_duration_unit, - STATE(3456), 1, + [106529] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6807), 1, + anon_sym_DOT, + ACTIONS(6809), 1, + aux_sym__immediate_decimal_token5, + STATE(3505), 1, sym_comment, - STATE(4728), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6726), 2, + ACTIONS(1756), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1754), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [105156] = 10, + [106554] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1653), 1, anon_sym_LPAREN2, - ACTIONS(6169), 1, + ACTIONS(1828), 1, + aux_sym_unquoted_token2, + ACTIONS(4850), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6171), 1, + ACTIONS(5205), 1, + anon_sym_DOLLAR, + ACTIONS(6811), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6616), 1, - aux_sym__unquoted_in_record_token2, - STATE(3457), 1, - sym_comment, - STATE(3693), 1, + STATE(2436), 1, sym__immediate_decimal, - ACTIONS(6173), 2, + STATE(3506), 1, + sym_comment, + ACTIONS(6813), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3780), 2, + STATE(2585), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105189] = 10, + [106587] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1653), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, + ACTIONS(1828), 1, aux_sym_unquoted_token2, - ACTIONS(3450), 1, + ACTIONS(4870), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6718), 1, + ACTIONS(5205), 1, anon_sym_DOLLAR, - ACTIONS(6732), 1, + ACTIONS(6815), 1, aux_sym__immediate_decimal_token2, - STATE(1495), 1, + STATE(2634), 1, sym__immediate_decimal, - STATE(3458), 1, + STATE(3507), 1, sym_comment, - ACTIONS(6734), 2, + ACTIONS(6817), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1264), 2, + STATE(1316), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105222] = 9, + [106620] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6819), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6821), 1, + aux_sym__immediate_decimal_token5, + STATE(3508), 1, + sym_comment, + ACTIONS(1746), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1748), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [106645] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6736), 1, + ACTIONS(6823), 1, anon_sym_DQUOTE, - ACTIONS(6738), 1, + ACTIONS(6825), 1, anon_sym_SQUOTE, - ACTIONS(6740), 1, + ACTIONS(6827), 1, anon_sym_BQUOTE, - ACTIONS(6742), 1, + ACTIONS(6829), 1, aux_sym_path_token1, - ACTIONS(6744), 1, + ACTIONS(6831), 1, sym_raw_string_begin, - STATE(1882), 1, - sym_val_string, - STATE(3459), 1, + STATE(3509), 1, sym_comment, - STATE(1953), 4, + STATE(3719), 1, + sym_val_string, + STATE(3836), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105253] = 5, + [106676] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6526), 1, - aux_sym__immediate_decimal_token5, - STATE(3460), 1, + STATE(3510), 1, sym_comment, - ACTIONS(739), 3, - anon_sym_RBRACE, + ACTIONS(763), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 6, + sym__unquoted_pattern_in_list, + ACTIONS(765), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [105276] = 10, + [106697] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3168), 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, - anon_sym_DOLLAR, - STATE(2612), 1, - sym__immediate_decimal, - STATE(3461), 1, + STATE(3511), 1, sym_comment, - ACTIONS(6748), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2886), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105309] = 10, + ACTIONS(789), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(791), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [106718] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(5011), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5013), 1, + ACTIONS(1776), 1, + aux_sym_unquoted_token2, + ACTIONS(4825), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5116), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(6746), 1, + ACTIONS(5195), 1, anon_sym_DOLLAR, - STATE(2983), 1, + ACTIONS(6833), 1, + aux_sym__immediate_decimal_token2, + STATE(2396), 1, sym__immediate_decimal, - STATE(3462), 1, + STATE(3512), 1, sym_comment, - ACTIONS(6750), 2, + ACTIONS(6835), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3290), 2, + STATE(2512), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105342] = 10, + [106751] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1776), 1, aux_sym_unquoted_token2, - ACTIONS(3940), 1, + ACTIONS(4842), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(5195), 1, anon_sym_DOLLAR, - ACTIONS(6752), 1, + ACTIONS(6837), 1, aux_sym__immediate_decimal_token2, - STATE(1850), 1, + STATE(2557), 1, sym__immediate_decimal, - STATE(3463), 1, + STATE(3513), 1, sym_comment, - ACTIONS(6754), 2, + ACTIONS(6839), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1960), 2, + STATE(884), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105375] = 10, + [106784] = 9, 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(5048), 1, - aux_sym_unquoted_token2, - STATE(2565), 1, - sym__immediate_decimal, - STATE(3464), 1, + ACTIONS(6709), 1, + aux_sym_path_token1, + ACTIONS(6841), 1, + anon_sym_DQUOTE, + ACTIONS(6843), 1, + anon_sym_SQUOTE, + ACTIONS(6845), 1, + anon_sym_BQUOTE, + ACTIONS(6847), 1, + sym_raw_string_begin, + STATE(3303), 1, + sym_val_string, + STATE(3514), 1, sym_comment, - ACTIONS(4874), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2682), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105408] = 10, + STATE(3407), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [106815] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1776), 1, aux_sym_unquoted_token2, - ACTIONS(3954), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(5195), 1, anon_sym_DOLLAR, - ACTIONS(6756), 1, + ACTIONS(5893), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6849), 1, aux_sym__immediate_decimal_token2, - STATE(1974), 1, - sym__immediate_decimal, - STATE(3465), 1, + STATE(3515), 1, sym_comment, - ACTIONS(6758), 2, + STATE(3703), 1, + sym__immediate_decimal, + ACTIONS(6851), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(3667), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105441] = 10, + [106848] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1776), 1, aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(5195), 1, anon_sym_DOLLAR, - ACTIONS(6430), 1, + ACTIONS(6104), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6853), 1, aux_sym__immediate_decimal_token2, - STATE(3466), 1, + STATE(3516), 1, sym_comment, - STATE(3977), 1, + STATE(4195), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6855), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4135), 2, + STATE(884), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105474] = 9, + [106881] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6857), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6859), 1, + aux_sym__immediate_decimal_token5, + STATE(3517), 1, + sym_comment, + ACTIONS(1746), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1748), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [106906] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(827), 1, + ACTIONS(6861), 1, anon_sym_DQUOTE, - ACTIONS(829), 1, + ACTIONS(6863), 1, anon_sym_SQUOTE, - ACTIONS(831), 1, + ACTIONS(6865), 1, anon_sym_BQUOTE, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(6764), 1, + ACTIONS(6867), 1, aux_sym_path_token1, - STATE(2404), 1, + ACTIONS(6869), 1, + sym_raw_string_begin, + STATE(333), 1, sym_val_string, - STATE(3467), 1, + STATE(3518), 1, sym_comment, - STATE(2454), 4, + STATE(344), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105505] = 10, + [106937] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1653), 1, anon_sym_LPAREN2, - ACTIONS(1655), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1820), 1, + ACTIONS(1828), 1, aux_sym_unquoted_token2, - ACTIONS(6718), 1, + ACTIONS(3384), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6871), 1, anon_sym_DOLLAR, - ACTIONS(6766), 1, + ACTIONS(6873), 1, aux_sym__immediate_decimal_token2, - STATE(693), 1, + STATE(1440), 1, sym__immediate_decimal, - STATE(3468), 1, + STATE(3519), 1, sym_comment, - ACTIONS(6768), 2, + ACTIONS(6875), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(950), 2, + STATE(943), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105538] = 10, + [106970] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + STATE(3520), 1, + sym_comment, + ACTIONS(763), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(765), 6, anon_sym_LPAREN2, - ACTIONS(1683), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1820), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [106991] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1653), 1, + anon_sym_LPAREN2, + ACTIONS(1828), 1, aux_sym_unquoted_token2, - ACTIONS(6718), 1, + ACTIONS(3472), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6871), 1, anon_sym_DOLLAR, - ACTIONS(6770), 1, + ACTIONS(6877), 1, aux_sym__immediate_decimal_token2, - STATE(1047), 1, + STATE(1505), 1, sym__immediate_decimal, - STATE(3469), 1, + STATE(3521), 1, sym_comment, - ACTIONS(6772), 2, + ACTIONS(6879), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1264), 2, + STATE(1316), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105571] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6774), 1, - anon_sym_DOT, - ACTIONS(6776), 1, - aux_sym__immediate_decimal_token5, - STATE(3470), 1, - sym_comment, - ACTIONS(1736), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [105596] = 10, + [107024] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(1653), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4916), 1, + ACTIONS(1657), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4918), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5048), 1, + ACTIONS(1828), 1, aux_sym_unquoted_token2, - STATE(2816), 1, + ACTIONS(6871), 1, + anon_sym_DOLLAR, + ACTIONS(6881), 1, + aux_sym__immediate_decimal_token2, + STATE(673), 1, sym__immediate_decimal, - STATE(3471), 1, + STATE(3522), 1, sym_comment, - ACTIONS(4920), 2, + ACTIONS(6883), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3201), 2, + STATE(943), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105629] = 10, + [107057] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1653), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(3347), 1, + ACTIONS(1708), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(1828), 1, + aux_sym_unquoted_token2, + ACTIONS(6871), 1, anon_sym_DOLLAR, - ACTIONS(6778), 1, + ACTIONS(6885), 1, aux_sym__immediate_decimal_token2, - STATE(1436), 1, + STATE(979), 1, sym__immediate_decimal, - STATE(3472), 1, + STATE(3523), 1, sym_comment, - ACTIONS(6780), 2, + ACTIONS(6887), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + STATE(1316), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105662] = 10, + [107090] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(942), 1, + anon_sym_DQUOTE, + ACTIONS(944), 1, + anon_sym_SQUOTE, + ACTIONS(946), 1, + anon_sym_BQUOTE, + ACTIONS(958), 1, + sym_raw_string_begin, + ACTIONS(6889), 1, + aux_sym_path_token1, + STATE(2438), 1, + sym_val_string, + STATE(3524), 1, + sym_comment, + STATE(2501), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [107121] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(3378), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(1617), 1, + anon_sym_LBRACE, + ACTIONS(2897), 1, anon_sym_DOLLAR, - ACTIONS(6782), 1, - aux_sym__immediate_decimal_token2, - STATE(1470), 1, + STATE(777), 1, sym__immediate_decimal, - STATE(3473), 1, + STATE(3525), 1, sym_comment, - ACTIONS(6784), 2, + ACTIONS(6500), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + ACTIONS(6719), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(776), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105695] = 10, + [107152] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1776), 1, aux_sym_unquoted_token2, - ACTIONS(3762), 1, + ACTIONS(3950), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(6603), 1, anon_sym_DOLLAR, - ACTIONS(6786), 1, + ACTIONS(6891), 1, aux_sym__immediate_decimal_token2, - STATE(1827), 1, + STATE(1870), 1, sym__immediate_decimal, - STATE(3474), 1, + STATE(3526), 1, sym_comment, - ACTIONS(6788), 2, + ACTIONS(6893), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + STATE(1917), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105728] = 10, + [107185] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1776), 1, aux_sym_unquoted_token2, - ACTIONS(3900), 1, + ACTIONS(3964), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(6603), 1, anon_sym_DOLLAR, - ACTIONS(6790), 1, + ACTIONS(6895), 1, aux_sym__immediate_decimal_token2, - STATE(1952), 1, + STATE(1979), 1, sym__immediate_decimal, - STATE(3475), 1, + STATE(3527), 1, sym_comment, - ACTIONS(6792), 2, + ACTIONS(6897), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(884), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105761] = 9, + [107218] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6794), 1, + ACTIONS(1802), 1, + sym_raw_string_begin, + ACTIONS(6649), 1, anon_sym_DQUOTE, - ACTIONS(6796), 1, + ACTIONS(6651), 1, anon_sym_SQUOTE, - ACTIONS(6798), 1, + ACTIONS(6653), 1, anon_sym_BQUOTE, - ACTIONS(6800), 1, + ACTIONS(6899), 1, aux_sym_path_token1, - ACTIONS(6802), 1, - sym_raw_string_begin, - STATE(3476), 1, - sym_comment, - STATE(3934), 1, + STATE(2263), 1, sym_val_string, - STATE(4140), 4, + STATE(3528), 1, + sym_comment, + STATE(2238), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105792] = 9, + [107249] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(6544), 1, + ACTIONS(6901), 1, anon_sym_DQUOTE, - ACTIONS(6546), 1, + ACTIONS(6903), 1, anon_sym_SQUOTE, - ACTIONS(6548), 1, + ACTIONS(6905), 1, anon_sym_BQUOTE, - ACTIONS(6804), 1, + ACTIONS(6907), 1, aux_sym_path_token1, - STATE(2263), 1, + ACTIONS(6909), 1, + sym_raw_string_begin, + STATE(1892), 1, sym_val_string, - STATE(3477), 1, + STATE(3529), 1, sym_comment, - STATE(2228), 4, + STATE(1939), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105823] = 10, + [107280] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(5841), 1, + ACTIONS(1776), 1, + aux_sym_unquoted_token2, + ACTIONS(3349), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, + ACTIONS(6603), 1, + anon_sym_DOLLAR, + ACTIONS(6911), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - STATE(3478), 1, - sym_comment, - STATE(3603), 1, + STATE(1433), 1, sym__immediate_decimal, - ACTIONS(5845), 2, + STATE(3530), 1, + sym_comment, + ACTIONS(6913), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3860), 2, + STATE(698), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105856] = 9, + [107313] = 6, 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(6692), 1, - aux_sym_path_token1, - STATE(3268), 1, - sym_val_string, - STATE(3479), 1, - sym_comment, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [105887] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6806), 1, + ACTIONS(6915), 1, anon_sym_DOT, - ACTIONS(6808), 1, + ACTIONS(6917), 1, aux_sym__immediate_decimal_token5, - STATE(3480), 1, + STATE(3531), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1754), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [105912] = 4, + sym__entry_separator, + ACTIONS(1756), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [107338] = 10, ACTIONS(103), 1, anon_sym_POUND, - STATE(3481), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + ACTIONS(1776), 1, + aux_sym_unquoted_token2, + ACTIONS(3388), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6603), 1, + anon_sym_DOLLAR, + ACTIONS(6919), 1, + aux_sym__immediate_decimal_token2, + STATE(1478), 1, + sym__immediate_decimal, + STATE(3532), 1, sym_comment, - ACTIONS(747), 4, + ACTIONS(6921), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(884), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [107371] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3533), 1, + sym_comment, + ACTIONS(789), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(749), 6, + ACTIONS(791), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [105933] = 6, - ACTIONS(103), 1, + [107392] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3279), 1, + anon_sym_LPAREN2, + ACTIONS(6923), 1, + anon_sym_DOLLAR, + STATE(3534), 1, + sym_comment, + STATE(4034), 1, + sym__immediate_decimal, + ACTIONS(6108), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6925), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3013), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [107420] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6810), 1, + ACTIONS(3279), 1, + anon_sym_LPAREN2, + ACTIONS(6923), 1, + anon_sym_DOLLAR, + STATE(2982), 1, + sym__immediate_decimal, + STATE(3535), 1, + sym_comment, + ACTIONS(4924), 2, aux_sym__immediate_decimal_token1, - ACTIONS(6812), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6927), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2981), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [107448] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6917), 1, aux_sym__immediate_decimal_token5, - STATE(3482), 1, + STATE(3536), 1, sym_comment, - ACTIONS(1726), 4, + ACTIONS(1754), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1728), 4, + ACTIONS(1756), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [105958] = 9, - ACTIONS(103), 1, + [107470] = 8, + ACTIONS(3), 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(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + STATE(703), 1, + sym__immediate_decimal, + STATE(3537), 1, sym_comment, - STATE(1749), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [105989] = 4, - ACTIONS(103), 1, + ACTIONS(1609), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1611), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(698), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [107498] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3484), 1, + ACTIONS(6929), 1, + anon_sym_DOT2, + STATE(2458), 1, + sym_path, + STATE(2929), 1, + sym_cell_path, + STATE(3538), 1, sym_comment, - ACTIONS(771), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(773), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [106010] = 4, + STATE(3643), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1888), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [107524] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3485), 1, + ACTIONS(1525), 1, + sym__entry_separator, + STATE(3539), 1, sym_comment, - ACTIONS(849), 4, + ACTIONS(1523), 8, + anon_sym_COLON, anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(851), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [106031] = 9, - ACTIONS(103), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [107544] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6824), 1, - anon_sym_DQUOTE, - ACTIONS(6826), 1, - anon_sym_SQUOTE, - ACTIONS(6828), 1, - anon_sym_BQUOTE, - ACTIONS(6830), 1, - aux_sym_path_token1, - ACTIONS(6832), 1, - sym_raw_string_begin, - STATE(2359), 1, - sym_val_string, - STATE(3486), 1, + ACTIONS(6929), 1, + anon_sym_DOT2, + STATE(2458), 1, + sym_path, + STATE(2866), 1, + sym_cell_path, + STATE(3540), 1, sym_comment, - STATE(2420), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [106062] = 8, + STATE(3643), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1856), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [107570] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3817), 1, + anon_sym_DOLLAR, + ACTIONS(6134), 1, + anon_sym_LPAREN2, + STATE(3541), 1, + sym_comment, + STATE(4188), 1, + sym__immediate_decimal, + ACTIONS(6136), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6931), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4187), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [107598] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, + ACTIONS(1776), 1, sym__unquoted_pattern, - ACTIONS(6834), 1, + ACTIONS(6933), 1, anon_sym_DOT_DOT2, - ACTIONS(6838), 1, + ACTIONS(6937), 1, sym_filesize_unit, - ACTIONS(6840), 1, + ACTIONS(6939), 1, sym_duration_unit, - STATE(3487), 1, + STATE(3542), 1, sym_comment, - ACTIONS(6836), 2, + ACTIONS(6935), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(968), 4, - anon_sym_if, + ACTIONS(884), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [106091] = 4, + [107626] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3488), 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, - [106112] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3489), 1, - sym_comment, - ACTIONS(747), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 6, - sym__space, + ACTIONS(3279), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [106133] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6842), 1, - anon_sym_DQUOTE, - ACTIONS(6844), 1, - anon_sym_SQUOTE, - ACTIONS(6846), 1, - anon_sym_BQUOTE, - ACTIONS(6848), 1, - aux_sym_path_token1, - ACTIONS(6850), 1, - sym_raw_string_begin, - STATE(337), 1, - sym_val_string, - STATE(3490), 1, - sym_comment, - STATE(343), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [106164] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3491), 1, + ACTIONS(6923), 1, + anon_sym_DOLLAR, + STATE(2788), 1, + sym__immediate_decimal, + STATE(3543), 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, + ACTIONS(4878), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6941), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3013), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [107654] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3492), 1, + ACTIONS(3329), 1, + anon_sym_LPAREN2, + ACTIONS(3855), 1, + anon_sym_DOLLAR, + STATE(3393), 1, + sym__immediate_decimal, + STATE(3544), 1, sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(851), 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, - [106204] = 7, + ACTIONS(4983), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(5091), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(3392), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [107682] = 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, + ACTIONS(3230), 1, + anon_sym_LPAREN2, + ACTIONS(6943), 1, + anon_sym_DOLLAR, + STATE(2904), 1, + sym__immediate_decimal, + STATE(3545), 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(4932), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6945), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3136), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [107710] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - STATE(3494), 1, - sym_comment, - STATE(3919), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + STATE(919), 1, sym__immediate_decimal, - ACTIONS(5934), 2, + STATE(3546), 1, + sym_comment, + ACTIONS(1647), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(5936), 2, + ACTIONS(1649), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106258] = 8, + [107738] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - STATE(2997), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + STATE(789), 1, sym__immediate_decimal, - STATE(3495), 1, + STATE(3547), 1, sym_comment, - ACTIONS(4912), 2, + ACTIONS(3964), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6856), 2, + ACTIONS(3966), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2996), 2, + STATE(787), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106286] = 7, + [107766] = 8, 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, + ACTIONS(1651), 1, + anon_sym_DOLLAR, + ACTIONS(1653), 1, + anon_sym_LPAREN2, + STATE(1331), 1, + sym__immediate_decimal, + STATE(3548), 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, + ACTIONS(1659), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1730), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1330), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [107794] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3497), 1, + ACTIONS(3897), 1, + anon_sym_DOLLAR, + ACTIONS(5945), 1, + anon_sym_LPAREN2, + STATE(3549), 1, sym_comment, - ACTIONS(849), 3, - anon_sym_RBRACE, + STATE(4110), 1, + sym__immediate_decimal, + ACTIONS(6321), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6947), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4189), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [107822] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(884), 1, + sym__space, + ACTIONS(4149), 1, 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, + ACTIONS(5017), 1, + sym__unquoted_pattern, + ACTIONS(6557), 1, sym_filesize_unit, + ACTIONS(6559), 1, sym_duration_unit, - sym__entry_separator, - [106332] = 8, + STATE(3550), 1, + sym_comment, + ACTIONS(858), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(4151), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [107852] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(1653), 1, anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(4846), 1, anon_sym_DOLLAR, - STATE(3498), 1, - sym_comment, - STATE(4020), 1, + STATE(2648), 1, sym__immediate_decimal, - ACTIONS(6055), 2, + STATE(3551), 1, + sym_comment, + ACTIONS(4870), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6858), 2, + ACTIONS(4872), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2998), 2, + STATE(1332), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106360] = 8, + [107880] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(884), 1, + sym__entry_separator, + ACTIONS(6277), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6577), 1, + anon_sym_DOT_DOT2, + ACTIONS(6581), 1, + sym_filesize_unit, + ACTIONS(6583), 1, + sym_duration_unit, + STATE(3552), 1, + sym_comment, + ACTIONS(858), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6579), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [107910] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3830), 1, + ACTIONS(3817), 1, anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(6134), 1, anon_sym_LPAREN2, - STATE(3499), 1, + STATE(3553), 1, sym_comment, - STATE(4106), 1, + STATE(4050), 1, sym__immediate_decimal, - ACTIONS(6073), 2, + ACTIONS(6136), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6860), 2, + ACTIONS(6931), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4105), 2, + STATE(4189), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106388] = 5, - ACTIONS(103), 1, + [107938] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6862), 1, - aux_sym__immediate_decimal_token5, - STATE(3500), 1, + STATE(3554), 1, sym_comment, - ACTIONS(1802), 4, - anon_sym_LPAREN2, + 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__entry_separator, - ACTIONS(1804), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [106410] = 8, + sym_filesize_unit, + sym_duration_unit, + [107958] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(6864), 1, + ACTIONS(4149), 1, anon_sym_DOT_DOT2, - ACTIONS(6868), 1, + ACTIONS(6949), 1, sym_filesize_unit, - ACTIONS(6870), 1, + ACTIONS(6951), 1, sym_duration_unit, - STATE(3501), 1, + ACTIONS(6953), 1, + sym__unquoted_pattern, + STATE(3555), 1, sym_comment, - ACTIONS(6866), 2, + ACTIONS(4151), 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, + ACTIONS(884), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [107986] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(1313), 1, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(2535), 1, sym__immediate_decimal, - STATE(3502), 1, + STATE(3556), 1, sym_comment, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(4842), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1306), 2, + ACTIONS(4844), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106466] = 8, + [108014] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(3329), 1, anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(3855), 1, anon_sym_DOLLAR, - STATE(2710), 1, + STATE(3001), 1, sym__immediate_decimal, - STATE(3503), 1, + STATE(3557), 1, sym_comment, - ACTIONS(4884), 2, + ACTIONS(5023), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6872), 2, + ACTIONS(5025), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2998), 2, + STATE(3253), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106494] = 8, + [108042] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3558), 1, + sym_comment, + ACTIONS(739), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(741), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [108062] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(2897), 1, anon_sym_DOLLAR, - STATE(727), 1, - sym__immediate_decimal, - STATE(3504), 1, + STATE(3559), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + STATE(4209), 1, + sym__immediate_decimal, + ACTIONS(6104), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(726), 2, + ACTIONS(6106), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106522] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1480), 1, - sym__entry_separator, - STATE(3505), 1, - sym_comment, - ACTIONS(1478), 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, - [106542] = 8, + [108090] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1651), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1653), 1, anon_sym_LPAREN2, - STATE(958), 1, + STATE(1508), 1, sym__immediate_decimal, - STATE(3506), 1, + STATE(3560), 1, sym_comment, - ACTIONS(1635), 2, + ACTIONS(3472), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1637), 2, + ACTIONS(3474), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(1332), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106570] = 8, + [108118] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - STATE(3274), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + STATE(1982), 1, sym__immediate_decimal, - STATE(3507), 1, + STATE(3561), 1, sym_comment, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(5081), 2, + ACTIONS(3964), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(3271), 2, + ACTIONS(3966), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(790), 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, + [108146] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(3509), 1, - sym_comment, - STATE(4200), 1, + STATE(1476), 1, sym__immediate_decimal, - ACTIONS(6335), 2, + STATE(3562), 1, + sym_comment, + ACTIONS(3388), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6874), 2, + ACTIONS(3390), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4107), 2, + STATE(790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106646] = 8, + [108174] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3563), 1, + sym_comment, + ACTIONS(6955), 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, + [108192] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1651), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1653), 1, anon_sym_LPAREN2, - STATE(727), 1, + STATE(1333), 1, sym__immediate_decimal, - STATE(3510), 1, + STATE(3564), 1, sym_comment, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(1659), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(726), 2, + ACTIONS(1730), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1332), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106674] = 4, + [108220] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1516), 1, + ACTIONS(1529), 1, sym__entry_separator, - STATE(3511), 1, + STATE(3565), 1, sym_comment, - ACTIONS(1514), 8, + ACTIONS(1527), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -227718,927 +229280,843 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [106694] = 8, + [108240] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(3230), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(6943), 1, anon_sym_DOLLAR, - STATE(2614), 1, + STATE(3135), 1, sym__immediate_decimal, - STATE(3512), 1, + STATE(3566), 1, sym_comment, - ACTIONS(4844), 2, + ACTIONS(4995), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4846), 2, + ACTIONS(6957), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1306), 2, + STATE(3134), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106722] = 8, + [108268] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3830), 1, + ACTIONS(3897), 1, anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(5945), 1, anon_sym_LPAREN2, - STATE(3513), 1, + STATE(3567), 1, sym_comment, - STATE(3930), 1, + STATE(4838), 1, sym__immediate_decimal, - ACTIONS(6073), 2, + ACTIONS(6357), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6860), 2, + ACTIONS(6959), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4107), 2, + STATE(4189), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106750] = 6, + [108296] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + aux_sym__immediate_decimal_token5, + STATE(3568), 1, + sym_comment, + ACTIONS(1754), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1756), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [108318] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6876), 1, + ACTIONS(6961), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6878), 1, + ACTIONS(6963), 1, aux_sym__immediate_decimal_token5, - STATE(3514), 1, + STATE(3569), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(741), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [106774] = 8, + sym_filesize_unit, + sym_duration_unit, + [108342] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(2534), 1, - sym__immediate_decimal, - STATE(3515), 1, + STATE(3570), 1, sym_comment, - ACTIONS(4840), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4842), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(728), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106802] = 8, + ACTIONS(789), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(791), 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, + [108362] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(1653), 1, anon_sym_LPAREN2, - ACTIONS(6880), 1, + ACTIONS(4846), 1, anon_sym_DOLLAR, - STATE(2888), 1, + STATE(1331), 1, sym__immediate_decimal, - STATE(3516), 1, + STATE(3571), 1, sym_comment, - ACTIONS(4916), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6882), 2, + ACTIONS(1659), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3130), 2, + ACTIONS(1730), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1330), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106830] = 8, + [108390] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(3897), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(5945), 1, anon_sym_LPAREN2, - STATE(3517), 1, + STATE(3572), 1, sym_comment, - STATE(4229), 1, + STATE(4277), 1, sym__immediate_decimal, - ACTIONS(6442), 2, + ACTIONS(6329), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6884), 2, + ACTIONS(6965), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4107), 2, + STATE(4189), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106858] = 6, + [108418] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6886), 1, - anon_sym_DOT, - ACTIONS(6888), 1, - aux_sym__immediate_decimal_token5, - STATE(3518), 1, + ACTIONS(6929), 1, + anon_sym_DOT2, + STATE(2458), 1, + sym_path, + STATE(2881), 1, + sym_cell_path, + STATE(3573), 1, + sym_comment, + STATE(3643), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1892), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [108444] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3574), 1, + sym_comment, + ACTIONS(763), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(765), 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, + [108464] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3575), 1, + sym_comment, + ACTIONS(789), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(791), 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, + [108484] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3576), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 5, - anon_sym_LBRACE, + 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, - [106882] = 8, + [108504] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(1651), 1, anon_sym_DOLLAR, - STATE(2993), 1, + ACTIONS(1653), 1, + anon_sym_LPAREN2, + STATE(945), 1, sym__immediate_decimal, - STATE(3519), 1, + STATE(3577), 1, sym_comment, - ACTIONS(5013), 2, + ACTIONS(1657), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(5015), 2, + ACTIONS(1659), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3226), 2, + STATE(943), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106910] = 8, + [108532] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(2897), 1, anon_sym_DOLLAR, - STATE(3520), 1, + STATE(3578), 1, sym_comment, - STATE(4124), 1, + STATE(4022), 1, sym__immediate_decimal, - ACTIONS(6145), 2, + ACTIONS(5941), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6147), 2, + ACTIONS(5943), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106938] = 8, + [108560] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - STATE(3521), 1, - sym_comment, - STATE(4723), 1, + ACTIONS(1605), 1, + anon_sym_LPAREN2, + STATE(954), 1, sym__immediate_decimal, - ACTIONS(6478), 2, + STATE(3579), 1, + sym_comment, + ACTIONS(3964), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, + ACTIONS(3966), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106966] = 8, + [108588] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(2732), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(5945), 1, anon_sym_LPAREN2, - STATE(1502), 1, - sym__immediate_decimal, - STATE(3522), 1, + STATE(3580), 1, sym_comment, - ACTIONS(3450), 2, + STATE(3972), 1, + sym__immediate_decimal, + ACTIONS(6096), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3452), 2, + ACTIONS(6959), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1306), 2, + STATE(3815), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106994] = 8, + [108616] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(3897), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(5945), 1, anon_sym_LPAREN2, - STATE(2084), 1, - sym__immediate_decimal, - STATE(3523), 1, + STATE(3581), 1, sym_comment, - ACTIONS(3954), 2, + STATE(4771), 1, + sym__immediate_decimal, + ACTIONS(6357), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(6959), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(4120), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107022] = 8, + [108644] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(1487), 1, + STATE(932), 1, sym__immediate_decimal, - STATE(3524), 1, + STATE(3582), 1, sym_comment, - ACTIONS(3378), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3380), 2, + ACTIONS(1611), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + ACTIONS(1665), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(884), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107050] = 8, + [108672] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6967), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6969), 1, + aux_sym__immediate_decimal_token5, + STATE(3583), 1, + sym_comment, + ACTIONS(1748), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1746), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [108696] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(956), 1, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(789), 1, sym__immediate_decimal, - STATE(3525), 1, + STATE(3584), 1, sym_comment, - ACTIONS(1655), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1657), 2, + ACTIONS(1611), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(950), 2, + ACTIONS(1665), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(787), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107078] = 9, - ACTIONS(103), 1, + [108724] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4139), 1, + ACTIONS(6971), 1, + anon_sym_DOT, + ACTIONS(6973), 1, + aux_sym__immediate_decimal_token5, + STATE(3585), 1, + sym_comment, + ACTIONS(747), 2, anon_sym_DOT_DOT2, - ACTIONS(4969), 1, sym__unquoted_pattern, - ACTIONS(6494), 1, + ACTIONS(749), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(6496), 1, sym_duration_unit, - STATE(3526), 1, + [108748] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3586), 1, sym_comment, - ACTIONS(868), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(4141), 2, + ACTIONS(763), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(765), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [107108] = 8, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [108768] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(6880), 1, + ACTIONS(1651), 1, anon_sym_DOLLAR, - STATE(3103), 1, + ACTIONS(1653), 1, + anon_sym_LPAREN2, + STATE(993), 1, sym__immediate_decimal, - STATE(3527), 1, + STATE(3587), 1, sym_comment, - ACTIONS(4938), 2, + ACTIONS(1708), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6890), 2, + ACTIONS(1710), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3101), 2, + STATE(1332), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107136] = 4, + [108796] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1468), 1, - sym__entry_separator, - STATE(3528), 1, + ACTIONS(6975), 1, + aux_sym__immediate_decimal_token5, + STATE(3588), 1, sym_comment, - ACTIONS(1466), 8, - anon_sym_COLON, + ACTIONS(1812), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1814), 4, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [107156] = 8, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [108818] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(3529), 1, - sym_comment, - STATE(4676), 1, + STATE(789), 1, sym__immediate_decimal, - ACTIONS(6250), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, + STATE(3589), 1, + sym_comment, + ACTIONS(1611), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4107), 2, + ACTIONS(1665), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(787), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107184] = 8, + [108846] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(2897), 1, anon_sym_DOLLAR, - STATE(1300), 1, + STATE(789), 1, sym__immediate_decimal, - STATE(3530), 1, + STATE(3590), 1, sym_comment, - ACTIONS(1657), 2, + ACTIONS(5741), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(6130), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1298), 2, + STATE(787), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107212] = 8, + [108874] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(3531), 1, - sym_comment, - STATE(4106), 1, + STATE(954), 1, sym__immediate_decimal, - ACTIONS(6250), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, + STATE(3591), 1, + sym_comment, + ACTIONS(1611), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4105), 2, + ACTIONS(1665), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107240] = 3, - ACTIONS(3), 1, + [108902] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3532), 1, + ACTIONS(6683), 1, + aux_sym__immediate_decimal_token5, + STATE(3592), 1, sym_comment, - ACTIONS(6894), 9, - anon_sym_EQ, + ACTIONS(1754), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1756), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [108924] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6977), 1, + aux_sym__immediate_decimal_token5, + STATE(3593), 1, + sym_comment, + ACTIONS(1812), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1814), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [108946] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1521), 1, + sym__entry_separator, + STATE(3594), 1, + sym_comment, + ACTIONS(1519), 8, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, anon_sym_RBRACE, - [107258] = 8, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [108966] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1651), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1653), 1, anon_sym_LPAREN2, - STATE(904), 1, + STATE(1317), 1, sym__immediate_decimal, - STATE(3533), 1, + STATE(3595), 1, sym_comment, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(1659), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + ACTIONS(1730), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1316), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107286] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6896), 1, - aux_sym__immediate_decimal_token5, - STATE(3534), 1, - sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [107308] = 8, + [108994] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(904), 1, + ACTIONS(2897), 1, + anon_sym_DOLLAR, + STATE(789), 1, sym__immediate_decimal, - STATE(3535), 1, + STATE(3596), 1, sym_comment, - ACTIONS(1594), 2, + ACTIONS(6500), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(6719), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(728), 2, + STATE(787), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107336] = 5, + [109022] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6808), 1, + ACTIONS(6809), 1, aux_sym__immediate_decimal_token5, - STATE(3536), 1, + STATE(3597), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1756), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 6, + ACTIONS(1754), 6, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [107358] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(709), 1, - sym__immediate_decimal, - STATE(3537), 1, - sym_comment, - 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(704), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107386] = 4, - ACTIONS(3), 1, + [109044] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3538), 1, + ACTIONS(6979), 1, + aux_sym__immediate_decimal_token5, + STATE(3598), 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(1812), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107406] = 8, + sym__entry_separator, + ACTIONS(1814), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [109066] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2656), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(3539), 1, - sym_comment, - STATE(3911), 1, - sym__immediate_decimal, - ACTIONS(6047), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3780), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107434] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(2897), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - STATE(3540), 1, + STATE(3599), 1, sym_comment, - STATE(4750), 1, + STATE(4708), 1, sym__immediate_decimal, - ACTIONS(6250), 2, + ACTIONS(6528), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, + ACTIONS(6530), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4234), 2, + STATE(790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107462] = 4, + [109094] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3541), 1, + STATE(3600), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, + ACTIONS(6981), 9, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107482] = 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + [109112] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3542), 1, + ACTIONS(6983), 1, + anon_sym_DOT, + ACTIONS(6985), 1, + aux_sym__immediate_decimal_token5, + STATE(3601), 1, sym_comment, - ACTIONS(747), 3, + ACTIONS(1756), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(749), 6, + ACTIONS(1754), 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, + [109136] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(727), 1, - sym__immediate_decimal, - STATE(3543), 1, + STATE(3602), 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(726), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107530] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4139), 1, + ACTIONS(763), 2, anon_sym_DOT_DOT2, - ACTIONS(6898), 1, - sym_filesize_unit, - ACTIONS(6900), 1, - sym_duration_unit, - ACTIONS(6902), 1, sym__unquoted_pattern, - STATE(3544), 1, - sym_comment, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 3, + ACTIONS(765), 7, 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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [109156] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3546), 1, + ACTIONS(6929), 1, + anon_sym_DOT2, + STATE(2257), 1, + sym_cell_path, + STATE(2458), 1, + sym_path, + STATE(3603), 1, sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(851), 7, + STATE(3643), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1452), 5, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_GT2, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107606] = 8, + [109182] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(955), 1, - sym__immediate_decimal, - STATE(3547), 1, - sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(6987), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(888), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107634] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6776), 1, + ACTIONS(6989), 1, aux_sym__immediate_decimal_token5, - STATE(3548), 1, - sym_comment, - ACTIONS(1736), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [107656] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3549), 1, + STATE(3604), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(1748), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 7, + ACTIONS(1746), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107676] = 8, + [109206] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(1083), 1, + STATE(1918), 1, sym__immediate_decimal, - STATE(3550), 1, + STATE(3605), 1, sym_comment, - ACTIONS(1683), 2, + ACTIONS(3938), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1685), 2, + ACTIONS(3940), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1306), 2, + STATE(790), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107704] = 8, + [109234] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(1300), 1, + STATE(1961), 1, sym__immediate_decimal, - STATE(3551), 1, + STATE(3606), 1, sym_comment, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(3950), 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(3952), 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(1917), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107760] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6664), 1, - aux_sym__immediate_decimal_token5, - STATE(3553), 1, - sym_comment, - ACTIONS(1736), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1738), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [107782] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6904), 1, - anon_sym_DOT, - ACTIONS(6906), 1, - aux_sym__immediate_decimal_token5, - STATE(3554), 1, - sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [107806] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6468), 1, - anon_sym_DOT_DOT2, - ACTIONS(6472), 1, - sym_filesize_unit, - ACTIONS(6474), 1, - sym_duration_unit, - STATE(3555), 1, - 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, + [109262] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(3279), 1, anon_sym_LPAREN2, - STATE(1956), 1, + ACTIONS(6923), 1, + anon_sym_DOLLAR, + STATE(2982), 1, sym__immediate_decimal, - STATE(3556), 1, + STATE(3607), 1, sym_comment, - ACTIONS(3940), 2, + ACTIONS(6345), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, + ACTIONS(6991), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1960), 2, + STATE(2981), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107864] = 8, + [109290] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1605), 1, anon_sym_LPAREN2, - STATE(955), 1, + STATE(932), 1, sym__immediate_decimal, - STATE(3557), 1, + STATE(3608), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(3964), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3966), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(884), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107892] = 8, - ACTIONS(3), 1, + [109318] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - STATE(1266), 1, - sym__immediate_decimal, - STATE(3558), 1, + ACTIONS(1498), 1, + sym__entry_separator, + STATE(3609), 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(1264), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107920] = 6, + ACTIONS(1496), 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, + [109338] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6908), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6910), 1, - aux_sym__immediate_decimal_token5, - STATE(3559), 1, + ACTIONS(1502), 1, + sym__entry_separator, + STATE(3610), 1, sym_comment, - ACTIONS(1728), 3, + ACTIONS(1500), 8, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [107944] = 4, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [109358] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1472), 1, + ACTIONS(1506), 1, sym__entry_separator, - STATE(3560), 1, + STATE(3611), 1, sym_comment, - ACTIONS(1470), 8, + ACTIONS(1504), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -228647,18012 +230125,17993 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [107964] = 4, + [109378] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3561), 1, + ACTIONS(6993), 1, + aux_sym__immediate_decimal_token5, + STATE(3612), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(1814), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 7, + ACTIONS(1812), 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, - [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, - 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, - [108032] = 6, + [109400] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6914), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6916), 1, + ACTIONS(6995), 1, + anon_sym_DOT, + ACTIONS(6997), 1, aux_sym__immediate_decimal_token5, - STATE(3564), 1, + STATE(3613), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(1756), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 5, - anon_sym_LBRACE, + ACTIONS(1754), 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, - [108056] = 5, + [109424] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6606), 1, - aux_sym__immediate_decimal_token5, - STATE(3565), 1, + STATE(3614), 1, sym_comment, - ACTIONS(1736), 4, + ACTIONS(789), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(791), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1738), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108078] = 8, + [109444] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(3897), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(5945), 1, anon_sym_LPAREN2, - STATE(1924), 1, - sym__immediate_decimal, - STATE(3566), 1, + STATE(3615), 1, sym_comment, - ACTIONS(3900), 2, + STATE(4188), 1, + sym__immediate_decimal, + ACTIONS(6357), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3902), 2, + ACTIONS(6959), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(4187), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108106] = 8, + [109472] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, - anon_sym_DOLLAR, - STATE(2997), 1, - sym__immediate_decimal, - STATE(3567), 1, + STATE(3616), 1, sym_comment, - ACTIONS(6254), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6918), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2996), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [108134] = 4, + ACTIONS(1748), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1746), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [109491] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1545), 1, + ACTIONS(2021), 1, sym__entry_separator, - STATE(3568), 1, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6999), 1, + anon_sym_DOT_DOT2, + STATE(3617), 1, sym_comment, - ACTIONS(1543), 8, - anon_sym_COLON, + ACTIONS(2023), 2, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, + ACTIONS(7001), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [109518] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7003), 1, + anon_sym_DOT, + ACTIONS(7005), 1, + aux_sym__immediate_decimal_token5, + STATE(3618), 1, + sym_comment, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(749), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [109541] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7009), 1, + anon_sym_DOT2, + STATE(2529), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2725), 1, + sym_path, + STATE(2997), 1, + sym_cell_path, + STATE(3619), 1, + sym_comment, + ACTIONS(7007), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [109566] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1894), 1, + sym__table_head_separator, + ACTIONS(7014), 1, + anon_sym_DOT_DOT, + ACTIONS(7016), 1, anon_sym_DOT2, - [108154] = 5, + STATE(3620), 1, + sym_comment, + STATE(3803), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4250), 1, + sym_path, + STATE(4659), 1, + sym_cell_path, + ACTIONS(7011), 2, + anon_sym_RBRACK, + sym__entry_separator, + [109595] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6920), 1, - aux_sym__immediate_decimal_token5, - STATE(3569), 1, + STATE(3621), 1, sym_comment, - ACTIONS(1802), 4, + ACTIONS(1812), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1804), 4, + ACTIONS(1814), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [108176] = 3, + [109614] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3570), 1, + ACTIONS(7020), 1, + anon_sym_DOT2, + STATE(2443), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2549), 1, + sym_path, + STATE(2969), 1, + sym_cell_path, + STATE(3622), 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(7018), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [109639] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6924), 1, - anon_sym_DOT, - ACTIONS(6926), 1, - aux_sym__immediate_decimal_token5, - STATE(3571), 1, - sym_comment, - ACTIONS(1738), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 4, + ACTIONS(1615), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2011), 1, + sym__entry_separator, + ACTIONS(2015), 1, anon_sym_LPAREN2, + ACTIONS(7022), 1, + anon_sym_DOT_DOT2, + STATE(3623), 1, + sym_comment, + ACTIONS(2013), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7024), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [108218] = 7, + [109666] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(1860), 1, anon_sym_DOT2, - STATE(2258), 1, - sym_cell_path, - STATE(2511), 1, + STATE(429), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(454), 1, sym_path, - STATE(3572), 1, + STATE(917), 1, + sym_cell_path, + STATE(3624), 1, sym_comment, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [108244] = 7, + ACTIONS(7026), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [109691] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6930), 1, + ACTIONS(1860), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(429), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, + STATE(454), 1, sym_path, - STATE(3133), 1, + STATE(917), 1, sym_cell_path, - STATE(3573), 1, + STATE(3625), 1, sym_comment, - ACTIONS(6928), 4, + ACTIONS(7028), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108269] = 7, + [109716] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3626), 1, + sym_comment, + ACTIONS(1812), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1814), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [109735] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, + ACTIONS(1860), 1, anon_sym_DOT2, - STATE(518), 1, + STATE(429), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, + STATE(454), 1, sym_path, - STATE(1333), 1, + STATE(917), 1, sym_cell_path, - STATE(3574), 1, + STATE(3627), 1, sym_comment, - ACTIONS(6932), 4, + ACTIONS(7030), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108294] = 5, + [109760] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6934), 1, - aux_sym__immediate_decimal_token5, - STATE(3575), 1, + ACTIONS(4950), 1, + anon_sym_DOT2, + STATE(454), 1, + sym_path, + STATE(2277), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3628), 1, sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 5, + STATE(4331), 1, + sym_cell_path, + ACTIONS(7032), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108315] = 7, + [109785] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(7036), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(349), 1, sym_path, - STATE(3035), 1, - sym_cell_path, - STATE(3576), 1, + STATE(3629), 1, sym_comment, - STATE(3592), 1, + STATE(3814), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(6936), 4, + STATE(4561), 1, + sym_cell_path, + ACTIONS(7034), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108340] = 6, + [109810] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3630), 1, + sym_comment, + ACTIONS(1746), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1748), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [109829] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, + ACTIONS(2031), 1, sym__unquoted_pattern, - ACTIONS(6938), 1, + ACTIONS(7038), 1, anon_sym_DOT_DOT2, - STATE(3577), 1, + STATE(3631), 1, sym_comment, - ACTIONS(6940), 2, + ACTIONS(7040), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 4, + ACTIONS(2021), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [108363] = 4, + [109852] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3578), 1, + STATE(3632), 1, sym_comment, - ACTIONS(1802), 4, + ACTIONS(1812), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1804), 4, + ACTIONS(1814), 4, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [108382] = 4, - ACTIONS(3), 1, + [109871] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3579), 1, + STATE(3633), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(1900), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1902), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [109890] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1615), 1, sym__unquoted_pattern, - ACTIONS(1726), 6, + ACTIONS(7042), 1, + anon_sym_DOT_DOT2, + STATE(3634), 1, + sym_comment, + ACTIONS(7044), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2011), 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, + [109913] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(5148), 1, anon_sym_DOT2, - STATE(423), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, + STATE(791), 1, sym_path, - STATE(951), 1, + STATE(1344), 1, sym_cell_path, - STATE(3580), 1, + STATE(2411), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3635), 1, sym_comment, - ACTIONS(6942), 4, + ACTIONS(7046), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108426] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1884), 1, - sym__table_head_separator, - ACTIONS(6947), 1, - anon_sym_DOT_DOT, - ACTIONS(6949), 1, - anon_sym_DOT2, - STATE(3581), 1, - sym_comment, - STATE(3755), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4108), 1, - sym_path, - STATE(4368), 1, - sym_cell_path, - ACTIONS(6944), 2, - anon_sym_RBRACK, - sym__entry_separator, - [108455] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6953), 1, - anon_sym_DASH2, - STATE(3582), 1, - sym_comment, - ACTIONS(6951), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [108474] = 4, + [109938] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3583), 1, + ACTIONS(6985), 1, + aux_sym__immediate_decimal_token5, + STATE(3636), 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, + ACTIONS(1756), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108493] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3584), 1, - sym_comment, - ACTIONS(1870), 4, + sym__unquoted_pattern_in_record, + ACTIONS(1754), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1872), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108512] = 4, + [109959] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3585), 1, + STATE(3637), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(1902), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 6, + ACTIONS(1900), 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, + [109978] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3638), 1, + sym_comment, + ACTIONS(1900), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1902), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [109997] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6957), 1, + ACTIONS(7050), 1, anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3586), 1, - sym_comment, - STATE(3778), 1, + STATE(1936), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4556), 1, + STATE(2126), 1, + sym_path, + STATE(2198), 1, sym_cell_path, - ACTIONS(6955), 4, + STATE(3639), 1, + sym_comment, + ACTIONS(7048), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108556] = 7, + [110022] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2738), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2740), 1, + anon_sym_COLON2, + ACTIONS(7052), 1, + anon_sym_alias, + ACTIONS(7054), 1, + anon_sym_const, + ACTIONS(7056), 1, + anon_sym_def, + ACTIONS(7058), 1, + anon_sym_use, + ACTIONS(7060), 1, + anon_sym_extern, + ACTIONS(7062), 1, + anon_sym_module, + STATE(3640), 1, + sym_comment, + [110053] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6961), 1, + ACTIONS(2391), 1, anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, + STATE(532), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3035), 1, + STATE(791), 1, + sym_path, + STATE(1344), 1, sym_cell_path, - STATE(3587), 1, + STATE(3641), 1, sym_comment, - ACTIONS(6959), 4, + ACTIONS(7064), 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, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6926), 1, - aux_sym__immediate_decimal_token5, - STATE(3590), 1, - sym_comment, - ACTIONS(1738), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [108642] = 7, + [110078] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, + ACTIONS(4950), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(454), 1, sym_path, - STATE(2290), 1, + STATE(917), 1, + sym_cell_path, + STATE(2277), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3591), 1, + STATE(3642), 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(7066), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [110103] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(6929), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2458), 1, sym_path, - STATE(3592), 1, + STATE(3643), 1, sym_comment, - STATE(3593), 1, + STATE(3644), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 5, + ACTIONS(1517), 5, anon_sym_EQ, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_GT2, anon_sym_DASH_DASH, - [108690] = 5, + [110126] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6965), 1, + ACTIONS(7068), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2458), 1, sym_path, - STATE(3593), 2, + STATE(3644), 2, sym_comment, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 5, + ACTIONS(1510), 5, anon_sym_EQ, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_GT2, anon_sym_DASH_DASH, - [108711] = 7, + [110147] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(4950), 1, anon_sym_DOT2, - STATE(423), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, + STATE(454), 1, sym_path, - STATE(951), 1, - sym_cell_path, - STATE(3594), 1, - sym_comment, - ACTIONS(6968), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108736] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6906), 1, - aux_sym__immediate_decimal_token5, - STATE(3595), 1, + STATE(2277), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3645), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 5, + STATE(4108), 1, + sym_cell_path, + ACTIONS(7071), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108757] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3596), 1, - sym_comment, - ACTIONS(1870), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [108776] = 4, + [110172] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3597), 1, + STATE(3646), 1, sym_comment, - ACTIONS(1726), 4, - sym__space, + ACTIONS(1746), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 4, - sym__newline, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(1748), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [108795] = 8, + sym__unquoted_pattern_in_list, + [110191] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(2021), 1, sym__space, - ACTIONS(1978), 1, + ACTIONS(2025), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2031), 1, sym__unquoted_pattern, - ACTIONS(6970), 1, + ACTIONS(7073), 1, anon_sym_DOT_DOT2, - STATE(3598), 1, + STATE(3647), 1, sym_comment, - ACTIONS(1976), 2, + ACTIONS(2023), 2, sym__newline, anon_sym_SEMI, - ACTIONS(6972), 2, + ACTIONS(7075), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108822] = 10, + [110218] = 8, 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, + ACTIONS(1452), 1, + sym__entry_separator, + ACTIONS(7077), 1, + anon_sym_DOT2, + STATE(3648), 1, sym_comment, - [108853] = 6, - ACTIONS(3), 1, + STATE(3756), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3934), 1, + sym_path, + STATE(4164), 1, + sym_cell_path, + ACTIONS(1450), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + [110245] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(6986), 1, - anon_sym_DOT_DOT2, - STATE(3600), 1, + ACTIONS(1444), 1, + sym__entry_separator, + ACTIONS(7079), 1, + anon_sym_QMARK2, + ACTIONS(7081), 1, + anon_sym_BANG, + STATE(3649), 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, + STATE(3937), 1, + sym__path_suffix, + ACTIONS(1442), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [110270] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6990), 1, + ACTIONS(7083), 1, aux_sym__immediate_decimal_token5, - STATE(3601), 1, + STATE(3650), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(763), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 5, + ACTIONS(765), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [108897] = 7, - ACTIONS(3), 1, + [110291] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6994), 1, + ACTIONS(1894), 1, + sym__table_head_separator, + ACTIONS(7085), 1, anon_sym_DOT2, - STATE(1947), 1, + STATE(3651), 1, + sym_comment, + STATE(4178), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, + STATE(4732), 1, sym_path, - STATE(2183), 1, + STATE(5151), 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, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, + ACTIONS(7014), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, sym__entry_separator, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(6996), 1, - anon_sym_DOT_DOT2, - STATE(3603), 1, + [110318] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7089), 1, + anon_sym_DASH2, + STATE(3652), 1, sym_comment, - ACTIONS(1966), 2, + ACTIONS(7087), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6998), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108949] = 5, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [110337] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7000), 1, + ACTIONS(7091), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7093), 1, aux_sym__immediate_decimal_token5, - STATE(3604), 1, + STATE(3653), 1, sym_comment, - ACTIONS(1804), 3, - anon_sym_RBRACE, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1802), 4, - anon_sym_LPAREN2, + ACTIONS(741), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [108970] = 7, + sym_filesize_unit, + sym_duration_unit, + [110360] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, + ACTIONS(6929), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(2458), 1, sym_path, - STATE(951), 1, + STATE(2997), 1, sym_cell_path, - STATE(2290), 1, + STATE(3643), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3605), 1, + STATE(3654), 1, sym_comment, - ACTIONS(7002), 4, + ACTIONS(7095), 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, + [110385] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(7099), 1, anon_sym_DOT2, - STATE(423), 1, + STATE(2473), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, + STATE(2611), 1, sym_path, - STATE(951), 1, + STATE(3214), 1, sym_cell_path, - STATE(3607), 1, + STATE(3655), 1, sym_comment, - ACTIONS(7008), 4, + ACTIONS(7097), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [109047] = 8, + [110410] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3656), 1, + sym_comment, + ACTIONS(1900), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1902), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [110429] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1615), 1, sym__unquoted_pattern, - ACTIONS(1964), 1, + ACTIONS(2011), 1, sym__space, - ACTIONS(1968), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(7010), 1, + ACTIONS(7101), 1, anon_sym_DOT_DOT2, - STATE(3608), 1, + STATE(3657), 1, sym_comment, - ACTIONS(1966), 2, + ACTIONS(2013), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7012), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109074] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7014), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7016), 1, - aux_sym__immediate_decimal_token5, - STATE(3609), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(749), 4, + ACTIONS(7103), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109097] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1448), 1, - sym__entry_separator, - ACTIONS(7018), 1, - anon_sym_QMARK2, - ACTIONS(7020), 1, - anon_sym_BANG, - STATE(3610), 1, - sym_comment, - STATE(3947), 1, - sym__path_suffix, - ACTIONS(1446), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [109122] = 6, + [110456] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7022), 1, - anon_sym_DOT, - ACTIONS(7024), 1, - aux_sym__immediate_decimal_token5, - STATE(3611), 1, + STATE(3658), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(1814), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 4, + sym__unquoted_pattern, + ACTIONS(1812), 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, - [109145] = 7, + [110475] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7028), 1, + ACTIONS(2391), 1, anon_sym_DOT2, - STATE(2430), 1, + STATE(532), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, + STATE(791), 1, sym_path, - STATE(3030), 1, + STATE(1344), 1, sym_cell_path, - STATE(3612), 1, + STATE(3659), 1, sym_comment, - ACTIONS(7026), 4, + ACTIONS(7105), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [109170] = 7, + [110500] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3613), 1, + ACTIONS(7107), 1, + aux_sym__immediate_decimal_token5, + STATE(3660), 1, sym_comment, - STATE(4297), 1, - sym_cell_path, - ACTIONS(7030), 4, - anon_sym_if, + ACTIONS(1814), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1812), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109195] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [110521] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3614), 1, + STATE(3661), 1, sym_comment, - ACTIONS(1802), 4, + ACTIONS(1746), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 4, + ACTIONS(1748), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [109214] = 7, - 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, + [110540] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3616), 1, + ACTIONS(7109), 1, + aux_sym__immediate_decimal_token5, + STATE(3662), 1, sym_comment, - ACTIONS(1726), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1728), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(1814), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [109258] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3617), 1, - sym_comment, - ACTIONS(1802), 4, + sym__unquoted_pattern_in_record, + ACTIONS(1812), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1804), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [109277] = 4, - ACTIONS(103), 1, + [110561] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3618), 1, + ACTIONS(6973), 1, + aux_sym__immediate_decimal_token5, + STATE(3663), 1, sym_comment, - ACTIONS(1870), 4, - anon_sym_LPAREN2, + 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__entry_separator, - ACTIONS(1872), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [109296] = 7, + sym_filesize_unit, + sym_duration_unit, + [110582] = 5, 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(3619), 1, + ACTIONS(6997), 1, + aux_sym__immediate_decimal_token5, + STATE(3664), 1, sym_comment, - ACTIONS(7034), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [109321] = 8, + ACTIONS(1756), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1754), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [110603] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1884), 1, - sym__table_head_separator, - ACTIONS(7036), 1, - anon_sym_DOT2, - STATE(3620), 1, - sym_comment, - STATE(4059), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4641), 1, - sym_path, - STATE(4963), 1, - sym_cell_path, - ACTIONS(6947), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(858), 1, + anon_sym_RBRACE, + ACTIONS(884), 1, sym__entry_separator, - [109348] = 8, + ACTIONS(7111), 1, + anon_sym_DOT_DOT2, + ACTIONS(7115), 1, + sym_filesize_unit, + ACTIONS(7117), 1, + sym_duration_unit, + STATE(3665), 1, + sym_comment, + ACTIONS(7113), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [110629] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1434), 1, - sym__entry_separator, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3621), 1, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7052), 1, + anon_sym_alias, + ACTIONS(7054), 1, + anon_sym_const, + ACTIONS(7056), 1, + anon_sym_def, + ACTIONS(7058), 1, + anon_sym_use, + ACTIONS(7060), 1, + anon_sym_extern, + ACTIONS(7062), 1, + anon_sym_module, + STATE(3666), 1, sym_comment, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3884), 1, - sym_path, - STATE(4318), 1, - sym_cell_path, - ACTIONS(1432), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [109375] = 6, + [110657] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7040), 1, - anon_sym_DOT, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token5, - STATE(3622), 1, - sym_comment, - ACTIONS(1738), 2, + ACTIONS(7119), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 3, - anon_sym_LBRACE, + STATE(3667), 1, + sym_comment, + ACTIONS(7121), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109397] = 9, + ACTIONS(2152), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [110677] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, + ACTIONS(2738), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, + ACTIONS(2740), 1, anon_sym_COLON2, - ACTIONS(7044), 1, + ACTIONS(7123), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7125), 1, anon_sym_DOLLAR, - STATE(3623), 1, + STATE(2828), 1, + sym_val_variable, + STATE(3668), 1, sym_comment, - STATE(3897), 1, + STATE(3965), 1, sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4250), 1, + STATE(4293), 1, sym__assignment_pattern, - [109425] = 6, + [110705] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1756), 1, + sym__unquoted_pattern, + ACTIONS(7127), 1, + anon_sym_DOT, + ACTIONS(7129), 1, + aux_sym__immediate_decimal_token5, + STATE(3669), 1, + sym_comment, + ACTIONS(1754), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [110727] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1526), 1, + ACTIONS(5247), 1, sym__entry_separator, - ACTIONS(7048), 1, + ACTIONS(7131), 1, anon_sym_DOT2, - STATE(3884), 1, + STATE(349), 1, sym_path, - STATE(3624), 2, + STATE(3670), 1, sym_comment, + STATE(3814), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, + STATE(4601), 1, + sym_cell_path, + ACTIONS(5245), 2, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [109447] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [110753] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7051), 1, + ACTIONS(2021), 1, + sym__entry_separator, + ACTIONS(2023), 1, + anon_sym_RBRACE, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7133), 1, anon_sym_DOT_DOT2, - STATE(3625), 1, + STATE(3671), 1, sym_comment, - ACTIONS(7053), 2, + ACTIONS(7135), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [109467] = 4, + [110779] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(3626), 1, + ACTIONS(7016), 1, + anon_sym_DOT2, + STATE(3672), 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(3803), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4250), 1, + sym_path, + STATE(4659), 1, + sym_cell_path, + ACTIONS(1894), 3, + anon_sym_RBRACK, sym__entry_separator, - [109485] = 9, + sym__table_head_separator, + [110803] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(3895), 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, + ACTIONS(3942), 1, + sym__newline, + ACTIONS(7137), 1, + anon_sym_RBRACK, + STATE(3673), 1, sym_comment, - STATE(3724), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109513] = 9, + STATE(4023), 1, + aux_sym__types_body_repeat1, + STATE(4506), 1, + sym_val_list, + STATE(4520), 1, + aux_sym__table_body_repeat1, + STATE(5054), 1, + sym__table_body, + [110831] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7139), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7141), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7143), 1, anon_sym_DASH_DASH, - STATE(1542), 1, + STATE(1657), 1, sym_parameter_parens, - STATE(1543), 1, + STATE(1658), 1, sym_parameter_bracks, - STATE(3628), 1, + STATE(3674), 1, sym_comment, - STATE(3651), 1, + STATE(4049), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4479), 1, sym_long_flag, - [109541] = 9, - ACTIONS(3), 1, + [110859] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1544), 1, - sym_parameter_parens, - STATE(1545), 1, - sym_parameter_bracks, - STATE(3629), 1, + STATE(3675), 1, sym_comment, - STATE(3659), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109569] = 6, + ACTIONS(1748), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1746), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [110877] = 8, 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, - sym_comment, - ACTIONS(1726), 2, - sym__space, + ACTIONS(2021), 1, + sym__entry_separator, + ACTIONS(2023), 1, + anon_sym_RBRACK, + ACTIONS(2025), 1, anon_sym_LPAREN2, - ACTIONS(1728), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [109591] = 6, + ACTIONS(2031), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7145), 1, + anon_sym_DOT_DOT2, + STATE(3676), 1, + sym_comment, + ACTIONS(7147), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [110903] = 9, 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, + ACTIONS(3895), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [109613] = 8, + ACTIONS(7149), 1, + anon_sym_RBRACK, + STATE(3677), 1, + sym_comment, + STATE(4023), 1, + aux_sym__types_body_repeat1, + STATE(4506), 1, + sym_val_list, + STATE(4520), 1, + aux_sym__table_body_repeat1, + STATE(5251), 1, + sym__table_body, + [110931] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1856), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7131), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(349), 1, sym_path, - STATE(3632), 1, + STATE(3678), 1, sym_comment, - STATE(3778), 1, + STATE(3814), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4102), 1, + STATE(4186), 1, sym_cell_path, - ACTIONS(1868), 2, + ACTIONS(1858), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [109639] = 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(1523), 1, - sym_parameter_parens, - STATE(1524), 1, - sym_parameter_bracks, - STATE(3633), 1, - sym_comment, - STATE(3713), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109667] = 5, + [110957] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7071), 1, + ACTIONS(7151), 1, anon_sym_DOT_DOT2, - STATE(3634), 1, + STATE(3679), 1, sym_comment, - ACTIONS(7073), 2, + ACTIONS(7153), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 4, + ACTIONS(2108), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109687] = 5, + [110977] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7075), 1, + ACTIONS(7155), 1, anon_sym_DOT_DOT2, - STATE(3635), 1, + STATE(3680), 1, sym_comment, - ACTIONS(7077), 2, + ACTIONS(7157), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 4, + ACTIONS(2116), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109707] = 5, + [110997] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7079), 1, + ACTIONS(7159), 1, anon_sym_DOT_DOT2, - STATE(3636), 1, + STATE(3681), 1, sym_comment, - ACTIONS(7081), 2, + ACTIONS(7161), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 4, + ACTIONS(2124), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109727] = 6, + [111017] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7083), 1, + ACTIONS(1872), 1, + sym__entry_separator, + ACTIONS(7131), 1, + anon_sym_DOT2, + STATE(349), 1, + sym_path, + STATE(3682), 1, + sym_comment, + STATE(3814), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4194), 1, + sym_cell_path, + ACTIONS(1874), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [111043] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7163), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7085), 1, + ACTIONS(7165), 1, aux_sym__immediate_decimal_token5, - STATE(3637), 1, + STATE(3683), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(1746), 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(1748), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [111065] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(3638), 1, + ACTIONS(7016), 1, + anon_sym_DOT2, + STATE(3684), 1, sym_comment, - ACTIONS(1874), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1876), 4, + STATE(3803), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4250), 1, + sym_path, + STATE(4422), 1, + sym_cell_path, + ACTIONS(1890), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [109767] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1974), 1, sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACE, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7087), 1, - anon_sym_DOT_DOT2, - STATE(3639), 1, + sym__table_head_separator, + [111089] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7139), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_LPAREN, + ACTIONS(7143), 1, + anon_sym_DASH_DASH, + STATE(1669), 1, + sym_parameter_parens, + STATE(1678), 1, + sym_parameter_bracks, + STATE(3685), 1, sym_comment, - ACTIONS(7089), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109793] = 7, - ACTIONS(103), 1, + STATE(3708), 1, + aux_sym_decl_def_repeat1, + STATE(4479), 1, + sym_long_flag, + [111117] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1460), 1, - sym__entry_separator, - ACTIONS(7038), 1, + ACTIONS(7167), 1, anon_sym_DOT2, - STATE(3624), 1, + STATE(2257), 1, + sym_cell_path, + STATE(2458), 1, + sym_path, + STATE(3686), 1, + sym_comment, + STATE(3927), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3640), 1, + ACTIONS(1452), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [111141] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3687), 1, sym_comment, - STATE(3884), 1, - sym_path, - ACTIONS(1458), 3, + ACTIONS(1850), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1852), 4, anon_sym_RBRACK, - anon_sym_GT2, + anon_sym_RBRACE, anon_sym_DOT_DOT, - [109817] = 9, + anon_sym_DOT_DOT2, + [111159] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7139), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7141), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7143), 1, anon_sym_DASH_DASH, - STATE(1531), 1, + STATE(1628), 1, sym_parameter_parens, - STATE(1532), 1, + STATE(1629), 1, sym_parameter_bracks, - STATE(3641), 1, + STATE(3688), 1, sym_comment, - STATE(4039), 1, + STATE(3702), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4479), 1, sym_long_flag, - [109845] = 9, + [111187] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7139), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7141), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7143), 1, anon_sym_DASH_DASH, - STATE(1546), 1, + STATE(1664), 1, sym_parameter_parens, - STATE(1547), 1, + STATE(1665), 1, sym_parameter_bracks, - STATE(3642), 1, + STATE(3689), 1, sym_comment, - STATE(4039), 1, + STATE(4049), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4479), 1, sym_long_flag, - [109873] = 7, + [111215] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(7091), 1, - anon_sym_DOT, - STATE(3643), 1, + ACTIONS(7139), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_LPAREN, + ACTIONS(7143), 1, + anon_sym_DASH_DASH, + STATE(1666), 1, + sym_parameter_parens, + STATE(1667), 1, + sym_parameter_bracks, + STATE(3674), 1, + aux_sym_decl_def_repeat1, + STATE(3690), 1, sym_comment, - STATE(4179), 1, - sym__immediate_decimal, - ACTIONS(6430), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [109897] = 5, - ACTIONS(3), 1, + STATE(4479), 1, + sym_long_flag, + [111243] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7093), 1, + ACTIONS(7169), 1, + anon_sym_DOT, + ACTIONS(7171), 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(3691), 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, - [109935] = 9, + ACTIONS(1754), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1756), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [111265] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(7139), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7095), 1, - anon_sym_RBRACK, - STATE(3646), 1, + ACTIONS(7141), 1, + anon_sym_LPAREN, + ACTIONS(7143), 1, + anon_sym_DASH_DASH, + STATE(1561), 1, + sym_parameter_parens, + STATE(1563), 1, + sym_parameter_bracks, + STATE(3692), 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, + STATE(4049), 1, + aux_sym_decl_def_repeat1, + STATE(4479), 1, + sym_long_flag, + [111293] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1434), 1, + ACTIONS(1862), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7131), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(349), 1, sym_path, - STATE(368), 1, - sym_cell_path, - STATE(3647), 1, + STATE(3693), 1, sym_comment, - STATE(3778), 1, + STATE(3814), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1432), 2, + STATE(4148), 1, + sym_cell_path, + ACTIONS(1865), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [109989] = 9, + [111319] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(3895), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1548), 1, - sym_parameter_parens, - STATE(1549), 1, - sym_parameter_bracks, - STATE(3648), 1, + ACTIONS(3942), 1, + sym__newline, + ACTIONS(7173), 1, + anon_sym_RBRACK, + STATE(3694), 1, sym_comment, - STATE(3674), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [110017] = 4, - ACTIONS(103), 1, + STATE(4023), 1, + aux_sym__types_body_repeat1, + STATE(4506), 1, + sym_val_list, + STATE(4520), 1, + aux_sym__table_body_repeat1, + STATE(4839), 1, + sym__table_body, + [111347] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3649), 1, + ACTIONS(7175), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7177), 1, + aux_sym__immediate_decimal_token5, + STATE(3695), 1, sym_comment, - ACTIONS(1872), 3, - anon_sym_RBRACE, + ACTIONS(1748), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1870), 4, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(1746), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [110035] = 9, + [111369] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3895), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(3942), 1, sym__newline, - ACTIONS(7097), 1, + ACTIONS(7179), 1, anon_sym_RBRACK, - STATE(3650), 1, + STATE(3696), 1, sym_comment, - STATE(4021), 1, + STATE(4023), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4506), 1, sym_val_list, - STATE(4577), 1, + STATE(4520), 1, aux_sym__table_body_repeat1, - STATE(4949), 1, + STATE(4859), 1, sym__table_body, - [110063] = 9, - ACTIONS(3), 1, + [111397] = 9, + 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(1551), 1, - sym_parameter_parens, - STATE(1552), 1, - sym_parameter_bracks, - STATE(3651), 1, + ACTIONS(7077), 1, + anon_sym_DOT2, + ACTIONS(7181), 1, + anon_sym_RBRACK, + ACTIONS(7185), 1, + anon_sym_DOT_DOT, + ACTIONS(7187), 1, + sym__entry_separator, + STATE(3697), 1, sym_comment, - STATE(4039), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [110091] = 4, + STATE(3756), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3934), 1, + sym_path, + STATE(4526), 1, + sym_cell_path, + [111425] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3652), 1, + ACTIONS(7191), 1, + anon_sym_DOT, + ACTIONS(7193), 1, + aux_sym__immediate_decimal_token5, + STATE(3698), 1, sym_comment, - ACTIONS(849), 2, + ACTIONS(1756), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(851), 5, + ACTIONS(1754), 3, 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, + [111447] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7139), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7141), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7143), 1, anon_sym_DASH_DASH, - STATE(1576), 1, + STATE(1625), 1, sym_parameter_parens, - STATE(1604), 1, + STATE(1626), 1, sym_parameter_bracks, - STATE(3654), 1, + STATE(3699), 1, sym_comment, - STATE(3727), 1, + STATE(3716), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4479), 1, sym_long_flag, - [110161] = 8, + [111475] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1858), 1, + ACTIONS(1452), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7131), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(349), 1, sym_path, - STATE(3655), 1, + STATE(373), 1, + sym_cell_path, + STATE(3700), 1, sym_comment, - STATE(3778), 1, + STATE(3814), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4214), 1, - sym_cell_path, - ACTIONS(1860), 2, + ACTIONS(1450), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [110187] = 9, + [111501] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7099), 1, - anon_sym_RBRACK, - STATE(3656), 1, + ACTIONS(2031), 1, + sym__unquoted_pattern, + ACTIONS(7195), 1, + anon_sym_DOT_DOT2, + STATE(3701), 1, sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(4955), 1, - sym__table_body, - [110215] = 9, + ACTIONS(7197), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2021), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [111523] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7139), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7141), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7143), 1, anon_sym_DASH_DASH, - STATE(1528), 1, + STATE(1635), 1, sym_parameter_parens, - STATE(1529), 1, + STATE(1648), 1, sym_parameter_bracks, - STATE(3657), 1, + STATE(3702), 1, sym_comment, - STATE(3708), 1, + STATE(4049), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4479), 1, sym_long_flag, - [110243] = 9, + [111551] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(7199), 1, + anon_sym_DOT_DOT2, + STATE(3703), 1, + sym_comment, + ACTIONS(7201), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2011), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [111573] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3704), 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, + [111591] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7139), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7141), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7143), 1, anon_sym_DASH_DASH, - STATE(1553), 1, + STATE(1627), 1, sym_parameter_parens, - STATE(1554), 1, + STATE(1655), 1, sym_parameter_bracks, - STATE(3658), 1, - sym_comment, - STATE(3688), 1, + STATE(3689), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(3705), 1, + sym_comment, + STATE(4479), 1, sym_long_flag, - [110271] = 9, + [111619] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7139), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7141), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7143), 1, anon_sym_DASH_DASH, - STATE(1509), 1, - sym_parameter_parens, - STATE(1662), 1, - sym_parameter_bracks, - STATE(3659), 1, - sym_comment, - STATE(4039), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [110299] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6949), 1, - anon_sym_DOT2, - STATE(3660), 1, - sym_comment, - STATE(3755), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4108), 1, - sym_path, - STATE(4421), 1, - sym_cell_path, - ACTIONS(1860), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [110323] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3661), 1, - sym_comment, - ACTIONS(1641), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1643), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [110341] = 9, - ACTIONS(103), 1, - 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, - sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4251), 1, - sym__assignment_pattern, - [110369] = 4, - ACTIONS(103), 1, + STATE(1670), 1, + sym_parameter_parens, + STATE(1672), 1, + sym_parameter_bracks, + STATE(3706), 1, + sym_comment, + STATE(3726), 1, + aux_sym_decl_def_repeat1, + STATE(4479), 1, + sym_long_flag, + [111647] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3663), 1, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1776), 1, + sym__unquoted_pattern, + ACTIONS(7203), 1, + anon_sym_DOT_DOT2, + ACTIONS(7207), 1, + sym_filesize_unit, + ACTIONS(7209), 1, + sym_duration_unit, + STATE(3707), 1, sym_comment, - ACTIONS(1822), 3, + ACTIONS(7205), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1824), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [110387] = 8, - ACTIONS(103), 1, + [111673] = 9, + ACTIONS(3), 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(7139), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_LPAREN, + ACTIONS(7143), 1, + anon_sym_DASH_DASH, + STATE(1673), 1, + sym_parameter_parens, + STATE(1675), 1, + sym_parameter_bracks, + STATE(3708), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4113), 1, - sym_cell_path, - ACTIONS(1880), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [110413] = 9, + STATE(4049), 1, + aux_sym_decl_def_repeat1, + STATE(4479), 1, + sym_long_flag, + [111701] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3895), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(3942), 1, sym__newline, - ACTIONS(7101), 1, + ACTIONS(7211), 1, anon_sym_RBRACK, - STATE(3665), 1, + STATE(3709), 1, sym_comment, - STATE(4021), 1, + STATE(4023), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4506), 1, sym_val_list, - STATE(4577), 1, + STATE(4520), 1, aux_sym__table_body_repeat1, - STATE(5044), 1, + STATE(5100), 1, sym__table_body, - [110441] = 9, + [111729] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(7213), 1, + anon_sym_DOT, + STATE(3710), 1, + sym_comment, + STATE(4152), 1, + sym__immediate_decimal, + ACTIONS(6498), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6500), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [111753] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7139), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7141), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7143), 1, anon_sym_DASH_DASH, - STATE(1663), 1, - sym_parameter_parens, - STATE(1664), 1, + STATE(1620), 1, sym_parameter_bracks, - STATE(3641), 1, - aux_sym_decl_def_repeat1, - STATE(3666), 1, + STATE(1677), 1, + sym_parameter_parens, + STATE(3711), 1, sym_comment, - STATE(4547), 1, + STATE(3730), 1, + aux_sym_decl_def_repeat1, + STATE(4479), 1, sym_long_flag, - [110469] = 8, + [111781] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, + ACTIONS(1880), 1, sym__entry_separator, - ACTIONS(7038), 1, + ACTIONS(7077), 1, anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3667), 1, + STATE(3712), 1, sym_comment, - STATE(3884), 1, + STATE(3756), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3934), 1, sym_path, - STATE(4096), 1, + STATE(4183), 1, sym_cell_path, - ACTIONS(1864), 2, + ACTIONS(1882), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [110495] = 8, + [111807] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1878), 1, + ACTIONS(1872), 1, sym__entry_separator, - ACTIONS(7038), 1, + ACTIONS(7077), 1, anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3668), 1, + STATE(3713), 1, sym_comment, - STATE(3884), 1, + STATE(3756), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3934), 1, sym_path, - STATE(4113), 1, + STATE(4194), 1, sym_cell_path, - ACTIONS(1880), 2, + ACTIONS(1874), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [110521] = 8, + [111833] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, + ACTIONS(1892), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7131), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(349), 1, sym_path, - STATE(3669), 1, + STATE(3714), 1, sym_comment, - STATE(3778), 1, + STATE(3814), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4096), 1, + STATE(4240), 1, sym_cell_path, - ACTIONS(1864), 2, + ACTIONS(1894), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [110547] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7103), 1, - anon_sym_RBRACK, - STATE(3670), 1, - sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(5054), 1, - sym__table_body, - [110575] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7105), 1, - anon_sym_alias, - ACTIONS(7107), 1, - anon_sym_const, - ACTIONS(7109), 1, - anon_sym_def, - ACTIONS(7111), 1, - anon_sym_use, - ACTIONS(7113), 1, - anon_sym_extern, - ACTIONS(7115), 1, - anon_sym_module, - STATE(3671), 1, - sym_comment, - [110603] = 8, + [111859] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(884), 1, sym__entry_separator, - ACTIONS(6222), 1, + ACTIONS(6277), 1, sym__unquoted_pattern_in_list, - ACTIONS(6724), 1, + ACTIONS(6743), 1, anon_sym_DOT_DOT2, - ACTIONS(6728), 1, + ACTIONS(6747), 1, sym_filesize_unit, - ACTIONS(6730), 1, + ACTIONS(6749), 1, sym_duration_unit, - STATE(3672), 1, - sym_comment, - ACTIONS(6726), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110629] = 8, - ACTIONS(103), 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, - anon_sym_DOT_DOT2, - STATE(3673), 1, + STATE(3715), 1, sym_comment, - ACTIONS(7119), 2, + ACTIONS(6745), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110655] = 9, + [111885] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7139), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7141), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7143), 1, anon_sym_DASH_DASH, - STATE(1555), 1, + STATE(1623), 1, sym_parameter_parens, - STATE(1556), 1, + STATE(1624), 1, sym_parameter_bracks, - STATE(3674), 1, + STATE(3716), 1, sym_comment, - STATE(4039), 1, + STATE(4049), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4479), 1, sym_long_flag, - [110683] = 9, + [111913] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7121), 1, - anon_sym_RBRACK, - STATE(3675), 1, - sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(4993), 1, - sym__table_body, - [110711] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACE, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(7123), 1, + ACTIONS(7217), 1, anon_sym_DOT_DOT2, - ACTIONS(7127), 1, - sym_filesize_unit, - ACTIONS(7129), 1, - sym_duration_unit, - STATE(3676), 1, + STATE(3717), 1, sym_comment, - ACTIONS(7125), 2, + ACTIONS(7219), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110737] = 6, + ACTIONS(7215), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [111933] = 8, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1888), 1, + sym__entry_separator, ACTIONS(7131), 1, + anon_sym_DOT2, + STATE(349), 1, + sym_path, + STATE(3718), 1, + sym_comment, + STATE(3814), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4261), 1, + sym_cell_path, + ACTIONS(1890), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [111959] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7221), 1, anon_sym_QMARK2, - ACTIONS(7133), 1, + ACTIONS(7223), 1, anon_sym_BANG, - STATE(3677), 1, + STATE(3719), 1, sym_comment, - STATE(4266), 1, + STATE(4294), 1, sym__path_suffix, - ACTIONS(1446), 4, + ACTIONS(1442), 4, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_DOT2, - [110759] = 6, + [111981] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7135), 1, - anon_sym_DOT, - ACTIONS(7137), 1, - aux_sym__immediate_decimal_token5, - STATE(3678), 1, + ACTIONS(2950), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7225), 1, + anon_sym_alias, + ACTIONS(7227), 1, + anon_sym_const, + ACTIONS(7229), 1, + anon_sym_def, + ACTIONS(7231), 1, + anon_sym_use, + ACTIONS(7233), 1, + anon_sym_extern, + ACTIONS(7235), 1, + anon_sym_module, + STATE(3720), 1, sym_comment, - ACTIONS(1736), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [110781] = 6, + [112009] = 9, 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, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(7143), 1, - anon_sym_DOT_DOT2, - STATE(3680), 1, - sym_comment, - ACTIONS(7145), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [110825] = 6, - 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(2738), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2740), 1, + anon_sym_COLON2, + ACTIONS(7123), 1, + sym_identifier, + ACTIONS(7237), 1, + anon_sym_DOLLAR, + STATE(2827), 1, + sym__variable_name, + STATE(2828), 1, + sym_val_variable, + STATE(3721), 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(4290), 1, + sym__assignment_pattern, + [112037] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1882), 1, + ACTIONS(7032), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7077), 1, anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3682), 1, + STATE(3722), 1, sym_comment, - STATE(3778), 1, + STATE(3756), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4176), 1, - sym_cell_path, - ACTIONS(1884), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [110873] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3683), 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, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5233), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, + STATE(3934), 1, sym_path, - STATE(3684), 1, - sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4483), 1, + STATE(4557), 1, sym_cell_path, - ACTIONS(5231), 2, + ACTIONS(7185), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [110917] = 9, + anon_sym_DOT_DOT, + [112063] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3895), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(3942), 1, sym__newline, - ACTIONS(7151), 1, + ACTIONS(7239), 1, anon_sym_RBRACK, - STATE(3685), 1, + STATE(3723), 1, sym_comment, - STATE(4021), 1, + STATE(4023), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4506), 1, sym_val_list, - STATE(4577), 1, + STATE(4520), 1, aux_sym__table_body_repeat1, - STATE(4797), 1, + STATE(5232), 1, sym__table_body, - [110945] = 9, - ACTIONS(103), 1, + [112091] = 7, + 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(7153), 1, - anon_sym_alias, - ACTIONS(7155), 1, - anon_sym_const, - STATE(3686), 1, + ACTIONS(6929), 1, + anon_sym_DOT2, + STATE(2458), 1, + sym_path, + STATE(2966), 1, + sym_cell_path, + STATE(3643), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3724), 1, sym_comment, - [110973] = 6, + ACTIONS(1872), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [112115] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1748), 1, sym__unquoted_pattern, - ACTIONS(7157), 1, - anon_sym_DOT_DOT2, - STATE(3687), 1, + ACTIONS(7241), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7243), 1, + aux_sym__immediate_decimal_token5, + STATE(3725), 1, sym_comment, - ACTIONS(7159), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 3, + ACTIONS(1746), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [110995] = 9, + [112137] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7139), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_LPAREN, + ACTIONS(7143), 1, + anon_sym_DASH_DASH, + STATE(1565), 1, + sym_parameter_parens, + STATE(1602), 1, + sym_parameter_bracks, + STATE(3726), 1, + sym_comment, + STATE(4049), 1, + aux_sym_decl_def_repeat1, + STATE(4479), 1, + sym_long_flag, + [112165] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7139), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7141), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7143), 1, anon_sym_DASH_DASH, - STATE(1557), 1, + STATE(1603), 1, sym_parameter_parens, - STATE(1558), 1, + STATE(1604), 1, sym_parameter_bracks, - STATE(3688), 1, + STATE(3727), 1, sym_comment, - STATE(4039), 1, + STATE(3738), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4479), 1, sym_long_flag, - [111023] = 9, - ACTIONS(103), 1, + [112193] = 5, + 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(3689), 1, + ACTIONS(7245), 1, + aux_sym__immediate_decimal_token5, + STATE(3728), 1, sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4252), 1, - sym__assignment_pattern, - [111051] = 7, + ACTIONS(763), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(765), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [112213] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(6929), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2458), 1, sym_path, - STATE(3032), 1, + STATE(2859), 1, sym_cell_path, - STATE(3592), 1, + STATE(3643), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3690), 1, + STATE(3729), 1, sym_comment, - ACTIONS(1878), 3, + ACTIONS(1862), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [111075] = 9, + [112237] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7139), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7141), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7143), 1, anon_sym_DASH_DASH, - STATE(1559), 1, + STATE(1618), 1, sym_parameter_parens, - STATE(1560), 1, + STATE(1619), 1, sym_parameter_bracks, - STATE(3691), 1, + STATE(3730), 1, sym_comment, - STATE(3706), 1, + STATE(4049), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4479), 1, sym_long_flag, - [111103] = 8, + [112265] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5273), 1, + ACTIONS(5292), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7131), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(349), 1, sym_path, - STATE(3692), 1, + STATE(3731), 1, sym_comment, - STATE(3778), 1, + STATE(3814), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4514), 1, + STATE(4464), 1, sym_cell_path, - ACTIONS(5271), 2, + ACTIONS(5290), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [111129] = 8, - ACTIONS(103), 1, + [112291] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7139), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_LPAREN, + ACTIONS(7143), 1, + anon_sym_DASH_DASH, + STATE(1630), 1, + sym_parameter_parens, + STATE(1631), 1, + sym_parameter_bracks, + STATE(3732), 1, + sym_comment, + STATE(3745), 1, + aux_sym_decl_def_repeat1, + STATE(4479), 1, + sym_long_flag, + [112319] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7139), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_LPAREN, + ACTIONS(7143), 1, + anon_sym_DASH_DASH, + STATE(1564), 1, + sym_parameter_parens, + STATE(1621), 1, + sym_parameter_bracks, + STATE(3733), 1, + sym_comment, + STATE(4049), 1, + aux_sym_decl_def_repeat1, + STATE(4479), 1, + sym_long_flag, + [112347] = 7, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1615), 1, 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, - anon_sym_DOT_DOT2, - STATE(3693), 1, + ACTIONS(7247), 1, + anon_sym_DOT, + STATE(3734), 1, sym_comment, - ACTIONS(7163), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111155] = 4, + STATE(4139), 1, + sym__immediate_decimal, + ACTIONS(7249), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7251), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [112371] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3694), 1, + STATE(3735), 1, sym_comment, - ACTIONS(1728), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 4, - anon_sym_LPAREN2, + ACTIONS(1846), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [111173] = 9, + ACTIONS(1848), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [112389] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(6974), 1, - anon_sym_alias, - ACTIONS(6976), 1, - anon_sym_const, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - STATE(3695), 1, + STATE(3736), 1, sym_comment, - [111201] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7030), 1, + ACTIONS(1687), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3696), 1, - sym_comment, - STATE(3884), 1, - sym_path, - STATE(4478), 1, - sym_cell_path, - ACTIONS(7165), 2, + ACTIONS(1689), 4, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - [111227] = 9, + anon_sym_DOT_DOT2, + [112407] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3895), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(3942), 1, sym__newline, - ACTIONS(7167), 1, + ACTIONS(7253), 1, anon_sym_RBRACK, - STATE(3697), 1, + STATE(3737), 1, sym_comment, - STATE(4021), 1, + STATE(4023), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4506), 1, sym_val_list, - STATE(4577), 1, + STATE(4520), 1, aux_sym__table_body_repeat1, - STATE(5098), 1, + STATE(4967), 1, sym__table_body, - [111255] = 7, + [112435] = 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(7139), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_LPAREN, + ACTIONS(7143), 1, + anon_sym_DASH_DASH, + STATE(1632), 1, + sym_parameter_parens, + STATE(1633), 1, + sym_parameter_bracks, + STATE(3738), 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, + STATE(4049), 1, + aux_sym_decl_def_repeat1, + STATE(4479), 1, + sym_long_flag, + [112463] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2826), 1, - sym_cell_path, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3699), 1, - sym_comment, - ACTIONS(1850), 3, + ACTIONS(7139), 1, anon_sym_LBRACK, + ACTIONS(7141), 1, anon_sym_LPAREN, + ACTIONS(7143), 1, anon_sym_DASH_DASH, - [111303] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - ACTIONS(7175), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7177), 1, - aux_sym__immediate_decimal_token5, - STATE(3700), 1, - sym_comment, - ACTIONS(1726), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [111325] = 9, - ACTIONS(103), 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(1649), 1, + sym_parameter_parens, + STATE(1650), 1, + sym_parameter_bracks, + STATE(3733), 1, + aux_sym_decl_def_repeat1, + STATE(3739), 1, sym_comment, - STATE(3884), 1, - sym_path, - STATE(4449), 1, - sym_cell_path, - [111353] = 9, + STATE(4479), 1, + sym_long_flag, + [112491] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3895), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(3942), 1, sym__newline, - ACTIONS(7187), 1, + ACTIONS(7255), 1, anon_sym_RBRACK, - STATE(3702), 1, + STATE(3740), 1, sym_comment, - STATE(4021), 1, + STATE(4023), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4506), 1, sym_val_list, - STATE(4577), 1, + STATE(4520), 1, aux_sym__table_body_repeat1, - STATE(5180), 1, + STATE(5075), 1, sym__table_body, - [111381] = 7, - ACTIONS(3), 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, - sym_comment, - ACTIONS(1862), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [111405] = 7, + [112519] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6949), 1, - anon_sym_DOT2, - STATE(3704), 1, + STATE(3741), 1, 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(1876), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1878), 4, anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [112537] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1615), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2011), 1, sym__entry_separator, - sym__table_head_separator, - [111429] = 4, + ACTIONS(2013), 1, + anon_sym_RBRACE, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(7257), 1, + anon_sym_DOT_DOT2, + STATE(3742), 1, + sym_comment, + ACTIONS(7259), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112563] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3705), 1, + STATE(3743), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(789), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(791), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [111447] = 9, + sym_filesize_unit, + sym_duration_unit, + [112581] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7261), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7263), 1, + aux_sym__immediate_decimal_token5, + STATE(3744), 1, + sym_comment, + ACTIONS(1746), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1748), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [112603] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7139), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7141), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7143), 1, anon_sym_DASH_DASH, - STATE(1561), 1, + STATE(1634), 1, sym_parameter_parens, - STATE(1562), 1, + STATE(1652), 1, sym_parameter_bracks, - STATE(3706), 1, + STATE(3745), 1, sym_comment, - STATE(4039), 1, + STATE(4049), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4479), 1, sym_long_flag, - [111475] = 9, - 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, - sym__entry_separator, - STATE(339), 1, - sym_path, - STATE(3707), 1, - sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4176), 1, - sym_cell_path, - [111503] = 9, + [112631] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7139), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7141), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7143), 1, anon_sym_DASH_DASH, - STATE(1516), 1, + STATE(1653), 1, sym_parameter_parens, - STATE(1517), 1, + STATE(1656), 1, sym_parameter_bracks, - STATE(3708), 1, + STATE(3746), 1, sym_comment, - STATE(4039), 1, + STATE(3753), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4479), 1, sym_long_flag, - [111531] = 9, + [112659] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7192), 1, - anon_sym_RBRACK, - STATE(3709), 1, + STATE(3747), 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(1748), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1746), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112677] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_LBRACE, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(7194), 1, + ACTIONS(7217), 1, anon_sym_DOT_DOT2, - ACTIONS(7198), 1, - sym_filesize_unit, - ACTIONS(7200), 1, - sym_duration_unit, - STATE(3710), 1, + STATE(3748), 1, sym_comment, - ACTIONS(7196), 2, + ACTIONS(7219), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [111585] = 8, + ACTIONS(7265), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [112697] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(1510), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7267), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(3934), 1, sym_path, - STATE(3711), 1, + STATE(3749), 2, sym_comment, - STATE(3778), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4554), 1, - sym_cell_path, - ACTIONS(5249), 2, + ACTIONS(1508), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [111611] = 8, + anon_sym_GT2, + anon_sym_DOT_DOT, + [112719] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6963), 1, + ACTIONS(5296), 1, sym__entry_separator, - ACTIONS(7038), 1, + ACTIONS(7131), 1, anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3712), 1, - sym_comment, - STATE(3884), 1, + STATE(349), 1, sym_path, - STATE(4513), 1, + STATE(3750), 1, + sym_comment, + STATE(3814), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4493), 1, sym_cell_path, - ACTIONS(7202), 2, + ACTIONS(5294), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [111637] = 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(1533), 1, - sym_parameter_parens, - STATE(1534), 1, - sym_parameter_bracks, - STATE(3713), 1, - sym_comment, - STATE(4039), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [111665] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [112745] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7206), 1, - anon_sym_DOT_DOT2, - STATE(3714), 1, + ACTIONS(7270), 1, + anon_sym_DOT, + ACTIONS(7272), 1, + aux_sym__immediate_decimal_token5, + STATE(3751), 1, sym_comment, - ACTIONS(7208), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7204), 4, - anon_sym_if, + ACTIONS(1754), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1756), 3, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [111685] = 5, + anon_sym_SEMI, + sym__unquoted_pattern, + [112767] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7206), 1, - anon_sym_DOT_DOT2, - STATE(3715), 1, + ACTIONS(7005), 1, + aux_sym__immediate_decimal_token5, + STATE(3752), 1, sym_comment, - ACTIONS(7208), 2, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(749), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7210), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [111705] = 9, + sym_filesize_unit, + sym_duration_unit, + [112787] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7139), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7141), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7143), 1, anon_sym_DASH_DASH, - STATE(1538), 1, + STATE(1659), 1, sym_parameter_parens, - STATE(1539), 1, + STATE(1661), 1, sym_parameter_bracks, - STATE(3642), 1, - aux_sym_decl_def_repeat1, - STATE(3716), 1, + STATE(3753), 1, sym_comment, - STATE(4547), 1, + STATE(4049), 1, + aux_sym_decl_def_repeat1, + STATE(4479), 1, sym_long_flag, - [111733] = 4, + [112815] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3717), 1, + ACTIONS(6929), 1, + anon_sym_DOT2, + STATE(2458), 1, + sym_path, + STATE(2953), 1, + sym_cell_path, + STATE(3643), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3754), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [111751] = 8, + ACTIONS(1880), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [112839] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1850), 1, + ACTIONS(1880), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7131), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(349), 1, sym_path, - STATE(3718), 1, + STATE(3755), 1, sym_comment, - STATE(3778), 1, + STATE(3814), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4335), 1, + STATE(4183), 1, sym_cell_path, - ACTIONS(1853), 2, + ACTIONS(1882), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [111777] = 8, + [112865] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, + ACTIONS(1517), 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, + ACTIONS(7077), 1, + anon_sym_DOT2, + STATE(3749), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3756), 1, sym_comment, - ACTIONS(7214), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111803] = 9, + STATE(3934), 1, + sym_path, + ACTIONS(1515), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + [112889] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2630), 1, aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, + ACTIONS(7056), 1, anon_sym_def, - ACTIONS(6980), 1, + ACTIONS(7058), 1, anon_sym_use, - ACTIONS(6982), 1, + ACTIONS(7060), 1, anon_sym_extern, - ACTIONS(6984), 1, + ACTIONS(7062), 1, anon_sym_module, - ACTIONS(7216), 1, + ACTIONS(7274), 1, anon_sym_alias, - ACTIONS(7218), 1, + ACTIONS(7276), 1, anon_sym_const, - STATE(3720), 1, + STATE(3757), 1, + sym_comment, + [112917] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3758), 1, + sym_comment, + ACTIONS(1902), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1900), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112935] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1615), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2011), 1, + sym__entry_separator, + ACTIONS(2013), 1, + anon_sym_RBRACK, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(7278), 1, + anon_sym_DOT_DOT2, + STATE(3759), 1, sym_comment, - [111831] = 9, + ACTIONS(7280), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112961] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7139), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7141), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7143), 1, anon_sym_DASH_DASH, - STATE(1540), 1, + STATE(1523), 1, sym_parameter_parens, - STATE(1541), 1, + STATE(1525), 1, sym_parameter_bracks, - STATE(3721), 1, - sym_comment, - STATE(4039), 1, + STATE(3692), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(3760), 1, + sym_comment, + STATE(4479), 1, sym_long_flag, - [111859] = 9, + [112989] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3895), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + sym__newline, + ACTIONS(7282), 1, + anon_sym_RBRACK, + STATE(3761), 1, + sym_comment, + STATE(4023), 1, + aux_sym__types_body_repeat1, + STATE(4506), 1, + sym_val_list, + STATE(4520), 1, + aux_sym__table_body_repeat1, + STATE(5001), 1, + sym__table_body, + [113017] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7071), 1, + sym__entry_separator, + ACTIONS(7077), 1, + anon_sym_DOT2, + STATE(3756), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3762), 1, + sym_comment, + STATE(3934), 1, + sym_path, + STATE(4614), 1, + sym_cell_path, + ACTIONS(7284), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [113043] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2630), 1, aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, + ACTIONS(7056), 1, anon_sym_def, - ACTIONS(6980), 1, + ACTIONS(7058), 1, anon_sym_use, - ACTIONS(6982), 1, + ACTIONS(7060), 1, anon_sym_extern, - ACTIONS(6984), 1, + ACTIONS(7062), 1, anon_sym_module, - ACTIONS(7220), 1, + ACTIONS(7286), 1, anon_sym_alias, - ACTIONS(7222), 1, + ACTIONS(7288), 1, anon_sym_const, - STATE(3722), 1, + STATE(3763), 1, sym_comment, - [111887] = 5, - ACTIONS(3), 1, + [113071] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7024), 1, - aux_sym__immediate_decimal_token5, - STATE(3723), 1, + STATE(3764), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(1902), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(741), 4, + ACTIONS(1900), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [111907] = 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(1521), 1, - sym_parameter_parens, - STATE(1522), 1, - sym_parameter_bracks, - STATE(3724), 1, - sym_comment, - STATE(4039), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [111935] = 9, + sym__entry_separator, + [113089] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2630), 1, aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, + ACTIONS(7056), 1, anon_sym_def, - ACTIONS(6980), 1, + ACTIONS(7058), 1, anon_sym_use, - ACTIONS(6982), 1, + ACTIONS(7060), 1, anon_sym_extern, - ACTIONS(6984), 1, + ACTIONS(7062), 1, anon_sym_module, - ACTIONS(7224), 1, + ACTIONS(7290), 1, anon_sym_alias, - ACTIONS(7226), 1, + ACTIONS(7292), 1, anon_sym_const, - STATE(3725), 1, + STATE(3765), 1, sym_comment, - [111963] = 4, + [113117] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3726), 1, + STATE(3766), 1, sym_comment, - ACTIONS(1886), 3, + ACTIONS(1814), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1812), 4, + anon_sym_LPAREN2, 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, - 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(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, + [113135] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3895), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(3942), 1, sym__newline, - ACTIONS(7228), 1, + ACTIONS(7294), 1, anon_sym_RBRACK, - STATE(3728), 1, + STATE(3767), 1, sym_comment, - STATE(4021), 1, + STATE(4023), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4506), 1, sym_val_list, - STATE(4577), 1, + STATE(4520), 1, aux_sym__table_body_repeat1, - STATE(4975), 1, + STATE(5006), 1, sym__table_body, - [112037] = 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(1535), 1, - sym_parameter_parens, - STATE(1536), 1, - sym_parameter_bracks, - STATE(3721), 1, - aux_sym_decl_def_repeat1, - STATE(3729), 1, - sym_comment, - STATE(4547), 1, - sym_long_flag, - [112065] = 4, - ACTIONS(3), 1, + [113163] = 9, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3730), 1, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7056), 1, + anon_sym_def, + ACTIONS(7058), 1, + anon_sym_use, + ACTIONS(7060), 1, + anon_sym_extern, + ACTIONS(7062), 1, + anon_sym_module, + ACTIONS(7296), 1, + anon_sym_alias, + ACTIONS(7298), 1, + anon_sym_const, + STATE(3768), 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, + [113191] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2738), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(2740), 1, + anon_sym_COLON2, + ACTIONS(7123), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7125), 1, anon_sym_DOLLAR, - STATE(3731), 1, + STATE(2828), 1, + sym_val_variable, + STATE(3769), 1, sym_comment, - STATE(3933), 1, + STATE(3965), 1, sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4383), 1, + STATE(4292), 1, sym__assignment_pattern, - [112108] = 7, + [113219] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3340), 1, - sym__blosure, - STATE(3732), 1, + STATE(3770), 1, sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112131] = 6, - ACTIONS(3), 1, + ACTIONS(1814), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1812), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113237] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(57), 1, - anon_sym_AT, - STATE(3733), 1, + ACTIONS(7011), 1, + anon_sym_RBRACK, + ACTIONS(7014), 1, + anon_sym_DOT_DOT, + ACTIONS(7131), 1, + anon_sym_DOT2, + ACTIONS(7300), 1, + sym__entry_separator, + STATE(349), 1, + sym_path, + STATE(3771), 1, sym_comment, - STATE(3803), 1, - aux_sym_attribute_list_repeat1, - STATE(4624), 1, - sym_attribute, - ACTIONS(7232), 3, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - [112152] = 7, + STATE(3814), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4240), 1, + sym_cell_path, + [113265] = 4, 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, + STATE(3772), 1, sym_comment, - STATE(3788), 1, - aux_sym__repeat_newline, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112175] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, + ACTIONS(763), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(765), 5, anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3341), 1, - sym__blosure, - STATE(3735), 1, - sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112198] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113283] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3895), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3341), 1, - sym__blosure, - STATE(3736), 1, + ACTIONS(7303), 1, + anon_sym_RBRACK, + STATE(3773), 1, sym_comment, - STATE(3790), 1, - aux_sym__repeat_newline, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112221] = 7, + STATE(4023), 1, + aux_sym__types_body_repeat1, + STATE(4506), 1, + sym_val_list, + STATE(4520), 1, + aux_sym__table_body_repeat1, + STATE(4850), 1, + sym__table_body, + [113311] = 8, 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(2950), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7305), 1, + sym_identifier, + ACTIONS(7307), 1, + anon_sym_DOLLAR, + STATE(2718), 1, + sym__variable_name, + STATE(3039), 1, + sym_val_variable, + STATE(3774), 1, sym_comment, - ACTIONS(5336), 2, - sym__newline, - anon_sym_SEMI, - [112244] = 6, + STATE(4581), 1, + sym__assignment_pattern, + [113336] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5346), 1, + ACTIONS(5395), 1, sym__space, - ACTIONS(7238), 1, + ACTIONS(7309), 1, anon_sym_DOT_DOT2, - STATE(3738), 1, + STATE(3775), 1, sym_comment, - ACTIONS(5344), 2, + ACTIONS(5393), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7240), 2, + ACTIONS(7311), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112265] = 4, + [113357] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7242), 1, - anon_sym_LT, - STATE(3739), 1, + ACTIONS(7313), 1, + anon_sym_DOT, + ACTIONS(7315), 1, + aux_sym__immediate_decimal_token5, + STATE(3776), 1, sym_comment, - ACTIONS(5920), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [112282] = 4, + ACTIONS(1754), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1756), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [113378] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7244), 1, - anon_sym_LT, - STATE(3740), 1, + ACTIONS(7317), 1, + anon_sym_DOT2, + STATE(2458), 1, + sym_path, + STATE(3777), 2, sym_comment, - ACTIONS(5920), 5, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 3, anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [112299] = 6, - ACTIONS(3), 1, + sym__newline, + anon_sym_COLON, + [113397] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7246), 1, - anon_sym_DOT, - ACTIONS(7248), 1, + ACTIONS(7320), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7322), 1, aux_sym__immediate_decimal_token5, - STATE(3741), 1, + STATE(3778), 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(1746), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1748), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [113418] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(1756), 1, sym__unquoted_pattern, - ACTIONS(7250), 1, + ACTIONS(7324), 1, anon_sym_DOT, - ACTIONS(7252), 1, + ACTIONS(7326), 1, aux_sym__immediate_decimal_token5, - STATE(3742), 1, + STATE(3779), 1, sym_comment, - ACTIONS(1736), 3, + ACTIONS(1754), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [112341] = 8, + [113439] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2630), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7123), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7237), 1, anon_sym_DOLLAR, - STATE(3743), 1, - sym_comment, - STATE(3897), 1, + STATE(2827), 1, sym__variable_name, - STATE(4060), 1, + STATE(2828), 1, sym_val_variable, - STATE(4250), 1, + STATE(3780), 1, + sym_comment, + STATE(4290), 1, sym__assignment_pattern, - [112366] = 8, + [113464] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2630), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7123), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7125), 1, anon_sym_DOLLAR, - STATE(3744), 1, + STATE(2828), 1, + sym_val_variable, + STATE(3781), 1, sym_comment, - STATE(3897), 1, + STATE(3965), 1, sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4251), 1, + STATE(4292), 1, sym__assignment_pattern, - [112391] = 8, + [113489] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2630), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7123), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7125), 1, anon_sym_DOLLAR, - STATE(3745), 1, + STATE(2828), 1, + sym_val_variable, + STATE(3782), 1, sym_comment, - STATE(3897), 1, + STATE(3965), 1, sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4252), 1, + STATE(4293), 1, sym__assignment_pattern, - [112416] = 6, - ACTIONS(103), 1, + [113514] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7254), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7256), 1, - aux_sym__immediate_decimal_token5, - STATE(3746), 1, + ACTIONS(1691), 1, + sym__unquoted_pattern, + STATE(3783), 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, + STATE(4993), 1, + sym__immediate_decimal, + ACTIONS(6528), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6530), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [113535] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7328), 1, anon_sym_LPAREN, - ACTIONS(7262), 1, + ACTIONS(7332), 1, anon_sym_DQUOTE2, - STATE(3747), 1, + STATE(3784), 1, sym_comment, - STATE(3752), 1, + STATE(3790), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4145), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7330), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [112460] = 7, + [113558] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6430), 1, + ACTIONS(6498), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6751), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7264), 1, + ACTIONS(7334), 1, aux_sym_unquoted_token2, - STATE(3748), 1, + STATE(3785), 1, sym_comment, - STATE(4133), 1, + STATE(4211), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6753), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [112483] = 7, + [113581] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6478), 1, + ACTIONS(6528), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6789), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7264), 1, + ACTIONS(7334), 1, aux_sym_unquoted_token2, - STATE(3749), 1, + STATE(3786), 1, sym_comment, - STATE(4996), 1, + STATE(5061), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6791), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [112506] = 6, + [113604] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4139), 1, + ACTIONS(4149), 1, anon_sym_DOT_DOT2, - ACTIONS(7264), 1, + ACTIONS(7334), 1, sym__unquoted_pattern, - STATE(3750), 1, + STATE(3787), 1, sym_comment, - ACTIONS(4141), 2, + ACTIONS(4151), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7266), 2, + ACTIONS(7336), 2, sym_filesize_unit, sym_duration_unit, - [112527] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(3751), 1, - sym_comment, - STATE(4989), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [112548] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7268), 1, - anon_sym_DQUOTE2, - STATE(3752), 1, - sym_comment, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [112571] = 5, + [113625] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - STATE(3753), 1, + STATE(3788), 1, sym_comment, - STATE(4324), 1, + STATE(4247), 1, sym_block, - ACTIONS(7270), 4, + ACTIONS(7338), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [112590] = 5, + [113644] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - STATE(3754), 1, + STATE(3789), 1, sym_comment, - STATE(4330), 1, + STATE(4253), 1, sym_block, - ACTIONS(7270), 4, + ACTIONS(7338), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [112609] = 6, + [113663] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6949), 1, - anon_sym_DOT2, - STATE(3755), 1, + ACTIONS(7328), 1, + anon_sym_LPAREN, + ACTIONS(7340), 1, + anon_sym_DQUOTE2, + STATE(3790), 1, sym_comment, - STATE(3758), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4108), 1, - sym_path, - ACTIONS(1458), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [112630] = 6, + STATE(3847), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4145), 1, + sym_expr_interpolated, + ACTIONS(7330), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [113686] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7204), 1, + ACTIONS(7215), 1, sym__entry_separator, - ACTIONS(7274), 1, + ACTIONS(7344), 1, anon_sym_DOT_DOT2, - STATE(3756), 1, + STATE(3791), 1, sym_comment, - ACTIONS(7272), 2, + ACTIONS(7342), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7276), 2, + ACTIONS(7346), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112651] = 6, + [113707] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7210), 1, + ACTIONS(7265), 1, sym__entry_separator, - ACTIONS(7274), 1, + ACTIONS(7344), 1, anon_sym_DOT_DOT2, - STATE(3757), 1, + STATE(3792), 1, sym_comment, - ACTIONS(7276), 2, + ACTIONS(7346), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7278), 2, + ACTIONS(7348), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [112672] = 5, + [113728] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7280), 1, - anon_sym_DOT2, - STATE(4108), 1, - sym_path, - STATE(3758), 2, + ACTIONS(7328), 1, + anon_sym_LPAREN, + ACTIONS(7350), 1, + anon_sym_DQUOTE2, + STATE(3793), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [112691] = 5, + STATE(3847), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4145), 1, + sym_expr_interpolated, + ACTIONS(7330), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [113751] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7123), 1, + sym_identifier, + ACTIONS(7237), 1, + anon_sym_DOLLAR, + STATE(2683), 1, + sym__variable_name, + STATE(2828), 1, + sym_val_variable, + STATE(3794), 1, + sym_comment, + STATE(4555), 1, + sym__assignment_pattern_parenthesized, + [113776] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7123), 1, + sym_identifier, + ACTIONS(7125), 1, + anon_sym_DOLLAR, + STATE(2828), 1, + sym_val_variable, + STATE(3795), 1, + sym_comment, + STATE(4066), 1, + sym__variable_name, + STATE(4611), 1, + sym__assignment_pattern_parenthesized, + [113801] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7123), 1, + sym_identifier, + ACTIONS(7125), 1, + anon_sym_DOLLAR, + STATE(2828), 1, + sym_val_variable, + STATE(3796), 1, + sym_comment, + STATE(4066), 1, + sym__variable_name, + STATE(4613), 1, + sym__assignment_pattern_parenthesized, + [113826] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7283), 1, + ACTIONS(7352), 1, aux_sym__immediate_decimal_token5, - STATE(3759), 1, + STATE(3797), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(1814), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 3, + ACTIONS(1812), 3, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112710] = 7, - ACTIONS(103), 1, + [113845] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7285), 1, - anon_sym_DQUOTE2, - STATE(3760), 1, + ACTIONS(7354), 1, + anon_sym_if, + ACTIONS(7356), 1, + sym__newline, + ACTIONS(7358), 1, + anon_sym_PIPE, + ACTIONS(7360), 1, + anon_sym_EQ_GT, + STATE(3798), 1, sym_comment, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [112733] = 7, + STATE(4158), 1, + aux_sym_match_pattern_repeat1, + STATE(4891), 1, + sym_match_guard, + [113870] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2875), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7362), 1, anon_sym_LBRACE, - STATE(3247), 1, + STATE(3286), 1, sym__blosure, - STATE(3732), 1, - aux_sym__repeat_newline, - STATE(3761), 1, + STATE(3799), 1, sym_comment, - STATE(3113), 2, + STATE(3914), 1, + aux_sym__repeat_newline, + STATE(3172), 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, + [113893] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2875), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7362), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(3272), 1, + STATE(3290), 1, sym__blosure, - STATE(3763), 1, + STATE(3800), 1, sym_comment, - STATE(3113), 2, + STATE(3172), 2, sym_block, sym_val_closure, - [112804] = 7, + [113916] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2875), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7362), 1, anon_sym_LBRACE, - STATE(3272), 1, + STATE(3290), 1, sym__blosure, - STATE(3735), 1, - aux_sym__repeat_newline, - STATE(3764), 1, + STATE(3801), 1, sym_comment, - STATE(3113), 2, + STATE(3923), 1, + aux_sym__repeat_newline, + STATE(3172), 2, sym_block, sym_val_closure, - [112827] = 6, + [113939] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7364), 1, + sym__newline, + ACTIONS(7366), 1, + anon_sym_SEMI, + ACTIONS(7368), 1, + anon_sym_RPAREN, + STATE(1363), 1, + aux_sym__parenthesized_body_repeat1, + STATE(3802), 1, + sym_comment, + STATE(4215), 1, + aux_sym__block_body_repeat1, + STATE(4628), 1, + aux_sym__repeat_newline, + [113964] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7016), 1, + anon_sym_DOT2, + STATE(3803), 1, + sym_comment, + STATE(3806), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4250), 1, + sym_path, + ACTIONS(1515), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [113985] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7295), 1, + ACTIONS(7370), 1, anon_sym_DOT, - ACTIONS(7297), 1, + ACTIONS(7372), 1, aux_sym__immediate_decimal_token5, - STATE(3765), 1, + STATE(3804), 1, sym_comment, - ACTIONS(1736), 2, + ACTIONS(1754), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1738), 2, + ACTIONS(1756), 2, anon_sym_RBRACK, sym__unquoted_pattern_in_list, - [112848] = 6, + [114006] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1691), 1, sym__unquoted_pattern_in_record, - STATE(3766), 1, + STATE(3805), 1, sym_comment, - STATE(5192), 1, + STATE(5105), 1, sym__immediate_decimal, - ACTIONS(7299), 2, + ACTIONS(7374), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7301), 2, + ACTIONS(7376), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [112869] = 8, - ACTIONS(3), 1, + [114027] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7303), 1, - sym__newline, - ACTIONS(7305), 1, - anon_sym_SEMI, - ACTIONS(7307), 1, - anon_sym_RPAREN, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, - STATE(3767), 1, + ACTIONS(7378), 1, + anon_sym_DOT2, + STATE(4250), 1, + sym_path, + STATE(3806), 2, sym_comment, - STATE(4139), 1, - aux_sym__block_body_repeat1, - STATE(4404), 1, - aux_sym__repeat_newline, - [112894] = 5, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1508), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [114046] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - STATE(3768), 1, + STATE(3807), 1, sym_comment, - STATE(4336), 1, + STATE(4345), 1, sym_block, - ACTIONS(7309), 4, + ACTIONS(7381), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [112913] = 5, + [114065] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - STATE(3769), 1, + STATE(3808), 1, sym_comment, - STATE(4340), 1, + STATE(4350), 1, sym_block, - ACTIONS(7309), 4, + ACTIONS(7381), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [112932] = 8, + [114084] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3653), 1, + ACTIONS(3655), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7131), 1, anon_sym_DOT2, - ACTIONS(7311), 1, + ACTIONS(7383), 1, anon_sym_RBRACE, - STATE(339), 1, + STATE(349), 1, sym_path, - STATE(3770), 1, + STATE(3809), 1, sym_comment, - STATE(3778), 1, + STATE(3814), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4335), 1, + STATE(4148), 1, sym_cell_path, - [112957] = 7, + [114109] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(6929), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2458), 1, sym_path, - STATE(2826), 1, + STATE(2859), 1, sym_cell_path, - STATE(3592), 1, + STATE(3643), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3771), 1, + STATE(3810), 1, sym_comment, - ACTIONS(5600), 2, + ACTIONS(5434), 2, anon_sym_EQ, anon_sym_GT2, - [112980] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5600), 1, - sym__entry_separator, - ACTIONS(5602), 1, - anon_sym_GT2, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3772), 1, - sym_comment, - STATE(3884), 1, - sym_path, - STATE(4335), 1, - sym_cell_path, - [113005] = 8, + [114132] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5249), 1, anon_sym_RBRACK, - ACTIONS(5247), 1, + ACTIONS(5251), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7131), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(349), 1, sym_path, - STATE(3773), 1, + STATE(3811), 1, sym_comment, - STATE(3778), 1, + STATE(3814), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4730), 1, + STATE(4718), 1, sym_cell_path, - [113030] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7317), 1, - sym__entry_separator, - STATE(2234), 1, - aux_sym__types_body_repeat2, - STATE(3774), 1, - sym_comment, - STATE(4751), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7315), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [113053] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3775), 1, - sym_comment, - STATE(3940), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4619), 1, - sym__assignment_pattern_parenthesized, - [113078] = 8, + [114157] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(5434), 1, sym__entry_separator, - ACTIONS(1868), 1, + ACTIONS(5436), 1, anon_sym_GT2, - ACTIONS(7038), 1, + ACTIONS(7077), 1, anon_sym_DOT2, - STATE(3640), 1, + STATE(3756), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3776), 1, + STATE(3812), 1, sym_comment, - STATE(3884), 1, + STATE(3934), 1, sym_path, - STATE(4102), 1, + STATE(4148), 1, sym_cell_path, - [113103] = 8, + [114182] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1882), 1, + ACTIONS(6575), 1, + anon_sym_LPAREN2, + ACTIONS(7389), 1, sym__entry_separator, - ACTIONS(1884), 1, - anon_sym_GT2, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3777), 1, + STATE(2229), 1, + aux_sym__types_body_repeat2, + STATE(3813), 1, sym_comment, - STATE(3884), 1, - sym_path, - STATE(4176), 1, - sym_cell_path, - [113128] = 7, + STATE(4760), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7387), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [114205] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1460), 1, + ACTIONS(1517), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7131), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(349), 1, sym_path, - STATE(3778), 1, + STATE(3814), 1, sym_comment, - STATE(3797), 1, + STATE(3832), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1458), 2, + ACTIONS(1515), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [113151] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1858), 1, - sym__entry_separator, - ACTIONS(1860), 1, - anon_sym_GT2, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3779), 1, - sym_comment, - STATE(3884), 1, - sym_path, - STATE(4214), 1, - sym_cell_path, - [113176] = 6, + [114228] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2152), 1, sym__entry_separator, - ACTIONS(7320), 1, + ACTIONS(7392), 1, anon_sym_DOT_DOT2, - STATE(3780), 1, + STATE(3815), 1, sym_comment, ACTIONS(2154), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(7322), 2, + ACTIONS(7394), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [113197] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7324), 1, - anon_sym_DQUOTE2, - STATE(3781), 1, - sym_comment, - STATE(3785), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [113220] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4147), 1, - aux_sym_unquoted_token2, - ACTIONS(6430), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, - aux_sym__immediate_decimal_token2, - STATE(3782), 1, - sym_comment, - STATE(4133), 1, - sym__immediate_decimal, - ACTIONS(6762), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [113243] = 7, + [114249] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4147), 1, - aux_sym_unquoted_token2, - ACTIONS(6478), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, - aux_sym__immediate_decimal_token2, - STATE(3783), 1, + ACTIONS(1856), 1, + sym__entry_separator, + ACTIONS(1858), 1, + anon_sym_GT2, + ACTIONS(7077), 1, + anon_sym_DOT2, + STATE(3756), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3816), 1, sym_comment, - STATE(4996), 1, - sym__immediate_decimal, - ACTIONS(6590), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [113266] = 8, + STATE(3934), 1, + sym_path, + STATE(4186), 1, + sym_cell_path, + [114274] = 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, + ACTIONS(1892), 1, + sym__entry_separator, + ACTIONS(1894), 1, + anon_sym_GT2, + ACTIONS(7077), 1, + anon_sym_DOT2, + STATE(3756), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3817), 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, + STATE(3934), 1, + sym_path, + STATE(4240), 1, + sym_cell_path, + [114299] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7326), 1, - anon_sym_DQUOTE2, - STATE(3785), 1, + ACTIONS(461), 1, + anon_sym_RPAREN, + ACTIONS(7364), 1, + sym__newline, + ACTIONS(7366), 1, + anon_sym_SEMI, + STATE(1363), 1, + aux_sym__parenthesized_body_repeat1, + STATE(3818), 1, sym_comment, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [113314] = 8, + STATE(4176), 1, + aux_sym__block_body_repeat1, + STATE(4628), 1, + aux_sym__repeat_newline, + [114324] = 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, + ACTIONS(1888), 1, + sym__entry_separator, + ACTIONS(1890), 1, + anon_sym_GT2, + ACTIONS(7077), 1, + anon_sym_DOT2, + STATE(3756), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3819), 1, sym_comment, - STATE(3940), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4405), 1, - sym__assignment_pattern_parenthesized, - [113339] = 7, + STATE(3934), 1, + sym_path, + STATE(4261), 1, + sym_cell_path, + [114349] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2875), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7362), 1, anon_sym_LBRACE, - STATE(3218), 1, + STATE(3280), 1, sym__blosure, - STATE(3763), 1, + STATE(3800), 1, aux_sym__repeat_newline, - STATE(3787), 1, + STATE(3820), 1, sym_comment, - STATE(3113), 2, + STATE(3172), 2, sym_block, sym_val_closure, - [113362] = 7, + [114372] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2875), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7362), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(3224), 1, + STATE(3329), 1, sym__blosure, - STATE(3788), 1, + STATE(3821), 1, sym_comment, - STATE(3113), 2, + STATE(3172), 2, sym_block, sym_val_closure, - [113385] = 7, + [114395] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2875), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7362), 1, anon_sym_LBRACE, - STATE(3224), 1, + STATE(3329), 1, sym__blosure, - STATE(3789), 1, + STATE(3822), 1, sym_comment, - STATE(3824), 1, + STATE(3856), 1, aux_sym__repeat_newline, - STATE(3113), 2, + STATE(3172), 2, sym_block, sym_val_closure, - [113408] = 7, + [114418] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2875), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7362), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(507), 1, aux_sym__repeat_newline, - STATE(3225), 1, + STATE(3330), 1, sym__blosure, - STATE(3790), 1, + STATE(3823), 1, sym_comment, - STATE(3113), 2, + STATE(3172), 2, sym_block, sym_val_closure, - [113431] = 3, + [114441] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(3791), 1, + ACTIONS(7328), 1, + anon_sym_LPAREN, + ACTIONS(7396), 1, + anon_sym_DQUOTE2, + STATE(3824), 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, + STATE(3830), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4145), 1, + sym_expr_interpolated, + ACTIONS(7330), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [114464] = 8, + ACTIONS(103), 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, + ACTIONS(2950), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7123), 1, + sym_identifier, + ACTIONS(7125), 1, + anon_sym_DOLLAR, + STATE(2828), 1, + sym_val_variable, + STATE(3825), 1, sym_comment, - STATE(4188), 1, - aux_sym__block_body_repeat1, - STATE(4404), 1, - aux_sym__repeat_newline, - [113471] = 5, - ACTIONS(3), 1, + STATE(4021), 1, + sym__variable_name, + STATE(4631), 1, + sym__assignment_pattern, + [114489] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7067), 1, - aux_sym__immediate_decimal_token5, - STATE(3793), 1, + ACTIONS(4157), 1, + aux_sym_unquoted_token2, + ACTIONS(6498), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6751), 1, + aux_sym__immediate_decimal_token2, + STATE(3826), 1, sym_comment, - ACTIONS(1736), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [113490] = 8, + STATE(4211), 1, + sym__immediate_decimal, + ACTIONS(6753), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [114512] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4157), 1, + aux_sym_unquoted_token2, + ACTIONS(6528), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6789), 1, + aux_sym__immediate_decimal_token2, + STATE(3827), 1, + sym_comment, + STATE(5061), 1, + sym__immediate_decimal, + ACTIONS(6791), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [114535] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7069), 1, + ACTIONS(7131), 1, anon_sym_DOT2, - ACTIONS(7328), 1, + ACTIONS(7398), 1, anon_sym_RBRACE, - ACTIONS(7330), 1, + ACTIONS(7400), 1, sym__entry_separator, - STATE(339), 1, + STATE(349), 1, sym_path, - STATE(3778), 1, + STATE(3814), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3794), 1, + STATE(3828), 1, sym_comment, - STATE(4682), 1, + STATE(4692), 1, sym_cell_path, - [113515] = 3, + [114560] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3795), 1, + ACTIONS(2950), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7123), 1, + sym_identifier, + ACTIONS(7125), 1, + anon_sym_DOLLAR, + STATE(2828), 1, + sym_val_variable, + STATE(3829), 1, sym_comment, - ACTIONS(1543), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113530] = 3, + STATE(4021), 1, + sym__variable_name, + STATE(4654), 1, + sym__assignment_pattern, + [114585] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(3796), 1, + ACTIONS(7328), 1, + anon_sym_LPAREN, + ACTIONS(7402), 1, + anon_sym_DQUOTE2, + STATE(3830), 1, sym_comment, - ACTIONS(1466), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113545] = 6, + STATE(3847), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4145), 1, + sym_expr_interpolated, + ACTIONS(7330), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [114608] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1756), 1, + sym__unquoted_pattern, + ACTIONS(7129), 1, + aux_sym__immediate_decimal_token5, + STATE(3831), 1, + sym_comment, + ACTIONS(1754), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [114627] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1526), 1, + ACTIONS(1510), 1, sym__entry_separator, - ACTIONS(7332), 1, + ACTIONS(7404), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(349), 1, sym_path, - ACTIONS(1524), 2, + ACTIONS(1508), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(3797), 2, + STATE(3832), 2, sym_comment, aux_sym__where_predicate_lhs_repeat1, - [113566] = 3, + [114648] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1814), 1, + sym__unquoted_pattern, + ACTIONS(7407), 1, + aux_sym__immediate_decimal_token5, + STATE(3833), 1, + sym_comment, + ACTIONS(1812), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [114667] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(3798), 1, + ACTIONS(6498), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6751), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7409), 1, + aux_sym_unquoted_token2, + STATE(3834), 1, sym_comment, - ACTIONS(1470), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113581] = 3, + STATE(4211), 1, + sym__immediate_decimal, + ACTIONS(6753), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [114690] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(3799), 1, + ACTIONS(6528), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6789), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7409), 1, + aux_sym_unquoted_token2, + STATE(3835), 1, sym_comment, - ACTIONS(1474), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113596] = 3, + STATE(5061), 1, + sym__immediate_decimal, + ACTIONS(6791), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [114713] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(3800), 1, + STATE(3836), 1, sym_comment, - ACTIONS(1514), 6, + ACTIONS(1519), 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, - anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - ACTIONS(7335), 1, - aux_sym__immediate_decimal_token5, - STATE(3801), 1, - sym_comment, - ACTIONS(1802), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [113630] = 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, - sym_comment, - STATE(3933), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4389), 1, - sym__assignment_pattern, - [113655] = 5, + [114728] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7339), 1, + ACTIONS(7413), 1, anon_sym_AT, - STATE(4624), 1, + STATE(4724), 1, sym_attribute, - STATE(3803), 2, + STATE(3837), 2, sym_comment, aux_sym_attribute_list_repeat1, - ACTIONS(7337), 3, + ACTIONS(7411), 3, anon_sym_export, anon_sym_def, anon_sym_extern, - [113674] = 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(3804), 1, - sym_comment, - STATE(3933), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4390), 1, - sym__assignment_pattern, - [113699] = 7, - ACTIONS(103), 1, + [114747] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6430), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7342), 1, - aux_sym_unquoted_token2, - STATE(3805), 1, + ACTIONS(4149), 1, + anon_sym_DOT_DOT2, + ACTIONS(7409), 1, + sym__unquoted_pattern, + STATE(3838), 1, sym_comment, - STATE(4133), 1, - sym__immediate_decimal, - ACTIONS(6762), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [113722] = 7, + ACTIONS(4151), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7336), 2, + sym_filesize_unit, + sym_duration_unit, + [114768] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6478), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7342), 1, - aux_sym_unquoted_token2, - STATE(3806), 1, + STATE(3839), 1, sym_comment, - STATE(4996), 1, - sym__immediate_decimal, - ACTIONS(6590), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [113745] = 6, + ACTIONS(1523), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [114783] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__entry_separator, - ACTIONS(7344), 1, - anon_sym_DOT_DOT2, - STATE(3807), 1, + STATE(3840), 1, sym_comment, - ACTIONS(2102), 2, + ACTIONS(1527), 6, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7346), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113766] = 6, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [114798] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(2108), 1, sym__entry_separator, - ACTIONS(7348), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT2, - STATE(3808), 1, + STATE(3841), 1, sym_comment, - ACTIONS(2078), 2, + ACTIONS(2110), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(7350), 2, + ACTIONS(7418), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [113787] = 6, + [114819] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(2116), 1, sym__entry_separator, - ACTIONS(7352), 1, + ACTIONS(7420), 1, anon_sym_DOT_DOT2, - STATE(3809), 1, + STATE(3842), 1, sym_comment, - ACTIONS(2122), 2, + ACTIONS(2118), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(7354), 2, + ACTIONS(7422), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [113808] = 5, + [114840] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7137), 1, - aux_sym__immediate_decimal_token5, - STATE(3810), 1, - sym_comment, - ACTIONS(1736), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [113827] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(7342), 1, - sym__unquoted_pattern, - STATE(3811), 1, + STATE(3843), 1, sym_comment, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7266), 2, - sym_filesize_unit, - sym_duration_unit, - [113848] = 5, + ACTIONS(1496), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [114855] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1440), 1, + STATE(3844), 1, + sym_comment, + ACTIONS(1500), 6, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(7356), 1, + sym__table_head_separator, anon_sym_QMARK2, - STATE(3812), 1, + anon_sym_BANG, + anon_sym_DOT2, + [114870] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3845), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(1504), 6, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - [113867] = 5, + [114885] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7358), 1, - aux_sym__immediate_decimal_token5, - STATE(3813), 1, + ACTIONS(2124), 1, + sym__entry_separator, + ACTIONS(7424), 1, + anon_sym_DOT_DOT2, + STATE(3846), 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(2126), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7426), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114906] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7360), 1, + ACTIONS(7428), 1, anon_sym_LPAREN, - ACTIONS(7366), 1, + ACTIONS(7434), 1, anon_sym_DQUOTE2, - STATE(4205), 1, + STATE(4145), 1, sym_expr_interpolated, - ACTIONS(7363), 2, + ACTIONS(7431), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - STATE(3814), 2, + STATE(3847), 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, + [114927] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, + ACTIONS(2738), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, + ACTIONS(2740), 1, anon_sym_COLON2, - ACTIONS(5164), 1, + ACTIONS(5195), 1, anon_sym_DOLLAR, - ACTIONS(7044), 1, + ACTIONS(7123), 1, sym_identifier, - STATE(3816), 1, - sym_comment, - STATE(4060), 1, + STATE(2828), 1, sym_val_variable, - STATE(5164), 1, + STATE(3848), 1, + sym_comment, + STATE(5215), 1, sym__variable_name, - [113957] = 7, + [114952] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4303), 1, + ACTIONS(7272), 1, + aux_sym__immediate_decimal_token5, + STATE(3849), 1, + sym_comment, + ACTIONS(1754), 2, 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, + anon_sym_LPAREN2, + ACTIONS(1756), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [114971] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7436), 1, + aux_sym__immediate_decimal_token5, + STATE(3850), 1, sym_comment, - ACTIONS(4301), 2, + ACTIONS(1812), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1814), 3, sym__newline, anon_sym_SEMI, - [113980] = 6, + sym__unquoted_pattern, + [114990] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1458), 1, + sym__entry_separator, + ACTIONS(7438), 1, + anon_sym_QMARK2, + STATE(3851), 1, + sym_comment, + ACTIONS(1456), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [115009] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7328), 1, + anon_sym_LPAREN, + ACTIONS(7440), 1, + anon_sym_DQUOTE2, + STATE(3793), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3852), 1, + sym_comment, + STATE(4145), 1, + sym_expr_interpolated, + ACTIONS(7330), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [115032] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1615), 1, sym__unquoted_pattern, - STATE(3818), 1, + STATE(3853), 1, sym_comment, - STATE(4872), 1, + STATE(5144), 1, sym__immediate_decimal, - ACTIONS(6478), 2, + ACTIONS(6528), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, + ACTIONS(6530), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114001] = 7, + [115053] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7370), 1, - anon_sym_DQUOTE2, - STATE(3819), 1, + ACTIONS(4328), 1, + sym__space, + ACTIONS(7442), 1, + sym_long_flag_identifier, + ACTIONS(7444), 1, + anon_sym_EQ2, + STATE(3034), 1, + sym__flag_equals_value, + STATE(3854), 1, sym_comment, - STATE(3823), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114024] = 8, + ACTIONS(4326), 2, + sym__newline, + anon_sym_SEMI, + [115076] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7303), 1, + ACTIONS(7364), 1, sym__newline, - ACTIONS(7305), 1, + ACTIONS(7366), 1, anon_sym_SEMI, - ACTIONS(7372), 1, + ACTIONS(7446), 1, anon_sym_RPAREN, - STATE(1364), 1, + STATE(1363), 1, aux_sym__parenthesized_body_repeat1, - STATE(3820), 1, + STATE(3855), 1, sym_comment, - STATE(4154), 1, + STATE(4218), 1, aux_sym__block_body_repeat1, - STATE(4404), 1, + STATE(4628), 1, + aux_sym__repeat_newline, + [115101] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(7362), 1, + anon_sym_LBRACE, + STATE(507), 1, aux_sym__repeat_newline, - [114049] = 7, + STATE(3276), 1, + sym__blosure, + STATE(3856), 1, + sym_comment, + STATE(3172), 2, + sym_block, + sym_val_closure, + [115124] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7328), 1, + anon_sym_LPAREN, + ACTIONS(7448), 1, + anon_sym_DQUOTE2, + STATE(3857), 1, + sym_comment, + STATE(3861), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4145), 1, + sym_expr_interpolated, + ACTIONS(7330), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [115147] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6430), 1, + ACTIONS(6498), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6751), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6902), 1, + ACTIONS(6953), 1, aux_sym_unquoted_token2, - STATE(3821), 1, + STATE(3858), 1, sym_comment, - STATE(4133), 1, + STATE(4211), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6753), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114072] = 7, + [115170] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6478), 1, + ACTIONS(6528), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6789), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6902), 1, + ACTIONS(6953), 1, aux_sym_unquoted_token2, - STATE(3822), 1, + STATE(3859), 1, sym_comment, - STATE(4996), 1, + STATE(5061), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6791), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114095] = 7, + [115193] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1458), 1, + sym__entry_separator, + ACTIONS(7438), 1, + anon_sym_BANG, + STATE(3860), 1, + sym_comment, + ACTIONS(1456), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [115212] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7328), 1, anon_sym_LPAREN, - ACTIONS(7374), 1, + ACTIONS(7450), 1, anon_sym_DQUOTE2, - STATE(3814), 1, + STATE(3847), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3823), 1, + STATE(3861), 1, sym_comment, - STATE(4205), 1, + STATE(4145), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7330), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114118] = 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(3263), 1, - sym__blosure, - STATE(3824), 1, - sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [114141] = 7, + [115235] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7328), 1, anon_sym_LPAREN, - ACTIONS(7376), 1, + ACTIONS(7452), 1, anon_sym_DQUOTE2, - STATE(3825), 1, + STATE(3862), 1, sym_comment, - STATE(3828), 1, + STATE(3865), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4145), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7330), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114164] = 7, + [115258] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5048), 1, + ACTIONS(5072), 1, aux_sym_unquoted_token2, - ACTIONS(6430), 1, + ACTIONS(6498), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6751), 1, aux_sym__immediate_decimal_token2, - STATE(3826), 1, + STATE(3863), 1, sym_comment, - STATE(4133), 1, + STATE(4211), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6753), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114187] = 7, + [115281] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5048), 1, + ACTIONS(5072), 1, aux_sym_unquoted_token2, - ACTIONS(6478), 1, + ACTIONS(6528), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6789), 1, aux_sym__immediate_decimal_token2, - STATE(3827), 1, + STATE(3864), 1, sym_comment, - STATE(4996), 1, + STATE(5061), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6791), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114210] = 7, + [115304] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7328), 1, anon_sym_LPAREN, - ACTIONS(7378), 1, + ACTIONS(7454), 1, anon_sym_DQUOTE2, - STATE(3814), 1, + STATE(3847), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3828), 1, + STATE(3865), 1, sym_comment, - STATE(4205), 1, + STATE(4145), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7330), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114233] = 7, + [115327] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7328), 1, anon_sym_LPAREN, - ACTIONS(7380), 1, + ACTIONS(7456), 1, anon_sym_DQUOTE2, - STATE(3829), 1, + STATE(3866), 1, sym_comment, - STATE(3832), 1, + STATE(3871), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4145), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7330), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114256] = 7, + [115350] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7131), 1, + anon_sym_DOT2, + ACTIONS(7458), 1, + anon_sym_RBRACE, + ACTIONS(7460), 1, + sym__entry_separator, + STATE(349), 1, + sym_path, + STATE(3814), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3867), 1, + sym_comment, + STATE(4673), 1, + sym_cell_path, + [115375] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5298), 1, + anon_sym_RBRACK, + ACTIONS(5300), 1, + sym__entry_separator, + ACTIONS(7131), 1, + anon_sym_DOT2, + STATE(349), 1, + sym_path, + STATE(3814), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3868), 1, + sym_comment, + STATE(4769), 1, + sym_cell_path, + [115400] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4969), 1, + ACTIONS(5017), 1, aux_sym_unquoted_token2, - ACTIONS(6430), 1, + ACTIONS(6498), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6751), 1, aux_sym__immediate_decimal_token2, - STATE(3830), 1, + STATE(3869), 1, sym_comment, - STATE(4133), 1, + STATE(4211), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6753), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114279] = 7, + [115423] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4969), 1, + ACTIONS(5017), 1, aux_sym_unquoted_token2, - ACTIONS(6478), 1, + ACTIONS(6528), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6789), 1, aux_sym__immediate_decimal_token2, - STATE(3831), 1, + STATE(3870), 1, sym_comment, - STATE(4996), 1, + STATE(5061), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6791), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114302] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3832), 1, - 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, - sym_comment, - STATE(3834), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114348] = 7, + [115446] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7328), 1, anon_sym_LPAREN, - ACTIONS(7386), 1, + ACTIONS(7462), 1, anon_sym_DQUOTE2, - STATE(3814), 1, + STATE(3847), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3834), 1, + STATE(3871), 1, sym_comment, - STATE(4205), 1, + STATE(4145), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7330), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114371] = 7, + [115469] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7328), 1, anon_sym_LPAREN, - ACTIONS(7388), 1, + ACTIONS(7464), 1, anon_sym_DQUOTE2, - STATE(3835), 1, + STATE(3872), 1, sym_comment, - STATE(3837), 1, + STATE(3873), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4145), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7330), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114394] = 8, - ACTIONS(103), 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, - sym_comment, - STATE(4654), 1, - sym_cell_path, - [114419] = 7, + [115492] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7328), 1, anon_sym_LPAREN, - ACTIONS(7394), 1, + ACTIONS(7466), 1, anon_sym_DQUOTE2, - STATE(3814), 1, + STATE(3847), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3837), 1, + STATE(3873), 1, sym_comment, - STATE(4205), 1, + STATE(4145), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7330), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114442] = 6, + [115515] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7396), 1, + ACTIONS(7468), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7398), 1, + ACTIONS(7470), 1, aux_sym__immediate_decimal_token5, - STATE(3838), 1, + STATE(3874), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(1746), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1728), 2, + ACTIONS(1748), 2, anon_sym_RBRACE, sym__unquoted_pattern_in_record, - [114463] = 7, + [115536] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7328), 1, anon_sym_LPAREN, - ACTIONS(7400), 1, + ACTIONS(7472), 1, anon_sym_DQUOTE2, - STATE(3839), 1, + STATE(3875), 1, sym_comment, - STATE(3840), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114486] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7402), 1, - anon_sym_DQUOTE2, - STATE(3814), 1, + STATE(3878), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3840), 1, - sym_comment, - STATE(4205), 1, + STATE(4145), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7330), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114509] = 7, + [115559] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6616), 1, + ACTIONS(6693), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(7171), 1, + ACTIONS(7249), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7404), 1, + ACTIONS(7474), 1, aux_sym__immediate_decimal_token2, - STATE(3841), 1, + STATE(3876), 1, sym_comment, - STATE(4323), 1, + STATE(4346), 1, sym__immediate_decimal, - ACTIONS(7406), 2, + ACTIONS(7476), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114532] = 7, + [115582] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6616), 1, + ACTIONS(6693), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(7299), 1, + ACTIONS(7374), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7408), 1, + ACTIONS(7478), 1, aux_sym__immediate_decimal_token2, - STATE(3842), 1, + STATE(3877), 1, sym_comment, - STATE(5077), 1, + STATE(5065), 1, sym__immediate_decimal, - ACTIONS(7410), 2, + ACTIONS(7480), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114555] = 6, + [115605] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7328), 1, + anon_sym_LPAREN, + ACTIONS(7482), 1, + anon_sym_DQUOTE2, + STATE(3847), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3878), 1, + sym_comment, + STATE(4145), 1, + sym_expr_interpolated, + ACTIONS(7330), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [115628] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6616), 1, + ACTIONS(6693), 1, sym__unquoted_pattern_in_record, - ACTIONS(7412), 1, + ACTIONS(7484), 1, anon_sym_DOT_DOT2, - STATE(3843), 1, + STATE(3879), 1, sym_comment, - ACTIONS(7414), 2, + ACTIONS(7486), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7416), 2, + ACTIONS(7488), 2, sym_filesize_unit, sym_duration_unit, - [114576] = 6, + [115649] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7328), 1, + anon_sym_LPAREN, + ACTIONS(7490), 1, + anon_sym_DQUOTE2, + STATE(3880), 1, + sym_comment, + STATE(3881), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4145), 1, + sym_expr_interpolated, + ACTIONS(7330), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [115672] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7328), 1, + anon_sym_LPAREN, + ACTIONS(7492), 1, + anon_sym_DQUOTE2, + STATE(3847), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3881), 1, + sym_comment, + STATE(4145), 1, + sym_expr_interpolated, + ACTIONS(7330), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [115695] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7418), 1, + ACTIONS(7494), 1, sym_long_flag_identifier, - ACTIONS(7420), 1, + ACTIONS(7496), 1, anon_sym_EQ2, - STATE(3844), 1, + STATE(3882), 1, sym_comment, - STATE(4599), 1, + STATE(4570), 1, sym__flag_equals_value, - ACTIONS(4303), 3, + ACTIONS(4328), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [114597] = 5, + [115716] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - STATE(3845), 1, + STATE(3883), 1, sym_comment, - STATE(4337), 1, + STATE(4362), 1, sym_block, - ACTIONS(7422), 4, + ACTIONS(7498), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [114616] = 6, + [115735] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, + ACTIONS(1716), 1, sym__entry_separator, - ACTIONS(7424), 1, + ACTIONS(7500), 1, anon_sym_DOT_DOT2, - STATE(3846), 1, + STATE(3884), 1, sym_comment, - ACTIONS(1619), 2, + ACTIONS(1629), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(7426), 2, + ACTIONS(7502), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114637] = 8, - ACTIONS(103), 1, + [115756] = 6, + 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(57), 1, + anon_sym_AT, + STATE(3837), 1, + aux_sym_attribute_list_repeat1, + STATE(3885), 1, sym_comment, - STATE(4678), 1, - sym_cell_path, - [114662] = 6, + STATE(4724), 1, + sym_attribute, + ACTIONS(7504), 3, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + [115777] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, + ACTIONS(1716), 1, sym__space, - ACTIONS(7238), 1, + ACTIONS(7309), 1, anon_sym_DOT_DOT2, - STATE(3848), 1, + STATE(3886), 1, sym_comment, - ACTIONS(1619), 2, + ACTIONS(1629), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7240), 2, + ACTIONS(7311), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114683] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7141), 1, - aux_sym__immediate_decimal_token5, - STATE(3849), 1, - sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1738), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [114702] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7428), 1, - aux_sym__immediate_decimal_token5, - STATE(3850), 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, - [114721] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7430), 1, - anon_sym_DOT, - ACTIONS(7432), 1, - aux_sym__immediate_decimal_token5, - STATE(3851), 1, - sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1738), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [114742] = 5, + [115798] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7042), 1, + ACTIONS(7193), 1, aux_sym__immediate_decimal_token5, - STATE(3852), 1, + STATE(3887), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1756), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 3, + ACTIONS(1754), 3, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114761] = 6, + [115817] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2152), 1, sym__space, - ACTIONS(7434), 1, + ACTIONS(7506), 1, anon_sym_DOT_DOT2, - STATE(3853), 1, + STATE(3888), 1, sym_comment, ACTIONS(2154), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7436), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114782] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3854), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(749), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [114799] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3855), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [114816] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3856), 1, - sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(851), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [114833] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7272), 1, - anon_sym_DOT_DOT, - ACTIONS(7274), 1, - anon_sym_DOT_DOT2, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, - sym__entry_separator, - STATE(3857), 1, - sym_comment, - ACTIONS(7276), 2, + ACTIONS(7508), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114856] = 7, + [115838] = 5, 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(7171), 1, + aux_sym__immediate_decimal_token5, + STATE(3889), 1, sym_comment, - ACTIONS(7276), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114879] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6466), 1, + ACTIONS(1754), 2, anon_sym_LPAREN2, - ACTIONS(7317), 1, - sym__entry_separator, - STATE(2232), 1, - aux_sym__types_body_repeat2, - STATE(3859), 1, - sym_comment, - STATE(4751), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7448), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [114902] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2152), 1, sym__entry_separator, - ACTIONS(7450), 1, - anon_sym_DOT_DOT2, - STATE(3860), 1, - sym_comment, - ACTIONS(2154), 2, + ACTIONS(1756), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7452), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114923] = 6, + sym__unquoted_pattern_in_list, + [115857] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__entry_separator, - ACTIONS(7454), 1, - anon_sym_DOT_DOT2, - STATE(3861), 1, - sym_comment, - ACTIONS(2102), 2, - anon_sym_RBRACK, + ACTIONS(7342), 1, anon_sym_DOT_DOT, - ACTIONS(7456), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114944] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2076), 1, - sym__entry_separator, - ACTIONS(7458), 1, + ACTIONS(7344), 1, anon_sym_DOT_DOT2, - STATE(3862), 1, - sym_comment, - ACTIONS(2078), 2, + ACTIONS(7510), 1, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7460), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114965] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(7512), 1, sym__entry_separator, - ACTIONS(7462), 1, - anon_sym_DOT_DOT2, - STATE(3863), 1, - sym_comment, - ACTIONS(2122), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7464), 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, - sym_comment, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [115009] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3865), 1, - sym_comment, - STATE(3915), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4250), 1, - sym__assignment_pattern, - [115034] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3866), 1, - sym_comment, - STATE(3915), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4251), 1, - sym__assignment_pattern, - [115059] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3867), 1, - sym_comment, - STATE(3915), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4252), 1, - sym__assignment_pattern, - [115084] = 6, - 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, - 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, - 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, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3871), 1, - sym_comment, - STATE(4289), 1, - sym_block, - ACTIONS(7480), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [115166] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2120), 1, - sym__space, - ACTIONS(7482), 1, - anon_sym_DOT_DOT2, - STATE(3872), 1, + STATE(3890), 1, sym_comment, - ACTIONS(2122), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7484), 2, + ACTIONS(7346), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115187] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6808), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7486), 1, - anon_sym_DOT, - STATE(3873), 1, - sym_comment, - ACTIONS(1736), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115206] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - STATE(3874), 1, - sym_comment, - STATE(5199), 1, - sym__immediate_decimal, - ACTIONS(7299), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7301), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [115227] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3875), 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(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(3876), 1, - sym_comment, - STATE(3957), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4250), 1, - sym__assignment_pattern, - [115271] = 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(3877), 1, - sym_comment, - STATE(3957), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4251), 1, - sym__assignment_pattern, - [115296] = 8, + [115880] = 5, 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(3878), 1, - sym_comment, - STATE(3957), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4252), 1, - sym__assignment_pattern, - [115321] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3879), 1, - sym_comment, - STATE(4099), 1, - sym_block, - ACTIONS(7488), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [115340] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - ACTIONS(7490), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7492), 1, + ACTIONS(7514), 1, aux_sym__immediate_decimal_token5, - STATE(3880), 1, - sym_comment, - ACTIONS(1726), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115361] = 8, - 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(3881), 1, - sym_comment, - STATE(4014), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4619), 1, - sym__assignment_pattern_parenthesized, - [115386] = 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(3882), 1, + STATE(3891), 1, sym_comment, - STATE(4014), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4371), 1, - sym__assignment_pattern_parenthesized, - [115411] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1440), 1, + ACTIONS(1812), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(7356), 1, - anon_sym_BANG, - STATE(3883), 1, - sym_comment, - ACTIONS(1438), 4, + ACTIONS(1814), 3, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_DOT_DOT, - anon_sym_DOT2, - [115430] = 4, + sym__unquoted_pattern_in_list, + [115899] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1464), 1, - sym__entry_separator, - STATE(3884), 1, - sym_comment, - ACTIONS(1462), 4, - anon_sym_RBRACK, - anon_sym_GT2, + ACTIONS(7344), 1, + anon_sym_DOT_DOT2, + ACTIONS(7348), 1, 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, + ACTIONS(7516), 1, anon_sym_RBRACK, + ACTIONS(7519), 1, sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [115538] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3890), 1, - sym_comment, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [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, - anon_sym_DOT_DOT2, STATE(3892), 1, sym_comment, - ACTIONS(7504), 2, + ACTIONS(7346), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115588] = 7, - ACTIONS(3), 1, + [115922] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, - anon_sym_DOLLAR, + ACTIONS(6575), 1, + anon_sym_LPAREN2, + ACTIONS(7389), 1, + sym__entry_separator, + STATE(2236), 1, + aux_sym__types_body_repeat2, STATE(3893), 1, sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4307), 1, - sym__assignment_pattern, - [115610] = 3, - ACTIONS(3), 1, + STATE(4760), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7522), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [115945] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7524), 1, + anon_sym_DOT, + ACTIONS(7526), 1, + aux_sym__immediate_decimal_token5, 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, + ACTIONS(1754), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1756), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [115966] = 4, 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, - anon_sym_LBRACE, - [115638] = 7, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(741), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [115983] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1882), 1, - sym__table_head_separator, - ACTIONS(7510), 1, - anon_sym_DOT2, STATE(3896), 1, sym_comment, - STATE(4059), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4641), 1, - sym_path, - STATE(4963), 1, - sym_cell_path, - [115660] = 7, + ACTIONS(763), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(765), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [116000] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7512), 1, - anon_sym_EQ, - ACTIONS(7514), 1, - anon_sym_COLON, STATE(3897), 1, sym_comment, - STATE(4423), 1, - aux_sym__repeat_newline, - STATE(5002), 1, - sym_param_type, - [115682] = 3, + ACTIONS(789), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(791), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [116017] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3851), 1, + anon_sym_LBRACE, STATE(3898), 1, sym_comment, - ACTIONS(6133), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [115696] = 7, - ACTIONS(3), 1, + STATE(4335), 1, + sym_block, + ACTIONS(7528), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [116036] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__table_head_separator, - ACTIONS(7510), 1, - anon_sym_DOT2, + ACTIONS(2108), 1, + sym__space, + ACTIONS(7530), 1, + anon_sym_DOT_DOT2, STATE(3899), 1, sym_comment, - STATE(4059), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4641), 1, - sym_path, - STATE(5045), 1, - sym_cell_path, - [115718] = 4, - ACTIONS(3), 1, + ACTIONS(2110), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7532), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116057] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, + ACTIONS(2116), 1, + sym__space, + ACTIONS(7534), 1, + anon_sym_DOT_DOT2, STATE(3900), 1, sym_comment, - ACTIONS(968), 4, - anon_sym_if, + ACTIONS(2118), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115734] = 6, + anon_sym_SEMI, + ACTIONS(7536), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116078] = 6, 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, + ACTIONS(2124), 1, + sym__space, + ACTIONS(7538), 1, + anon_sym_DOT_DOT2, STATE(3901), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [115754] = 5, - ACTIONS(3), 1, + ACTIONS(2126), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7540), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116099] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, + ACTIONS(2152), 1, + sym__entry_separator, + ACTIONS(7542), 1, + anon_sym_DOT_DOT2, 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(2154), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7544), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116120] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2128), 1, + ACTIONS(2108), 1, sym__entry_separator, - ACTIONS(7518), 1, - anon_sym_LBRACK2, + ACTIONS(7546), 1, + anon_sym_DOT_DOT2, STATE(3903), 1, sym_comment, - ACTIONS(2130), 3, + ACTIONS(2110), 2, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT, - [115790] = 4, + ACTIONS(7548), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116141] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2116), 1, + sym__entry_separator, + ACTIONS(7550), 1, + anon_sym_DOT_DOT2, STATE(3904), 1, sym_comment, - ACTIONS(2501), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2503), 3, + ACTIONS(2118), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - sym__unquoted_pattern_in_list, - [115806] = 7, + anon_sym_DOT_DOT, + ACTIONS(7552), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116162] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7030), 1, + ACTIONS(2124), 1, sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(7554), 1, + anon_sym_DOT_DOT2, STATE(3905), 1, sym_comment, - STATE(4478), 1, - sym_cell_path, - [115828] = 7, - ACTIONS(103), 1, + ACTIONS(2126), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7556), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116183] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6963), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1615), 1, + sym__unquoted_pattern_in_record, STATE(3906), 1, sym_comment, - STATE(4513), 1, - sym_cell_path, - [115850] = 7, - ACTIONS(103), 1, + STATE(5032), 1, + sym__immediate_decimal, + ACTIONS(7374), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7376), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [116204] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5600), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(3851), 1, + anon_sym_LBRACE, STATE(3907), 1, sym_comment, - STATE(4335), 1, - sym_cell_path, - [115872] = 4, + STATE(4140), 1, + sym_block, + ACTIONS(7558), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [116223] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, + ACTIONS(7560), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7562), 1, + aux_sym__immediate_decimal_token5, STATE(3908), 1, sym_comment, - ACTIONS(2575), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115888] = 4, + ACTIONS(1746), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1748), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [116244] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, + ACTIONS(3851), 1, + anon_sym_LBRACE, STATE(3909), 1, sym_comment, - ACTIONS(1974), 4, - anon_sym_if, + STATE(4142), 1, + sym_block, + ACTIONS(7558), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115904] = 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [116263] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7520), 1, - anon_sym_SQUOTE2, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7123), 1, + sym_identifier, + ACTIONS(7237), 1, + anon_sym_DOLLAR, + STATE(2783), 1, + sym__variable_name, + STATE(2828), 1, + sym_val_variable, STATE(3910), 1, sym_comment, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, - sym_expr_interpolated, - [115926] = 6, + STATE(4290), 1, + sym__assignment_pattern, + [116288] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACE, - ACTIONS(7522), 1, - anon_sym_DOT_DOT2, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7123), 1, + sym_identifier, + ACTIONS(7125), 1, + anon_sym_DOLLAR, + STATE(2828), 1, + sym_val_variable, STATE(3911), 1, sym_comment, - ACTIONS(7524), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115946] = 6, + STATE(4006), 1, + sym__variable_name, + STATE(4292), 1, + sym__assignment_pattern, + [116313] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7526), 1, - anon_sym_DQUOTE, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7123), 1, + sym_identifier, + ACTIONS(7125), 1, + anon_sym_DOLLAR, + STATE(2828), 1, + sym_val_variable, STATE(3912), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(5076), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [115966] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7530), 1, - anon_sym_SQUOTE2, - STATE(3913), 1, - sym_comment, - STATE(3917), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, - sym_expr_interpolated, - [115988] = 4, + STATE(4006), 1, + sym__variable_name, + STATE(4293), 1, + sym__assignment_pattern, + [116338] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(3914), 1, + ACTIONS(6809), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7564), 1, + anon_sym_DOT, + STATE(3913), 1, sym_comment, - ACTIONS(1964), 4, + ACTIONS(1754), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [116004] = 7, + [116357] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2875), 1, sym__newline, - ACTIONS(7514), 1, - anon_sym_COLON, - ACTIONS(7532), 1, - anon_sym_EQ, + ACTIONS(7362), 1, + anon_sym_LBRACE, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(3296), 1, + sym__blosure, + STATE(3914), 1, + sym_comment, + STATE(3172), 2, + sym_block, + sym_val_closure, + [116380] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7123), 1, + sym_identifier, + ACTIONS(7237), 1, + anon_sym_DOLLAR, + STATE(2828), 1, + sym_val_variable, + STATE(2943), 1, + sym__variable_name, STATE(3915), 1, sym_comment, - STATE(4423), 1, - aux_sym__repeat_newline, - STATE(5088), 1, - sym_param_type, - [116026] = 5, + STATE(4290), 1, + sym__assignment_pattern, + [116405] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7534), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7123), 1, + sym_identifier, + ACTIONS(7125), 1, + anon_sym_DOLLAR, + STATE(2828), 1, + sym_val_variable, 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, + STATE(3954), 1, + sym__variable_name, + STATE(4292), 1, + sym__assignment_pattern, + [116430] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7536), 1, - anon_sym_SQUOTE2, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7123), 1, + sym_identifier, + ACTIONS(7125), 1, + anon_sym_DOLLAR, + STATE(2828), 1, + sym_val_variable, STATE(3917), 1, sym_comment, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, - sym_expr_interpolated, - [116066] = 5, + STATE(3954), 1, + sym__variable_name, + STATE(4293), 1, + sym__assignment_pattern, + [116455] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1354), 1, - aux_sym__block_body_repeat1, + ACTIONS(1748), 1, + sym__unquoted_pattern, + ACTIONS(7566), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7568), 1, + aux_sym__immediate_decimal_token5, STATE(3918), 1, sym_comment, - ACTIONS(153), 2, + ACTIONS(1746), 3, sym__newline, - anon_sym_SEMI, - ACTIONS(3046), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [116084] = 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116476] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(7362), 1, + anon_sym_LBRACE, + STATE(3296), 1, + sym__blosure, + STATE(3821), 1, + aux_sym__repeat_newline, STATE(3919), 1, sym_comment, - ACTIONS(2523), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116100] = 7, + STATE(3172), 2, + sym_block, + sym_val_closure, + [116499] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2630), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(2966), 1, - sym_block, + ACTIONS(7123), 1, + sym_identifier, + ACTIONS(7237), 1, + anon_sym_DOLLAR, + STATE(2828), 1, + sym_val_variable, + STATE(2931), 1, + sym__variable_name, STATE(3920), 1, sym_comment, - STATE(4312), 1, - aux_sym__repeat_newline, - [116122] = 4, + STATE(4555), 1, + sym__assignment_pattern_parenthesized, + [116524] = 8, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7123), 1, + sym_identifier, + ACTIONS(7125), 1, + anon_sym_DOLLAR, + STATE(2828), 1, + sym_val_variable, STATE(3921), 1, sym_comment, - ACTIONS(2501), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2503), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [116138] = 6, + STATE(4027), 1, + sym__variable_name, + STATE(4611), 1, + sym__assignment_pattern_parenthesized, + [116549] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1968), 1, - anon_sym_LPAREN2, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7123), 1, + sym_identifier, + ACTIONS(7125), 1, + anon_sym_DOLLAR, + STATE(2828), 1, + sym_val_variable, STATE(3922), 1, sym_comment, - ACTIONS(1966), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116158] = 4, + STATE(4027), 1, + sym__variable_name, + STATE(4613), 1, + sym__assignment_pattern_parenthesized, + [116574] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(7362), 1, + anon_sym_LBRACE, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(3370), 1, + sym__blosure, 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, + STATE(3172), 2, + sym_block, + sym_val_closure, + [116597] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7538), 1, - anon_sym_LT, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(7362), 1, + anon_sym_LBRACE, + STATE(3370), 1, + sym__blosure, + STATE(3823), 1, + aux_sym__repeat_newline, STATE(3924), 1, sym_comment, - ACTIONS(5920), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(5924), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [116192] = 5, - ACTIONS(103), 1, + STATE(3172), 2, + sym_block, + sym_val_closure, + [116620] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7540), 1, + ACTIONS(7570), 1, anon_sym_LT, STATE(3925), 1, sym_comment, - ACTIONS(5920), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(5924), 2, - anon_sym_RBRACK, + ACTIONS(5929), 5, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - [116210] = 4, + anon_sym_AT2, + anon_sym_LBRACE, + [116637] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern, + ACTIONS(7572), 1, + anon_sym_LT, STATE(3926), 1, sym_comment, - ACTIONS(2567), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116226] = 6, - ACTIONS(103), 1, + ACTIONS(5929), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [116654] = 6, + ACTIONS(3), 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(7167), 1, + anon_sym_DOT2, + STATE(2458), 1, + sym_path, + STATE(3777), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(3927), 1, sym_comment, - ACTIONS(2577), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116246] = 6, + ACTIONS(1517), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [116675] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, + ACTIONS(5389), 1, + sym__space, + ACTIONS(7444), 1, + anon_sym_EQ2, + ACTIONS(7574), 1, + sym_short_flag_identifier, + STATE(3057), 1, + sym__flag_equals_value, STATE(3928), 1, sym_comment, - ACTIONS(1976), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116266] = 4, - ACTIONS(3), 1, + ACTIONS(5387), 2, + sym__newline, + anon_sym_SEMI, + [116698] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, + ACTIONS(7576), 1, + anon_sym_DQUOTE, STATE(3929), 1, sym_comment, - ACTIONS(1802), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116282] = 6, + STATE(4251), 1, + aux_sym_string_content_repeat1, + STATE(4945), 1, + sym_string_content, + ACTIONS(7578), 2, + sym__escaped_str_content, + sym_escape_sequence, + [116718] = 4, 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, sym_comment, - ACTIONS(2525), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116302] = 4, + ACTIONS(1746), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1748), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [116734] = 3, 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(6184), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [116748] = 4, 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, sym_comment, - ACTIONS(2569), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116338] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(1812), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1814), 3, sym__newline, - ACTIONS(7514), 1, - anon_sym_COLON, - ACTIONS(7542), 1, - anon_sym_EQ, + anon_sym_SEMI, + sym__unquoted_pattern, + [116764] = 4, + ACTIONS(103), 1, + anon_sym_POUND, STATE(3933), 1, sym_comment, - STATE(4423), 1, - aux_sym__repeat_newline, - STATE(5093), 1, - sym_param_type, - [116360] = 6, - ACTIONS(3), 1, + ACTIONS(1900), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1902), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [116780] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7544), 1, - anon_sym_QMARK2, - ACTIONS(7546), 1, - anon_sym_BANG, + ACTIONS(1535), 1, + sym__entry_separator, STATE(3934), 1, sym_comment, - STATE(4733), 1, - sym__path_suffix, - ACTIONS(1448), 2, - sym__table_head_separator, + ACTIONS(1533), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, anon_sym_DOT2, - [116380] = 4, - ACTIONS(3), 1, + [116796] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(2991), 1, + sym_block, STATE(3935), 1, sym_comment, - ACTIONS(2501), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116396] = 4, + STATE(4378), 1, + aux_sym__repeat_newline, + [116818] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, STATE(3936), 1, sym_comment, - ACTIONS(2635), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116412] = 6, + ACTIONS(6190), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [116832] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(1539), 1, sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACE, - ACTIONS(7548), 1, - anon_sym_DOT_DOT2, STATE(3937), 1, sym_comment, - ACTIONS(7550), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116432] = 6, + ACTIONS(1537), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [116848] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2635), 1, + ACTIONS(1543), 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, + ACTIONS(1541), 4, anon_sym_RBRACK, + anon_sym_GT2, anon_sym_DOT_DOT, - [116452] = 7, - ACTIONS(103), 1, + anon_sym_DOT2, + [116864] = 3, + ACTIONS(3), 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, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4924), 1, - sym__variable_name, - [116474] = 7, + ACTIONS(6194), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [116878] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7514), 1, - anon_sym_COLON, - ACTIONS(7552), 1, - anon_sym_EQ, + ACTIONS(1892), 1, + sym__table_head_separator, + ACTIONS(7580), 1, + anon_sym_DOT2, STATE(3940), 1, sym_comment, - STATE(4423), 1, - aux_sym__repeat_newline, - STATE(5092), 1, - sym_param_type, - [116496] = 6, - ACTIONS(103), 1, + STATE(4178), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4732), 1, + sym_path, + STATE(5151), 1, + sym_cell_path, + [116900] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1706), 1, - sym__space, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(2508), 1, sym__unquoted_pattern, STATE(3941), 1, sym_comment, - ACTIONS(1619), 2, + ACTIONS(2506), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [116516] = 5, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116916] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3813), 1, anon_sym_LBRACE, STATE(3942), 1, sym_comment, - STATE(4399), 1, + STATE(4504), 1, sym_block, - ACTIONS(7480), 3, + ACTIONS(7558), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [116534] = 6, - ACTIONS(103), 1, + [116934] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_list, + ACTIONS(3813), 1, + anon_sym_LBRACE, STATE(3943), 1, sym_comment, - ACTIONS(996), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116554] = 6, - ACTIONS(103), 1, + STATE(4507), 1, + sym_block, + ACTIONS(7558), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [116952] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1018), 1, - sym__entry_separator, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_list, + ACTIONS(2527), 1, + sym__unquoted_pattern, STATE(3944), 1, sym_comment, - ACTIONS(1016), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116574] = 6, + ACTIONS(2521), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116968] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7554), 1, - anon_sym_LPAREN, - ACTIONS(7557), 1, - anon_sym_SQUOTE2, - ACTIONS(7559), 1, - sym_unescaped_interpolated_content, - STATE(4544), 1, - sym_expr_interpolated, - STATE(3945), 2, + STATE(3945), 1, sym_comment, - aux_sym__inter_single_quotes_repeat1, - [116594] = 4, + ACTIONS(6250), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6252), 3, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_RBRACE, + [116984] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3946), 1, - sym_comment, - ACTIONS(1726), 2, + ACTIONS(1716), 1, sym__space, + ACTIONS(2594), 1, anon_sym_LPAREN2, - ACTIONS(1728), 3, + ACTIONS(2596), 1, + sym__unquoted_pattern, + STATE(3946), 1, + sym_comment, + ACTIONS(1629), 2, sym__newline, anon_sym_SEMI, - sym__unquoted_pattern, - [116610] = 4, + [117004] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1522), 1, - sym__entry_separator, STATE(3947), 1, sym_comment, - ACTIONS(1520), 4, - anon_sym_RBRACK, + ACTIONS(6256), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6258), 3, + anon_sym_COLON, anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [116626] = 4, + anon_sym_RBRACE, + [117020] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7500), 1, + anon_sym_DOT_DOT2, + ACTIONS(7582), 1, + anon_sym_RBRACE, + ACTIONS(7584), 1, + sym__entry_separator, 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, - ACTIONS(103), 1, + ACTIONS(7502), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117040] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1537), 1, - sym__entry_separator, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(2011), 1, + anon_sym_LBRACE, + ACTIONS(7586), 1, + anon_sym_DOT_DOT2, STATE(3949), 1, sym_comment, - ACTIONS(1535), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [116658] = 4, + ACTIONS(7588), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117060] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3950), 1, - sym_comment, - ACTIONS(1870), 2, + ACTIONS(4397), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1872), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [116674] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3951), 1, + ACTIONS(7444), 1, + anon_sym_EQ2, + STATE(3046), 1, + sym__flag_equals_value, + STATE(3950), 1, sym_comment, - STATE(4481), 1, - sym_block, - ACTIONS(7422), 3, - ts_builtin_sym_end, + ACTIONS(4395), 2, 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, - 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, - sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116744] = 6, + [117080] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7562), 1, + ACTIONS(7590), 1, anon_sym_DQUOTE, - STATE(3955), 1, + STATE(3951), 1, sym_comment, - STATE(4258), 1, + STATE(4251), 1, aux_sym_string_content_repeat1, - STATE(5181), 1, + STATE(5239), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7578), 2, sym__escaped_str_content, sym_escape_sequence, - [116764] = 7, + [117100] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7592), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7564), 1, + ACTIONS(7594), 1, anon_sym_SQUOTE2, - STATE(3956), 1, + ACTIONS(7596), 1, + sym_unescaped_interpolated_content, + STATE(3952), 1, sym_comment, - STATE(3960), 1, + STATE(3958), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4563), 1, sym_expr_interpolated, - [116786] = 7, + [117122] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1888), 1, + sym__table_head_separator, + ACTIONS(7580), 1, + anon_sym_DOT2, + STATE(3953), 1, + sym_comment, + STATE(4178), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4732), 1, + sym_path, + STATE(4977), 1, + sym_cell_path, + [117144] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2875), 1, sym__newline, - ACTIONS(7514), 1, + ACTIONS(5482), 1, anon_sym_COLON, - ACTIONS(7566), 1, + ACTIONS(5826), 1, anon_sym_EQ, - STATE(3957), 1, + STATE(3954), 1, sym_comment, - STATE(4423), 1, + STATE(4634), 1, aux_sym__repeat_newline, - STATE(5200), 1, + STATE(5248), 1, sym_param_type, - [116808] = 5, - ACTIONS(3), 1, + [117166] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3958), 1, + ACTIONS(7598), 1, + anon_sym_BANG, + STATE(3955), 1, sym_comment, - STATE(3972), 1, - aux_sym_parameter_repeat2, - ACTIONS(1388), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(7568), 2, + ACTIONS(1456), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116826] = 5, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [117182] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3959), 1, + ACTIONS(7600), 1, + sym_identifier, + ACTIONS(7602), 1, + anon_sym_DOLLAR, + STATE(2828), 1, + sym_val_variable, + STATE(3956), 1, sym_comment, - STATE(4546), 1, - sym_block, - ACTIONS(7488), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [116844] = 7, + STATE(3965), 1, + sym__variable_name, + STATE(4338), 1, + sym__assignment_pattern, + [117204] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(1754), 1, + sym__entry_separator, + ACTIONS(6917), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7604), 1, + anon_sym_DOT, + STATE(3957), 1, + sym_comment, + ACTIONS(1756), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [117224] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7592), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7596), 1, sym_unescaped_interpolated_content, - ACTIONS(7570), 1, + ACTIONS(7606), 1, anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3960), 1, + STATE(3958), 1, sym_comment, - STATE(4544), 1, + STATE(4080), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4563), 1, sym_expr_interpolated, - [116866] = 6, - 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, - sym_comment, - ACTIONS(1966), 2, - sym__newline, - anon_sym_SEMI, - [116886] = 4, + [117246] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3962), 1, - sym_comment, - ACTIONS(6151), 2, - anon_sym_LPAREN2, + ACTIONS(2090), 1, sym__entry_separator, - ACTIONS(6153), 3, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_RBRACE, - [116902] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3963), 1, - sym_comment, - STATE(4548), 1, - sym_block, - ACTIONS(7488), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [116920] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3964), 1, + ACTIONS(7608), 1, + anon_sym_LBRACK2, + STATE(3959), 1, sym_comment, - ACTIONS(6111), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(6113), 3, - anon_sym_COLON, - anon_sym_GT2, + ACTIONS(2092), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [116936] = 6, + anon_sym_DOT_DOT, + [117264] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7500), 1, anon_sym_DOT_DOT2, - ACTIONS(7572), 1, + ACTIONS(7610), 1, anon_sym_RBRACE, - ACTIONS(7574), 1, + ACTIONS(7612), 1, sym__entry_separator, - STATE(3965), 1, + STATE(3960), 1, sym_comment, - ACTIONS(7426), 2, + ACTIONS(7502), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116956] = 6, + [117284] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7576), 1, + ACTIONS(7614), 1, anon_sym_DQUOTE, - STATE(3966), 1, + STATE(3961), 1, sym_comment, - STATE(4258), 1, + STATE(4251), 1, aux_sym_string_content_repeat1, - STATE(5202), 1, + STATE(5122), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7578), 2, sym__escaped_str_content, sym_escape_sequence, - [116976] = 7, + [117304] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7592), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7596), 1, sym_unescaped_interpolated_content, - ACTIONS(7578), 1, + ACTIONS(7616), 1, anon_sym_SQUOTE2, - STATE(3967), 1, + STATE(3962), 1, sym_comment, - STATE(4047), 1, + STATE(3966), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4563), 1, sym_expr_interpolated, - [116998] = 6, + [117326] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4367), 1, - sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, - STATE(3070), 1, - sym__flag_equals_value, - STATE(3968), 1, + ACTIONS(7592), 1, + anon_sym_LPAREN, + ACTIONS(7596), 1, + sym_unescaped_interpolated_content, + ACTIONS(7618), 1, + anon_sym_SQUOTE2, + STATE(3963), 1, sym_comment, - ACTIONS(4365), 2, - sym__newline, - anon_sym_SEMI, - [117018] = 6, + STATE(4080), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4563), 1, + sym_expr_interpolated, + [117348] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7580), 1, - anon_sym_DQUOTE, - STATE(3969), 1, + STATE(3964), 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(2506), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2508), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + sym__unquoted_pattern_in_list, + [117364] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3970), 1, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(5482), 1, + anon_sym_COLON, + ACTIONS(5670), 1, + anon_sym_EQ, + STATE(3965), 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, - ACTIONS(3), 1, + STATE(4634), 1, + aux_sym__repeat_newline, + STATE(4922), 1, + sym_param_type, + [117386] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7592), 1, + anon_sym_LPAREN, + ACTIONS(7596), 1, + sym_unescaped_interpolated_content, + ACTIONS(7620), 1, + anon_sym_SQUOTE2, + STATE(3966), 1, + sym_comment, + STATE(4080), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4563), 1, + sym_expr_interpolated, + [117408] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2585), 1, + ACTIONS(1615), 1, sym__unquoted_pattern, - STATE(3971), 1, + ACTIONS(2011), 1, + sym__space, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + STATE(3967), 1, sym_comment, - ACTIONS(994), 4, - anon_sym_if, + ACTIONS(2013), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117072] = 4, + anon_sym_SEMI, + [117428] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6506), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7582), 2, - sym__newline, - anon_sym_COMMA, - STATE(3972), 2, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(3968), 1, sym_comment, - aux_sym_parameter_repeat2, - [117088] = 4, + STATE(4652), 1, + sym_block, + ACTIONS(7381), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [117446] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(3973), 1, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(3969), 1, sym_comment, - ACTIONS(1018), 4, - anon_sym_if, + STATE(4660), 1, + sym_block, + ACTIONS(7381), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117104] = 6, + anon_sym_SEMI, + [117464] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7585), 1, + ACTIONS(7622), 1, anon_sym_DQUOTE, - STATE(3974), 1, + STATE(3970), 1, sym_comment, - STATE(4258), 1, + STATE(4251), 1, aux_sym_string_content_repeat1, - STATE(4939), 1, + STATE(4987), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7578), 2, sym__escaped_str_content, sym_escape_sequence, - [117124] = 7, + [117484] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7592), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7596), 1, sym_unescaped_interpolated_content, - ACTIONS(7587), 1, + ACTIONS(7624), 1, anon_sym_SQUOTE2, - STATE(3975), 1, + STATE(3971), 1, sym_comment, - STATE(3978), 1, + STATE(3977), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4563), 1, sym_expr_interpolated, - [117146] = 6, + [117506] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7589), 1, - anon_sym_RBRACE, - ACTIONS(7591), 1, + ACTIONS(2011), 1, sym__entry_separator, - STATE(3976), 1, + ACTIONS(2013), 1, + anon_sym_RBRACE, + ACTIONS(7626), 1, + anon_sym_DOT_DOT2, + STATE(3972), 1, sym_comment, - ACTIONS(7426), 2, + ACTIONS(7628), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [117166] = 6, + [117526] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7032), 1, + sym__entry_separator, + ACTIONS(7131), 1, + anon_sym_DOT2, + STATE(349), 1, + sym_path, + STATE(3814), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3973), 1, + sym_comment, + STATE(4557), 1, + sym_cell_path, + [117548] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7071), 1, + sym__entry_separator, + ACTIONS(7131), 1, + anon_sym_DOT2, + STATE(349), 1, + sym_path, + STATE(3814), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3974), 1, + sym_comment, + STATE(4614), 1, + sym_cell_path, + [117570] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5434), 1, + sym__entry_separator, + ACTIONS(7131), 1, + anon_sym_DOT2, + STATE(349), 1, + sym_path, + STATE(3814), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3975), 1, + sym_comment, + STATE(4148), 1, + sym_cell_path, + [117592] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(2558), 1, sym__unquoted_pattern, - ACTIONS(1964), 1, - anon_sym_LBRACE, - ACTIONS(7593), 1, - anon_sym_DOT_DOT2, - STATE(3977), 1, + STATE(3976), 1, sym_comment, - ACTIONS(7595), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117186] = 7, + ACTIONS(1030), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117608] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7592), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7596), 1, sym_unescaped_interpolated_content, - ACTIONS(7597), 1, + ACTIONS(7630), 1, anon_sym_SQUOTE2, - STATE(3945), 1, + STATE(3977), 1, + sym_comment, + STATE(4080), 1, aux_sym__inter_single_quotes_repeat1, + STATE(4563), 1, + sym_expr_interpolated, + [117630] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2558), 1, + sym__unquoted_pattern, STATE(3978), 1, sym_comment, - STATE(4544), 1, - sym_expr_interpolated, - [117208] = 6, + ACTIONS(994), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117646] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7599), 1, + ACTIONS(7632), 1, anon_sym_DQUOTE, STATE(3979), 1, sym_comment, - STATE(4258), 1, + STATE(4251), 1, aux_sym_string_content_repeat1, - STATE(5022), 1, + STATE(5064), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7578), 2, sym__escaped_str_content, sym_escape_sequence, - [117228] = 7, + [117666] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7592), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7596), 1, sym_unescaped_interpolated_content, - ACTIONS(7601), 1, + ACTIONS(7634), 1, anon_sym_SQUOTE2, STATE(3980), 1, sym_comment, - STATE(3982), 1, + STATE(3984), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4563), 1, sym_expr_interpolated, - [117250] = 7, - ACTIONS(103), 1, + [117688] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7603), 1, - anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(2031), 1, + sym__unquoted_pattern, STATE(3981), 1, sym_comment, - STATE(4544), 1, - sym_expr_interpolated, - [117272] = 7, + ACTIONS(2566), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117704] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1349), 1, + aux_sym__block_body_repeat1, + STATE(3982), 1, + sym_comment, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(459), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [117722] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7526), 1, + aux_sym__immediate_decimal_token5, + STATE(3983), 1, + sym_comment, + ACTIONS(1754), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1756), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [117740] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7592), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7596), 1, sym_unescaped_interpolated_content, - ACTIONS(7605), 1, + ACTIONS(7636), 1, anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3982), 1, + STATE(3984), 1, sym_comment, - STATE(4544), 1, + STATE(4080), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4563), 1, sym_expr_interpolated, - [117294] = 5, + [117762] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3983), 1, + ACTIONS(2031), 1, + sym__unquoted_pattern, + STATE(3985), 1, sym_comment, - STATE(4415), 1, - sym_block, - ACTIONS(7309), 3, - ts_builtin_sym_end, + ACTIONS(2021), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [117312] = 5, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117778] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3984), 1, + ACTIONS(1615), 1, + sym__unquoted_pattern, + STATE(3986), 1, sym_comment, - STATE(4417), 1, - sym_block, - ACTIONS(7309), 3, - ts_builtin_sym_end, + ACTIONS(2011), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [117330] = 5, - 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, - sym__entry_separator, - ACTIONS(1738), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [117348] = 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117794] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7607), 1, + ACTIONS(7638), 1, anon_sym_DQUOTE, - STATE(3986), 1, + STATE(3987), 1, sym_comment, - STATE(4258), 1, + STATE(4251), 1, aux_sym_string_content_repeat1, - STATE(4792), 1, + STATE(5217), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7578), 2, sym__escaped_str_content, sym_escape_sequence, - [117368] = 7, + [117814] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7592), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7596), 1, sym_unescaped_interpolated_content, - ACTIONS(7609), 1, + ACTIONS(7640), 1, anon_sym_SQUOTE2, - STATE(3987), 1, - sym_comment, STATE(3988), 1, + sym_comment, + STATE(3993), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4563), 1, sym_expr_interpolated, - [117390] = 7, + [117836] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7611), 1, - anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3988), 1, + ACTIONS(7642), 1, + aux_sym__immediate_decimal_token5, + STATE(3989), 1, sym_comment, - STATE(4544), 1, - sym_expr_interpolated, - [117412] = 5, + ACTIONS(1812), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1814), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [117854] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3989), 1, + STATE(3990), 1, sym_comment, - STATE(4395), 1, - sym_block, - ACTIONS(7270), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [117430] = 4, + ACTIONS(6158), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [117868] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3990), 1, + STATE(3991), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(1814), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 3, + ACTIONS(1812), 3, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [117446] = 6, - ACTIONS(103), 1, + [117884] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7613), 1, - anon_sym_DQUOTE, - STATE(3991), 1, + STATE(3992), 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(4842), 1, + sym__immediate_decimal, + ACTIONS(7374), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7376), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [117902] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7592), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7596), 1, sym_unescaped_interpolated_content, - ACTIONS(7615), 1, + ACTIONS(7644), 1, anon_sym_SQUOTE2, - STATE(3992), 1, + STATE(3993), 1, sym_comment, - STATE(3994), 1, + STATE(4080), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4563), 1, sym_expr_interpolated, - [117488] = 4, + [117924] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_QMARK2, - STATE(3993), 1, + ACTIONS(7646), 1, + anon_sym_DQUOTE, + STATE(3994), 1, sym_comment, - ACTIONS(1438), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [117504] = 7, + STATE(4251), 1, + aux_sym_string_content_repeat1, + STATE(5220), 1, + sym_string_content, + ACTIONS(7578), 2, + sym__escaped_str_content, + sym_escape_sequence, + [117944] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7592), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7596), 1, sym_unescaped_interpolated_content, - ACTIONS(7617), 1, + ACTIONS(7648), 1, anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3994), 1, + STATE(3995), 1, sym_comment, - STATE(4544), 1, + STATE(4024), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4563), 1, sym_expr_interpolated, - [117526] = 5, + [117966] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7619), 1, + ACTIONS(7650), 1, aux_sym__immediate_decimal_token5, - STATE(3995), 1, + STATE(3996), 1, sym_comment, - ACTIONS(1802), 2, + ACTIONS(1812), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1804), 2, + ACTIONS(1814), 2, anon_sym_RBRACE, sym__unquoted_pattern_in_record, - [117544] = 6, + [117984] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7621), 1, + ACTIONS(7652), 1, anon_sym_DQUOTE, - STATE(3996), 1, + STATE(3997), 1, sym_comment, - STATE(4258), 1, + STATE(4251), 1, aux_sym_string_content_repeat1, - STATE(4829), 1, + STATE(4854), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7578), 2, sym__escaped_str_content, sym_escape_sequence, - [117564] = 5, + [118004] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7592), 1, + anon_sym_LPAREN, + ACTIONS(7596), 1, + sym_unescaped_interpolated_content, + ACTIONS(7654), 1, + anon_sym_SQUOTE2, + STATE(3998), 1, + sym_comment, + STATE(4002), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4563), 1, + sym_expr_interpolated, + [118026] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1356), 1, - aux_sym__block_body_repeat1, - STATE(3997), 1, + ACTIONS(2596), 1, + sym__unquoted_pattern, + STATE(3999), 1, sym_comment, - ACTIONS(153), 2, + ACTIONS(7265), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - ACTIONS(459), 2, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118042] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7500), 1, + anon_sym_DOT_DOT2, + ACTIONS(7656), 1, anon_sym_RBRACE, - [117582] = 6, + ACTIONS(7658), 1, + sym__entry_separator, + STATE(4000), 1, + sym_comment, + ACTIONS(7502), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118062] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4001), 1, + sym_comment, + ACTIONS(6162), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [118076] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7623), 1, - anon_sym_DQUOTE, - STATE(3998), 1, + ACTIONS(7592), 1, + anon_sym_LPAREN, + ACTIONS(7596), 1, + sym_unescaped_interpolated_content, + ACTIONS(7660), 1, + anon_sym_SQUOTE2, + STATE(4002), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(4843), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117602] = 6, + STATE(4080), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4563), 1, + sym_expr_interpolated, + [118098] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern, + ACTIONS(2566), 1, + sym__space, + STATE(4003), 1, + sym_comment, + ACTIONS(2568), 2, + sym__newline, + anon_sym_SEMI, + [118118] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7625), 1, + ACTIONS(7662), 1, anon_sym_DQUOTE, - STATE(3999), 1, + STATE(4004), 1, sym_comment, - STATE(4258), 1, + STATE(4251), 1, aux_sym_string_content_repeat1, - STATE(4855), 1, + STATE(4872), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7578), 2, sym__escaped_str_content, sym_escape_sequence, - [117622] = 6, + [118138] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7627), 1, + ACTIONS(7664), 1, anon_sym_DQUOTE, - STATE(4000), 1, + STATE(4005), 1, sym_comment, - STATE(4258), 1, + STATE(4251), 1, aux_sym_string_content_repeat1, - STATE(4864), 1, + STATE(4886), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7578), 2, sym__escaped_str_content, sym_escape_sequence, - [117642] = 3, + [118158] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4001), 1, - sym_comment, - ACTIONS(6093), 5, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(5482), 1, + anon_sym_COLON, + ACTIONS(5632), 1, anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [117656] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7297), 1, - aux_sym__immediate_decimal_token5, - STATE(4002), 1, + STATE(4006), 1, sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1738), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [117674] = 6, + STATE(4634), 1, + aux_sym__repeat_newline, + STATE(5242), 1, + sym_param_type, + [118180] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7629), 1, + ACTIONS(7666), 1, anon_sym_DQUOTE, - STATE(4003), 1, + STATE(4007), 1, sym_comment, - STATE(4258), 1, + STATE(4251), 1, aux_sym_string_content_repeat1, - STATE(4873), 1, + STATE(4898), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7578), 2, sym__escaped_str_content, sym_escape_sequence, - [117694] = 6, + [118200] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7631), 1, + ACTIONS(7668), 1, anon_sym_DQUOTE, - STATE(4004), 1, + STATE(4008), 1, sym_comment, - STATE(4258), 1, + STATE(4251), 1, aux_sym_string_content_repeat1, - STATE(4880), 1, + STATE(4908), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7578), 2, sym__escaped_str_content, sym_escape_sequence, - [117714] = 6, + [118220] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7633), 1, - anon_sym_RBRACE, - ACTIONS(7635), 1, - sym__entry_separator, - STATE(4005), 1, + ACTIONS(2021), 1, + sym__space, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern, + STATE(4009), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117734] = 6, + ACTIONS(2023), 2, + sym__newline, + anon_sym_SEMI, + [118240] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7637), 1, + ACTIONS(7670), 1, anon_sym_DQUOTE, - STATE(4006), 1, + STATE(4010), 1, sym_comment, - STATE(4258), 1, + STATE(4251), 1, aux_sym_string_content_repeat1, - STATE(4887), 1, + STATE(4918), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7578), 2, sym__escaped_str_content, sym_escape_sequence, - [117754] = 3, + [118260] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4007), 1, + STATE(4011), 1, sym_comment, - ACTIONS(6107), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [117768] = 6, + STATE(5127), 1, + sym__immediate_decimal, + ACTIONS(6528), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6530), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [118278] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1355), 1, + aux_sym__block_body_repeat1, + STATE(4012), 1, + sym_comment, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3085), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [118296] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7639), 1, + ACTIONS(7672), 1, anon_sym_DQUOTE, - STATE(4008), 1, + STATE(4013), 1, sym_comment, - STATE(4258), 1, + STATE(4251), 1, aux_sym_string_content_repeat1, - STATE(4894), 1, + STATE(4925), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7578), 2, sym__escaped_str_content, sym_escape_sequence, - [117788] = 6, + [118316] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7641), 1, + ACTIONS(7674), 1, anon_sym_DQUOTE, - STATE(4009), 1, + STATE(4014), 1, sym_comment, - STATE(4258), 1, + STATE(4251), 1, aux_sym_string_content_repeat1, - STATE(4901), 1, + STATE(4932), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7578), 2, sym__escaped_str_content, sym_escape_sequence, - [117808] = 6, + [118336] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7643), 1, + ACTIONS(7676), 1, anon_sym_DQUOTE, - STATE(4010), 1, + STATE(4015), 1, sym_comment, - STATE(4258), 1, + STATE(4251), 1, aux_sym_string_content_repeat1, - STATE(4908), 1, + STATE(4938), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7578), 2, sym__escaped_str_content, sym_escape_sequence, - [117828] = 6, + [118356] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(994), 1, + sym__entry_separator, + ACTIONS(2556), 1, + anon_sym_LPAREN2, + ACTIONS(2558), 1, + sym__unquoted_pattern_in_list, + STATE(4016), 1, + sym_comment, + ACTIONS(996), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [118376] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7678), 1, + anon_sym_QMARK2, + ACTIONS(7680), 1, + anon_sym_BANG, + STATE(4017), 1, + sym_comment, + STATE(4755), 1, + sym__path_suffix, + ACTIONS(1444), 2, + sym__table_head_separator, + anon_sym_DOT2, + [118396] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7645), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - STATE(4011), 1, + STATE(4018), 1, sym_comment, - STATE(4258), 1, + STATE(4251), 1, aux_sym_string_content_repeat1, - STATE(4913), 1, + STATE(4952), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7578), 2, sym__escaped_str_content, sym_escape_sequence, - [117848] = 6, + [118416] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(2575), 1, - sym__space, - STATE(4012), 1, + ACTIONS(7684), 1, + anon_sym_DQUOTE, + STATE(4019), 1, sym_comment, - ACTIONS(2577), 2, - sym__newline, - anon_sym_SEMI, - [117868] = 6, + STATE(4251), 1, + aux_sym_string_content_repeat1, + STATE(4958), 1, + sym_string_content, + ACTIONS(7578), 2, + sym__escaped_str_content, + sym_escape_sequence, + [118436] = 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(4013), 1, + ACTIONS(7686), 1, + anon_sym_DQUOTE, + STATE(4020), 1, sym_comment, - ACTIONS(1976), 2, - sym__newline, - anon_sym_SEMI, - [117888] = 7, + STATE(4251), 1, + aux_sym_string_content_repeat1, + STATE(4964), 1, + sym_string_content, + ACTIONS(7578), 2, + sym__escaped_str_content, + sym_escape_sequence, + [118456] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2875), 1, sym__newline, - ACTIONS(7514), 1, + ACTIONS(5482), 1, anon_sym_COLON, - ACTIONS(7647), 1, + ACTIONS(5557), 1, anon_sym_EQ, - STATE(4014), 1, + STATE(4021), 1, sym_comment, - STATE(4423), 1, + STATE(4634), 1, aux_sym__repeat_newline, - STATE(4960), 1, + STATE(4878), 1, sym_param_type, - [117910] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4015), 1, - sym_comment, - ACTIONS(1726), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1728), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [117926] = 4, + [118478] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, + ACTIONS(1691), 1, sym__unquoted_pattern, - STATE(4016), 1, + STATE(4022), 1, sym_comment, - ACTIONS(7210), 4, + ACTIONS(2560), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [117942] = 4, + [118494] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3895), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + sym__newline, + STATE(1956), 1, + aux_sym__types_body_repeat1, + STATE(4023), 1, + sym_comment, + STATE(4617), 1, + aux_sym__table_body_repeat1, + STATE(4641), 1, + sym_val_list, + [118516] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(4017), 1, + ACTIONS(7592), 1, + anon_sym_LPAREN, + ACTIONS(7596), 1, + sym_unescaped_interpolated_content, + ACTIONS(7688), 1, + anon_sym_SQUOTE2, + STATE(4024), 1, sym_comment, - ACTIONS(1802), 2, + STATE(4080), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4563), 1, + sym_expr_interpolated, + [118538] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2594), 1, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1804), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(2596), 1, sym__unquoted_pattern_in_list, - [117958] = 4, + ACTIONS(7348), 1, + anon_sym_DOT_DOT, + ACTIONS(7516), 1, + anon_sym_RBRACK, + ACTIONS(7519), 1, + sym__entry_separator, + STATE(4025), 1, + sym_comment, + [118560] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4018), 1, + ACTIONS(7690), 1, + anon_sym_DQUOTE, + STATE(4026), 1, + sym_comment, + STATE(4251), 1, + aux_sym_string_content_repeat1, + STATE(4998), 1, + sym_string_content, + ACTIONS(7578), 2, + sym__escaped_str_content, + sym_escape_sequence, + [118580] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(5482), 1, + anon_sym_COLON, + ACTIONS(5814), 1, + anon_sym_EQ, + STATE(4027), 1, + sym_comment, + STATE(4634), 1, + aux_sym__repeat_newline, + STATE(5013), 1, + sym_param_type, + [118602] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4028), 1, sym_comment, - ACTIONS(1870), 2, + ACTIONS(1746), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1872), 3, + ACTIONS(1748), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, sym__unquoted_pattern_in_list, - [117974] = 7, + [118618] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7592), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7596), 1, sym_unescaped_interpolated_content, - ACTIONS(7649), 1, + ACTIONS(7692), 1, anon_sym_SQUOTE2, - STATE(3981), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4019), 1, + STATE(4029), 1, sym_comment, - STATE(4544), 1, + STATE(4058), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4563), 1, sym_expr_interpolated, - [117996] = 6, + [118640] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2523), 1, - sym__space, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(4020), 1, - sym_comment, - ACTIONS(2525), 2, - sym__newline, - anon_sym_SEMI, - [118016] = 7, - 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, + STATE(4030), 1, sym_comment, - STATE(4569), 1, - sym_val_list, - STATE(4579), 1, - aux_sym__table_body_repeat1, - [118038] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2595), 1, + ACTIONS(1812), 2, anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7278), 1, - anon_sym_DOT_DOT, - ACTIONS(7442), 1, - anon_sym_RBRACK, - ACTIONS(7445), 1, sym__entry_separator, - STATE(4022), 1, - sym_comment, - [118060] = 7, + ACTIONS(1814), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [118656] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2950), 1, aux_sym_cmd_identifier_token2, - ACTIONS(5164), 1, + ACTIONS(5195), 1, anon_sym_DOLLAR, - ACTIONS(7044), 1, + ACTIONS(7123), 1, sym_identifier, - STATE(4023), 1, - sym_comment, - STATE(4060), 1, + STATE(2828), 1, sym_val_variable, - STATE(5164), 1, + STATE(4031), 1, + sym_comment, + STATE(5111), 1, sym__variable_name, - [118082] = 4, - ACTIONS(3), 1, + [118678] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4024), 1, + STATE(4032), 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, - [118098] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7568), 1, - anon_sym_DOT_DOT, - ACTIONS(7651), 1, + ACTIONS(1900), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1902), 3, 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, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [118694] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, - sym__space, - ACTIONS(2631), 1, + ACTIONS(1615), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2011), 1, + sym__entry_separator, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(4026), 1, + STATE(4033), 1, sym_comment, - ACTIONS(2569), 2, - sym__newline, - anon_sym_SEMI, - [118138] = 6, + ACTIONS(2013), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [118714] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5622), 1, + ACTIONS(1691), 1, + sym__unquoted_pattern, + ACTIONS(2560), 1, sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, - STATE(2955), 1, - sym__flag_equals_value, - STATE(4027), 1, + ACTIONS(2564), 1, + anon_sym_LPAREN2, + STATE(4034), 1, sym_comment, - ACTIONS(5620), 2, + ACTIONS(2562), 2, sym__newline, anon_sym_SEMI, - [118158] = 7, + [118734] = 6, ACTIONS(3), 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(7694), 1, + anon_sym_RBRACK, + ACTIONS(7697), 1, + anon_sym_DOT_DOT, + STATE(4035), 1, sym_comment, - [118180] = 5, + STATE(4068), 1, + aux_sym_parameter_repeat2, + ACTIONS(1398), 2, + sym__newline, + anon_sym_COMMA, + [118754] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1350), 1, - aux_sym__block_body_repeat1, - STATE(4029), 1, + ACTIONS(7600), 1, + sym_identifier, + ACTIONS(7602), 1, + anon_sym_DOLLAR, + STATE(2828), 1, + sym_val_variable, + STATE(4036), 1, sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3073), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118198] = 4, - ACTIONS(103), 1, + STATE(4066), 1, + sym__variable_name, + STATE(4653), 1, + sym__assignment_pattern_parenthesized, + [118776] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4030), 1, + ACTIONS(1748), 1, + sym__unquoted_pattern, + STATE(4037), 1, sym_comment, - ACTIONS(2501), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2503), 3, + ACTIONS(1746), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [118214] = 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118792] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2635), 1, - sym__space, - ACTIONS(2639), 1, + ACTIONS(2025), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(4031), 1, + ACTIONS(2031), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2566), 1, + sym__entry_separator, + STATE(4038), 1, sym_comment, - ACTIONS(2637), 2, - sym__newline, - anon_sym_SEMI, - [118234] = 5, - ACTIONS(3), 1, + ACTIONS(2568), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [118812] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7248), 1, - aux_sym__immediate_decimal_token5, - STATE(4032), 1, + ACTIONS(2950), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5205), 1, + anon_sym_DOLLAR, + ACTIONS(7305), 1, + sym_identifier, + STATE(3039), 1, + sym_val_variable, + STATE(3301), 1, + sym__variable_name, + STATE(4039), 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, + [118834] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7500), 1, anon_sym_DOT_DOT2, - ACTIONS(7654), 1, + ACTIONS(7699), 1, anon_sym_RBRACE, - ACTIONS(7656), 1, + ACTIONS(7701), 1, sym__entry_separator, - STATE(4033), 1, + STATE(4040), 1, sym_comment, - ACTIONS(7426), 2, + ACTIONS(7502), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [118272] = 7, - ACTIONS(3), 1, + [118854] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5195), 1, anon_sym_DOLLAR, - STATE(3915), 1, + ACTIONS(7123), 1, + sym_identifier, + STATE(2828), 1, + sym_val_variable, + STATE(3248), 1, sym__variable_name, - STATE(4034), 1, + STATE(4041), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4307), 1, - sym__assignment_pattern, - [118294] = 5, + [118876] = 5, 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, + STATE(1352), 1, + aux_sym__block_body_repeat1, + STATE(4042), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(4824), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [118332] = 6, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3056), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [118894] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7500), 1, anon_sym_DOT_DOT2, - ACTIONS(7662), 1, + ACTIONS(7703), 1, anon_sym_RBRACE, - ACTIONS(7664), 1, + ACTIONS(7705), 1, sym__entry_separator, - STATE(4037), 1, + STATE(4043), 1, sym_comment, - ACTIONS(7426), 2, + ACTIONS(7502), 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, - 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, - sym_comment, - aux_sym_decl_def_repeat1, - [118388] = 7, - 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, - sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4307), 1, - sym__assignment_pattern, - [118410] = 7, - ACTIONS(3), 1, + [118914] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, - anon_sym_DOLLAR, - STATE(3933), 1, - sym__variable_name, - STATE(4041), 1, + ACTIONS(2021), 1, + sym__entry_separator, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern_in_list, + STATE(4044), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4403), 1, - sym__assignment_pattern, - [118432] = 6, + ACTIONS(2023), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [118934] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1736), 1, + ACTIONS(5654), 1, sym__space, - ACTIONS(6776), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7669), 1, - anon_sym_DOT, - STATE(4042), 1, + ACTIONS(7444), 1, + anon_sym_EQ2, + STATE(2952), 1, + sym__flag_equals_value, + STATE(4045), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(5652), 2, sym__newline, anon_sym_SEMI, - [118452] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7252), 1, - aux_sym__immediate_decimal_token5, - STATE(4043), 1, - sym_comment, - ACTIONS(1736), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118470] = 5, + [118954] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(1814), 1, sym__unquoted_pattern, - ACTIONS(7671), 1, - aux_sym__immediate_decimal_token5, - STATE(4044), 1, + STATE(4046), 1, sym_comment, - ACTIONS(1802), 3, + ACTIONS(1812), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [118488] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, - anon_sym_DOLLAR, - STATE(4014), 1, - sym__variable_name, - STATE(4045), 1, - sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4597), 1, - sym__assignment_pattern_parenthesized, - [118510] = 7, + [118970] = 5, 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, - sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4597), 1, - sym__assignment_pattern_parenthesized, - [118532] = 7, - 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, + ACTIONS(7496), 1, + anon_sym_EQ2, STATE(4047), 1, sym_comment, - STATE(4544), 1, - sym_expr_interpolated, - [118554] = 6, + STATE(4633), 1, + sym__flag_equals_value, + ACTIONS(4397), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [118988] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1621), 1, - anon_sym_RBRACE, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - STATE(1475), 1, - aux_sym__types_body_repeat2, + ACTIONS(2570), 1, + sym__space, + ACTIONS(2574), 1, + anon_sym_LPAREN2, + ACTIONS(2576), 1, + sym__unquoted_pattern, STATE(4048), 1, sym_comment, - [118573] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4049), 1, - sym_comment, - ACTIONS(7675), 4, + ACTIONS(2572), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118586] = 3, + [119008] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7707), 1, + anon_sym_DASH_DASH, + STATE(4479), 1, + sym_long_flag, + ACTIONS(4401), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + STATE(4049), 2, + sym_comment, + aux_sym_decl_def_repeat1, + [119026] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1691), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2560), 1, + sym__entry_separator, + ACTIONS(2564), 1, + anon_sym_LPAREN2, STATE(4050), 1, sym_comment, - ACTIONS(7677), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [118599] = 6, + ACTIONS(2562), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [119046] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1726), 1, - anon_sym_LBRACE, - ACTIONS(1728), 1, + ACTIONS(1902), 1, sym__unquoted_pattern, - ACTIONS(7679), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7681), 1, - aux_sym__immediate_decimal_token5, STATE(4051), 1, sym_comment, - [118618] = 3, - ACTIONS(3), 1, + ACTIONS(1900), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119062] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2570), 1, + sym__entry_separator, + ACTIONS(2574), 1, + anon_sym_LPAREN2, + ACTIONS(2576), 1, + sym__unquoted_pattern_in_list, STATE(4052), 1, sym_comment, - ACTIONS(7675), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118631] = 3, - ACTIONS(3), 1, + ACTIONS(2572), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [119082] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4053), 1, sym_comment, - ACTIONS(7683), 4, + ACTIONS(2506), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2508), 3, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118644] = 3, - ACTIONS(3), 1, + sym__unquoted_pattern, + [119098] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2521), 1, + sym__space, + ACTIONS(2525), 1, + anon_sym_LPAREN2, + ACTIONS(2527), 1, + sym__unquoted_pattern, STATE(4054), 1, sym_comment, - ACTIONS(7683), 4, + ACTIONS(2523), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118657] = 4, - ACTIONS(103), 1, + [119118] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1452), 1, + anon_sym_COLON2, + ACTIONS(4950), 1, + anon_sym_DOT2, + STATE(454), 1, + sym_path, + STATE(478), 1, + sym_cell_path, + STATE(2277), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(4055), 1, sym_comment, - ACTIONS(6121), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6123), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [118672] = 4, + [119140] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, + ACTIONS(7315), 1, + aux_sym__immediate_decimal_token5, STATE(4056), 1, sym_comment, - ACTIONS(2635), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [118687] = 4, + ACTIONS(1754), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1756), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [119158] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, + ACTIONS(2021), 1, + anon_sym_LBRACE, + ACTIONS(2031), 1, sym__unquoted_pattern, + ACTIONS(7710), 1, + anon_sym_DOT_DOT2, STATE(4057), 1, sym_comment, - ACTIONS(968), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118702] = 4, + ACTIONS(7712), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119178] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2194), 1, - sym__entry_separator, + ACTIONS(7592), 1, + anon_sym_LPAREN, + ACTIONS(7596), 1, + sym_unescaped_interpolated_content, + ACTIONS(7714), 1, + anon_sym_SQUOTE2, STATE(4058), 1, sym_comment, - ACTIONS(2196), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [118717] = 6, - ACTIONS(3), 1, + STATE(4080), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4563), 1, + sym_expr_interpolated, + [119200] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1460), 1, - sym__table_head_separator, - ACTIONS(7510), 1, - anon_sym_DOT2, + ACTIONS(7716), 1, + anon_sym_DQUOTE, STATE(4059), 1, sym_comment, - STATE(4065), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4641), 1, - sym_path, - [118736] = 3, - ACTIONS(3), 1, + STATE(4251), 1, + aux_sym_string_content_repeat1, + STATE(5238), 1, + sym_string_content, + ACTIONS(7578), 2, + sym__escaped_str_content, + sym_escape_sequence, + [119220] = 7, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5195), 1, + anon_sym_DOLLAR, + ACTIONS(7123), 1, + sym_identifier, + STATE(2828), 1, + sym_val_variable, STATE(4060), 1, sym_comment, - ACTIONS(7685), 4, - anon_sym_EQ, - anon_sym_in, - sym__newline, - anon_sym_COLON, - [118749] = 4, - ACTIONS(3), 1, + STATE(5215), 1, + sym__variable_name, + [119242] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, + ACTIONS(7718), 1, + anon_sym_LT, STATE(4061), 1, sym_comment, - ACTIONS(994), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [118764] = 4, + ACTIONS(5929), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(5933), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [119260] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, + ACTIONS(3813), 1, + anon_sym_LBRACE, STATE(4062), 1, sym_comment, - ACTIONS(1018), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [118779] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4063), 1, - sym_comment, - ACTIONS(4102), 4, + STATE(4548), 1, + sym_block, + ACTIONS(7498), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [118792] = 4, - ACTIONS(103), 1, + [119278] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4064), 1, + ACTIONS(7720), 1, + aux_sym__immediate_decimal_token5, + STATE(4063), 1, sym_comment, - ACTIONS(6125), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6127), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [118807] = 5, + ACTIONS(1812), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1814), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [119296] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, - sym__table_head_separator, - ACTIONS(7687), 1, - anon_sym_DOT2, - STATE(4641), 1, - sym_path, - STATE(4065), 2, + ACTIONS(7600), 1, + sym_identifier, + ACTIONS(7602), 1, + anon_sym_DOLLAR, + STATE(2828), 1, + sym_val_variable, + STATE(4006), 1, + sym__variable_name, + STATE(4064), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - [118824] = 5, + STATE(4338), 1, + sym__assignment_pattern, + [119318] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3073), 1, - ts_builtin_sym_end, - STATE(1371), 1, - aux_sym__block_body_repeat1, - STATE(4066), 1, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(4065), 1, sym_comment, - ACTIONS(55), 2, + STATE(4656), 1, + sym_block, + ACTIONS(7528), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [118841] = 3, + [119336] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(5475), 1, + anon_sym_EQ, + ACTIONS(5482), 1, + anon_sym_COLON, + STATE(4066), 1, + sym_comment, + STATE(4634), 1, + aux_sym__repeat_newline, + STATE(5059), 1, + sym_param_type, + [119358] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7500), 1, + anon_sym_DOT_DOT2, + ACTIONS(7510), 1, + anon_sym_RBRACK, + ACTIONS(7512), 1, + sym__entry_separator, STATE(4067), 1, sym_comment, - ACTIONS(4104), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [118854] = 3, + ACTIONS(7502), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119378] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4068), 1, - sym_comment, - ACTIONS(7690), 4, + ACTIONS(6536), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7722), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118867] = 3, - ACTIONS(3), 1, + anon_sym_COMMA, + STATE(4068), 2, + sym_comment, + aux_sym_parameter_repeat2, + [119394] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1030), 1, + sym__space, + ACTIONS(2556), 1, + anon_sym_LPAREN2, + ACTIONS(2558), 1, + sym__unquoted_pattern, STATE(4069), 1, sym_comment, - ACTIONS(7690), 4, + ACTIONS(1008), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118880] = 3, - ACTIONS(3), 1, + [119414] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1754), 1, + sym__space, + ACTIONS(6699), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7725), 1, + anon_sym_DOT, STATE(4070), 1, sym_comment, - ACTIONS(7692), 4, + ACTIONS(1756), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118893] = 4, - ACTIONS(103), 1, + [119434] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2198), 1, - sym__entry_separator, + ACTIONS(1756), 1, + sym__unquoted_pattern, + ACTIONS(7326), 1, + aux_sym__immediate_decimal_token5, STATE(4071), 1, sym_comment, - ACTIONS(2200), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [118908] = 4, + ACTIONS(1754), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119452] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(994), 1, + sym__space, + ACTIONS(2556), 1, + anon_sym_LPAREN2, + ACTIONS(2558), 1, + sym__unquoted_pattern, STATE(4072), 1, sym_comment, - ACTIONS(6129), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6131), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [118923] = 4, + ACTIONS(996), 2, + sym__newline, + anon_sym_SEMI, + [119472] = 5, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7727), 1, + anon_sym_LT, STATE(4073), 1, sym_comment, - ACTIONS(6133), 2, + ACTIONS(5929), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(6135), 2, + ACTIONS(5933), 2, anon_sym_RBRACK, anon_sym_GT2, - [118938] = 4, + [119490] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__entry_separator, + ACTIONS(7598), 1, + anon_sym_QMARK2, STATE(4074), 1, sym_comment, - ACTIONS(2102), 3, + ACTIONS(1456), 4, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [118953] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2076), 1, sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [119506] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7600), 1, + sym_identifier, + ACTIONS(7602), 1, + anon_sym_DOLLAR, + STATE(2828), 1, + sym_val_variable, + STATE(3954), 1, + sym__variable_name, STATE(4075), 1, sym_comment, - ACTIONS(2078), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [118968] = 3, + STATE(4338), 1, + sym__assignment_pattern, + [119528] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4076), 1, sym_comment, - ACTIONS(5221), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(6176), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, anon_sym_LBRACE, - [118981] = 5, - ACTIONS(103), 1, + [119542] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4969), 1, - sym__unquoted_pattern, STATE(4077), 1, sym_comment, - ACTIONS(868), 2, - sym__newline, - anon_sym_SEMI, - [118998] = 3, + ACTIONS(1902), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1900), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119558] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1814), 1, + sym__unquoted_pattern, + ACTIONS(7729), 1, + aux_sym__immediate_decimal_token5, STATE(4078), 1, sym_comment, - ACTIONS(7694), 4, + ACTIONS(1812), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119011] = 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119576] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(2021), 1, sym__entry_separator, + ACTIONS(2023), 1, + anon_sym_RBRACE, + ACTIONS(7731), 1, + anon_sym_DOT_DOT2, STATE(4079), 1, sym_comment, - ACTIONS(2122), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119026] = 3, - ACTIONS(3), 1, + ACTIONS(7733), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119596] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4080), 1, + ACTIONS(7735), 1, + anon_sym_LPAREN, + ACTIONS(7738), 1, + anon_sym_SQUOTE2, + ACTIONS(7740), 1, + sym_unescaped_interpolated_content, + STATE(4563), 1, + sym_expr_interpolated, + STATE(4080), 2, sym_comment, - ACTIONS(5237), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [119039] = 3, - ACTIONS(3), 1, + aux_sym__inter_single_quotes_repeat1, + [119616] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2521), 1, + sym__entry_separator, + ACTIONS(2525), 1, + anon_sym_LPAREN2, + ACTIONS(2527), 1, + sym__unquoted_pattern_in_list, STATE(4081), 1, sym_comment, - ACTIONS(7696), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119052] = 3, + ACTIONS(2523), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [119636] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4082), 1, sym_comment, - ACTIONS(7696), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119065] = 3, + ACTIONS(6180), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [119650] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2576), 1, + sym__unquoted_pattern, STATE(4083), 1, sym_comment, - ACTIONS(7675), 4, + ACTIONS(2570), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119078] = 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119666] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7698), 1, - anon_sym_LBRACK, - ACTIONS(7700), 1, - anon_sym_LPAREN, - STATE(3902), 1, - sym_parameter_parens, - STATE(3989), 1, - sym_parameter_bracks, + ACTIONS(7600), 1, + sym_identifier, + ACTIONS(7602), 1, + anon_sym_DOLLAR, + STATE(2828), 1, + sym_val_variable, + STATE(4027), 1, + sym__variable_name, STATE(4084), 1, sym_comment, - [119097] = 3, + STATE(4653), 1, + sym__assignment_pattern_parenthesized, + [119688] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4085), 1, sym_comment, - ACTIONS(7675), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119110] = 3, - ACTIONS(3), 1, + ACTIONS(1748), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1746), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119704] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7372), 1, + aux_sym__immediate_decimal_token5, STATE(4086), 1, sym_comment, - ACTIONS(7683), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119123] = 4, + ACTIONS(1754), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1756), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [119722] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern, + ACTIONS(3813), 1, + anon_sym_LBRACE, STATE(4087), 1, sym_comment, - ACTIONS(7210), 3, + STATE(4626), 1, + sym_block, + ACTIONS(7338), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119138] = 5, + anon_sym_SEMI, + [119740] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7702), 1, - anon_sym_DOT_DOT2, + ACTIONS(3813), 1, + anon_sym_LBRACE, STATE(4088), 1, sym_comment, - ACTIONS(7704), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119155] = 4, - ACTIONS(103), 1, + STATE(4473), 1, + sym_block, + ACTIONS(7338), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [119758] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7706), 1, - anon_sym_DQUOTE, - ACTIONS(7708), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(4089), 2, + ACTIONS(1776), 1, + sym__unquoted_pattern, + STATE(4089), 1, sym_comment, - aux_sym_string_content_repeat1, - [119170] = 3, + ACTIONS(884), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119774] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4090), 1, sym_comment, - ACTIONS(7683), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119183] = 3, + ACTIONS(5929), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [119788] = 5, ACTIONS(3), 1, anon_sym_POUND, + STATE(4068), 1, + aux_sym_parameter_repeat2, STATE(4091), 1, sym_comment, - ACTIONS(7711), 4, + ACTIONS(1398), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119196] = 6, - ACTIONS(3), 1, + anon_sym_COMMA, + ACTIONS(7697), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [119806] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7698), 1, - anon_sym_LBRACK, - ACTIONS(7700), 1, + ACTIONS(7592), 1, anon_sym_LPAREN, - STATE(3959), 1, - sym_parameter_parens, + ACTIONS(7596), 1, + sym_unescaped_interpolated_content, + ACTIONS(7743), 1, + anon_sym_SQUOTE2, STATE(3963), 1, - sym_parameter_bracks, + aux_sym__inter_single_quotes_repeat1, STATE(4092), 1, sym_comment, - [119215] = 3, - ACTIONS(3), 1, + STATE(4563), 1, + sym_expr_interpolated, + [119828] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1030), 1, + sym__entry_separator, + ACTIONS(2556), 1, + anon_sym_LPAREN2, + ACTIONS(2558), 1, + sym__unquoted_pattern_in_list, STATE(4093), 1, sym_comment, - ACTIONS(7711), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119228] = 3, + ACTIONS(1008), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [119848] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7600), 1, + sym_identifier, + ACTIONS(7602), 1, + anon_sym_DOLLAR, + STATE(2828), 1, + sym_val_variable, + STATE(4021), 1, + sym__variable_name, STATE(4094), 1, sym_comment, - ACTIONS(7713), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119241] = 3, - ACTIONS(3), 1, + STATE(4566), 1, + sym__assignment_pattern, + [119870] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4095), 1, sym_comment, - ACTIONS(7715), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119254] = 4, + ACTIONS(2506), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2508), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [119886] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2202), 1, + ACTIONS(1008), 1, + anon_sym_RBRACK, + ACTIONS(1030), 1, sym__entry_separator, + ACTIONS(2556), 1, + anon_sym_LPAREN2, + ACTIONS(2558), 1, + sym__unquoted_pattern_in_list, STATE(4096), 1, sym_comment, - ACTIONS(2204), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119269] = 6, + [119905] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5822), 1, + ACTIONS(884), 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, + ACTIONS(858), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [119920] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4098), 1, sym_comment, - ACTIONS(7713), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119301] = 3, - ACTIONS(3), 1, + ACTIONS(5929), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(5933), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [119935] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2160), 1, + sym__entry_separator, STATE(4099), 1, sym_comment, - ACTIONS(7715), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2162), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [119314] = 4, - ACTIONS(103), 1, + anon_sym_DOT_DOT, + [119950] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2152), 1, + anon_sym_LBRACE, + ACTIONS(7745), 1, + anon_sym_DOT_DOT2, STATE(4100), 1, sym_comment, - ACTIONS(6137), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6139), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [119329] = 3, + ACTIONS(7747), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119967] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4101), 1, sym_comment, - ACTIONS(7713), 4, + ACTIONS(7749), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119342] = 4, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119980] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2519), 1, - sym__entry_separator, STATE(4102), 1, sym_comment, - ACTIONS(2521), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - [119357] = 6, - ACTIONS(103), 1, + ACTIONS(7749), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119993] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5833), 1, - sym__entry_separator, - ACTIONS(5835), 1, - anon_sym_RBRACE, STATE(4103), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [119376] = 4, + ACTIONS(5311), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [120006] = 5, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4732), 1, + sym__entry_separator, + STATE(2232), 1, + aux_sym__types_body_repeat2, STATE(4104), 1, sym_comment, - ACTIONS(2501), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2503), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [119391] = 4, + ACTIONS(7751), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [120023] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2206), 1, + ACTIONS(4732), 1, sym__entry_separator, + STATE(2241), 1, + aux_sym__types_body_repeat2, STATE(4105), 1, sym_comment, - ACTIONS(2208), 3, + ACTIONS(7751), 2, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT, - [119406] = 4, + [120040] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2210), 1, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2566), 1, sym__entry_separator, + ACTIONS(2568), 1, + anon_sym_RBRACE, STATE(4106), 1, sym_comment, - ACTIONS(2212), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119421] = 4, + [120059] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2214), 1, + ACTIONS(2021), 1, sym__entry_separator, + ACTIONS(2023), 1, + anon_sym_RBRACE, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern_in_record, STATE(4107), 1, sym_comment, - ACTIONS(2216), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119436] = 3, - ACTIONS(103), 1, + [120078] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4108), 1, sym_comment, - ACTIONS(1462), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [119449] = 4, + ACTIONS(7753), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [120091] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2218), 1, + ACTIONS(1637), 1, sym__entry_separator, + ACTIONS(1639), 1, + anon_sym_COLON2, + ACTIONS(7755), 1, + anon_sym_RBRACE, + STATE(1466), 1, + aux_sym__types_body_repeat2, STATE(4109), 1, sym_comment, - ACTIONS(2220), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119464] = 3, - ACTIONS(3), 1, + [120110] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1691), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2560), 1, + sym__entry_separator, + ACTIONS(2562), 1, + anon_sym_RBRACE, + ACTIONS(2564), 1, + anon_sym_LPAREN2, STATE(4110), 1, sym_comment, - ACTIONS(7713), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119477] = 3, - ACTIONS(3), 1, + [120129] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2517), 1, + sym__entry_separator, STATE(4111), 1, sym_comment, - ACTIONS(5257), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [119490] = 4, - ACTIONS(3), 1, + ACTIONS(2519), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [120144] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, + ACTIONS(2570), 1, + sym__entry_separator, + ACTIONS(2572), 1, + anon_sym_RBRACE, + ACTIONS(2574), 1, + anon_sym_LPAREN2, + ACTIONS(2576), 1, + sym__unquoted_pattern_in_record, STATE(4112), 1, sym_comment, - ACTIONS(1964), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119505] = 4, + [120163] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2222), 1, + ACTIONS(6575), 1, + anon_sym_LPAREN2, + ACTIONS(7757), 1, + anon_sym_RBRACK, + ACTIONS(7759), 1, sym__entry_separator, STATE(4113), 1, sym_comment, - ACTIONS(2224), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119520] = 6, + STATE(4858), 1, + sym__expr_parenthesized_immediate, + [120182] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7717), 1, - anon_sym_LBRACK, - STATE(540), 1, - aux_sym__repeat_newline, + ACTIONS(2508), 1, + sym__unquoted_pattern, STATE(4114), 1, sym_comment, - STATE(4957), 1, - sym_val_list, - [119539] = 4, + ACTIONS(2506), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [120197] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2226), 1, + ACTIONS(2521), 1, sym__entry_separator, + ACTIONS(2523), 1, + anon_sym_RBRACE, + ACTIONS(2525), 1, + anon_sym_LPAREN2, + ACTIONS(2527), 1, + sym__unquoted_pattern_in_record, STATE(4115), 1, sym_comment, - ACTIONS(2228), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119554] = 4, - ACTIONS(103), 1, + [120216] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2230), 1, - sym__entry_separator, + ACTIONS(6953), 1, + sym__unquoted_pattern, STATE(4116), 1, sym_comment, - ACTIONS(2232), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119569] = 4, - ACTIONS(103), 1, + ACTIONS(884), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [120231] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2234), 1, - sym__entry_separator, + ACTIONS(2108), 1, + anon_sym_LBRACE, + ACTIONS(7761), 1, + anon_sym_DOT_DOT2, STATE(4117), 1, sym_comment, - ACTIONS(2236), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119584] = 4, + ACTIONS(7763), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120248] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, + ACTIONS(2116), 1, + anon_sym_LBRACE, + ACTIONS(7765), 1, + anon_sym_DOT_DOT2, STATE(4118), 1, sym_comment, - ACTIONS(2575), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119599] = 4, + ACTIONS(7767), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120265] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2124), 1, + anon_sym_LBRACE, + ACTIONS(7769), 1, + anon_sym_DOT_DOT2, + STATE(4119), 1, + sym_comment, + ACTIONS(7771), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120282] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2238), 1, + ACTIONS(2152), 1, sym__entry_separator, - STATE(4119), 1, + STATE(4120), 1, sym_comment, - ACTIONS(2240), 3, + ACTIONS(2154), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119614] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(4120), 1, - sym_comment, - ACTIONS(1974), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119629] = 4, + [120297] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2242), 1, + ACTIONS(7215), 1, sym__entry_separator, + ACTIONS(7500), 1, + anon_sym_DOT_DOT2, STATE(4121), 1, sym_comment, - ACTIONS(2244), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119644] = 4, + ACTIONS(7502), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120314] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2246), 1, + ACTIONS(7265), 1, sym__entry_separator, + ACTIONS(7500), 1, + anon_sym_DOT_DOT2, STATE(4122), 1, sym_comment, - ACTIONS(2248), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119659] = 4, + ACTIONS(7502), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120331] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2250), 1, + ACTIONS(1008), 1, + anon_sym_RBRACE, + ACTIONS(1030), 1, sym__entry_separator, + ACTIONS(2556), 1, + anon_sym_LPAREN2, + ACTIONS(2558), 1, + sym__unquoted_pattern_in_record, STATE(4123), 1, sym_comment, - ACTIONS(2252), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119674] = 4, - ACTIONS(3), 1, + [120350] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, + ACTIONS(994), 1, + sym__entry_separator, + ACTIONS(996), 1, + anon_sym_RBRACE, + ACTIONS(2556), 1, + anon_sym_LPAREN2, + ACTIONS(2558), 1, + sym__unquoted_pattern_in_record, STATE(4124), 1, sym_comment, - ACTIONS(2523), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119689] = 4, + [120369] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern, + ACTIONS(7139), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_LPAREN, + STATE(3788), 1, + sym_parameter_parens, + STATE(3789), 1, + sym_parameter_bracks, STATE(4125), 1, sym_comment, - ACTIONS(2567), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119704] = 6, - ACTIONS(103), 1, + [120388] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3778), 1, - anon_sym_LBRACE, STATE(4126), 1, sym_comment, - STATE(4257), 1, - sym_block, - [119723] = 4, + ACTIONS(4070), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [120401] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(3065), 1, + sym_block, STATE(4127), 1, sym_comment, - ACTIONS(2501), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119738] = 6, - ACTIONS(103), 1, + STATE(4184), 1, + aux_sym__repeat_newline, + [120420] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7719), 1, - anon_sym_GT2, - ACTIONS(7721), 1, - anon_sym_AT2, - ACTIONS(7723), 1, - sym__entry_separator, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(3015), 1, + sym_block, STATE(4128), 1, sym_comment, - STATE(4652), 1, - sym_param_completer, - [119757] = 3, + [120439] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4129), 1, sym_comment, - ACTIONS(7725), 4, + ACTIONS(4107), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119770] = 6, - ACTIONS(103), 1, + anon_sym_LBRACE, + [120452] = 3, + ACTIONS(3), 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, + ACTIONS(7773), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120465] = 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(4131), 1, sym_comment, - STATE(4259), 1, - sym_block, - [119808] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3778), 1, + ACTIONS(5331), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(2986), 1, - sym_block, + [120478] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4132), 1, sym_comment, - [119827] = 5, + ACTIONS(7775), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [120491] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(7727), 1, - anon_sym_DOT_DOT2, STATE(4133), 1, sym_comment, - ACTIONS(7729), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119844] = 5, - ACTIONS(103), 1, + ACTIONS(7773), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120504] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7210), 1, - sym__entry_separator, + ACTIONS(7362), 1, + anon_sym_LBRACE, + STATE(3174), 1, + sym__blosure, STATE(4134), 1, sym_comment, - ACTIONS(7278), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [119861] = 5, + STATE(3172), 2, + sym_block, + sym_val_closure, + [120521] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2152), 1, - anon_sym_LBRACE, - ACTIONS(7731), 1, - anon_sym_DOT_DOT2, - STATE(4135), 1, + ACTIONS(3060), 1, + anon_sym_RPAREN, + ACTIONS(7777), 2, + sym__newline, + anon_sym_SEMI, + STATE(4135), 2, sym_comment, - ACTIONS(7733), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119878] = 3, - ACTIONS(3), 1, + aux_sym__block_body_repeat1, + [120536] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(884), 1, + sym__space, + ACTIONS(5017), 1, + sym__unquoted_pattern, STATE(4136), 1, sym_comment, - ACTIONS(7725), 4, + ACTIONS(858), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119891] = 3, + [120553] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4137), 1, sym_comment, - ACTIONS(7735), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119904] = 6, + ACTIONS(7780), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [120566] = 3, 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, + ACTIONS(7782), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120579] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7372), 1, - anon_sym_RPAREN, + ACTIONS(2031), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7784), 1, + anon_sym_DOT_DOT2, STATE(4139), 1, sym_comment, - STATE(4282), 1, - aux_sym__block_body_repeat1, - ACTIONS(7737), 2, - sym__newline, - anon_sym_SEMI, - [119940] = 3, + ACTIONS(7786), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120596] = 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, + ACTIONS(7788), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120609] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5379), 1, + anon_sym_COLON2, STATE(4141), 1, sym_comment, - ACTIONS(7739), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [119966] = 3, + STATE(4147), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5373), 2, + sym__newline, + sym__space, + [120626] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4142), 1, sym_comment, - ACTIONS(7735), 4, + ACTIONS(7788), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119979] = 6, + [120639] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2575), 1, + ACTIONS(1631), 1, + anon_sym_RBRACE, + ACTIONS(1637), 1, sym__entry_separator, - ACTIONS(2577), 1, - anon_sym_RBRACK, + ACTIONS(1639), 1, + anon_sym_COLON2, + STATE(1460), 1, + aux_sym__types_body_repeat2, STATE(4143), 1, sym_comment, - [119998] = 3, + [120658] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2596), 1, + sym__unquoted_pattern, STATE(4144), 1, sym_comment, - ACTIONS(7741), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120011] = 6, + ACTIONS(1716), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [120673] = 4, ACTIONS(103), 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(7790), 1, + anon_sym_LPAREN, STATE(4145), 1, sym_comment, - [120030] = 4, - ACTIONS(3), 1, + ACTIONS(7792), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [120688] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, + ACTIONS(2596), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7265), 1, + sym__entry_separator, STATE(4146), 1, sym_comment, - ACTIONS(2635), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120045] = 6, - ACTIONS(3), 1, + ACTIONS(7348), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [120705] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3196), 1, - anon_sym_SEMI, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, + ACTIONS(7794), 1, + anon_sym_COLON2, STATE(4147), 1, sym_comment, - STATE(4404), 1, - aux_sym__repeat_newline, - [120064] = 6, - ACTIONS(3), 1, + STATE(4160), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5373), 2, + sym__newline, + sym__space, + [120722] = 4, + ACTIONS(103), 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, + ACTIONS(1856), 1, + sym__entry_separator, STATE(4148), 1, sym_comment, - [120083] = 3, + ACTIONS(1858), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + [120737] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1746), 1, + anon_sym_LBRACE, + ACTIONS(1748), 1, + sym__unquoted_pattern, + ACTIONS(7796), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7798), 1, + aux_sym__immediate_decimal_token5, STATE(4149), 1, sym_comment, - ACTIONS(7747), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120096] = 3, - ACTIONS(3), 1, + [120756] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2566), 1, + sym__entry_separator, + ACTIONS(2568), 1, + anon_sym_RBRACK, 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, + [120775] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2021), 1, + sym__entry_separator, + ACTIONS(2023), 1, + anon_sym_RBRACK, + ACTIONS(2025), 1, + anon_sym_LPAREN2, + ACTIONS(2031), 1, + sym__unquoted_pattern_in_list, STATE(4151), 1, sym_comment, - ACTIONS(7747), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120122] = 5, + [120794] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3046), 1, + ACTIONS(2031), 1, + sym__unquoted_pattern, + ACTIONS(7800), 1, + anon_sym_DOT_DOT2, + STATE(4152), 1, + sym_comment, + ACTIONS(7802), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120811] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3056), 1, ts_builtin_sym_end, STATE(1367), 1, aux_sym__block_body_repeat1, - STATE(4152), 1, + STATE(4153), 1, sym_comment, ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - [120139] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4153), 1, - sym_comment, - ACTIONS(1468), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120152] = 5, - ACTIONS(3), 1, + [120828] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7749), 1, - anon_sym_RPAREN, + ACTIONS(2502), 1, + sym__entry_separator, STATE(4154), 1, sym_comment, - STATE(4282), 1, - aux_sym__block_body_repeat1, - ACTIONS(7737), 2, - sym__newline, - anon_sym_SEMI, - [120169] = 3, - ACTIONS(3), 1, + ACTIONS(2504), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [120843] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4155), 1, - sym_comment, - ACTIONS(5287), 4, - ts_builtin_sym_end, + ACTIONS(7804), 1, + sym__space, + ACTIONS(5784), 2, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [120182] = 3, + STATE(4155), 2, + sym_comment, + aux_sym_attribute_repeat1, + [120858] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2527), 1, + sym__unquoted_pattern, STATE(4156), 1, sym_comment, - ACTIONS(7741), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120195] = 4, + ACTIONS(2521), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [120873] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, + ACTIONS(1776), 1, sym__unquoted_pattern, STATE(4157), 1, sym_comment, - ACTIONS(994), 3, + ACTIONS(884), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [120210] = 4, + [120888] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(4158), 1, - sym_comment, - ACTIONS(1018), 3, + ACTIONS(7356), 1, sym__newline, + ACTIONS(7358), 1, anon_sym_PIPE, + ACTIONS(7807), 1, anon_sym_EQ_GT, - [120225] = 6, - ACTIONS(103), 1, + STATE(4158), 1, + sym_comment, + STATE(4341), 1, + aux_sym_match_pattern_repeat1, + [120907] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACE, - ACTIONS(1968), 1, - anon_sym_LPAREN2, + ACTIONS(7809), 1, + anon_sym_LBRACK, + ACTIONS(7811), 1, + anon_sym_LPAREN, + STATE(3942), 1, + sym_parameter_parens, + STATE(3943), 1, + sym_parameter_bracks, STATE(4159), 1, sym_comment, - [120244] = 3, - ACTIONS(3), 1, + [120926] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4160), 1, + ACTIONS(3436), 1, + anon_sym_COLON2, + ACTIONS(7813), 2, + sym__newline, + sym__space, + STATE(4160), 2, sym_comment, - ACTIONS(1472), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120257] = 3, + aux_sym_pipe_element_parenthesized_repeat1, + [120941] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7809), 1, + anon_sym_LBRACK, + ACTIONS(7811), 1, + anon_sym_LPAREN, + STATE(4087), 1, + sym_parameter_parens, + STATE(4088), 1, + sym_parameter_bracks, STATE(4161), 1, sym_comment, - ACTIONS(1476), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120270] = 3, + [120960] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2558), 1, + sym__unquoted_pattern, STATE(4162), 1, sym_comment, - ACTIONS(1516), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120283] = 4, - ACTIONS(103), 1, + ACTIONS(1030), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [120975] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__entry_separator, + ACTIONS(2558), 1, + sym__unquoted_pattern, STATE(4163), 1, sym_comment, - ACTIONS(868), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [120298] = 3, - ACTIONS(3), 1, + ACTIONS(994), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [120990] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1582), 1, + sym__entry_separator, STATE(4164), 1, sym_comment, - ACTIONS(7751), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120311] = 4, + ACTIONS(1580), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + [121005] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2112), 1, + ACTIONS(2296), 1, sym__entry_separator, STATE(4165), 1, sym_comment, - ACTIONS(2114), 3, + ACTIONS(2298), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [120326] = 6, + [121020] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, + ACTIONS(6575), 1, anon_sym_LPAREN2, - ACTIONS(7753), 1, + ACTIONS(7816), 1, anon_sym_RBRACK, - ACTIONS(7755), 1, + ACTIONS(7818), 1, sym__entry_separator, STATE(4166), 1, sym_comment, - STATE(4966), 1, + STATE(4858), 1, sym__expr_parenthesized_immediate, - [120345] = 5, - ACTIONS(3), 1, + [121039] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(459), 1, - ts_builtin_sym_end, - STATE(1368), 1, - aux_sym__block_body_repeat1, + ACTIONS(4276), 1, + sym__entry_separator, + ACTIONS(7820), 1, + anon_sym_LBRACK, + ACTIONS(7822), 1, + anon_sym_RBRACK, + STATE(1873), 1, + aux_sym__types_body_repeat2, STATE(4167), 1, sym_comment, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - [120362] = 3, - ACTIONS(3), 1, + [121058] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2108), 1, + sym__entry_separator, STATE(4168), 1, sym_comment, - ACTIONS(5253), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [120375] = 3, - ACTIONS(3), 1, + ACTIONS(2110), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [121073] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2116), 1, + sym__entry_separator, STATE(4169), 1, sym_comment, - ACTIONS(6928), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [120388] = 3, + ACTIONS(2118), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [121088] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4170), 1, sym_comment, - ACTIONS(7751), 4, + ACTIONS(5253), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120401] = 6, - ACTIONS(3), 1, + anon_sym_LBRACE, + [121101] = 4, + ACTIONS(103), 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, + ACTIONS(2124), 1, + sym__entry_separator, STATE(4171), 1, sym_comment, - [120420] = 3, + ACTIONS(2126), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [121116] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4172), 1, sym_comment, - ACTIONS(7757), 4, - anon_sym_if, + ACTIONS(5276), 4, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120433] = 6, + anon_sym_SEMI, + anon_sym_LBRACE, + [121129] = 4, 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, + ACTIONS(7824), 1, + anon_sym_DQUOTE, + ACTIONS(7826), 2, + sym__escaped_str_content, + sym_escape_sequence, + STATE(4173), 2, sym_comment, - STATE(4631), 1, - sym__expr_parenthesized_immediate, - [120452] = 6, + aux_sym_string_content_repeat1, + [121144] = 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_RBRACE, + ACTIONS(2738), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2740), 1, + anon_sym_COLON2, + ACTIONS(3851), 1, + anon_sym_LBRACE, STATE(4174), 1, sym_comment, - [120471] = 3, - ACTIONS(3), 1, + STATE(4297), 1, + sym_block, + [121163] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4276), 1, + sym__entry_separator, + ACTIONS(7820), 1, + anon_sym_LBRACK, + ACTIONS(7829), 1, + anon_sym_RBRACK, + STATE(1873), 1, + aux_sym__types_body_repeat2, STATE(4175), 1, sym_comment, - ACTIONS(7757), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120484] = 4, - ACTIONS(103), 1, + [121182] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__entry_separator, + ACTIONS(7368), 1, + anon_sym_RPAREN, + STATE(4135), 1, + aux_sym__block_body_repeat1, STATE(4176), 1, sym_comment, - ACTIONS(1860), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - [120499] = 6, - ACTIONS(103), 1, + ACTIONS(7831), 2, + sym__newline, + anon_sym_SEMI, + [121199] = 4, + 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, + ACTIONS(2596), 1, + sym__unquoted_pattern, STATE(4177), 1, sym_comment, - [120518] = 5, + ACTIONS(7265), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121214] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2100), 1, - anon_sym_LBRACE, - ACTIONS(7759), 1, - anon_sym_DOT_DOT2, + ACTIONS(1517), 1, + sym__table_head_separator, + ACTIONS(7580), 1, + anon_sym_DOT2, STATE(4178), 1, sym_comment, - ACTIONS(7761), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120535] = 5, - ACTIONS(3), 1, + STATE(4185), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4732), 1, + sym_path, + [121233] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(7763), 1, - anon_sym_DOT_DOT2, + ACTIONS(6575), 1, + anon_sym_LPAREN2, + ACTIONS(7833), 1, + anon_sym_RBRACK, + ACTIONS(7835), 1, + sym__entry_separator, STATE(4179), 1, sym_comment, - ACTIONS(7765), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120552] = 3, - ACTIONS(3), 1, + STATE(4858), 1, + sym__expr_parenthesized_immediate, + [121252] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2738), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2740), 1, + anon_sym_COLON2, + ACTIONS(3851), 1, + anon_sym_LBRACE, STATE(4180), 1, sym_comment, - ACTIONS(6942), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [120565] = 4, + STATE(4298), 1, + sym_block, + [121271] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(7767), 2, - sym__newline, - sym__space, - STATE(4181), 2, + ACTIONS(5126), 1, + anon_sym_LPAREN2, + ACTIONS(5876), 1, + sym__entry_separator, + ACTIONS(5878), 1, + anon_sym_RBRACE, + STATE(4181), 1, sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - [120580] = 6, - ACTIONS(3), 1, + STATE(4904), 1, + sym__expr_parenthesized_immediate, + [121290] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7289), 1, - sym__newline, - ACTIONS(7291), 1, - anon_sym_PIPE, - ACTIONS(7770), 1, - anon_sym_EQ_GT, + ACTIONS(5126), 1, + anon_sym_LPAREN2, + ACTIONS(5880), 1, + sym__entry_separator, + ACTIONS(5882), 1, + anon_sym_RBRACE, STATE(4182), 1, sym_comment, - STATE(4344), 1, - aux_sym_match_pattern_repeat1, - [120599] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2076), 1, - anon_sym_LBRACE, - ACTIONS(7772), 1, - anon_sym_DOT_DOT2, - STATE(4183), 1, - sym_comment, - ACTIONS(7774), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120616] = 6, + STATE(4904), 1, + sym__expr_parenthesized_immediate, + [121309] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(7589), 1, - anon_sym_RBRACE, - ACTIONS(7591), 1, + ACTIONS(2363), 1, sym__entry_separator, - STATE(4184), 1, + STATE(4183), 1, sym_comment, - STATE(4631), 1, - sym__expr_parenthesized_immediate, - [120635] = 5, + ACTIONS(2365), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [121324] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7776), 1, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3851), 1, anon_sym_LBRACE, - STATE(3282), 1, - sym__blosure, - STATE(4185), 1, - sym_comment, - STATE(3281), 2, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(3004), 1, sym_block, - sym_val_closure, - [120652] = 5, + STATE(4184), 1, + sym_comment, + [121343] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2120), 1, - anon_sym_LBRACE, - ACTIONS(7778), 1, - anon_sym_DOT_DOT2, + ACTIONS(1510), 1, + sym__table_head_separator, + ACTIONS(7837), 1, + anon_sym_DOT2, + STATE(4732), 1, + sym_path, + STATE(4185), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + [121360] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2610), 1, + sym__entry_separator, STATE(4186), 1, sym_comment, - ACTIONS(7780), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120669] = 3, - ACTIONS(3), 1, + ACTIONS(2612), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + [121375] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2367), 1, + sym__entry_separator, STATE(4187), 1, sym_comment, - ACTIONS(7337), 4, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - anon_sym_AT, - [120682] = 5, - ACTIONS(3), 1, + ACTIONS(2369), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [121390] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7307), 1, - anon_sym_RPAREN, + ACTIONS(2379), 1, + sym__entry_separator, STATE(4188), 1, sym_comment, - STATE(4282), 1, - aux_sym__block_body_repeat1, - ACTIONS(7737), 2, - sym__newline, - anon_sym_SEMI, - [120699] = 6, - 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(2381), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [121405] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(2383), 1, sym__entry_separator, - STATE(2238), 1, - aux_sym__types_body_repeat2, - STATE(4190), 1, + STATE(4189), 1, sym_comment, - ACTIONS(7786), 2, + ACTIONS(2385), 3, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - [120735] = 5, + [121420] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7840), 1, + anon_sym_RBRACK, + STATE(3399), 1, + aux_sym_parameter_repeat2, + STATE(4190), 1, + sym_comment, + ACTIONS(1480), 2, + sym__newline, + anon_sym_COMMA, + [121437] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7204), 1, + ACTIONS(2387), 1, sym__entry_separator, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, STATE(4191), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120752] = 5, - ACTIONS(103), 1, + ACTIONS(2389), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [121452] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7210), 1, - sym__entry_separator, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, STATE(4192), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120769] = 3, - ACTIONS(3), 1, + ACTIONS(5257), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [121465] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2738), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2740), 1, + anon_sym_COLON2, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(2960), 1, + sym_block, STATE(4193), 1, sym_comment, - ACTIONS(6955), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [120782] = 5, + [121484] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(2429), 1, sym__entry_separator, - STATE(2231), 1, - aux_sym__types_body_repeat2, STATE(4194), 1, sym_comment, - ACTIONS(7786), 2, + ACTIONS(2431), 3, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - [120799] = 4, - ACTIONS(103), 1, + [121499] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7788), 1, - anon_sym_LPAREN, + ACTIONS(1615), 1, + sym__unquoted_pattern, STATE(4195), 1, sym_comment, - ACTIONS(7790), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [120814] = 6, + ACTIONS(2011), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121514] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(7842), 1, + anon_sym_GT2, + ACTIONS(7844), 1, + anon_sym_AT2, + ACTIONS(7846), 1, sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - ACTIONS(7794), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, STATE(4196), 1, sym_comment, - [120833] = 4, + STATE(4837), 1, + sym_param_completer, + [121533] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2505), 1, + ACTIONS(2210), 1, sym__entry_separator, STATE(4197), 1, sym_comment, - ACTIONS(2507), 3, + ACTIONS(2212), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [120848] = 5, + [121548] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7798), 1, - sym__space, + ACTIONS(2214), 1, + sym__entry_separator, STATE(4198), 1, sym_comment, - STATE(4215), 1, - aux_sym_attribute_repeat1, - ACTIONS(7796), 2, - sym__newline, - anon_sym_SEMI, - [120865] = 4, + ACTIONS(2216), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [121563] = 4, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2218), 1, + sym__entry_separator, STATE(4199), 1, sym_comment, - ACTIONS(7800), 2, + ACTIONS(2220), 3, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - ACTIONS(7802), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [120880] = 6, + [121578] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2523), 1, + ACTIONS(2222), 1, sym__entry_separator, - ACTIONS(2525), 1, - anon_sym_RBRACE, - ACTIONS(2629), 1, - anon_sym_LPAREN2, STATE(4200), 1, sym_comment, - [120899] = 3, - ACTIONS(3), 1, + ACTIONS(2224), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [121593] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2226), 1, + sym__entry_separator, STATE(4201), 1, sym_comment, - ACTIONS(7804), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2228), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [120912] = 3, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [121608] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2230), 1, + sym__entry_separator, STATE(4202), 1, sym_comment, - ACTIONS(7804), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2232), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [120925] = 6, + anon_sym_DOT_DOT, + [121623] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, + ACTIONS(2234), 1, sym__entry_separator, STATE(4203), 1, sym_comment, - STATE(4751), 1, - sym__expr_parenthesized_immediate, - [120944] = 3, + ACTIONS(2236), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [121638] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2031), 1, + sym__unquoted_pattern, STATE(4204), 1, sym_comment, - ACTIONS(7806), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [120957] = 4, - ACTIONS(103), 1, + ACTIONS(2566), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121653] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7808), 1, - anon_sym_LPAREN, + ACTIONS(2031), 1, + sym__unquoted_pattern, STATE(4205), 1, sym_comment, - ACTIONS(7810), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [120972] = 4, + ACTIONS(2021), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121668] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4206), 1, - sym_comment, - ACTIONS(6093), 2, - anon_sym_AT2, + ACTIONS(5126), 1, + anon_sym_LPAREN2, + ACTIONS(5868), 1, sym__entry_separator, - ACTIONS(6095), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [120987] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1706), 1, - anon_sym_LBRACE, - ACTIONS(7812), 1, - anon_sym_DOT_DOT2, - STATE(4207), 1, + ACTIONS(5870), 1, + anon_sym_RBRACE, + STATE(4206), 1, sym_comment, - ACTIONS(7814), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121004] = 6, + STATE(4904), 1, + sym__expr_parenthesized_immediate, + [121687] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(5126), 1, + anon_sym_LPAREN2, + ACTIONS(5872), 1, sym__entry_separator, - ACTIONS(2569), 1, + ACTIONS(5874), 1, anon_sym_RBRACE, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_record, + STATE(4207), 1, + sym_comment, + STATE(4904), 1, + sym__expr_parenthesized_immediate, + [121706] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4208), 1, sym_comment, - [121023] = 4, - ACTIONS(103), 1, + ACTIONS(7848), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121719] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1691), 1, + sym__unquoted_pattern, STATE(4209), 1, sym_comment, - ACTIONS(1726), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1728), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [121038] = 4, - ACTIONS(103), 1, + ACTIONS(2560), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121734] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2576), 1, + sym__unquoted_pattern, STATE(4210), 1, sym_comment, - ACTIONS(6107), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6109), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [121053] = 3, + ACTIONS(2570), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121749] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(7850), 1, + anon_sym_DOT_DOT2, STATE(4211), 1, sym_comment, - ACTIONS(4060), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [121066] = 3, + ACTIONS(7852), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121766] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2508), 1, + sym__unquoted_pattern, STATE(4212), 1, sym_comment, - ACTIONS(7816), 4, + ACTIONS(2506), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121079] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121781] = 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, + ACTIONS(7215), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121794] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2591), 1, - sym__entry_separator, STATE(4214), 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(7854), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - STATE(4215), 2, - sym_comment, - aux_sym_attribute_repeat1, - [121122] = 6, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121807] = 5, + ACTIONS(3), 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, + ACTIONS(7446), 1, + anon_sym_RPAREN, + STATE(4135), 1, + aux_sym__block_body_repeat1, + STATE(4215), 1, sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [121141] = 3, + ACTIONS(7831), 2, + sym__newline, + anon_sym_SEMI, + [121824] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4217), 1, + STATE(4216), 1, sym_comment, - ACTIONS(7825), 4, + ACTIONS(7265), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [121154] = 4, - ACTIONS(103), 1, + [121837] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3256), 1, + anon_sym_SEMI, + STATE(1363), 1, + aux_sym__parenthesized_body_repeat1, + STATE(4217), 1, + sym_comment, + STATE(4628), 1, + aux_sym__repeat_newline, + [121856] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7856), 1, + anon_sym_RPAREN, + STATE(4135), 1, + aux_sym__block_body_repeat1, STATE(4218), 1, sym_comment, - ACTIONS(1802), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1804), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [121169] = 4, + ACTIONS(7831), 2, + sym__newline, + anon_sym_SEMI, + [121873] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, + ACTIONS(1754), 1, + anon_sym_LBRACE, + ACTIONS(1756), 1, sym__unquoted_pattern, + ACTIONS(7858), 1, + anon_sym_DOT, + ACTIONS(7860), 1, + aux_sym__immediate_decimal_token5, STATE(4219), 1, sym_comment, - ACTIONS(2501), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [121184] = 3, - ACTIONS(3), 1, + [121892] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(6575), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_RBRACK, + ACTIONS(7512), 1, + sym__entry_separator, STATE(4220), 1, sym_comment, - ACTIONS(7827), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121197] = 4, - ACTIONS(103), 1, + STATE(4760), 1, + sym__expr_parenthesized_immediate, + [121911] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7862), 1, + anon_sym_LBRACE, + ACTIONS(7864), 1, + anon_sym_DOT_DOT2, STATE(4221), 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, + ACTIONS(7866), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121928] = 3, + ACTIONS(3), 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, + ACTIONS(1521), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [121941] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6902), 1, - sym__unquoted_pattern, + ACTIONS(5126), 1, + anon_sym_LPAREN2, + ACTIONS(7582), 1, + anon_sym_RBRACE, + ACTIONS(7584), 1, + sym__entry_separator, STATE(4223), 1, sym_comment, - ACTIONS(968), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [121246] = 3, + STATE(4816), 1, + sym__expr_parenthesized_immediate, + [121960] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2527), 1, + sym__unquoted_pattern, STATE(4224), 1, sym_comment, - ACTIONS(7829), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [121259] = 3, + ACTIONS(2521), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121975] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7868), 1, + anon_sym_LBRACE, + STATE(3348), 1, + sym__blosure, STATE(4225), 1, sym_comment, - ACTIONS(7831), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121272] = 3, - ACTIONS(3), 1, + STATE(3345), 2, + sym_block, + sym_val_closure, + [121992] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7870), 1, + anon_sym_LPAREN, STATE(4226), 1, sym_comment, - ACTIONS(7833), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121285] = 3, + ACTIONS(7872), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [122007] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4227), 1, sym_comment, - ACTIONS(7835), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121298] = 3, + ACTIONS(1525), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [122020] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4228), 1, sym_comment, - ACTIONS(7837), 4, + ACTIONS(1529), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [122033] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4229), 1, + sym_comment, + ACTIONS(7874), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121311] = 6, - ACTIONS(103), 1, + [122046] = 4, + 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, + ACTIONS(2558), 1, + sym__unquoted_pattern, + STATE(4230), 1, sym_comment, - [121330] = 3, + ACTIONS(1030), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [122061] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4230), 1, + STATE(4231), 1, sym_comment, - ACTIONS(6959), 4, + ACTIONS(7066), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [121343] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4231), 1, - sym_comment, - ACTIONS(7839), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121356] = 5, + [122074] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7812), 1, - anon_sym_DOT_DOT2, - ACTIONS(7841), 1, - anon_sym_LBRACE, STATE(4232), 1, sym_comment, - ACTIONS(7814), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121373] = 3, + ACTIONS(7876), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [122087] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2558), 1, + sym__unquoted_pattern, STATE(4233), 1, sym_comment, - ACTIONS(4062), 4, - ts_builtin_sym_end, + ACTIONS(994), 3, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [121386] = 4, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [122102] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2152), 1, - sym__entry_separator, STATE(4234), 1, sym_comment, - ACTIONS(2154), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121401] = 6, - ACTIONS(103), 1, + ACTIONS(7411), 4, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + anon_sym_AT, + [122115] = 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, sym_comment, - [121420] = 6, - ACTIONS(103), 1, + ACTIONS(7878), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [122128] = 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, sym_comment, - [121439] = 3, + ACTIONS(1498), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [122141] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7139), 1, + anon_sym_LBRACK, + ACTIONS(7141), 1, + anon_sym_LPAREN, + STATE(3807), 1, + sym_parameter_parens, + STATE(3808), 1, + sym_parameter_bracks, STATE(4237), 1, sym_comment, - ACTIONS(7847), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121452] = 6, - ACTIONS(103), 1, + [122160] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - ACTIONS(7849), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, STATE(4238), 1, sym_comment, - [121471] = 6, + ACTIONS(1502), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [122173] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4239), 1, + sym_comment, + ACTIONS(1506), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [122186] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7851), 1, - anon_sym_COLON, - ACTIONS(7853), 1, + ACTIONS(1888), 1, + sym__entry_separator, + STATE(4240), 1, + sym_comment, + ACTIONS(1890), 3, + anon_sym_RBRACK, anon_sym_GT2, - ACTIONS(7855), 1, + anon_sym_RBRACE, + [122201] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5126), 1, + anon_sym_LPAREN2, + ACTIONS(7610), 1, + anon_sym_RBRACE, + ACTIONS(7612), 1, sym__entry_separator, - STATE(4239), 1, + STATE(4241), 1, sym_comment, - STATE(4709), 1, - sym__collection_annotation, - [121490] = 3, + STATE(4816), 1, + sym__expr_parenthesized_immediate, + [122220] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4240), 1, + STATE(4242), 1, sym_comment, - ACTIONS(7847), 4, + ACTIONS(7880), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121503] = 3, + [122233] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4241), 1, + STATE(4243), 1, sym_comment, - ACTIONS(7741), 4, + ACTIONS(7882), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121516] = 3, + [122246] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4242), 1, + ACTIONS(5688), 1, + sym__newline, + ACTIONS(7884), 1, + anon_sym_EQ, + ACTIONS(7886), 1, + anon_sym_COLON, + STATE(3344), 1, + aux_sym__repeat_newline, + STATE(4244), 1, sym_comment, - ACTIONS(7034), 4, + [122265] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4245), 1, + sym_comment, + ACTIONS(7105), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [121529] = 3, + [122278] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4243), 1, + STATE(4246), 1, sym_comment, - ACTIONS(7741), 4, + ACTIONS(7882), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121542] = 3, + [122291] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4244), 1, + STATE(4247), 1, sym_comment, - ACTIONS(7751), 4, + ACTIONS(7888), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121555] = 4, + [122304] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(4245), 1, - sym_comment, - ACTIONS(1802), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1804), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [121570] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4246), 1, + ACTIONS(7892), 1, + sym__space, + STATE(4155), 1, + aux_sym_attribute_repeat1, + STATE(4248), 1, sym_comment, - ACTIONS(6894), 4, - ts_builtin_sym_end, + ACTIONS(7890), 2, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [121583] = 6, + [122321] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, + STATE(4249), 1, + sym_comment, + ACTIONS(7894), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7896), 2, anon_sym_LPAREN2, - ACTIONS(7857), 1, + sym__entry_separator, + [122336] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4250), 1, + sym_comment, + ACTIONS(1533), 4, anon_sym_RBRACK, - ACTIONS(7859), 1, sym__entry_separator, - STATE(4247), 1, + sym__table_head_separator, + anon_sym_DOT2, + [122349] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7898), 1, + anon_sym_DQUOTE, + STATE(4173), 1, + aux_sym_string_content_repeat1, + STATE(4251), 1, sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [121602] = 3, - ACTIONS(3), 1, + ACTIONS(7578), 2, + sym__escaped_str_content, + sym_escape_sequence, + [122366] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7892), 1, + sym__space, STATE(4248), 1, + aux_sym_attribute_repeat1, + STATE(4252), 1, sym_comment, - ACTIONS(6922), 4, - ts_builtin_sym_end, + ACTIONS(7900), 2, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [121615] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(996), 1, - anon_sym_RBRACE, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(4249), 1, - sym_comment, - [121634] = 3, + [122383] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4250), 1, + STATE(4253), 1, sym_comment, - ACTIONS(7861), 4, + ACTIONS(7888), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121647] = 3, + [122396] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4251), 1, + STATE(4254), 1, sym_comment, - ACTIONS(7863), 4, + ACTIONS(7902), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121660] = 3, + [122409] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4252), 1, + STATE(4255), 1, sym_comment, - ACTIONS(7865), 4, + ACTIONS(4113), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121673] = 6, - ACTIONS(103), 1, + anon_sym_LBRACE, + [122422] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_RBRACE, - ACTIONS(1018), 1, - sym__entry_separator, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(4253), 1, + STATE(4256), 1, sym_comment, - [121692] = 3, + ACTIONS(4119), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [122435] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4254), 1, + STATE(4257), 1, sym_comment, - ACTIONS(7002), 4, + ACTIONS(7904), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [121705] = 5, + [122448] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7812), 1, - anon_sym_DOT_DOT2, - ACTIONS(7867), 1, - anon_sym_LBRACE, - STATE(4255), 1, + STATE(4258), 1, sym_comment, - ACTIONS(7814), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121722] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(7633), 1, + ACTIONS(7906), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(7635), 1, - sym__entry_separator, - STATE(4256), 1, - sym_comment, - STATE(4631), 1, - sym__expr_parenthesized_immediate, - [121741] = 3, + [122461] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4257), 1, + STATE(4259), 1, sym_comment, - ACTIONS(7869), 4, + ACTIONS(7906), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121754] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7871), 1, - anon_sym_DQUOTE, - STATE(4089), 1, - aux_sym_string_content_repeat1, - STATE(4258), 1, - sym_comment, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [121771] = 3, + [122474] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4259), 1, + STATE(4260), 1, sym_comment, - ACTIONS(7873), 4, + ACTIONS(7908), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121784] = 6, + [122487] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7875), 1, - anon_sym_RBRACK, - ACTIONS(7877), 1, + ACTIONS(2582), 1, sym__entry_separator, - STATE(4260), 1, - sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [121803] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7879), 1, - anon_sym_RBRACK, - STATE(3371), 1, - aux_sym_parameter_repeat2, STATE(4261), 1, sym_comment, - ACTIONS(1494), 2, - sym__newline, - anon_sym_COMMA, - [121820] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2635), 1, - sym__entry_separator, - ACTIONS(2637), 1, + ACTIONS(2584), 3, anon_sym_RBRACK, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_list, + anon_sym_GT2, + anon_sym_RBRACE, + [122502] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4262), 1, sym_comment, - [121839] = 6, - ACTIONS(103), 1, + ACTIONS(7908), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122515] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1619), 1, - anon_sym_RBRACK, - ACTIONS(1706), 1, - sym__entry_separator, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, STATE(4263), 1, sym_comment, - [121858] = 5, - ACTIONS(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, + ACTIONS(7882), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122528] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4265), 1, + STATE(4264), 1, sym_comment, - ACTIONS(7751), 4, + ACTIONS(7882), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121888] = 3, - ACTIONS(103), 1, + [122541] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4266), 1, + STATE(4265), 1, sym_comment, - ACTIONS(1520), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [121901] = 6, + ACTIONS(7097), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [122554] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + STATE(4266), 1, + sym_comment, + ACTIONS(7910), 4, sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3028), 1, - sym_block, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122567] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4267), 1, sym_comment, - [121920] = 3, + ACTIONS(7912), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122580] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4268), 1, sym_comment, - ACTIONS(4376), 4, + ACTIONS(7914), 4, sym__newline, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT, - [121933] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122593] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4269), 1, sym_comment, - ACTIONS(7881), 4, + ACTIONS(7916), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121946] = 3, + [122606] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4270), 1, sym_comment, - ACTIONS(7883), 4, + ACTIONS(7918), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121959] = 6, + [122619] = 3, ACTIONS(3), 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, sym_comment, - [121978] = 6, + ACTIONS(7920), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122632] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3071), 1, - sym_block, STATE(4272), 1, sym_comment, - [121997] = 6, + ACTIONS(7922), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122645] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7139), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7141), 1, anon_sym_LPAREN, - STATE(3768), 1, + STATE(3907), 1, sym_parameter_parens, - STATE(3769), 1, + STATE(3909), 1, sym_parameter_bracks, STATE(4273), 1, sym_comment, - [122016] = 3, + [122664] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4274), 1, sym_comment, - ACTIONS(1535), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [122029] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5106), 1, + ACTIONS(1746), 2, anon_sym_LPAREN2, - ACTIONS(5804), 1, sym__entry_separator, - ACTIONS(5806), 1, + ACTIONS(1748), 2, anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [122679] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1716), 1, + anon_sym_LBRACE, + ACTIONS(7864), 1, + anon_sym_DOT_DOT2, STATE(4275), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [122048] = 3, + ACTIONS(7866), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122696] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4276), 1, sym_comment, - ACTIONS(5241), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [122061] = 6, + ACTIONS(7026), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [122709] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5808), 1, + ACTIONS(1691), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2560), 1, sym__entry_separator, - ACTIONS(5810), 1, - anon_sym_RBRACE, + ACTIONS(2562), 1, + anon_sym_RBRACK, + ACTIONS(2564), 1, + anon_sym_LPAREN2, STATE(4277), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [122080] = 5, + [122728] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7798), 1, - sym__space, - STATE(4198), 1, - aux_sym_attribute_repeat1, STATE(4278), 1, sym_comment, - ACTIONS(7885), 2, - sym__newline, - anon_sym_SEMI, - [122097] = 6, - ACTIONS(3), 1, + ACTIONS(1812), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1814), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [122743] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - STATE(3753), 1, - sym_parameter_parens, - STATE(3754), 1, - sym_parameter_bracks, STATE(4279), 1, sym_comment, - [122116] = 6, - ACTIONS(3), 1, + ACTIONS(1812), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1814), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [122758] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3040), 1, - sym_block, - STATE(4272), 1, - aux_sym__repeat_newline, + ACTIONS(7924), 1, + anon_sym_COLON, + ACTIONS(7926), 1, + anon_sym_GT2, + ACTIONS(7928), 1, + sym__entry_separator, STATE(4280), 1, sym_comment, - [122135] = 3, - ACTIONS(3), 1, + STATE(4744), 1, + sym__collection_annotation, + [122777] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7930), 1, + anon_sym_LPAREN, STATE(4281), 1, sym_comment, - ACTIONS(6115), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_AT2, - anon_sym_LBRACE, - [122148] = 4, + ACTIONS(7932), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [122792] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3077), 1, - anon_sym_RPAREN, - ACTIONS(7887), 2, - sym__newline, - anon_sym_SEMI, - STATE(4282), 2, + STATE(4282), 1, sym_comment, - aux_sym__block_body_repeat1, - [122163] = 3, + ACTIONS(7934), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [122805] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4283), 1, sym_comment, - ACTIONS(7890), 4, + ACTIONS(7034), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [122176] = 4, + [122818] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4284), 1, sym_comment, - ACTIONS(7892), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7894), 2, + ACTIONS(1900), 2, anon_sym_LPAREN2, sym__entry_separator, - [122191] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4285), 1, - sym_comment, - ACTIONS(7896), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122204] = 6, + ACTIONS(1902), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [122833] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(4732), 1, sym__entry_separator, - ACTIONS(2569), 1, + STATE(2236), 1, + aux_sym__types_body_repeat2, + STATE(4285), 1, + sym_comment, + ACTIONS(7522), 2, anon_sym_RBRACK, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_list, + anon_sym_DOT_DOT, + [122850] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4286), 1, sym_comment, - [122223] = 3, - ACTIONS(3), 1, + ACTIONS(7936), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [122863] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5126), 1, + anon_sym_LPAREN2, + ACTIONS(7656), 1, + anon_sym_RBRACE, + ACTIONS(7658), 1, + sym__entry_separator, STATE(4287), 1, sym_comment, - ACTIONS(7898), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122236] = 3, + STATE(4816), 1, + sym__expr_parenthesized_immediate, + [122882] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4288), 1, sym_comment, - ACTIONS(7900), 4, - anon_sym_if, + ACTIONS(6981), 4, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122249] = 3, + anon_sym_SEMI, + anon_sym_LBRACE, + [122895] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4289), 1, sym_comment, - ACTIONS(7902), 4, + ACTIONS(6955), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122262] = 5, - ACTIONS(103), 1, + anon_sym_LBRACE, + [122908] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - STATE(2234), 1, - aux_sym__types_body_repeat2, STATE(4290), 1, sym_comment, - ACTIONS(7315), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122279] = 4, - ACTIONS(103), 1, + ACTIONS(7938), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122921] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4291), 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(103), 1, - anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_LPAREN, - STATE(4292), 1, - sym_comment, - ACTIONS(7906), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [122309] = 3, + ACTIONS(7018), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [122934] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4293), 1, + STATE(4292), 1, sym_comment, - ACTIONS(7908), 4, - anon_sym_if, + ACTIONS(7940), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122322] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122947] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4294), 1, + STATE(4293), 1, sym_comment, - ACTIONS(7910), 4, + ACTIONS(7942), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122335] = 5, + [122960] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + STATE(4294), 1, + sym_comment, + ACTIONS(1537), 4, + anon_sym_RBRACK, sym__entry_separator, - STATE(2235), 1, - aux_sym__types_body_repeat2, + sym__table_head_separator, + anon_sym_DOT2, + [122973] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4295), 1, sym_comment, - ACTIONS(7912), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122352] = 5, - ACTIONS(103), 1, + ACTIONS(7046), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [122986] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - STATE(2236), 1, - aux_sym__types_body_repeat2, STATE(4296), 1, sym_comment, - ACTIONS(7912), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122369] = 3, + ACTIONS(7944), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [122999] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4297), 1, sym_comment, - ACTIONS(7914), 4, - anon_sym_if, + ACTIONS(7946), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122382] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - ACTIONS(7916), 1, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(1480), 1, - aux_sym__types_body_repeat2, + [123012] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4298), 1, sym_comment, - [122401] = 3, + ACTIONS(7948), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123025] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4299), 1, sym_comment, - ACTIONS(7204), 4, - anon_sym_if, + ACTIONS(7950), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122414] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - ACTIONS(7918), 1, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(1484), 1, - aux_sym__types_body_repeat2, + [123038] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4300), 1, sym_comment, - [122433] = 4, - ACTIONS(3), 1, + ACTIONS(7007), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123051] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern, STATE(4301), 1, sym_comment, - ACTIONS(1706), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [122448] = 3, - ACTIONS(3), 1, + ACTIONS(1541), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [123064] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2521), 1, + sym__entry_separator, + ACTIONS(2523), 1, + anon_sym_RBRACK, + ACTIONS(2525), 1, + anon_sym_LPAREN2, + ACTIONS(2527), 1, + sym__unquoted_pattern_in_list, STATE(4302), 1, sym_comment, - ACTIONS(7920), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122461] = 4, - ACTIONS(103), 1, + [123083] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(459), 1, + ts_builtin_sym_end, + STATE(1365), 1, + aux_sym__block_body_repeat1, STATE(4303), 1, sym_comment, - ACTIONS(1870), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1872), 2, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + [123100] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1629), 1, anon_sym_RBRACK, + ACTIONS(1716), 1, + sym__entry_separator, + ACTIONS(2594), 1, + anon_sym_LPAREN2, + ACTIONS(2596), 1, sym__unquoted_pattern_in_list, - [122476] = 3, + STATE(4304), 1, + sym_comment, + [123119] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4304), 1, + STATE(4305), 1, sym_comment, - ACTIONS(7922), 4, + ACTIONS(7952), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122489] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3114), 1, - sym__blosure, - STATE(4305), 1, - sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [122506] = 4, + [123132] = 5, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(884), 1, + sym__entry_separator, + ACTIONS(6277), 1, + sym__unquoted_pattern_in_list, STATE(4306), 1, sym_comment, - ACTIONS(5920), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(5924), 2, + ACTIONS(858), 2, anon_sym_RBRACK, - anon_sym_GT2, - [122521] = 3, + anon_sym_DOT_DOT, + [123149] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4307), 1, sym_comment, - ACTIONS(7924), 4, + ACTIONS(7952), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122534] = 5, - ACTIONS(103), 1, + [123162] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5328), 1, - anon_sym_COLON2, STATE(4308), 1, sym_comment, - STATE(4319), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5322), 2, + ACTIONS(7954), 4, sym__newline, - sym__space, - [122551] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123175] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4309), 1, sym_comment, - ACTIONS(7210), 4, - anon_sym_if, + ACTIONS(7954), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122564] = 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123188] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4310), 1, sym_comment, - ACTIONS(1726), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [122579] = 3, + ACTIONS(4393), 4, + sym__newline, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT, + [123201] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4311), 1, sym_comment, - ACTIONS(7926), 4, + ACTIONS(7956), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122592] = 6, + [123214] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3041), 1, - sym_block, STATE(4312), 1, sym_comment, - [122611] = 3, - ACTIONS(3), 1, + ACTIONS(7956), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123227] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4313), 1, sym_comment, - ACTIONS(7928), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [122624] = 4, + ACTIONS(6158), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6160), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [123242] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7864), 1, + anon_sym_DOT_DOT2, + ACTIONS(7958), 1, + anon_sym_LBRACE, STATE(4314), 1, sym_comment, - ACTIONS(1802), 2, + ACTIONS(7866), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [122639] = 3, - ACTIONS(3), 1, + [123259] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4315), 1, sym_comment, - ACTIONS(7930), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [122652] = 3, + ACTIONS(6162), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6164), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [123274] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4316), 1, sym_comment, - ACTIONS(7827), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122665] = 4, + ACTIONS(6118), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AT2, + anon_sym_LBRACE, + [123287] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4317), 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(4115), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [123300] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1558), 1, - sym__entry_separator, STATE(4318), 1, sym_comment, - ACTIONS(1556), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [122695] = 5, - ACTIONS(103), 1, + ACTIONS(4117), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [123313] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7932), 1, - anon_sym_COLON2, - STATE(4181), 1, - aux_sym_pipe_element_parenthesized_repeat1, STATE(4319), 1, sym_comment, - ACTIONS(5322), 2, + ACTIONS(7960), 4, sym__newline, - sym__space, - [122712] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123326] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4320), 1, sym_comment, - ACTIONS(7827), 4, + ACTIONS(7960), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122725] = 3, + [123339] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4321), 1, sym_comment, - ACTIONS(7804), 4, + ACTIONS(7952), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122738] = 3, + [123352] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4322), 1, sym_comment, - ACTIONS(7804), 4, + ACTIONS(7952), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122751] = 5, + [123365] = 3, 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, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4324), 1, - sym_comment, - ACTIONS(7938), 4, + ACTIONS(7954), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122781] = 3, + [123378] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4325), 1, + STATE(4324), 1, sym_comment, - ACTIONS(7940), 4, + ACTIONS(7954), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122794] = 3, + [123391] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4325), 1, + sym_comment, + ACTIONS(1746), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1748), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [123406] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4326), 1, sym_comment, - ACTIONS(7942), 4, + ACTIONS(7962), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122807] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123419] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4327), 1, sym_comment, - ACTIONS(7944), 4, + ACTIONS(7964), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122820] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123432] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4732), 1, + sym__entry_separator, + STATE(2229), 1, + aux_sym__types_body_repeat2, STATE(4328), 1, sym_comment, - ACTIONS(7946), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122833] = 3, - ACTIONS(3), 1, + ACTIONS(7387), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [123449] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4732), 1, + sym__entry_separator, + STATE(2230), 1, + aux_sym__types_body_repeat2, STATE(4329), 1, sym_comment, - ACTIONS(7948), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122846] = 3, - ACTIONS(3), 1, + ACTIONS(7966), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [123466] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4732), 1, + sym__entry_separator, + STATE(2228), 1, + aux_sym__types_body_repeat2, STATE(4330), 1, sym_comment, - ACTIONS(7938), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122859] = 3, + ACTIONS(7966), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [123483] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4331), 1, sym_comment, - ACTIONS(7950), 4, + ACTIONS(7968), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122872] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123496] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4332), 1, sym_comment, - ACTIONS(4078), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [122885] = 3, - ACTIONS(3), 1, + ACTIONS(7970), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7972), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [123511] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4333), 1, sym_comment, - ACTIONS(4080), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [122898] = 3, - ACTIONS(3), 1, + ACTIONS(1900), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1902), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [123526] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1637), 1, + sym__entry_separator, + ACTIONS(1639), 1, + anon_sym_COLON2, + ACTIONS(7974), 1, + anon_sym_RBRACE, + STATE(1468), 1, + aux_sym__types_body_repeat2, STATE(4334), 1, sym_comment, - ACTIONS(7952), 4, + [123545] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4335), 1, + sym_comment, + ACTIONS(7976), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122911] = 4, + [123558] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1637), 1, sym__entry_separator, - STATE(4335), 1, - sym_comment, - ACTIONS(1868), 3, - anon_sym_RBRACK, - anon_sym_GT2, + ACTIONS(1639), 1, + anon_sym_COLON2, + ACTIONS(7978), 1, anon_sym_RBRACE, - [122926] = 3, - ACTIONS(3), 1, - anon_sym_POUND, + STATE(1473), 1, + aux_sym__types_body_repeat2, STATE(4336), 1, sym_comment, - ACTIONS(7954), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122939] = 3, - ACTIONS(3), 1, + [123577] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2570), 1, + sym__entry_separator, + ACTIONS(2572), 1, + anon_sym_RBRACK, + ACTIONS(2574), 1, + anon_sym_LPAREN2, + ACTIONS(2576), 1, + sym__unquoted_pattern_in_list, STATE(4337), 1, sym_comment, - ACTIONS(7956), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122952] = 3, + [123596] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4338), 1, sym_comment, - ACTIONS(7958), 4, + ACTIONS(7980), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122965] = 3, - ACTIONS(3), 1, + [123609] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(6575), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + anon_sym_RBRACK, + ACTIONS(7984), 1, + sym__entry_separator, STATE(4339), 1, sym_comment, - ACTIONS(7960), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122978] = 3, + STATE(4858), 1, + sym__expr_parenthesized_immediate, + [123628] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4340), 1, sym_comment, - ACTIONS(7954), 4, + ACTIONS(7986), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122991] = 3, + [123641] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4341), 1, - sym_comment, - ACTIONS(7952), 4, + ACTIONS(7988), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123004] = 4, + ACTIONS(7991), 1, + anon_sym_PIPE, + ACTIONS(7994), 1, + anon_sym_EQ_GT, + STATE(4341), 2, + sym_comment, + aux_sym_match_pattern_repeat1, + [123658] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(7996), 1, + anon_sym_LBRACK, + STATE(507), 1, + aux_sym__repeat_newline, STATE(4342), 1, sym_comment, - ACTIONS(1726), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123019] = 3, + STATE(5098), 1, + sym_val_list, + [123677] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4343), 1, sym_comment, - ACTIONS(6936), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [123032] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7962), 1, + ACTIONS(7956), 4, 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, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123690] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4345), 1, + STATE(4344), 1, sym_comment, - ACTIONS(7970), 4, + ACTIONS(7956), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123062] = 3, + [123703] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4346), 1, + STATE(4345), 1, sym_comment, - ACTIONS(7970), 4, + ACTIONS(7998), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123075] = 3, + [123716] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1615), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8000), 1, + anon_sym_DOT_DOT2, + STATE(4346), 1, + sym_comment, + ACTIONS(8002), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123733] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4347), 1, sym_comment, - ACTIONS(7827), 4, + ACTIONS(8004), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123088] = 3, + [123746] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4348), 1, sym_comment, - ACTIONS(7696), 4, + ACTIONS(8006), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123101] = 4, + [123759] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, STATE(4349), 1, sym_comment, - ACTIONS(1802), 3, + ACTIONS(8008), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123116] = 6, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123772] = 3, + 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, STATE(4350), 1, sym_comment, - [123135] = 3, + ACTIONS(7998), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123785] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4351), 1, sym_comment, - ACTIONS(7696), 4, + ACTIONS(8010), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123148] = 6, + [123798] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3214), 1, - sym_block, STATE(4352), 1, sym_comment, - STATE(4356), 1, - aux_sym__repeat_newline, - [123167] = 4, + ACTIONS(8012), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123811] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern, STATE(4353), 1, sym_comment, - ACTIONS(1870), 3, + ACTIONS(8014), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123182] = 6, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123824] = 3, + ACTIONS(3), 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, sym_comment, - [123201] = 6, + ACTIONS(8014), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123837] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3317), 1, - sym_block, STATE(4355), 1, sym_comment, - STATE(4358), 1, - aux_sym__repeat_newline, - [123220] = 6, + ACTIONS(8016), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123850] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3318), 1, - sym_block, STATE(4356), 1, sym_comment, - [123239] = 6, - ACTIONS(103), 1, + ACTIONS(8016), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123863] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_RBRACK, - ACTIONS(1018), 1, - sym__entry_separator, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_list, STATE(4357), 1, sym_comment, - [123258] = 6, + ACTIONS(8018), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123876] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3320), 1, - sym_block, STATE(4358), 1, sym_comment, - [123277] = 6, + ACTIONS(8018), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123889] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - ACTIONS(7972), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, STATE(4359), 1, sym_comment, - [123296] = 6, + ACTIONS(6176), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6178), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [123904] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3183), 1, - sym_block, STATE(4360), 1, sym_comment, - STATE(4362), 1, - aux_sym__repeat_newline, - [123315] = 6, - ACTIONS(3), 1, + ACTIONS(1746), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1748), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [123919] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3184), 1, - sym_block, STATE(4361), 1, sym_comment, - STATE(4363), 1, - aux_sym__repeat_newline, - [123334] = 6, + ACTIONS(6180), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6182), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [123934] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3185), 1, - sym_block, STATE(4362), 1, sym_comment, - [123353] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(8020), 4, sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3187), 1, - sym_block, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123947] = 4, + ACTIONS(103), 1, + anon_sym_POUND, STATE(4363), 1, sym_comment, - [123372] = 3, - ACTIONS(3), 1, + ACTIONS(6184), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6186), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [123962] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4364), 1, sym_comment, - ACTIONS(7974), 4, - anon_sym_EQ, - anon_sym_in, - sym__newline, - anon_sym_COLON, - [123385] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(6190), 2, + anon_sym_AT2, sym__entry_separator, - STATE(2232), 1, - aux_sym__types_body_repeat2, + ACTIONS(6192), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [123977] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4365), 1, sym_comment, - ACTIONS(7448), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [123402] = 3, + ACTIONS(8014), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123990] = 4, 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, - ACTIONS(103), 1, + ACTIONS(1812), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1814), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [124005] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, STATE(4367), 1, sym_comment, - [123431] = 3, - ACTIONS(103), 1, + ACTIONS(8022), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124018] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4368), 1, sym_comment, - ACTIONS(1860), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [123443] = 3, + ACTIONS(1900), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1902), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [124033] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4369), 1, sym_comment, - ACTIONS(7976), 3, + ACTIONS(8014), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [123455] = 3, + anon_sym_RBRACE, + [124046] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4370), 1, sym_comment, - ACTIONS(7978), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [123467] = 3, + ACTIONS(8024), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [124059] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4371), 1, sym_comment, - ACTIONS(7980), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [123479] = 3, + ACTIONS(8026), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [124072] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4372), 1, sym_comment, - ACTIONS(7982), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [123491] = 5, - ACTIONS(3), 1, + ACTIONS(8028), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [124085] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7984), 1, - anon_sym_export, - ACTIONS(7986), 1, - anon_sym_def, - ACTIONS(7988), 1, - anon_sym_extern, + ACTIONS(4276), 1, + sym__entry_separator, + ACTIONS(7820), 1, + anon_sym_LBRACK, + ACTIONS(8030), 1, + anon_sym_RBRACK, + STATE(1873), 1, + aux_sym__types_body_repeat2, STATE(4373), 1, sym_comment, - [123507] = 5, + [124104] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, + ACTIONS(1615), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2011), 1, sym__entry_separator, - ACTIONS(7990), 1, + ACTIONS(2013), 1, anon_sym_RBRACK, - STATE(2110), 1, - aux_sym__types_body_repeat2, + ACTIONS(2015), 1, + anon_sym_LPAREN2, STATE(4374), 1, sym_comment, - [123523] = 4, - ACTIONS(3), 1, + [124123] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7992), 1, - anon_sym_BANG, + ACTIONS(994), 1, + sym__entry_separator, + ACTIONS(996), 1, + anon_sym_RBRACK, + ACTIONS(2556), 1, + anon_sym_LPAREN2, + ACTIONS(2558), 1, + sym__unquoted_pattern_in_list, STATE(4375), 1, sym_comment, - ACTIONS(1440), 2, - sym__table_head_separator, - anon_sym_DOT2, - [123537] = 3, + [124142] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3085), 1, + ts_builtin_sym_end, + STATE(1368), 1, + aux_sym__block_body_repeat1, STATE(4376), 1, sym_comment, - ACTIONS(7690), 3, - ts_builtin_sym_end, + ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - [123549] = 4, - ACTIONS(103), 1, + [124159] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2563), 1, - sym__entry_separator, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(3040), 1, + sym_block, + STATE(4128), 1, + aux_sym__repeat_newline, STATE(4377), 1, sym_comment, - ACTIONS(2565), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [123563] = 5, + [124178] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7994), 1, - anon_sym_RBRACK, - ACTIONS(7996), 1, - anon_sym_DOT_DOT, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(3044), 1, + sym_block, STATE(4378), 1, sym_comment, - STATE(4863), 1, - sym__match_pattern_rest, - [123579] = 3, + [124197] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4379), 1, sym_comment, - ACTIONS(7883), 3, - ts_builtin_sym_end, + ACTIONS(8016), 4, sym__newline, anon_sym_SEMI, - [123591] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124210] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2571), 1, - sym__entry_separator, STATE(4380), 1, sym_comment, - ACTIONS(2573), 2, - anon_sym_RBRACK, + ACTIONS(8016), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [123605] = 5, + [124223] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7998), 1, - anon_sym_RBRACK, - ACTIONS(8000), 1, - sym_hex_digit, STATE(4381), 1, sym_comment, - STATE(4498), 1, - aux_sym_val_binary_repeat1, - [123621] = 3, + ACTIONS(8018), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124236] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4382), 1, sym_comment, - ACTIONS(2092), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [123633] = 3, + ACTIONS(8018), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124249] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4383), 1, sym_comment, - ACTIONS(7861), 3, - ts_builtin_sym_end, + ACTIONS(8032), 4, sym__newline, anon_sym_SEMI, - [123645] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124262] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4384), 1, sym_comment, - ACTIONS(7881), 3, - ts_builtin_sym_end, + ACTIONS(8032), 4, sym__newline, anon_sym_SEMI, - [123657] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124275] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4385), 1, sym_comment, - ACTIONS(7804), 3, - ts_builtin_sym_end, + ACTIONS(8034), 4, sym__newline, anon_sym_SEMI, - [123669] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(8002), 1, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(1464), 1, - aux_sym__types_body_repeat2, + [124288] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4386), 1, sym_comment, - [123685] = 3, + ACTIONS(7095), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [124301] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4387), 1, sym_comment, - ACTIONS(7690), 3, - ts_builtin_sym_end, + ACTIONS(8034), 4, sym__newline, anon_sym_SEMI, - [123697] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(8004), 1, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(1467), 1, - aux_sym__types_body_repeat2, + [124314] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1748), 1, + sym__unquoted_pattern, STATE(4388), 1, sym_comment, - [123713] = 3, - ACTIONS(3), 1, + ACTIONS(1746), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124329] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4389), 1, sym_comment, - ACTIONS(7863), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123725] = 3, - ACTIONS(3), 1, + ACTIONS(2506), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2508), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [124344] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4390), 1, sym_comment, - ACTIONS(7865), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123737] = 5, - ACTIONS(103), 1, + ACTIONS(6194), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6196), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [124359] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3454), 1, - sym__newline, - ACTIONS(3456), 1, - sym__space, - STATE(1398), 1, - aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(1814), 1, + sym__unquoted_pattern, STATE(4391), 1, sym_comment, - [123753] = 3, + ACTIONS(1812), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124374] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1902), 1, + sym__unquoted_pattern, STATE(4392), 1, sym_comment, - ACTIONS(7839), 3, - ts_builtin_sym_end, + ACTIONS(1900), 3, sym__newline, - anon_sym_SEMI, - [123765] = 5, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124389] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3755), 1, - anon_sym_LBRACE, STATE(4393), 1, sym_comment, - STATE(4416), 1, - sym_block, - [123781] = 3, - ACTIONS(3), 1, + ACTIONS(8034), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124402] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1629), 1, + anon_sym_RBRACE, + ACTIONS(1716), 1, + sym__entry_separator, + ACTIONS(2594), 1, + anon_sym_LPAREN2, + ACTIONS(2596), 1, + sym__unquoted_pattern_in_record, STATE(4394), 1, sym_comment, - ACTIONS(7938), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123793] = 3, + [124421] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4395), 1, sym_comment, - ACTIONS(7938), 3, - ts_builtin_sym_end, + ACTIONS(8034), 4, sym__newline, anon_sym_SEMI, - [123805] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124434] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1382), 1, - aux_sym__block_body_repeat1, STATE(4396), 1, sym_comment, - ACTIONS(153), 2, + ACTIONS(8036), 4, sym__newline, anon_sym_SEMI, - [123819] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124447] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4397), 1, sym_comment, - ACTIONS(7804), 3, - ts_builtin_sym_end, + ACTIONS(8036), 4, sym__newline, anon_sym_SEMI, - [123831] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124460] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7992), 1, - anon_sym_QMARK2, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(3353), 1, + sym_block, STATE(4398), 1, sym_comment, - ACTIONS(1440), 2, - sym__table_head_separator, - anon_sym_DOT2, - [123845] = 3, + STATE(4401), 1, + aux_sym__repeat_newline, + [124479] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4399), 1, sym_comment, - ACTIONS(7902), 3, - ts_builtin_sym_end, + ACTIONS(8038), 4, sym__newline, anon_sym_SEMI, - [123857] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124492] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(3357), 1, + sym_block, STATE(4400), 1, sym_comment, - ACTIONS(2084), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [123869] = 5, + STATE(4402), 1, + aux_sym__repeat_newline, + [124511] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(5779), 1, - anon_sym_EQ, - STATE(3239), 1, - sym_param_completer, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(3358), 1, + sym_block, STATE(4401), 1, sym_comment, - [123885] = 5, + [124530] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(8006), 1, - anon_sym_GT2, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(3361), 1, + sym_block, STATE(4402), 1, sym_comment, - STATE(5004), 1, - sym_param_completer, - [123901] = 3, + [124549] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4403), 1, sym_comment, - ACTIONS(7924), 3, - ts_builtin_sym_end, + ACTIONS(8038), 4, sym__newline, anon_sym_SEMI, - [123913] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124562] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3362), 1, - anon_sym_SEMI, - STATE(540), 1, - aux_sym__repeat_newline, STATE(4404), 1, sym_comment, - [123929] = 3, + ACTIONS(8040), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124575] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4405), 1, sym_comment, - ACTIONS(8008), 3, + ACTIONS(8040), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [123941] = 3, + anon_sym_RBRACE, + [124588] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4406), 1, sym_comment, - ACTIONS(7833), 3, + ACTIONS(5263), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123953] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3755), 1, anon_sym_LBRACE, + [124601] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7809), 1, + anon_sym_LBRACK, + ACTIONS(7811), 1, + anon_sym_LPAREN, + STATE(3968), 1, + sym_parameter_parens, + STATE(3969), 1, + sym_parameter_bracks, STATE(4407), 1, sym_comment, - STATE(4444), 1, - sym_block, - [123969] = 5, + [124620] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(5779), 1, - anon_sym_EQ, - STATE(3241), 1, - sym_param_completer, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(3213), 1, + sym_block, STATE(4408), 1, sym_comment, - [123985] = 3, + STATE(4410), 1, + aux_sym__repeat_newline, + [124639] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(3215), 1, + sym_block, STATE(4409), 1, sym_comment, - ACTIONS(7950), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123997] = 3, + STATE(4411), 1, + aux_sym__repeat_newline, + [124658] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(3216), 1, + sym_block, STATE(4410), 1, sym_comment, - ACTIONS(7835), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124009] = 4, + [124677] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8012), 1, - anon_sym_COMMA, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(507), 1, + aux_sym__repeat_newline, + STATE(3218), 1, + sym_block, STATE(4411), 1, sym_comment, - ACTIONS(8010), 2, - anon_sym_RBRACK, - sym_hex_digit, - [124023] = 3, - ACTIONS(3), 1, + [124696] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1615), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2011), 1, + sym__entry_separator, + ACTIONS(2013), 1, + anon_sym_RBRACE, + ACTIONS(2015), 1, + anon_sym_LPAREN2, STATE(4412), 1, sym_comment, - ACTIONS(7910), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124035] = 5, - ACTIONS(3), 1, + [124715] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8014), 1, + ACTIONS(4276), 1, + sym__entry_separator, + ACTIONS(7820), 1, + anon_sym_LBRACK, + ACTIONS(8042), 1, anon_sym_RBRACK, + STATE(1873), 1, + aux_sym__types_body_repeat2, STATE(4413), 1, sym_comment, - STATE(4467), 1, - aux_sym_val_binary_repeat1, - [124051] = 4, - ACTIONS(103), 1, + [124734] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7960), 1, - sym__entry_separator, STATE(4414), 1, sym_comment, - ACTIONS(6947), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124065] = 3, - ACTIONS(3), 1, + ACTIONS(8044), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124747] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1637), 1, + sym__entry_separator, + ACTIONS(7974), 1, + anon_sym_RBRACE, + STATE(1468), 1, + aux_sym__types_body_repeat2, STATE(4415), 1, sym_comment, - ACTIONS(7954), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124077] = 3, + [124763] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8046), 1, + anon_sym_RBRACK, + ACTIONS(8048), 1, + sym_hex_digit, STATE(4416), 1, sym_comment, - ACTIONS(7869), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124089] = 3, + STATE(4420), 1, + aux_sym_val_binary_repeat1, + [124779] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8048), 1, + sym_hex_digit, + ACTIONS(8050), 1, + anon_sym_RBRACK, STATE(4417), 1, sym_comment, - ACTIONS(7954), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124101] = 3, + STATE(4486), 1, + aux_sym_val_binary_repeat1, + [124795] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4418), 1, sym_comment, - ACTIONS(7696), 3, - ts_builtin_sym_end, + ACTIONS(8052), 3, sym__newline, anon_sym_SEMI, - [124113] = 3, + anon_sym_RPAREN, + [124807] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4419), 1, sym_comment, - ACTIONS(7696), 3, + ACTIONS(7954), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124125] = 3, + [124819] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8048), 1, + sym_hex_digit, + ACTIONS(8054), 1, + anon_sym_RBRACK, STATE(4420), 1, sym_comment, - ACTIONS(7675), 3, + STATE(4642), 1, + aux_sym_val_binary_repeat1, + [124835] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4421), 1, + sym_comment, + ACTIONS(7956), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124137] = 3, + [124847] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(4421), 1, + STATE(4422), 1, sym_comment, - ACTIONS(2593), 3, + ACTIONS(2584), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [124149] = 3, + [124859] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4422), 1, + STATE(4423), 1, sym_comment, - ACTIONS(7675), 3, - ts_builtin_sym_end, + ACTIONS(8056), 3, sym__newline, anon_sym_SEMI, - [124161] = 5, + anon_sym_RPAREN, + [124871] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(8016), 1, - anon_sym_COLON, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(4423), 1, - sym_comment, - [124177] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2607), 1, - sym__entry_separator, STATE(4424), 1, sym_comment, - ACTIONS(2609), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124191] = 4, + ACTIONS(7920), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124883] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2511), 1, + ACTIONS(1637), 1, sym__entry_separator, + ACTIONS(1639), 1, + anon_sym_COLON2, + STATE(1504), 1, + aux_sym__types_body_repeat2, STATE(4425), 1, sym_comment, - ACTIONS(2513), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124205] = 4, - ACTIONS(103), 1, + [124899] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2515), 1, - sym__entry_separator, STATE(4426), 1, sym_comment, - ACTIONS(2517), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124219] = 3, + ACTIONS(4663), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [124911] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4427), 1, sym_comment, - ACTIONS(7683), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124231] = 5, + ACTIONS(2148), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [124923] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1802), 1, + ACTIONS(1754), 1, anon_sym_LBRACE, - ACTIONS(1804), 1, + ACTIONS(1756), 1, sym__unquoted_pattern, - ACTIONS(8018), 1, + ACTIONS(7860), 1, aux_sym__immediate_decimal_token5, STATE(4428), 1, sym_comment, - [124247] = 3, + [124939] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + ACTIONS(5072), 1, + sym__unquoted_pattern, STATE(4429), 1, sym_comment, - ACTIONS(7683), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124259] = 3, - ACTIONS(3), 1, + STATE(4836), 1, + sym__expr_parenthesized_immediate, + [124955] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5253), 1, + sym__entry_separator, STATE(4430), 1, sym_comment, - ACTIONS(7922), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124271] = 5, + ACTIONS(5255), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [124969] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(8020), 1, - anon_sym_GT2, + ACTIONS(8058), 1, + anon_sym_QMARK2, STATE(4431), 1, sym_comment, - STATE(4933), 1, - sym_param_completer, - [124287] = 3, + ACTIONS(1458), 2, + sym__table_head_separator, + anon_sym_DOT2, + [124983] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4432), 1, sym_comment, - ACTIONS(7675), 3, + ACTIONS(8016), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124299] = 3, + [124995] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4433), 1, sym_comment, - ACTIONS(7675), 3, + ACTIONS(7956), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124311] = 3, + [125007] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8048), 1, + sym_hex_digit, + ACTIONS(8060), 1, + anon_sym_RBRACK, STATE(4434), 1, sym_comment, - ACTIONS(7683), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124323] = 3, + STATE(4438), 1, + aux_sym_val_binary_repeat1, + [125023] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4019), 1, + anon_sym_AT2, + ACTIONS(6047), 1, + anon_sym_EQ, + STATE(3297), 1, + sym_param_completer, STATE(4435), 1, sym_comment, - ACTIONS(7683), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124335] = 4, + [125039] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2537), 1, + ACTIONS(2598), 1, sym__entry_separator, STATE(4436), 1, sym_comment, - ACTIONS(2539), 2, + ACTIONS(2600), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [124349] = 3, + [125053] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4019), 1, + anon_sym_AT2, + ACTIONS(8062), 1, + anon_sym_GT2, STATE(4437), 1, sym_comment, - ACTIONS(7711), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124361] = 5, + STATE(5033), 1, + sym_param_completer, + [125069] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6466), 1, - anon_sym_LPAREN2, + ACTIONS(8048), 1, + sym_hex_digit, + ACTIONS(8064), 1, + anon_sym_RBRACK, STATE(4438), 1, sym_comment, - STATE(4728), 1, - sym__expr_parenthesized_immediate, - [124377] = 5, + STATE(4642), 1, + aux_sym_val_binary_repeat1, + [125085] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(2602), 1, sym__entry_separator, - ACTIONS(8022), 1, - anon_sym_GT2, - STATE(2376), 1, - aux_sym__types_body_repeat2, STATE(4439), 1, sym_comment, - [124393] = 3, - ACTIONS(3), 1, + ACTIONS(2604), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [125099] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2606), 1, + sym__entry_separator, STATE(4440), 1, sym_comment, - ACTIONS(7711), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124405] = 5, + ACTIONS(2608), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [125113] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(7215), 1, sym__entry_separator, - ACTIONS(8024), 1, - anon_sym_GT2, - STATE(2372), 1, - aux_sym__types_body_repeat2, STATE(4441), 1, sym_comment, - [124421] = 3, + ACTIONS(7342), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [125127] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4442), 1, sym_comment, - ACTIONS(7713), 3, + ACTIONS(8014), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124433] = 3, + [125139] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4443), 1, sym_comment, - ACTIONS(7713), 3, + ACTIONS(8014), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124445] = 3, + [125151] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4444), 1, sym_comment, - ACTIONS(7873), 3, + ACTIONS(8016), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124457] = 5, - ACTIONS(103), 1, + [125163] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(8026), 1, - anon_sym_GT2, - STATE(2362), 1, - aux_sym__types_body_repeat2, STATE(4445), 1, sym_comment, - [124473] = 5, + ACTIONS(8016), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125175] = 3, 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, + ACTIONS(8016), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125187] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3778), 1, + ACTIONS(1812), 1, anon_sym_LBRACE, - STATE(4257), 1, - sym_block, + ACTIONS(1814), 1, + sym__unquoted_pattern, + ACTIONS(8066), 1, + aux_sym__immediate_decimal_token5, STATE(4447), 1, sym_comment, - [124505] = 5, + [125203] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4958), 1, sym__entry_separator, - ACTIONS(8028), 1, + ACTIONS(8068), 1, anon_sym_GT2, - STATE(1938), 1, + STATE(2363), 1, aux_sym__types_body_repeat2, STATE(4448), 1, sym_comment, - [124521] = 5, + [125219] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8030), 1, - anon_sym_RBRACK, - ACTIONS(8033), 1, - anon_sym_DOT_DOT, - ACTIONS(8035), 1, + ACTIONS(7934), 1, sym__entry_separator, STATE(4449), 1, sym_comment, - [124537] = 5, + ACTIONS(7014), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [125233] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(5276), 1, sym__entry_separator, - ACTIONS(8038), 1, - anon_sym_RBRACE, - STATE(1483), 1, - aux_sym__types_body_repeat2, STATE(4450), 1, sym_comment, - [124553] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(8041), 1, + ACTIONS(5278), 2, anon_sym_RBRACK, - STATE(2087), 1, - aux_sym__types_body_repeat2, + anon_sym_GT2, + [125247] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4451), 1, sym_comment, - [124569] = 4, - ACTIONS(103), 1, + ACTIONS(8018), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125259] = 3, + ACTIONS(3), 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, + ACTIONS(8018), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125271] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2254), 1, - sym__entry_separator, STATE(4453), 1, sym_comment, - ACTIONS(2256), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124597] = 4, + ACTIONS(7773), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125283] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5287), 1, + ACTIONS(7854), 1, sym__entry_separator, STATE(4454), 1, sym_comment, - ACTIONS(5289), 2, + ACTIONS(8070), 2, anon_sym_RBRACK, - anon_sym_GT2, - [124611] = 3, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [125297] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7265), 1, + sym__entry_separator, STATE(4455), 1, sym_comment, - ACTIONS(7940), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124623] = 3, - ACTIONS(3), 1, + ACTIONS(7348), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [125311] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2950), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3813), 1, + anon_sym_LBRACE, STATE(4456), 1, sym_comment, - ACTIONS(7942), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124635] = 3, + STATE(4590), 1, + sym_block, + [125327] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8072), 1, + anon_sym_export, + ACTIONS(8074), 1, + anon_sym_def, + ACTIONS(8076), 1, + anon_sym_extern, STATE(4457), 1, sym_comment, - ACTIONS(7944), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124647] = 3, - ACTIONS(3), 1, + [125343] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(3454), 1, + sym__newline, + ACTIONS(3456), 1, + sym__space, + STATE(1396), 1, + aux_sym_pipe_element_parenthesized_repeat1, STATE(4458), 1, sym_comment, - ACTIONS(7946), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124659] = 3, + [125359] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4459), 1, sym_comment, - ACTIONS(7948), 3, + ACTIONS(8018), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124671] = 3, - ACTIONS(3), 1, + [125371] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4958), 1, + sym__entry_separator, + ACTIONS(8078), 1, + anon_sym_GT2, + STATE(2385), 1, + aux_sym__types_body_repeat2, STATE(4460), 1, sym_comment, - ACTIONS(8043), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [124683] = 4, + [125387] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8045), 1, - sym__table_head_separator, + ACTIONS(4276), 1, + sym__entry_separator, + ACTIONS(8080), 1, + anon_sym_RBRACK, + STATE(1953), 1, + aux_sym__types_body_repeat2, STATE(4461), 1, sym_comment, - ACTIONS(1619), 2, - anon_sym_RBRACK, - sym__entry_separator, - [124697] = 3, + [125403] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4019), 1, + anon_sym_AT2, + ACTIONS(8082), 1, + anon_sym_GT2, STATE(4462), 1, sym_comment, - ACTIONS(4625), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124709] = 3, - ACTIONS(3), 1, + STATE(4984), 1, + sym_param_completer, + [125419] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4958), 1, + sym__entry_separator, + ACTIONS(8084), 1, + anon_sym_GT2, + STATE(2387), 1, + aux_sym__types_body_repeat2, STATE(4463), 1, sym_comment, - ACTIONS(4629), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124721] = 4, + [125435] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8047), 1, - anon_sym_GT2, + ACTIONS(5247), 1, + sym__entry_separator, 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, + ACTIONS(5245), 2, anon_sym_RBRACK, - ACTIONS(8053), 1, - anon_sym_DOT_DOT, + anon_sym_RBRACE, + [125449] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4276), 1, + sym__entry_separator, + ACTIONS(8086), 1, + anon_sym_GT2, + STATE(1920), 1, + aux_sym__types_body_repeat2, STATE(4465), 1, sym_comment, - STATE(5010), 1, - sym__match_pattern_rest, - [124751] = 3, - ACTIONS(3), 1, + [125465] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1637), 1, + sym__entry_separator, + ACTIONS(8088), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym__types_body_repeat2, STATE(4466), 1, sym_comment, - ACTIONS(4633), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124763] = 4, + [125481] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8055), 1, - anon_sym_RBRACK, - ACTIONS(8057), 1, - sym_hex_digit, - STATE(4467), 2, + STATE(4467), 1, sym_comment, - aux_sym_val_binary_repeat1, - [124777] = 5, + ACTIONS(8018), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125493] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4259), 1, - sym_block, + ACTIONS(4706), 1, + sym__entry_separator, + ACTIONS(8090), 1, + anon_sym_RBRACE, + STATE(2221), 1, + aux_sym__types_body_repeat2, STATE(4468), 1, sym_comment, - [124793] = 5, + [125509] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1736), 1, - anon_sym_LBRACE, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8060), 1, - anon_sym_DOT, STATE(4469), 1, sym_comment, - [124809] = 4, + ACTIONS(8032), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125521] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5253), 1, + ACTIONS(1637), 1, sym__entry_separator, + ACTIONS(8092), 1, + anon_sym_RBRACE, + STATE(1487), 1, + aux_sym__types_body_repeat2, STATE(4470), 1, sym_comment, - ACTIONS(5255), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [124823] = 5, + [125537] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8062), 1, - anon_sym_RBRACK, STATE(4471), 1, sym_comment, - STATE(4474), 1, - aux_sym_val_binary_repeat1, - [124839] = 5, - ACTIONS(103), 1, + ACTIONS(8032), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125549] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(2986), 1, - sym_block, + ACTIONS(8094), 1, + anon_sym_RBRACK, + ACTIONS(8096), 1, + anon_sym_DOT_DOT, STATE(4472), 1, sym_comment, - [124855] = 5, - ACTIONS(103), 1, + STATE(5023), 1, + sym__match_pattern_rest, + [125565] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACE, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, STATE(4473), 1, sym_comment, - [124871] = 5, + ACTIONS(7888), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125577] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8064), 1, - anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, STATE(4474), 1, sym_comment, - [124887] = 5, - ACTIONS(3), 1, + ACTIONS(8098), 3, + sym__newline, + anon_sym_LBRACK, + anon_sym_RBRACK, + [125589] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(4969), 1, - sym__unquoted_pattern, + ACTIONS(1637), 1, + sym__entry_separator, + ACTIONS(8100), 1, + anon_sym_RBRACE, + STATE(1465), 1, + aux_sym__types_body_repeat2, STATE(4475), 1, sym_comment, - STATE(4625), 1, - sym__expr_parenthesized_immediate, - [124903] = 4, - ACTIONS(103), 1, + [125605] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7898), 1, - sym__entry_separator, STATE(4476), 1, sym_comment, - ACTIONS(8066), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124917] = 4, + ACTIONS(8034), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125617] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7900), 1, + ACTIONS(1850), 1, sym__entry_separator, STATE(4477), 1, sym_comment, - ACTIONS(8068), 2, + ACTIONS(1852), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [124931] = 4, - ACTIONS(103), 1, + [125631] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7914), 1, - sym__entry_separator, STATE(4478), 1, sym_comment, - ACTIONS(8033), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124945] = 4, - ACTIONS(103), 1, + ACTIONS(7918), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125643] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2258), 1, - sym__entry_separator, STATE(4479), 1, sym_comment, - ACTIONS(2260), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124959] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2262), 1, - sym__entry_separator, - STATE(4480), 1, - sym_comment, - ACTIONS(2264), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124973] = 3, + ACTIONS(4651), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [125655] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4481), 1, + STATE(4480), 1, sym_comment, - ACTIONS(7956), 3, + ACTIONS(7916), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124985] = 5, + [125667] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(2586), 1, sym__entry_separator, - ACTIONS(8070), 1, - anon_sym_GT2, - STATE(1930), 1, - aux_sym__types_body_repeat2, - STATE(4482), 1, + STATE(4481), 1, sym_comment, - [125001] = 4, + ACTIONS(2588), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [125681] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(858), 1, + anon_sym_RBRACK, + ACTIONS(884), 1, sym__entry_separator, + ACTIONS(6277), 1, + sym__unquoted_pattern_in_list, + STATE(4482), 1, + sym_comment, + [125697] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4483), 1, sym_comment, - ACTIONS(5249), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125015] = 5, - ACTIONS(103), 1, + ACTIONS(7782), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125709] = 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, sym_comment, - [125031] = 5, + ACTIONS(8034), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125721] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, + ACTIONS(4019), 1, + anon_sym_AT2, + ACTIONS(5834), 1, + anon_sym_EQ, + STATE(3311), 1, + sym_param_completer, STATE(4485), 1, sym_comment, - STATE(4630), 1, - sym__expr_parenthesized_immediate, - [125047] = 3, + [125737] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8048), 1, + sym_hex_digit, + ACTIONS(8102), 1, + anon_sym_RBRACK, STATE(4486), 1, sym_comment, - ACTIONS(7958), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125059] = 3, + STATE(4642), 1, + aux_sym_val_binary_repeat1, + [125753] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1756), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8104), 1, + anon_sym_DOT, + ACTIONS(8106), 1, + aux_sym__immediate_decimal_token5, STATE(4487), 1, sym_comment, - ACTIONS(7713), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125071] = 3, + [125769] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + ACTIONS(1776), 1, + sym__unquoted_pattern, STATE(4488), 1, sym_comment, - ACTIONS(7713), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125083] = 3, - ACTIONS(3), 1, + STATE(4712), 1, + sym__expr_parenthesized_immediate, + [125785] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2535), 1, + sym__entry_separator, STATE(4489), 1, sym_comment, - ACTIONS(7725), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125095] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8074), 1, + ACTIONS(2537), 2, anon_sym_RBRACK, + anon_sym_RBRACE, + [125799] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2614), 1, + sym__entry_separator, STATE(4490), 1, sym_comment, - STATE(4493), 1, - aux_sym_val_binary_repeat1, - [125111] = 4, + ACTIONS(2616), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [125813] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_LPAREN, + ACTIONS(8108), 1, + sym__table_head_separator, STATE(4491), 1, sym_comment, - ACTIONS(7906), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [125125] = 3, - ACTIONS(3), 1, + ACTIONS(1629), 2, + anon_sym_RBRACK, + sym__entry_separator, + [125827] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4276), 1, + sym__entry_separator, + ACTIONS(8110), 1, + anon_sym_GT2, + STATE(1930), 1, + aux_sym__types_body_repeat2, STATE(4492), 1, sym_comment, - ACTIONS(7725), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125137] = 5, - ACTIONS(3), 1, + [125843] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8076), 1, - anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, + ACTIONS(5939), 1, + sym__entry_separator, STATE(4493), 1, sym_comment, - [125153] = 3, - ACTIONS(3), 1, + ACTIONS(5937), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [125857] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5263), 1, + sym__entry_separator, STATE(4494), 1, sym_comment, - ACTIONS(7735), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125165] = 3, - ACTIONS(3), 1, + ACTIONS(5265), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [125871] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8112), 1, + anon_sym_LPAREN, STATE(4495), 1, sym_comment, - ACTIONS(7735), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125177] = 5, + ACTIONS(8114), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [125885] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4276), 1, sym__entry_separator, - ACTIONS(8078), 1, - anon_sym_RBRACK, - STATE(1926), 1, + ACTIONS(8116), 1, + anon_sym_GT2, + STATE(1931), 1, aux_sym__types_body_repeat2, STATE(4496), 1, sym_comment, - [125193] = 5, - ACTIONS(3), 1, + [125901] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8080), 1, + ACTIONS(4276), 1, + sym__entry_separator, + ACTIONS(8118), 1, anon_sym_RBRACK, - STATE(4413), 1, - aux_sym_val_binary_repeat1, + STATE(4175), 1, + aux_sym__types_body_repeat2, STATE(4497), 1, sym_comment, - [125209] = 5, - ACTIONS(3), 1, + [125917] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8082), 1, - anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, + ACTIONS(5331), 1, + sym__entry_separator, STATE(4498), 1, sym_comment, - [125225] = 5, + ACTIONS(5333), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [125931] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__unquoted_pattern, + ACTIONS(4019), 1, + anon_sym_AT2, + ACTIONS(6009), 1, + anon_sym_EQ, + STATE(3375), 1, + sym_param_completer, STATE(4499), 1, sym_comment, - STATE(4775), 1, - sym__expr_parenthesized_immediate, - [125241] = 3, - ACTIONS(3), 1, + [125947] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4958), 1, + sym__entry_separator, + ACTIONS(8120), 1, + anon_sym_GT2, + STATE(2369), 1, + aux_sym__types_body_repeat2, STATE(4500), 1, sym_comment, - ACTIONS(7952), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125253] = 5, - ACTIONS(3), 1, + [125963] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8084), 1, + ACTIONS(4276), 1, + sym__entry_separator, + ACTIONS(8122), 1, anon_sym_RBRACK, + STATE(1923), 1, + aux_sym__types_body_repeat2, STATE(4501), 1, sym_comment, - STATE(4621), 1, - aux_sym_val_binary_repeat1, - [125269] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8086), 1, - anon_sym_DQUOTE, - STATE(4502), 1, - sym_comment, - ACTIONS(8088), 2, - sym__escaped_str_content, - sym_escape_sequence, - [125283] = 3, + [125979] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4503), 1, + STATE(4502), 1, sym_comment, - ACTIONS(8090), 3, + ACTIONS(8124), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [125295] = 3, + [125991] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(4297), 1, + sym_block, + STATE(4503), 1, + sym_comment, + [126007] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4504), 1, sym_comment, - ACTIONS(7692), 3, + ACTIONS(7788), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125307] = 4, - ACTIONS(103), 1, + [126019] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2268), 1, - sym__entry_separator, STATE(4505), 1, sym_comment, - ACTIONS(2270), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125321] = 4, + ACTIONS(8126), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [126031] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2272), 1, + ACTIONS(4276), 1, sym__entry_separator, + ACTIONS(8128), 1, + anon_sym_RBRACK, + STATE(4413), 1, + aux_sym__types_body_repeat2, STATE(4506), 1, sym_comment, - ACTIONS(2274), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125335] = 3, + [126047] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4507), 1, sym_comment, - ACTIONS(7747), 3, + ACTIONS(7788), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125347] = 3, - ACTIONS(3), 1, + [126059] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4276), 1, + sym__entry_separator, + ACTIONS(8130), 1, + anon_sym_RBRACK, + STATE(1924), 1, + aux_sym__types_body_repeat2, STATE(4508), 1, sym_comment, - ACTIONS(7747), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125359] = 5, + [126075] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8092), 1, - anon_sym_RBRACK, STATE(4509), 1, sym_comment, - STATE(4512), 1, - aux_sym_val_binary_repeat1, - [125375] = 4, - ACTIONS(103), 1, + ACTIONS(7960), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126087] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7757), 1, - sym__entry_separator, STATE(4510), 1, sym_comment, - ACTIONS(8094), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125389] = 4, - ACTIONS(103), 1, + ACTIONS(7960), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126099] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7757), 1, - sym__entry_separator, STATE(4511), 1, sym_comment, - ACTIONS(8094), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125403] = 5, + ACTIONS(7952), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126111] = 3, ACTIONS(3), 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, sym_comment, - [125419] = 4, - ACTIONS(103), 1, + ACTIONS(7952), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126123] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7825), 1, - sym__entry_separator, STATE(4513), 1, sym_comment, - ACTIONS(8098), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125433] = 4, - ACTIONS(103), 1, + ACTIONS(8132), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [126135] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5940), 1, - sym__entry_separator, STATE(4514), 1, sym_comment, - ACTIONS(5938), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125447] = 4, + ACTIONS(7954), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126147] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7204), 1, + ACTIONS(4276), 1, sym__entry_separator, + ACTIONS(8134), 1, + anon_sym_GT2, + STATE(1938), 1, + aux_sym__types_body_repeat2, STATE(4515), 1, sym_comment, - ACTIONS(7272), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125461] = 4, + [126163] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7920), 1, + ACTIONS(4369), 1, sym__entry_separator, - STATE(4516), 1, - sym_comment, - ACTIONS(8100), 2, + ACTIONS(8136), 1, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125475] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7210), 1, - sym__entry_separator, - STATE(4517), 1, + STATE(2001), 1, + aux_sym__types_body_repeat2, + STATE(4516), 1, sym_comment, - ACTIONS(7278), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125489] = 3, + [126179] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4518), 1, + STATE(4517), 1, sym_comment, - ACTIONS(7926), 3, + ACTIONS(7954), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125501] = 3, + [126191] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4519), 1, + ACTIONS(4019), 1, + anon_sym_AT2, + ACTIONS(8138), 1, + anon_sym_GT2, + STATE(4518), 1, sym_comment, - ACTIONS(7952), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125513] = 4, + STATE(4970), 1, + sym_param_completer, + [126207] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5241), 1, + ACTIONS(4369), 1, sym__entry_separator, - STATE(4520), 1, - sym_comment, - ACTIONS(5243), 2, + ACTIONS(8140), 1, anon_sym_RBRACK, - anon_sym_GT2, - [125527] = 3, + STATE(1974), 1, + aux_sym__types_body_repeat2, + STATE(4519), 1, + sym_comment, + [126223] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3895), 1, + anon_sym_LBRACK, + STATE(4497), 1, + sym_val_list, + STATE(4520), 1, + sym_comment, + STATE(4542), 1, + aux_sym__table_body_repeat1, + [126239] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4380), 1, + sym__entry_separator, + ACTIONS(8142), 1, + anon_sym_RBRACK, + STATE(1977), 1, + aux_sym__types_body_repeat2, STATE(4521), 1, sym_comment, - ACTIONS(7741), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125539] = 4, - ACTIONS(3), 1, + [126255] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3082), 1, - anon_sym_RPAREN, + ACTIONS(8144), 1, + anon_sym_GT2, STATE(4522), 1, sym_comment, - ACTIONS(2932), 2, - sym__newline, - anon_sym_SEMI, - [125553] = 3, + ACTIONS(8146), 2, + anon_sym_AT2, + sym__entry_separator, + [126269] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4523), 1, sym_comment, - ACTIONS(7741), 3, + ACTIONS(7910), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125565] = 5, - ACTIONS(103), 1, + [126281] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(8102), 1, + ACTIONS(8048), 1, + sym_hex_digit, + ACTIONS(8148), 1, anon_sym_RBRACK, - STATE(1968), 1, - aux_sym__types_body_repeat2, STATE(4524), 1, sym_comment, - [125581] = 3, + STATE(4642), 1, + aux_sym_val_binary_repeat1, + [126297] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + ACTIONS(1828), 1, + sym__unquoted_pattern, STATE(4525), 1, sym_comment, - ACTIONS(7751), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125593] = 5, + STATE(4762), 1, + sym__expr_parenthesized_immediate, + [126313] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1621), 1, - anon_sym_RBRACE, - ACTIONS(1627), 1, + ACTIONS(8150), 1, + anon_sym_RBRACK, + ACTIONS(8153), 1, + anon_sym_DOT_DOT, + ACTIONS(8155), 1, sym__entry_separator, - STATE(1475), 1, - aux_sym__types_body_repeat2, STATE(4526), 1, sym_comment, - [125609] = 3, + [126329] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1754), 1, + anon_sym_LBRACE, + ACTIONS(7193), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8158), 1, + anon_sym_DOT, STATE(4527), 1, sym_comment, - ACTIONS(7751), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125621] = 3, - ACTIONS(3), 1, + [126345] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7342), 1, + anon_sym_DOT_DOT, + ACTIONS(7510), 1, + anon_sym_RBRACK, + ACTIONS(7512), 1, + sym__entry_separator, STATE(4528), 1, sym_comment, - ACTIONS(7804), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125633] = 3, - ACTIONS(3), 1, + [126361] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7348), 1, + anon_sym_DOT_DOT, + ACTIONS(7516), 1, + anon_sym_RBRACK, + ACTIONS(7519), 1, + sym__entry_separator, STATE(4529), 1, sym_comment, - ACTIONS(7970), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125645] = 4, + [126377] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, - anon_sym_LPAREN, + ACTIONS(1637), 1, + sym__entry_separator, + ACTIONS(8160), 1, + anon_sym_RBRACE, + STATE(1461), 1, + aux_sym__types_body_repeat2, STATE(4530), 1, sym_comment, - ACTIONS(8106), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [125659] = 5, - ACTIONS(103), 1, + [126393] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8108), 1, - anon_sym_RBRACK, - STATE(1935), 1, - aux_sym__types_body_repeat2, STATE(4531), 1, sym_comment, - [125675] = 3, + ACTIONS(8004), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126405] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4532), 1, sym_comment, - ACTIONS(3082), 3, + ACTIONS(8006), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [125687] = 3, + [126417] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4533), 1, sym_comment, - ACTIONS(7696), 3, + ACTIONS(8008), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125699] = 3, + [126429] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4534), 1, sym_comment, - ACTIONS(7804), 3, + ACTIONS(8010), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125711] = 3, + [126441] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4535), 1, sym_comment, - ACTIONS(7696), 3, + ACTIONS(8012), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125723] = 4, - ACTIONS(103), 1, + [126453] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1706), 1, - sym__entry_separator, STATE(4536), 1, sym_comment, - ACTIONS(1619), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125737] = 3, - ACTIONS(3), 1, + ACTIONS(7914), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126465] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2258), 1, + sym__entry_separator, STATE(4537), 1, sym_comment, - ACTIONS(8110), 3, - sym__newline, - anon_sym_LBRACK, + ACTIONS(2260), 2, anon_sym_RBRACK, - [125749] = 3, + anon_sym_RBRACE, + [126479] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4538), 1, sym_comment, - ACTIONS(7827), 3, + ACTIONS(7874), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125761] = 5, + [126491] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(2258), 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(2260), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [126505] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(8117), 1, - anon_sym_GT2, - STATE(4541), 1, + STATE(4540), 1, sym_comment, - STATE(4953), 1, - sym_param_completer, - [125807] = 5, + ACTIONS(8163), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [126517] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(4380), 1, sym__entry_separator, - ACTIONS(8119), 1, - anon_sym_RBRACE, - STATE(1466), 1, + ACTIONS(8165), 1, + anon_sym_RBRACK, + STATE(1978), 1, aux_sym__types_body_repeat2, - STATE(4542), 1, + STATE(4541), 1, sym_comment, - [125823] = 5, - ACTIONS(103), 1, + [126533] = 4, + 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, + ACTIONS(8167), 1, + anon_sym_LBRACK, + STATE(4750), 1, + sym_val_list, + STATE(4542), 2, sym_comment, - [125839] = 4, - ACTIONS(103), 1, + aux_sym__table_body_repeat1, + [126547] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8124), 1, - anon_sym_LPAREN, - STATE(4544), 1, + ACTIONS(8048), 1, + sym_hex_digit, + ACTIONS(8170), 1, + anon_sym_RBRACK, + STATE(4543), 1, sym_comment, - ACTIONS(8126), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [125853] = 3, + STATE(4592), 1, + aux_sym_val_binary_repeat1, + [126563] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4545), 1, + STATE(4544), 1, sym_comment, - ACTIONS(7970), 3, + ACTIONS(7912), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125865] = 3, + [126575] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5311), 1, + sym__entry_separator, + STATE(4545), 1, + sym_comment, + ACTIONS(5313), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [126589] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4546), 1, sym_comment, - ACTIONS(7715), 3, - ts_builtin_sym_end, + ACTIONS(8172), 3, sym__newline, anon_sym_SEMI, - [125877] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + [126601] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(4298), 1, + sym_block, STATE(4547), 1, sym_comment, - ACTIONS(4569), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [125889] = 3, + [126617] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4548), 1, sym_comment, - ACTIONS(7715), 3, + ACTIONS(8020), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125901] = 5, + [126629] = 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, + ACTIONS(2950), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(3122), 1, + sym_block, STATE(4549), 1, sym_comment, - [125917] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4550), 1, - sym_comment, - ACTIONS(7827), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125929] = 5, + [126645] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1716), 1, sym__entry_separator, - ACTIONS(8128), 1, - anon_sym_RBRACE, - STATE(1478), 1, - aux_sym__types_body_repeat2, - STATE(4551), 1, + STATE(4550), 1, sym_comment, - [125945] = 5, + ACTIONS(1629), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [126659] = 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(4551), 1, sym_comment, - [125961] = 3, + ACTIONS(7954), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126671] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4553), 1, + STATE(4552), 1, sym_comment, - ACTIONS(7827), 3, + ACTIONS(8022), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125973] = 4, + [126683] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5961), 1, + ACTIONS(7962), 1, sym__entry_separator, - STATE(4554), 1, + STATE(4553), 1, sym_comment, - ACTIONS(5959), 2, + ACTIONS(8174), 2, anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126697] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1637), 1, + sym__entry_separator, + ACTIONS(7978), 1, anon_sym_RBRACE, - [125987] = 3, + STATE(1485), 1, + aux_sym__types_body_repeat2, + STATE(4554), 1, + sym_comment, + [126713] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4555), 1, sym_comment, - ACTIONS(8130), 3, + ACTIONS(8176), 3, sym__newline, - anon_sym_LBRACK, - anon_sym_RBRACK, - [125999] = 4, + anon_sym_SEMI, + anon_sym_RPAREN, + [126725] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2615), 1, + ACTIONS(7964), 1, sym__entry_separator, STATE(4556), 1, sym_comment, - ACTIONS(2617), 2, + ACTIONS(8178), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [126013] = 5, + anon_sym_DOT_DOT, + [126739] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(7968), 1, sym__entry_separator, - ACTIONS(8132), 1, - anon_sym_RBRACK, - STATE(1922), 1, - aux_sym__types_body_repeat2, STATE(4557), 1, sym_comment, - [126029] = 5, - ACTIONS(103), 1, + ACTIONS(8153), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126753] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(8134), 1, - anon_sym_RBRACE, - STATE(1474), 1, - aux_sym__types_body_repeat2, STATE(4558), 1, sym_comment, - [126045] = 5, + ACTIONS(8180), 3, + sym__newline, + anon_sym_LBRACK, + anon_sym_RBRACK, + [126765] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(858), 1, + anon_sym_RBRACE, + ACTIONS(884), 1, sym__entry_separator, - ACTIONS(8136), 1, - anon_sym_RBRACK, - STATE(1923), 1, - aux_sym__types_body_repeat2, + ACTIONS(6693), 1, + sym__unquoted_pattern_in_record, STATE(4559), 1, sym_comment, - [126061] = 3, - ACTIONS(3), 1, + [126781] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4276), 1, + sym__entry_separator, + ACTIONS(8182), 1, + anon_sym_RBRACK, + STATE(1933), 1, + aux_sym__types_body_repeat2, STATE(4560), 1, sym_comment, - ACTIONS(7847), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126073] = 3, - ACTIONS(3), 1, + [126797] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2552), 1, + sym__entry_separator, STATE(4561), 1, sym_comment, - ACTIONS(7847), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126085] = 3, + ACTIONS(2554), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [126811] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4562), 1, sym_comment, - ACTIONS(7741), 3, - ts_builtin_sym_end, + ACTIONS(7994), 3, sym__newline, - anon_sym_SEMI, - [126097] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126823] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8184), 1, + anon_sym_LPAREN, STATE(4563), 1, sym_comment, - ACTIONS(7741), 3, - ts_builtin_sym_end, + ACTIONS(8186), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [126837] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1926), 1, + anon_sym_POUND_BANG, + ACTIONS(8188), 1, sym__newline, - anon_sym_SEMI, - [126109] = 3, + STATE(4564), 2, + aux_sym__repeat_newline, + sym_comment, + [126851] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4564), 1, + STATE(4565), 1, sym_comment, - ACTIONS(7751), 3, + ACTIONS(8014), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126121] = 3, + [126863] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4565), 1, + STATE(4566), 1, sym_comment, - ACTIONS(7751), 3, + ACTIONS(7980), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126133] = 5, + [126875] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7723), 1, + ACTIONS(5257), 1, sym__entry_separator, - ACTIONS(8138), 1, - anon_sym_AT2, - STATE(4566), 1, + STATE(4567), 1, sym_comment, - STATE(4652), 1, - sym_param_completer, - [126149] = 3, + ACTIONS(5259), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [126889] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4567), 1, + STATE(4568), 1, sym_comment, - ACTIONS(7827), 3, + ACTIONS(7946), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126161] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(8140), 1, - anon_sym_RBRACK, - STATE(1990), 1, - aux_sym__types_body_repeat2, - STATE(4568), 1, - sym_comment, - [126177] = 5, - ACTIONS(103), 1, + [126901] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8142), 1, - anon_sym_RBRACK, - STATE(4236), 1, - aux_sym__types_body_repeat2, + ACTIONS(5126), 1, + anon_sym_LPAREN2, + ACTIONS(6693), 1, + sym__unquoted_pattern_in_record, STATE(4569), 1, sym_comment, - [126193] = 5, - ACTIONS(103), 1, + STATE(4815), 1, + sym__expr_parenthesized_immediate, + [126917] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8144), 1, - anon_sym_RBRACK, - STATE(4359), 1, - aux_sym__types_body_repeat2, STATE(4570), 1, sym_comment, - [126209] = 5, + ACTIONS(4555), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [126929] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(2266), 1, sym__entry_separator, - ACTIONS(8146), 1, - anon_sym_RBRACK, - STATE(4196), 1, - aux_sym__types_body_repeat2, STATE(4571), 1, sym_comment, - [126225] = 4, + ACTIONS(2268), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [126943] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5221), 1, + ACTIONS(4706), 1, sym__entry_separator, + ACTIONS(4726), 1, + anon_sym_RBRACE, + STATE(2222), 1, + aux_sym__types_body_repeat2, STATE(4572), 1, sym_comment, - ACTIONS(5223), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [126239] = 5, - ACTIONS(3), 1, + [126959] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1736), 1, - anon_sym_LBRACE, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7745), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(2270), 1, + sym__entry_separator, STATE(4573), 1, sym_comment, - [126255] = 4, + ACTIONS(2272), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [126973] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, + ACTIONS(1876), 1, sym__entry_separator, STATE(4574), 1, sym_comment, - ACTIONS(5239), 2, + ACTIONS(1878), 2, anon_sym_RBRACK, - anon_sym_GT2, - [126269] = 5, + anon_sym_DOT_DOT, + [126987] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7272), 1, - anon_sym_DOT_DOT, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, + ACTIONS(4704), 1, + anon_sym_RBRACE, + ACTIONS(4706), 1, sym__entry_separator, + STATE(2227), 1, + aux_sym__types_body_repeat2, STATE(4575), 1, sym_comment, - [126285] = 5, - ACTIONS(103), 1, + [127003] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7278), 1, - anon_sym_DOT_DOT, - ACTIONS(7442), 1, - anon_sym_RBRACK, - ACTIONS(7445), 1, - sym__entry_separator, STATE(4576), 1, sym_comment, - [126301] = 5, - ACTIONS(3), 1, + ACTIONS(7882), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127015] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_POUND_BANG, + ACTIONS(8193), 1, + sym__newline, + STATE(4564), 1, + aux_sym__repeat_newline, STATE(4577), 1, sym_comment, - STATE(4580), 1, - sym_val_list, - STATE(4591), 1, - aux_sym__table_body_repeat1, - [126317] = 5, - ACTIONS(103), 1, + [127031] = 3, + ACTIONS(3), 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, sym_comment, - [126333] = 5, + ACTIONS(7908), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127043] = 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, + ACTIONS(7773), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127055] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8148), 1, + ACTIONS(8048), 1, + sym_hex_digit, + ACTIONS(8195), 1, anon_sym_RBRACK, - STATE(4238), 1, - aux_sym__types_body_repeat2, + STATE(4524), 1, + aux_sym_val_binary_repeat1, STATE(4580), 1, sym_comment, - [126365] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - STATE(1491), 1, - aux_sym__types_body_repeat2, - STATE(4581), 1, - sym_comment, - [126381] = 3, + [127071] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4582), 1, + STATE(4581), 1, sym_comment, - ACTIONS(7831), 3, + ACTIONS(7938), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126393] = 5, + [127083] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(8150), 1, - anon_sym_RBRACK, - STATE(2104), 1, - aux_sym__types_body_repeat2, + ACTIONS(2950), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(4568), 1, + sym_block, + STATE(4582), 1, + sym_comment, + [127099] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4583), 1, sym_comment, - [126409] = 5, - ACTIONS(103), 1, + ACTIONS(8034), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127111] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACK, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, STATE(4584), 1, sym_comment, - [126425] = 3, + ACTIONS(8197), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127123] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4585), 1, sym_comment, - ACTIONS(7816), 3, + ACTIONS(8034), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126437] = 5, - ACTIONS(103), 1, + [127135] = 3, + ACTIONS(3), 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, + ACTIONS(7956), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127147] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4019), 1, + anon_sym_AT2, + ACTIONS(6009), 1, + anon_sym_EQ, + STATE(3386), 1, + sym_param_completer, STATE(4587), 1, sym_comment, - ACTIONS(8152), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126465] = 5, - ACTIONS(103), 1, + [127163] = 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, sym_comment, - [126481] = 3, + ACTIONS(7956), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127175] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4589), 1, sym_comment, - ACTIONS(8154), 3, + ACTIONS(8036), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126493] = 5, - ACTIONS(103), 1, + [127187] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4417), 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(7948), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127199] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8158), 1, - anon_sym_LBRACK, - STATE(4749), 1, - sym_val_list, - STATE(4591), 2, + ACTIONS(8201), 1, + anon_sym_COMMA, + STATE(4591), 1, sym_comment, - aux_sym__table_body_repeat1, - [126523] = 3, + ACTIONS(8199), 2, + anon_sym_RBRACK, + sym_hex_digit, + [127213] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8048), 1, + sym_hex_digit, + ACTIONS(8203), 1, + anon_sym_RBRACK, STATE(4592), 1, sym_comment, - ACTIONS(8161), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [126535] = 5, + STATE(4642), 1, + aux_sym_val_binary_repeat1, + [127229] = 3, 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, + ACTIONS(7906), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127241] = 4, 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, + ACTIONS(8058), 1, + anon_sym_BANG, STATE(4594), 1, sym_comment, - [126567] = 5, + ACTIONS(1458), 2, + sym__table_head_separator, + anon_sym_DOT2, + [127255] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(4380), 1, sym__entry_separator, - ACTIONS(8169), 1, + ACTIONS(8205), 1, anon_sym_RBRACK, - STATE(1995), 1, + STATE(2005), 1, aux_sym__types_body_repeat2, STATE(4595), 1, sym_comment, - [126583] = 4, + [127271] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1874), 1, - sym__entry_separator, + ACTIONS(2630), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(2960), 1, + sym_block, STATE(4596), 1, sym_comment, - ACTIONS(1876), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126597] = 3, + [127287] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4597), 1, sym_comment, - ACTIONS(8171), 3, + ACTIONS(8036), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126609] = 5, + [127299] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8173), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token5, STATE(4598), 1, sym_comment, - [126625] = 3, + ACTIONS(8038), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127311] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5126), 1, + anon_sym_LPAREN2, + ACTIONS(5136), 1, + sym__unquoted_pattern_in_record, STATE(4599), 1, sym_comment, - ACTIONS(4651), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [126637] = 5, + STATE(4773), 1, + sym__expr_parenthesized_immediate, + [127327] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8177), 1, - anon_sym_RBRACK, STATE(4600), 1, sym_comment, - STATE(4609), 1, - aux_sym_val_binary_repeat1, - [126653] = 5, - ACTIONS(3), 1, + ACTIONS(8038), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127339] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5116), 1, - sym__unquoted_pattern_in_record, + ACTIONS(5964), 1, + sym__entry_separator, STATE(4601), 1, sym_comment, - STATE(4649), 1, - sym__expr_parenthesized_immediate, - [126669] = 3, + ACTIONS(5962), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [127353] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8048), 1, + sym_hex_digit, + ACTIONS(8207), 1, + anon_sym_RBRACK, STATE(4602), 1, sym_comment, - ACTIONS(7968), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126681] = 5, + STATE(4621), 1, + aux_sym_val_binary_repeat1, + [127369] = 3, 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, sym_comment, - [126697] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4604), 1, - sym_comment, - ACTIONS(7837), 3, + ACTIONS(7908), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126709] = 5, + [127381] = 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(1748), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8209), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8211), 1, + aux_sym__immediate_decimal_token5, + STATE(4604), 1, sym_comment, - [126725] = 4, + [127397] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1886), 1, + ACTIONS(4276), 1, sym__entry_separator, + ACTIONS(7820), 1, + anon_sym_LBRACK, + STATE(1873), 1, + aux_sym__types_body_repeat2, + STATE(4605), 1, + sym_comment, + [127413] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4606), 1, sym_comment, - ACTIONS(1888), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126739] = 5, - ACTIONS(103), 1, + ACTIONS(8213), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [127425] = 3, + ACTIONS(3), 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, + ACTIONS(8044), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127437] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4707), 1, - sym__entry_separator, - ACTIONS(4711), 1, - anon_sym_RBRACE, - STATE(2223), 1, - aux_sym__types_body_repeat2, STATE(4608), 1, sym_comment, - [126771] = 5, + ACTIONS(2140), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127449] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8187), 1, - anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, STATE(4609), 1, sym_comment, - [126787] = 5, - ACTIONS(3), 1, + ACTIONS(8215), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [127461] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, + ACTIONS(7749), 1, + sym__entry_separator, STATE(4610), 1, sym_comment, - STATE(4739), 1, - sym__expr_parenthesized_immediate, - [126803] = 3, + ACTIONS(8217), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [127475] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4611), 1, sym_comment, - ACTIONS(7694), 3, - ts_builtin_sym_end, + ACTIONS(8219), 3, sym__newline, anon_sym_SEMI, - [126815] = 3, + anon_sym_RPAREN, + [127487] = 4, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7749), 1, + sym__entry_separator, STATE(4612), 1, sym_comment, - ACTIONS(858), 3, - sym__newline, - sym__space, - anon_sym_COLON2, - [126827] = 5, - ACTIONS(103), 1, + ACTIONS(8217), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [127501] = 3, + ACTIONS(3), 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, sym_comment, - [126843] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8189), 1, - anon_sym_POUND_BANG, - ACTIONS(8191), 1, + ACTIONS(8221), 3, sym__newline, - STATE(4540), 1, - aux_sym__repeat_newline, - STATE(4614), 1, - sym_comment, - [126859] = 5, + anon_sym_SEMI, + anon_sym_RPAREN, + [127513] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, + ACTIONS(7753), 1, sym__entry_separator, - ACTIONS(8193), 1, + STATE(4614), 1, + sym_comment, + ACTIONS(8223), 2, anon_sym_RBRACK, - STATE(2108), 1, - aux_sym__types_body_repeat2, + anon_sym_DOT_DOT, + [127527] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4615), 1, sym_comment, - [126875] = 3, + ACTIONS(7882), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127539] = 4, ACTIONS(3), 1, anon_sym_POUND, + STATE(1383), 1, + aux_sym__block_body_repeat1, STATE(4616), 1, sym_comment, - ACTIONS(8195), 3, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126887] = 3, + [127553] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3895), 1, + anon_sym_LBRACK, + STATE(4542), 1, + aux_sym__table_body_repeat1, STATE(4617), 1, sym_comment, - ACTIONS(8197), 3, + STATE(4638), 1, + sym_val_list, + [127569] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4618), 1, + sym_comment, + ACTIONS(8014), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126899] = 5, + [127581] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7855), 1, + ACTIONS(4380), 1, sym__entry_separator, - ACTIONS(8199), 1, - anon_sym_COLON, - STATE(4618), 1, - sym_comment, - STATE(4709), 1, - sym__collection_annotation, - [126915] = 3, - ACTIONS(3), 1, - anon_sym_POUND, + ACTIONS(8225), 1, + anon_sym_RBRACK, + STATE(2109), 1, + aux_sym__types_body_repeat2, STATE(4619), 1, sym_comment, - ACTIONS(8201), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [126927] = 4, + [127597] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5257), 1, - sym__entry_separator, STATE(4620), 1, sym_comment, - ACTIONS(5259), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [126941] = 5, + ACTIONS(850), 3, + sym__newline, + sym__space, + anon_sym_COLON2, + [127609] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, + ACTIONS(8048), 1, sym_hex_digit, - ACTIONS(8203), 1, + ACTIONS(8227), 1, anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, STATE(4621), 1, sym_comment, - [126957] = 4, + STATE(4642), 1, + aux_sym_val_binary_repeat1, + [127625] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4237), 1, - sym_block, + ACTIONS(1766), 1, + anon_sym_LPAREN2, + ACTIONS(5017), 1, + sym__unquoted_pattern, STATE(4622), 1, sym_comment, - [126970] = 3, - ACTIONS(103), 1, + STATE(4671), 1, + sym__expr_parenthesized_immediate, + [127641] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8205), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 2, + STATE(4623), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [126981] = 3, + ACTIONS(7902), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127653] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4624), 1, sym_comment, - ACTIONS(8208), 2, + ACTIONS(7922), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126992] = 4, + [127665] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8210), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(8229), 1, + anon_sym_DQUOTE, STATE(4625), 1, sym_comment, - STATE(4627), 1, - aux_sym__unquoted_with_expr_repeat1, - [127005] = 4, - ACTIONS(103), 1, + ACTIONS(8231), 2, + sym__escaped_str_content, + sym_escape_sequence, + [127679] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8212), 1, - aux_sym__unquoted_with_expr_token1, STATE(4626), 1, sym_comment, - STATE(4628), 1, - aux_sym__unquoted_with_expr_repeat1, - [127018] = 4, + ACTIONS(7888), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127691] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8214), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(4369), 1, + sym__entry_separator, + ACTIONS(8233), 1, + anon_sym_RBRACK, + STATE(2002), 1, + aux_sym__types_body_repeat2, STATE(4627), 1, sym_comment, - [127031] = 4, - ACTIONS(103), 1, + [127707] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8216), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3365), 1, + anon_sym_SEMI, + STATE(507), 1, + aux_sym__repeat_newline, STATE(4628), 1, sym_comment, - [127044] = 4, - ACTIONS(3), 1, + [127723] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4432), 1, - sym_block, + ACTIONS(4369), 1, + sym__entry_separator, + ACTIONS(8235), 1, + anon_sym_RBRACK, + STATE(2103), 1, + aux_sym__types_body_repeat2, STATE(4629), 1, sym_comment, - [127057] = 4, - ACTIONS(103), 1, + [127739] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8218), 1, - aux_sym__unquoted_in_record_with_expr_token1, STATE(4630), 1, sym_comment, - STATE(4789), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127070] = 4, - ACTIONS(103), 1, + ACTIONS(7882), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127751] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8220), 1, - aux_sym__unquoted_in_record_with_expr_token1, STATE(4631), 1, sym_comment, - STATE(4714), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127083] = 4, - ACTIONS(103), 1, + ACTIONS(7940), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127763] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8222), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(8237), 1, + anon_sym_export, + ACTIONS(8239), 1, + anon_sym_def, + ACTIONS(8241), 1, + anon_sym_extern, STATE(4632), 1, sym_comment, - STATE(4650), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127096] = 4, - ACTIONS(103), 1, + [127779] = 3, + ACTIONS(3), 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(4655), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127791] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4083), 1, - sym_block, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(8243), 1, + anon_sym_COLON, + STATE(507), 1, + aux_sym__repeat_newline, STATE(4634), 1, sym_comment, - [127122] = 4, + [127807] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4085), 1, - sym_block, + ACTIONS(6277), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6575), 1, + anon_sym_LPAREN2, STATE(4635), 1, sym_comment, - [127135] = 4, - ACTIONS(103), 1, + STATE(4728), 1, + sym__expr_parenthesized_immediate, + [127823] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7572), 1, - anon_sym_RBRACE, - ACTIONS(7574), 1, - sym__entry_separator, STATE(4636), 1, sym_comment, - [127148] = 4, + ACTIONS(8040), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127835] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4094), 1, - sym_block, + ACTIONS(8048), 1, + sym_hex_digit, + ACTIONS(8245), 1, + anon_sym_RBRACK, STATE(4637), 1, sym_comment, - [127161] = 4, - ACTIONS(3), 1, + STATE(4648), 1, + aux_sym_val_binary_repeat1, + [127851] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4433), 1, - sym_block, + ACTIONS(4276), 1, + sym__entry_separator, + ACTIONS(8247), 1, + anon_sym_RBRACK, + STATE(4373), 1, + aux_sym__types_body_repeat2, STATE(4638), 1, sym_comment, - [127174] = 4, - ACTIONS(3), 1, + [127867] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4098), 1, - sym_block, + ACTIONS(1637), 1, + sym__entry_separator, + ACTIONS(7755), 1, + anon_sym_RBRACE, + STATE(1467), 1, + aux_sym__types_body_repeat2, STATE(4639), 1, sym_comment, - [127187] = 3, - ACTIONS(103), 1, + [127883] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4640), 1, sym_comment, - ACTIONS(2096), 2, - anon_sym_POUND_BANG, + ACTIONS(8040), 3, + ts_builtin_sym_end, sym__newline, - [127198] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + [127895] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4276), 1, + sym__entry_separator, + ACTIONS(8249), 1, + anon_sym_RBRACK, + STATE(4167), 1, + aux_sym__types_body_repeat2, STATE(4641), 1, sym_comment, - ACTIONS(1464), 2, - sym__table_head_separator, - anon_sym_DOT2, - [127209] = 4, + [127911] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - STATE(4642), 1, + ACTIONS(8251), 1, + anon_sym_RBRACK, + ACTIONS(8253), 1, + sym_hex_digit, + STATE(4642), 2, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [127222] = 4, + aux_sym_val_binary_repeat1, + [127925] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4519), 1, - sym_block, STATE(4643), 1, sym_comment, - [127235] = 4, + ACTIONS(7906), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127937] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4241), 1, - sym_block, STATE(4644), 1, sym_comment, - [127248] = 4, - ACTIONS(3), 1, + ACTIONS(7882), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127949] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4243), 1, - sym_block, + ACTIONS(7870), 1, + anon_sym_LPAREN, STATE(4645), 1, sym_comment, - [127261] = 4, - ACTIONS(103), 1, + ACTIONS(7872), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [127963] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8226), 1, - aux_sym__unquoted_with_expr_token1, STATE(4646), 1, sym_comment, - STATE(4665), 1, - aux_sym__unquoted_with_expr_repeat1, - [127274] = 4, + ACTIONS(4659), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127975] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4442), 1, - sym_block, STATE(4647), 1, sym_comment, - [127287] = 4, + ACTIONS(7950), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127987] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4507), 1, - sym_block, + ACTIONS(8048), 1, + sym_hex_digit, + ACTIONS(8256), 1, + anon_sym_RBRACK, + STATE(4642), 1, + aux_sym_val_binary_repeat1, STATE(4648), 1, sym_comment, - [127300] = 4, + [128003] = 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, + ACTIONS(2284), 1, + sym__entry_separator, STATE(4649), 1, sym_comment, - [127313] = 3, + ACTIONS(2286), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [128017] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8230), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4650), 2, + ACTIONS(2288), 1, + sym__entry_separator, + STATE(4650), 1, sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127324] = 4, - ACTIONS(3), 1, + ACTIONS(2290), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [128031] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4508), 1, - sym_block, + ACTIONS(1637), 1, + sym__entry_separator, + ACTIONS(8258), 1, + anon_sym_RBRACE, + STATE(1469), 1, + aux_sym__types_body_repeat2, STATE(4651), 1, sym_comment, - [127337] = 4, - ACTIONS(103), 1, + [128047] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8233), 1, - anon_sym_GT2, - ACTIONS(8235), 1, - sym__entry_separator, STATE(4652), 1, sym_comment, - [127350] = 4, + ACTIONS(7998), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128059] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2635), 1, - anon_sym_LBRACE, - ACTIONS(2641), 1, - sym__unquoted_pattern, STATE(4653), 1, sym_comment, - [127363] = 4, - ACTIONS(103), 1, + ACTIONS(8260), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [128071] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8237), 1, - anon_sym_RBRACE, - ACTIONS(8239), 1, - sym__entry_separator, STATE(4654), 1, sym_comment, - [127376] = 4, - ACTIONS(103), 1, + ACTIONS(7942), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128083] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8241), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4633), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(7354), 1, + anon_sym_if, + ACTIONS(8262), 1, + anon_sym_EQ_GT, STATE(4655), 1, sym_comment, - [127389] = 4, - ACTIONS(103), 1, + STATE(4891), 1, + sym_match_guard, + [128099] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7589), 1, - anon_sym_RBRACE, - ACTIONS(7591), 1, - sym__entry_separator, STATE(4656), 1, sym_comment, - [127402] = 4, + ACTIONS(7976), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128111] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8243), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(1631), 1, + anon_sym_RBRACE, + ACTIONS(1637), 1, + sym__entry_separator, + STATE(1460), 1, + aux_sym__types_body_repeat2, STATE(4657), 1, sym_comment, - [127415] = 4, - ACTIONS(103), 1, + [128127] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8245), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(8264), 1, + anon_sym_RBRACK, + ACTIONS(8266), 1, + anon_sym_DOT_DOT, STATE(4658), 1, sym_comment, - [127428] = 4, - ACTIONS(3), 1, + STATE(5074), 1, + sym__match_pattern_rest, + [128143] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4443), 1, - sym_block, STATE(4659), 1, sym_comment, - [127441] = 4, + ACTIONS(1890), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [128155] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - anon_sym_LBRACE, STATE(4660), 1, sym_comment, - [127454] = 4, + ACTIONS(7998), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128167] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_LBRACE, - ACTIONS(1762), 1, - sym__unquoted_pattern, STATE(4661), 1, sym_comment, - [127467] = 4, + ACTIONS(7986), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128179] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4348), 1, - sym_block, STATE(4662), 1, sym_comment, - [127480] = 4, - ACTIONS(103), 1, + ACTIONS(7880), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128191] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8247), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, STATE(4663), 1, sym_comment, - [127493] = 4, + ACTIONS(3258), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [128203] = 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(7952), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128215] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8249), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(1637), 1, + sym__entry_separator, + ACTIONS(8268), 1, + anon_sym_RBRACE, + STATE(1462), 1, + aux_sym__types_body_repeat2, STATE(4665), 1, sym_comment, - [127519] = 4, + [128231] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4110), 1, - sym_block, STATE(4666), 1, sym_comment, - [127532] = 4, - ACTIONS(3), 1, + ACTIONS(7952), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128243] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4129), 1, - sym_block, + ACTIONS(7928), 1, + sym__entry_separator, + ACTIONS(8271), 1, + anon_sym_COLON, STATE(4667), 1, sym_comment, - [127545] = 4, + STATE(4744), 1, + sym__collection_annotation, + [128259] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4136), 1, - sym_block, + ACTIONS(3258), 1, + anon_sym_RPAREN, STATE(4668), 1, sym_comment, - [127558] = 4, - ACTIONS(3), 1, + ACTIONS(2927), 2, + sym__newline, + anon_sym_SEMI, + [128273] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, - anon_sym_LBRACE, - ACTIONS(2585), 1, - sym__unquoted_pattern, + ACTIONS(7846), 1, + sym__entry_separator, + ACTIONS(8273), 1, + anon_sym_AT2, STATE(4669), 1, sym_comment, - [127571] = 4, - ACTIONS(3), 1, + STATE(4837), 1, + sym_param_completer, + [128289] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4351), 1, - sym_block, + ACTIONS(8275), 1, + aux_sym__unquoted_with_expr_token1, STATE(4670), 1, sym_comment, - [127584] = 4, - ACTIONS(3), 1, + STATE(4686), 1, + aux_sym__unquoted_with_expr_repeat1, + [128302] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1802), 1, - anon_sym_LBRACE, - ACTIONS(1804), 1, - sym__unquoted_pattern, + ACTIONS(8277), 1, + aux_sym__unquoted_with_expr_token1, STATE(4671), 1, sym_comment, - [127597] = 4, - ACTIONS(3), 1, + STATE(4674), 1, + aux_sym__unquoted_with_expr_repeat1, + [128315] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4049), 1, - sym_block, + ACTIONS(8279), 1, + aux_sym__unquoted_with_expr_token1, STATE(4672), 1, sym_comment, - [127610] = 4, - ACTIONS(3), 1, + STATE(4675), 1, + aux_sym__unquoted_with_expr_repeat1, + [128328] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1018), 1, - anon_sym_LBRACE, - ACTIONS(2585), 1, - sym__unquoted_pattern, + ACTIONS(8281), 1, + anon_sym_RBRACE, + ACTIONS(8283), 1, + sym__entry_separator, STATE(4673), 1, sym_comment, - [127623] = 4, - ACTIONS(3), 1, + [128341] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8251), 1, - anon_sym_DASH2, + ACTIONS(8285), 1, + aux_sym__unquoted_with_expr_token1, STATE(4674), 1, sym_comment, - STATE(4982), 1, - sym_param_short_flag, - [127636] = 4, - ACTIONS(3), 1, + STATE(4814), 1, + aux_sym__unquoted_with_expr_repeat1, + [128354] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4052), 1, - sym_block, + ACTIONS(8287), 1, + aux_sym__unquoted_with_expr_token1, STATE(4675), 1, sym_comment, - [127649] = 4, + STATE(4814), 1, + aux_sym__unquoted_with_expr_repeat1, + [128367] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2523), 1, - sym__entry_separator, - ACTIONS(2525), 1, + ACTIONS(7610), 1, anon_sym_RBRACE, + ACTIONS(7612), 1, + sym__entry_separator, STATE(4676), 1, sym_comment, - [127662] = 4, - ACTIONS(3), 1, + [128380] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, - anon_sym_LBRACE, - ACTIONS(2597), 1, - sym__unquoted_pattern, + ACTIONS(8289), 1, + anon_sym_RBRACE, + ACTIONS(8291), 1, + sym__entry_separator, STATE(4677), 1, sym_comment, - [127675] = 4, - ACTIONS(103), 1, + [128393] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5245), 1, - anon_sym_RBRACK, - ACTIONS(5247), 1, - sym__entry_separator, + ACTIONS(1030), 1, + anon_sym_LBRACE, + ACTIONS(2558), 1, + sym__unquoted_pattern, STATE(4678), 1, sym_comment, - [127688] = 4, + [128406] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(994), 1, anon_sym_LBRACE, - STATE(4149), 1, - sym_block, + ACTIONS(2558), 1, + sym__unquoted_pattern, STATE(4679), 1, sym_comment, - [127701] = 4, - ACTIONS(3), 1, + [128419] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4151), 1, - sym_block, + ACTIONS(8293), 1, + aux_sym__unquoted_with_expr_token1, STATE(4680), 1, sym_comment, - [127714] = 4, + STATE(4778), 1, + aux_sym__unquoted_with_expr_repeat1, + [128432] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8253), 1, + ACTIONS(8295), 1, anon_sym_RBRACE, - ACTIONS(8255), 1, + ACTIONS(8297), 1, sym__entry_separator, STATE(4681), 1, sym_comment, - [127727] = 4, - ACTIONS(103), 1, + [128445] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7390), 1, - anon_sym_RBRACE, - ACTIONS(7392), 1, - sym__entry_separator, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(4305), 1, + sym_block, STATE(4682), 1, sym_comment, - [127740] = 4, + [128458] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(4307), 1, + sym_block, STATE(4683), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - [127753] = 4, + [128471] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8257), 1, - anon_sym_RBRACE, - ACTIONS(8259), 1, - sym__entry_separator, + ACTIONS(8299), 1, + aux_sym__unquoted_with_expr_token1, STATE(4684), 1, sym_comment, - [127766] = 4, - ACTIONS(103), 1, + STATE(4814), 1, + aux_sym__unquoted_with_expr_repeat1, + [128484] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7210), 1, - sym__entry_separator, + ACTIONS(2506), 1, + anon_sym_LBRACE, + ACTIONS(2508), 1, + sym__unquoted_pattern, STATE(4685), 1, sym_comment, - [127779] = 4, - ACTIONS(3), 1, + [128497] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4521), 1, - sym_block, + ACTIONS(8301), 1, + aux_sym__unquoted_with_expr_token1, STATE(4686), 1, sym_comment, - [127792] = 4, + STATE(4814), 1, + aux_sym__unquoted_with_expr_repeat1, + [128510] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4487), 1, - sym_block, + ACTIONS(8303), 1, + anon_sym_DASH2, STATE(4687), 1, sym_comment, - [127805] = 4, - ACTIONS(3), 1, + STATE(5133), 1, + sym_param_short_flag, + [128523] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4488), 1, - sym_block, + ACTIONS(8305), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4688), 1, sym_comment, - [127818] = 4, - ACTIONS(3), 1, + STATE(4736), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [128536] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4418), 1, - sym_block, + ACTIONS(8307), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4689), 1, sym_comment, - [127831] = 4, + STATE(4736), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [128549] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - STATE(4560), 1, + STATE(4379), 1, sym_block, STATE(4690), 1, sym_comment, - [127844] = 4, + [128562] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - STATE(4334), 1, + STATE(4380), 1, sym_block, STATE(4691), 1, sym_comment, - [127857] = 4, - ACTIONS(3), 1, + [128575] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4341), 1, - sym_block, + ACTIONS(7458), 1, + anon_sym_RBRACE, + ACTIONS(7460), 1, + sym__entry_separator, STATE(4692), 1, sym_comment, - [127870] = 4, + [128588] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(1746), 1, anon_sym_LBRACE, - STATE(4489), 1, - sym_block, + ACTIONS(1748), 1, + sym__unquoted_pattern, STATE(4693), 1, sym_comment, - [127883] = 4, + [128601] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3813), 1, anon_sym_LBRACE, - STATE(4419), 1, + STATE(4664), 1, sym_block, STATE(4694), 1, sym_comment, - [127896] = 4, + [128614] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(2575), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, + STATE(4385), 1, + sym_block, STATE(4695), 1, sym_comment, - [127909] = 4, + [128627] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - STATE(4420), 1, + STATE(4387), 1, sym_block, STATE(4696), 1, sym_comment, - [127922] = 4, + [128640] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1870), 1, + ACTIONS(3813), 1, anon_sym_LBRACE, - ACTIONS(1872), 1, - sym__unquoted_pattern, + STATE(4442), 1, + sym_block, STATE(4697), 1, sym_comment, - [127935] = 4, + [128653] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2501), 1, + ACTIONS(3813), 1, anon_sym_LBRACE, - ACTIONS(2503), 1, - sym__unquoted_pattern, + STATE(4424), 1, + sym_block, STATE(4698), 1, sym_comment, - [127948] = 4, + [128666] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - STATE(4561), 1, + STATE(4319), 1, sym_block, STATE(4699), 1, sym_comment, - [127961] = 4, - ACTIONS(103), 1, + [128679] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_COLON2, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(4443), 1, + sym_block, STATE(4700), 1, sym_comment, - [127974] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(1975), 1, - aux_sym__types_body_repeat2, - STATE(4701), 1, - sym_comment, - [127987] = 4, + [128692] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - STATE(4422), 1, + STATE(4320), 1, sym_block, + STATE(4701), 1, + sym_comment, + [128705] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8309), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(4702), 1, sym_comment, - [128000] = 4, - ACTIONS(3), 1, + STATE(4727), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [128718] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4492), 1, - sym_block, + ACTIONS(2596), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7265), 1, + sym__entry_separator, STATE(4703), 1, sym_comment, - [128013] = 4, + [128731] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3813), 1, anon_sym_LBRACE, - STATE(4081), 1, + STATE(4445), 1, sym_block, STATE(4704), 1, sym_comment, - [128026] = 4, + [128744] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3813), 1, anon_sym_LBRACE, - STATE(4082), 1, + STATE(4446), 1, sym_block, STATE(4705), 1, sym_comment, - [128039] = 4, + [128757] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(8261), 1, - anon_sym_RBRACK, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(4321), 1, + sym_block, STATE(4706), 1, sym_comment, - [128052] = 4, + [128770] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - STATE(4269), 1, + STATE(4322), 1, sym_block, STATE(4707), 1, sym_comment, - [128065] = 4, - ACTIONS(103), 1, + [128783] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8263), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(1691), 1, + sym__unquoted_pattern, + ACTIONS(2560), 1, + anon_sym_LBRACE, STATE(4708), 1, sym_comment, - STATE(4735), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [128078] = 4, - ACTIONS(103), 1, + [128796] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8265), 1, - anon_sym_GT2, - ACTIONS(8267), 1, - sym__entry_separator, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(4393), 1, + sym_block, STATE(4709), 1, sym_comment, - [128091] = 4, - ACTIONS(103), 1, + [128809] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6894), 1, - sym__entry_separator, - ACTIONS(8269), 1, - anon_sym_RBRACK, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(4395), 1, + sym_block, STATE(4710), 1, sym_comment, - [128104] = 4, - ACTIONS(103), 1, + [128822] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6922), 1, - sym__entry_separator, - ACTIONS(8271), 1, - anon_sym_RBRACK, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(4396), 1, + sym_block, STATE(4711), 1, sym_comment, - [128117] = 3, - ACTIONS(3), 1, + [128835] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8311), 1, + aux_sym__unquoted_with_expr_token1, STATE(4712), 1, sym_comment, - ACTIONS(8049), 2, - anon_sym_GT2, - anon_sym_AT2, - [128128] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(4713), 1, - sym_comment, - [128141] = 4, + STATE(4748), 1, + aux_sym__unquoted_with_expr_repeat1, + [128848] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8273), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4650), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4714), 1, + ACTIONS(8313), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4713), 1, sym_comment, - [128154] = 4, + STATE(4749), 1, + aux_sym__unquoted_with_expr_repeat1, + [128861] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8275), 1, - anon_sym_def, - ACTIONS(8277), 1, - anon_sym_extern, - STATE(4715), 1, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(4397), 1, + sym_block, + STATE(4714), 1, sym_comment, - [128167] = 4, + [128874] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3757), 1, + ACTIONS(6118), 1, sym__entry_separator, - ACTIONS(8279), 1, - anon_sym_RBRACE, - STATE(4716), 1, + ACTIONS(6120), 1, + anon_sym_RBRACK, + STATE(4715), 1, sym_comment, - [128180] = 4, - ACTIONS(103), 1, + [128887] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7633), 1, - anon_sym_RBRACE, - ACTIONS(7635), 1, - sym__entry_separator, - STATE(4717), 1, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(4593), 1, + sym_block, + STATE(4716), 1, sym_comment, - [128193] = 4, + [128900] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3813), 1, anon_sym_LBRACE, - STATE(4384), 1, + STATE(4509), 1, sym_block, + STATE(4717), 1, + sym_comment, + [128913] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5966), 1, + anon_sym_RBRACK, + ACTIONS(5968), 1, + sym__entry_separator, STATE(4718), 1, sym_comment, - [128206] = 4, + [128926] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - STATE(4523), 1, + STATE(4404), 1, sym_block, STATE(4719), 1, sym_comment, - [128219] = 4, - ACTIONS(103), 1, + [128939] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2635), 1, - sym__entry_separator, - ACTIONS(2637), 1, - anon_sym_RBRACE, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(4405), 1, + sym_block, STATE(4720), 1, sym_comment, - [128232] = 4, + [128952] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8282), 1, - anon_sym_RBRACK, - ACTIONS(8284), 1, + ACTIONS(7656), 1, + anon_sym_RBRACE, + ACTIONS(7658), 1, sym__entry_separator, STATE(4721), 1, sym_comment, - [128245] = 4, - ACTIONS(3), 1, + [128965] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4562), 1, - sym_block, + ACTIONS(884), 1, + anon_sym_COLON2, + ACTIONS(2738), 1, + aux_sym_cmd_identifier_token2, STATE(4722), 1, sym_comment, - [128258] = 4, - ACTIONS(3), 1, + [128978] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2523), 1, - anon_sym_LBRACE, + ACTIONS(2566), 1, + sym__entry_separator, + ACTIONS(2568), 1, + anon_sym_RBRACE, STATE(4723), 1, sym_comment, - [128271] = 4, + [128991] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4338), 1, - sym_block, STATE(4724), 1, sym_comment, - [128284] = 4, - ACTIONS(103), 1, + ACTIONS(8315), 2, + sym__newline, + anon_sym_SEMI, + [129002] = 3, + 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, sym_comment, - [128297] = 4, - ACTIONS(3), 1, + ACTIONS(8146), 2, + anon_sym_GT2, + anon_sym_AT2, + [129013] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3076), 1, - sym_block, + ACTIONS(2021), 1, + sym__entry_separator, + ACTIONS(2023), 1, + anon_sym_RBRACE, STATE(4726), 1, sym_comment, - [128310] = 4, + [129026] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - STATE(1496), 1, - aux_sym__types_body_repeat2, - STATE(4727), 1, + ACTIONS(8317), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4727), 2, sym_comment, - [128323] = 4, + aux_sym__unquoted_in_list_with_expr_repeat1, + [129037] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8288), 1, + ACTIONS(8320), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(4708), 1, + STATE(4702), 1, aux_sym__unquoted_in_list_with_expr_repeat1, STATE(4728), 1, sym_comment, - [128336] = 4, - ACTIONS(103), 1, + [129050] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - STATE(2402), 1, - aux_sym__types_body_repeat2, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(4552), 1, + sym_block, STATE(4729), 1, sym_comment, - [128349] = 4, - ACTIONS(103), 1, + [129063] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5963), 1, - anon_sym_RBRACK, - ACTIONS(5965), 1, - sym__entry_separator, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(4258), 1, + sym_block, STATE(4730), 1, sym_comment, - [128362] = 4, - ACTIONS(103), 1, + [129076] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6115), 1, - sym__entry_separator, - ACTIONS(6117), 1, - anon_sym_RBRACK, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(4259), 1, + sym_block, STATE(4731), 1, sym_comment, - [128375] = 4, + [129089] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4732), 1, + sym_comment, + ACTIONS(1535), 2, + sym__table_head_separator, + anon_sym_DOT2, + [129100] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(1637), 1, sym__entry_separator, - STATE(2252), 1, + STATE(1495), 1, aux_sym__types_body_repeat2, - STATE(4732), 1, + STATE(4733), 1, sym_comment, - [128388] = 3, + [129113] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4733), 1, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(4476), 1, + sym_block, + STATE(4734), 1, sym_comment, - ACTIONS(1522), 2, - sym__table_head_separator, - anon_sym_DOT2, - [128399] = 4, + [129126] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - STATE(4563), 1, + STATE(4367), 1, sym_block, - STATE(4734), 1, + STATE(4735), 1, sym_comment, - [128412] = 3, + [129139] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8290), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4735), 2, + ACTIONS(8322), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4736), 2, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [128423] = 4, + aux_sym__unquoted_in_record_with_expr_repeat1, + [129150] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(6981), 1, sym__entry_separator, - STATE(1979), 1, - aux_sym__types_body_repeat2, - STATE(4736), 1, + ACTIONS(8325), 1, + anon_sym_RBRACK, + STATE(4737), 1, sym_comment, - [128436] = 4, - ACTIONS(3), 1, + [129163] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4486), 1, - sym_block, - STATE(4737), 1, + ACTIONS(6955), 1, + sym__entry_separator, + ACTIONS(8327), 1, + anon_sym_RBRACK, + STATE(4738), 1, sym_comment, - [128449] = 4, + [129176] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3813), 1, anon_sym_LBRACE, - STATE(4533), 1, + STATE(3153), 1, sym_block, - STATE(4738), 1, + STATE(4739), 1, sym_comment, - [128462] = 4, + [129189] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8293), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4739), 1, + ACTIONS(2521), 1, + sym__entry_separator, + ACTIONS(2523), 1, + anon_sym_RBRACE, + STATE(4740), 1, sym_comment, - STATE(4755), 1, - aux_sym__unquoted_with_expr_repeat1, - [128475] = 4, + [129202] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3813), 1, anon_sym_LBRACE, - STATE(4535), 1, + STATE(4484), 1, sym_block, - STATE(4740), 1, - sym_comment, - [128488] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, STATE(4741), 1, sym_comment, - [128501] = 4, - ACTIONS(103), 1, + [129215] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8295), 1, - anon_sym_RBRACK, - ACTIONS(8297), 1, - sym__entry_separator, + ACTIONS(2021), 1, + anon_sym_LBRACE, + ACTIONS(2031), 1, + sym__unquoted_pattern, STATE(4742), 1, sym_comment, - [128514] = 3, + [129228] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(3182), 1, + sym_block, STATE(4743), 1, sym_comment, - ACTIONS(1537), 2, - sym__table_head_separator, - anon_sym_DOT2, - [128525] = 4, + [129241] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, + ACTIONS(8329), 1, + anon_sym_GT2, + ACTIONS(8331), 1, sym__entry_separator, - STATE(2120), 1, - aux_sym__types_body_repeat2, STATE(4744), 1, sym_comment, - [128538] = 4, - ACTIONS(103), 1, + [129254] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8299), 1, - sym__newline, - ACTIONS(8301), 1, - sym__space, + ACTIONS(1766), 1, + anon_sym_LPAREN2, STATE(4745), 1, sym_comment, - [128551] = 4, + STATE(5092), 1, + sym__expr_parenthesized_immediate, + [129267] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8303), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(4732), 1, + sym__entry_separator, + STATE(2252), 1, + aux_sym__types_body_repeat2, STATE(4746), 1, sym_comment, - STATE(4757), 1, - aux_sym__unquoted_with_expr_repeat1, - [128564] = 4, + [129280] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - STATE(4500), 1, + STATE(4271), 1, sym_block, STATE(4747), 1, sym_comment, - [128577] = 4, + [129293] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2575), 1, - sym__entry_separator, - ACTIONS(2577), 1, - anon_sym_RBRACE, + ACTIONS(8333), 1, + aux_sym__unquoted_with_expr_token1, STATE(4748), 1, sym_comment, - [128590] = 4, + STATE(4814), 1, + aux_sym__unquoted_with_expr_repeat1, + [129306] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(4367), 1, - aux_sym__types_body_repeat2, + ACTIONS(8335), 1, + aux_sym__unquoted_with_expr_token1, STATE(4749), 1, sym_comment, - [128603] = 4, + STATE(4814), 1, + aux_sym__unquoted_with_expr_repeat1, + [129319] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1964), 1, + ACTIONS(4276), 1, sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACE, + STATE(4605), 1, + aux_sym__types_body_repeat2, STATE(4750), 1, sym_comment, - [128616] = 4, - ACTIONS(103), 1, + [129332] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8305), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(4666), 1, + sym_block, STATE(4751), 1, sym_comment, - STATE(4764), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [128629] = 4, - ACTIONS(3), 1, + [129345] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(8307), 1, - anon_sym_RBRACK, STATE(4752), 1, sym_comment, - [128642] = 4, - ACTIONS(103), 1, + ACTIONS(2144), 2, + anon_sym_POUND_BANG, + sym__newline, + [129356] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACE, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(4565), 1, + sym_block, STATE(4753), 1, sym_comment, - [128655] = 4, - ACTIONS(103), 1, + [129369] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, - sym__entry_separator, + ACTIONS(1812), 1, + anon_sym_LBRACE, + ACTIONS(1814), 1, + sym__unquoted_pattern, STATE(4754), 1, sym_comment, - [128668] = 4, - ACTIONS(103), 1, + [129382] = 3, + ACTIONS(3), 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, sym_comment, - [128681] = 4, + ACTIONS(1539), 2, + sym__table_head_separator, + anon_sym_DOT2, + [129393] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3813), 1, anon_sym_LBRACE, - STATE(3106), 1, + STATE(4618), 1, sym_block, STATE(4756), 1, sym_comment, - [128694] = 4, - ACTIONS(103), 1, + [129406] = 3, + ACTIONS(3), 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, sym_comment, - [128707] = 4, - ACTIONS(103), 1, + ACTIONS(1543), 2, + sym__table_head_separator, + anon_sym_DOT2, + [129417] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - STATE(1491), 1, - aux_sym__types_body_repeat2, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(4510), 1, + sym_block, STATE(4758), 1, sym_comment, - [128720] = 4, + [129430] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3490), 1, - sym__space, - STATE(1407), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(4369), 1, + sym__entry_separator, + STATE(2118), 1, + aux_sym__types_body_repeat2, STATE(4759), 1, sym_comment, - [128733] = 4, + [129443] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6061), 1, - sym__entry_separator, - ACTIONS(6063), 1, - anon_sym_GT2, + ACTIONS(8337), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(4760), 1, sym_comment, - [128746] = 4, - ACTIONS(103), 1, + STATE(4777), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [129456] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8313), 1, - anon_sym_RBRACE, - ACTIONS(8315), 1, - sym__entry_separator, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(4643), 1, + sym_block, STATE(4761), 1, sym_comment, - [128759] = 4, + [129469] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6065), 1, - sym__entry_separator, - ACTIONS(6067), 1, - anon_sym_GT2, + ACTIONS(8339), 1, + aux_sym__unquoted_with_expr_token1, STATE(4762), 1, sym_comment, - [128772] = 4, + STATE(4776), 1, + aux_sym__unquoted_with_expr_repeat1, + [129482] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3813), 1, anon_sym_LBRACE, - STATE(3159), 1, + STATE(4583), 1, sym_block, STATE(4763), 1, sym_comment, - [128785] = 4, - ACTIONS(103), 1, + [129495] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8317), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4735), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(4585), 1, + sym_block, STATE(4764), 1, sym_comment, - [128798] = 4, + [129508] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7654), 1, - anon_sym_RBRACE, - ACTIONS(7656), 1, + ACTIONS(1637), 1, sym__entry_separator, + STATE(1504), 1, + aux_sym__types_body_repeat2, STATE(4765), 1, sym_comment, - [128811] = 3, + [129521] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(4589), 1, + sym_block, STATE(4766), 1, sym_comment, - ACTIONS(8319), 2, - anon_sym_RBRACK, - sym_hex_digit, - [128822] = 4, - ACTIONS(103), 1, + [129534] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - STATE(2118), 1, - aux_sym__types_body_repeat2, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(4511), 1, + sym_block, STATE(4767), 1, sym_comment, - [128835] = 4, - ACTIONS(103), 1, + [129547] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8321), 1, - anon_sym_RBRACE, - ACTIONS(8323), 1, - sym__entry_separator, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(4597), 1, + sym_block, STATE(4768), 1, sym_comment, - [128848] = 4, - ACTIONS(3), 1, + [129560] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8167), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(5249), 1, + anon_sym_RBRACK, + ACTIONS(5251), 1, + sym__entry_separator, STATE(4769), 1, sym_comment, - [128861] = 4, + [129573] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8325), 1, - anon_sym_RBRACK, - ACTIONS(8327), 1, - sym__entry_separator, + ACTIONS(2738), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2740), 1, + anon_sym_COLON2, STATE(4770), 1, sym_comment, - [128874] = 4, - ACTIONS(3), 1, + [129586] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4240), 1, - sym_block, + ACTIONS(2011), 1, + sym__entry_separator, + ACTIONS(2013), 1, + anon_sym_RBRACE, STATE(4771), 1, sym_comment, - [128887] = 4, - ACTIONS(103), 1, + [129599] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8329), 1, - anon_sym_LPAREN2, - ACTIONS(8331), 1, - aux_sym__record_key_token1, + ACTIONS(6275), 1, + anon_sym_DOLLAR2, + ACTIONS(8341), 1, + anon_sym_RBRACK, STATE(4772), 1, sym_comment, - [128900] = 4, - ACTIONS(3), 1, + [129612] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8333), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(8343), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4688), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4773), 1, sym_comment, - [128913] = 4, - ACTIONS(103), 1, + [129625] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7662), 1, - anon_sym_RBRACE, - ACTIONS(7664), 1, - sym__entry_separator, + ACTIONS(1900), 1, + anon_sym_LBRACE, + ACTIONS(1902), 1, + sym__unquoted_pattern, STATE(4774), 1, sym_comment, - [128926] = 4, + [129638] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8335), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4657), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(8345), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4689), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4775), 1, sym_comment, - [128939] = 4, - ACTIONS(3), 1, + [129651] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3395), 1, - sym_block, + ACTIONS(8347), 1, + aux_sym__unquoted_with_expr_token1, STATE(4776), 1, sym_comment, - [128952] = 4, + STATE(4814), 1, + aux_sym__unquoted_with_expr_repeat1, + [129664] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8337), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4658), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(8349), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4727), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(4777), 1, sym_comment, - [128965] = 4, + [129677] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(996), 1, - anon_sym_RBRACE, + ACTIONS(8351), 1, + aux_sym__unquoted_with_expr_token1, STATE(4778), 1, sym_comment, - [128978] = 4, + STATE(4814), 1, + aux_sym__unquoted_with_expr_repeat1, + [129690] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - STATE(3346), 1, + STATE(4353), 1, sym_block, STATE(4779), 1, sym_comment, - [128991] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_RBRACE, - ACTIONS(1018), 1, - sym__entry_separator, - STATE(4780), 1, - sym_comment, - [129004] = 4, + [129703] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - STATE(4144), 1, + STATE(4354), 1, sym_block, + STATE(4780), 1, + sym_comment, + [129716] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4380), 1, + sym__entry_separator, + STATE(2133), 1, + aux_sym__types_body_repeat2, STATE(4781), 1, sym_comment, - [129017] = 4, - ACTIONS(3), 1, + [129729] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4156), 1, - sym_block, + ACTIONS(2570), 1, + sym__entry_separator, + ACTIONS(2572), 1, + anon_sym_RBRACE, STATE(4782), 1, sym_comment, - [129030] = 4, + [129742] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8339), 1, - sym_identifier, - ACTIONS(8341), 1, - anon_sym_DOLLAR, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(4355), 1, + sym_block, STATE(4783), 1, sym_comment, - [129043] = 4, + [129755] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8343), 1, - anon_sym_def, - ACTIONS(8345), 1, - anon_sym_extern, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(4356), 1, + sym_block, STATE(4784), 1, sym_comment, - [129056] = 4, + [129768] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, + ACTIONS(8353), 1, + anon_sym_RBRACE, + ACTIONS(8355), 1, sym__entry_separator, - STATE(2240), 1, - aux_sym__types_body_repeat2, STATE(4785), 1, sym_comment, - [129069] = 4, + [129781] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1726), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(1728), 1, + ACTIONS(2527), 1, sym__unquoted_pattern, STATE(4786), 1, sym_comment, - [129082] = 4, - ACTIONS(3), 1, + [129794] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LBRACE, - ACTIONS(2633), 1, - sym__unquoted_pattern, + ACTIONS(7699), 1, + anon_sym_RBRACE, + ACTIONS(7701), 1, + sym__entry_separator, STATE(4787), 1, sym_comment, - [129095] = 4, - ACTIONS(3), 1, + [129807] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, + ACTIONS(8357), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4736), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4788), 1, sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [129108] = 4, + [129820] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8347), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4650), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(8359), 1, + anon_sym_RBRACE, + ACTIONS(8361), 1, + sym__entry_separator, STATE(4789), 1, sym_comment, - [129121] = 4, + [129833] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(3901), 1, sym__entry_separator, - ACTIONS(2569), 1, + ACTIONS(8363), 1, anon_sym_RBRACE, STATE(4790), 1, sym_comment, - [129134] = 3, + [129846] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8349), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(7703), 1, + anon_sym_RBRACE, + ACTIONS(7705), 1, + sym__entry_separator, STATE(4791), 1, sym_comment, - [129144] = 3, - ACTIONS(3), 1, + [129859] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8351), 1, - anon_sym_DQUOTE, + ACTIONS(4958), 1, + sym__entry_separator, + STATE(2403), 1, + aux_sym__types_body_repeat2, STATE(4792), 1, sym_comment, - [129154] = 3, + [129872] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8353), 1, - anon_sym_SQUOTE2, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(1776), 1, + sym__unquoted_pattern, STATE(4793), 1, sym_comment, - [129164] = 3, - ACTIONS(3), 1, + [129885] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8355), 1, - anon_sym_BQUOTE2, + ACTIONS(4276), 1, + sym__entry_separator, + STATE(1972), 1, + aux_sym__types_body_repeat2, STATE(4794), 1, sym_comment, - [129174] = 3, - ACTIONS(3), 1, + [129898] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8357), 1, - anon_sym_LT, + ACTIONS(8366), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4736), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4795), 1, sym_comment, - [129184] = 3, - ACTIONS(3), 1, + [129911] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8359), 1, - anon_sym_RBRACE, + ACTIONS(8368), 1, + anon_sym_LPAREN2, + ACTIONS(8370), 1, + aux_sym__record_key_token1, STATE(4796), 1, sym_comment, - [129194] = 3, - ACTIONS(3), 1, + [129924] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8361), 1, - anon_sym_RBRACK, + ACTIONS(6144), 1, + sym__entry_separator, + ACTIONS(6146), 1, + anon_sym_GT2, STATE(4797), 1, sym_comment, - [129204] = 3, - ACTIONS(3), 1, + [129937] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8363), 1, - anon_sym_RPAREN, + ACTIONS(8372), 1, + sym__newline, + ACTIONS(8374), 1, + sym__space, STATE(4798), 1, sym_comment, - [129214] = 3, + [129950] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8365), 1, - anon_sym_RPAREN, + ACTIONS(8376), 1, + sym_identifier, + ACTIONS(8378), 1, + anon_sym_DOLLAR, STATE(4799), 1, sym_comment, - [129224] = 3, + [129963] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8367), 1, - anon_sym_DQUOTE, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(4365), 1, + sym_block, STATE(4800), 1, sym_comment, - [129234] = 3, + [129976] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8369), 1, - sym_raw_string_end, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(4369), 1, + sym_block, STATE(4801), 1, sym_comment, - [129244] = 3, - ACTIONS(103), 1, + [129989] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8371), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(6275), 1, + anon_sym_DOLLAR2, + ACTIONS(8380), 1, + anon_sym_RBRACK, STATE(4802), 1, sym_comment, - [129254] = 3, - ACTIONS(3), 1, + [130002] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8373), 1, - anon_sym_RBRACE, + ACTIONS(3476), 1, + sym__space, + STATE(1402), 1, + aux_sym_pipe_element_repeat1, STATE(4803), 1, sym_comment, - [129264] = 3, - ACTIONS(3), 1, + [130015] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8375), 1, - anon_sym_RPAREN, + ACTIONS(4706), 1, + sym__entry_separator, + STATE(2234), 1, + aux_sym__types_body_repeat2, STATE(4804), 1, sym_comment, - [129274] = 3, + [130028] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8377), 1, - sym_raw_string_end, + ACTIONS(2570), 1, + anon_sym_LBRACE, + ACTIONS(2576), 1, + sym__unquoted_pattern, STATE(4805), 1, sym_comment, - [129284] = 3, - ACTIONS(3), 1, + [130041] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(347), 1, - anon_sym_RPAREN2, + ACTIONS(6210), 1, + sym__entry_separator, + ACTIONS(6212), 1, + anon_sym_GT2, STATE(4806), 1, sym_comment, - [129294] = 3, - ACTIONS(3), 1, + [130054] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8379), 1, - anon_sym_GT2, + ACTIONS(8382), 1, + anon_sym_RBRACK, + ACTIONS(8384), 1, + sym__entry_separator, STATE(4807), 1, sym_comment, - [129304] = 3, + [130067] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8381), 1, - anon_sym_GT2, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(4512), 1, + sym_block, STATE(4808), 1, sym_comment, - [129314] = 3, - ACTIONS(3), 1, + [130080] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8383), 1, - anon_sym_RBRACK, + ACTIONS(1008), 1, + anon_sym_RBRACE, + ACTIONS(1030), 1, + sym__entry_separator, STATE(4809), 1, sym_comment, - [129324] = 3, + [130093] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(301), 1, - anon_sym_RBRACE, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(3192), 1, + sym_block, STATE(4810), 1, sym_comment, - [129334] = 3, - ACTIONS(3), 1, + [130106] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8385), 1, + ACTIONS(994), 1, + sym__entry_separator, + ACTIONS(996), 1, anon_sym_RBRACE, STATE(4811), 1, sym_comment, - [129344] = 3, + [130119] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8387), 1, - anon_sym_DQUOTE, + ACTIONS(6575), 1, + anon_sym_LPAREN2, STATE(4812), 1, sym_comment, - [129354] = 3, + STATE(4858), 1, + sym__expr_parenthesized_immediate, + [130132] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8389), 1, - anon_sym_SQUOTE2, + ACTIONS(1756), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8106), 1, + aux_sym__immediate_decimal_token5, STATE(4813), 1, sym_comment, - [129364] = 3, - ACTIONS(3), 1, + [130145] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8391), 1, - anon_sym_BQUOTE2, - STATE(4814), 1, + ACTIONS(8386), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4814), 2, sym_comment, - [129374] = 3, - ACTIONS(3), 1, + aux_sym__unquoted_with_expr_repeat1, + [130156] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8393), 1, - anon_sym_RBRACK, + ACTIONS(8389), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4788), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4815), 1, sym_comment, - [129384] = 3, - ACTIONS(3), 1, + [130169] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8395), 1, - anon_sym_RBRACE, + ACTIONS(8391), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4795), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4816), 1, sym_comment, - [129394] = 3, + [130182] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8397), 1, - anon_sym_RPAREN, + ACTIONS(1716), 1, + anon_sym_LBRACE, + ACTIONS(2596), 1, + sym__unquoted_pattern, STATE(4817), 1, sym_comment, - [129404] = 3, - ACTIONS(103), 1, + [130195] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8399), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(1814), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8393), 1, + aux_sym__immediate_decimal_token5, STATE(4818), 1, sym_comment, - [129414] = 3, - ACTIONS(3), 1, + [130208] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8401), 1, + ACTIONS(7582), 1, anon_sym_RBRACE, + ACTIONS(7584), 1, + sym__entry_separator, STATE(4819), 1, sym_comment, - [129424] = 3, + [130221] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8403), 1, - anon_sym_RBRACE, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(4432), 1, + sym_block, STATE(4820), 1, sym_comment, - [129434] = 3, - ACTIONS(3), 1, + [130234] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8405), 1, - anon_sym_DASH_GT, + ACTIONS(8395), 1, + anon_sym_RBRACK, + ACTIONS(8397), 1, + sym__entry_separator, STATE(4821), 1, sym_comment, - [129444] = 3, + [130247] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8407), 1, - sym_raw_string_end, + ACTIONS(1615), 1, + sym__unquoted_pattern, + ACTIONS(2011), 1, + anon_sym_LBRACE, STATE(4822), 1, sym_comment, - [129454] = 3, - ACTIONS(103), 1, + [130260] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8409), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(5126), 1, + anon_sym_LPAREN2, STATE(4823), 1, sym_comment, - [129464] = 3, - ACTIONS(3), 1, + STATE(4904), 1, + sym__expr_parenthesized_immediate, + [130273] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8411), 1, - anon_sym_DQUOTE, + ACTIONS(7510), 1, + anon_sym_RBRACK, + ACTIONS(7512), 1, + sym__entry_separator, STATE(4824), 1, sym_comment, - [129474] = 3, - ACTIONS(103), 1, + [130286] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8413), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(4444), 1, + sym_block, STATE(4825), 1, sym_comment, - [129484] = 3, + [130299] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8415), 1, - anon_sym_RBRACK, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(3426), 1, + sym_block, STATE(4826), 1, sym_comment, - [129494] = 3, + [130312] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8417), 1, - anon_sym_RPAREN, + ACTIONS(3851), 1, + anon_sym_LBRACE, + STATE(3390), 1, + sym_block, STATE(4827), 1, sym_comment, - [129504] = 3, + [130325] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8419), 1, - anon_sym_RBRACE, STATE(4828), 1, sym_comment, - [129514] = 3, - ACTIONS(3), 1, + ACTIONS(8399), 2, + anon_sym_RBRACK, + sym_hex_digit, + [130336] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8421), 1, - anon_sym_DQUOTE, + ACTIONS(4276), 1, + sym__entry_separator, + STATE(1970), 1, + aux_sym__types_body_repeat2, STATE(4829), 1, sym_comment, - [129524] = 3, + [130349] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8423), 1, - anon_sym_SQUOTE2, + ACTIONS(8401), 1, + anon_sym_def, + ACTIONS(8403), 1, + anon_sym_extern, STATE(4830), 1, sym_comment, - [129534] = 3, + [130362] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8425), 1, - anon_sym_BQUOTE2, + ACTIONS(8405), 1, + anon_sym_def, + ACTIONS(8407), 1, + anon_sym_extern, STATE(4831), 1, sym_comment, - [129544] = 3, + [130375] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8427), 1, - anon_sym_RPAREN, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(4636), 1, + sym_block, STATE(4832), 1, sym_comment, - [129554] = 3, - ACTIONS(103), 1, + [130388] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8331), 1, - aux_sym__record_key_token1, + ACTIONS(2031), 1, + sym__unquoted_pattern, + ACTIONS(2566), 1, + anon_sym_LBRACE, STATE(4833), 1, sym_comment, - [129564] = 3, - ACTIONS(3), 1, + [130401] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8429), 1, - anon_sym_SQUOTE2, + ACTIONS(8409), 1, + anon_sym_RBRACK, + ACTIONS(8411), 1, + sym__entry_separator, STATE(4834), 1, sym_comment, - [129574] = 3, + [130414] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8431), 1, - anon_sym_RPAREN, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(4640), 1, + sym_block, STATE(4835), 1, sym_comment, - [129584] = 3, - ACTIONS(3), 1, + [130427] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8433), 1, - anon_sym_EQ, + ACTIONS(8413), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4684), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(4836), 1, sym_comment, - [129594] = 3, - ACTIONS(3), 1, + [130440] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8435), 1, - sym_raw_string_end, + ACTIONS(8415), 1, + anon_sym_GT2, + ACTIONS(8417), 1, + sym__entry_separator, STATE(4837), 1, sym_comment, - [129604] = 3, - ACTIONS(3), 1, + [130453] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, + ACTIONS(2560), 1, + sym__entry_separator, + ACTIONS(2562), 1, + anon_sym_RBRACE, STATE(4838), 1, sym_comment, - [129614] = 3, + [130466] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8437), 1, - anon_sym_RPAREN, + ACTIONS(8419), 1, + anon_sym_RBRACK, STATE(4839), 1, sym_comment, - [129624] = 3, - ACTIONS(3), 1, + [130476] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8439), 1, - anon_sym_RBRACK, + ACTIONS(8421), 1, + aux_sym_cmd_identifier_token6, STATE(4840), 1, sym_comment, - [129634] = 3, - ACTIONS(103), 1, + [130486] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(8423), 1, + anon_sym_RPAREN, STATE(4841), 1, sym_comment, - [129644] = 3, + [130496] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8441), 1, - anon_sym_RBRACK, + ACTIONS(1691), 1, + sym__unquoted_pattern_in_record, STATE(4842), 1, sym_comment, - [129654] = 3, - ACTIONS(3), 1, + [130506] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8443), 1, - anon_sym_DQUOTE, + ACTIONS(8425), 1, + aux_sym_cmd_identifier_token6, STATE(4843), 1, sym_comment, - [129664] = 3, + [130516] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8445), 1, - anon_sym_SQUOTE2, + ACTIONS(8427), 1, + anon_sym_EQ, STATE(4844), 1, sym_comment, - [129674] = 3, + [130526] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8447), 1, - anon_sym_BQUOTE2, + ACTIONS(8429), 1, + sym_raw_string_end, STATE(4845), 1, sym_comment, - [129684] = 3, + [130536] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8449), 1, + ACTIONS(8431), 1, anon_sym_RPAREN, STATE(4846), 1, sym_comment, - [129694] = 3, + [130546] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8451), 1, - sym_raw_string_end, + ACTIONS(8433), 1, + anon_sym_RBRACE, STATE(4847), 1, sym_comment, - [129704] = 3, - ACTIONS(3), 1, + [130556] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8453), 1, - sym_identifier, + ACTIONS(8435), 1, + sym__space, STATE(4848), 1, sym_comment, - [129714] = 3, + [130566] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8455), 1, - anon_sym_DASH_GT, + ACTIONS(8437), 1, + anon_sym_RBRACK, STATE(4849), 1, sym_comment, - [129724] = 3, + [130576] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8457), 1, - sym_raw_string_end, + ACTIONS(8439), 1, + anon_sym_RBRACK, STATE(4850), 1, sym_comment, - [129734] = 3, + [130586] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5048), 1, - sym__unquoted_pattern, + ACTIONS(8441), 1, + anon_sym_RBRACE, STATE(4851), 1, sym_comment, - [129744] = 3, + [130596] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8459), 1, + ACTIONS(8443), 1, anon_sym_RBRACE, STATE(4852), 1, sym_comment, - [129754] = 3, + [130606] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, + ACTIONS(8445), 1, + anon_sym_RBRACE, STATE(4853), 1, sym_comment, - [129764] = 3, + [130616] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8461), 1, - anon_sym_RBRACK, + ACTIONS(8447), 1, + anon_sym_DQUOTE, STATE(4854), 1, sym_comment, - [129774] = 3, + [130626] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8463), 1, - anon_sym_DQUOTE, + ACTIONS(8449), 1, + anon_sym_SQUOTE2, STATE(4855), 1, sym_comment, - [129784] = 3, + [130636] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8465), 1, - anon_sym_SQUOTE2, + ACTIONS(8451), 1, + anon_sym_BQUOTE2, STATE(4856), 1, sym_comment, - [129794] = 3, + [130646] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8467), 1, - anon_sym_BQUOTE2, + ACTIONS(8453), 1, + anon_sym_RBRACE, STATE(4857), 1, sym_comment, - [129804] = 3, - ACTIONS(3), 1, + [130656] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8469), 1, - anon_sym_RBRACE, + ACTIONS(8455), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(4858), 1, sym_comment, - [129814] = 3, + [130666] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8471), 1, - anon_sym_RBRACE, + ACTIONS(8457), 1, + anon_sym_RBRACK, STATE(4859), 1, sym_comment, - [129824] = 3, + [130676] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8473), 1, - sym_raw_string_end, + ACTIONS(8459), 1, + anon_sym_RPAREN, STATE(4860), 1, sym_comment, - [129834] = 3, + [130686] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8461), 1, + anon_sym_RPAREN, STATE(4861), 1, sym_comment, - [129844] = 3, + [130696] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8475), 1, - sym_identifier, + ACTIONS(8463), 1, + anon_sym_GT2, STATE(4862), 1, sym_comment, - [129854] = 3, + [130706] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8477), 1, + ACTIONS(8465), 1, anon_sym_RBRACK, STATE(4863), 1, sym_comment, - [129864] = 3, - ACTIONS(3), 1, + [130716] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8479), 1, - anon_sym_DQUOTE, + ACTIONS(8467), 1, + aux_sym_cmd_identifier_token6, STATE(4864), 1, sym_comment, - [129874] = 3, + [130726] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8481), 1, - anon_sym_SQUOTE2, + ACTIONS(8469), 1, + sym_raw_string_end, STATE(4865), 1, sym_comment, - [129884] = 3, + [130736] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8483), 1, - anon_sym_BQUOTE2, + ACTIONS(361), 1, + anon_sym_RPAREN2, STATE(4866), 1, sym_comment, - [129894] = 3, + [130746] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, + ACTIONS(8471), 1, + anon_sym_GT2, STATE(4867), 1, sym_comment, - [129904] = 3, - ACTIONS(3), 1, + [130756] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8485), 1, - anon_sym_RPAREN, + ACTIONS(8473), 1, + aux_sym_cmd_identifier_token6, STATE(4868), 1, sym_comment, - [129914] = 3, + [130766] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8487), 1, - sym_raw_string_end, + ACTIONS(8475), 1, + anon_sym_RBRACK, STATE(4869), 1, sym_comment, - [129924] = 3, - ACTIONS(3), 1, + [130776] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8489), 1, - anon_sym_RBRACK, + ACTIONS(8477), 1, + aux_sym_cmd_identifier_token6, STATE(4870), 1, sym_comment, - [129934] = 3, + [130786] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8491), 1, - anon_sym_GT2, + ACTIONS(8479), 1, + anon_sym_EQ, STATE(4871), 1, sym_comment, - [129944] = 3, + [130796] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, + ACTIONS(8481), 1, + anon_sym_DQUOTE, STATE(4872), 1, sym_comment, - [129954] = 3, + [130806] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8493), 1, - anon_sym_DQUOTE, + ACTIONS(8483), 1, + anon_sym_SQUOTE2, STATE(4873), 1, sym_comment, - [129964] = 3, + [130816] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8495), 1, - anon_sym_SQUOTE2, + ACTIONS(8485), 1, + anon_sym_BQUOTE2, STATE(4874), 1, sym_comment, - [129974] = 3, + [130826] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8497), 1, - anon_sym_BQUOTE2, + ACTIONS(8487), 1, + anon_sym_RPAREN, STATE(4875), 1, sym_comment, - [129984] = 3, + [130836] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8499), 1, + ACTIONS(8489), 1, anon_sym_RPAREN, STATE(4876), 1, sym_comment, - [129994] = 3, - ACTIONS(103), 1, + [130846] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1876), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(8491), 1, + anon_sym_RPAREN, STATE(4877), 1, sym_comment, - [130004] = 3, + [130856] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8501), 1, - sym_raw_string_end, + ACTIONS(8493), 1, + anon_sym_EQ, STATE(4878), 1, sym_comment, - [130014] = 3, + [130866] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7841), 1, - anon_sym_LBRACE, + ACTIONS(8495), 1, + sym_raw_string_end, STATE(4879), 1, sym_comment, - [130024] = 3, - ACTIONS(3), 1, + [130876] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8503), 1, - anon_sym_DQUOTE, + ACTIONS(1852), 1, + aux_sym__unquoted_with_expr_token1, STATE(4880), 1, sym_comment, - [130034] = 3, + [130886] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8505), 1, - anon_sym_SQUOTE2, + ACTIONS(8497), 1, + anon_sym_RBRACE, STATE(4881), 1, sym_comment, - [130044] = 3, + [130896] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8507), 1, - anon_sym_BQUOTE2, + ACTIONS(353), 1, + anon_sym_RPAREN2, STATE(4882), 1, sym_comment, - [130054] = 3, + [130906] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8509), 1, - sym_raw_string_end, + ACTIONS(8499), 1, + anon_sym_RBRACK, STATE(4883), 1, sym_comment, - [130064] = 3, + [130916] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, + ACTIONS(8501), 1, + anon_sym_DASH_GT, STATE(4884), 1, sym_comment, - [130074] = 3, - ACTIONS(3), 1, + [130926] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8511), 1, - sym_raw_string_end, + ACTIONS(8503), 1, + aux_sym_cmd_identifier_token2, STATE(4885), 1, sym_comment, - [130084] = 3, + [130936] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8513), 1, - anon_sym_RBRACK, + ACTIONS(8505), 1, + anon_sym_DQUOTE, STATE(4886), 1, sym_comment, - [130094] = 3, + [130946] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8515), 1, - anon_sym_DQUOTE, + ACTIONS(8507), 1, + anon_sym_SQUOTE2, STATE(4887), 1, sym_comment, - [130104] = 3, + [130956] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8517), 1, - anon_sym_SQUOTE2, + ACTIONS(8509), 1, + anon_sym_BQUOTE2, STATE(4888), 1, sym_comment, - [130114] = 3, + [130966] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8519), 1, - anon_sym_BQUOTE2, + ACTIONS(8511), 1, + anon_sym_RPAREN, STATE(4889), 1, sym_comment, - [130124] = 3, - ACTIONS(3), 1, + [130976] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8521), 1, - anon_sym_SQUOTE2, + ACTIONS(8513), 1, + aux_sym__str_back_ticks_token1, STATE(4890), 1, sym_comment, - [130134] = 3, + [130986] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8523), 1, - anon_sym_RPAREN, + ACTIONS(7807), 1, + anon_sym_EQ_GT, STATE(4891), 1, sym_comment, - [130144] = 3, - ACTIONS(3), 1, + [130996] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8525), 1, - sym_raw_string_end, + ACTIONS(1852), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4892), 1, sym_comment, - [130154] = 3, + [131006] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8527), 1, - anon_sym_RPAREN, + ACTIONS(8515), 1, + sym_raw_string_end, STATE(4893), 1, sym_comment, - [130164] = 3, + [131016] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8529), 1, - anon_sym_DQUOTE, + ACTIONS(8517), 1, + anon_sym_RBRACK, STATE(4894), 1, sym_comment, - [130174] = 3, + [131026] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8531), 1, - anon_sym_SQUOTE2, + ACTIONS(5276), 1, + anon_sym_EQ2, STATE(4895), 1, sym_comment, - [130184] = 3, + [131036] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8533), 1, - anon_sym_BQUOTE2, + ACTIONS(2527), 1, + sym__unquoted_pattern_in_record, STATE(4896), 1, sym_comment, - [130194] = 3, + [131046] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8535), 1, - anon_sym_GT2, + ACTIONS(2596), 1, + sym__unquoted_pattern_in_record, STATE(4897), 1, sym_comment, - [130204] = 3, + [131056] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(297), 1, - anon_sym_RBRACE, + ACTIONS(8519), 1, + anon_sym_DQUOTE, STATE(4898), 1, sym_comment, - [130214] = 3, + [131066] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8537), 1, - sym_raw_string_end, + ACTIONS(8521), 1, + anon_sym_SQUOTE2, STATE(4899), 1, sym_comment, - [130224] = 3, + [131076] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(309), 1, - anon_sym_RBRACE, + ACTIONS(8523), 1, + anon_sym_BQUOTE2, STATE(4900), 1, sym_comment, - [130234] = 3, + [131086] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8539), 1, - anon_sym_DQUOTE, + ACTIONS(8525), 1, + anon_sym_RBRACE, STATE(4901), 1, sym_comment, - [130244] = 3, + [131096] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8541), 1, - anon_sym_SQUOTE2, + ACTIONS(2527), 1, + sym__unquoted_pattern, STATE(4902), 1, sym_comment, - [130254] = 3, + [131106] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8543), 1, - anon_sym_BQUOTE2, + ACTIONS(8527), 1, + sym_raw_string_end, STATE(4903), 1, sym_comment, - [130264] = 3, - ACTIONS(3), 1, + [131116] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8545), 1, - anon_sym_RBRACE, + ACTIONS(8529), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4904), 1, sym_comment, - [130274] = 3, + [131126] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1876), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(8531), 1, + aux_sym_cmd_identifier_token6, STATE(4905), 1, sym_comment, - [130284] = 3, + [131136] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8547), 1, - sym_raw_string_end, + ACTIONS(8533), 1, + anon_sym_RPAREN, STATE(4906), 1, sym_comment, - [130294] = 3, + [131146] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8549), 1, - anon_sym_RBRACE, + ACTIONS(8535), 1, + anon_sym_BQUOTE2, STATE(4907), 1, sym_comment, - [130304] = 3, + [131156] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8551), 1, + ACTIONS(8537), 1, anon_sym_DQUOTE, STATE(4908), 1, sym_comment, - [130314] = 3, + [131166] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8553), 1, + ACTIONS(8539), 1, anon_sym_SQUOTE2, STATE(4909), 1, sym_comment, - [130324] = 3, + [131176] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8555), 1, + ACTIONS(8541), 1, anon_sym_BQUOTE2, STATE(4910), 1, sym_comment, - [130334] = 3, + [131186] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8557), 1, - anon_sym_RBRACK, + ACTIONS(8543), 1, + sym_raw_string_end, STATE(4911), 1, sym_comment, - [130344] = 3, + [131196] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8559), 1, - sym_raw_string_end, + ACTIONS(8545), 1, + anon_sym_RPAREN, STATE(4912), 1, sym_comment, - [130354] = 3, + [131206] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8561), 1, - anon_sym_DQUOTE, + ACTIONS(8547), 1, + sym_raw_string_end, STATE(4913), 1, sym_comment, - [130364] = 3, + [131216] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8563), 1, - anon_sym_SQUOTE2, + ACTIONS(8549), 1, + sym_raw_string_end, STATE(4914), 1, sym_comment, - [130374] = 3, + [131226] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8565), 1, - anon_sym_BQUOTE2, + ACTIONS(7409), 1, + sym__unquoted_pattern, STATE(4915), 1, sym_comment, - [130384] = 3, + [131236] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8567), 1, - sym_raw_string_content, + ACTIONS(8551), 1, + anon_sym_DASH_GT, STATE(4916), 1, sym_comment, - [130394] = 3, + [131246] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7770), 1, - anon_sym_EQ_GT, + ACTIONS(8553), 1, + anon_sym_LPAREN2, STATE(4917), 1, sym_comment, - [130404] = 3, + [131256] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7342), 1, - sym__unquoted_pattern, + ACTIONS(8555), 1, + anon_sym_DQUOTE, STATE(4918), 1, sym_comment, - [130414] = 3, + [131266] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8569), 1, - anon_sym_RBRACE, + ACTIONS(8557), 1, + anon_sym_SQUOTE2, STATE(4919), 1, sym_comment, - [130424] = 3, + [131276] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2132), 1, - anon_sym_LBRACK2, + ACTIONS(8559), 1, + anon_sym_BQUOTE2, STATE(4920), 1, sym_comment, - [130434] = 3, + [131286] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8571), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(8561), 1, + aux_sym_cmd_identifier_token2, STATE(4921), 1, sym_comment, - [130444] = 3, - ACTIONS(103), 1, + [131296] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8573), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(8563), 1, + anon_sym_EQ, STATE(4922), 1, sym_comment, - [130454] = 3, - ACTIONS(103), 1, + [131306] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8575), 1, - aux_sym_shebang_token1, + ACTIONS(8565), 1, + sym_raw_string_end, STATE(4923), 1, sym_comment, - [130464] = 3, + [131316] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8577), 1, - anon_sym_in, + ACTIONS(5072), 1, + sym__unquoted_pattern, STATE(4924), 1, sym_comment, - [130474] = 3, + [131326] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8579), 1, - anon_sym_GT2, + ACTIONS(8567), 1, + anon_sym_DQUOTE, STATE(4925), 1, sym_comment, - [130484] = 3, + [131336] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8581), 1, - anon_sym_RBRACK, + ACTIONS(8569), 1, + anon_sym_SQUOTE2, STATE(4926), 1, sym_comment, - [130494] = 3, + [131346] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8571), 1, + anon_sym_BQUOTE2, STATE(4927), 1, sym_comment, - [130504] = 3, + [131356] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8573), 1, + sym_identifier, STATE(4928), 1, sym_comment, - [130514] = 3, + [131366] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8583), 1, - anon_sym_RBRACE, + ACTIONS(8575), 1, + anon_sym_RBRACK, STATE(4929), 1, sym_comment, - [130524] = 3, + [131376] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8585), 1, - anon_sym_PIPE, + ACTIONS(8577), 1, + sym_raw_string_end, STATE(4930), 1, sym_comment, - [130534] = 3, + [131386] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7867), 1, - anon_sym_LBRACE, + ACTIONS(8579), 1, + anon_sym_RBRACE, STATE(4931), 1, sym_comment, - [130544] = 3, + [131396] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8587), 1, - anon_sym_LBRACE, + ACTIONS(8581), 1, + anon_sym_DQUOTE, STATE(4932), 1, sym_comment, - [130554] = 3, + [131406] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8589), 1, - anon_sym_GT2, + ACTIONS(8583), 1, + anon_sym_SQUOTE2, STATE(4933), 1, sym_comment, - [130564] = 3, + [131416] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8591), 1, - anon_sym_RBRACK, + ACTIONS(8585), 1, + anon_sym_BQUOTE2, STATE(4934), 1, sym_comment, - [130574] = 3, - ACTIONS(3), 1, + [131426] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5241), 1, - anon_sym_EQ2, + ACTIONS(8587), 1, + aux_sym_comment_token1, STATE(4935), 1, sym_comment, - [130584] = 3, - ACTIONS(103), 1, + [131436] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(8589), 1, + sym_raw_string_end, STATE(4936), 1, sym_comment, - [130594] = 3, - ACTIONS(3), 1, + [131446] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1708), 1, - anon_sym_COLON2, + ACTIONS(1878), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4937), 1, sym_comment, - [130604] = 3, + [131456] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8593), 1, - anon_sym_RPAREN, + ACTIONS(8591), 1, + anon_sym_DQUOTE, STATE(4938), 1, sym_comment, - [130614] = 3, + [131466] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8595), 1, - anon_sym_DQUOTE, + ACTIONS(8593), 1, + anon_sym_SQUOTE2, STATE(4939), 1, sym_comment, - [130624] = 3, + [131476] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8597), 1, - anon_sym_SQUOTE2, + ACTIONS(8595), 1, + anon_sym_BQUOTE2, STATE(4940), 1, sym_comment, - [130634] = 3, + [131486] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8599), 1, - anon_sym_RBRACE, + ACTIONS(8597), 1, + anon_sym_LBRACE, STATE(4941), 1, sym_comment, - [130644] = 3, + [131496] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8601), 1, - anon_sym_RPAREN2, + ACTIONS(8599), 1, + anon_sym_RBRACK, STATE(4942), 1, sym_comment, - [130654] = 3, - ACTIONS(103), 1, + [131506] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8603), 1, - sym__space, + ACTIONS(8601), 1, + sym_raw_string_end, STATE(4943), 1, sym_comment, - [130664] = 3, + [131516] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8605), 1, - anon_sym_RBRACK, + ACTIONS(2740), 1, + anon_sym_COLON2, STATE(4944), 1, sym_comment, - [130674] = 3, + [131526] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8607), 1, - anon_sym_BQUOTE2, + ACTIONS(8603), 1, + anon_sym_DQUOTE, STATE(4945), 1, sym_comment, - [130684] = 3, + [131536] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6902), 1, - sym__unquoted_pattern, + ACTIONS(8605), 1, + anon_sym_SQUOTE2, STATE(4946), 1, sym_comment, - [130694] = 3, + [131546] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8609), 1, - anon_sym_RBRACE, + ACTIONS(8607), 1, + anon_sym_BQUOTE2, STATE(4947), 1, sym_comment, - [130704] = 3, - ACTIONS(103), 1, + [131556] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1876), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(8609), 1, + anon_sym_RBRACK, STATE(4948), 1, sym_comment, - [130714] = 3, + [131566] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8611), 1, - anon_sym_RBRACK, + ACTIONS(6953), 1, + sym__unquoted_pattern, STATE(4949), 1, sym_comment, - [130724] = 3, + [131576] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8613), 1, - anon_sym_EQ, + ACTIONS(8611), 1, + sym_raw_string_end, STATE(4950), 1, sym_comment, - [130734] = 3, + [131586] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8615), 1, - sym__table_head_separator, + ACTIONS(8613), 1, + anon_sym_GT2, STATE(4951), 1, sym_comment, - [130744] = 3, - ACTIONS(103), 1, + [131596] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8617), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8615), 1, + anon_sym_DQUOTE, STATE(4952), 1, sym_comment, - [130754] = 3, + [131606] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8619), 1, - anon_sym_GT2, + ACTIONS(8617), 1, + anon_sym_SQUOTE2, STATE(4953), 1, sym_comment, - [130764] = 3, + [131616] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8621), 1, - sym_attribute_identifier, + ACTIONS(8619), 1, + anon_sym_BQUOTE2, STATE(4954), 1, sym_comment, - [130774] = 3, + [131626] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8623), 1, - anon_sym_RBRACK, + ACTIONS(8621), 1, + anon_sym_RBRACE, STATE(4955), 1, sym_comment, - [130784] = 3, + [131636] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8625), 1, - anon_sym_BQUOTE2, + ACTIONS(8623), 1, + sym_raw_string_end, STATE(4956), 1, sym_comment, - [130794] = 3, + [131646] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8627), 1, - sym__table_head_separator, + ACTIONS(8625), 1, + anon_sym_GT2, STATE(4957), 1, sym_comment, - [130804] = 3, + [131656] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8629), 1, - anon_sym_RBRACE, + ACTIONS(8627), 1, + anon_sym_DQUOTE, STATE(4958), 1, sym_comment, - [130814] = 3, + [131666] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8631), 1, - anon_sym_EQ, + ACTIONS(8629), 1, + anon_sym_SQUOTE2, STATE(4959), 1, sym_comment, - [130824] = 3, + [131676] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8633), 1, - anon_sym_EQ, + ACTIONS(8631), 1, + anon_sym_BQUOTE2, STATE(4960), 1, sym_comment, - [130834] = 3, + [131686] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8635), 1, - anon_sym_RBRACE, + ACTIONS(8633), 1, + anon_sym_GT2, STATE(4961), 1, sym_comment, - [130844] = 3, - ACTIONS(103), 1, + [131696] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8637), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8635), 1, + sym_raw_string_end, STATE(4962), 1, sym_comment, - [130854] = 3, + [131706] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__table_head_separator, + ACTIONS(8637), 1, + anon_sym_RPAREN, STATE(4963), 1, sym_comment, - [130864] = 3, + [131716] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8639), 1, - anon_sym_RBRACE, + anon_sym_DQUOTE, STATE(4964), 1, sym_comment, - [130874] = 3, + [131726] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8641), 1, - anon_sym_LBRACE, + anon_sym_SQUOTE2, STATE(4965), 1, sym_comment, - [130884] = 3, - ACTIONS(103), 1, + [131736] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8643), 1, - aux_sym__unquoted_in_list_with_expr_token1, + anon_sym_BQUOTE2, STATE(4966), 1, sym_comment, - [130894] = 3, + [131746] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8645), 1, - anon_sym_EQ, + anon_sym_RBRACK, STATE(4967), 1, sym_comment, - [130904] = 3, + [131756] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8647), 1, - anon_sym_RPAREN, + sym_raw_string_content, STATE(4968), 1, sym_comment, - [130914] = 3, + [131766] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5287), 1, - anon_sym_EQ2, + ACTIONS(8384), 1, + anon_sym_LBRACE, STATE(4969), 1, sym_comment, - [130924] = 3, - ACTIONS(103), 1, + [131776] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8649), 1, - aux_sym_cmd_identifier_token6, + anon_sym_GT2, STATE(4970), 1, sym_comment, - [130934] = 3, - ACTIONS(3), 1, + [131786] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2666), 1, - anon_sym_COLON2, + ACTIONS(8651), 1, + aux_sym_shebang_token1, STATE(4971), 1, sym_comment, - [130944] = 3, + [131796] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8327), 1, - anon_sym_LBRACE, + ACTIONS(2094), 1, + anon_sym_LBRACK2, STATE(4972), 1, sym_comment, - [130954] = 3, + [131806] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8651), 1, + ACTIONS(8653), 1, aux_sym__str_single_quotes_token1, STATE(4973), 1, sym_comment, - [130964] = 3, - ACTIONS(3), 1, + [131816] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8653), 1, - anon_sym_RBRACE, + ACTIONS(8655), 1, + aux_sym__str_back_ticks_token1, STATE(4974), 1, sym_comment, - [130974] = 3, + [131826] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8655), 1, - anon_sym_RBRACK, + ACTIONS(307), 1, + anon_sym_RBRACE, STATE(4975), 1, sym_comment, - [130984] = 3, + [131836] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8657), 1, anon_sym_RBRACE, STATE(4976), 1, sym_comment, - [130994] = 3, - ACTIONS(103), 1, + [131846] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8659), 1, - aux_sym_comment_token1, + ACTIONS(2582), 1, + sym__table_head_separator, STATE(4977), 1, sym_comment, - [131004] = 3, + [131856] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8661), 1, + ACTIONS(2738), 1, aux_sym_cmd_identifier_token2, STATE(4978), 1, sym_comment, - [131014] = 3, - ACTIONS(103), 1, + [131866] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8663), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8659), 1, + anon_sym_RBRACE, STATE(4979), 1, sym_comment, - [131024] = 3, + [131876] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8665), 1, - anon_sym_RBRACK, + ACTIONS(8661), 1, + sym_attribute_identifier, STATE(4980), 1, sym_comment, - [131034] = 3, - ACTIONS(103), 1, + [131886] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8667), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(8663), 1, + anon_sym_RBRACE, STATE(4981), 1, sym_comment, - [131044] = 3, + [131896] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8669), 1, - anon_sym_RPAREN, + ACTIONS(7958), 1, + anon_sym_LBRACE, STATE(4982), 1, sym_comment, - [131054] = 3, + [131906] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8671), 1, - anon_sym_RPAREN, + ACTIONS(8665), 1, + anon_sym_LBRACE, STATE(4983), 1, sym_comment, - [131064] = 3, + [131916] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(351), 1, - anon_sym_RPAREN2, + ACTIONS(8667), 1, + anon_sym_GT2, STATE(4984), 1, sym_comment, - [131074] = 3, + [131926] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2920), 1, - anon_sym_LBRACK2, + ACTIONS(8669), 1, + anon_sym_RBRACK, STATE(4985), 1, sym_comment, - [131084] = 3, + [131936] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8673), 1, - anon_sym_LBRACE, + ACTIONS(8671), 1, + anon_sym_EQ, STATE(4986), 1, sym_comment, - [131094] = 3, + [131946] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5221), 1, - anon_sym_EQ2, + ACTIONS(8673), 1, + anon_sym_DQUOTE, STATE(4987), 1, sym_comment, - [131104] = 3, + [131956] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8675), 1, - sym_raw_string_end, + anon_sym_RBRACK, STATE(4988), 1, sym_comment, - [131114] = 3, + [131966] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern, + ACTIONS(8677), 1, + anon_sym_RPAREN, STATE(4989), 1, sym_comment, - [131124] = 3, + [131976] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8677), 1, - sym_raw_string_end, + ACTIONS(8679), 1, + anon_sym_LBRACE, STATE(4990), 1, sym_comment, - [131134] = 3, - ACTIONS(103), 1, + [131986] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8679), 1, - aux_sym_shebang_token1, + ACTIONS(8681), 1, + anon_sym_SQUOTE2, STATE(4991), 1, sym_comment, - [131144] = 3, + [131996] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4969), 1, - sym__unquoted_pattern, + ACTIONS(8683), 1, + anon_sym_RBRACE, STATE(4992), 1, sym_comment, - [131154] = 3, + [132006] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8681), 1, - anon_sym_RBRACK, + ACTIONS(2576), 1, + sym__unquoted_pattern, STATE(4993), 1, sym_comment, - [131164] = 3, - ACTIONS(3), 1, + [132016] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(303), 1, - anon_sym_RBRACE, + ACTIONS(8685), 1, + sym__space, STATE(4994), 1, sym_comment, - [131174] = 3, + [132026] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8683), 1, - anon_sym_RBRACE, + ACTIONS(8687), 1, + anon_sym_BQUOTE2, STATE(4995), 1, sym_comment, - [131184] = 3, + [132036] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, + ACTIONS(8689), 1, + anon_sym_RPAREN, STATE(4996), 1, sym_comment, - [131194] = 3, + [132046] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8691), 1, + sym_raw_string_end, STATE(4997), 1, sym_comment, - [131204] = 3, + [132056] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8685), 1, - sym_raw_string_content, + ACTIONS(8693), 1, + anon_sym_DQUOTE, STATE(4998), 1, sym_comment, - [131214] = 3, + [132066] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8695), 1, + aux_sym_cmd_identifier_token6, + STATE(4999), 1, + sym_comment, + [132076] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8697), 1, + anon_sym_RBRACE, + STATE(5000), 1, + sym_comment, + [132086] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8699), 1, + anon_sym_RBRACK, + STATE(5001), 1, + sym_comment, + [132096] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8701), 1, + anon_sym_EQ, + STATE(5002), 1, + sym_comment, + [132106] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8703), 1, + sym_identifier, + STATE(5003), 1, + sym_comment, + [132116] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2508), 1, + sym__unquoted_pattern_in_record, + STATE(5004), 1, + sym_comment, + [132126] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8705), 1, + ts_builtin_sym_end, + STATE(5005), 1, + sym_comment, + [132136] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8707), 1, + anon_sym_RBRACK, + STATE(5006), 1, + sym_comment, + [132146] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8709), 1, + anon_sym_RBRACE, + STATE(5007), 1, + sym_comment, + [132156] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1852), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5008), 1, + sym_comment, + [132166] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8711), 1, + anon_sym_RBRACK, + STATE(5009), 1, + sym_comment, + [132176] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8713), 1, + anon_sym_RBRACE, + STATE(5010), 1, + sym_comment, + [132186] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8715), 1, + anon_sym_RPAREN, + STATE(5011), 1, + sym_comment, + [132196] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8717), 1, + anon_sym_EQ, + STATE(5012), 1, + sym_comment, + [132206] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8719), 1, + anon_sym_EQ, + STATE(5013), 1, + sym_comment, + [132216] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8721), 1, + anon_sym_RBRACE, + STATE(5014), 1, + sym_comment, + [132226] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8723), 1, + sym_identifier, + STATE(5015), 1, + sym_comment, + [132236] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8725), 1, + anon_sym_RBRACK, + STATE(5016), 1, + sym_comment, + [132246] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8727), 1, + anon_sym_RPAREN, + STATE(5017), 1, + sym_comment, + [132256] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8729), 1, + anon_sym_RBRACK, + STATE(5018), 1, + sym_comment, + [132266] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8731), 1, + sym_identifier, + STATE(5019), 1, + sym_comment, + [132276] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8733), 1, + anon_sym_EQ_GT, + STATE(5020), 1, + sym_comment, + [132286] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8735), 1, + aux_sym_cmd_identifier_token6, + STATE(5021), 1, + sym_comment, + [132296] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8737), 1, + aux_sym_cmd_identifier_token6, + STATE(5022), 1, + sym_comment, + [132306] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8739), 1, + anon_sym_RBRACK, + STATE(5023), 1, + sym_comment, + [132316] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8741), 1, + anon_sym_RBRACE, + STATE(5024), 1, + sym_comment, + [132326] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8743), 1, + anon_sym_RPAREN, + STATE(5025), 1, + sym_comment, + [132336] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8745), 1, + aux_sym_cmd_identifier_token2, + STATE(5026), 1, + sym_comment, + [132346] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2596), 1, + sym__unquoted_pattern, + STATE(5027), 1, + sym_comment, + [132356] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8747), 1, + anon_sym_RPAREN, + STATE(5028), 1, + sym_comment, + [132366] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8749), 1, + aux_sym_shebang_token1, + STATE(5029), 1, + sym_comment, + [132376] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(313), 1, + anon_sym_RBRACE, + STATE(5030), 1, + sym_comment, + [132386] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8751), 1, + anon_sym_RBRACK, + STATE(5031), 1, + sym_comment, + [132396] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2031), 1, + sym__unquoted_pattern_in_record, + STATE(5032), 1, + sym_comment, + [132406] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8753), 1, + anon_sym_GT2, + STATE(5033), 1, + sym_comment, + [132416] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2952), 1, + anon_sym_LBRACK2, + STATE(5034), 1, + sym_comment, + [132426] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8755), 1, + anon_sym_EQ, + STATE(5035), 1, + sym_comment, + [132436] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8757), 1, + anon_sym_LBRACE, + STATE(5036), 1, + sym_comment, + [132446] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8759), 1, + anon_sym_RBRACE, + STATE(5037), 1, + sym_comment, + [132456] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8761), 1, + sym_raw_string_end, + STATE(5038), 1, + sym_comment, + [132466] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8763), 1, + anon_sym_EQ, + STATE(5039), 1, + sym_comment, + [132476] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8765), 1, + anon_sym_PIPE, + STATE(5040), 1, + sym_comment, + [132486] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5017), 1, + sym__unquoted_pattern, + STATE(5041), 1, + sym_comment, + [132496] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5257), 1, - anon_sym_EQ2, - STATE(4999), 1, + ACTIONS(8767), 1, + anon_sym_EQ_GT, + STATE(5042), 1, sym_comment, - [131224] = 3, + [132506] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8687), 1, - sym_identifier, - STATE(5000), 1, - sym_comment, - [131234] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8689), 1, - aux_sym_cmd_identifier_token2, - STATE(5001), 1, + ACTIONS(8769), 1, + sym_raw_string_content, + STATE(5043), 1, sym_comment, - [131244] = 3, + [132516] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8691), 1, - anon_sym_EQ, - STATE(5002), 1, + ACTIONS(8771), 1, + anon_sym_SQUOTE2, + STATE(5044), 1, sym_comment, - [131254] = 3, + [132526] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8693), 1, - anon_sym_RBRACK, - STATE(5003), 1, + ACTIONS(8773), 1, + anon_sym_RPAREN, + STATE(5045), 1, sym_comment, - [131264] = 3, + [132536] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8695), 1, - anon_sym_GT2, - STATE(5004), 1, + ACTIONS(8775), 1, + anon_sym_RBRACK, + STATE(5046), 1, sym_comment, - [131274] = 3, + [132546] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8697), 1, - sym_identifier, - STATE(5005), 1, + ACTIONS(8777), 1, + anon_sym_RBRACE, + STATE(5047), 1, sym_comment, - [131284] = 3, + [132556] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8699), 1, + ACTIONS(8779), 1, anon_sym_RPAREN, - STATE(5006), 1, + STATE(5048), 1, sym_comment, - [131294] = 3, + [132566] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8701), 1, - anon_sym_LBRACE, - STATE(5007), 1, + ACTIONS(8781), 1, + anon_sym_EQ, + STATE(5049), 1, sym_comment, - [131304] = 3, + [132576] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8703), 1, + ACTIONS(311), 1, anon_sym_RBRACE, - STATE(5008), 1, + STATE(5050), 1, sym_comment, - [131314] = 3, + [132586] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - STATE(5009), 1, + ACTIONS(8783), 1, + aux_sym_cmd_identifier_token6, + STATE(5051), 1, sym_comment, - [131324] = 3, + [132596] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8705), 1, - anon_sym_RBRACK, - STATE(5010), 1, + ACTIONS(5253), 1, + anon_sym_EQ2, + STATE(5052), 1, sym_comment, - [131334] = 3, + [132606] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(289), 1, - anon_sym_RBRACE, - STATE(5011), 1, + ACTIONS(8785), 1, + anon_sym_GT2, + STATE(5053), 1, sym_comment, - [131344] = 3, + [132616] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8707), 1, - anon_sym_RBRACE, - STATE(5012), 1, + ACTIONS(8787), 1, + anon_sym_RBRACK, + STATE(5054), 1, sym_comment, - [131354] = 3, + [132626] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8709), 1, - anon_sym_RBRACE, - STATE(5013), 1, + ACTIONS(8789), 1, + anon_sym_GT2, + STATE(5055), 1, sym_comment, - [131364] = 3, + [132636] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8711), 1, - anon_sym_RBRACK, - STATE(5014), 1, + ACTIONS(8791), 1, + sym__table_head_separator, + STATE(5056), 1, sym_comment, - [131374] = 3, + [132646] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8713), 1, - anon_sym_RBRACE, - STATE(5015), 1, + ACTIONS(8793), 1, + sym_identifier, + STATE(5057), 1, sym_comment, - [131384] = 3, + [132656] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8715), 1, - anon_sym_RBRACE, - STATE(5016), 1, + ACTIONS(8795), 1, + anon_sym_GT2, + STATE(5058), 1, sym_comment, - [131394] = 3, + [132666] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8717), 1, - ts_builtin_sym_end, - STATE(5017), 1, + ACTIONS(8797), 1, + anon_sym_EQ, + STATE(5059), 1, sym_comment, - [131404] = 3, + [132676] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8719), 1, - anon_sym_RBRACK, - STATE(5018), 1, + ACTIONS(8799), 1, + anon_sym_RBRACE, + STATE(5060), 1, sym_comment, - [131414] = 3, + [132686] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8721), 1, - anon_sym_GT2, - STATE(5019), 1, + ACTIONS(1615), 1, + sym__unquoted_pattern, + STATE(5061), 1, sym_comment, - [131424] = 3, + [132696] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8723), 1, - sym_raw_string_end, - STATE(5020), 1, + ACTIONS(1776), 1, + sym__unquoted_pattern, + STATE(5062), 1, sym_comment, - [131434] = 3, + [132706] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(5021), 1, + ACTIONS(8801), 1, + anon_sym_RBRACK, + STATE(5063), 1, sym_comment, - [131444] = 3, + [132716] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8725), 1, + ACTIONS(8803), 1, anon_sym_DQUOTE, - STATE(5022), 1, + STATE(5064), 1, sym_comment, - [131454] = 3, + [132726] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8727), 1, - anon_sym_EQ, - STATE(5023), 1, + ACTIONS(1615), 1, + sym__unquoted_pattern_in_record, + STATE(5065), 1, sym_comment, - [131464] = 3, - ACTIONS(103), 1, + [132736] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8729), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5024), 1, + ACTIONS(8805), 1, + anon_sym_SQUOTE2, + STATE(5066), 1, sym_comment, - [131474] = 3, + [132746] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8731), 1, - anon_sym_GT2, - STATE(5025), 1, + ACTIONS(8807), 1, + anon_sym_BQUOTE2, + STATE(5067), 1, sym_comment, - [131484] = 3, + [132756] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_EQ2, - STATE(5026), 1, + ACTIONS(8809), 1, + sym_long_flag_identifier, + STATE(5068), 1, sym_comment, - [131494] = 3, + [132766] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8733), 1, - anon_sym_GT2, - STATE(5027), 1, + ACTIONS(8811), 1, + anon_sym_RBRACE, + STATE(5069), 1, sym_comment, - [131504] = 3, + [132776] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8735), 1, - anon_sym_SQUOTE2, - STATE(5028), 1, + ACTIONS(8813), 1, + anon_sym_LBRACE, + STATE(5070), 1, sym_comment, - [131514] = 3, + [132786] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8737), 1, - sym_raw_string_end, - STATE(5029), 1, + ACTIONS(357), 1, + anon_sym_RPAREN2, + STATE(5071), 1, sym_comment, - [131524] = 3, - ACTIONS(3), 1, + [132796] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8739), 1, - anon_sym_EQ_GT, - STATE(5030), 1, + ACTIONS(8815), 1, + aux_sym_cmd_identifier_token6, + STATE(5072), 1, sym_comment, - [131534] = 3, + [132806] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8741), 1, - anon_sym_BQUOTE2, - STATE(5031), 1, + ACTIONS(8817), 1, + anon_sym_RBRACE, + STATE(5073), 1, sym_comment, - [131544] = 3, + [132816] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7264), 1, - sym__unquoted_pattern, - STATE(5032), 1, + ACTIONS(8819), 1, + anon_sym_RBRACK, + STATE(5074), 1, sym_comment, - [131554] = 3, + [132826] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8743), 1, - anon_sym_EQ, - STATE(5033), 1, + ACTIONS(8821), 1, + anon_sym_RBRACK, + STATE(5075), 1, sym_comment, - [131564] = 3, + [132836] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8745), 1, - anon_sym_RPAREN, - STATE(5034), 1, + ACTIONS(2558), 1, + sym__unquoted_pattern, + STATE(5076), 1, sym_comment, - [131574] = 3, - ACTIONS(3), 1, + [132846] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8747), 1, - anon_sym_LPAREN2, - STATE(5035), 1, + ACTIONS(8370), 1, + aux_sym__record_key_token1, + STATE(5077), 1, sym_comment, - [131584] = 3, + [132856] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8749), 1, - anon_sym_EQ, - STATE(5036), 1, + ACTIONS(2558), 1, + sym__unquoted_pattern_in_record, + STATE(5078), 1, sym_comment, - [131594] = 3, + [132866] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8751), 1, - anon_sym_BQUOTE2, - STATE(5037), 1, + ACTIONS(8823), 1, + anon_sym_RBRACE, + STATE(5079), 1, sym_comment, - [131604] = 3, + [132876] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(5038), 1, + ACTIONS(8825), 1, + anon_sym_RBRACE, + STATE(5080), 1, sym_comment, - [131614] = 3, + [132886] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8753), 1, - sym_identifier, - STATE(5039), 1, + ACTIONS(8827), 1, + ts_builtin_sym_end, + STATE(5081), 1, sym_comment, - [131624] = 3, + [132896] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8755), 1, - anon_sym_RBRACK, - STATE(5040), 1, + ACTIONS(393), 1, + ts_builtin_sym_end, + STATE(5082), 1, + sym_comment, + [132906] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8829), 1, + aux_sym_cmd_identifier_token2, + STATE(5083), 1, sym_comment, - [131634] = 3, + [132916] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8757), 1, - anon_sym_RBRACK, - STATE(5041), 1, + ACTIONS(5331), 1, + anon_sym_EQ2, + STATE(5084), 1, sym_comment, - [131644] = 3, + [132926] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8759), 1, - aux_sym_cmd_identifier_token6, - STATE(5042), 1, + ACTIONS(1878), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5085), 1, sym_comment, - [131654] = 3, + [132936] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8761), 1, + ACTIONS(8831), 1, anon_sym_RBRACE, - STATE(5043), 1, + STATE(5086), 1, sym_comment, - [131664] = 3, + [132946] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8763), 1, - anon_sym_RBRACK, - STATE(5044), 1, + ACTIONS(6277), 1, + sym__unquoted_pattern_in_list, + STATE(5087), 1, sym_comment, - [131674] = 3, + [132956] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2591), 1, - sym__table_head_separator, - STATE(5045), 1, + ACTIONS(8833), 1, + anon_sym_RBRACE, + STATE(5088), 1, sym_comment, - [131684] = 3, + [132966] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8765), 1, + ACTIONS(8835), 1, anon_sym_RPAREN, - STATE(5046), 1, + STATE(5089), 1, sym_comment, - [131694] = 3, + [132976] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8767), 1, - anon_sym_RBRACK, - STATE(5047), 1, + ACTIONS(5257), 1, + anon_sym_EQ2, + STATE(5090), 1, sym_comment, - [131704] = 3, + [132986] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1888), 1, + ACTIONS(2950), 1, + aux_sym_cmd_identifier_token2, + STATE(5091), 1, + sym_comment, + [132996] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8837), 1, aux_sym__unquoted_with_expr_token1, - STATE(5048), 1, + STATE(5092), 1, sym_comment, - [131714] = 3, + [133006] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8769), 1, - anon_sym_RPAREN, - STATE(5049), 1, + ACTIONS(8839), 1, + anon_sym_RBRACK, + STATE(5093), 1, sym_comment, - [131724] = 3, + [133016] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4147), 1, - sym__unquoted_pattern, - STATE(5050), 1, + ACTIONS(289), 1, + anon_sym_RBRACE, + STATE(5094), 1, sym_comment, - [131734] = 3, + [133026] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8771), 1, + ACTIONS(8841), 1, + anon_sym_RBRACE, + STATE(5095), 1, + sym_comment, + [133036] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8843), 1, + aux_sym_cmd_identifier_token6, + STATE(5096), 1, + sym_comment, + [133046] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8845), 1, anon_sym_RBRACK, - STATE(5051), 1, + STATE(5097), 1, sym_comment, - [131744] = 3, + [133056] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8773), 1, - anon_sym_RPAREN, - STATE(5052), 1, + ACTIONS(8847), 1, + sym__table_head_separator, + STATE(5098), 1, sym_comment, - [131754] = 3, + [133066] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8775), 1, + ACTIONS(8849), 1, anon_sym_RBRACE, - STATE(5053), 1, + STATE(5099), 1, sym_comment, - [131764] = 3, + [133076] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8777), 1, + ACTIONS(8851), 1, anon_sym_RBRACK, - STATE(5054), 1, + STATE(5100), 1, sym_comment, - [131774] = 3, + [133086] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(313), 1, + ACTIONS(8853), 1, anon_sym_RBRACE, - STATE(5055), 1, + STATE(5101), 1, sym_comment, - [131784] = 3, + [133096] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8779), 1, - anon_sym_RBRACK, - STATE(5056), 1, + ACTIONS(8855), 1, + anon_sym_RPAREN, + STATE(5102), 1, + sym_comment, + [133106] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1878), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5103), 1, sym_comment, - [131794] = 3, + [133116] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8781), 1, + ACTIONS(6693), 1, + sym__unquoted_pattern_in_record, + STATE(5104), 1, + sym_comment, + [133126] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2576), 1, + sym__unquoted_pattern_in_record, + STATE(5105), 1, + sym_comment, + [133136] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8857), 1, sym_raw_string_content, - STATE(5057), 1, + STATE(5106), 1, sym_comment, - [131804] = 3, + [133146] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7518), 1, + ACTIONS(7608), 1, anon_sym_LBRACK2, - STATE(5058), 1, + STATE(5107), 1, sym_comment, - [131814] = 3, + [133156] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8783), 1, + ACTIONS(8859), 1, aux_sym__str_single_quotes_token1, - STATE(5059), 1, + STATE(5108), 1, sym_comment, - [131824] = 3, + [133166] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8785), 1, + ACTIONS(8861), 1, aux_sym__str_back_ticks_token1, - STATE(5060), 1, + STATE(5109), 1, sym_comment, - [131834] = 3, + [133176] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8787), 1, - anon_sym_RBRACE, - STATE(5061), 1, + ACTIONS(8863), 1, + sym_raw_string_end, + STATE(5110), 1, sym_comment, - [131844] = 3, + [133186] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern_in_record, - STATE(5062), 1, + ACTIONS(8865), 1, + anon_sym_in, + STATE(5111), 1, + sym_comment, + [133196] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8867), 1, + sym__space, + STATE(5112), 1, sym_comment, - [131854] = 3, + [133206] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8789), 1, + ACTIONS(8869), 1, anon_sym_EQ, - STATE(5063), 1, + STATE(5113), 1, sym_comment, - [131864] = 3, - ACTIONS(103), 1, + [133216] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8791), 1, - sym__space, - STATE(5064), 1, + ACTIONS(1748), 1, + sym__unquoted_pattern_in_record, + STATE(5114), 1, sym_comment, - [131874] = 3, + [133226] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8793), 1, + ACTIONS(8871), 1, + anon_sym_SQUOTE2, + STATE(5115), 1, + sym_comment, + [133236] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8873), 1, anon_sym_RBRACE, - STATE(5065), 1, + STATE(5116), 1, sym_comment, - [131884] = 3, + [133246] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8795), 1, + ACTIONS(8875), 1, anon_sym_RBRACE, - STATE(5066), 1, + STATE(5117), 1, sym_comment, - [131894] = 3, + [133256] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8797), 1, - anon_sym_RPAREN, - STATE(5067), 1, + ACTIONS(1814), 1, + sym__unquoted_pattern_in_record, + STATE(5118), 1, sym_comment, - [131904] = 3, + [133266] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(5068), 1, + ACTIONS(8877), 1, + anon_sym_LBRACE, + STATE(5119), 1, sym_comment, - [131914] = 3, + [133276] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1902), 1, sym__unquoted_pattern_in_record, - STATE(5069), 1, + STATE(5120), 1, sym_comment, - [131924] = 3, + [133286] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8799), 1, - anon_sym_SQUOTE2, - STATE(5070), 1, + ACTIONS(303), 1, + anon_sym_RBRACE, + STATE(5121), 1, sym_comment, - [131934] = 3, - ACTIONS(103), 1, + [133296] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8801), 1, - aux_sym_cmd_identifier_token6, - STATE(5071), 1, + ACTIONS(8879), 1, + anon_sym_DQUOTE, + STATE(5122), 1, sym_comment, - [131944] = 3, + [133306] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8803), 1, - anon_sym_BQUOTE2, - STATE(5072), 1, + ACTIONS(8877), 1, + anon_sym_LBRACE, + STATE(5123), 1, sym_comment, - [131954] = 3, + [133316] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern_in_record, - STATE(5073), 1, + ACTIONS(7334), 1, + sym__unquoted_pattern, + STATE(5124), 1, sym_comment, - [131964] = 3, + [133326] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8805), 1, - anon_sym_RBRACE, - STATE(5074), 1, + ACTIONS(8881), 1, + anon_sym_COLON2, + STATE(5125), 1, sym_comment, - [131974] = 3, + [133336] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern_in_record, - STATE(5075), 1, + ACTIONS(8883), 1, + sym_raw_string_end, + STATE(5126), 1, sym_comment, - [131984] = 3, + [133346] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8807), 1, - anon_sym_DQUOTE, - STATE(5076), 1, + ACTIONS(1691), 1, + sym__unquoted_pattern, + STATE(5127), 1, sym_comment, - [131994] = 3, + [133356] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - STATE(5077), 1, + ACTIONS(8885), 1, + anon_sym_RBRACE, + STATE(5128), 1, sym_comment, - [132004] = 3, + [133366] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8809), 1, - anon_sym_SQUOTE2, - STATE(5078), 1, + ACTIONS(8887), 1, + anon_sym_BQUOTE2, + STATE(5129), 1, sym_comment, - [132014] = 3, + [133376] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8811), 1, - anon_sym_BQUOTE2, - STATE(5079), 1, + ACTIONS(8889), 1, + anon_sym_RPAREN2, + STATE(5130), 1, sym_comment, - [132024] = 3, + [133386] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - anon_sym_RBRACK, - STATE(5080), 1, + ACTIONS(5381), 1, + anon_sym_EQ2, + STATE(5131), 1, sym_comment, - [132034] = 3, + [133396] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8815), 1, - anon_sym_RBRACE, - STATE(5081), 1, + ACTIONS(8891), 1, + sym_identifier, + STATE(5132), 1, sym_comment, - [132044] = 3, - ACTIONS(103), 1, + [133406] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8817), 1, - aux_sym_cmd_identifier_token6, - STATE(5082), 1, + ACTIONS(8893), 1, + anon_sym_RPAREN, + STATE(5133), 1, sym_comment, - [132054] = 3, + [133416] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8819), 1, - anon_sym_EQ, - STATE(5083), 1, + ACTIONS(8895), 1, + anon_sym_SQUOTE2, + STATE(5134), 1, + sym_comment, + [133426] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8897), 1, + anon_sym_BQUOTE2, + STATE(5135), 1, sym_comment, - [132064] = 3, + [133436] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2630), 1, aux_sym_cmd_identifier_token2, - STATE(5084), 1, + STATE(5136), 1, sym_comment, - [132074] = 3, + [133446] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8821), 1, - anon_sym_RBRACE, - STATE(5085), 1, + ACTIONS(7862), 1, + anon_sym_LBRACE, + STATE(5137), 1, sym_comment, - [132084] = 3, + [133456] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(5086), 1, + ACTIONS(1718), 1, + anon_sym_COLON2, + STATE(5138), 1, sym_comment, - [132094] = 3, + [133466] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8823), 1, - anon_sym_LBRACE, - STATE(5087), 1, + ACTIONS(8899), 1, + anon_sym_RBRACK, + STATE(5139), 1, sym_comment, - [132104] = 3, + [133476] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8825), 1, - anon_sym_EQ, - STATE(5088), 1, + ACTIONS(5263), 1, + anon_sym_EQ2, + STATE(5140), 1, sym_comment, - [132114] = 3, - ACTIONS(103), 1, + [133486] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8827), 1, - sym__space, - STATE(5089), 1, + ACTIONS(8901), 1, + anon_sym_RBRACK, + STATE(5141), 1, sym_comment, - [132124] = 3, + [133496] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8829), 1, + ACTIONS(8813), 1, + anon_sym_LBRACE, + STATE(5142), 1, + sym_comment, + [133506] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8903), 1, anon_sym_RPAREN, - STATE(5090), 1, + STATE(5143), 1, sym_comment, - [132134] = 3, + [133516] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8831), 1, - anon_sym_RBRACK, - STATE(5091), 1, + ACTIONS(2031), 1, + sym__unquoted_pattern, + STATE(5144), 1, sym_comment, - [132144] = 3, + [133526] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8833), 1, - anon_sym_EQ, - STATE(5092), 1, + ACTIONS(8905), 1, + anon_sym_RBRACE, + STATE(5145), 1, sym_comment, - [132154] = 3, + [133536] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8835), 1, - anon_sym_EQ, - STATE(5093), 1, + ACTIONS(8907), 1, + anon_sym_RPAREN, + STATE(5146), 1, sym_comment, - [132164] = 3, + [133546] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8837), 1, + ACTIONS(8909), 1, sym_raw_string_content, - STATE(5094), 1, + STATE(5147), 1, sym_comment, - [132174] = 3, + [133556] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6016), 1, + ACTIONS(5977), 1, anon_sym_LBRACK2, - STATE(5095), 1, + STATE(5148), 1, sym_comment, - [132184] = 3, + [133566] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8839), 1, + ACTIONS(8911), 1, aux_sym__str_single_quotes_token1, - STATE(5096), 1, + STATE(5149), 1, sym_comment, - [132194] = 3, + [133576] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8841), 1, + ACTIONS(8913), 1, aux_sym__str_back_ticks_token1, - STATE(5097), 1, + STATE(5150), 1, sym_comment, - [132204] = 3, + [133586] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8843), 1, - anon_sym_RBRACK, - STATE(5098), 1, + ACTIONS(1888), 1, + sym__table_head_separator, + STATE(5151), 1, sym_comment, - [132214] = 3, + [133596] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8845), 1, + ACTIONS(8915), 1, sym__space, - STATE(5099), 1, + STATE(5152), 1, sym_comment, - [132224] = 3, - ACTIONS(103), 1, + [133606] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - STATE(5100), 1, + ACTIONS(315), 1, + anon_sym_RBRACE, + STATE(5153), 1, sym_comment, - [132234] = 3, + [133616] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8847), 1, - anon_sym_RPAREN, - STATE(5101), 1, + ACTIONS(8917), 1, + anon_sym_RBRACE, + STATE(5154), 1, sym_comment, - [132244] = 3, + [133626] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8823), 1, - anon_sym_LBRACE, - STATE(5102), 1, + ACTIONS(8919), 1, + sym_raw_string_content, + STATE(5155), 1, sym_comment, - [132254] = 3, + [133636] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8849), 1, - sym_identifier, - STATE(5103), 1, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + STATE(5156), 1, sym_comment, - [132264] = 3, - ACTIONS(3), 1, + [133646] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8851), 1, - anon_sym_GT2, - STATE(5104), 1, + ACTIONS(8921), 1, + aux_sym__str_single_quotes_token1, + STATE(5157), 1, sym_comment, - [132274] = 3, - ACTIONS(3), 1, + [133656] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8853), 1, - anon_sym_RPAREN, - STATE(5105), 1, + ACTIONS(8923), 1, + aux_sym__str_back_ticks_token1, + STATE(5158), 1, sym_comment, - [132284] = 3, + [133666] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8855), 1, + ACTIONS(8925), 1, sym_raw_string_content, - STATE(5106), 1, + STATE(5159), 1, sym_comment, - [132294] = 3, + [133676] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4527), 1, + ACTIONS(5743), 1, anon_sym_LBRACK2, - STATE(5107), 1, + STATE(5160), 1, sym_comment, - [132304] = 3, + [133686] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8857), 1, + ACTIONS(8927), 1, aux_sym__str_single_quotes_token1, - STATE(5108), 1, + STATE(5161), 1, sym_comment, - [132314] = 3, + [133696] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8859), 1, + ACTIONS(8929), 1, aux_sym__str_back_ticks_token1, - STATE(5109), 1, + STATE(5162), 1, sym_comment, - [132324] = 3, + [133706] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8861), 1, + ACTIONS(8931), 1, sym_raw_string_content, - STATE(5110), 1, + STATE(5163), 1, sym_comment, - [132334] = 3, + [133716] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5727), 1, + ACTIONS(5816), 1, anon_sym_LBRACK2, - STATE(5111), 1, + STATE(5164), 1, sym_comment, - [132344] = 3, + [133726] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8863), 1, + ACTIONS(8933), 1, aux_sym__str_single_quotes_token1, - STATE(5112), 1, + STATE(5165), 1, sym_comment, - [132354] = 3, + [133736] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8865), 1, + ACTIONS(8935), 1, aux_sym__str_back_ticks_token1, - STATE(5113), 1, + STATE(5166), 1, sym_comment, - [132364] = 3, + [133746] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8867), 1, + ACTIONS(8937), 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(5167), 1, sym_comment, - [132384] = 3, + [133756] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8869), 1, + ACTIONS(8939), 1, aux_sym__str_single_quotes_token1, - STATE(5116), 1, + STATE(5168), 1, sym_comment, - [132394] = 3, + [133766] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8871), 1, + ACTIONS(8941), 1, aux_sym__str_back_ticks_token1, - STATE(5117), 1, + STATE(5169), 1, sym_comment, - [132404] = 3, + [133776] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8873), 1, + ACTIONS(8943), 1, sym_raw_string_content, - STATE(5118), 1, + STATE(5170), 1, sym_comment, - [132414] = 3, + [133786] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8875), 1, + ACTIONS(8945), 1, aux_sym__str_single_quotes_token1, - STATE(5119), 1, + STATE(5171), 1, sym_comment, - [132424] = 3, + [133796] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8877), 1, + ACTIONS(8947), 1, aux_sym__str_back_ticks_token1, - STATE(5120), 1, + STATE(5172), 1, sym_comment, - [132434] = 3, + [133806] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8879), 1, + ACTIONS(8949), 1, sym_raw_string_content, - STATE(5121), 1, + STATE(5173), 1, sym_comment, - [132444] = 3, + [133816] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8881), 1, + ACTIONS(8951), 1, aux_sym__str_single_quotes_token1, - STATE(5122), 1, + STATE(5174), 1, sym_comment, - [132454] = 3, + [133826] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8883), 1, + ACTIONS(8953), 1, aux_sym__str_back_ticks_token1, - STATE(5123), 1, + STATE(5175), 1, sym_comment, - [132464] = 3, + [133836] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8885), 1, + ACTIONS(8955), 1, sym_raw_string_content, - STATE(5124), 1, + STATE(5176), 1, sym_comment, - [132474] = 3, + [133846] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8887), 1, + ACTIONS(8957), 1, aux_sym__str_single_quotes_token1, - STATE(5125), 1, + STATE(5177), 1, sym_comment, - [132484] = 3, + [133856] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8889), 1, + ACTIONS(8959), 1, aux_sym__str_back_ticks_token1, - STATE(5126), 1, + STATE(5178), 1, sym_comment, - [132494] = 3, + [133866] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8891), 1, + ACTIONS(8961), 1, sym_raw_string_content, - STATE(5127), 1, + STATE(5179), 1, sym_comment, - [132504] = 3, + [133876] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8893), 1, + ACTIONS(8963), 1, aux_sym__str_single_quotes_token1, - STATE(5128), 1, + STATE(5180), 1, sym_comment, - [132514] = 3, + [133886] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8895), 1, + ACTIONS(8965), 1, aux_sym__str_back_ticks_token1, - STATE(5129), 1, + STATE(5181), 1, sym_comment, - [132524] = 3, + [133896] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8897), 1, + ACTIONS(8967), 1, sym_raw_string_content, - STATE(5130), 1, + STATE(5182), 1, sym_comment, - [132534] = 3, + [133906] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8899), 1, + ACTIONS(8969), 1, aux_sym__str_single_quotes_token1, - STATE(5131), 1, + STATE(5183), 1, sym_comment, - [132544] = 3, + [133916] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8901), 1, + ACTIONS(8971), 1, aux_sym__str_back_ticks_token1, - STATE(5132), 1, + STATE(5184), 1, sym_comment, - [132554] = 3, + [133926] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8903), 1, + ACTIONS(8973), 1, sym_raw_string_content, - STATE(5133), 1, + STATE(5185), 1, sym_comment, - [132564] = 3, + [133936] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8905), 1, + ACTIONS(8975), 1, aux_sym__str_single_quotes_token1, - STATE(5134), 1, + STATE(5186), 1, sym_comment, - [132574] = 3, + [133946] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8907), 1, + ACTIONS(8977), 1, aux_sym__str_back_ticks_token1, - STATE(5135), 1, + STATE(5187), 1, sym_comment, - [132584] = 3, + [133956] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8909), 1, + ACTIONS(8979), 1, sym_raw_string_content, - STATE(5136), 1, + STATE(5188), 1, sym_comment, - [132594] = 3, + [133966] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8911), 1, + ACTIONS(8981), 1, aux_sym__str_single_quotes_token1, - STATE(5137), 1, + STATE(5189), 1, sym_comment, - [132604] = 3, + [133976] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8913), 1, + ACTIONS(8983), 1, aux_sym__str_back_ticks_token1, - STATE(5138), 1, + STATE(5190), 1, sym_comment, - [132614] = 3, + [133986] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8915), 1, + ACTIONS(8985), 1, sym_raw_string_content, - STATE(5139), 1, + STATE(5191), 1, sym_comment, - [132624] = 3, + [133996] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8917), 1, + ACTIONS(8987), 1, aux_sym__str_single_quotes_token1, - STATE(5140), 1, + STATE(5192), 1, sym_comment, - [132634] = 3, + [134006] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8919), 1, + ACTIONS(8989), 1, aux_sym__str_back_ticks_token1, - STATE(5141), 1, + STATE(5193), 1, sym_comment, - [132644] = 3, + [134016] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8921), 1, + ACTIONS(8991), 1, sym_raw_string_content, - STATE(5142), 1, + STATE(5194), 1, sym_comment, - [132654] = 3, + [134026] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8923), 1, + ACTIONS(8993), 1, aux_sym__str_single_quotes_token1, - STATE(5143), 1, + STATE(5195), 1, sym_comment, - [132664] = 3, + [134036] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8925), 1, + ACTIONS(8995), 1, aux_sym__str_back_ticks_token1, - STATE(5144), 1, + STATE(5196), 1, sym_comment, - [132674] = 3, + [134046] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8927), 1, + ACTIONS(8997), 1, sym_raw_string_content, - STATE(5145), 1, + STATE(5197), 1, sym_comment, - [132684] = 3, + [134056] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8929), 1, + ACTIONS(8999), 1, aux_sym__str_single_quotes_token1, - STATE(5146), 1, + STATE(5198), 1, sym_comment, - [132694] = 3, + [134066] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8931), 1, + ACTIONS(9001), 1, aux_sym__str_back_ticks_token1, - STATE(5147), 1, + STATE(5199), 1, sym_comment, - [132704] = 3, + [134076] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8933), 1, + ACTIONS(9003), 1, sym_raw_string_content, - STATE(5148), 1, + STATE(5200), 1, sym_comment, - [132714] = 3, + [134086] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8935), 1, + ACTIONS(9005), 1, aux_sym__str_single_quotes_token1, - STATE(5149), 1, + STATE(5201), 1, sym_comment, - [132724] = 3, + [134096] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8937), 1, + ACTIONS(9007), 1, aux_sym__str_back_ticks_token1, - STATE(5150), 1, + STATE(5202), 1, sym_comment, - [132734] = 3, + [134106] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8939), 1, + ACTIONS(9009), 1, sym_raw_string_content, - STATE(5151), 1, + STATE(5203), 1, sym_comment, - [132744] = 3, + [134116] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8941), 1, + ACTIONS(9011), 1, aux_sym__str_single_quotes_token1, - STATE(5152), 1, + STATE(5204), 1, sym_comment, - [132754] = 3, + [134126] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8943), 1, + ACTIONS(9013), 1, aux_sym__str_back_ticks_token1, - STATE(5153), 1, + STATE(5205), 1, sym_comment, - [132764] = 3, + [134136] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8945), 1, + ACTIONS(9015), 1, sym_raw_string_content, - STATE(5154), 1, + STATE(5206), 1, sym_comment, - [132774] = 3, + [134146] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8947), 1, + ACTIONS(9017), 1, aux_sym__str_single_quotes_token1, - STATE(5155), 1, + STATE(5207), 1, sym_comment, - [132784] = 3, + [134156] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8949), 1, + ACTIONS(9019), 1, aux_sym__str_back_ticks_token1, - STATE(5156), 1, + STATE(5208), 1, sym_comment, - [132794] = 3, - ACTIONS(103), 1, + [134166] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8951), 1, - aux_sym_cmd_identifier_token6, - STATE(5157), 1, + ACTIONS(9021), 1, + sym_raw_string_end, + STATE(5209), 1, sym_comment, - [132804] = 3, + [134176] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8953), 1, - sym_raw_string_end, - STATE(5158), 1, + ACTIONS(9023), 1, + anon_sym_RBRACE, + STATE(5210), 1, sym_comment, - [132814] = 3, + [134186] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8329), 1, + ACTIONS(8368), 1, anon_sym_LPAREN2, - STATE(5159), 1, + STATE(5211), 1, sym_comment, - [132824] = 3, + [134196] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_RBRACE, - STATE(5160), 1, + ACTIONS(9025), 1, + sym_raw_string_end, + STATE(5212), 1, sym_comment, - [132834] = 3, + [134206] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8955), 1, - anon_sym_COLON2, - STATE(5161), 1, + ACTIONS(9027), 1, + anon_sym_EQ, + STATE(5213), 1, sym_comment, - [132844] = 3, + [134216] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8957), 1, - anon_sym_LBRACE, - STATE(5162), 1, + ACTIONS(9029), 1, + anon_sym_GT2, + STATE(5214), 1, sym_comment, - [132854] = 3, + [134226] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8959), 1, - anon_sym_RBRACE, - STATE(5163), 1, + ACTIONS(9031), 1, + anon_sym_in, + STATE(5215), 1, sym_comment, - [132864] = 3, + [134236] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8961), 1, - anon_sym_in, - STATE(5164), 1, + ACTIONS(9033), 1, + anon_sym_RBRACE, + STATE(5216), 1, sym_comment, - [132874] = 3, + [134246] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8963), 1, - ts_builtin_sym_end, - STATE(5165), 1, + ACTIONS(9035), 1, + anon_sym_DQUOTE, + STATE(5217), 1, sym_comment, - [132884] = 3, + [134256] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8965), 1, - sym_long_flag_identifier, - STATE(5166), 1, + ACTIONS(4157), 1, + sym__unquoted_pattern, + STATE(5218), 1, sym_comment, - [132894] = 3, + [134266] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8967), 1, - anon_sym_RBRACE, - STATE(5167), 1, + ACTIONS(9037), 1, + anon_sym_RPAREN, + STATE(5219), 1, sym_comment, - [132904] = 3, + [134276] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8969), 1, - anon_sym_RBRACE, - STATE(5168), 1, + ACTIONS(9039), 1, + anon_sym_DQUOTE, + STATE(5220), 1, sym_comment, - [132914] = 3, + [134286] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8701), 1, - anon_sym_LBRACE, - STATE(5169), 1, + ACTIONS(9041), 1, + anon_sym_SQUOTE2, + STATE(5221), 1, sym_comment, - [132924] = 3, - ACTIONS(103), 1, + [134296] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8971), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(5170), 1, + ACTIONS(9043), 1, + anon_sym_SQUOTE2, + STATE(5222), 1, sym_comment, - [132934] = 3, + [134306] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8973), 1, - sym_param_short_flag_identifier, - STATE(5171), 1, + ACTIONS(9045), 1, + anon_sym_BQUOTE2, + STATE(5223), 1, sym_comment, - [132944] = 3, + [134316] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8975), 1, - anon_sym_RBRACE, - STATE(5172), 1, + ACTIONS(9047), 1, + anon_sym_BQUOTE2, + STATE(5224), 1, sym_comment, - [132954] = 3, + [134326] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8977), 1, - anon_sym_EQ_GT, - STATE(5173), 1, + ACTIONS(9049), 1, + anon_sym_RBRACK, + STATE(5225), 1, sym_comment, - [132964] = 3, + [134336] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8979), 1, + ACTIONS(9051), 1, anon_sym_RBRACE, - STATE(5174), 1, + STATE(5226), 1, sym_comment, - [132974] = 3, + [134346] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8981), 1, + ACTIONS(9053), 1, anon_sym_RPAREN, - STATE(5175), 1, + STATE(5227), 1, sym_comment, - [132984] = 3, + [134356] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8983), 1, + ACTIONS(9055), 1, anon_sym_RBRACE, - STATE(5176), 1, + STATE(5228), 1, sym_comment, - [132994] = 3, - ACTIONS(3), 1, + [134366] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8985), 1, - anon_sym_RBRACK, - STATE(5177), 1, + ACTIONS(9057), 1, + aux_sym__str_single_quotes_token1, + STATE(5229), 1, sym_comment, - [133004] = 3, + [134376] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8987), 1, + ACTIONS(309), 1, anon_sym_RBRACE, - STATE(5178), 1, + STATE(5230), 1, sym_comment, - [133014] = 3, + [134386] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8989), 1, + ACTIONS(9059), 1, anon_sym_LT, - STATE(5179), 1, + STATE(5231), 1, sym_comment, - [133024] = 3, + [134396] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8991), 1, + ACTIONS(9061), 1, anon_sym_RBRACK, - STATE(5180), 1, - sym_comment, - [133034] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8993), 1, - anon_sym_DQUOTE, - STATE(5181), 1, + STATE(5232), 1, sym_comment, - [133044] = 3, + [134406] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8995), 1, + ACTIONS(9063), 1, aux_sym_cmd_identifier_token6, - STATE(5182), 1, + STATE(5233), 1, sym_comment, - [133054] = 3, + [134416] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(335), 1, - anon_sym_RPAREN2, - STATE(5183), 1, + ACTIONS(5311), 1, + anon_sym_EQ2, + STATE(5234), 1, sym_comment, - [133064] = 3, + [134426] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8997), 1, + ACTIONS(9065), 1, + anon_sym_RBRACE, + STATE(5235), 1, + sym_comment, + [134436] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9067), 1, anon_sym_RPAREN, - STATE(5184), 1, + STATE(5236), 1, sym_comment, - [133074] = 3, + [134446] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8999), 1, - anon_sym_RBRACE, - STATE(5185), 1, + ACTIONS(9069), 1, + anon_sym_EQ, + STATE(5237), 1, sym_comment, - [133084] = 3, + [134456] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(441), 1, - ts_builtin_sym_end, - STATE(5186), 1, + ACTIONS(9071), 1, + anon_sym_DQUOTE, + STATE(5238), 1, sym_comment, - [133094] = 3, + [134466] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9001), 1, - anon_sym_SQUOTE2, - STATE(5187), 1, + ACTIONS(9073), 1, + anon_sym_DQUOTE, + STATE(5239), 1, sym_comment, - [133104] = 3, + [134476] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9003), 1, - anon_sym_BQUOTE2, - STATE(5188), 1, + ACTIONS(9075), 1, + anon_sym_SQUOTE2, + STATE(5240), 1, sym_comment, - [133114] = 3, + [134486] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9005), 1, - anon_sym_LT, - STATE(5189), 1, + ACTIONS(9077), 1, + anon_sym_BQUOTE2, + STATE(5241), 1, sym_comment, - [133124] = 3, + [134496] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9007), 1, - anon_sym_RBRACE, - STATE(5190), 1, + ACTIONS(9079), 1, + anon_sym_EQ, + STATE(5242), 1, sym_comment, - [133134] = 3, + [134506] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9009), 1, + ACTIONS(9081), 1, anon_sym_RBRACE, - STATE(5191), 1, + STATE(5243), 1, sym_comment, - [133144] = 3, + [134516] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_record, - STATE(5192), 1, + ACTIONS(9083), 1, + anon_sym_LT, + STATE(5244), 1, sym_comment, - [133154] = 3, + [134526] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9011), 1, + ACTIONS(9085), 1, aux_sym_cmd_identifier_token6, - STATE(5193), 1, + STATE(5245), 1, sym_comment, - [133164] = 3, + [134536] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9013), 1, + ACTIONS(9087), 1, anon_sym_EQ, - STATE(5194), 1, + STATE(5246), 1, sym_comment, - [133174] = 3, + [134546] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9015), 1, + ACTIONS(9089), 1, + anon_sym_RPAREN, + STATE(5247), 1, + sym_comment, + [134556] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9091), 1, anon_sym_EQ, - STATE(5195), 1, + STATE(5248), 1, sym_comment, - [133184] = 3, - ACTIONS(103), 1, + [134566] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9017), 1, - aux_sym_cmd_identifier_token6, - STATE(5196), 1, + ACTIONS(9093), 1, + anon_sym_RBRACK, + STATE(5249), 1, sym_comment, - [133194] = 3, + [134576] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9019), 1, - anon_sym_EQ, - STATE(5197), 1, + ACTIONS(9095), 1, + anon_sym_RBRACE, + STATE(5250), 1, sym_comment, - [133204] = 3, + [134586] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9021), 1, - anon_sym_RPAREN, - STATE(5198), 1, + ACTIONS(9097), 1, + anon_sym_RBRACK, + STATE(5251), 1, sym_comment, - [133214] = 3, + [134596] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - STATE(5199), 1, + ACTIONS(9099), 1, + anon_sym_RBRACE, + STATE(5252), 1, sym_comment, - [133224] = 3, + [134606] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9023), 1, - anon_sym_EQ, - STATE(5200), 1, + ACTIONS(9101), 1, + anon_sym_RBRACE, + STATE(5253), 1, sym_comment, - [133234] = 3, + [134616] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5253), 1, - anon_sym_EQ2, - STATE(5201), 1, + ACTIONS(9103), 1, + anon_sym_RBRACE, + STATE(5254), 1, sym_comment, - [133244] = 3, + [134626] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9025), 1, - anon_sym_DQUOTE, - STATE(5202), 1, + ACTIONS(9105), 1, + anon_sym_LT, + STATE(5255), 1, sym_comment, - [133254] = 1, - ACTIONS(9027), 1, + [134636] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9107), 1, + anon_sym_RPAREN, + STATE(5256), 1, + sym_comment, + [134646] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9109), 1, + sym_param_short_flag_identifier, + STATE(5257), 1, + sym_comment, + [134656] = 1, + ACTIONS(9111), 1, ts_builtin_sym_end, }; @@ -246662,8217 +248121,8311 @@ static const uint32_t ts_small_parse_table_map[] = { [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(1268)] = 365, + [SMALL_STATE(1269)] = 448, + [SMALL_STATE(1270)] = 521, + [SMALL_STATE(1271)] = 610, + [SMALL_STATE(1272)] = 683, + [SMALL_STATE(1273)] = 756, + [SMALL_STATE(1274)] = 849, + [SMALL_STATE(1275)] = 934, + [SMALL_STATE(1276)] = 1007, + [SMALL_STATE(1277)] = 1080, + [SMALL_STATE(1278)] = 1159, + [SMALL_STATE(1279)] = 1254, + [SMALL_STATE(1280)] = 1327, + [SMALL_STATE(1281)] = 1402, + [SMALL_STATE(1282)] = 1475, + [SMALL_STATE(1283)] = 1548, + [SMALL_STATE(1284)] = 1647, + [SMALL_STATE(1285)] = 1744, + [SMALL_STATE(1286)] = 1817, + [SMALL_STATE(1287)] = 1918, + [SMALL_STATE(1288)] = 2061, + [SMALL_STATE(1289)] = 2134, + [SMALL_STATE(1290)] = 2277, + [SMALL_STATE(1291)] = 2350, + [SMALL_STATE(1292)] = 2423, + [SMALL_STATE(1293)] = 2496, + [SMALL_STATE(1294)] = 2639, + [SMALL_STATE(1295)] = 2712, + [SMALL_STATE(1296)] = 2785, + [SMALL_STATE(1297)] = 2858, + [SMALL_STATE(1298)] = 2931, + [SMALL_STATE(1299)] = 3004, + [SMALL_STATE(1300)] = 3077, + [SMALL_STATE(1301)] = 3150, + [SMALL_STATE(1302)] = 3223, + [SMALL_STATE(1303)] = 3296, + [SMALL_STATE(1304)] = 3369, + [SMALL_STATE(1305)] = 3442, + [SMALL_STATE(1306)] = 3515, + [SMALL_STATE(1307)] = 3588, + [SMALL_STATE(1308)] = 3661, + [SMALL_STATE(1309)] = 3800, + [SMALL_STATE(1310)] = 3903, + [SMALL_STATE(1311)] = 3976, + [SMALL_STATE(1312)] = 4067, + [SMALL_STATE(1313)] = 4140, + [SMALL_STATE(1314)] = 4213, + [SMALL_STATE(1315)] = 4286, + [SMALL_STATE(1316)] = 4359, + [SMALL_STATE(1317)] = 4432, + [SMALL_STATE(1318)] = 4505, + [SMALL_STATE(1319)] = 4578, + [SMALL_STATE(1320)] = 4651, + [SMALL_STATE(1321)] = 4724, + [SMALL_STATE(1322)] = 4801, + [SMALL_STATE(1323)] = 4874, + [SMALL_STATE(1324)] = 5017, + [SMALL_STATE(1325)] = 5090, + [SMALL_STATE(1326)] = 5163, + [SMALL_STATE(1327)] = 5236, + [SMALL_STATE(1328)] = 5309, + [SMALL_STATE(1329)] = 5382, + [SMALL_STATE(1330)] = 5455, + [SMALL_STATE(1331)] = 5528, + [SMALL_STATE(1332)] = 5601, + [SMALL_STATE(1333)] = 5674, + [SMALL_STATE(1334)] = 5747, + [SMALL_STATE(1335)] = 5820, + [SMALL_STATE(1336)] = 5893, + [SMALL_STATE(1337)] = 5966, + [SMALL_STATE(1338)] = 6039, + [SMALL_STATE(1339)] = 6178, + [SMALL_STATE(1340)] = 6251, + [SMALL_STATE(1341)] = 6324, [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(1347)] = 6903, [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(1350)] = 7257, + [SMALL_STATE(1351)] = 7330, + [SMALL_STATE(1352)] = 7467, + [SMALL_STATE(1353)] = 7544, + [SMALL_STATE(1354)] = 7681, + [SMALL_STATE(1355)] = 7818, + [SMALL_STATE(1356)] = 7895, [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(1359)] = 8239, + [SMALL_STATE(1360)] = 8381, + [SMALL_STATE(1361)] = 8457, + [SMALL_STATE(1362)] = 8597, + [SMALL_STATE(1363)] = 8731, + [SMALL_STATE(1364)] = 8809, + [SMALL_STATE(1365)] = 8883, + [SMALL_STATE(1366)] = 8959, + [SMALL_STATE(1367)] = 9031, + [SMALL_STATE(1368)] = 9107, + [SMALL_STATE(1369)] = 9183, + [SMALL_STATE(1370)] = 9317, + [SMALL_STATE(1371)] = 9451, + [SMALL_STATE(1372)] = 9523, + [SMALL_STATE(1373)] = 9593, + [SMALL_STATE(1374)] = 9663, [SMALL_STATE(1375)] = 9805, [SMALL_STATE(1376)] = 9939, [SMALL_STATE(1377)] = 10008, - [SMALL_STATE(1378)] = 10077, - [SMALL_STATE(1379)] = 10146, + [SMALL_STATE(1378)] = 10093, + [SMALL_STATE(1379)] = 10162, [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(1382)] = 10375, + [SMALL_STATE(1383)] = 10444, + [SMALL_STATE(1384)] = 10517, + [SMALL_STATE(1385)] = 10586, [SMALL_STATE(1386)] = 10659, [SMALL_STATE(1387)] = 10743, [SMALL_STATE(1388)] = 10825, - [SMALL_STATE(1389)] = 10907, + [SMALL_STATE(1389)] = 10893, [SMALL_STATE(1390)] = 10975, - [SMALL_STATE(1391)] = 11061, + [SMALL_STATE(1391)] = 11043, [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(1394)] = 11286, + [SMALL_STATE(1395)] = 11357, + [SMALL_STATE(1396)] = 11428, + [SMALL_STATE(1397)] = 11501, + [SMALL_STATE(1398)] = 11634, + [SMALL_STATE(1399)] = 11759, + [SMALL_STATE(1400)] = 11840, + [SMALL_STATE(1401)] = 11965, [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(1407)] = 12390, [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(1412)] = 12743, + [SMALL_STATE(1413)] = 12808, + [SMALL_STATE(1414)] = 12887, + [SMALL_STATE(1415)] = 12952, + [SMALL_STATE(1416)] = 13081, + [SMALL_STATE(1417)] = 13146, + [SMALL_STATE(1418)] = 13211, + [SMALL_STATE(1419)] = 13336, + [SMALL_STATE(1420)] = 13465, + [SMALL_STATE(1421)] = 13594, + [SMALL_STATE(1422)] = 13661, + [SMALL_STATE(1423)] = 13790, + [SMALL_STATE(1424)] = 13855, + [SMALL_STATE(1425)] = 13922, [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(1428)] = 14125, + [SMALL_STATE(1429)] = 14189, + [SMALL_STATE(1430)] = 14253, + [SMALL_STATE(1431)] = 14317, + [SMALL_STATE(1432)] = 14385, [SMALL_STATE(1433)] = 14451, - [SMALL_STATE(1434)] = 14514, + [SMALL_STATE(1434)] = 14522, [SMALL_STATE(1435)] = 14585, - [SMALL_STATE(1436)] = 14648, - [SMALL_STATE(1437)] = 14719, - [SMALL_STATE(1438)] = 14782, - [SMALL_STATE(1439)] = 14847, + [SMALL_STATE(1436)] = 14650, + [SMALL_STATE(1437)] = 14713, + [SMALL_STATE(1438)] = 14778, + [SMALL_STATE(1439)] = 14849, [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(1441)] = 14982, + [SMALL_STATE(1442)] = 15080, + [SMALL_STATE(1443)] = 15146, + [SMALL_STATE(1444)] = 15218, + [SMALL_STATE(1445)] = 15284, + [SMALL_STATE(1446)] = 15382, + [SMALL_STATE(1447)] = 15444, + [SMALL_STATE(1448)] = 15506, [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(1451)] = 15735, + [SMALL_STATE(1452)] = 15828, + [SMALL_STATE(1453)] = 15899, + [SMALL_STATE(1454)] = 15962, + [SMALL_STATE(1455)] = 16055, + [SMALL_STATE(1456)] = 16120, + [SMALL_STATE(1457)] = 16217, + [SMALL_STATE(1458)] = 16282, + [SMALL_STATE(1459)] = 16345, [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(1461)] = 16504, + [SMALL_STATE(1462)] = 16570, + [SMALL_STATE(1463)] = 16636, + [SMALL_STATE(1464)] = 16696, + [SMALL_STATE(1465)] = 16760, + [SMALL_STATE(1466)] = 16826, + [SMALL_STATE(1467)] = 16892, + [SMALL_STATE(1468)] = 16958, + [SMALL_STATE(1469)] = 17024, + [SMALL_STATE(1470)] = 17090, + [SMALL_STATE(1471)] = 17150, + [SMALL_STATE(1472)] = 17214, + [SMALL_STATE(1473)] = 17278, + [SMALL_STATE(1474)] = 17344, + [SMALL_STATE(1475)] = 17406, + [SMALL_STATE(1476)] = 17470, + [SMALL_STATE(1477)] = 17534, + [SMALL_STATE(1478)] = 17598, + [SMALL_STATE(1479)] = 17662, + [SMALL_STATE(1480)] = 17722, + [SMALL_STATE(1481)] = 17782, + [SMALL_STATE(1482)] = 17846, + [SMALL_STATE(1483)] = 17908, + [SMALL_STATE(1484)] = 17970, + [SMALL_STATE(1485)] = 18034, + [SMALL_STATE(1486)] = 18100, + [SMALL_STATE(1487)] = 18166, [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(1489)] = 18295, + [SMALL_STATE(1490)] = 18358, + [SMALL_STATE(1491)] = 18421, + [SMALL_STATE(1492)] = 18482, + [SMALL_STATE(1493)] = 18545, + [SMALL_STATE(1494)] = 18604, + [SMALL_STATE(1495)] = 18665, + [SMALL_STATE(1496)] = 18728, + [SMALL_STATE(1497)] = 18791, + [SMALL_STATE(1498)] = 18852, + [SMALL_STATE(1499)] = 18913, + [SMALL_STATE(1500)] = 18972, + [SMALL_STATE(1501)] = 19031, + [SMALL_STATE(1502)] = 19090, + [SMALL_STATE(1503)] = 19149, + [SMALL_STATE(1504)] = 19210, + [SMALL_STATE(1505)] = 19273, + [SMALL_STATE(1506)] = 19336, + [SMALL_STATE(1507)] = 19399, + [SMALL_STATE(1508)] = 19462, [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(1510)] = 19615, + [SMALL_STATE(1511)] = 19675, + [SMALL_STATE(1512)] = 19743, + [SMALL_STATE(1513)] = 19835, + [SMALL_STATE(1514)] = 19899, + [SMALL_STATE(1515)] = 19985, + [SMALL_STATE(1516)] = 20073, + [SMALL_STATE(1517)] = 20163, + [SMALL_STATE(1518)] = 20241, + [SMALL_STATE(1519)] = 20313, + [SMALL_STATE(1520)] = 20393, + [SMALL_STATE(1521)] = 20475, + [SMALL_STATE(1522)] = 20567, + [SMALL_STATE(1523)] = 20651, + [SMALL_STATE(1524)] = 20731, + [SMALL_STATE(1525)] = 20817, + [SMALL_STATE(1526)] = 20897, + [SMALL_STATE(1527)] = 20973, + [SMALL_STATE(1528)] = 21047, + [SMALL_STATE(1529)] = 21121, + [SMALL_STATE(1530)] = 21193, + [SMALL_STATE(1531)] = 21261, + [SMALL_STATE(1532)] = 21327, + [SMALL_STATE(1533)] = 21391, + [SMALL_STATE(1534)] = 21453, + [SMALL_STATE(1535)] = 21539, + [SMALL_STATE(1536)] = 21623, + [SMALL_STATE(1537)] = 21711, + [SMALL_STATE(1538)] = 21797, + [SMALL_STATE(1539)] = 21887, + [SMALL_STATE(1540)] = 21975, + [SMALL_STATE(1541)] = 22053, + [SMALL_STATE(1542)] = 22129, + [SMALL_STATE(1543)] = 22201, + [SMALL_STATE(1544)] = 22271, + [SMALL_STATE(1545)] = 22351, + [SMALL_STATE(1546)] = 22429, + [SMALL_STATE(1547)] = 22511, + [SMALL_STATE(1548)] = 22591, + [SMALL_STATE(1549)] = 22675, + [SMALL_STATE(1550)] = 22757, + [SMALL_STATE(1551)] = 22833, + [SMALL_STATE(1552)] = 22907, + [SMALL_STATE(1553)] = 22975, + [SMALL_STATE(1554)] = 23039, + [SMALL_STATE(1555)] = 23125, + [SMALL_STATE(1556)] = 23213, + [SMALL_STATE(1557)] = 23303, + [SMALL_STATE(1558)] = 23381, + [SMALL_STATE(1559)] = 23453, + [SMALL_STATE(1560)] = 23533, + [SMALL_STATE(1561)] = 23615, + [SMALL_STATE(1562)] = 23695, + [SMALL_STATE(1563)] = 23779, + [SMALL_STATE(1564)] = 23859, + [SMALL_STATE(1565)] = 23939, + [SMALL_STATE(1566)] = 24019, + [SMALL_STATE(1567)] = 24093, + [SMALL_STATE(1568)] = 24165, + [SMALL_STATE(1569)] = 24231, + [SMALL_STATE(1570)] = 24293, + [SMALL_STATE(1571)] = 24377, + [SMALL_STATE(1572)] = 24463, + [SMALL_STATE(1573)] = 24551, + [SMALL_STATE(1574)] = 24627, + [SMALL_STATE(1575)] = 24697, + [SMALL_STATE(1576)] = 24775, + [SMALL_STATE(1577)] = 24855, + [SMALL_STATE(1578)] = 24937, + [SMALL_STATE(1579)] = 25013, + [SMALL_STATE(1580)] = 25087, + [SMALL_STATE(1581)] = 25161, + [SMALL_STATE(1582)] = 25233, + [SMALL_STATE(1583)] = 25301, + [SMALL_STATE(1584)] = 25367, + [SMALL_STATE(1585)] = 25431, + [SMALL_STATE(1586)] = 25493, + [SMALL_STATE(1587)] = 25579, + [SMALL_STATE(1588)] = 25663, + [SMALL_STATE(1589)] = 25751, + [SMALL_STATE(1590)] = 25837, + [SMALL_STATE(1591)] = 25927, + [SMALL_STATE(1592)] = 26015, + [SMALL_STATE(1593)] = 26093, [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(1595)] = 26241, + [SMALL_STATE(1596)] = 26311, + [SMALL_STATE(1597)] = 26391, + [SMALL_STATE(1598)] = 26469, + [SMALL_STATE(1599)] = 26551, + [SMALL_STATE(1600)] = 26631, + [SMALL_STATE(1601)] = 26715, + [SMALL_STATE(1602)] = 26797, + [SMALL_STATE(1603)] = 26877, + [SMALL_STATE(1604)] = 26957, + [SMALL_STATE(1605)] = 27037, + [SMALL_STATE(1606)] = 27123, + [SMALL_STATE(1607)] = 27197, + [SMALL_STATE(1608)] = 27269, + [SMALL_STATE(1609)] = 27335, + [SMALL_STATE(1610)] = 27397, + [SMALL_STATE(1611)] = 27481, + [SMALL_STATE(1612)] = 27567, + [SMALL_STATE(1613)] = 27655, + [SMALL_STATE(1614)] = 27731, + [SMALL_STATE(1615)] = 27801, + [SMALL_STATE(1616)] = 27879, [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(1618)] = 28041, + [SMALL_STATE(1619)] = 28121, + [SMALL_STATE(1620)] = 28201, + [SMALL_STATE(1621)] = 28281, + [SMALL_STATE(1622)] = 28361, + [SMALL_STATE(1623)] = 28421, + [SMALL_STATE(1624)] = 28501, + [SMALL_STATE(1625)] = 28581, + [SMALL_STATE(1626)] = 28661, [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(1628)] = 28821, + [SMALL_STATE(1629)] = 28901, + [SMALL_STATE(1630)] = 28981, + [SMALL_STATE(1631)] = 29061, + [SMALL_STATE(1632)] = 29141, + [SMALL_STATE(1633)] = 29221, + [SMALL_STATE(1634)] = 29301, + [SMALL_STATE(1635)] = 29381, + [SMALL_STATE(1636)] = 29461, + [SMALL_STATE(1637)] = 29533, + [SMALL_STATE(1638)] = 29603, + [SMALL_STATE(1639)] = 29667, + [SMALL_STATE(1640)] = 29727, + [SMALL_STATE(1641)] = 29809, + [SMALL_STATE(1642)] = 29893, + [SMALL_STATE(1643)] = 29979, + [SMALL_STATE(1644)] = 30053, + [SMALL_STATE(1645)] = 30121, [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(1647)] = 30275, + [SMALL_STATE(1648)] = 30355, + [SMALL_STATE(1649)] = 30435, + [SMALL_STATE(1650)] = 30515, + [SMALL_STATE(1651)] = 30595, + [SMALL_STATE(1652)] = 30681, + [SMALL_STATE(1653)] = 30761, + [SMALL_STATE(1654)] = 30841, + [SMALL_STATE(1655)] = 30927, + [SMALL_STATE(1656)] = 31007, + [SMALL_STATE(1657)] = 31087, + [SMALL_STATE(1658)] = 31167, + [SMALL_STATE(1659)] = 31247, + [SMALL_STATE(1660)] = 31327, + [SMALL_STATE(1661)] = 31387, + [SMALL_STATE(1662)] = 31467, + [SMALL_STATE(1663)] = 31527, + [SMALL_STATE(1664)] = 31587, + [SMALL_STATE(1665)] = 31667, + [SMALL_STATE(1666)] = 31747, + [SMALL_STATE(1667)] = 31827, + [SMALL_STATE(1668)] = 31907, + [SMALL_STATE(1669)] = 31981, + [SMALL_STATE(1670)] = 32061, + [SMALL_STATE(1671)] = 32141, + [SMALL_STATE(1672)] = 32217, + [SMALL_STATE(1673)] = 32297, + [SMALL_STATE(1674)] = 32377, + [SMALL_STATE(1675)] = 32451, + [SMALL_STATE(1676)] = 32531, + [SMALL_STATE(1677)] = 32589, + [SMALL_STATE(1678)] = 32669, [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(1680)] = 32832, + [SMALL_STATE(1681)] = 32903, + [SMALL_STATE(1682)] = 32974, + [SMALL_STATE(1683)] = 33033, + [SMALL_STATE(1684)] = 33120, + [SMALL_STATE(1685)] = 33179, + [SMALL_STATE(1686)] = 33248, + [SMALL_STATE(1687)] = 33311, + [SMALL_STATE(1688)] = 33388, + [SMALL_STATE(1689)] = 33469, + [SMALL_STATE(1690)] = 33556, + [SMALL_STATE(1691)] = 33641, + [SMALL_STATE(1692)] = 33714, + [SMALL_STATE(1693)] = 33781, + [SMALL_STATE(1694)] = 33856, + [SMALL_STATE(1695)] = 33933, + [SMALL_STATE(1696)] = 34012, + [SMALL_STATE(1697)] = 34083, [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(1700)] = 34302, + [SMALL_STATE(1701)] = 34388, + [SMALL_STATE(1702)] = 34448, + [SMALL_STATE(1703)] = 34534, + [SMALL_STATE(1704)] = 34604, + [SMALL_STATE(1705)] = 34674, + [SMALL_STATE(1706)] = 34760, + [SMALL_STATE(1707)] = 34846, + [SMALL_STATE(1708)] = 34916, [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(1712)] = 35260, + [SMALL_STATE(1713)] = 35346, + [SMALL_STATE(1714)] = 35432, [SMALL_STATE(1715)] = 35502, - [SMALL_STATE(1716)] = 35569, + [SMALL_STATE(1716)] = 35583, [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(1718)] = 35721, + [SMALL_STATE(1719)] = 35802, + [SMALL_STATE(1720)] = 35861, + [SMALL_STATE(1721)] = 35918, + [SMALL_STATE(1722)] = 35981, + [SMALL_STATE(1723)] = 36048, + [SMALL_STATE(1724)] = 36105, + [SMALL_STATE(1725)] = 36166, + [SMALL_STATE(1726)] = 36237, + [SMALL_STATE(1727)] = 36306, + [SMALL_STATE(1728)] = 36369, + [SMALL_STATE(1729)] = 36440, + [SMALL_STATE(1730)] = 36511, + [SMALL_STATE(1731)] = 36592, + [SMALL_STATE(1732)] = 36659, + [SMALL_STATE(1733)] = 36726, + [SMALL_STATE(1734)] = 36793, + [SMALL_STATE(1735)] = 36856, [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(1738)] = 37060, + [SMALL_STATE(1739)] = 37120, + [SMALL_STATE(1740)] = 37188, + [SMALL_STATE(1741)] = 37246, + [SMALL_STATE(1742)] = 37300, + [SMALL_STATE(1743)] = 37354, + [SMALL_STATE(1744)] = 37412, + [SMALL_STATE(1745)] = 37474, + [SMALL_STATE(1746)] = 37542, + [SMALL_STATE(1747)] = 37600, + [SMALL_STATE(1748)] = 37658, + [SMALL_STATE(1749)] = 37726, + [SMALL_STATE(1750)] = 37788, + [SMALL_STATE(1751)] = 37846, + [SMALL_STATE(1752)] = 37924, + [SMALL_STATE(1753)] = 38002, + [SMALL_STATE(1754)] = 38056, + [SMALL_STATE(1755)] = 38124, + [SMALL_STATE(1756)] = 38192, + [SMALL_STATE(1757)] = 38260, + [SMALL_STATE(1758)] = 38316, + [SMALL_STATE(1759)] = 38396, + [SMALL_STATE(1760)] = 38474, + [SMALL_STATE(1761)] = 38552, + [SMALL_STATE(1762)] = 38606, + [SMALL_STATE(1763)] = 38684, + [SMALL_STATE(1764)] = 38764, + [SMALL_STATE(1765)] = 38842, + [SMALL_STATE(1766)] = 38896, + [SMALL_STATE(1767)] = 38950, + [SMALL_STATE(1768)] = 39004, + [SMALL_STATE(1769)] = 39058, [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(1771)] = 39174, + [SMALL_STATE(1772)] = 39252, + [SMALL_STATE(1773)] = 39308, + [SMALL_STATE(1774)] = 39386, + [SMALL_STATE(1775)] = 39464, + [SMALL_STATE(1776)] = 39524, [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(1778)] = 39653, + [SMALL_STATE(1779)] = 39718, + [SMALL_STATE(1780)] = 39783, + [SMALL_STATE(1781)] = 39838, + [SMALL_STATE(1782)] = 39893, + [SMALL_STATE(1783)] = 39948, + [SMALL_STATE(1784)] = 40005, + [SMALL_STATE(1785)] = 40058, + [SMALL_STATE(1786)] = 40135, + [SMALL_STATE(1787)] = 40200, + [SMALL_STATE(1788)] = 40265, + [SMALL_STATE(1789)] = 40322, + [SMALL_STATE(1790)] = 40385, + [SMALL_STATE(1791)] = 40436, + [SMALL_STATE(1792)] = 40489, + [SMALL_STATE(1793)] = 40544, + [SMALL_STATE(1794)] = 40609, + [SMALL_STATE(1795)] = 40666, + [SMALL_STATE(1796)] = 40731, + [SMALL_STATE(1797)] = 40782, + [SMALL_STATE(1798)] = 40835, + [SMALL_STATE(1799)] = 40912, + [SMALL_STATE(1800)] = 40977, + [SMALL_STATE(1801)] = 41036, + [SMALL_STATE(1802)] = 41113, + [SMALL_STATE(1803)] = 41166, + [SMALL_STATE(1804)] = 41221, + [SMALL_STATE(1805)] = 41298, + [SMALL_STATE(1806)] = 41349, [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(1808)] = 41453, + [SMALL_STATE(1809)] = 41506, + [SMALL_STATE(1810)] = 41559, + [SMALL_STATE(1811)] = 41624, + [SMALL_STATE(1812)] = 41701, + [SMALL_STATE(1813)] = 41778, + [SMALL_STATE(1814)] = 41855, + [SMALL_STATE(1815)] = 41932, + [SMALL_STATE(1816)] = 41985, + [SMALL_STATE(1817)] = 42040, + [SMALL_STATE(1818)] = 42117, + [SMALL_STATE(1819)] = 42170, + [SMALL_STATE(1820)] = 42235, + [SMALL_STATE(1821)] = 42312, + [SMALL_STATE(1822)] = 42389, + [SMALL_STATE(1823)] = 42454, + [SMALL_STATE(1824)] = 42531, [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(1827)] = 42686, + [SMALL_STATE(1828)] = 42738, + [SMALL_STATE(1829)] = 42792, + [SMALL_STATE(1830)] = 42844, + [SMALL_STATE(1831)] = 42906, + [SMALL_STATE(1832)] = 42958, + [SMALL_STATE(1833)] = 43018, + [SMALL_STATE(1834)] = 43070, + [SMALL_STATE(1835)] = 43124, + [SMALL_STATE(1836)] = 43178, + [SMALL_STATE(1837)] = 43230, + [SMALL_STATE(1838)] = 43292, + [SMALL_STATE(1839)] = 43352, + [SMALL_STATE(1840)] = 43412, + [SMALL_STATE(1841)] = 43472, + [SMALL_STATE(1842)] = 43524, + [SMALL_STATE(1843)] = 43576, + [SMALL_STATE(1844)] = 43638, [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(1847)] = 43798, + [SMALL_STATE(1848)] = 43849, + [SMALL_STATE(1849)] = 43900, + [SMALL_STATE(1850)] = 43951, + [SMALL_STATE(1851)] = 44002, + [SMALL_STATE(1852)] = 44053, + [SMALL_STATE(1853)] = 44152, + [SMALL_STATE(1854)] = 44203, + [SMALL_STATE(1855)] = 44254, + [SMALL_STATE(1856)] = 44313, + [SMALL_STATE(1857)] = 44372, + [SMALL_STATE(1858)] = 44431, [SMALL_STATE(1859)] = 44486, - [SMALL_STATE(1860)] = 44541, + [SMALL_STATE(1860)] = 44537, [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(1864)] = 44745, + [SMALL_STATE(1865)] = 44796, + [SMALL_STATE(1866)] = 44847, + [SMALL_STATE(1867)] = 44898, + [SMALL_STATE(1868)] = 44953, + [SMALL_STATE(1869)] = 45004, + [SMALL_STATE(1870)] = 45055, [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(1876)] = 45369, [SMALL_STATE(1877)] = 45428, - [SMALL_STATE(1878)] = 45487, - [SMALL_STATE(1879)] = 45542, - [SMALL_STATE(1880)] = 45597, + [SMALL_STATE(1878)] = 45479, + [SMALL_STATE(1879)] = 45530, + [SMALL_STATE(1880)] = 45589, [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(1883)] = 45748, + [SMALL_STATE(1884)] = 45844, + [SMALL_STATE(1885)] = 45894, + [SMALL_STATE(1886)] = 45944, + [SMALL_STATE(1887)] = 45998, + [SMALL_STATE(1888)] = 46056, + [SMALL_STATE(1889)] = 46108, + [SMALL_STATE(1890)] = 46166, + [SMALL_STATE(1891)] = 46216, + [SMALL_STATE(1892)] = 46266, + [SMALL_STATE(1893)] = 46322, + [SMALL_STATE(1894)] = 46418, + [SMALL_STATE(1895)] = 46472, + [SMALL_STATE(1896)] = 46522, + [SMALL_STATE(1897)] = 46572, + [SMALL_STATE(1898)] = 46622, + [SMALL_STATE(1899)] = 46674, + [SMALL_STATE(1900)] = 46724, + [SMALL_STATE(1901)] = 46774, + [SMALL_STATE(1902)] = 46824, + [SMALL_STATE(1903)] = 46882, + [SMALL_STATE(1904)] = 46932, + [SMALL_STATE(1905)] = 46982, + [SMALL_STATE(1906)] = 47036, + [SMALL_STATE(1907)] = 47094, + [SMALL_STATE(1908)] = 47144, + [SMALL_STATE(1909)] = 47194, + [SMALL_STATE(1910)] = 47244, + [SMALL_STATE(1911)] = 47296, + [SMALL_STATE(1912)] = 47350, + [SMALL_STATE(1913)] = 47408, + [SMALL_STATE(1914)] = 47466, + [SMALL_STATE(1915)] = 47516, + [SMALL_STATE(1916)] = 47574, [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(1918)] = 47679, + [SMALL_STATE(1919)] = 47732, + [SMALL_STATE(1920)] = 47785, + [SMALL_STATE(1921)] = 47838, + [SMALL_STATE(1922)] = 47891, + [SMALL_STATE(1923)] = 47944, + [SMALL_STATE(1924)] = 47997, + [SMALL_STATE(1925)] = 48050, + [SMALL_STATE(1926)] = 48103, + [SMALL_STATE(1927)] = 48156, + [SMALL_STATE(1928)] = 48205, + [SMALL_STATE(1929)] = 48254, + [SMALL_STATE(1930)] = 48303, + [SMALL_STATE(1931)] = 48356, + [SMALL_STATE(1932)] = 48409, + [SMALL_STATE(1933)] = 48458, + [SMALL_STATE(1934)] = 48511, + [SMALL_STATE(1935)] = 48560, + [SMALL_STATE(1936)] = 48609, + [SMALL_STATE(1937)] = 48664, + [SMALL_STATE(1938)] = 48717, + [SMALL_STATE(1939)] = 48770, + [SMALL_STATE(1940)] = 48819, + [SMALL_STATE(1941)] = 48868, + [SMALL_STATE(1942)] = 48921, + [SMALL_STATE(1943)] = 48970, + [SMALL_STATE(1944)] = 49019, + [SMALL_STATE(1945)] = 49068, + [SMALL_STATE(1946)] = 49119, + [SMALL_STATE(1947)] = 49168, + [SMALL_STATE(1948)] = 49225, + [SMALL_STATE(1949)] = 49320, + [SMALL_STATE(1950)] = 49371, + [SMALL_STATE(1951)] = 49422, + [SMALL_STATE(1952)] = 49473, + [SMALL_STATE(1953)] = 49568, + [SMALL_STATE(1954)] = 49621, + [SMALL_STATE(1955)] = 49674, + [SMALL_STATE(1956)] = 49727, + [SMALL_STATE(1957)] = 49776, + [SMALL_STATE(1958)] = 49831, + [SMALL_STATE(1959)] = 49884, + [SMALL_STATE(1960)] = 49937, + [SMALL_STATE(1961)] = 49992, + [SMALL_STATE(1962)] = 50045, + [SMALL_STATE(1963)] = 50098, + [SMALL_STATE(1964)] = 50151, [SMALL_STATE(1965)] = 50204, - [SMALL_STATE(1966)] = 50253, + [SMALL_STATE(1966)] = 50257, [SMALL_STATE(1967)] = 50306, - [SMALL_STATE(1968)] = 50358, + [SMALL_STATE(1968)] = 50364, [SMALL_STATE(1969)] = 50412, - [SMALL_STATE(1970)] = 50464, + [SMALL_STATE(1970)] = 50462, [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(1972)] = 50562, + [SMALL_STATE(1973)] = 50612, + [SMALL_STATE(1974)] = 50662, + [SMALL_STATE(1975)] = 50716, + [SMALL_STATE(1976)] = 50764, + [SMALL_STATE(1977)] = 50816, + [SMALL_STATE(1978)] = 50870, + [SMALL_STATE(1979)] = 50924, + [SMALL_STATE(1980)] = 50976, + [SMALL_STATE(1981)] = 51028, + [SMALL_STATE(1982)] = 51080, + [SMALL_STATE(1983)] = 51132, + [SMALL_STATE(1984)] = 51184, + [SMALL_STATE(1985)] = 51232, + [SMALL_STATE(1986)] = 51284, + [SMALL_STATE(1987)] = 51336, + [SMALL_STATE(1988)] = 51388, + [SMALL_STATE(1989)] = 51442, + [SMALL_STATE(1990)] = 51490, + [SMALL_STATE(1991)] = 51542, + [SMALL_STATE(1992)] = 51590, + [SMALL_STATE(1993)] = 51638, + [SMALL_STATE(1994)] = 51686, + [SMALL_STATE(1995)] = 51738, + [SMALL_STATE(1996)] = 51786, + [SMALL_STATE(1997)] = 51834, + [SMALL_STATE(1998)] = 51882, + [SMALL_STATE(1999)] = 51936, + [SMALL_STATE(2000)] = 51992, + [SMALL_STATE(2001)] = 52044, + [SMALL_STATE(2002)] = 52098, + [SMALL_STATE(2003)] = 52152, + [SMALL_STATE(2004)] = 52218, + [SMALL_STATE(2005)] = 52282, + [SMALL_STATE(2006)] = 52336, + [SMALL_STATE(2007)] = 52394, + [SMALL_STATE(2008)] = 52440, + [SMALL_STATE(2009)] = 52494, + [SMALL_STATE(2010)] = 52570, + [SMALL_STATE(2011)] = 52648, + [SMALL_STATE(2012)] = 52728, + [SMALL_STATE(2013)] = 52796, + [SMALL_STATE(2014)] = 52858, + [SMALL_STATE(2015)] = 52928, + [SMALL_STATE(2016)] = 53000, + [SMALL_STATE(2017)] = 53074, + [SMALL_STATE(2018)] = 53122, + [SMALL_STATE(2019)] = 53188, + [SMALL_STATE(2020)] = 53252, + [SMALL_STATE(2021)] = 53316, + [SMALL_STATE(2022)] = 53378, + [SMALL_STATE(2023)] = 53434, + [SMALL_STATE(2024)] = 53488, + [SMALL_STATE(2025)] = 53540, + [SMALL_STATE(2026)] = 53616, + [SMALL_STATE(2027)] = 53690, + [SMALL_STATE(2028)] = 53768, + [SMALL_STATE(2029)] = 53844, + [SMALL_STATE(2030)] = 53924, + [SMALL_STATE(2031)] = 54002, + [SMALL_STATE(2032)] = 54070, + [SMALL_STATE(2033)] = 54136, + [SMALL_STATE(2034)] = 54198, + [SMALL_STATE(2035)] = 54258, + [SMALL_STATE(2036)] = 54328, + [SMALL_STATE(2037)] = 54396, + [SMALL_STATE(2038)] = 54468, + [SMALL_STATE(2039)] = 54538, + [SMALL_STATE(2040)] = 54612, + [SMALL_STATE(2041)] = 54684, + [SMALL_STATE(2042)] = 54750, + [SMALL_STATE(2043)] = 54814, + [SMALL_STATE(2044)] = 54872, + [SMALL_STATE(2045)] = 54926, + [SMALL_STATE(2046)] = 55002, + [SMALL_STATE(2047)] = 55080, + [SMALL_STATE(2048)] = 55148, + [SMALL_STATE(2049)] = 55210, + [SMALL_STATE(2050)] = 55280, + [SMALL_STATE(2051)] = 55352, + [SMALL_STATE(2052)] = 55426, + [SMALL_STATE(2053)] = 55490, + [SMALL_STATE(2054)] = 55552, + [SMALL_STATE(2055)] = 55608, + [SMALL_STATE(2056)] = 55660, + [SMALL_STATE(2057)] = 55734, + [SMALL_STATE(2058)] = 55810, + [SMALL_STATE(2059)] = 55888, + [SMALL_STATE(2060)] = 55954, + [SMALL_STATE(2061)] = 56014, + [SMALL_STATE(2062)] = 56082, + [SMALL_STATE(2063)] = 56152, + [SMALL_STATE(2064)] = 56224, + [SMALL_STATE(2065)] = 56290, + [SMALL_STATE(2066)] = 56354, + [SMALL_STATE(2067)] = 56418, + [SMALL_STATE(2068)] = 56480, + [SMALL_STATE(2069)] = 56538, + [SMALL_STATE(2070)] = 56594, + [SMALL_STATE(2071)] = 56648, + [SMALL_STATE(2072)] = 56700, + [SMALL_STATE(2073)] = 56776, + [SMALL_STATE(2074)] = 56850, + [SMALL_STATE(2075)] = 56928, + [SMALL_STATE(2076)] = 57004, + [SMALL_STATE(2077)] = 57084, + [SMALL_STATE(2078)] = 57162, + [SMALL_STATE(2079)] = 57230, + [SMALL_STATE(2080)] = 57296, + [SMALL_STATE(2081)] = 57358, + [SMALL_STATE(2082)] = 57418, + [SMALL_STATE(2083)] = 57488, + [SMALL_STATE(2084)] = 57556, + [SMALL_STATE(2085)] = 57628, + [SMALL_STATE(2086)] = 57698, + [SMALL_STATE(2087)] = 57772, + [SMALL_STATE(2088)] = 57844, + [SMALL_STATE(2089)] = 57908, + [SMALL_STATE(2090)] = 57970, + [SMALL_STATE(2091)] = 58026, + [SMALL_STATE(2092)] = 58078, + [SMALL_STATE(2093)] = 58152, + [SMALL_STATE(2094)] = 58228, + [SMALL_STATE(2095)] = 58306, + [SMALL_STATE(2096)] = 58372, + [SMALL_STATE(2097)] = 58432, + [SMALL_STATE(2098)] = 58500, + [SMALL_STATE(2099)] = 58570, + [SMALL_STATE(2100)] = 58642, + [SMALL_STATE(2101)] = 58698, + [SMALL_STATE(2102)] = 58752, + [SMALL_STATE(2103)] = 58806, + [SMALL_STATE(2104)] = 58860, + [SMALL_STATE(2105)] = 58910, + [SMALL_STATE(2106)] = 58964, + [SMALL_STATE(2107)] = 59018, + [SMALL_STATE(2108)] = 59068, + [SMALL_STATE(2109)] = 59122, + [SMALL_STATE(2110)] = 59176, [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(2113)] = 59352, + [SMALL_STATE(2114)] = 59401, + [SMALL_STATE(2115)] = 59480, + [SMALL_STATE(2116)] = 59527, + [SMALL_STATE(2117)] = 59576, + [SMALL_STATE(2118)] = 59623, + [SMALL_STATE(2119)] = 59674, + [SMALL_STATE(2120)] = 59753, + [SMALL_STATE(2121)] = 59802, + [SMALL_STATE(2122)] = 59851, + [SMALL_STATE(2123)] = 59898, + [SMALL_STATE(2124)] = 59947, + [SMALL_STATE(2125)] = 59994, + [SMALL_STATE(2126)] = 60043, + [SMALL_STATE(2127)] = 60090, + [SMALL_STATE(2128)] = 60135, + [SMALL_STATE(2129)] = 60214, + [SMALL_STATE(2130)] = 60293, + [SMALL_STATE(2131)] = 60372, + [SMALL_STATE(2132)] = 60421, + [SMALL_STATE(2133)] = 60470, + [SMALL_STATE(2134)] = 60521, [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(2138)] = 60738, + [SMALL_STATE(2139)] = 60784, + [SMALL_STATE(2140)] = 60832, + [SMALL_STATE(2141)] = 60878, + [SMALL_STATE(2142)] = 60924, + [SMALL_STATE(2143)] = 60970, + [SMALL_STATE(2144)] = 61016, + [SMALL_STATE(2145)] = 61062, + [SMALL_STATE(2146)] = 61108, + [SMALL_STATE(2147)] = 61168, + [SMALL_STATE(2148)] = 61226, + [SMALL_STATE(2149)] = 61278, + [SMALL_STATE(2150)] = 61326, + [SMALL_STATE(2151)] = 61396, + [SMALL_STATE(2152)] = 61468, + [SMALL_STATE(2153)] = 61542, + [SMALL_STATE(2154)] = 61588, + [SMALL_STATE(2155)] = 61650, + [SMALL_STATE(2156)] = 61706, + [SMALL_STATE(2157)] = 61770, + [SMALL_STATE(2158)] = 61836, + [SMALL_STATE(2159)] = 61904, + [SMALL_STATE(2160)] = 61952, + [SMALL_STATE(2161)] = 61998, + [SMALL_STATE(2162)] = 62044, + [SMALL_STATE(2163)] = 62090, + [SMALL_STATE(2164)] = 62136, + [SMALL_STATE(2165)] = 62182, + [SMALL_STATE(2166)] = 62242, + [SMALL_STATE(2167)] = 62300, + [SMALL_STATE(2168)] = 62352, + [SMALL_STATE(2169)] = 62400, + [SMALL_STATE(2170)] = 62470, + [SMALL_STATE(2171)] = 62542, + [SMALL_STATE(2172)] = 62616, + [SMALL_STATE(2173)] = 62678, + [SMALL_STATE(2174)] = 62734, + [SMALL_STATE(2175)] = 62798, + [SMALL_STATE(2176)] = 62864, + [SMALL_STATE(2177)] = 62932, + [SMALL_STATE(2178)] = 62978, + [SMALL_STATE(2179)] = 63026, + [SMALL_STATE(2180)] = 63118, + [SMALL_STATE(2181)] = 63164, + [SMALL_STATE(2182)] = 63210, + [SMALL_STATE(2183)] = 63302, + [SMALL_STATE(2184)] = 63348, + [SMALL_STATE(2185)] = 63394, + [SMALL_STATE(2186)] = 63486, + [SMALL_STATE(2187)] = 63532, + [SMALL_STATE(2188)] = 63578, + [SMALL_STATE(2189)] = 63624, + [SMALL_STATE(2190)] = 63672, + [SMALL_STATE(2191)] = 63718, + [SMALL_STATE(2192)] = 63764, + [SMALL_STATE(2193)] = 63810, + [SMALL_STATE(2194)] = 63856, + [SMALL_STATE(2195)] = 63902, + [SMALL_STATE(2196)] = 63950, + [SMALL_STATE(2197)] = 63996, + [SMALL_STATE(2198)] = 64042, + [SMALL_STATE(2199)] = 64088, + [SMALL_STATE(2200)] = 64136, + [SMALL_STATE(2201)] = 64184, + [SMALL_STATE(2202)] = 64230, + [SMALL_STATE(2203)] = 64276, + [SMALL_STATE(2204)] = 64322, + [SMALL_STATE(2205)] = 64368, + [SMALL_STATE(2206)] = 64414, + [SMALL_STATE(2207)] = 64460, + [SMALL_STATE(2208)] = 64506, + [SMALL_STATE(2209)] = 64554, + [SMALL_STATE(2210)] = 64600, + [SMALL_STATE(2211)] = 64646, + [SMALL_STATE(2212)] = 64692, [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(2218)] = 65103, + [SMALL_STATE(2219)] = 65148, + [SMALL_STATE(2220)] = 65221, [SMALL_STATE(2221)] = 65272, [SMALL_STATE(2222)] = 65322, - [SMALL_STATE(2223)] = 65368, - [SMALL_STATE(2224)] = 65418, - [SMALL_STATE(2225)] = 65504, + [SMALL_STATE(2223)] = 65372, + [SMALL_STATE(2224)] = 65458, + [SMALL_STATE(2225)] = 65508, [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(2229)] = 65699, + [SMALL_STATE(2230)] = 65748, + [SMALL_STATE(2231)] = 65797, + [SMALL_STATE(2232)] = 65840, + [SMALL_STATE(2233)] = 65889, + [SMALL_STATE(2234)] = 65932, + [SMALL_STATE(2235)] = 65979, + [SMALL_STATE(2236)] = 66030, + [SMALL_STATE(2237)] = 66079, + [SMALL_STATE(2238)] = 66122, + [SMALL_STATE(2239)] = 66165, + [SMALL_STATE(2240)] = 66208, + [SMALL_STATE(2241)] = 66251, + [SMALL_STATE(2242)] = 66300, [SMALL_STATE(2243)] = 66345, - [SMALL_STATE(2244)] = 66388, - [SMALL_STATE(2245)] = 66431, + [SMALL_STATE(2244)] = 66390, + [SMALL_STATE(2245)] = 66433, [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(2248)] = 66634, + [SMALL_STATE(2249)] = 66676, + [SMALL_STATE(2250)] = 66718, + [SMALL_STATE(2251)] = 66798, [SMALL_STATE(2252)] = 66842, [SMALL_STATE(2253)] = 66888, - [SMALL_STATE(2254)] = 66929, + [SMALL_STATE(2254)] = 66933, [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(2258)] = 67103, + [SMALL_STATE(2259)] = 67147, + [SMALL_STATE(2260)] = 67229, + [SMALL_STATE(2261)] = 67273, + [SMALL_STATE(2262)] = 67317, [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(2266)] = 67572, + [SMALL_STATE(2267)] = 67648, + [SMALL_STATE(2268)] = 67724, + [SMALL_STATE(2269)] = 67800, + [SMALL_STATE(2270)] = 67876, + [SMALL_STATE(2271)] = 67952, + [SMALL_STATE(2272)] = 68028, + [SMALL_STATE(2273)] = 68104, + [SMALL_STATE(2274)] = 68150, + [SMALL_STATE(2275)] = 68226, + [SMALL_STATE(2276)] = 68302, + [SMALL_STATE(2277)] = 68378, + [SMALL_STATE(2278)] = 68422, + [SMALL_STATE(2279)] = 68464, + [SMALL_STATE(2280)] = 68540, + [SMALL_STATE(2281)] = 68586, + [SMALL_STATE(2282)] = 68632, + [SMALL_STATE(2283)] = 68708, + [SMALL_STATE(2284)] = 68784, + [SMALL_STATE(2285)] = 68860, + [SMALL_STATE(2286)] = 68936, + [SMALL_STATE(2287)] = 69012, + [SMALL_STATE(2288)] = 69088, + [SMALL_STATE(2289)] = 69164, + [SMALL_STATE(2290)] = 69240, + [SMALL_STATE(2291)] = 69316, + [SMALL_STATE(2292)] = 69392, + [SMALL_STATE(2293)] = 69468, [SMALL_STATE(2294)] = 69544, [SMALL_STATE(2295)] = 69620, [SMALL_STATE(2296)] = 69696, - [SMALL_STATE(2297)] = 69735, + [SMALL_STATE(2297)] = 69745, [SMALL_STATE(2298)] = 69784, - [SMALL_STATE(2299)] = 69835, + [SMALL_STATE(2299)] = 69833, [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(2302)] = 70003, + [SMALL_STATE(2303)] = 70049, + [SMALL_STATE(2304)] = 70103, + [SMALL_STATE(2305)] = 70143, + [SMALL_STATE(2306)] = 70183, + [SMALL_STATE(2307)] = 70253, + [SMALL_STATE(2308)] = 70323, + [SMALL_STATE(2309)] = 70393, + [SMALL_STATE(2310)] = 70463, + [SMALL_STATE(2311)] = 70533, + [SMALL_STATE(2312)] = 70603, + [SMALL_STATE(2313)] = 70673, + [SMALL_STATE(2314)] = 70743, + [SMALL_STATE(2315)] = 70813, + [SMALL_STATE(2316)] = 70883, + [SMALL_STATE(2317)] = 70953, + [SMALL_STATE(2318)] = 71001, + [SMALL_STATE(2319)] = 71049, + [SMALL_STATE(2320)] = 71097, + [SMALL_STATE(2321)] = 71143, + [SMALL_STATE(2322)] = 71189, [SMALL_STATE(2323)] = 71235, - [SMALL_STATE(2324)] = 71280, - [SMALL_STATE(2325)] = 71317, - [SMALL_STATE(2326)] = 71368, - [SMALL_STATE(2327)] = 71421, + [SMALL_STATE(2324)] = 71274, + [SMALL_STATE(2325)] = 71325, + [SMALL_STATE(2326)] = 71372, + [SMALL_STATE(2327)] = 71423, [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(2330)] = 71536, + [SMALL_STATE(2331)] = 71587, + [SMALL_STATE(2332)] = 71640, + [SMALL_STATE(2333)] = 71685, + [SMALL_STATE(2334)] = 71730, + [SMALL_STATE(2335)] = 71775, [SMALL_STATE(2336)] = 71820, - [SMALL_STATE(2337)] = 71854, - [SMALL_STATE(2338)] = 71892, + [SMALL_STATE(2337)] = 71870, + [SMALL_STATE(2338)] = 71904, [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(2341)] = 72008, + [SMALL_STATE(2342)] = 72054, + [SMALL_STATE(2343)] = 72092, + [SMALL_STATE(2344)] = 72140, + [SMALL_STATE(2345)] = 72188, + [SMALL_STATE(2346)] = 72236, + [SMALL_STATE(2347)] = 72284, + [SMALL_STATE(2348)] = 72322, [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(2350)] = 72422, + [SMALL_STATE(2351)] = 72460, + [SMALL_STATE(2352)] = 72498, + [SMALL_STATE(2353)] = 72536, + [SMALL_STATE(2354)] = 72570, + [SMALL_STATE(2355)] = 72604, + [SMALL_STATE(2356)] = 72640, + [SMALL_STATE(2357)] = 72674, + [SMALL_STATE(2358)] = 72708, + [SMALL_STATE(2359)] = 72742, + [SMALL_STATE(2360)] = 72776, + [SMALL_STATE(2361)] = 72816, + [SMALL_STATE(2362)] = 72856, + [SMALL_STATE(2363)] = 72891, + [SMALL_STATE(2364)] = 72930, + [SMALL_STATE(2365)] = 72965, + [SMALL_STATE(2366)] = 72998, + [SMALL_STATE(2367)] = 73031, + [SMALL_STATE(2368)] = 73068, + [SMALL_STATE(2369)] = 73107, + [SMALL_STATE(2370)] = 73146, + [SMALL_STATE(2371)] = 73181, + [SMALL_STATE(2372)] = 73232, + [SMALL_STATE(2373)] = 73273, + [SMALL_STATE(2374)] = 73314, + [SMALL_STATE(2375)] = 73351, + [SMALL_STATE(2376)] = 73384, + [SMALL_STATE(2377)] = 73423, + [SMALL_STATE(2378)] = 73458, + [SMALL_STATE(2379)] = 73505, + [SMALL_STATE(2380)] = 73552, + [SMALL_STATE(2381)] = 73599, + [SMALL_STATE(2382)] = 73640, + [SMALL_STATE(2383)] = 73677, + [SMALL_STATE(2384)] = 73724, + [SMALL_STATE(2385)] = 73761, + [SMALL_STATE(2386)] = 73800, + [SMALL_STATE(2387)] = 73847, + [SMALL_STATE(2388)] = 73886, + [SMALL_STATE(2389)] = 73921, + [SMALL_STATE(2390)] = 73953, + [SMALL_STATE(2391)] = 74001, + [SMALL_STATE(2392)] = 74033, + [SMALL_STATE(2393)] = 74073, + [SMALL_STATE(2394)] = 74107, + [SMALL_STATE(2395)] = 74143, + [SMALL_STATE(2396)] = 74175, + [SMALL_STATE(2397)] = 74213, + [SMALL_STATE(2398)] = 74251, + [SMALL_STATE(2399)] = 74283, + [SMALL_STATE(2400)] = 74321, + [SMALL_STATE(2401)] = 74353, + [SMALL_STATE(2402)] = 74385, + [SMALL_STATE(2403)] = 74425, + [SMALL_STATE(2404)] = 74461, + [SMALL_STATE(2405)] = 74497, + [SMALL_STATE(2406)] = 74531, + [SMALL_STATE(2407)] = 74569, + [SMALL_STATE(2408)] = 74603, + [SMALL_STATE(2409)] = 74635, + [SMALL_STATE(2410)] = 74683, + [SMALL_STATE(2411)] = 74721, + [SMALL_STATE(2412)] = 74759, + [SMALL_STATE(2413)] = 74797, + [SMALL_STATE(2414)] = 74835, + [SMALL_STATE(2415)] = 74881, + [SMALL_STATE(2416)] = 74919, + [SMALL_STATE(2417)] = 74953, + [SMALL_STATE(2418)] = 74991, + [SMALL_STATE(2419)] = 75023, + [SMALL_STATE(2420)] = 75055, + [SMALL_STATE(2421)] = 75091, + [SMALL_STATE(2422)] = 75127, + [SMALL_STATE(2423)] = 75163, + [SMALL_STATE(2424)] = 75197, + [SMALL_STATE(2425)] = 75245, + [SMALL_STATE(2426)] = 75285, + [SMALL_STATE(2427)] = 75316, + [SMALL_STATE(2428)] = 75347, + [SMALL_STATE(2429)] = 75392, + [SMALL_STATE(2430)] = 75423, + [SMALL_STATE(2431)] = 75464, + [SMALL_STATE(2432)] = 75495, + [SMALL_STATE(2433)] = 75530, + [SMALL_STATE(2434)] = 75561, + [SMALL_STATE(2435)] = 75596, + [SMALL_STATE(2436)] = 75627, + [SMALL_STATE(2437)] = 75664, + [SMALL_STATE(2438)] = 75695, + [SMALL_STATE(2439)] = 75732, + [SMALL_STATE(2440)] = 75763, + [SMALL_STATE(2441)] = 75794, + [SMALL_STATE(2442)] = 75825, + [SMALL_STATE(2443)] = 75860, + [SMALL_STATE(2444)] = 75897, + [SMALL_STATE(2445)] = 75932, + [SMALL_STATE(2446)] = 75963, + [SMALL_STATE(2447)] = 75998, + [SMALL_STATE(2448)] = 76031, + [SMALL_STATE(2449)] = 76070, + [SMALL_STATE(2450)] = 76103, + [SMALL_STATE(2451)] = 76148, + [SMALL_STATE(2452)] = 76181, + [SMALL_STATE(2453)] = 76226, + [SMALL_STATE(2454)] = 76271, + [SMALL_STATE(2455)] = 76304, + [SMALL_STATE(2456)] = 76335, + [SMALL_STATE(2457)] = 76374, + [SMALL_STATE(2458)] = 76407, + [SMALL_STATE(2459)] = 76436, + [SMALL_STATE(2460)] = 76481, + [SMALL_STATE(2461)] = 76512, + [SMALL_STATE(2462)] = 76541, + [SMALL_STATE(2463)] = 76570, + [SMALL_STATE(2464)] = 76609, + [SMALL_STATE(2465)] = 76646, + [SMALL_STATE(2466)] = 76678, + [SMALL_STATE(2467)] = 76708, + [SMALL_STATE(2468)] = 76738, + [SMALL_STATE(2469)] = 76774, + [SMALL_STATE(2470)] = 76808, + [SMALL_STATE(2471)] = 76838, + [SMALL_STATE(2472)] = 76868, + [SMALL_STATE(2473)] = 76920, + [SMALL_STATE(2474)] = 76956, + [SMALL_STATE(2475)] = 76986, + [SMALL_STATE(2476)] = 77026, + [SMALL_STATE(2477)] = 77056, + [SMALL_STATE(2478)] = 77094, + [SMALL_STATE(2479)] = 77128, + [SMALL_STATE(2480)] = 77162, + [SMALL_STATE(2481)] = 77194, + [SMALL_STATE(2482)] = 77224, + [SMALL_STATE(2483)] = 77254, + [SMALL_STATE(2484)] = 77304, + [SMALL_STATE(2485)] = 77340, + [SMALL_STATE(2486)] = 77392, + [SMALL_STATE(2487)] = 77424, + [SMALL_STATE(2488)] = 77460, + [SMALL_STATE(2489)] = 77490, + [SMALL_STATE(2490)] = 77522, + [SMALL_STATE(2491)] = 77558, + [SMALL_STATE(2492)] = 77588, + [SMALL_STATE(2493)] = 77622, + [SMALL_STATE(2494)] = 77658, + [SMALL_STATE(2495)] = 77694, + [SMALL_STATE(2496)] = 77732, + [SMALL_STATE(2497)] = 77762, + [SMALL_STATE(2498)] = 77814, + [SMALL_STATE(2499)] = 77852, + [SMALL_STATE(2500)] = 77904, + [SMALL_STATE(2501)] = 77940, + [SMALL_STATE(2502)] = 77970, + [SMALL_STATE(2503)] = 78004, + [SMALL_STATE(2504)] = 78042, + [SMALL_STATE(2505)] = 78080, + [SMALL_STATE(2506)] = 78112, + [SMALL_STATE(2507)] = 78144, + [SMALL_STATE(2508)] = 78176, + [SMALL_STATE(2509)] = 78212, + [SMALL_STATE(2510)] = 78244, + [SMALL_STATE(2511)] = 78276, + [SMALL_STATE(2512)] = 78308, + [SMALL_STATE(2513)] = 78340, + [SMALL_STATE(2514)] = 78372, + [SMALL_STATE(2515)] = 78404, + [SMALL_STATE(2516)] = 78436, + [SMALL_STATE(2517)] = 78466, + [SMALL_STATE(2518)] = 78497, + [SMALL_STATE(2519)] = 78534, + [SMALL_STATE(2520)] = 78571, + [SMALL_STATE(2521)] = 78608, + [SMALL_STATE(2522)] = 78637, + [SMALL_STATE(2523)] = 78666, + [SMALL_STATE(2524)] = 78693, + [SMALL_STATE(2525)] = 78722, + [SMALL_STATE(2526)] = 78751, + [SMALL_STATE(2527)] = 78782, + [SMALL_STATE(2528)] = 78819, + [SMALL_STATE(2529)] = 78850, + [SMALL_STATE(2530)] = 78885, + [SMALL_STATE(2531)] = 78914, + [SMALL_STATE(2532)] = 78943, + [SMALL_STATE(2533)] = 78974, + [SMALL_STATE(2534)] = 79007, + [SMALL_STATE(2535)] = 79040, + [SMALL_STATE(2536)] = 79071, + [SMALL_STATE(2537)] = 79102, + [SMALL_STATE(2538)] = 79133, + [SMALL_STATE(2539)] = 79168, + [SMALL_STATE(2540)] = 79197, + [SMALL_STATE(2541)] = 79234, + [SMALL_STATE(2542)] = 79261, + [SMALL_STATE(2543)] = 79294, + [SMALL_STATE(2544)] = 79323, + [SMALL_STATE(2545)] = 79354, + [SMALL_STATE(2546)] = 79383, + [SMALL_STATE(2547)] = 79420, + [SMALL_STATE(2548)] = 79447, + [SMALL_STATE(2549)] = 79474, + [SMALL_STATE(2550)] = 79503, + [SMALL_STATE(2551)] = 79536, + [SMALL_STATE(2552)] = 79563, + [SMALL_STATE(2553)] = 79590, + [SMALL_STATE(2554)] = 79619, + [SMALL_STATE(2555)] = 79650, + [SMALL_STATE(2556)] = 79687, + [SMALL_STATE(2557)] = 79720, + [SMALL_STATE(2558)] = 79751, + [SMALL_STATE(2559)] = 79788, + [SMALL_STATE(2560)] = 79817, + [SMALL_STATE(2561)] = 79848, + [SMALL_STATE(2562)] = 79885, + [SMALL_STATE(2563)] = 79916, + [SMALL_STATE(2564)] = 79953, + [SMALL_STATE(2565)] = 79990, + [SMALL_STATE(2566)] = 80027, + [SMALL_STATE(2567)] = 80058, + [SMALL_STATE(2568)] = 80095, + [SMALL_STATE(2569)] = 80124, + [SMALL_STATE(2570)] = 80155, + [SMALL_STATE(2571)] = 80184, + [SMALL_STATE(2572)] = 80215, + [SMALL_STATE(2573)] = 80244, + [SMALL_STATE(2574)] = 80277, + [SMALL_STATE(2575)] = 80308, + [SMALL_STATE(2576)] = 80341, + [SMALL_STATE(2577)] = 80370, + [SMALL_STATE(2578)] = 80401, + [SMALL_STATE(2579)] = 80432, + [SMALL_STATE(2580)] = 80461, + [SMALL_STATE(2581)] = 80490, + [SMALL_STATE(2582)] = 80519, + [SMALL_STATE(2583)] = 80548, + [SMALL_STATE(2584)] = 80579, + [SMALL_STATE(2585)] = 80608, + [SMALL_STATE(2586)] = 80639, + [SMALL_STATE(2587)] = 80670, + [SMALL_STATE(2588)] = 80701, + [SMALL_STATE(2589)] = 80732, + [SMALL_STATE(2590)] = 80763, + [SMALL_STATE(2591)] = 80794, + [SMALL_STATE(2592)] = 80825, + [SMALL_STATE(2593)] = 80854, + [SMALL_STATE(2594)] = 80885, + [SMALL_STATE(2595)] = 80917, + [SMALL_STATE(2596)] = 80961, + [SMALL_STATE(2597)] = 81005, + [SMALL_STATE(2598)] = 81033, + [SMALL_STATE(2599)] = 81061, + [SMALL_STATE(2600)] = 81105, + [SMALL_STATE(2601)] = 81141, + [SMALL_STATE(2602)] = 81169, + [SMALL_STATE(2603)] = 81205, + [SMALL_STATE(2604)] = 81233, + [SMALL_STATE(2605)] = 81263, + [SMALL_STATE(2606)] = 81293, [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(2608)] = 81367, + [SMALL_STATE(2609)] = 81395, + [SMALL_STATE(2610)] = 81423, + [SMALL_STATE(2611)] = 81459, + [SMALL_STATE(2612)] = 81487, + [SMALL_STATE(2613)] = 81523, + [SMALL_STATE(2614)] = 81559, + [SMALL_STATE(2615)] = 81595, + [SMALL_STATE(2616)] = 81625, + [SMALL_STATE(2617)] = 81653, + [SMALL_STATE(2618)] = 81683, + [SMALL_STATE(2619)] = 81713, + [SMALL_STATE(2620)] = 81743, + [SMALL_STATE(2621)] = 81777, + [SMALL_STATE(2622)] = 81813, + [SMALL_STATE(2623)] = 81841, + [SMALL_STATE(2624)] = 81873, + [SMALL_STATE(2625)] = 81901, + [SMALL_STATE(2626)] = 81929, [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(2629)] = 82015, + [SMALL_STATE(2630)] = 82043, + [SMALL_STATE(2631)] = 82071, + [SMALL_STATE(2632)] = 82099, + [SMALL_STATE(2633)] = 82137, + [SMALL_STATE(2634)] = 82181, + [SMALL_STATE(2635)] = 82211, + [SMALL_STATE(2636)] = 82245, + [SMALL_STATE(2637)] = 82277, + [SMALL_STATE(2638)] = 82313, + [SMALL_STATE(2639)] = 82341, + [SMALL_STATE(2640)] = 82377, + [SMALL_STATE(2641)] = 82413, + [SMALL_STATE(2642)] = 82445, + [SMALL_STATE(2643)] = 82477, + [SMALL_STATE(2644)] = 82509, [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(2646)] = 82573, + [SMALL_STATE(2647)] = 82603, + [SMALL_STATE(2648)] = 82633, + [SMALL_STATE(2649)] = 82663, + [SMALL_STATE(2650)] = 82693, + [SMALL_STATE(2651)] = 82723, + [SMALL_STATE(2652)] = 82753, + [SMALL_STATE(2653)] = 82781, + [SMALL_STATE(2654)] = 82813, + [SMALL_STATE(2655)] = 82843, + [SMALL_STATE(2656)] = 82873, + [SMALL_STATE(2657)] = 82909, + [SMALL_STATE(2658)] = 82945, + [SMALL_STATE(2659)] = 82981, + [SMALL_STATE(2660)] = 83012, + [SMALL_STATE(2661)] = 83039, + [SMALL_STATE(2662)] = 83074, + [SMALL_STATE(2663)] = 83105, + [SMALL_STATE(2664)] = 83136, + [SMALL_STATE(2665)] = 83167, + [SMALL_STATE(2666)] = 83192, + [SMALL_STATE(2667)] = 83219, + [SMALL_STATE(2668)] = 83252, + [SMALL_STATE(2669)] = 83279, + [SMALL_STATE(2670)] = 83312, + [SMALL_STATE(2671)] = 83347, + [SMALL_STATE(2672)] = 83382, + [SMALL_STATE(2673)] = 83417, + [SMALL_STATE(2674)] = 83452, + [SMALL_STATE(2675)] = 83487, + [SMALL_STATE(2676)] = 83522, + [SMALL_STATE(2677)] = 83547, + [SMALL_STATE(2678)] = 83580, + [SMALL_STATE(2679)] = 83613, + [SMALL_STATE(2680)] = 83642, + [SMALL_STATE(2681)] = 83667, + [SMALL_STATE(2682)] = 83694, + [SMALL_STATE(2683)] = 83721, + [SMALL_STATE(2684)] = 83756, + [SMALL_STATE(2685)] = 83783, + [SMALL_STATE(2686)] = 83814, + [SMALL_STATE(2687)] = 83839, + [SMALL_STATE(2688)] = 83864, + [SMALL_STATE(2689)] = 83895, + [SMALL_STATE(2690)] = 83926, + [SMALL_STATE(2691)] = 83951, + [SMALL_STATE(2692)] = 83978, + [SMALL_STATE(2693)] = 84003, + [SMALL_STATE(2694)] = 84028, + [SMALL_STATE(2695)] = 84055, + [SMALL_STATE(2696)] = 84084, + [SMALL_STATE(2697)] = 84111, + [SMALL_STATE(2698)] = 84140, + [SMALL_STATE(2699)] = 84169, + [SMALL_STATE(2700)] = 84194, + [SMALL_STATE(2701)] = 84227, + [SMALL_STATE(2702)] = 84252, + [SMALL_STATE(2703)] = 84285, + [SMALL_STATE(2704)] = 84312, + [SMALL_STATE(2705)] = 84339, + [SMALL_STATE(2706)] = 84376, + [SMALL_STATE(2707)] = 84405, + [SMALL_STATE(2708)] = 84434, + [SMALL_STATE(2709)] = 84469, + [SMALL_STATE(2710)] = 84504, + [SMALL_STATE(2711)] = 84531, + [SMALL_STATE(2712)] = 84562, + [SMALL_STATE(2713)] = 84593, + [SMALL_STATE(2714)] = 84624, + [SMALL_STATE(2715)] = 84655, + [SMALL_STATE(2716)] = 84684, + [SMALL_STATE(2717)] = 84713, + [SMALL_STATE(2718)] = 84744, + [SMALL_STATE(2719)] = 84779, + [SMALL_STATE(2720)] = 84806, + [SMALL_STATE(2721)] = 84833, + [SMALL_STATE(2722)] = 84860, + [SMALL_STATE(2723)] = 84889, + [SMALL_STATE(2724)] = 84920, + [SMALL_STATE(2725)] = 84949, + [SMALL_STATE(2726)] = 84976, + [SMALL_STATE(2727)] = 85007, + [SMALL_STATE(2728)] = 85038, + [SMALL_STATE(2729)] = 85069, + [SMALL_STATE(2730)] = 85098, + [SMALL_STATE(2731)] = 85127, + [SMALL_STATE(2732)] = 85158, + [SMALL_STATE(2733)] = 85191, + [SMALL_STATE(2734)] = 85222, + [SMALL_STATE(2735)] = 85251, + [SMALL_STATE(2736)] = 85282, + [SMALL_STATE(2737)] = 85313, + [SMALL_STATE(2738)] = 85346, + [SMALL_STATE(2739)] = 85377, + [SMALL_STATE(2740)] = 85404, + [SMALL_STATE(2741)] = 85437, + [SMALL_STATE(2742)] = 85468, + [SMALL_STATE(2743)] = 85495, + [SMALL_STATE(2744)] = 85522, + [SMALL_STATE(2745)] = 85551, + [SMALL_STATE(2746)] = 85584, + [SMALL_STATE(2747)] = 85611, + [SMALL_STATE(2748)] = 85642, + [SMALL_STATE(2749)] = 85673, + [SMALL_STATE(2750)] = 85700, + [SMALL_STATE(2751)] = 85731, + [SMALL_STATE(2752)] = 85762, [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(2754)] = 85816, + [SMALL_STATE(2755)] = 85843, + [SMALL_STATE(2756)] = 85870, + [SMALL_STATE(2757)] = 85899, + [SMALL_STATE(2758)] = 85926, [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(2761)] = 86019, + [SMALL_STATE(2762)] = 86046, + [SMALL_STATE(2763)] = 86073, + [SMALL_STATE(2764)] = 86104, + [SMALL_STATE(2765)] = 86135, + [SMALL_STATE(2766)] = 86166, [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(2768)] = 86232, + [SMALL_STATE(2769)] = 86263, + [SMALL_STATE(2770)] = 86294, + [SMALL_STATE(2771)] = 86329, + [SMALL_STATE(2772)] = 86362, + [SMALL_STATE(2773)] = 86395, + [SMALL_STATE(2774)] = 86428, + [SMALL_STATE(2775)] = 86455, + [SMALL_STATE(2776)] = 86484, + [SMALL_STATE(2777)] = 86515, + [SMALL_STATE(2778)] = 86546, + [SMALL_STATE(2779)] = 86579, + [SMALL_STATE(2780)] = 86610, + [SMALL_STATE(2781)] = 86643, + [SMALL_STATE(2782)] = 86672, + [SMALL_STATE(2783)] = 86705, + [SMALL_STATE(2784)] = 86740, + [SMALL_STATE(2785)] = 86769, + [SMALL_STATE(2786)] = 86802, + [SMALL_STATE(2787)] = 86829, + [SMALL_STATE(2788)] = 86862, + [SMALL_STATE(2789)] = 86893, + [SMALL_STATE(2790)] = 86920, + [SMALL_STATE(2791)] = 86947, + [SMALL_STATE(2792)] = 86974, + [SMALL_STATE(2793)] = 87007, + [SMALL_STATE(2794)] = 87034, [SMALL_STATE(2795)] = 87061, - [SMALL_STATE(2796)] = 87096, - [SMALL_STATE(2797)] = 87131, - [SMALL_STATE(2798)] = 87156, + [SMALL_STATE(2796)] = 87092, + [SMALL_STATE(2797)] = 87119, + [SMALL_STATE(2798)] = 87150, [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(2800)] = 87210, + [SMALL_STATE(2801)] = 87241, + [SMALL_STATE(2802)] = 87270, + [SMALL_STATE(2803)] = 87299, + [SMALL_STATE(2804)] = 87326, + [SMALL_STATE(2805)] = 87355, + [SMALL_STATE(2806)] = 87388, + [SMALL_STATE(2807)] = 87419, + [SMALL_STATE(2808)] = 87452, + [SMALL_STATE(2809)] = 87483, + [SMALL_STATE(2810)] = 87510, + [SMALL_STATE(2811)] = 87541, + [SMALL_STATE(2812)] = 87568, + [SMALL_STATE(2813)] = 87599, + [SMALL_STATE(2814)] = 87630, + [SMALL_STATE(2815)] = 87661, + [SMALL_STATE(2816)] = 87692, + [SMALL_STATE(2817)] = 87719, + [SMALL_STATE(2818)] = 87746, + [SMALL_STATE(2819)] = 87777, + [SMALL_STATE(2820)] = 87808, + [SMALL_STATE(2821)] = 87839, + [SMALL_STATE(2822)] = 87870, + [SMALL_STATE(2823)] = 87897, + [SMALL_STATE(2824)] = 87922, + [SMALL_STATE(2825)] = 87955, + [SMALL_STATE(2826)] = 87982, + [SMALL_STATE(2827)] = 88007, + [SMALL_STATE(2828)] = 88042, + [SMALL_STATE(2829)] = 88067, + [SMALL_STATE(2830)] = 88094, + [SMALL_STATE(2831)] = 88121, + [SMALL_STATE(2832)] = 88148, + [SMALL_STATE(2833)] = 88175, + [SMALL_STATE(2834)] = 88206, + [SMALL_STATE(2835)] = 88237, + [SMALL_STATE(2836)] = 88264, + [SMALL_STATE(2837)] = 88295, + [SMALL_STATE(2838)] = 88326, + [SMALL_STATE(2839)] = 88357, + [SMALL_STATE(2840)] = 88384, + [SMALL_STATE(2841)] = 88411, + [SMALL_STATE(2842)] = 88438, + [SMALL_STATE(2843)] = 88469, + [SMALL_STATE(2844)] = 88493, + [SMALL_STATE(2845)] = 88519, + [SMALL_STATE(2846)] = 88549, + [SMALL_STATE(2847)] = 88579, + [SMALL_STATE(2848)] = 88631, + [SMALL_STATE(2849)] = 88683, + [SMALL_STATE(2850)] = 88713, + [SMALL_STATE(2851)] = 88737, + [SMALL_STATE(2852)] = 88789, + [SMALL_STATE(2853)] = 88841, + [SMALL_STATE(2854)] = 88887, + [SMALL_STATE(2855)] = 88917, + [SMALL_STATE(2856)] = 88943, + [SMALL_STATE(2857)] = 88967, + [SMALL_STATE(2858)] = 89007, + [SMALL_STATE(2859)] = 89035, + [SMALL_STATE(2860)] = 89061, + [SMALL_STATE(2861)] = 89093, + [SMALL_STATE(2862)] = 89145, + [SMALL_STATE(2863)] = 89175, + [SMALL_STATE(2864)] = 89203, + [SMALL_STATE(2865)] = 89227, + [SMALL_STATE(2866)] = 89257, + [SMALL_STATE(2867)] = 89283, + [SMALL_STATE(2868)] = 89309, + [SMALL_STATE(2869)] = 89339, + [SMALL_STATE(2870)] = 89369, + [SMALL_STATE(2871)] = 89399, + [SMALL_STATE(2872)] = 89429, + [SMALL_STATE(2873)] = 89457, + [SMALL_STATE(2874)] = 89487, + [SMALL_STATE(2875)] = 89517, + [SMALL_STATE(2876)] = 89569, + [SMALL_STATE(2877)] = 89601, + [SMALL_STATE(2878)] = 89631, + [SMALL_STATE(2879)] = 89661, + [SMALL_STATE(2880)] = 89691, + [SMALL_STATE(2881)] = 89721, + [SMALL_STATE(2882)] = 89747, + [SMALL_STATE(2883)] = 89771, + [SMALL_STATE(2884)] = 89797, + [SMALL_STATE(2885)] = 89821, + [SMALL_STATE(2886)] = 89845, + [SMALL_STATE(2887)] = 89869, + [SMALL_STATE(2888)] = 89893, + [SMALL_STATE(2889)] = 89919, + [SMALL_STATE(2890)] = 89943, + [SMALL_STATE(2891)] = 89967, + [SMALL_STATE(2892)] = 89991, + [SMALL_STATE(2893)] = 90017, + [SMALL_STATE(2894)] = 90043, + [SMALL_STATE(2895)] = 90071, + [SMALL_STATE(2896)] = 90099, + [SMALL_STATE(2897)] = 90123, + [SMALL_STATE(2898)] = 90147, + [SMALL_STATE(2899)] = 90173, + [SMALL_STATE(2900)] = 90199, + [SMALL_STATE(2901)] = 90229, + [SMALL_STATE(2902)] = 90259, + [SMALL_STATE(2903)] = 90287, + [SMALL_STATE(2904)] = 90315, + [SMALL_STATE(2905)] = 90345, + [SMALL_STATE(2906)] = 90375, + [SMALL_STATE(2907)] = 90405, + [SMALL_STATE(2908)] = 90431, + [SMALL_STATE(2909)] = 90457, + [SMALL_STATE(2910)] = 90483, + [SMALL_STATE(2911)] = 90527, + [SMALL_STATE(2912)] = 90553, + [SMALL_STATE(2913)] = 90583, + [SMALL_STATE(2914)] = 90611, + [SMALL_STATE(2915)] = 90637, + [SMALL_STATE(2916)] = 90663, + [SMALL_STATE(2917)] = 90691, + [SMALL_STATE(2918)] = 90719, + [SMALL_STATE(2919)] = 90745, + [SMALL_STATE(2920)] = 90773, + [SMALL_STATE(2921)] = 90799, + [SMALL_STATE(2922)] = 90825, + [SMALL_STATE(2923)] = 90851, + [SMALL_STATE(2924)] = 90883, + [SMALL_STATE(2925)] = 90907, + [SMALL_STATE(2926)] = 90959, + [SMALL_STATE(2927)] = 90985, + [SMALL_STATE(2928)] = 91015, + [SMALL_STATE(2929)] = 91047, + [SMALL_STATE(2930)] = 91073, + [SMALL_STATE(2931)] = 91099, + [SMALL_STATE(2932)] = 91133, + [SMALL_STATE(2933)] = 91161, + [SMALL_STATE(2934)] = 91185, + [SMALL_STATE(2935)] = 91211, + [SMALL_STATE(2936)] = 91237, + [SMALL_STATE(2937)] = 91267, + [SMALL_STATE(2938)] = 91319, + [SMALL_STATE(2939)] = 91371, + [SMALL_STATE(2940)] = 91397, + [SMALL_STATE(2941)] = 91427, + [SMALL_STATE(2942)] = 91457, + [SMALL_STATE(2943)] = 91509, + [SMALL_STATE(2944)] = 91543, + [SMALL_STATE(2945)] = 91571, + [SMALL_STATE(2946)] = 91601, + [SMALL_STATE(2947)] = 91627, + [SMALL_STATE(2948)] = 91653, + [SMALL_STATE(2949)] = 91678, + [SMALL_STATE(2950)] = 91703, + [SMALL_STATE(2951)] = 91732, + [SMALL_STATE(2952)] = 91761, + [SMALL_STATE(2953)] = 91786, + [SMALL_STATE(2954)] = 91811, + [SMALL_STATE(2955)] = 91836, + [SMALL_STATE(2956)] = 91861, + [SMALL_STATE(2957)] = 91886, + [SMALL_STATE(2958)] = 91915, + [SMALL_STATE(2959)] = 91944, + [SMALL_STATE(2960)] = 91967, + [SMALL_STATE(2961)] = 91992, + [SMALL_STATE(2962)] = 92019, + [SMALL_STATE(2963)] = 92044, + [SMALL_STATE(2964)] = 92069, + [SMALL_STATE(2965)] = 92094, + [SMALL_STATE(2966)] = 92119, + [SMALL_STATE(2967)] = 92144, + [SMALL_STATE(2968)] = 92169, + [SMALL_STATE(2969)] = 92196, + [SMALL_STATE(2970)] = 92221, + [SMALL_STATE(2971)] = 92250, + [SMALL_STATE(2972)] = 92279, + [SMALL_STATE(2973)] = 92308, + [SMALL_STATE(2974)] = 92337, + [SMALL_STATE(2975)] = 92362, + [SMALL_STATE(2976)] = 92391, + [SMALL_STATE(2977)] = 92416, + [SMALL_STATE(2978)] = 92441, + [SMALL_STATE(2979)] = 92478, + [SMALL_STATE(2980)] = 92507, + [SMALL_STATE(2981)] = 92546, + [SMALL_STATE(2982)] = 92571, + [SMALL_STATE(2983)] = 92596, + [SMALL_STATE(2984)] = 92621, + [SMALL_STATE(2985)] = 92652, + [SMALL_STATE(2986)] = 92681, + [SMALL_STATE(2987)] = 92706, + [SMALL_STATE(2988)] = 92731, + [SMALL_STATE(2989)] = 92756, + [SMALL_STATE(2990)] = 92781, + [SMALL_STATE(2991)] = 92810, + [SMALL_STATE(2992)] = 92839, + [SMALL_STATE(2993)] = 92864, + [SMALL_STATE(2994)] = 92895, + [SMALL_STATE(2995)] = 92920, + [SMALL_STATE(2996)] = 92945, + [SMALL_STATE(2997)] = 92970, + [SMALL_STATE(2998)] = 92995, + [SMALL_STATE(2999)] = 93020, + [SMALL_STATE(3000)] = 93049, + [SMALL_STATE(3001)] = 93078, + [SMALL_STATE(3002)] = 93107, + [SMALL_STATE(3003)] = 93150, + [SMALL_STATE(3004)] = 93179, + [SMALL_STATE(3005)] = 93208, + [SMALL_STATE(3006)] = 93237, + [SMALL_STATE(3007)] = 93264, + [SMALL_STATE(3008)] = 93291, + [SMALL_STATE(3009)] = 93316, + [SMALL_STATE(3010)] = 93341, + [SMALL_STATE(3011)] = 93366, + [SMALL_STATE(3012)] = 93391, + [SMALL_STATE(3013)] = 93428, + [SMALL_STATE(3014)] = 93453, + [SMALL_STATE(3015)] = 93496, + [SMALL_STATE(3016)] = 93525, + [SMALL_STATE(3017)] = 93550, + [SMALL_STATE(3018)] = 93575, + [SMALL_STATE(3019)] = 93604, + [SMALL_STATE(3020)] = 93633, + [SMALL_STATE(3021)] = 93658, + [SMALL_STATE(3022)] = 93687, + [SMALL_STATE(3023)] = 93718, + [SMALL_STATE(3024)] = 93743, + [SMALL_STATE(3025)] = 93770, + [SMALL_STATE(3026)] = 93799, + [SMALL_STATE(3027)] = 93824, + [SMALL_STATE(3028)] = 93849, + [SMALL_STATE(3029)] = 93878, + [SMALL_STATE(3030)] = 93903, + [SMALL_STATE(3031)] = 93926, + [SMALL_STATE(3032)] = 93955, + [SMALL_STATE(3033)] = 93980, + [SMALL_STATE(3034)] = 94009, + [SMALL_STATE(3035)] = 94034, + [SMALL_STATE(3036)] = 94059, + [SMALL_STATE(3037)] = 94084, + [SMALL_STATE(3038)] = 94113, + [SMALL_STATE(3039)] = 94138, + [SMALL_STATE(3040)] = 94161, + [SMALL_STATE(3041)] = 94190, + [SMALL_STATE(3042)] = 94227, + [SMALL_STATE(3043)] = 94256, + [SMALL_STATE(3044)] = 94281, + [SMALL_STATE(3045)] = 94310, + [SMALL_STATE(3046)] = 94339, + [SMALL_STATE(3047)] = 94364, + [SMALL_STATE(3048)] = 94389, + [SMALL_STATE(3049)] = 94414, + [SMALL_STATE(3050)] = 94439, + [SMALL_STATE(3051)] = 94468, + [SMALL_STATE(3052)] = 94493, + [SMALL_STATE(3053)] = 94518, + [SMALL_STATE(3054)] = 94543, + [SMALL_STATE(3055)] = 94568, + [SMALL_STATE(3056)] = 94597, + [SMALL_STATE(3057)] = 94622, + [SMALL_STATE(3058)] = 94647, + [SMALL_STATE(3059)] = 94672, + [SMALL_STATE(3060)] = 94701, + [SMALL_STATE(3061)] = 94726, + [SMALL_STATE(3062)] = 94751, + [SMALL_STATE(3063)] = 94776, + [SMALL_STATE(3064)] = 94805, + [SMALL_STATE(3065)] = 94834, + [SMALL_STATE(3066)] = 94863, + [SMALL_STATE(3067)] = 94892, + [SMALL_STATE(3068)] = 94917, + [SMALL_STATE(3069)] = 94946, + [SMALL_STATE(3070)] = 94975, + [SMALL_STATE(3071)] = 95000, + [SMALL_STATE(3072)] = 95029, + [SMALL_STATE(3073)] = 95054, + [SMALL_STATE(3074)] = 95079, + [SMALL_STATE(3075)] = 95104, + [SMALL_STATE(3076)] = 95129, + [SMALL_STATE(3077)] = 95154, + [SMALL_STATE(3078)] = 95179, + [SMALL_STATE(3079)] = 95206, + [SMALL_STATE(3080)] = 95229, + [SMALL_STATE(3081)] = 95254, + [SMALL_STATE(3082)] = 95283, + [SMALL_STATE(3083)] = 95308, + [SMALL_STATE(3084)] = 95333, + [SMALL_STATE(3085)] = 95358, + [SMALL_STATE(3086)] = 95383, + [SMALL_STATE(3087)] = 95408, + [SMALL_STATE(3088)] = 95433, + [SMALL_STATE(3089)] = 95458, + [SMALL_STATE(3090)] = 95487, + [SMALL_STATE(3091)] = 95510, + [SMALL_STATE(3092)] = 95535, + [SMALL_STATE(3093)] = 95564, + [SMALL_STATE(3094)] = 95589, + [SMALL_STATE(3095)] = 95614, + [SMALL_STATE(3096)] = 95645, + [SMALL_STATE(3097)] = 95670, + [SMALL_STATE(3098)] = 95695, + [SMALL_STATE(3099)] = 95720, + [SMALL_STATE(3100)] = 95745, + [SMALL_STATE(3101)] = 95770, + [SMALL_STATE(3102)] = 95795, + [SMALL_STATE(3103)] = 95820, + [SMALL_STATE(3104)] = 95845, + [SMALL_STATE(3105)] = 95870, + [SMALL_STATE(3106)] = 95899, + [SMALL_STATE(3107)] = 95924, + [SMALL_STATE(3108)] = 95949, + [SMALL_STATE(3109)] = 95974, + [SMALL_STATE(3110)] = 96001, + [SMALL_STATE(3111)] = 96043, + [SMALL_STATE(3112)] = 96067, + [SMALL_STATE(3113)] = 96091, + [SMALL_STATE(3114)] = 96113, + [SMALL_STATE(3115)] = 96149, + [SMALL_STATE(3116)] = 96173, + [SMALL_STATE(3117)] = 96197, + [SMALL_STATE(3118)] = 96219, + [SMALL_STATE(3119)] = 96243, + [SMALL_STATE(3120)] = 96267, + [SMALL_STATE(3121)] = 96307, + [SMALL_STATE(3122)] = 96331, + [SMALL_STATE(3123)] = 96355, + [SMALL_STATE(3124)] = 96391, + [SMALL_STATE(3125)] = 96415, + [SMALL_STATE(3126)] = 96439, + [SMALL_STATE(3127)] = 96479, + [SMALL_STATE(3128)] = 96503, + [SMALL_STATE(3129)] = 96527, + [SMALL_STATE(3130)] = 96551, + [SMALL_STATE(3131)] = 96575, + [SMALL_STATE(3132)] = 96599, + [SMALL_STATE(3133)] = 96623, + [SMALL_STATE(3134)] = 96647, + [SMALL_STATE(3135)] = 96671, + [SMALL_STATE(3136)] = 96695, + [SMALL_STATE(3137)] = 96719, + [SMALL_STATE(3138)] = 96743, + [SMALL_STATE(3139)] = 96767, + [SMALL_STATE(3140)] = 96813, + [SMALL_STATE(3141)] = 96837, + [SMALL_STATE(3142)] = 96861, + [SMALL_STATE(3143)] = 96885, + [SMALL_STATE(3144)] = 96931, + [SMALL_STATE(3145)] = 96955, + [SMALL_STATE(3146)] = 96979, + [SMALL_STATE(3147)] = 97003, + [SMALL_STATE(3148)] = 97027, + [SMALL_STATE(3149)] = 97051, + [SMALL_STATE(3150)] = 97075, + [SMALL_STATE(3151)] = 97099, + [SMALL_STATE(3152)] = 97121, + [SMALL_STATE(3153)] = 97145, + [SMALL_STATE(3154)] = 97169, + [SMALL_STATE(3155)] = 97203, + [SMALL_STATE(3156)] = 97227, + [SMALL_STATE(3157)] = 97251, + [SMALL_STATE(3158)] = 97291, + [SMALL_STATE(3159)] = 97325, + [SMALL_STATE(3160)] = 97347, + [SMALL_STATE(3161)] = 97381, + [SMALL_STATE(3162)] = 97403, + [SMALL_STATE(3163)] = 97449, + [SMALL_STATE(3164)] = 97473, + [SMALL_STATE(3165)] = 97513, + [SMALL_STATE(3166)] = 97537, + [SMALL_STATE(3167)] = 97561, + [SMALL_STATE(3168)] = 97583, + [SMALL_STATE(3169)] = 97605, + [SMALL_STATE(3170)] = 97629, + [SMALL_STATE(3171)] = 97653, + [SMALL_STATE(3172)] = 97675, + [SMALL_STATE(3173)] = 97697, + [SMALL_STATE(3174)] = 97719, + [SMALL_STATE(3175)] = 97741, + [SMALL_STATE(3176)] = 97765, + [SMALL_STATE(3177)] = 97811, + [SMALL_STATE(3178)] = 97835, + [SMALL_STATE(3179)] = 97859, + [SMALL_STATE(3180)] = 97883, + [SMALL_STATE(3181)] = 97907, + [SMALL_STATE(3182)] = 97931, + [SMALL_STATE(3183)] = 97955, + [SMALL_STATE(3184)] = 97979, + [SMALL_STATE(3185)] = 98003, + [SMALL_STATE(3186)] = 98045, + [SMALL_STATE(3187)] = 98069, + [SMALL_STATE(3188)] = 98093, + [SMALL_STATE(3189)] = 98117, + [SMALL_STATE(3190)] = 98141, + [SMALL_STATE(3191)] = 98165, + [SMALL_STATE(3192)] = 98189, + [SMALL_STATE(3193)] = 98213, + [SMALL_STATE(3194)] = 98237, + [SMALL_STATE(3195)] = 98261, + [SMALL_STATE(3196)] = 98285, + [SMALL_STATE(3197)] = 98309, + [SMALL_STATE(3198)] = 98333, + [SMALL_STATE(3199)] = 98355, + [SMALL_STATE(3200)] = 98379, + [SMALL_STATE(3201)] = 98403, + [SMALL_STATE(3202)] = 98425, + [SMALL_STATE(3203)] = 98449, + [SMALL_STATE(3204)] = 98473, + [SMALL_STATE(3205)] = 98499, + [SMALL_STATE(3206)] = 98523, + [SMALL_STATE(3207)] = 98547, + [SMALL_STATE(3208)] = 98571, + [SMALL_STATE(3209)] = 98593, + [SMALL_STATE(3210)] = 98617, + [SMALL_STATE(3211)] = 98641, + [SMALL_STATE(3212)] = 98665, + [SMALL_STATE(3213)] = 98689, + [SMALL_STATE(3214)] = 98717, + [SMALL_STATE(3215)] = 98741, + [SMALL_STATE(3216)] = 98769, + [SMALL_STATE(3217)] = 98797, + [SMALL_STATE(3218)] = 98825, + [SMALL_STATE(3219)] = 98853, + [SMALL_STATE(3220)] = 98881, + [SMALL_STATE(3221)] = 98909, + [SMALL_STATE(3222)] = 98937, + [SMALL_STATE(3223)] = 98965, + [SMALL_STATE(3224)] = 98993, + [SMALL_STATE(3225)] = 99021, + [SMALL_STATE(3226)] = 99049, + [SMALL_STATE(3227)] = 99073, + [SMALL_STATE(3228)] = 99097, + [SMALL_STATE(3229)] = 99137, + [SMALL_STATE(3230)] = 99183, + [SMALL_STATE(3231)] = 99229, + [SMALL_STATE(3232)] = 99253, + [SMALL_STATE(3233)] = 99287, + [SMALL_STATE(3234)] = 99327, + [SMALL_STATE(3235)] = 99373, + [SMALL_STATE(3236)] = 99397, + [SMALL_STATE(3237)] = 99437, + [SMALL_STATE(3238)] = 99483, + [SMALL_STATE(3239)] = 99507, + [SMALL_STATE(3240)] = 99531, + [SMALL_STATE(3241)] = 99577, + [SMALL_STATE(3242)] = 99601, + [SMALL_STATE(3243)] = 99647, + [SMALL_STATE(3244)] = 99673, + [SMALL_STATE(3245)] = 99697, + [SMALL_STATE(3246)] = 99719, + [SMALL_STATE(3247)] = 99743, + [SMALL_STATE(3248)] = 99765, + [SMALL_STATE(3249)] = 99787, + [SMALL_STATE(3250)] = 99809, + [SMALL_STATE(3251)] = 99833, + [SMALL_STATE(3252)] = 99854, + [SMALL_STATE(3253)] = 99875, + [SMALL_STATE(3254)] = 99898, + [SMALL_STATE(3255)] = 99919, + [SMALL_STATE(3256)] = 99958, + [SMALL_STATE(3257)] = 99981, + [SMALL_STATE(3258)] = 100002, + [SMALL_STATE(3259)] = 100023, + [SMALL_STATE(3260)] = 100044, + [SMALL_STATE(3261)] = 100071, + [SMALL_STATE(3262)] = 100092, + [SMALL_STATE(3263)] = 100113, + [SMALL_STATE(3264)] = 100134, + [SMALL_STATE(3265)] = 100155, + [SMALL_STATE(3266)] = 100176, + [SMALL_STATE(3267)] = 100197, + [SMALL_STATE(3268)] = 100220, + [SMALL_STATE(3269)] = 100241, + [SMALL_STATE(3270)] = 100262, + [SMALL_STATE(3271)] = 100283, + [SMALL_STATE(3272)] = 100304, + [SMALL_STATE(3273)] = 100325, + [SMALL_STATE(3274)] = 100346, + [SMALL_STATE(3275)] = 100369, + [SMALL_STATE(3276)] = 100390, + [SMALL_STATE(3277)] = 100411, + [SMALL_STATE(3278)] = 100432, + [SMALL_STATE(3279)] = 100453, + [SMALL_STATE(3280)] = 100474, + [SMALL_STATE(3281)] = 100495, + [SMALL_STATE(3282)] = 100534, + [SMALL_STATE(3283)] = 100555, + [SMALL_STATE(3284)] = 100594, + [SMALL_STATE(3285)] = 100615, + [SMALL_STATE(3286)] = 100642, + [SMALL_STATE(3287)] = 100663, + [SMALL_STATE(3288)] = 100684, + [SMALL_STATE(3289)] = 100705, + [SMALL_STATE(3290)] = 100726, + [SMALL_STATE(3291)] = 100747, + [SMALL_STATE(3292)] = 100768, + [SMALL_STATE(3293)] = 100805, + [SMALL_STATE(3294)] = 100842, + [SMALL_STATE(3295)] = 100879, + [SMALL_STATE(3296)] = 100900, + [SMALL_STATE(3297)] = 100921, + [SMALL_STATE(3298)] = 100944, + [SMALL_STATE(3299)] = 100981, + [SMALL_STATE(3300)] = 101018, + [SMALL_STATE(3301)] = 101039, + [SMALL_STATE(3302)] = 101060, + [SMALL_STATE(3303)] = 101087, + [SMALL_STATE(3304)] = 101116, + [SMALL_STATE(3305)] = 101137, + [SMALL_STATE(3306)] = 101158, + [SMALL_STATE(3307)] = 101179, + [SMALL_STATE(3308)] = 101200, + [SMALL_STATE(3309)] = 101221, + [SMALL_STATE(3310)] = 101242, + [SMALL_STATE(3311)] = 101265, + [SMALL_STATE(3312)] = 101288, + [SMALL_STATE(3313)] = 101315, + [SMALL_STATE(3314)] = 101346, + [SMALL_STATE(3315)] = 101367, + [SMALL_STATE(3316)] = 101406, + [SMALL_STATE(3317)] = 101445, + [SMALL_STATE(3318)] = 101466, + [SMALL_STATE(3319)] = 101487, + [SMALL_STATE(3320)] = 101508, + [SMALL_STATE(3321)] = 101531, + [SMALL_STATE(3322)] = 101554, + [SMALL_STATE(3323)] = 101591, + [SMALL_STATE(3324)] = 101628, + [SMALL_STATE(3325)] = 101665, + [SMALL_STATE(3326)] = 101686, + [SMALL_STATE(3327)] = 101707, + [SMALL_STATE(3328)] = 101734, + [SMALL_STATE(3329)] = 101757, + [SMALL_STATE(3330)] = 101778, + [SMALL_STATE(3331)] = 101799, + [SMALL_STATE(3332)] = 101826, + [SMALL_STATE(3333)] = 101849, + [SMALL_STATE(3334)] = 101872, + [SMALL_STATE(3335)] = 101895, + [SMALL_STATE(3336)] = 101918, + [SMALL_STATE(3337)] = 101941, + [SMALL_STATE(3338)] = 101964, + [SMALL_STATE(3339)] = 101987, + [SMALL_STATE(3340)] = 102010, + [SMALL_STATE(3341)] = 102031, + [SMALL_STATE(3342)] = 102052, + [SMALL_STATE(3343)] = 102079, + [SMALL_STATE(3344)] = 102102, + [SMALL_STATE(3345)] = 102127, + [SMALL_STATE(3346)] = 102148, + [SMALL_STATE(3347)] = 102169, + [SMALL_STATE(3348)] = 102192, + [SMALL_STATE(3349)] = 102213, + [SMALL_STATE(3350)] = 102234, + [SMALL_STATE(3351)] = 102257, + [SMALL_STATE(3352)] = 102280, + [SMALL_STATE(3353)] = 102301, + [SMALL_STATE(3354)] = 102328, + [SMALL_STATE(3355)] = 102351, + [SMALL_STATE(3356)] = 102374, + [SMALL_STATE(3357)] = 102401, + [SMALL_STATE(3358)] = 102428, + [SMALL_STATE(3359)] = 102455, + [SMALL_STATE(3360)] = 102482, + [SMALL_STATE(3361)] = 102505, + [SMALL_STATE(3362)] = 102532, + [SMALL_STATE(3363)] = 102559, + [SMALL_STATE(3364)] = 102586, + [SMALL_STATE(3365)] = 102613, + [SMALL_STATE(3366)] = 102640, + [SMALL_STATE(3367)] = 102667, + [SMALL_STATE(3368)] = 102694, + [SMALL_STATE(3369)] = 102721, + [SMALL_STATE(3370)] = 102760, + [SMALL_STATE(3371)] = 102781, + [SMALL_STATE(3372)] = 102802, + [SMALL_STATE(3373)] = 102823, + [SMALL_STATE(3374)] = 102844, + [SMALL_STATE(3375)] = 102867, + [SMALL_STATE(3376)] = 102890, + [SMALL_STATE(3377)] = 102917, + [SMALL_STATE(3378)] = 102940, + [SMALL_STATE(3379)] = 102961, + [SMALL_STATE(3380)] = 102998, + [SMALL_STATE(3381)] = 103025, + [SMALL_STATE(3382)] = 103046, + [SMALL_STATE(3383)] = 103083, + [SMALL_STATE(3384)] = 103120, + [SMALL_STATE(3385)] = 103157, + [SMALL_STATE(3386)] = 103194, + [SMALL_STATE(3387)] = 103217, + [SMALL_STATE(3388)] = 103240, + [SMALL_STATE(3389)] = 103261, + [SMALL_STATE(3390)] = 103282, + [SMALL_STATE(3391)] = 103305, + [SMALL_STATE(3392)] = 103344, + [SMALL_STATE(3393)] = 103367, + [SMALL_STATE(3394)] = 103390, + [SMALL_STATE(3395)] = 103417, + [SMALL_STATE(3396)] = 103443, + [SMALL_STATE(3397)] = 103477, + [SMALL_STATE(3398)] = 103499, + [SMALL_STATE(3399)] = 103525, + [SMALL_STATE(3400)] = 103549, + [SMALL_STATE(3401)] = 103571, + [SMALL_STATE(3402)] = 103597, + [SMALL_STATE(3403)] = 103623, + [SMALL_STATE(3404)] = 103647, + [SMALL_STATE(3405)] = 103669, + [SMALL_STATE(3406)] = 103693, + [SMALL_STATE(3407)] = 103715, + [SMALL_STATE(3408)] = 103737, + [SMALL_STATE(3409)] = 103773, + [SMALL_STATE(3410)] = 103805, + [SMALL_STATE(3411)] = 103831, + [SMALL_STATE(3412)] = 103863, + [SMALL_STATE(3413)] = 103891, + [SMALL_STATE(3414)] = 103915, + [SMALL_STATE(3415)] = 103945, + [SMALL_STATE(3416)] = 103971, + [SMALL_STATE(3417)] = 103995, + [SMALL_STATE(3418)] = 104021, + [SMALL_STATE(3419)] = 104045, [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(3421)] = 104103, + [SMALL_STATE(3422)] = 104125, + [SMALL_STATE(3423)] = 104149, + [SMALL_STATE(3424)] = 104181, + [SMALL_STATE(3425)] = 104203, + [SMALL_STATE(3426)] = 104227, + [SMALL_STATE(3427)] = 104249, + [SMALL_STATE(3428)] = 104285, + [SMALL_STATE(3429)] = 104309, + [SMALL_STATE(3430)] = 104335, + [SMALL_STATE(3431)] = 104361, + [SMALL_STATE(3432)] = 104391, + [SMALL_STATE(3433)] = 104415, + [SMALL_STATE(3434)] = 104447, + [SMALL_STATE(3435)] = 104481, + [SMALL_STATE(3436)] = 104507, + [SMALL_STATE(3437)] = 104533, + [SMALL_STATE(3438)] = 104569, + [SMALL_STATE(3439)] = 104603, + [SMALL_STATE(3440)] = 104629, + [SMALL_STATE(3441)] = 104665, + [SMALL_STATE(3442)] = 104698, + [SMALL_STATE(3443)] = 104729, + [SMALL_STATE(3444)] = 104760, + [SMALL_STATE(3445)] = 104791, + [SMALL_STATE(3446)] = 104822, + [SMALL_STATE(3447)] = 104853, + [SMALL_STATE(3448)] = 104884, + [SMALL_STATE(3449)] = 104915, + [SMALL_STATE(3450)] = 104946, + [SMALL_STATE(3451)] = 104971, + [SMALL_STATE(3452)] = 104994, + [SMALL_STATE(3453)] = 105029, + [SMALL_STATE(3454)] = 105050, + [SMALL_STATE(3455)] = 105071, + [SMALL_STATE(3456)] = 105104, + [SMALL_STATE(3457)] = 105127, + [SMALL_STATE(3458)] = 105160, + [SMALL_STATE(3459)] = 105185, + [SMALL_STATE(3460)] = 105218, + [SMALL_STATE(3461)] = 105251, + [SMALL_STATE(3462)] = 105282, + [SMALL_STATE(3463)] = 105313, + [SMALL_STATE(3464)] = 105336, + [SMALL_STATE(3465)] = 105369, + [SMALL_STATE(3466)] = 105402, + [SMALL_STATE(3467)] = 105435, + [SMALL_STATE(3468)] = 105468, + [SMALL_STATE(3469)] = 105499, + [SMALL_STATE(3470)] = 105530, + [SMALL_STATE(3471)] = 105551, + [SMALL_STATE(3472)] = 105584, + [SMALL_STATE(3473)] = 105617, + [SMALL_STATE(3474)] = 105648, + [SMALL_STATE(3475)] = 105671, + [SMALL_STATE(3476)] = 105694, + [SMALL_STATE(3477)] = 105729, + [SMALL_STATE(3478)] = 105762, + [SMALL_STATE(3479)] = 105793, + [SMALL_STATE(3480)] = 105826, + [SMALL_STATE(3481)] = 105851, + [SMALL_STATE(3482)] = 105884, + [SMALL_STATE(3483)] = 105917, + [SMALL_STATE(3484)] = 105950, + [SMALL_STATE(3485)] = 105981, + [SMALL_STATE(3486)] = 106004, + [SMALL_STATE(3487)] = 106037, + [SMALL_STATE(3488)] = 106058, + [SMALL_STATE(3489)] = 106079, + [SMALL_STATE(3490)] = 106110, + [SMALL_STATE(3491)] = 106135, + [SMALL_STATE(3492)] = 106158, + [SMALL_STATE(3493)] = 106191, + [SMALL_STATE(3494)] = 106224, + [SMALL_STATE(3495)] = 106255, + [SMALL_STATE(3496)] = 106284, + [SMALL_STATE(3497)] = 106305, + [SMALL_STATE(3498)] = 106336, + [SMALL_STATE(3499)] = 106369, + [SMALL_STATE(3500)] = 106390, + [SMALL_STATE(3501)] = 106423, + [SMALL_STATE(3502)] = 106456, + [SMALL_STATE(3503)] = 106477, + [SMALL_STATE(3504)] = 106508, + [SMALL_STATE(3505)] = 106529, + [SMALL_STATE(3506)] = 106554, + [SMALL_STATE(3507)] = 106587, + [SMALL_STATE(3508)] = 106620, + [SMALL_STATE(3509)] = 106645, + [SMALL_STATE(3510)] = 106676, + [SMALL_STATE(3511)] = 106697, + [SMALL_STATE(3512)] = 106718, + [SMALL_STATE(3513)] = 106751, + [SMALL_STATE(3514)] = 106784, + [SMALL_STATE(3515)] = 106815, + [SMALL_STATE(3516)] = 106848, + [SMALL_STATE(3517)] = 106881, + [SMALL_STATE(3518)] = 106906, + [SMALL_STATE(3519)] = 106937, + [SMALL_STATE(3520)] = 106970, + [SMALL_STATE(3521)] = 106991, + [SMALL_STATE(3522)] = 107024, + [SMALL_STATE(3523)] = 107057, + [SMALL_STATE(3524)] = 107090, + [SMALL_STATE(3525)] = 107121, + [SMALL_STATE(3526)] = 107152, + [SMALL_STATE(3527)] = 107185, + [SMALL_STATE(3528)] = 107218, + [SMALL_STATE(3529)] = 107249, + [SMALL_STATE(3530)] = 107280, + [SMALL_STATE(3531)] = 107313, + [SMALL_STATE(3532)] = 107338, + [SMALL_STATE(3533)] = 107371, + [SMALL_STATE(3534)] = 107392, + [SMALL_STATE(3535)] = 107420, + [SMALL_STATE(3536)] = 107448, + [SMALL_STATE(3537)] = 107470, + [SMALL_STATE(3538)] = 107498, + [SMALL_STATE(3539)] = 107524, + [SMALL_STATE(3540)] = 107544, + [SMALL_STATE(3541)] = 107570, + [SMALL_STATE(3542)] = 107598, + [SMALL_STATE(3543)] = 107626, + [SMALL_STATE(3544)] = 107654, + [SMALL_STATE(3545)] = 107682, + [SMALL_STATE(3546)] = 107710, + [SMALL_STATE(3547)] = 107738, + [SMALL_STATE(3548)] = 107766, + [SMALL_STATE(3549)] = 107794, + [SMALL_STATE(3550)] = 107822, + [SMALL_STATE(3551)] = 107852, + [SMALL_STATE(3552)] = 107880, + [SMALL_STATE(3553)] = 107910, + [SMALL_STATE(3554)] = 107938, + [SMALL_STATE(3555)] = 107958, + [SMALL_STATE(3556)] = 107986, + [SMALL_STATE(3557)] = 108014, + [SMALL_STATE(3558)] = 108042, + [SMALL_STATE(3559)] = 108062, + [SMALL_STATE(3560)] = 108090, + [SMALL_STATE(3561)] = 108118, + [SMALL_STATE(3562)] = 108146, + [SMALL_STATE(3563)] = 108174, + [SMALL_STATE(3564)] = 108192, + [SMALL_STATE(3565)] = 108220, + [SMALL_STATE(3566)] = 108240, + [SMALL_STATE(3567)] = 108268, + [SMALL_STATE(3568)] = 108296, + [SMALL_STATE(3569)] = 108318, + [SMALL_STATE(3570)] = 108342, + [SMALL_STATE(3571)] = 108362, + [SMALL_STATE(3572)] = 108390, + [SMALL_STATE(3573)] = 108418, + [SMALL_STATE(3574)] = 108444, + [SMALL_STATE(3575)] = 108464, + [SMALL_STATE(3576)] = 108484, + [SMALL_STATE(3577)] = 108504, + [SMALL_STATE(3578)] = 108532, + [SMALL_STATE(3579)] = 108560, + [SMALL_STATE(3580)] = 108588, + [SMALL_STATE(3581)] = 108616, + [SMALL_STATE(3582)] = 108644, + [SMALL_STATE(3583)] = 108672, + [SMALL_STATE(3584)] = 108696, + [SMALL_STATE(3585)] = 108724, + [SMALL_STATE(3586)] = 108748, + [SMALL_STATE(3587)] = 108768, + [SMALL_STATE(3588)] = 108796, + [SMALL_STATE(3589)] = 108818, + [SMALL_STATE(3590)] = 108846, + [SMALL_STATE(3591)] = 108874, + [SMALL_STATE(3592)] = 108902, + [SMALL_STATE(3593)] = 108924, + [SMALL_STATE(3594)] = 108946, + [SMALL_STATE(3595)] = 108966, + [SMALL_STATE(3596)] = 108994, + [SMALL_STATE(3597)] = 109022, + [SMALL_STATE(3598)] = 109044, + [SMALL_STATE(3599)] = 109066, + [SMALL_STATE(3600)] = 109094, + [SMALL_STATE(3601)] = 109112, + [SMALL_STATE(3602)] = 109136, + [SMALL_STATE(3603)] = 109156, + [SMALL_STATE(3604)] = 109182, + [SMALL_STATE(3605)] = 109206, + [SMALL_STATE(3606)] = 109234, + [SMALL_STATE(3607)] = 109262, + [SMALL_STATE(3608)] = 109290, + [SMALL_STATE(3609)] = 109318, + [SMALL_STATE(3610)] = 109338, + [SMALL_STATE(3611)] = 109358, + [SMALL_STATE(3612)] = 109378, + [SMALL_STATE(3613)] = 109400, + [SMALL_STATE(3614)] = 109424, + [SMALL_STATE(3615)] = 109444, + [SMALL_STATE(3616)] = 109472, + [SMALL_STATE(3617)] = 109491, + [SMALL_STATE(3618)] = 109518, + [SMALL_STATE(3619)] = 109541, + [SMALL_STATE(3620)] = 109566, + [SMALL_STATE(3621)] = 109595, + [SMALL_STATE(3622)] = 109614, + [SMALL_STATE(3623)] = 109639, + [SMALL_STATE(3624)] = 109666, + [SMALL_STATE(3625)] = 109691, + [SMALL_STATE(3626)] = 109716, + [SMALL_STATE(3627)] = 109735, + [SMALL_STATE(3628)] = 109760, + [SMALL_STATE(3629)] = 109785, + [SMALL_STATE(3630)] = 109810, + [SMALL_STATE(3631)] = 109829, + [SMALL_STATE(3632)] = 109852, + [SMALL_STATE(3633)] = 109871, + [SMALL_STATE(3634)] = 109890, + [SMALL_STATE(3635)] = 109913, + [SMALL_STATE(3636)] = 109938, + [SMALL_STATE(3637)] = 109959, + [SMALL_STATE(3638)] = 109978, + [SMALL_STATE(3639)] = 109997, + [SMALL_STATE(3640)] = 110022, + [SMALL_STATE(3641)] = 110053, + [SMALL_STATE(3642)] = 110078, + [SMALL_STATE(3643)] = 110103, + [SMALL_STATE(3644)] = 110126, + [SMALL_STATE(3645)] = 110147, + [SMALL_STATE(3646)] = 110172, + [SMALL_STATE(3647)] = 110191, + [SMALL_STATE(3648)] = 110218, + [SMALL_STATE(3649)] = 110245, + [SMALL_STATE(3650)] = 110270, + [SMALL_STATE(3651)] = 110291, + [SMALL_STATE(3652)] = 110318, + [SMALL_STATE(3653)] = 110337, + [SMALL_STATE(3654)] = 110360, + [SMALL_STATE(3655)] = 110385, + [SMALL_STATE(3656)] = 110410, + [SMALL_STATE(3657)] = 110429, + [SMALL_STATE(3658)] = 110456, + [SMALL_STATE(3659)] = 110475, + [SMALL_STATE(3660)] = 110500, + [SMALL_STATE(3661)] = 110521, + [SMALL_STATE(3662)] = 110540, + [SMALL_STATE(3663)] = 110561, + [SMALL_STATE(3664)] = 110582, + [SMALL_STATE(3665)] = 110603, + [SMALL_STATE(3666)] = 110629, + [SMALL_STATE(3667)] = 110657, + [SMALL_STATE(3668)] = 110677, + [SMALL_STATE(3669)] = 110705, + [SMALL_STATE(3670)] = 110727, + [SMALL_STATE(3671)] = 110753, + [SMALL_STATE(3672)] = 110779, + [SMALL_STATE(3673)] = 110803, + [SMALL_STATE(3674)] = 110831, + [SMALL_STATE(3675)] = 110859, + [SMALL_STATE(3676)] = 110877, + [SMALL_STATE(3677)] = 110903, + [SMALL_STATE(3678)] = 110931, + [SMALL_STATE(3679)] = 110957, + [SMALL_STATE(3680)] = 110977, + [SMALL_STATE(3681)] = 110997, + [SMALL_STATE(3682)] = 111017, + [SMALL_STATE(3683)] = 111043, + [SMALL_STATE(3684)] = 111065, + [SMALL_STATE(3685)] = 111089, + [SMALL_STATE(3686)] = 111117, + [SMALL_STATE(3687)] = 111141, + [SMALL_STATE(3688)] = 111159, + [SMALL_STATE(3689)] = 111187, + [SMALL_STATE(3690)] = 111215, + [SMALL_STATE(3691)] = 111243, + [SMALL_STATE(3692)] = 111265, + [SMALL_STATE(3693)] = 111293, + [SMALL_STATE(3694)] = 111319, + [SMALL_STATE(3695)] = 111347, + [SMALL_STATE(3696)] = 111369, + [SMALL_STATE(3697)] = 111397, + [SMALL_STATE(3698)] = 111425, + [SMALL_STATE(3699)] = 111447, + [SMALL_STATE(3700)] = 111475, + [SMALL_STATE(3701)] = 111501, + [SMALL_STATE(3702)] = 111523, + [SMALL_STATE(3703)] = 111551, + [SMALL_STATE(3704)] = 111573, + [SMALL_STATE(3705)] = 111591, + [SMALL_STATE(3706)] = 111619, + [SMALL_STATE(3707)] = 111647, + [SMALL_STATE(3708)] = 111673, + [SMALL_STATE(3709)] = 111701, + [SMALL_STATE(3710)] = 111729, + [SMALL_STATE(3711)] = 111753, + [SMALL_STATE(3712)] = 111781, + [SMALL_STATE(3713)] = 111807, + [SMALL_STATE(3714)] = 111833, + [SMALL_STATE(3715)] = 111859, + [SMALL_STATE(3716)] = 111885, + [SMALL_STATE(3717)] = 111913, + [SMALL_STATE(3718)] = 111933, + [SMALL_STATE(3719)] = 111959, + [SMALL_STATE(3720)] = 111981, + [SMALL_STATE(3721)] = 112009, + [SMALL_STATE(3722)] = 112037, + [SMALL_STATE(3723)] = 112063, + [SMALL_STATE(3724)] = 112091, + [SMALL_STATE(3725)] = 112115, + [SMALL_STATE(3726)] = 112137, + [SMALL_STATE(3727)] = 112165, + [SMALL_STATE(3728)] = 112193, + [SMALL_STATE(3729)] = 112213, + [SMALL_STATE(3730)] = 112237, + [SMALL_STATE(3731)] = 112265, + [SMALL_STATE(3732)] = 112291, + [SMALL_STATE(3733)] = 112319, + [SMALL_STATE(3734)] = 112347, + [SMALL_STATE(3735)] = 112371, + [SMALL_STATE(3736)] = 112389, + [SMALL_STATE(3737)] = 112407, + [SMALL_STATE(3738)] = 112435, + [SMALL_STATE(3739)] = 112463, + [SMALL_STATE(3740)] = 112491, + [SMALL_STATE(3741)] = 112519, + [SMALL_STATE(3742)] = 112537, + [SMALL_STATE(3743)] = 112563, + [SMALL_STATE(3744)] = 112581, + [SMALL_STATE(3745)] = 112603, + [SMALL_STATE(3746)] = 112631, + [SMALL_STATE(3747)] = 112659, + [SMALL_STATE(3748)] = 112677, + [SMALL_STATE(3749)] = 112697, + [SMALL_STATE(3750)] = 112719, + [SMALL_STATE(3751)] = 112745, + [SMALL_STATE(3752)] = 112767, + [SMALL_STATE(3753)] = 112787, + [SMALL_STATE(3754)] = 112815, + [SMALL_STATE(3755)] = 112839, + [SMALL_STATE(3756)] = 112865, + [SMALL_STATE(3757)] = 112889, + [SMALL_STATE(3758)] = 112917, + [SMALL_STATE(3759)] = 112935, + [SMALL_STATE(3760)] = 112961, + [SMALL_STATE(3761)] = 112989, + [SMALL_STATE(3762)] = 113017, + [SMALL_STATE(3763)] = 113043, + [SMALL_STATE(3764)] = 113071, + [SMALL_STATE(3765)] = 113089, + [SMALL_STATE(3766)] = 113117, + [SMALL_STATE(3767)] = 113135, + [SMALL_STATE(3768)] = 113163, + [SMALL_STATE(3769)] = 113191, + [SMALL_STATE(3770)] = 113219, + [SMALL_STATE(3771)] = 113237, + [SMALL_STATE(3772)] = 113265, + [SMALL_STATE(3773)] = 113283, + [SMALL_STATE(3774)] = 113311, + [SMALL_STATE(3775)] = 113336, + [SMALL_STATE(3776)] = 113357, + [SMALL_STATE(3777)] = 113378, + [SMALL_STATE(3778)] = 113397, + [SMALL_STATE(3779)] = 113418, + [SMALL_STATE(3780)] = 113439, + [SMALL_STATE(3781)] = 113464, + [SMALL_STATE(3782)] = 113489, + [SMALL_STATE(3783)] = 113514, + [SMALL_STATE(3784)] = 113535, + [SMALL_STATE(3785)] = 113558, + [SMALL_STATE(3786)] = 113581, + [SMALL_STATE(3787)] = 113604, + [SMALL_STATE(3788)] = 113625, + [SMALL_STATE(3789)] = 113644, + [SMALL_STATE(3790)] = 113663, + [SMALL_STATE(3791)] = 113686, + [SMALL_STATE(3792)] = 113707, + [SMALL_STATE(3793)] = 113728, + [SMALL_STATE(3794)] = 113751, + [SMALL_STATE(3795)] = 113776, + [SMALL_STATE(3796)] = 113801, + [SMALL_STATE(3797)] = 113826, + [SMALL_STATE(3798)] = 113845, + [SMALL_STATE(3799)] = 113870, + [SMALL_STATE(3800)] = 113893, + [SMALL_STATE(3801)] = 113916, + [SMALL_STATE(3802)] = 113939, + [SMALL_STATE(3803)] = 113964, + [SMALL_STATE(3804)] = 113985, + [SMALL_STATE(3805)] = 114006, + [SMALL_STATE(3806)] = 114027, + [SMALL_STATE(3807)] = 114046, + [SMALL_STATE(3808)] = 114065, + [SMALL_STATE(3809)] = 114084, + [SMALL_STATE(3810)] = 114109, + [SMALL_STATE(3811)] = 114132, + [SMALL_STATE(3812)] = 114157, + [SMALL_STATE(3813)] = 114182, + [SMALL_STATE(3814)] = 114205, + [SMALL_STATE(3815)] = 114228, + [SMALL_STATE(3816)] = 114249, + [SMALL_STATE(3817)] = 114274, + [SMALL_STATE(3818)] = 114299, + [SMALL_STATE(3819)] = 114324, + [SMALL_STATE(3820)] = 114349, + [SMALL_STATE(3821)] = 114372, + [SMALL_STATE(3822)] = 114395, + [SMALL_STATE(3823)] = 114418, + [SMALL_STATE(3824)] = 114441, + [SMALL_STATE(3825)] = 114464, + [SMALL_STATE(3826)] = 114489, + [SMALL_STATE(3827)] = 114512, + [SMALL_STATE(3828)] = 114535, + [SMALL_STATE(3829)] = 114560, + [SMALL_STATE(3830)] = 114585, + [SMALL_STATE(3831)] = 114608, + [SMALL_STATE(3832)] = 114627, + [SMALL_STATE(3833)] = 114648, + [SMALL_STATE(3834)] = 114667, + [SMALL_STATE(3835)] = 114690, + [SMALL_STATE(3836)] = 114713, + [SMALL_STATE(3837)] = 114728, + [SMALL_STATE(3838)] = 114747, + [SMALL_STATE(3839)] = 114768, + [SMALL_STATE(3840)] = 114783, + [SMALL_STATE(3841)] = 114798, + [SMALL_STATE(3842)] = 114819, + [SMALL_STATE(3843)] = 114840, + [SMALL_STATE(3844)] = 114855, + [SMALL_STATE(3845)] = 114870, + [SMALL_STATE(3846)] = 114885, + [SMALL_STATE(3847)] = 114906, + [SMALL_STATE(3848)] = 114927, + [SMALL_STATE(3849)] = 114952, + [SMALL_STATE(3850)] = 114971, + [SMALL_STATE(3851)] = 114990, + [SMALL_STATE(3852)] = 115009, + [SMALL_STATE(3853)] = 115032, + [SMALL_STATE(3854)] = 115053, + [SMALL_STATE(3855)] = 115076, + [SMALL_STATE(3856)] = 115101, + [SMALL_STATE(3857)] = 115124, + [SMALL_STATE(3858)] = 115147, + [SMALL_STATE(3859)] = 115170, + [SMALL_STATE(3860)] = 115193, + [SMALL_STATE(3861)] = 115212, + [SMALL_STATE(3862)] = 115235, + [SMALL_STATE(3863)] = 115258, + [SMALL_STATE(3864)] = 115281, + [SMALL_STATE(3865)] = 115304, + [SMALL_STATE(3866)] = 115327, + [SMALL_STATE(3867)] = 115350, + [SMALL_STATE(3868)] = 115375, + [SMALL_STATE(3869)] = 115400, + [SMALL_STATE(3870)] = 115423, + [SMALL_STATE(3871)] = 115446, + [SMALL_STATE(3872)] = 115469, + [SMALL_STATE(3873)] = 115492, + [SMALL_STATE(3874)] = 115515, + [SMALL_STATE(3875)] = 115536, + [SMALL_STATE(3876)] = 115559, + [SMALL_STATE(3877)] = 115582, + [SMALL_STATE(3878)] = 115605, + [SMALL_STATE(3879)] = 115628, + [SMALL_STATE(3880)] = 115649, + [SMALL_STATE(3881)] = 115672, + [SMALL_STATE(3882)] = 115695, + [SMALL_STATE(3883)] = 115716, + [SMALL_STATE(3884)] = 115735, + [SMALL_STATE(3885)] = 115756, + [SMALL_STATE(3886)] = 115777, + [SMALL_STATE(3887)] = 115798, + [SMALL_STATE(3888)] = 115817, + [SMALL_STATE(3889)] = 115838, + [SMALL_STATE(3890)] = 115857, + [SMALL_STATE(3891)] = 115880, + [SMALL_STATE(3892)] = 115899, + [SMALL_STATE(3893)] = 115922, + [SMALL_STATE(3894)] = 115945, + [SMALL_STATE(3895)] = 115966, + [SMALL_STATE(3896)] = 115983, + [SMALL_STATE(3897)] = 116000, + [SMALL_STATE(3898)] = 116017, + [SMALL_STATE(3899)] = 116036, + [SMALL_STATE(3900)] = 116057, + [SMALL_STATE(3901)] = 116078, + [SMALL_STATE(3902)] = 116099, + [SMALL_STATE(3903)] = 116120, + [SMALL_STATE(3904)] = 116141, + [SMALL_STATE(3905)] = 116162, + [SMALL_STATE(3906)] = 116183, + [SMALL_STATE(3907)] = 116204, + [SMALL_STATE(3908)] = 116223, + [SMALL_STATE(3909)] = 116244, + [SMALL_STATE(3910)] = 116263, + [SMALL_STATE(3911)] = 116288, + [SMALL_STATE(3912)] = 116313, + [SMALL_STATE(3913)] = 116338, + [SMALL_STATE(3914)] = 116357, + [SMALL_STATE(3915)] = 116380, + [SMALL_STATE(3916)] = 116405, + [SMALL_STATE(3917)] = 116430, + [SMALL_STATE(3918)] = 116455, + [SMALL_STATE(3919)] = 116476, + [SMALL_STATE(3920)] = 116499, + [SMALL_STATE(3921)] = 116524, + [SMALL_STATE(3922)] = 116549, + [SMALL_STATE(3923)] = 116574, + [SMALL_STATE(3924)] = 116597, + [SMALL_STATE(3925)] = 116620, + [SMALL_STATE(3926)] = 116637, + [SMALL_STATE(3927)] = 116654, + [SMALL_STATE(3928)] = 116675, + [SMALL_STATE(3929)] = 116698, + [SMALL_STATE(3930)] = 116718, + [SMALL_STATE(3931)] = 116734, + [SMALL_STATE(3932)] = 116748, + [SMALL_STATE(3933)] = 116764, + [SMALL_STATE(3934)] = 116780, + [SMALL_STATE(3935)] = 116796, + [SMALL_STATE(3936)] = 116818, + [SMALL_STATE(3937)] = 116832, + [SMALL_STATE(3938)] = 116848, + [SMALL_STATE(3939)] = 116864, + [SMALL_STATE(3940)] = 116878, + [SMALL_STATE(3941)] = 116900, + [SMALL_STATE(3942)] = 116916, + [SMALL_STATE(3943)] = 116934, + [SMALL_STATE(3944)] = 116952, + [SMALL_STATE(3945)] = 116968, + [SMALL_STATE(3946)] = 116984, + [SMALL_STATE(3947)] = 117004, + [SMALL_STATE(3948)] = 117020, + [SMALL_STATE(3949)] = 117040, + [SMALL_STATE(3950)] = 117060, + [SMALL_STATE(3951)] = 117080, + [SMALL_STATE(3952)] = 117100, + [SMALL_STATE(3953)] = 117122, + [SMALL_STATE(3954)] = 117144, + [SMALL_STATE(3955)] = 117166, + [SMALL_STATE(3956)] = 117182, + [SMALL_STATE(3957)] = 117204, + [SMALL_STATE(3958)] = 117224, + [SMALL_STATE(3959)] = 117246, + [SMALL_STATE(3960)] = 117264, + [SMALL_STATE(3961)] = 117284, + [SMALL_STATE(3962)] = 117304, + [SMALL_STATE(3963)] = 117326, + [SMALL_STATE(3964)] = 117348, + [SMALL_STATE(3965)] = 117364, + [SMALL_STATE(3966)] = 117386, + [SMALL_STATE(3967)] = 117408, + [SMALL_STATE(3968)] = 117428, + [SMALL_STATE(3969)] = 117446, + [SMALL_STATE(3970)] = 117464, + [SMALL_STATE(3971)] = 117484, + [SMALL_STATE(3972)] = 117506, + [SMALL_STATE(3973)] = 117526, + [SMALL_STATE(3974)] = 117548, + [SMALL_STATE(3975)] = 117570, + [SMALL_STATE(3976)] = 117592, + [SMALL_STATE(3977)] = 117608, + [SMALL_STATE(3978)] = 117630, + [SMALL_STATE(3979)] = 117646, + [SMALL_STATE(3980)] = 117666, + [SMALL_STATE(3981)] = 117688, + [SMALL_STATE(3982)] = 117704, + [SMALL_STATE(3983)] = 117722, + [SMALL_STATE(3984)] = 117740, + [SMALL_STATE(3985)] = 117762, + [SMALL_STATE(3986)] = 117778, + [SMALL_STATE(3987)] = 117794, + [SMALL_STATE(3988)] = 117814, + [SMALL_STATE(3989)] = 117836, + [SMALL_STATE(3990)] = 117854, + [SMALL_STATE(3991)] = 117868, + [SMALL_STATE(3992)] = 117884, + [SMALL_STATE(3993)] = 117902, + [SMALL_STATE(3994)] = 117924, + [SMALL_STATE(3995)] = 117944, + [SMALL_STATE(3996)] = 117966, + [SMALL_STATE(3997)] = 117984, + [SMALL_STATE(3998)] = 118004, + [SMALL_STATE(3999)] = 118026, + [SMALL_STATE(4000)] = 118042, + [SMALL_STATE(4001)] = 118062, + [SMALL_STATE(4002)] = 118076, + [SMALL_STATE(4003)] = 118098, + [SMALL_STATE(4004)] = 118118, + [SMALL_STATE(4005)] = 118138, + [SMALL_STATE(4006)] = 118158, + [SMALL_STATE(4007)] = 118180, + [SMALL_STATE(4008)] = 118200, + [SMALL_STATE(4009)] = 118220, + [SMALL_STATE(4010)] = 118240, + [SMALL_STATE(4011)] = 118260, + [SMALL_STATE(4012)] = 118278, + [SMALL_STATE(4013)] = 118296, + [SMALL_STATE(4014)] = 118316, + [SMALL_STATE(4015)] = 118336, + [SMALL_STATE(4016)] = 118356, + [SMALL_STATE(4017)] = 118376, + [SMALL_STATE(4018)] = 118396, + [SMALL_STATE(4019)] = 118416, + [SMALL_STATE(4020)] = 118436, + [SMALL_STATE(4021)] = 118456, + [SMALL_STATE(4022)] = 118478, + [SMALL_STATE(4023)] = 118494, + [SMALL_STATE(4024)] = 118516, + [SMALL_STATE(4025)] = 118538, + [SMALL_STATE(4026)] = 118560, + [SMALL_STATE(4027)] = 118580, + [SMALL_STATE(4028)] = 118602, + [SMALL_STATE(4029)] = 118618, + [SMALL_STATE(4030)] = 118640, + [SMALL_STATE(4031)] = 118656, + [SMALL_STATE(4032)] = 118678, + [SMALL_STATE(4033)] = 118694, + [SMALL_STATE(4034)] = 118714, + [SMALL_STATE(4035)] = 118734, + [SMALL_STATE(4036)] = 118754, + [SMALL_STATE(4037)] = 118776, + [SMALL_STATE(4038)] = 118792, + [SMALL_STATE(4039)] = 118812, + [SMALL_STATE(4040)] = 118834, + [SMALL_STATE(4041)] = 118854, + [SMALL_STATE(4042)] = 118876, + [SMALL_STATE(4043)] = 118894, + [SMALL_STATE(4044)] = 118914, + [SMALL_STATE(4045)] = 118934, + [SMALL_STATE(4046)] = 118954, + [SMALL_STATE(4047)] = 118970, + [SMALL_STATE(4048)] = 118988, + [SMALL_STATE(4049)] = 119008, + [SMALL_STATE(4050)] = 119026, + [SMALL_STATE(4051)] = 119046, + [SMALL_STATE(4052)] = 119062, + [SMALL_STATE(4053)] = 119082, + [SMALL_STATE(4054)] = 119098, + [SMALL_STATE(4055)] = 119118, + [SMALL_STATE(4056)] = 119140, + [SMALL_STATE(4057)] = 119158, + [SMALL_STATE(4058)] = 119178, + [SMALL_STATE(4059)] = 119200, + [SMALL_STATE(4060)] = 119220, + [SMALL_STATE(4061)] = 119242, + [SMALL_STATE(4062)] = 119260, + [SMALL_STATE(4063)] = 119278, + [SMALL_STATE(4064)] = 119296, + [SMALL_STATE(4065)] = 119318, + [SMALL_STATE(4066)] = 119336, + [SMALL_STATE(4067)] = 119358, + [SMALL_STATE(4068)] = 119378, + [SMALL_STATE(4069)] = 119394, + [SMALL_STATE(4070)] = 119414, + [SMALL_STATE(4071)] = 119434, + [SMALL_STATE(4072)] = 119452, + [SMALL_STATE(4073)] = 119472, + [SMALL_STATE(4074)] = 119490, + [SMALL_STATE(4075)] = 119506, + [SMALL_STATE(4076)] = 119528, + [SMALL_STATE(4077)] = 119542, + [SMALL_STATE(4078)] = 119558, + [SMALL_STATE(4079)] = 119576, + [SMALL_STATE(4080)] = 119596, + [SMALL_STATE(4081)] = 119616, + [SMALL_STATE(4082)] = 119636, + [SMALL_STATE(4083)] = 119650, + [SMALL_STATE(4084)] = 119666, + [SMALL_STATE(4085)] = 119688, + [SMALL_STATE(4086)] = 119704, + [SMALL_STATE(4087)] = 119722, + [SMALL_STATE(4088)] = 119740, + [SMALL_STATE(4089)] = 119758, + [SMALL_STATE(4090)] = 119774, + [SMALL_STATE(4091)] = 119788, + [SMALL_STATE(4092)] = 119806, + [SMALL_STATE(4093)] = 119828, + [SMALL_STATE(4094)] = 119848, + [SMALL_STATE(4095)] = 119870, + [SMALL_STATE(4096)] = 119886, + [SMALL_STATE(4097)] = 119905, + [SMALL_STATE(4098)] = 119920, + [SMALL_STATE(4099)] = 119935, + [SMALL_STATE(4100)] = 119950, + [SMALL_STATE(4101)] = 119967, + [SMALL_STATE(4102)] = 119980, + [SMALL_STATE(4103)] = 119993, + [SMALL_STATE(4104)] = 120006, + [SMALL_STATE(4105)] = 120023, + [SMALL_STATE(4106)] = 120040, + [SMALL_STATE(4107)] = 120059, + [SMALL_STATE(4108)] = 120078, + [SMALL_STATE(4109)] = 120091, + [SMALL_STATE(4110)] = 120110, + [SMALL_STATE(4111)] = 120129, + [SMALL_STATE(4112)] = 120144, + [SMALL_STATE(4113)] = 120163, + [SMALL_STATE(4114)] = 120182, + [SMALL_STATE(4115)] = 120197, + [SMALL_STATE(4116)] = 120216, + [SMALL_STATE(4117)] = 120231, + [SMALL_STATE(4118)] = 120248, + [SMALL_STATE(4119)] = 120265, + [SMALL_STATE(4120)] = 120282, + [SMALL_STATE(4121)] = 120297, + [SMALL_STATE(4122)] = 120314, + [SMALL_STATE(4123)] = 120331, + [SMALL_STATE(4124)] = 120350, + [SMALL_STATE(4125)] = 120369, + [SMALL_STATE(4126)] = 120388, + [SMALL_STATE(4127)] = 120401, + [SMALL_STATE(4128)] = 120420, + [SMALL_STATE(4129)] = 120439, + [SMALL_STATE(4130)] = 120452, + [SMALL_STATE(4131)] = 120465, + [SMALL_STATE(4132)] = 120478, + [SMALL_STATE(4133)] = 120491, + [SMALL_STATE(4134)] = 120504, + [SMALL_STATE(4135)] = 120521, + [SMALL_STATE(4136)] = 120536, + [SMALL_STATE(4137)] = 120553, + [SMALL_STATE(4138)] = 120566, + [SMALL_STATE(4139)] = 120579, + [SMALL_STATE(4140)] = 120596, + [SMALL_STATE(4141)] = 120609, + [SMALL_STATE(4142)] = 120626, + [SMALL_STATE(4143)] = 120639, + [SMALL_STATE(4144)] = 120658, + [SMALL_STATE(4145)] = 120673, + [SMALL_STATE(4146)] = 120688, + [SMALL_STATE(4147)] = 120705, + [SMALL_STATE(4148)] = 120722, + [SMALL_STATE(4149)] = 120737, + [SMALL_STATE(4150)] = 120756, + [SMALL_STATE(4151)] = 120775, + [SMALL_STATE(4152)] = 120794, + [SMALL_STATE(4153)] = 120811, + [SMALL_STATE(4154)] = 120828, + [SMALL_STATE(4155)] = 120843, + [SMALL_STATE(4156)] = 120858, + [SMALL_STATE(4157)] = 120873, + [SMALL_STATE(4158)] = 120888, + [SMALL_STATE(4159)] = 120907, + [SMALL_STATE(4160)] = 120926, + [SMALL_STATE(4161)] = 120941, + [SMALL_STATE(4162)] = 120960, + [SMALL_STATE(4163)] = 120975, + [SMALL_STATE(4164)] = 120990, + [SMALL_STATE(4165)] = 121005, + [SMALL_STATE(4166)] = 121020, + [SMALL_STATE(4167)] = 121039, + [SMALL_STATE(4168)] = 121058, + [SMALL_STATE(4169)] = 121073, + [SMALL_STATE(4170)] = 121088, + [SMALL_STATE(4171)] = 121101, + [SMALL_STATE(4172)] = 121116, + [SMALL_STATE(4173)] = 121129, + [SMALL_STATE(4174)] = 121144, + [SMALL_STATE(4175)] = 121163, + [SMALL_STATE(4176)] = 121182, + [SMALL_STATE(4177)] = 121199, + [SMALL_STATE(4178)] = 121214, + [SMALL_STATE(4179)] = 121233, + [SMALL_STATE(4180)] = 121252, + [SMALL_STATE(4181)] = 121271, + [SMALL_STATE(4182)] = 121290, + [SMALL_STATE(4183)] = 121309, + [SMALL_STATE(4184)] = 121324, + [SMALL_STATE(4185)] = 121343, + [SMALL_STATE(4186)] = 121360, + [SMALL_STATE(4187)] = 121375, + [SMALL_STATE(4188)] = 121390, + [SMALL_STATE(4189)] = 121405, + [SMALL_STATE(4190)] = 121420, + [SMALL_STATE(4191)] = 121437, + [SMALL_STATE(4192)] = 121452, + [SMALL_STATE(4193)] = 121465, + [SMALL_STATE(4194)] = 121484, + [SMALL_STATE(4195)] = 121499, + [SMALL_STATE(4196)] = 121514, + [SMALL_STATE(4197)] = 121533, + [SMALL_STATE(4198)] = 121548, + [SMALL_STATE(4199)] = 121563, + [SMALL_STATE(4200)] = 121578, + [SMALL_STATE(4201)] = 121593, + [SMALL_STATE(4202)] = 121608, + [SMALL_STATE(4203)] = 121623, + [SMALL_STATE(4204)] = 121638, + [SMALL_STATE(4205)] = 121653, + [SMALL_STATE(4206)] = 121668, + [SMALL_STATE(4207)] = 121687, + [SMALL_STATE(4208)] = 121706, + [SMALL_STATE(4209)] = 121719, + [SMALL_STATE(4210)] = 121734, + [SMALL_STATE(4211)] = 121749, + [SMALL_STATE(4212)] = 121766, + [SMALL_STATE(4213)] = 121781, + [SMALL_STATE(4214)] = 121794, + [SMALL_STATE(4215)] = 121807, + [SMALL_STATE(4216)] = 121824, + [SMALL_STATE(4217)] = 121837, + [SMALL_STATE(4218)] = 121856, + [SMALL_STATE(4219)] = 121873, + [SMALL_STATE(4220)] = 121892, + [SMALL_STATE(4221)] = 121911, + [SMALL_STATE(4222)] = 121928, + [SMALL_STATE(4223)] = 121941, + [SMALL_STATE(4224)] = 121960, + [SMALL_STATE(4225)] = 121975, + [SMALL_STATE(4226)] = 121992, + [SMALL_STATE(4227)] = 122007, + [SMALL_STATE(4228)] = 122020, + [SMALL_STATE(4229)] = 122033, + [SMALL_STATE(4230)] = 122046, + [SMALL_STATE(4231)] = 122061, + [SMALL_STATE(4232)] = 122074, + [SMALL_STATE(4233)] = 122087, + [SMALL_STATE(4234)] = 122102, + [SMALL_STATE(4235)] = 122115, + [SMALL_STATE(4236)] = 122128, + [SMALL_STATE(4237)] = 122141, + [SMALL_STATE(4238)] = 122160, + [SMALL_STATE(4239)] = 122173, + [SMALL_STATE(4240)] = 122186, + [SMALL_STATE(4241)] = 122201, + [SMALL_STATE(4242)] = 122220, + [SMALL_STATE(4243)] = 122233, + [SMALL_STATE(4244)] = 122246, + [SMALL_STATE(4245)] = 122265, + [SMALL_STATE(4246)] = 122278, + [SMALL_STATE(4247)] = 122291, + [SMALL_STATE(4248)] = 122304, + [SMALL_STATE(4249)] = 122321, + [SMALL_STATE(4250)] = 122336, + [SMALL_STATE(4251)] = 122349, + [SMALL_STATE(4252)] = 122366, + [SMALL_STATE(4253)] = 122383, + [SMALL_STATE(4254)] = 122396, + [SMALL_STATE(4255)] = 122409, + [SMALL_STATE(4256)] = 122422, + [SMALL_STATE(4257)] = 122435, + [SMALL_STATE(4258)] = 122448, + [SMALL_STATE(4259)] = 122461, + [SMALL_STATE(4260)] = 122474, + [SMALL_STATE(4261)] = 122487, + [SMALL_STATE(4262)] = 122502, + [SMALL_STATE(4263)] = 122515, + [SMALL_STATE(4264)] = 122528, + [SMALL_STATE(4265)] = 122541, + [SMALL_STATE(4266)] = 122554, + [SMALL_STATE(4267)] = 122567, + [SMALL_STATE(4268)] = 122580, + [SMALL_STATE(4269)] = 122593, + [SMALL_STATE(4270)] = 122606, + [SMALL_STATE(4271)] = 122619, + [SMALL_STATE(4272)] = 122632, + [SMALL_STATE(4273)] = 122645, + [SMALL_STATE(4274)] = 122664, + [SMALL_STATE(4275)] = 122679, + [SMALL_STATE(4276)] = 122696, + [SMALL_STATE(4277)] = 122709, + [SMALL_STATE(4278)] = 122728, + [SMALL_STATE(4279)] = 122743, + [SMALL_STATE(4280)] = 122758, + [SMALL_STATE(4281)] = 122777, + [SMALL_STATE(4282)] = 122792, + [SMALL_STATE(4283)] = 122805, + [SMALL_STATE(4284)] = 122818, + [SMALL_STATE(4285)] = 122833, + [SMALL_STATE(4286)] = 122850, + [SMALL_STATE(4287)] = 122863, + [SMALL_STATE(4288)] = 122882, + [SMALL_STATE(4289)] = 122895, + [SMALL_STATE(4290)] = 122908, + [SMALL_STATE(4291)] = 122921, + [SMALL_STATE(4292)] = 122934, + [SMALL_STATE(4293)] = 122947, + [SMALL_STATE(4294)] = 122960, + [SMALL_STATE(4295)] = 122973, + [SMALL_STATE(4296)] = 122986, + [SMALL_STATE(4297)] = 122999, + [SMALL_STATE(4298)] = 123012, + [SMALL_STATE(4299)] = 123025, + [SMALL_STATE(4300)] = 123038, + [SMALL_STATE(4301)] = 123051, + [SMALL_STATE(4302)] = 123064, + [SMALL_STATE(4303)] = 123083, + [SMALL_STATE(4304)] = 123100, + [SMALL_STATE(4305)] = 123119, + [SMALL_STATE(4306)] = 123132, + [SMALL_STATE(4307)] = 123149, + [SMALL_STATE(4308)] = 123162, + [SMALL_STATE(4309)] = 123175, + [SMALL_STATE(4310)] = 123188, + [SMALL_STATE(4311)] = 123201, + [SMALL_STATE(4312)] = 123214, + [SMALL_STATE(4313)] = 123227, + [SMALL_STATE(4314)] = 123242, + [SMALL_STATE(4315)] = 123259, + [SMALL_STATE(4316)] = 123274, + [SMALL_STATE(4317)] = 123287, + [SMALL_STATE(4318)] = 123300, + [SMALL_STATE(4319)] = 123313, + [SMALL_STATE(4320)] = 123326, + [SMALL_STATE(4321)] = 123339, + [SMALL_STATE(4322)] = 123352, + [SMALL_STATE(4323)] = 123365, + [SMALL_STATE(4324)] = 123378, + [SMALL_STATE(4325)] = 123391, + [SMALL_STATE(4326)] = 123406, + [SMALL_STATE(4327)] = 123419, + [SMALL_STATE(4328)] = 123432, + [SMALL_STATE(4329)] = 123449, + [SMALL_STATE(4330)] = 123466, + [SMALL_STATE(4331)] = 123483, + [SMALL_STATE(4332)] = 123496, + [SMALL_STATE(4333)] = 123511, + [SMALL_STATE(4334)] = 123526, + [SMALL_STATE(4335)] = 123545, + [SMALL_STATE(4336)] = 123558, + [SMALL_STATE(4337)] = 123577, + [SMALL_STATE(4338)] = 123596, + [SMALL_STATE(4339)] = 123609, + [SMALL_STATE(4340)] = 123628, + [SMALL_STATE(4341)] = 123641, + [SMALL_STATE(4342)] = 123658, + [SMALL_STATE(4343)] = 123677, + [SMALL_STATE(4344)] = 123690, + [SMALL_STATE(4345)] = 123703, + [SMALL_STATE(4346)] = 123716, + [SMALL_STATE(4347)] = 123733, + [SMALL_STATE(4348)] = 123746, + [SMALL_STATE(4349)] = 123759, + [SMALL_STATE(4350)] = 123772, + [SMALL_STATE(4351)] = 123785, + [SMALL_STATE(4352)] = 123798, + [SMALL_STATE(4353)] = 123811, + [SMALL_STATE(4354)] = 123824, + [SMALL_STATE(4355)] = 123837, + [SMALL_STATE(4356)] = 123850, + [SMALL_STATE(4357)] = 123863, + [SMALL_STATE(4358)] = 123876, + [SMALL_STATE(4359)] = 123889, + [SMALL_STATE(4360)] = 123904, + [SMALL_STATE(4361)] = 123919, + [SMALL_STATE(4362)] = 123934, + [SMALL_STATE(4363)] = 123947, + [SMALL_STATE(4364)] = 123962, + [SMALL_STATE(4365)] = 123977, + [SMALL_STATE(4366)] = 123990, + [SMALL_STATE(4367)] = 124005, + [SMALL_STATE(4368)] = 124018, + [SMALL_STATE(4369)] = 124033, + [SMALL_STATE(4370)] = 124046, + [SMALL_STATE(4371)] = 124059, + [SMALL_STATE(4372)] = 124072, + [SMALL_STATE(4373)] = 124085, + [SMALL_STATE(4374)] = 124104, + [SMALL_STATE(4375)] = 124123, + [SMALL_STATE(4376)] = 124142, + [SMALL_STATE(4377)] = 124159, + [SMALL_STATE(4378)] = 124178, + [SMALL_STATE(4379)] = 124197, + [SMALL_STATE(4380)] = 124210, + [SMALL_STATE(4381)] = 124223, + [SMALL_STATE(4382)] = 124236, + [SMALL_STATE(4383)] = 124249, + [SMALL_STATE(4384)] = 124262, + [SMALL_STATE(4385)] = 124275, + [SMALL_STATE(4386)] = 124288, + [SMALL_STATE(4387)] = 124301, + [SMALL_STATE(4388)] = 124314, + [SMALL_STATE(4389)] = 124329, + [SMALL_STATE(4390)] = 124344, + [SMALL_STATE(4391)] = 124359, + [SMALL_STATE(4392)] = 124374, + [SMALL_STATE(4393)] = 124389, + [SMALL_STATE(4394)] = 124402, + [SMALL_STATE(4395)] = 124421, + [SMALL_STATE(4396)] = 124434, + [SMALL_STATE(4397)] = 124447, + [SMALL_STATE(4398)] = 124460, + [SMALL_STATE(4399)] = 124479, + [SMALL_STATE(4400)] = 124492, + [SMALL_STATE(4401)] = 124511, + [SMALL_STATE(4402)] = 124530, + [SMALL_STATE(4403)] = 124549, + [SMALL_STATE(4404)] = 124562, + [SMALL_STATE(4405)] = 124575, + [SMALL_STATE(4406)] = 124588, + [SMALL_STATE(4407)] = 124601, + [SMALL_STATE(4408)] = 124620, + [SMALL_STATE(4409)] = 124639, + [SMALL_STATE(4410)] = 124658, + [SMALL_STATE(4411)] = 124677, + [SMALL_STATE(4412)] = 124696, + [SMALL_STATE(4413)] = 124715, + [SMALL_STATE(4414)] = 124734, + [SMALL_STATE(4415)] = 124747, + [SMALL_STATE(4416)] = 124763, + [SMALL_STATE(4417)] = 124779, + [SMALL_STATE(4418)] = 124795, + [SMALL_STATE(4419)] = 124807, + [SMALL_STATE(4420)] = 124819, + [SMALL_STATE(4421)] = 124835, + [SMALL_STATE(4422)] = 124847, + [SMALL_STATE(4423)] = 124859, + [SMALL_STATE(4424)] = 124871, + [SMALL_STATE(4425)] = 124883, + [SMALL_STATE(4426)] = 124899, + [SMALL_STATE(4427)] = 124911, + [SMALL_STATE(4428)] = 124923, + [SMALL_STATE(4429)] = 124939, + [SMALL_STATE(4430)] = 124955, + [SMALL_STATE(4431)] = 124969, + [SMALL_STATE(4432)] = 124983, + [SMALL_STATE(4433)] = 124995, + [SMALL_STATE(4434)] = 125007, + [SMALL_STATE(4435)] = 125023, + [SMALL_STATE(4436)] = 125039, + [SMALL_STATE(4437)] = 125053, + [SMALL_STATE(4438)] = 125069, + [SMALL_STATE(4439)] = 125085, + [SMALL_STATE(4440)] = 125099, + [SMALL_STATE(4441)] = 125113, + [SMALL_STATE(4442)] = 125127, + [SMALL_STATE(4443)] = 125139, + [SMALL_STATE(4444)] = 125151, + [SMALL_STATE(4445)] = 125163, + [SMALL_STATE(4446)] = 125175, + [SMALL_STATE(4447)] = 125187, + [SMALL_STATE(4448)] = 125203, + [SMALL_STATE(4449)] = 125219, + [SMALL_STATE(4450)] = 125233, + [SMALL_STATE(4451)] = 125247, + [SMALL_STATE(4452)] = 125259, + [SMALL_STATE(4453)] = 125271, + [SMALL_STATE(4454)] = 125283, + [SMALL_STATE(4455)] = 125297, + [SMALL_STATE(4456)] = 125311, + [SMALL_STATE(4457)] = 125327, + [SMALL_STATE(4458)] = 125343, + [SMALL_STATE(4459)] = 125359, + [SMALL_STATE(4460)] = 125371, + [SMALL_STATE(4461)] = 125387, + [SMALL_STATE(4462)] = 125403, + [SMALL_STATE(4463)] = 125419, + [SMALL_STATE(4464)] = 125435, + [SMALL_STATE(4465)] = 125449, + [SMALL_STATE(4466)] = 125465, + [SMALL_STATE(4467)] = 125481, + [SMALL_STATE(4468)] = 125493, + [SMALL_STATE(4469)] = 125509, + [SMALL_STATE(4470)] = 125521, + [SMALL_STATE(4471)] = 125537, + [SMALL_STATE(4472)] = 125549, + [SMALL_STATE(4473)] = 125565, + [SMALL_STATE(4474)] = 125577, + [SMALL_STATE(4475)] = 125589, + [SMALL_STATE(4476)] = 125605, + [SMALL_STATE(4477)] = 125617, + [SMALL_STATE(4478)] = 125631, + [SMALL_STATE(4479)] = 125643, + [SMALL_STATE(4480)] = 125655, + [SMALL_STATE(4481)] = 125667, + [SMALL_STATE(4482)] = 125681, + [SMALL_STATE(4483)] = 125697, + [SMALL_STATE(4484)] = 125709, + [SMALL_STATE(4485)] = 125721, + [SMALL_STATE(4486)] = 125737, + [SMALL_STATE(4487)] = 125753, + [SMALL_STATE(4488)] = 125769, + [SMALL_STATE(4489)] = 125785, + [SMALL_STATE(4490)] = 125799, + [SMALL_STATE(4491)] = 125813, + [SMALL_STATE(4492)] = 125827, + [SMALL_STATE(4493)] = 125843, + [SMALL_STATE(4494)] = 125857, + [SMALL_STATE(4495)] = 125871, + [SMALL_STATE(4496)] = 125885, + [SMALL_STATE(4497)] = 125901, + [SMALL_STATE(4498)] = 125917, + [SMALL_STATE(4499)] = 125931, + [SMALL_STATE(4500)] = 125947, + [SMALL_STATE(4501)] = 125963, + [SMALL_STATE(4502)] = 125979, + [SMALL_STATE(4503)] = 125991, + [SMALL_STATE(4504)] = 126007, + [SMALL_STATE(4505)] = 126019, + [SMALL_STATE(4506)] = 126031, + [SMALL_STATE(4507)] = 126047, + [SMALL_STATE(4508)] = 126059, + [SMALL_STATE(4509)] = 126075, + [SMALL_STATE(4510)] = 126087, + [SMALL_STATE(4511)] = 126099, + [SMALL_STATE(4512)] = 126111, + [SMALL_STATE(4513)] = 126123, + [SMALL_STATE(4514)] = 126135, + [SMALL_STATE(4515)] = 126147, + [SMALL_STATE(4516)] = 126163, + [SMALL_STATE(4517)] = 126179, + [SMALL_STATE(4518)] = 126191, + [SMALL_STATE(4519)] = 126207, + [SMALL_STATE(4520)] = 126223, + [SMALL_STATE(4521)] = 126239, + [SMALL_STATE(4522)] = 126255, + [SMALL_STATE(4523)] = 126269, + [SMALL_STATE(4524)] = 126281, + [SMALL_STATE(4525)] = 126297, + [SMALL_STATE(4526)] = 126313, + [SMALL_STATE(4527)] = 126329, + [SMALL_STATE(4528)] = 126345, + [SMALL_STATE(4529)] = 126361, + [SMALL_STATE(4530)] = 126377, + [SMALL_STATE(4531)] = 126393, + [SMALL_STATE(4532)] = 126405, + [SMALL_STATE(4533)] = 126417, + [SMALL_STATE(4534)] = 126429, + [SMALL_STATE(4535)] = 126441, + [SMALL_STATE(4536)] = 126453, + [SMALL_STATE(4537)] = 126465, + [SMALL_STATE(4538)] = 126479, + [SMALL_STATE(4539)] = 126491, + [SMALL_STATE(4540)] = 126505, + [SMALL_STATE(4541)] = 126517, + [SMALL_STATE(4542)] = 126533, + [SMALL_STATE(4543)] = 126547, + [SMALL_STATE(4544)] = 126563, + [SMALL_STATE(4545)] = 126575, + [SMALL_STATE(4546)] = 126589, + [SMALL_STATE(4547)] = 126601, + [SMALL_STATE(4548)] = 126617, + [SMALL_STATE(4549)] = 126629, + [SMALL_STATE(4550)] = 126645, + [SMALL_STATE(4551)] = 126659, + [SMALL_STATE(4552)] = 126671, + [SMALL_STATE(4553)] = 126683, + [SMALL_STATE(4554)] = 126697, + [SMALL_STATE(4555)] = 126713, + [SMALL_STATE(4556)] = 126725, + [SMALL_STATE(4557)] = 126739, + [SMALL_STATE(4558)] = 126753, + [SMALL_STATE(4559)] = 126765, + [SMALL_STATE(4560)] = 126781, + [SMALL_STATE(4561)] = 126797, + [SMALL_STATE(4562)] = 126811, + [SMALL_STATE(4563)] = 126823, + [SMALL_STATE(4564)] = 126837, + [SMALL_STATE(4565)] = 126851, + [SMALL_STATE(4566)] = 126863, + [SMALL_STATE(4567)] = 126875, + [SMALL_STATE(4568)] = 126889, + [SMALL_STATE(4569)] = 126901, + [SMALL_STATE(4570)] = 126917, + [SMALL_STATE(4571)] = 126929, + [SMALL_STATE(4572)] = 126943, + [SMALL_STATE(4573)] = 126959, + [SMALL_STATE(4574)] = 126973, + [SMALL_STATE(4575)] = 126987, + [SMALL_STATE(4576)] = 127003, + [SMALL_STATE(4577)] = 127015, + [SMALL_STATE(4578)] = 127031, + [SMALL_STATE(4579)] = 127043, + [SMALL_STATE(4580)] = 127055, + [SMALL_STATE(4581)] = 127071, + [SMALL_STATE(4582)] = 127083, + [SMALL_STATE(4583)] = 127099, + [SMALL_STATE(4584)] = 127111, + [SMALL_STATE(4585)] = 127123, + [SMALL_STATE(4586)] = 127135, + [SMALL_STATE(4587)] = 127147, + [SMALL_STATE(4588)] = 127163, + [SMALL_STATE(4589)] = 127175, + [SMALL_STATE(4590)] = 127187, + [SMALL_STATE(4591)] = 127199, + [SMALL_STATE(4592)] = 127213, + [SMALL_STATE(4593)] = 127229, + [SMALL_STATE(4594)] = 127241, + [SMALL_STATE(4595)] = 127255, + [SMALL_STATE(4596)] = 127271, + [SMALL_STATE(4597)] = 127287, + [SMALL_STATE(4598)] = 127299, + [SMALL_STATE(4599)] = 127311, + [SMALL_STATE(4600)] = 127327, + [SMALL_STATE(4601)] = 127339, + [SMALL_STATE(4602)] = 127353, + [SMALL_STATE(4603)] = 127369, + [SMALL_STATE(4604)] = 127381, + [SMALL_STATE(4605)] = 127397, + [SMALL_STATE(4606)] = 127413, + [SMALL_STATE(4607)] = 127425, + [SMALL_STATE(4608)] = 127437, + [SMALL_STATE(4609)] = 127449, + [SMALL_STATE(4610)] = 127461, + [SMALL_STATE(4611)] = 127475, + [SMALL_STATE(4612)] = 127487, + [SMALL_STATE(4613)] = 127501, + [SMALL_STATE(4614)] = 127513, + [SMALL_STATE(4615)] = 127527, + [SMALL_STATE(4616)] = 127539, + [SMALL_STATE(4617)] = 127553, + [SMALL_STATE(4618)] = 127569, + [SMALL_STATE(4619)] = 127581, + [SMALL_STATE(4620)] = 127597, + [SMALL_STATE(4621)] = 127609, + [SMALL_STATE(4622)] = 127625, + [SMALL_STATE(4623)] = 127641, + [SMALL_STATE(4624)] = 127653, + [SMALL_STATE(4625)] = 127665, + [SMALL_STATE(4626)] = 127679, + [SMALL_STATE(4627)] = 127691, + [SMALL_STATE(4628)] = 127707, + [SMALL_STATE(4629)] = 127723, + [SMALL_STATE(4630)] = 127739, + [SMALL_STATE(4631)] = 127751, + [SMALL_STATE(4632)] = 127763, + [SMALL_STATE(4633)] = 127779, + [SMALL_STATE(4634)] = 127791, + [SMALL_STATE(4635)] = 127807, + [SMALL_STATE(4636)] = 127823, + [SMALL_STATE(4637)] = 127835, + [SMALL_STATE(4638)] = 127851, + [SMALL_STATE(4639)] = 127867, + [SMALL_STATE(4640)] = 127883, + [SMALL_STATE(4641)] = 127895, + [SMALL_STATE(4642)] = 127911, + [SMALL_STATE(4643)] = 127925, + [SMALL_STATE(4644)] = 127937, + [SMALL_STATE(4645)] = 127949, + [SMALL_STATE(4646)] = 127963, + [SMALL_STATE(4647)] = 127975, + [SMALL_STATE(4648)] = 127987, + [SMALL_STATE(4649)] = 128003, + [SMALL_STATE(4650)] = 128017, + [SMALL_STATE(4651)] = 128031, + [SMALL_STATE(4652)] = 128047, + [SMALL_STATE(4653)] = 128059, + [SMALL_STATE(4654)] = 128071, + [SMALL_STATE(4655)] = 128083, + [SMALL_STATE(4656)] = 128099, + [SMALL_STATE(4657)] = 128111, + [SMALL_STATE(4658)] = 128127, + [SMALL_STATE(4659)] = 128143, + [SMALL_STATE(4660)] = 128155, + [SMALL_STATE(4661)] = 128167, + [SMALL_STATE(4662)] = 128179, + [SMALL_STATE(4663)] = 128191, + [SMALL_STATE(4664)] = 128203, + [SMALL_STATE(4665)] = 128215, + [SMALL_STATE(4666)] = 128231, + [SMALL_STATE(4667)] = 128243, + [SMALL_STATE(4668)] = 128259, + [SMALL_STATE(4669)] = 128273, + [SMALL_STATE(4670)] = 128289, + [SMALL_STATE(4671)] = 128302, + [SMALL_STATE(4672)] = 128315, + [SMALL_STATE(4673)] = 128328, + [SMALL_STATE(4674)] = 128341, + [SMALL_STATE(4675)] = 128354, + [SMALL_STATE(4676)] = 128367, + [SMALL_STATE(4677)] = 128380, + [SMALL_STATE(4678)] = 128393, + [SMALL_STATE(4679)] = 128406, + [SMALL_STATE(4680)] = 128419, + [SMALL_STATE(4681)] = 128432, + [SMALL_STATE(4682)] = 128445, + [SMALL_STATE(4683)] = 128458, + [SMALL_STATE(4684)] = 128471, + [SMALL_STATE(4685)] = 128484, + [SMALL_STATE(4686)] = 128497, + [SMALL_STATE(4687)] = 128510, + [SMALL_STATE(4688)] = 128523, + [SMALL_STATE(4689)] = 128536, + [SMALL_STATE(4690)] = 128549, + [SMALL_STATE(4691)] = 128562, + [SMALL_STATE(4692)] = 128575, + [SMALL_STATE(4693)] = 128588, + [SMALL_STATE(4694)] = 128601, + [SMALL_STATE(4695)] = 128614, + [SMALL_STATE(4696)] = 128627, + [SMALL_STATE(4697)] = 128640, + [SMALL_STATE(4698)] = 128653, + [SMALL_STATE(4699)] = 128666, + [SMALL_STATE(4700)] = 128679, + [SMALL_STATE(4701)] = 128692, + [SMALL_STATE(4702)] = 128705, + [SMALL_STATE(4703)] = 128718, + [SMALL_STATE(4704)] = 128731, + [SMALL_STATE(4705)] = 128744, + [SMALL_STATE(4706)] = 128757, + [SMALL_STATE(4707)] = 128770, + [SMALL_STATE(4708)] = 128783, + [SMALL_STATE(4709)] = 128796, + [SMALL_STATE(4710)] = 128809, + [SMALL_STATE(4711)] = 128822, + [SMALL_STATE(4712)] = 128835, + [SMALL_STATE(4713)] = 128848, + [SMALL_STATE(4714)] = 128861, + [SMALL_STATE(4715)] = 128874, + [SMALL_STATE(4716)] = 128887, + [SMALL_STATE(4717)] = 128900, + [SMALL_STATE(4718)] = 128913, + [SMALL_STATE(4719)] = 128926, + [SMALL_STATE(4720)] = 128939, + [SMALL_STATE(4721)] = 128952, + [SMALL_STATE(4722)] = 128965, + [SMALL_STATE(4723)] = 128978, + [SMALL_STATE(4724)] = 128991, + [SMALL_STATE(4725)] = 129002, + [SMALL_STATE(4726)] = 129013, + [SMALL_STATE(4727)] = 129026, + [SMALL_STATE(4728)] = 129037, + [SMALL_STATE(4729)] = 129050, + [SMALL_STATE(4730)] = 129063, + [SMALL_STATE(4731)] = 129076, + [SMALL_STATE(4732)] = 129089, + [SMALL_STATE(4733)] = 129100, + [SMALL_STATE(4734)] = 129113, + [SMALL_STATE(4735)] = 129126, + [SMALL_STATE(4736)] = 129139, + [SMALL_STATE(4737)] = 129150, + [SMALL_STATE(4738)] = 129163, + [SMALL_STATE(4739)] = 129176, + [SMALL_STATE(4740)] = 129189, + [SMALL_STATE(4741)] = 129202, + [SMALL_STATE(4742)] = 129215, + [SMALL_STATE(4743)] = 129228, + [SMALL_STATE(4744)] = 129241, + [SMALL_STATE(4745)] = 129254, + [SMALL_STATE(4746)] = 129267, + [SMALL_STATE(4747)] = 129280, + [SMALL_STATE(4748)] = 129293, + [SMALL_STATE(4749)] = 129306, + [SMALL_STATE(4750)] = 129319, + [SMALL_STATE(4751)] = 129332, + [SMALL_STATE(4752)] = 129345, + [SMALL_STATE(4753)] = 129356, + [SMALL_STATE(4754)] = 129369, + [SMALL_STATE(4755)] = 129382, + [SMALL_STATE(4756)] = 129393, + [SMALL_STATE(4757)] = 129406, + [SMALL_STATE(4758)] = 129417, + [SMALL_STATE(4759)] = 129430, + [SMALL_STATE(4760)] = 129443, + [SMALL_STATE(4761)] = 129456, + [SMALL_STATE(4762)] = 129469, + [SMALL_STATE(4763)] = 129482, + [SMALL_STATE(4764)] = 129495, + [SMALL_STATE(4765)] = 129508, + [SMALL_STATE(4766)] = 129521, + [SMALL_STATE(4767)] = 129534, + [SMALL_STATE(4768)] = 129547, + [SMALL_STATE(4769)] = 129560, + [SMALL_STATE(4770)] = 129573, + [SMALL_STATE(4771)] = 129586, + [SMALL_STATE(4772)] = 129599, + [SMALL_STATE(4773)] = 129612, + [SMALL_STATE(4774)] = 129625, + [SMALL_STATE(4775)] = 129638, + [SMALL_STATE(4776)] = 129651, + [SMALL_STATE(4777)] = 129664, + [SMALL_STATE(4778)] = 129677, + [SMALL_STATE(4779)] = 129690, + [SMALL_STATE(4780)] = 129703, + [SMALL_STATE(4781)] = 129716, + [SMALL_STATE(4782)] = 129729, + [SMALL_STATE(4783)] = 129742, + [SMALL_STATE(4784)] = 129755, + [SMALL_STATE(4785)] = 129768, + [SMALL_STATE(4786)] = 129781, + [SMALL_STATE(4787)] = 129794, + [SMALL_STATE(4788)] = 129807, + [SMALL_STATE(4789)] = 129820, + [SMALL_STATE(4790)] = 129833, + [SMALL_STATE(4791)] = 129846, + [SMALL_STATE(4792)] = 129859, + [SMALL_STATE(4793)] = 129872, + [SMALL_STATE(4794)] = 129885, + [SMALL_STATE(4795)] = 129898, + [SMALL_STATE(4796)] = 129911, + [SMALL_STATE(4797)] = 129924, + [SMALL_STATE(4798)] = 129937, + [SMALL_STATE(4799)] = 129950, + [SMALL_STATE(4800)] = 129963, + [SMALL_STATE(4801)] = 129976, + [SMALL_STATE(4802)] = 129989, + [SMALL_STATE(4803)] = 130002, + [SMALL_STATE(4804)] = 130015, + [SMALL_STATE(4805)] = 130028, + [SMALL_STATE(4806)] = 130041, + [SMALL_STATE(4807)] = 130054, + [SMALL_STATE(4808)] = 130067, + [SMALL_STATE(4809)] = 130080, + [SMALL_STATE(4810)] = 130093, + [SMALL_STATE(4811)] = 130106, + [SMALL_STATE(4812)] = 130119, + [SMALL_STATE(4813)] = 130132, + [SMALL_STATE(4814)] = 130145, + [SMALL_STATE(4815)] = 130156, + [SMALL_STATE(4816)] = 130169, + [SMALL_STATE(4817)] = 130182, + [SMALL_STATE(4818)] = 130195, + [SMALL_STATE(4819)] = 130208, + [SMALL_STATE(4820)] = 130221, + [SMALL_STATE(4821)] = 130234, + [SMALL_STATE(4822)] = 130247, + [SMALL_STATE(4823)] = 130260, + [SMALL_STATE(4824)] = 130273, + [SMALL_STATE(4825)] = 130286, + [SMALL_STATE(4826)] = 130299, + [SMALL_STATE(4827)] = 130312, + [SMALL_STATE(4828)] = 130325, + [SMALL_STATE(4829)] = 130336, + [SMALL_STATE(4830)] = 130349, + [SMALL_STATE(4831)] = 130362, + [SMALL_STATE(4832)] = 130375, + [SMALL_STATE(4833)] = 130388, + [SMALL_STATE(4834)] = 130401, + [SMALL_STATE(4835)] = 130414, + [SMALL_STATE(4836)] = 130427, + [SMALL_STATE(4837)] = 130440, + [SMALL_STATE(4838)] = 130453, + [SMALL_STATE(4839)] = 130466, + [SMALL_STATE(4840)] = 130476, + [SMALL_STATE(4841)] = 130486, + [SMALL_STATE(4842)] = 130496, + [SMALL_STATE(4843)] = 130506, + [SMALL_STATE(4844)] = 130516, + [SMALL_STATE(4845)] = 130526, + [SMALL_STATE(4846)] = 130536, + [SMALL_STATE(4847)] = 130546, + [SMALL_STATE(4848)] = 130556, + [SMALL_STATE(4849)] = 130566, + [SMALL_STATE(4850)] = 130576, + [SMALL_STATE(4851)] = 130586, + [SMALL_STATE(4852)] = 130596, + [SMALL_STATE(4853)] = 130606, + [SMALL_STATE(4854)] = 130616, + [SMALL_STATE(4855)] = 130626, + [SMALL_STATE(4856)] = 130636, + [SMALL_STATE(4857)] = 130646, + [SMALL_STATE(4858)] = 130656, + [SMALL_STATE(4859)] = 130666, + [SMALL_STATE(4860)] = 130676, + [SMALL_STATE(4861)] = 130686, + [SMALL_STATE(4862)] = 130696, + [SMALL_STATE(4863)] = 130706, + [SMALL_STATE(4864)] = 130716, + [SMALL_STATE(4865)] = 130726, + [SMALL_STATE(4866)] = 130736, + [SMALL_STATE(4867)] = 130746, + [SMALL_STATE(4868)] = 130756, + [SMALL_STATE(4869)] = 130766, + [SMALL_STATE(4870)] = 130776, + [SMALL_STATE(4871)] = 130786, + [SMALL_STATE(4872)] = 130796, + [SMALL_STATE(4873)] = 130806, + [SMALL_STATE(4874)] = 130816, + [SMALL_STATE(4875)] = 130826, + [SMALL_STATE(4876)] = 130836, + [SMALL_STATE(4877)] = 130846, + [SMALL_STATE(4878)] = 130856, + [SMALL_STATE(4879)] = 130866, + [SMALL_STATE(4880)] = 130876, + [SMALL_STATE(4881)] = 130886, + [SMALL_STATE(4882)] = 130896, + [SMALL_STATE(4883)] = 130906, + [SMALL_STATE(4884)] = 130916, + [SMALL_STATE(4885)] = 130926, + [SMALL_STATE(4886)] = 130936, + [SMALL_STATE(4887)] = 130946, + [SMALL_STATE(4888)] = 130956, + [SMALL_STATE(4889)] = 130966, + [SMALL_STATE(4890)] = 130976, + [SMALL_STATE(4891)] = 130986, + [SMALL_STATE(4892)] = 130996, + [SMALL_STATE(4893)] = 131006, + [SMALL_STATE(4894)] = 131016, + [SMALL_STATE(4895)] = 131026, + [SMALL_STATE(4896)] = 131036, + [SMALL_STATE(4897)] = 131046, + [SMALL_STATE(4898)] = 131056, + [SMALL_STATE(4899)] = 131066, + [SMALL_STATE(4900)] = 131076, + [SMALL_STATE(4901)] = 131086, + [SMALL_STATE(4902)] = 131096, + [SMALL_STATE(4903)] = 131106, + [SMALL_STATE(4904)] = 131116, + [SMALL_STATE(4905)] = 131126, + [SMALL_STATE(4906)] = 131136, + [SMALL_STATE(4907)] = 131146, + [SMALL_STATE(4908)] = 131156, + [SMALL_STATE(4909)] = 131166, + [SMALL_STATE(4910)] = 131176, + [SMALL_STATE(4911)] = 131186, + [SMALL_STATE(4912)] = 131196, + [SMALL_STATE(4913)] = 131206, + [SMALL_STATE(4914)] = 131216, + [SMALL_STATE(4915)] = 131226, + [SMALL_STATE(4916)] = 131236, + [SMALL_STATE(4917)] = 131246, + [SMALL_STATE(4918)] = 131256, + [SMALL_STATE(4919)] = 131266, + [SMALL_STATE(4920)] = 131276, + [SMALL_STATE(4921)] = 131286, + [SMALL_STATE(4922)] = 131296, + [SMALL_STATE(4923)] = 131306, + [SMALL_STATE(4924)] = 131316, + [SMALL_STATE(4925)] = 131326, + [SMALL_STATE(4926)] = 131336, + [SMALL_STATE(4927)] = 131346, + [SMALL_STATE(4928)] = 131356, + [SMALL_STATE(4929)] = 131366, + [SMALL_STATE(4930)] = 131376, + [SMALL_STATE(4931)] = 131386, + [SMALL_STATE(4932)] = 131396, + [SMALL_STATE(4933)] = 131406, + [SMALL_STATE(4934)] = 131416, + [SMALL_STATE(4935)] = 131426, + [SMALL_STATE(4936)] = 131436, + [SMALL_STATE(4937)] = 131446, + [SMALL_STATE(4938)] = 131456, + [SMALL_STATE(4939)] = 131466, + [SMALL_STATE(4940)] = 131476, + [SMALL_STATE(4941)] = 131486, + [SMALL_STATE(4942)] = 131496, + [SMALL_STATE(4943)] = 131506, + [SMALL_STATE(4944)] = 131516, + [SMALL_STATE(4945)] = 131526, + [SMALL_STATE(4946)] = 131536, + [SMALL_STATE(4947)] = 131546, + [SMALL_STATE(4948)] = 131556, + [SMALL_STATE(4949)] = 131566, + [SMALL_STATE(4950)] = 131576, + [SMALL_STATE(4951)] = 131586, + [SMALL_STATE(4952)] = 131596, + [SMALL_STATE(4953)] = 131606, + [SMALL_STATE(4954)] = 131616, + [SMALL_STATE(4955)] = 131626, + [SMALL_STATE(4956)] = 131636, + [SMALL_STATE(4957)] = 131646, + [SMALL_STATE(4958)] = 131656, + [SMALL_STATE(4959)] = 131666, + [SMALL_STATE(4960)] = 131676, + [SMALL_STATE(4961)] = 131686, + [SMALL_STATE(4962)] = 131696, + [SMALL_STATE(4963)] = 131706, + [SMALL_STATE(4964)] = 131716, + [SMALL_STATE(4965)] = 131726, + [SMALL_STATE(4966)] = 131736, + [SMALL_STATE(4967)] = 131746, + [SMALL_STATE(4968)] = 131756, + [SMALL_STATE(4969)] = 131766, + [SMALL_STATE(4970)] = 131776, + [SMALL_STATE(4971)] = 131786, + [SMALL_STATE(4972)] = 131796, + [SMALL_STATE(4973)] = 131806, + [SMALL_STATE(4974)] = 131816, + [SMALL_STATE(4975)] = 131826, + [SMALL_STATE(4976)] = 131836, + [SMALL_STATE(4977)] = 131846, + [SMALL_STATE(4978)] = 131856, + [SMALL_STATE(4979)] = 131866, + [SMALL_STATE(4980)] = 131876, + [SMALL_STATE(4981)] = 131886, + [SMALL_STATE(4982)] = 131896, + [SMALL_STATE(4983)] = 131906, + [SMALL_STATE(4984)] = 131916, + [SMALL_STATE(4985)] = 131926, + [SMALL_STATE(4986)] = 131936, + [SMALL_STATE(4987)] = 131946, + [SMALL_STATE(4988)] = 131956, + [SMALL_STATE(4989)] = 131966, + [SMALL_STATE(4990)] = 131976, + [SMALL_STATE(4991)] = 131986, + [SMALL_STATE(4992)] = 131996, + [SMALL_STATE(4993)] = 132006, + [SMALL_STATE(4994)] = 132016, + [SMALL_STATE(4995)] = 132026, + [SMALL_STATE(4996)] = 132036, + [SMALL_STATE(4997)] = 132046, + [SMALL_STATE(4998)] = 132056, + [SMALL_STATE(4999)] = 132066, + [SMALL_STATE(5000)] = 132076, + [SMALL_STATE(5001)] = 132086, + [SMALL_STATE(5002)] = 132096, + [SMALL_STATE(5003)] = 132106, + [SMALL_STATE(5004)] = 132116, + [SMALL_STATE(5005)] = 132126, + [SMALL_STATE(5006)] = 132136, + [SMALL_STATE(5007)] = 132146, + [SMALL_STATE(5008)] = 132156, + [SMALL_STATE(5009)] = 132166, + [SMALL_STATE(5010)] = 132176, + [SMALL_STATE(5011)] = 132186, + [SMALL_STATE(5012)] = 132196, + [SMALL_STATE(5013)] = 132206, + [SMALL_STATE(5014)] = 132216, + [SMALL_STATE(5015)] = 132226, + [SMALL_STATE(5016)] = 132236, + [SMALL_STATE(5017)] = 132246, + [SMALL_STATE(5018)] = 132256, + [SMALL_STATE(5019)] = 132266, + [SMALL_STATE(5020)] = 132276, + [SMALL_STATE(5021)] = 132286, + [SMALL_STATE(5022)] = 132296, + [SMALL_STATE(5023)] = 132306, + [SMALL_STATE(5024)] = 132316, + [SMALL_STATE(5025)] = 132326, + [SMALL_STATE(5026)] = 132336, + [SMALL_STATE(5027)] = 132346, + [SMALL_STATE(5028)] = 132356, + [SMALL_STATE(5029)] = 132366, + [SMALL_STATE(5030)] = 132376, + [SMALL_STATE(5031)] = 132386, + [SMALL_STATE(5032)] = 132396, + [SMALL_STATE(5033)] = 132406, + [SMALL_STATE(5034)] = 132416, + [SMALL_STATE(5035)] = 132426, + [SMALL_STATE(5036)] = 132436, + [SMALL_STATE(5037)] = 132446, + [SMALL_STATE(5038)] = 132456, + [SMALL_STATE(5039)] = 132466, + [SMALL_STATE(5040)] = 132476, + [SMALL_STATE(5041)] = 132486, + [SMALL_STATE(5042)] = 132496, + [SMALL_STATE(5043)] = 132506, + [SMALL_STATE(5044)] = 132516, + [SMALL_STATE(5045)] = 132526, + [SMALL_STATE(5046)] = 132536, + [SMALL_STATE(5047)] = 132546, + [SMALL_STATE(5048)] = 132556, + [SMALL_STATE(5049)] = 132566, + [SMALL_STATE(5050)] = 132576, + [SMALL_STATE(5051)] = 132586, + [SMALL_STATE(5052)] = 132596, + [SMALL_STATE(5053)] = 132606, + [SMALL_STATE(5054)] = 132616, + [SMALL_STATE(5055)] = 132626, + [SMALL_STATE(5056)] = 132636, + [SMALL_STATE(5057)] = 132646, + [SMALL_STATE(5058)] = 132656, + [SMALL_STATE(5059)] = 132666, + [SMALL_STATE(5060)] = 132676, + [SMALL_STATE(5061)] = 132686, + [SMALL_STATE(5062)] = 132696, + [SMALL_STATE(5063)] = 132706, + [SMALL_STATE(5064)] = 132716, + [SMALL_STATE(5065)] = 132726, + [SMALL_STATE(5066)] = 132736, + [SMALL_STATE(5067)] = 132746, + [SMALL_STATE(5068)] = 132756, + [SMALL_STATE(5069)] = 132766, + [SMALL_STATE(5070)] = 132776, + [SMALL_STATE(5071)] = 132786, + [SMALL_STATE(5072)] = 132796, + [SMALL_STATE(5073)] = 132806, + [SMALL_STATE(5074)] = 132816, + [SMALL_STATE(5075)] = 132826, + [SMALL_STATE(5076)] = 132836, + [SMALL_STATE(5077)] = 132846, + [SMALL_STATE(5078)] = 132856, + [SMALL_STATE(5079)] = 132866, + [SMALL_STATE(5080)] = 132876, + [SMALL_STATE(5081)] = 132886, + [SMALL_STATE(5082)] = 132896, + [SMALL_STATE(5083)] = 132906, + [SMALL_STATE(5084)] = 132916, + [SMALL_STATE(5085)] = 132926, + [SMALL_STATE(5086)] = 132936, + [SMALL_STATE(5087)] = 132946, + [SMALL_STATE(5088)] = 132956, + [SMALL_STATE(5089)] = 132966, + [SMALL_STATE(5090)] = 132976, + [SMALL_STATE(5091)] = 132986, + [SMALL_STATE(5092)] = 132996, + [SMALL_STATE(5093)] = 133006, + [SMALL_STATE(5094)] = 133016, + [SMALL_STATE(5095)] = 133026, + [SMALL_STATE(5096)] = 133036, + [SMALL_STATE(5097)] = 133046, + [SMALL_STATE(5098)] = 133056, + [SMALL_STATE(5099)] = 133066, + [SMALL_STATE(5100)] = 133076, + [SMALL_STATE(5101)] = 133086, + [SMALL_STATE(5102)] = 133096, + [SMALL_STATE(5103)] = 133106, + [SMALL_STATE(5104)] = 133116, + [SMALL_STATE(5105)] = 133126, + [SMALL_STATE(5106)] = 133136, + [SMALL_STATE(5107)] = 133146, + [SMALL_STATE(5108)] = 133156, + [SMALL_STATE(5109)] = 133166, + [SMALL_STATE(5110)] = 133176, + [SMALL_STATE(5111)] = 133186, + [SMALL_STATE(5112)] = 133196, + [SMALL_STATE(5113)] = 133206, + [SMALL_STATE(5114)] = 133216, + [SMALL_STATE(5115)] = 133226, + [SMALL_STATE(5116)] = 133236, + [SMALL_STATE(5117)] = 133246, + [SMALL_STATE(5118)] = 133256, + [SMALL_STATE(5119)] = 133266, + [SMALL_STATE(5120)] = 133276, + [SMALL_STATE(5121)] = 133286, + [SMALL_STATE(5122)] = 133296, + [SMALL_STATE(5123)] = 133306, + [SMALL_STATE(5124)] = 133316, + [SMALL_STATE(5125)] = 133326, + [SMALL_STATE(5126)] = 133336, + [SMALL_STATE(5127)] = 133346, + [SMALL_STATE(5128)] = 133356, + [SMALL_STATE(5129)] = 133366, + [SMALL_STATE(5130)] = 133376, + [SMALL_STATE(5131)] = 133386, + [SMALL_STATE(5132)] = 133396, + [SMALL_STATE(5133)] = 133406, + [SMALL_STATE(5134)] = 133416, + [SMALL_STATE(5135)] = 133426, + [SMALL_STATE(5136)] = 133436, + [SMALL_STATE(5137)] = 133446, + [SMALL_STATE(5138)] = 133456, + [SMALL_STATE(5139)] = 133466, + [SMALL_STATE(5140)] = 133476, + [SMALL_STATE(5141)] = 133486, + [SMALL_STATE(5142)] = 133496, + [SMALL_STATE(5143)] = 133506, + [SMALL_STATE(5144)] = 133516, + [SMALL_STATE(5145)] = 133526, + [SMALL_STATE(5146)] = 133536, + [SMALL_STATE(5147)] = 133546, + [SMALL_STATE(5148)] = 133556, + [SMALL_STATE(5149)] = 133566, + [SMALL_STATE(5150)] = 133576, + [SMALL_STATE(5151)] = 133586, + [SMALL_STATE(5152)] = 133596, + [SMALL_STATE(5153)] = 133606, + [SMALL_STATE(5154)] = 133616, + [SMALL_STATE(5155)] = 133626, + [SMALL_STATE(5156)] = 133636, + [SMALL_STATE(5157)] = 133646, + [SMALL_STATE(5158)] = 133656, + [SMALL_STATE(5159)] = 133666, + [SMALL_STATE(5160)] = 133676, + [SMALL_STATE(5161)] = 133686, + [SMALL_STATE(5162)] = 133696, + [SMALL_STATE(5163)] = 133706, + [SMALL_STATE(5164)] = 133716, + [SMALL_STATE(5165)] = 133726, + [SMALL_STATE(5166)] = 133736, + [SMALL_STATE(5167)] = 133746, + [SMALL_STATE(5168)] = 133756, + [SMALL_STATE(5169)] = 133766, + [SMALL_STATE(5170)] = 133776, + [SMALL_STATE(5171)] = 133786, + [SMALL_STATE(5172)] = 133796, + [SMALL_STATE(5173)] = 133806, + [SMALL_STATE(5174)] = 133816, + [SMALL_STATE(5175)] = 133826, + [SMALL_STATE(5176)] = 133836, + [SMALL_STATE(5177)] = 133846, + [SMALL_STATE(5178)] = 133856, + [SMALL_STATE(5179)] = 133866, + [SMALL_STATE(5180)] = 133876, + [SMALL_STATE(5181)] = 133886, + [SMALL_STATE(5182)] = 133896, + [SMALL_STATE(5183)] = 133906, + [SMALL_STATE(5184)] = 133916, + [SMALL_STATE(5185)] = 133926, + [SMALL_STATE(5186)] = 133936, + [SMALL_STATE(5187)] = 133946, + [SMALL_STATE(5188)] = 133956, + [SMALL_STATE(5189)] = 133966, + [SMALL_STATE(5190)] = 133976, + [SMALL_STATE(5191)] = 133986, + [SMALL_STATE(5192)] = 133996, + [SMALL_STATE(5193)] = 134006, + [SMALL_STATE(5194)] = 134016, + [SMALL_STATE(5195)] = 134026, + [SMALL_STATE(5196)] = 134036, + [SMALL_STATE(5197)] = 134046, + [SMALL_STATE(5198)] = 134056, + [SMALL_STATE(5199)] = 134066, + [SMALL_STATE(5200)] = 134076, + [SMALL_STATE(5201)] = 134086, + [SMALL_STATE(5202)] = 134096, + [SMALL_STATE(5203)] = 134106, + [SMALL_STATE(5204)] = 134116, + [SMALL_STATE(5205)] = 134126, + [SMALL_STATE(5206)] = 134136, + [SMALL_STATE(5207)] = 134146, + [SMALL_STATE(5208)] = 134156, + [SMALL_STATE(5209)] = 134166, + [SMALL_STATE(5210)] = 134176, + [SMALL_STATE(5211)] = 134186, + [SMALL_STATE(5212)] = 134196, + [SMALL_STATE(5213)] = 134206, + [SMALL_STATE(5214)] = 134216, + [SMALL_STATE(5215)] = 134226, + [SMALL_STATE(5216)] = 134236, + [SMALL_STATE(5217)] = 134246, + [SMALL_STATE(5218)] = 134256, + [SMALL_STATE(5219)] = 134266, + [SMALL_STATE(5220)] = 134276, + [SMALL_STATE(5221)] = 134286, + [SMALL_STATE(5222)] = 134296, + [SMALL_STATE(5223)] = 134306, + [SMALL_STATE(5224)] = 134316, + [SMALL_STATE(5225)] = 134326, + [SMALL_STATE(5226)] = 134336, + [SMALL_STATE(5227)] = 134346, + [SMALL_STATE(5228)] = 134356, + [SMALL_STATE(5229)] = 134366, + [SMALL_STATE(5230)] = 134376, + [SMALL_STATE(5231)] = 134386, + [SMALL_STATE(5232)] = 134396, + [SMALL_STATE(5233)] = 134406, + [SMALL_STATE(5234)] = 134416, + [SMALL_STATE(5235)] = 134426, + [SMALL_STATE(5236)] = 134436, + [SMALL_STATE(5237)] = 134446, + [SMALL_STATE(5238)] = 134456, + [SMALL_STATE(5239)] = 134466, + [SMALL_STATE(5240)] = 134476, + [SMALL_STATE(5241)] = 134486, + [SMALL_STATE(5242)] = 134496, + [SMALL_STATE(5243)] = 134506, + [SMALL_STATE(5244)] = 134516, + [SMALL_STATE(5245)] = 134526, + [SMALL_STATE(5246)] = 134536, + [SMALL_STATE(5247)] = 134546, + [SMALL_STATE(5248)] = 134556, + [SMALL_STATE(5249)] = 134566, + [SMALL_STATE(5250)] = 134576, + [SMALL_STATE(5251)] = 134586, + [SMALL_STATE(5252)] = 134596, + [SMALL_STATE(5253)] = 134606, + [SMALL_STATE(5254)] = 134616, + [SMALL_STATE(5255)] = 134626, + [SMALL_STATE(5256)] = 134636, + [SMALL_STATE(5257)] = 134646, + [SMALL_STATE(5258)] = 134656, }; 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(4935), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [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), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), [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), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), [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), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), [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), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), [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), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3765), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1774), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3915), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3916), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3917), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2907), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1683), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), + [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4503), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1762), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1764), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4060), + [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4547), + [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1132), [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), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5136), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4596), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1348), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5136), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1095), + [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1096), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1097), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4980), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(347), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(29), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3627), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5211), + [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3), [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), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2292), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3423), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3582), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(114), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(114), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(133), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(679), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(680), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4972), + [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(903), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3951), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5149), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5150), + [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3995), + [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3824), [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), + [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5147), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3768), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1737), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3920), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3921), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3922), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2907), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1683), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4503), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1762), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1764), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4060), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4547), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1132), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(950), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5136), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3935), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1348), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5136), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1095), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1096), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1097), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4980), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(347), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(29), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3627), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5211), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3), [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), - [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), - [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), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3423), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3582), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(114), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(114), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(133), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(679), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(680), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4972), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(903), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3951), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5149), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5150), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3995), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3824), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1451), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5147), + [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(96), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [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(113), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [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(362), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 32), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 32), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 32), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 32), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5136), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5136), + [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4041), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2907), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(963), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), + [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1348), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), + [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1096), + [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1097), + [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3624), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5211), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), + [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2259), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3423), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3582), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(124), + [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(124), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4972), + [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3951), + [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5149), + [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5150), + [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3995), + [1128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), + [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), + [1134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5147), + [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5136), + [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5136), + [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4041), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2907), + [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1258), + [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4596), + [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1348), + [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), + [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1096), + [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1097), + [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3624), + [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5211), + [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3), + [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), + [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2292), + [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3423), + [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3582), + [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(124), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(124), + [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4972), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3951), + [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5149), + [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5150), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3995), + [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), + [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1454), + [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5147), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), [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), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 22), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 22), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 1, 0, 0), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 1, 0, 0), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(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(3518), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [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 = true}}, SHIFT(495), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3449), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [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(3473), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3473), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 31), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 31), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), [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), - [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), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 30), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 30), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 126), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 126), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 127), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 127), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 128), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 128), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 129), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 129), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 100), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 100), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 47), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 47), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(696), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3964), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4302), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4482), + [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(359), + [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(34), + [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3629), + [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(7), + [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3466), + [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(68), + [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3464), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5015), + [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3331), + [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3331), + [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3428), + [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4097), + [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3959), + [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5107), + [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4304), + [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3961), + [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5157), + [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5158), + [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3952), + [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3857), + [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(378), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4332), + [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5155), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 24), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 24), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 78), + [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 78), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3462), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 74), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 74), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 75), + [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 75), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), + [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 77), + [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 77), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), + [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 156), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 156), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 157), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 157), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), + [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 162), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 162), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 4), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 4), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(696), + [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1119), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 61), + [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 61), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 61), + [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 61), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), + [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 30), + [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 30), + [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4770), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4770), + [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(2920), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4978), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4722), + [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(70), + [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4283), + [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5077), + [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(68), + [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5015), + [2330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(1860), + [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(1860), + [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(1916), + [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(679), + [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4026), + [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4973), + [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4974), + [2351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3995), + [2354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3824), + [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(457), + [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4968), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 47), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 47), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 115), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 115), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 116), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 116), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 117), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 117), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 123), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 123), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 100), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 100), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4770), + [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4770), + [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(2920), + [2444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4978), + [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4722), + [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(70), + [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4371), + [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5077), + [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(68), + [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5015), + [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(1860), + [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(1860), + [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(1916), + [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(679), + [2477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4026), + [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4973), + [2483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4974), + [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3995), + [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3824), + [2492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(457), + [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4968), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1010), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 41), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 41), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 118), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 118), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 31), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 31), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 163), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 163), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 73), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 73), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 113), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 113), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 5), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 5), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 113), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 113), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 59), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 59), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 59), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 59), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 73), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 73), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 191), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 191), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 73), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 73), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), SHIFT(696), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), SHIFT(696), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), SHIFT(696), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [2919] = {.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), + [2923] = {.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), + [2927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 73), SHIFT(696), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1372), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1373), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(696), + [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), + [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3941), + [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3944), + [3156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4089), + [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1099), + [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4231), + [3168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(473), + [3171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4655), + [3174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3471), + [3177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3472), + [3180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3356), + [3183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3356), + [3186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3403), + [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [3192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [3195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4972), + [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), + [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4026), + [3204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4973), + [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4974), + [3210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4968), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1379), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4885), + [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4885), + [3398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5140), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1894), + [3408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1894), + [3411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1945), + [3414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4885), + [3417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4885), + [3420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5140), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1894), + [3430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1894), + [3433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1945), + [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), + [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1416), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3904), - [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4262), - [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4584), - [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1125), - [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(30), - [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4193), - [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(458), - [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3409), - [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3410), - [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3360), - [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4163), - [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3903), - [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5058), - [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4685), - [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3966), - [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5108), - [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5109), - [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4284), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5106), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 10), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [3653] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 32), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 47), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), REDUCE(sym_record_body, 2, 0, 18), - [3699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 48), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 103), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1489), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 18), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), - [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 103), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 47), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [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), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1414), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3964), + [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4302), + [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4482), + [3529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(1126), + [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(34), + [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4283), + [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(456), + [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3466), + [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3464), + [3547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3331), + [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3331), + [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3428), + [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4097), + [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3959), + [3562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5107), + [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4703), + [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3961), + [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5157), + [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5158), + [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4332), + [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5155), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 12), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3655] = {.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), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 34), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), + [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), + [3703] = {.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), + [3706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 49), REDUCE(sym_record_body, 3, 0, 49), + [3709] = {.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), + [3712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), REDUCE(sym_record_body, 2, 0, 20), + [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), + [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), + [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), + [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 105), + [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 49), + [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 20), + [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 50), + [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [3731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1493), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 49), + [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 50), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), + [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), + [3750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1676), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3444), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [4037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 141), SHIFT_REPEAT(5026), + [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 141), SHIFT_REPEAT(5026), + [4043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 141), SHIFT_REPEAT(4494), + [4046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 141), SHIFT_REPEAT(1894), + [4049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 141), SHIFT_REPEAT(1945), + [4052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 141), SHIFT_REPEAT(3961), + [4055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 141), SHIFT_REPEAT(5157), + [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 141), SHIFT_REPEAT(5158), + [4061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 141), SHIFT_REPEAT(5155), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3503), + [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 173), SHIFT_REPEAT(4090), + [4098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 173), SHIFT_REPEAT(3925), + [4101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 173), SHIFT_REPEAT(3926), + [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 173), SHIFT_REPEAT(5255), + [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 173), SHIFT_REPEAT(4098), + [4136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 173), SHIFT_REPEAT(4061), + [4139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 173), SHIFT_REPEAT(4073), + [4142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 173), SHIFT_REPEAT(5244), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [4211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1900), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 90), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 90), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 85), + [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 90), + [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 173), + [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 85), + [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 173), + [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 204), + [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3529), + [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 204), [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), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 90), + [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), + [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [4362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2117), + [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 92), + [4367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 176), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 92), + [4373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2127), + [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), + [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 49), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), + [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 50), + [4386] = {.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), + [4390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 22), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 22), + [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1957), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [4416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 139), + [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 140), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 20), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 92), + [4498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2115), + [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2183), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2141), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 36), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 36), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 87), + [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 87), + [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 88), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 88), + [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 89), + [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 89), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [4677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2218), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [4702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), + [4704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), + [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2240), + [4723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2237), + [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), + [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 20), + [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 50), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 20), + [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 49), + [4738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 105), + [4740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 20), + [4742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2249), + [4745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2248), + [4748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(5004), + [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(4896), + [4754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(5104), + [4757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3876), + [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3877), + [4763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3618), + [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3618), + [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3752), + [4772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(4897), + [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3961), + [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(5157), + [4781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(5158), + [4784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3947), + [4787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(5155), + [4790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2254), + [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [4801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), [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), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), [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), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [4831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3528), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [4954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 167), + [4956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 167), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 167), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 4, 0, 220), + [4974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2419), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [5007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 199), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [5019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 200), + [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [5053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2426), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [5080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3445), + [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [5113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3489), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 73), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [5158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3524), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 57), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [5177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 57), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 41), + [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 41), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3447), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [5276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 41), + [5278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 41), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [5290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [5294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 22), + [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 22), + [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 74), + [5304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3443), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 5), + [5313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 5), + [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [5341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 112), + [5343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 112), + [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 57), + [5347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 57), + [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 54), + [5351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 54), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [5361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 112), + [5363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 112), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [5377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 54), + [5385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 54), + [5387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [5393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 64), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 64), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [5417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3484), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [5424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 26), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [5432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 150), + [5434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [5436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [5438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), SHIFT(696), + [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [5445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), SHIFT(696), + [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [5452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 150), SHIFT(696), + [5455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), + [5457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [5461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 150), + [5463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 73), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [5467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 119), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [5471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 186), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [5477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 2, 0, 10), SHIFT(696), + [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 2, 0, 10), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [5484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 70), + [5486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 70), + [5488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 216), SHIFT(696), + [5491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 216), + [5493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 187), + [5495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 119), + [5497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 120), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [5501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 120), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [5507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 121), + [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), + [5511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 73), + [5513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), + [5518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3406), + [5521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), + [5524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 25), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 26), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 120), + [5536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), SHIFT(696), + [5539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [5545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 214), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 215), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 216), + [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 190), + [5563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), SHIFT(696), + [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [5580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), SHIFT(696), + [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), + [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), + [5587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [5593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [5597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), SHIFT(696), + [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 148), + [5606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), + [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), + [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 25), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [5614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), SHIFT(696), + [5617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), + [5619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), SHIFT(696), + [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 184), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), + [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), + [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 25), + [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 121), + [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 73), + [5644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), SHIFT(696), + [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 185), + [5649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), SHIFT(696), + [5652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 22), + [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 22), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 26), + [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 8), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), + [5674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), SHIFT(696), + [5677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), SHIFT(696), + [5680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 73), SHIFT(696), + [5683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 120), SHIFT(696), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [5708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [5714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3204), + [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [5719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5057), + [5722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4799), + [5725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5068), + [5728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5257), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [5745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(696), + [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [5752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 217), + [5754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 217), + [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [5782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), + [5784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 72), + [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 72), SHIFT_REPEAT(110), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [5793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 28), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [5797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 29), + [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 192), + [5807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 192), + [5809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(696), + [5812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [5828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 63), + [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 153), + [5832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 153), + [5834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 172), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [5838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 172), + [5840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3822), + [5843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 87), + [5845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 87), + [5847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 63), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 45), SHIFT(696), + [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 45), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 15), + [5860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 72), SHIFT_REPEAT(119), + [5863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 72), SHIFT_REPEAT(119), + [5866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 72), + [5868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [5870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [5874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [5878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [5882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [5886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(696), + [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 181), SHIFT(696), + [5902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 181), + [5904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(210), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [5909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), SHIFT(696), + [5912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), + [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [5924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 181), SHIFT(696), + [5927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 181), + [5929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 84), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [5933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 84), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [5937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 22), + [5939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 22), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [5957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 147), SHIFT(696), + [5960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 147), + [5962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [5964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [5966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [5968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [5970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 28), + [5972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(696), + [5975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [5979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 29), + [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 28), + [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 29), + [5985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(207), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [5990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 45), SHIFT(696), + [5993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 45), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [5997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(696), + [6000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [6004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), SHIFT(696), + [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), + [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 133), + [6011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 133), + [6013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 125), + [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 125), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [6019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 146), SHIFT(696), + [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 146), + [6024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 36), + [6026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 36), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [6030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 147), SHIFT(696), + [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 147), + [6035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 63), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [6039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 146), SHIFT(696), + [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 146), + [6044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3924), + [6047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 85), + [6049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 85), + [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 72), + [6053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 72), SHIFT_REPEAT(122), + [6056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(205), + [6059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(201), + [6062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(696), + [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [6067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 65), + [6069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 65), + [6071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), + [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), + [6075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 67), + [6077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 67), + [6079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 68), + [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 68), + [6083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 69), + [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 69), + [6087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [6091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3231), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 95), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [6118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 86), + [6120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 86), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [6126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 45), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [6142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 98), + [6144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 170), + [6146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 170), + [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 3), + [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 94), + [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [6160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [6164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 197), + [6178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 197), + [6180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 201), + [6182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 201), + [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 202), + [6186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 202), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [6190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 133), + [6192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 133), + [6194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 221), + [6196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 221), + [6198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 95), + [6200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 98), + [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 53), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [6206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 53), + [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), + [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 171), + [6212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 171), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [6228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(252), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(256), + [6236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(258), + [6239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(261), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [6252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [6258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [6260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [6263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 67), + [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 67), + [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 143), + [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 144), + [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 247), + [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [6279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 224), + [6285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 225), + [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 248), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 226), + [6295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 227), + [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 211), + [6299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 52), + [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 240), + [6303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 143), + [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), + [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 241), + [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 242), + [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 249), + [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 237), + [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 244), + [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 94), + [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [6327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 245), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 182), + [6337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 3), + [6341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [6343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 183), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [6349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 228), + [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 212), + [6353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 134), + [6355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 134), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 21), + [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 229), + [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 110), + [6369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 110), + [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 203), + [6373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 203), + [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [6381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 246), + [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 250), + [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 238), + [6389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 251), + [6391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 111), + [6393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 111), + [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 22), + [6397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 22), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [6403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 230), + [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 231), + [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 55), + [6413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 55), + [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), + [6417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), + [6419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 239), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [6425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3406), + [6428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 206), + [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 207), + [6432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 208), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [6440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 22), + [6442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 22), + [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [6460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(227), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [6465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(231), + [6468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(233), + [6471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(236), + [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 213), + [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 209), + [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 222), + [6480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 223), + [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 169), + [6484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 169), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), + [6492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), + [6494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 236), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 234), + [6508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 152), + [6510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 152), + [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 235), + [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 210), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [6520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3514), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3499), + [6541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [6547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 54), + [6549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 54), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 112), + [6569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 112), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [6599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 57), + [6601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 57), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), + [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), + [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), + [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), + [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [6759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [6955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [6981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [7011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [7032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [7068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3446), + [7071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 178), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [7087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [7181] = {.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), + [7185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7187] = {.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), + [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), + [7215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3448), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [7284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 178), + [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [7300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [7317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3494), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 80), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [7342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [7348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [7360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [7368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [7378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3509), + [7381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 155), + [7383] = {.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), + [7387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 49), + [7389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), SHIFT(2248), + [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [7398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [7400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [7404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3461), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [7411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [7413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4980), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [7428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 62), SHIFT_REPEAT(81), + [7431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 62), SHIFT_REPEAT(4281), + [7434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 62), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [7458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [7460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [7498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 14), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [7504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [7510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [7512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [7516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 20), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 35), + [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [7558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 42), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [7582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 109), + [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 109), + [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [7610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 154), + [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 154), + [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [7626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [7638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [7656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), + [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [7676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [7694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), + [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), + [7699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 179), + [7701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 179), + [7703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 180), + [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 180), + [7707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3882), + [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [7722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4310), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [7735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 62), SHIFT_REPEAT(75), + [7738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 62), + [7740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 62), SHIFT_REPEAT(4495), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [7749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 205), + [7751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 105), + [7753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 178), + [7755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 105), + [7757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [7773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 91), + [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [7777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4663), + [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [7782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [7788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 93), + [7790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), + [7792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), + [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [7804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 72), SHIFT_REPEAT(194), + [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [7813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4620), + [7816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [7818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [7820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 48), + [7822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 101), + [7824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [7826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4625), + [7829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 102), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [7833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [7837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3442), + [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [7842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 85), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [7846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 85), + [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [7850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 96), + [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [7870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [7872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [7874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 73), + [7876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 97), + [7878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [7880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 83), + [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 131), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [7888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 132), + [7890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 46), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [7894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [7898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), + [7900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 16), + [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 135), + [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), + [7908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 137), + [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 138), + [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), + [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 142), + [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [7926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 168), + [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 168), + [7930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 9), + [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 9), + [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 9), + [7944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 13), + [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 13), + [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 79), + [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 164), + [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 165), + [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 166), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), + [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 177), + [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 178), + [7966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 50), + [7968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [7970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [7972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [7974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 49), + [7976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 81), + [7978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 50), + [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 33), + [7982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [7986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 82), + [7988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(5040), + [7991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1422), + [7994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [7998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 193), + [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 37), + [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 38), + [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 39), + [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 40), + [8014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 194), + [8016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 195), + [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 196), + [8020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 43), + [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 44), + [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [8030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 145), + [8032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 218), + [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 219), + [8036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 232), + [8038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 233), + [8040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 243), + [8042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 48), + [8044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 130), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [8052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 82), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [8056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 83), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [8068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 1, 0, 167), + [8070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 96), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [8078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 199), + [8080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 90), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [8084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 200), + [8086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 90), + [8088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 49), + [8090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), + [8092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 50), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), + [8100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [8110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 85), + [8112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 173), + [8118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 102), + [8120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 220), + [8122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 85), + [8124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [8128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 48), + [8130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 173), + [8132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [8134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 204), + [8136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 139), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [8140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 176), + [8142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 49), + [8144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 86), + [8146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 86), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [8150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [8155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [8160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 49), REDUCE(sym_record_body, 2, 0, 49), + [8163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 73), + [8165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 50), + [8167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 103), SHIFT_REPEAT(395), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [8172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), + [8174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 177), + [8176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 9), + [8178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 178), + [8180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 99), + [8182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 204), + [8184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), + [8186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), + [8188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(4752), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), + [8199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 60), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [8205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 20), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [8213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 130), + [8215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 135), + [8217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 205), + [8219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 9), + [8221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 9), + [8223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 178), + [8225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [8229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 140), + [8235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 92), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [8247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 145), + [8249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 101), + [8251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 124), + [8253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 124), SHIFT_REPEAT(4591), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [8258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 20), + [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 33), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [8268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), REDUCE(sym_record_body, 1, 0, 20), + [8271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [8275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [8279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [8281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [8289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), + [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), + [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [8295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 19), + [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 19), + [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [8317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4812), + [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), + [8322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4823), + [8325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), + [8327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), + [8329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 198), + [8331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 198), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [8353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 179), + [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 179), + [8357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [8359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 180), + [8361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 180), + [8363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), + [8372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 71), + [8374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 71), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [8382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 174), + [8384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 174), + [8386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4745), + [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [8391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [8395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), + [8397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), + [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [8409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 19), + [8411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 19), + [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [8415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 134), + [8417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 134), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [8421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [8455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [8467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [8503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [8517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [8529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [8531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [8561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [8597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 85), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [8679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [8695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [8705] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [8735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), + [8737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [8767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [8813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 85), + [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [8827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [8837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [8877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 90), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [8881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [9085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [9111] = {.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..9e2f6b9d 100644 --- a/test/corpus/stmt/let.nu +++ b/test/corpus/stmt/let.nu @@ -100,3 +100,24 @@ let y: oneof> = 1 value: (pipeline (pipe_element (val_number))))) + +===== +let-006-shortcut +===== + +1 | let foo +let bar + +----- + +(nu_script + (pipeline + (pipe_element + (val_number)) + (pipe_element + (stmt_let + var_name: (identifier)))) + (pipeline + (pipe_element + (stmt_let + var_name: (identifier))))) From cda06eb072825d1e697f28390962272572fa7473 Mon Sep 17 00:00:00 2001 From: blindfs Date: Sun, 25 Jan 2026 10:22:23 +0800 Subject: [PATCH 3/5] fix: allow type annotation --- grammar.js | 10 +- src/grammar.json | 46 +- src/node-types.json | 2 +- src/parser.c | 343425 +++++++++++++++++++------------------ test/corpus/stmt/let.nu | 2 +- 5 files changed, 173973 insertions(+), 169512 deletions(-) diff --git a/grammar.js b/grammar.js index d29ed752..a378cde7 100644 --- a/grammar.js +++ b/grammar.js @@ -26,8 +26,6 @@ module.exports = grammar({ ], conflicts: $ => [ - [$._assignment_pattern, $._stmt_let_shortcut], - [$._assignment_pattern_parenthesized, $._stmt_let_shortcut], [$._binary_predicate_parenthesized], [$._block_body, $.record_body, $.val_closure], [$._block_body, $.shebang], @@ -527,7 +525,13 @@ module.exports = grammar({ ctrl_try: _ctrl_try_rule(false), ctrl_try_parenthesized: _ctrl_try_rule(true), - _stmt_let_shortcut: $ => seq(keyword().let, $._variable_name), + _stmt_let_shortcut: $ => prec.left( + seq( + keyword().let, + field('name', $._variable_name), + field('type', optional($.param_type)), + ), + ), /// Pipelines diff --git a/src/grammar.json b/src/grammar.json index 203afabd..606d71a8 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4536,17 +4536,41 @@ ] }, "_stmt_let_shortcut": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "let" - }, - { - "type": "SYMBOL", - "name": "_variable_name" - } - ] + "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", diff --git a/src/node-types.json b/src/node-types.json index 9bb0483c..b5ef6b42 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -3724,7 +3724,7 @@ }, "name": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "identifier", diff --git a/src/parser.c b/src/parser.c index 17651756..0c1013cf 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,8 +15,8 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 5259 -#define LARGE_STATE_COUNT 1263 +#define STATE_COUNT 5380 +#define LARGE_STATE_COUNT 1271 #define SYMBOL_COUNT 484 #define ALIAS_COUNT 3 #define TOKEN_COUNT 272 @@ -24,7 +24,7 @@ #define FIELD_COUNT 64 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 252 +#define PRODUCTION_ID_COUNT 253 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -3585,251 +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 = 2}, - [4] = {.index = 6, .length = 1}, - [6] = {.index = 7, .length = 1}, - [7] = {.index = 8, .length = 1}, - [8] = {.index = 9, .length = 1}, - [9] = {.index = 10, .length = 5}, - [10] = {.index = 15, .length = 2}, - [11] = {.index = 17, .length = 1}, - [12] = {.index = 18, .length = 1}, - [13] = {.index = 19, .length = 1}, - [14] = {.index = 20, .length = 2}, - [15] = {.index = 22, .length = 1}, - [16] = {.index = 23, .length = 1}, - [17] = {.index = 24, .length = 1}, - [18] = {.index = 25, .length = 1}, - [19] = {.index = 26, .length = 2}, - [20] = {.index = 28, .length = 1}, - [21] = {.index = 29, .length = 6}, - [22] = {.index = 35, .length = 1}, - [23] = {.index = 36, .length = 1}, - [24] = {.index = 36, .length = 1}, - [25] = {.index = 37, .length = 4}, - [26] = {.index = 41, .length = 1}, - [27] = {.index = 42, .length = 1}, - [28] = {.index = 43, .length = 2}, - [29] = {.index = 45, .length = 6}, - [30] = {.index = 51, .length = 1}, - [31] = {.index = 51, .length = 1}, - [32] = {.index = 52, .length = 2}, - [33] = {.index = 54, .length = 5}, - [34] = {.index = 59, .length = 1}, - [35] = {.index = 60, .length = 2}, - [36] = {.index = 62, .length = 1}, - [37] = {.index = 63, .length = 2}, - [38] = {.index = 65, .length = 2}, - [39] = {.index = 67, .length = 1}, - [40] = {.index = 68, .length = 1}, - [42] = {.index = 69, .length = 3}, - [43] = {.index = 72, .length = 3}, - [44] = {.index = 75, .length = 2}, - [45] = {.index = 77, .length = 2}, - [46] = {.index = 79, .length = 6}, - [47] = {.index = 85, .length = 1}, - [48] = {.index = 86, .length = 1}, - [49] = {.index = 87, .length = 1}, - [50] = {.index = 88, .length = 2}, - [51] = {.index = 90, .length = 2}, - [52] = {.index = 92, .length = 6}, - [53] = {.index = 98, .length = 1}, - [54] = {.index = 99, .length = 4}, - [55] = {.index = 103, .length = 1}, - [56] = {.index = 104, .length = 1}, - [57] = {.index = 105, .length = 1}, - [58] = {.index = 106, .length = 1}, - [59] = {.index = 107, .length = 1}, - [60] = {.index = 108, .length = 1}, - [61] = {.index = 109, .length = 1}, - [62] = {.index = 110, .length = 2}, - [63] = {.index = 112, .length = 7}, - [64] = {.index = 119, .length = 1}, - [65] = {.index = 120, .length = 1}, - [66] = {.index = 121, .length = 2}, - [67] = {.index = 123, .length = 5}, - [68] = {.index = 128, .length = 1}, - [69] = {.index = 129, .length = 1}, - [70] = {.index = 130, .length = 1}, - [71] = {.index = 131, .length = 2}, - [72] = {.index = 133, .length = 10}, - [73] = {.index = 143, .length = 3}, - [74] = {.index = 143, .length = 3}, - [75] = {.index = 146, .length = 2}, - [76] = {.index = 146, .length = 2}, - [77] = {.index = 146, .length = 2}, - [78] = {.index = 146, .length = 2}, - [79] = {.index = 148, .length = 2}, - [80] = {.index = 150, .length = 3}, - [81] = {.index = 153, .length = 3}, - [82] = {.index = 156, .length = 3}, - [83] = {.index = 159, .length = 4}, - [84] = {.index = 163, .length = 1}, - [85] = {.index = 164, .length = 1}, - [86] = {.index = 165, .length = 1}, - [87] = {.index = 166, .length = 2}, - [88] = {.index = 168, .length = 1}, - [89] = {.index = 168, .length = 1}, - [90] = {.index = 169, .length = 1}, - [91] = {.index = 170, .length = 4}, - [92] = {.index = 174, .length = 3}, - [93] = {.index = 177, .length = 4}, - [94] = {.index = 181, .length = 2}, - [95] = {.index = 183, .length = 1}, - [96] = {.index = 184, .length = 1}, - [98] = {.index = 183, .length = 1}, - [99] = {.index = 185, .length = 1}, - [100] = {.index = 186, .length = 2}, - [101] = {.index = 188, .length = 1}, - [102] = {.index = 189, .length = 2}, - [103] = {.index = 191, .length = 2}, - [105] = {.index = 193, .length = 2}, - [106] = {.index = 195, .length = 1}, - [107] = {.index = 196, .length = 4}, - [108] = {.index = 200, .length = 1}, - [109] = {.index = 201, .length = 2}, - [110] = {.index = 203, .length = 1}, - [111] = {.index = 204, .length = 2}, - [112] = {.index = 206, .length = 2}, - [113] = {.index = 208, .length = 1}, - [114] = {.index = 201, .length = 2}, - [115] = {.index = 209, .length = 2}, - [116] = {.index = 209, .length = 2}, - [117] = {.index = 209, .length = 2}, - [118] = {.index = 209, .length = 2}, - [119] = {.index = 211, .length = 9}, - [120] = {.index = 220, .length = 6}, - [121] = {.index = 226, .length = 6}, - [122] = {.index = 232, .length = 2}, - [123] = {.index = 234, .length = 1}, - [124] = {.index = 235, .length = 2}, - [125] = {.index = 237, .length = 1}, - [126] = {.index = 238, .length = 2}, - [127] = {.index = 238, .length = 2}, - [128] = {.index = 238, .length = 2}, - [129] = {.index = 238, .length = 2}, - [130] = {.index = 240, .length = 3}, - [131] = {.index = 243, .length = 4}, - [132] = {.index = 247, .length = 4}, - [133] = {.index = 251, .length = 1}, - [134] = {.index = 252, .length = 2}, - [135] = {.index = 254, .length = 5}, - [136] = {.index = 259, .length = 5}, - [137] = {.index = 264, .length = 4}, - [138] = {.index = 268, .length = 3}, - [139] = {.index = 271, .length = 3}, - [140] = {.index = 274, .length = 6}, - [141] = {.index = 280, .length = 6}, - [142] = {.index = 286, .length = 5}, - [143] = {.index = 291, .length = 3}, - [144] = {.index = 294, .length = 3}, - [145] = {.index = 297, .length = 2}, - [146] = {.index = 299, .length = 2}, - [147] = {.index = 301, .length = 2}, - [148] = {.index = 303, .length = 3}, - [149] = {.index = 303, .length = 3}, - [150] = {.index = 306, .length = 3}, - [151] = {.index = 306, .length = 3}, - [152] = {.index = 309, .length = 1}, - [153] = {.index = 310, .length = 1}, - [154] = {.index = 311, .length = 3}, - [155] = {.index = 314, .length = 3}, - [156] = {.index = 317, .length = 3}, - [157] = {.index = 317, .length = 3}, - [158] = {.index = 317, .length = 3}, - [159] = {.index = 317, .length = 3}, - [160] = {.index = 317, .length = 3}, - [161] = {.index = 317, .length = 3}, - [162] = {.index = 317, .length = 3}, - [163] = {.index = 317, .length = 3}, - [164] = {.index = 320, .length = 5}, - [165] = {.index = 325, .length = 4}, - [166] = {.index = 329, .length = 4}, - [167] = {.index = 333, .length = 3}, - [168] = {.index = 336, .length = 1}, - [169] = {.index = 337, .length = 2}, - [170] = {.index = 339, .length = 1}, - [171] = {.index = 340, .length = 1}, - [172] = {.index = 341, .length = 1}, - [173] = {.index = 342, .length = 2}, - [174] = {.index = 344, .length = 2}, - [175] = {.index = 346, .length = 5}, - [176] = {.index = 351, .length = 6}, - [177] = {.index = 357, .length = 1}, - [178] = {.index = 358, .length = 1}, - [179] = {.index = 359, .length = 2}, - [180] = {.index = 361, .length = 2}, - [181] = {.index = 363, .length = 2}, - [182] = {.index = 365, .length = 2}, - [183] = {.index = 367, .length = 2}, - [184] = {.index = 369, .length = 9}, - [185] = {.index = 378, .length = 6}, - [186] = {.index = 384, .length = 9}, - [187] = {.index = 393, .length = 6}, - [188] = {.index = 399, .length = 6}, - [189] = {.index = 405, .length = 6}, - [190] = {.index = 411, .length = 3}, - [191] = {.index = 411, .length = 3}, - [192] = {.index = 414, .length = 1}, - [193] = {.index = 415, .length = 4}, - [194] = {.index = 419, .length = 5}, - [195] = {.index = 424, .length = 5}, - [196] = {.index = 429, .length = 4}, - [197] = {.index = 433, .length = 3}, - [198] = {.index = 436, .length = 3}, - [199] = {.index = 439, .length = 3}, - [200] = {.index = 442, .length = 6}, - [201] = {.index = 448, .length = 2}, - [202] = {.index = 450, .length = 1}, - [203] = {.index = 451, .length = 2}, - [204] = {.index = 453, .length = 2}, - [205] = {.index = 455, .length = 2}, - [206] = {.index = 457, .length = 3}, - [207] = {.index = 460, .length = 3}, - [208] = {.index = 463, .length = 3}, - [209] = {.index = 466, .length = 3}, - [210] = {.index = 469, .length = 3}, - [211] = {.index = 472, .length = 3}, - [212] = {.index = 475, .length = 2}, - [213] = {.index = 477, .length = 2}, - [214] = {.index = 479, .length = 9}, - [215] = {.index = 488, .length = 6}, - [216] = {.index = 494, .length = 6}, - [217] = {.index = 500, .length = 1}, - [218] = {.index = 501, .length = 4}, - [219] = {.index = 505, .length = 5}, - [220] = {.index = 510, .length = 6}, - [221] = {.index = 516, .length = 3}, - [222] = {.index = 519, .length = 3}, - [223] = {.index = 522, .length = 3}, - [224] = {.index = 525, .length = 3}, - [225] = {.index = 528, .length = 3}, - [226] = {.index = 531, .length = 3}, - [227] = {.index = 534, .length = 3}, - [228] = {.index = 537, .length = 3}, - [229] = {.index = 540, .length = 3}, - [230] = {.index = 543, .length = 2}, - [231] = {.index = 545, .length = 2}, - [232] = {.index = 547, .length = 5}, - [233] = {.index = 552, .length = 4}, - [234] = {.index = 556, .length = 3}, - [235] = {.index = 559, .length = 3}, - [236] = {.index = 562, .length = 3}, - [237] = {.index = 565, .length = 3}, - [238] = {.index = 568, .length = 3}, - [239] = {.index = 571, .length = 3}, - [240] = {.index = 574, .length = 3}, - [241] = {.index = 577, .length = 3}, - [242] = {.index = 580, .length = 2}, - [243] = {.index = 582, .length = 5}, - [244] = {.index = 587, .length = 3}, - [245] = {.index = 590, .length = 3}, - [246] = {.index = 593, .length = 3}, - [247] = {.index = 596, .length = 3}, - [248] = {.index = 599, .length = 3}, - [249] = {.index = 602, .length = 3}, - [250] = {.index = 605, .length = 3}, - [251] = {.index = 608, .length = 3}, + [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 = 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[] = { @@ -3841,169 +3842,177 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {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}, - [6] = + [8] = {field_expr, 0, .inherited = true}, - [7] = + [9] = {field_unquoted_name, 0}, - [8] = + [10] = {field_quoted_name, 0}, - [9] = + [11] = {field_var_name, 0}, - [10] = + [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}, - [15] = + [17] = {field_dollar_name, 1, .inherited = true}, + {field_name, 1}, {field_var_name, 1, .inherited = true}, - [17] = + [20] = {field_dollar_name, 0}, - [18] = + [21] = {field_module, 1}, - [19] = + [22] = {field_body, 1}, - [20] = + [23] = {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [22] = + [25] = {field_try_branch, 1}, - [23] = + [26] = {field_type, 1}, - [24] = + [27] = {field_item, 0}, - [25] = + [28] = {field_spread, 0}, - [26] = + [29] = {field_name, 0, .inherited = true}, {field_spread, 0}, - [28] = + [31] = {field_entry, 0}, - [29] = + [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}, - [35] = + [38] = {field_name, 1}, - [36] = + [39] = {field_end, 1}, - [37] = + [40] = {field_lhs, 1, .inherited = true}, {field_opr, 1, .inherited = true}, {field_predicate, 1}, {field_rhs, 1, .inherited = true}, - [41] = + [44] = {field_predicate, 1}, - [42] = + [45] = {field_expr, 0}, - [43] = + [46] = {field_head, 0}, {field_head, 1}, - [45] = + [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}, - [51] = + [54] = {field_start, 0}, - [52] = + [55] = {field_unit, 1}, {field_value, 0}, - [54] = + [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}, - [59] = + [62] = {field_module, 2}, - [60] = + [63] = {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [62] = + [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}, - [63] = + [70] = {field_quoted_name, 0, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, - [65] = + [72] = {field_import_pattern, 2}, {field_module, 1}, - [67] = + [74] = {field_wildcard, 0}, - [68] = + [75] = {field_command_list, 0}, - [69] = + [76] = {field_quoted_name, 1, .inherited = true}, {field_signature, 2}, {field_unquoted_name, 1, .inherited = true}, - [72] = + [79] = {field_body, 2}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [75] = + [82] = {field_body, 2}, {field_condition, 1}, - [77] = + [84] = {field_condition, 1}, {field_then_branch, 2}, - [79] = + [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}, - [85] = + [92] = {field_head, 1, .inherited = true}, - [86] = + [93] = {field_row, 0}, - [87] = + [94] = {field_entry, 1}, - [88] = + [95] = {field_entry, 0, .inherited = true}, {field_entry, 1}, - [90] = + [97] = {field_entry, 0, .inherited = true}, {field_entry, 1, .inherited = true}, - [92] = + [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}, - [98] = + [105] = {field_param_name, 0}, - [99] = + [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}, - [103] = + [110] = {field_param_rest, 0}, - [104] = + [111] = {field_param_optional, 0}, - [105] = + [112] = {field_param_long_flag, 0}, - [106] = + [113] = {field_param_short_flag, 0}, - [107] = + [114] = {field_parameters, 1}, - [108] = + [115] = {field_digit, 0}, - [109] = + [116] = {field_expr, 1, .inherited = true}, - [110] = + [117] = {field_expr, 0, .inherited = true}, {field_expr, 1, .inherited = true}, - [112] = + [119] = {field_arg, 2, .inherited = true}, {field_arg_spread, 2, .inherited = true}, {field_arg_str, 2, .inherited = true}, @@ -4011,29 +4020,29 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_head, 0}, {field_head, 1}, {field_redir, 2, .inherited = true}, - [119] = + [126] = {field_arg, 0}, - [120] = + [127] = {field_arg_spread, 0}, - [121] = + [128] = {field_arg_spread, 0}, {field_name, 0, .inherited = true}, - [123] = + [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}, - [128] = + [135] = {field_redir, 0}, - [129] = + [136] = {field_flag, 0}, - [130] = + [137] = {field_arg_str, 0}, - [131] = + [138] = {field_value, 2}, {field_variable, 0}, - [133] = + [140] = {field_arg, 0, .inherited = true}, {field_arg, 1, .inherited = true}, {field_arg_spread, 0, .inherited = true}, @@ -4044,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}, - [143] = + [150] = {field_lhs, 0}, {field_opr, 1}, {field_rhs, 2}, - [146] = + [153] = {field_end, 2}, {field_start, 0}, - [148] = + [155] = {field_import_pattern, 3}, {field_module, 2}, - [150] = + [157] = {field_quoted_name, 2, .inherited = true}, {field_signature, 3}, {field_unquoted_name, 2, .inherited = true}, - [153] = + [160] = {field_body, 3}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [156] = + [163] = {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, {field_value, 3}, - [159] = + [166] = {field_dollar_name, 0, .inherited = true}, {field_name, 0}, {field_value, 2}, {field_var_name, 0, .inherited = true}, - [163] = + [170] = {field_flat_type, 0}, - [164] = + [171] = {field_type, 1, .inherited = true}, - [165] = + [172] = {field_type, 0}, - [166] = + [173] = {field_name, 1}, {field_value, 2, .inherited = true}, - [168] = + [175] = {field_value, 1}, - [169] = + [176] = {field_type, 0, .inherited = true}, - [170] = + [177] = {field_body, 3}, {field_parameters, 2}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [174] = + [181] = {field_cmd, 0}, {field_quoted_name, 0, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, - [177] = + [184] = {field_body, 3}, {field_quoted_name, 1, .inherited = true}, {field_signature, 2}, {field_unquoted_name, 1, .inherited = true}, - [181] = + [188] = {field_catch_branch, 3}, {field_try_branch, 1}, - [183] = + [190] = {field_scrutinee, 1}, - [184] = + [191] = {field_rest, 0, .inherited = true}, - [185] = + [192] = {field_head, 1}, - [186] = + [193] = {field_head, 1, .inherited = true}, {field_row, 2, .inherited = true}, - [188] = + [195] = {field_row, 1}, - [189] = + [196] = {field_row, 0, .inherited = true}, {field_row, 1}, - [191] = + [198] = {field_row, 0, .inherited = true}, {field_row, 1, .inherited = true}, - [193] = + [200] = {field_entry, 1, .inherited = true}, {field_entry, 2}, - [195] = + [202] = {field_try_branch, 2}, - [196] = + [203] = {field_lhs, 2, .inherited = true}, {field_opr, 2, .inherited = true}, {field_predicate, 2}, {field_rhs, 2, .inherited = true}, - [200] = + [207] = {field_predicate, 2}, - [201] = + [208] = {field_key, 0}, {field_value, 2}, - [203] = + [210] = {field_name, 0}, - [204] = + [211] = {field_param_name, 0}, {field_param_name, 1}, - [206] = + [213] = {field_flag_capsule, 1}, {field_param_long_flag, 0}, - [208] = + [215] = {field_parameters, 2}, - [209] = + [216] = {field_end, 3}, {field_step, 1}, - [211] = + [218] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 2, .inherited = true}, @@ -4156,208 +4165,208 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 2}, {field_rhs, 2, .inherited = true}, - [220] = + [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}, - [226] = + [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}, - [232] = + [239] = {field_digit, 0}, {field_digit, 1}, - [234] = + [241] = {field_digit, 2, .inherited = true}, - [235] = + [242] = {field_digit, 0, .inherited = true}, {field_digit, 1, .inherited = true}, - [237] = + [244] = {field_file_path, 2}, - [238] = + [245] = {field_start, 0}, {field_step, 2}, - [240] = + [247] = {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, {field_value, 4}, - [243] = + [250] = {field_body, 4}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [247] = + [254] = {field_body, 4}, {field_quoted_name, 2, .inherited = true}, {field_signature, 3}, {field_unquoted_name, 2, .inherited = true}, - [251] = + [258] = {field_type, 2, .inherited = true}, - [252] = + [259] = {field_completion, 2}, {field_type, 1, .inherited = true}, - [254] = + [261] = {field_dollar_name, 0, .inherited = true}, {field_name, 0}, {field_type, 1}, {field_value, 3}, {field_var_name, 0, .inherited = true}, - [259] = + [266] = {field_body, 4}, {field_parameters, 2}, {field_quoted_name, 1, .inherited = true}, {field_return_type, 3}, {field_unquoted_name, 1, .inherited = true}, - [264] = + [271] = {field_body, 4}, {field_parameters, 3}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [268] = + [275] = {field_cmd, 1, .inherited = true}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [271] = + [278] = {field_cmd, 1}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [274] = + [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}, - [280] = + [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}, - [286] = + [293] = {field_body, 4}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 3}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [291] = + [298] = {field_condition, 1}, {field_else_branch, 4}, {field_then_branch, 2}, - [294] = + [301] = {field_condition, 1}, {field_else_block, 4}, {field_then_branch, 2}, - [297] = + [304] = {field_row, 1, .inherited = true}, {field_row, 2}, - [299] = + [306] = {field_condition, 2}, {field_then_branch, 3}, - [301] = + [308] = {field_condition, 1}, {field_then_branch, 3}, - [303] = + [310] = {field_lhs, 0}, {field_opr, 1}, {field_rhs, 3}, - [306] = + [313] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 3}, - [309] = + [316] = {field_name, 2}, - [310] = + [317] = {field_param_value, 1}, - [311] = + [318] = {field_key, 0}, {field_key, 1}, {field_value, 3}, - [314] = + [321] = {field_quoted_name, 3, .inherited = true}, {field_signature, 4}, {field_unquoted_name, 3, .inherited = true}, - [317] = + [324] = {field_end, 4}, {field_start, 0}, {field_step, 2}, - [320] = + [327] = {field_body, 5}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_return_type, 4}, {field_unquoted_name, 2, .inherited = true}, - [325] = + [332] = {field_body, 5}, {field_parameters, 4}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [329] = + [336] = {field_body, 5}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [333] = + [340] = {field_completion, 0, .inherited = true}, {field_key, 0, .inherited = true}, {field_type, 0, .inherited = true}, - [336] = + [343] = {field_key, 0}, - [337] = + [344] = {field_completion, 3}, {field_type, 2, .inherited = true}, - [339] = + [346] = {field_command, 1}, - [340] = + [347] = {field_constant, 1}, - [341] = + [348] = {field_type, 3, .inherited = true}, - [342] = + [349] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [344] = + [351] = {field_type, 0, .inherited = true}, {field_type, 2, .inherited = true}, - [346] = + [353] = {field_body, 5}, {field_parameters, 3}, {field_quoted_name, 1, .inherited = true}, {field_return_type, 4}, {field_unquoted_name, 1, .inherited = true}, - [351] = + [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}, - [357] = + [364] = {field_rest, 1}, - [358] = + [365] = {field_entry, 1, .inherited = true}, - [359] = + [366] = {field_default_pattern, 0}, {field_expression, 2}, - [361] = + [368] = {field_expression, 2}, {field_pattern, 0}, - [363] = + [370] = {field_condition, 2}, {field_then_branch, 4}, - [365] = + [372] = {field_catch_branch, 4}, {field_try_branch, 2}, - [367] = + [374] = {field_catch_branch, 4}, {field_try_branch, 1}, - [369] = + [376] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4367,14 +4376,14 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [378] = + [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}, - [384] = + [391] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4384,119 +4393,119 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [393] = + [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}, - [399] = + [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}, - [405] = + [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}, - [411] = + [418] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 4}, - [414] = + [421] = {field_param_value, 2}, - [415] = + [422] = {field_body, 5}, {field_quoted_name, 3, .inherited = true}, {field_signature, 4}, {field_unquoted_name, 3, .inherited = true}, - [419] = + [426] = {field_body, 6}, {field_parameters, 4}, {field_quoted_name, 2, .inherited = true}, {field_return_type, 5}, {field_unquoted_name, 2, .inherited = true}, - [424] = + [431] = {field_body, 6}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_return_type, 5}, {field_unquoted_name, 3, .inherited = true}, - [429] = + [436] = {field_body, 6}, {field_parameters, 5}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [433] = + [440] = {field_completion, 2, .inherited = true}, {field_key, 2, .inherited = true}, {field_type, 2, .inherited = true}, - [436] = + [443] = {field_completion, 1, .inherited = true}, {field_key, 0}, {field_type, 1, .inherited = true}, - [439] = + [446] = {field_completion, 1, .inherited = true}, {field_key, 1, .inherited = true}, {field_type, 1, .inherited = true}, - [442] = + [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}, - [448] = + [455] = {field_inner, 2}, {field_type, 2, .inherited = true}, - [450] = + [457] = {field_completion, 2}, - [451] = + [458] = {field_completion, 4}, {field_type, 3, .inherited = true}, - [453] = + [460] = {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [455] = + [462] = {field_entry, 1, .inherited = true}, {field_rest, 2}, - [457] = + [464] = {field_condition, 2}, {field_else_branch, 5}, {field_then_branch, 3}, - [460] = + [467] = {field_condition, 2}, {field_else_block, 5}, {field_then_branch, 3}, - [463] = + [470] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 3}, - [466] = + [473] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 3}, - [469] = + [476] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 2}, - [472] = + [479] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 2}, - [475] = + [482] = {field_catch_branch, 5}, {field_try_branch, 2}, - [477] = + [484] = {field_catch_branch, 5}, {field_try_branch, 1}, - [479] = + [486] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 4, .inherited = true}, @@ -4506,163 +4515,163 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [488] = + [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}, - [494] = + [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}, - [500] = + [507] = {field_param_value, 3}, - [501] = + [508] = {field_body, 6}, {field_parameters, 5}, {field_quoted_name, 4, .inherited = true}, {field_unquoted_name, 4, .inherited = true}, - [505] = + [512] = {field_body, 7}, {field_parameters, 5}, {field_quoted_name, 3, .inherited = true}, {field_return_type, 6}, {field_unquoted_name, 3, .inherited = true}, - [510] = + [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}, - [516] = + [523] = {field_completion, 3}, {field_inner, 2}, {field_type, 2, .inherited = true}, - [519] = + [526] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 4}, - [522] = + [529] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 4}, - [525] = + [532] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 3}, - [528] = + [535] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 3}, - [531] = + [538] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 3}, - [534] = + [541] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 3}, - [537] = + [544] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 2}, - [540] = + [547] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 2}, - [543] = + [550] = {field_catch_branch, 6}, {field_try_branch, 2}, - [545] = + [552] = {field_catch_branch, 6}, {field_try_branch, 1}, - [547] = + [554] = {field_body, 7}, {field_parameters, 5}, {field_quoted_name, 4, .inherited = true}, {field_return_type, 6}, {field_unquoted_name, 4, .inherited = true}, - [552] = + [559] = {field_body, 7}, {field_parameters, 6}, {field_quoted_name, 4, .inherited = true}, {field_unquoted_name, 4, .inherited = true}, - [556] = + [563] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 4}, - [559] = + [566] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 4}, - [562] = + [569] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 3}, - [565] = + [572] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 3}, - [568] = + [575] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 3}, - [571] = + [578] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 3}, - [574] = + [581] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 2}, - [577] = + [584] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 2}, - [580] = + [587] = {field_catch_branch, 7}, {field_try_branch, 2}, - [582] = + [589] = {field_body, 8}, {field_parameters, 6}, {field_quoted_name, 4, .inherited = true}, {field_return_type, 7}, {field_unquoted_name, 4, .inherited = true}, - [587] = + [594] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 4}, - [590] = + [597] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 4}, - [593] = + [600] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 3}, - [596] = + [603] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 3}, - [599] = + [606] = {field_condition, 1}, {field_else_branch, 8}, {field_then_branch, 3}, - [602] = + [609] = {field_condition, 1}, {field_else_block, 8}, {field_then_branch, 3}, - [605] = + [612] = {field_condition, 2}, {field_else_branch, 9}, {field_then_branch, 4}, - [608] = + [615] = {field_condition, 2}, {field_else_block, 9}, {field_then_branch, 4}, @@ -4685,108 +4694,108 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [32] = { [0] = sym_val_number, }, - [41] = { + [42] = { [1] = anon_alias_sym__unit, }, - [70] = { + [71] = { [0] = sym_val_string, }, - [71] = { + [72] = { [0] = sym_identifier, }, - [74] = { + [75] = { [2] = sym_val_string, }, - [76] = { + [77] = { [2] = sym_val_number, }, - [77] = { + [78] = { [0] = sym_val_number, }, - [78] = { + [79] = { [0] = sym_val_number, [2] = sym_val_number, }, - [89] = { + [90] = { [1] = sym_val_string, }, - [97] = { + [98] = { [0] = sym_val_string, }, - [98] = { + [99] = { [1] = sym_val_string, }, - [104] = { + [105] = { [0] = anon_alias_sym__head, }, - [107] = { + [108] = { [2] = sym_where_predicate, }, - [109] = { + [110] = { [0] = sym_identifier, }, - [116] = { + [117] = { [3] = sym_val_number, }, - [117] = { + [118] = { [1] = sym_val_number, }, - [118] = { + [119] = { [1] = sym_val_number, [3] = sym_val_number, }, - [127] = { + [128] = { [2] = sym_val_number, }, - [128] = { + [129] = { [0] = sym_val_number, }, - [129] = { + [130] = { [0] = sym_val_number, [2] = sym_val_number, }, - [149] = { + [150] = { [3] = sym_val_string, }, - [151] = { + [152] = { [3] = sym_val_string, }, - [154] = { + [155] = { [0] = sym_identifier, }, - [157] = { + [158] = { [4] = sym_val_number, }, - [158] = { + [159] = { [2] = sym_val_number, }, - [159] = { + [160] = { [2] = sym_val_number, [4] = sym_val_number, }, - [160] = { + [161] = { [0] = sym_val_number, }, - [161] = { + [162] = { [0] = sym_val_number, [4] = sym_val_number, }, - [162] = { + [163] = { [0] = sym_val_number, [2] = sym_val_number, }, - [163] = { + [164] = { [0] = sym_val_number, [2] = sym_val_number, [4] = sym_val_number, }, - [168] = { + [169] = { [0] = sym_identifier, }, - [191] = { + [192] = { [4] = sym_val_string, }, - [198] = { + [199] = { [0] = sym_identifier, }, }; @@ -4832,12 +4841,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 3, - [5] = 5, - [6] = 5, + [4] = 4, + [5] = 3, + [6] = 4, [7] = 3, - [8] = 3, - [9] = 5, + [8] = 4, + [9] = 3, [10] = 3, [11] = 3, [12] = 3, @@ -4845,14 +4854,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [14] = 3, [15] = 3, [16] = 16, - [17] = 17, - [18] = 17, - [19] = 19, + [17] = 16, + [18] = 18, + [19] = 18, [20] = 16, - [21] = 19, + [21] = 16, [22] = 16, - [23] = 16, - [24] = 16, + [23] = 23, + [24] = 23, [25] = 16, [26] = 16, [27] = 27, @@ -4867,162 +4876,162 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [36] = 36, [37] = 37, [38] = 37, - [39] = 36, + [39] = 39, [40] = 35, - [41] = 41, - [42] = 36, + [41] = 39, + [42] = 42, [43] = 43, - [44] = 37, - [45] = 45, - [46] = 36, - [47] = 47, - [48] = 41, - [49] = 35, - [50] = 35, + [44] = 36, + [45] = 37, + [46] = 35, + [47] = 42, + [48] = 43, + [49] = 36, + [50] = 42, [51] = 37, - [52] = 36, - [53] = 36, - [54] = 35, - [55] = 41, - [56] = 35, - [57] = 43, - [58] = 36, - [59] = 35, - [60] = 41, - [61] = 41, - [62] = 35, - [63] = 35, - [64] = 35, - [65] = 35, - [66] = 41, - [67] = 41, - [68] = 45, - [69] = 37, - [70] = 37, - [71] = 45, + [52] = 52, + [53] = 37, + [54] = 42, + [55] = 43, + [56] = 36, + [57] = 37, + [58] = 42, + [59] = 43, + [60] = 36, + [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] = 37, + [73] = 43, [74] = 74, [75] = 75, [76] = 76, - [77] = 76, - [78] = 78, - [79] = 76, - [80] = 74, - [81] = 75, + [77] = 77, + [78] = 76, + [79] = 75, + [80] = 75, + [81] = 77, [82] = 82, [83] = 83, - [84] = 82, + [84] = 83, [85] = 85, [86] = 86, - [87] = 87, + [87] = 83, [88] = 88, - [89] = 86, - [90] = 82, - [91] = 86, + [89] = 88, + [90] = 88, + [91] = 91, [92] = 92, [93] = 93, - [94] = 92, + [94] = 94, [95] = 92, - [96] = 96, + [96] = 93, [97] = 93, - [98] = 93, - [99] = 93, - [100] = 92, - [101] = 101, - [102] = 101, - [103] = 92, - [104] = 104, - [105] = 101, - [106] = 106, - [107] = 96, + [98] = 92, + [99] = 99, + [100] = 93, + [101] = 92, + [102] = 99, + [103] = 93, + [104] = 92, + [105] = 105, + [106] = 99, + [107] = 107, [108] = 108, [109] = 109, - [110] = 110, - [111] = 96, - [112] = 101, - [113] = 113, - [114] = 93, - [115] = 96, - [116] = 104, - [117] = 109, - [118] = 113, - [119] = 119, - [120] = 113, - [121] = 106, - [122] = 110, - [123] = 106, - [124] = 93, - [125] = 104, - [126] = 92, + [110] = 94, + [111] = 94, + [112] = 94, + [113] = 99, + [114] = 114, + [115] = 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] = 109, - [129] = 113, - [130] = 96, - [131] = 106, - [132] = 104, - [133] = 101, - [134] = 101, - [135] = 104, - [136] = 106, - [137] = 96, - [138] = 109, - [139] = 113, - [140] = 113, - [141] = 106, - [142] = 104, + [128] = 93, + [129] = 129, + [130] = 115, + [131] = 92, + [132] = 109, + [133] = 114, + [134] = 107, + [135] = 114, + [136] = 94, + [137] = 108, + [138] = 99, + [139] = 109, + [140] = 107, + [141] = 114, + [142] = 108, [143] = 109, [144] = 144, [145] = 145, [146] = 146, [147] = 147, - [148] = 148, + [148] = 145, [149] = 149, - [150] = 148, - [151] = 144, + [150] = 150, + [151] = 151, [152] = 152, - [153] = 153, + [153] = 146, [154] = 152, - [155] = 153, - [156] = 147, - [157] = 144, + [155] = 155, + [156] = 149, + [157] = 149, [158] = 158, - [159] = 152, - [160] = 153, - [161] = 161, - [162] = 162, - [163] = 147, - [164] = 164, - [165] = 147, - [166] = 144, - [167] = 158, - [168] = 161, - [169] = 158, - [170] = 162, - [171] = 161, - [172] = 145, - [173] = 161, - [174] = 146, - [175] = 153, - [176] = 164, - [177] = 162, - [178] = 152, - [179] = 162, - [180] = 149, - [181] = 158, + [159] = 149, + [160] = 144, + [161] = 158, + [162] = 150, + [163] = 150, + [164] = 151, + [165] = 144, + [166] = 152, + [167] = 151, + [168] = 146, + [169] = 152, + [170] = 146, + [171] = 158, + [172] = 150, + [173] = 158, + [174] = 144, + [175] = 175, + [176] = 151, + [177] = 177, + [178] = 155, + [179] = 175, + [180] = 177, + [181] = 147, [182] = 182, [183] = 183, - [184] = 183, - [185] = 183, - [186] = 147, - [187] = 187, - [188] = 144, - [189] = 189, - [190] = 189, - [191] = 183, - [192] = 147, + [184] = 182, + [185] = 182, + [186] = 186, + [187] = 158, + [188] = 188, + [189] = 182, + [190] = 144, + [191] = 188, + [192] = 158, [193] = 144, - [194] = 110, + [194] = 115, [195] = 195, [196] = 196, [197] = 197, @@ -5032,7 +5041,7 @@ 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, @@ -5044,299 +5053,299 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [213] = 213, [214] = 214, [215] = 215, - [216] = 214, - [217] = 215, + [216] = 216, + [217] = 217, [218] = 218, - [219] = 219, - [220] = 220, - [221] = 196, - [222] = 197, - [223] = 198, - [224] = 195, - [225] = 199, - [226] = 200, - [227] = 201, - [228] = 220, - [229] = 203, - [230] = 204, - [231] = 205, - [232] = 206, - [233] = 207, - [234] = 208, - [235] = 209, - [236] = 210, - [237] = 211, - [238] = 212, - [239] = 213, - [240] = 218, - [241] = 214, - [242] = 215, - [243] = 218, - [244] = 219, - [245] = 220, - [246] = 196, - [247] = 197, - [248] = 198, - [249] = 195, - [250] = 199, - [251] = 200, - [252] = 201, - [253] = 202, - [254] = 203, - [255] = 204, - [256] = 205, - [257] = 206, - [258] = 207, - [259] = 208, - [260] = 209, - [261] = 210, - [262] = 211, - [263] = 212, - [264] = 213, - [265] = 219, - [266] = 202, + [219] = 196, + [220] = 197, + [221] = 197, + [222] = 198, + [223] = 199, + [224] = 200, + [225] = 201, + [226] = 202, + [227] = 203, + [228] = 205, + [229] = 206, + [230] = 207, + [231] = 208, + [232] = 209, + [233] = 210, + [234] = 211, + [235] = 212, + [236] = 236, + [237] = 213, + [238] = 214, + [239] = 215, + [240] = 216, + [241] = 217, + [242] = 218, + [243] = 196, + [244] = 198, + [245] = 199, + [246] = 200, + [247] = 201, + [248] = 202, + [249] = 203, + [250] = 195, + [251] = 205, + [252] = 206, + [253] = 207, + [254] = 208, + [255] = 209, + [256] = 210, + [257] = 211, + [258] = 212, + [259] = 236, + [260] = 213, + [261] = 214, + [262] = 215, + [263] = 216, + [264] = 217, + [265] = 218, + [266] = 236, [267] = 92, [268] = 93, [269] = 92, [270] = 93, - [271] = 93, - [272] = 92, - [273] = 101, - [274] = 96, - [275] = 96, - [276] = 93, - [277] = 92, + [271] = 92, + [272] = 93, + [273] = 99, + [274] = 274, + [275] = 99, + [276] = 94, + [277] = 94, [278] = 278, - [279] = 279, + [279] = 99, [280] = 280, - [281] = 280, - [282] = 279, - [283] = 96, - [284] = 280, + [281] = 94, + [282] = 278, + [283] = 280, + [284] = 93, [285] = 278, - [286] = 101, - [287] = 278, - [288] = 279, - [289] = 101, + [286] = 280, + [287] = 92, + [288] = 274, + [289] = 274, [290] = 280, [291] = 278, - [292] = 280, - [293] = 278, - [294] = 104, - [295] = 96, - [296] = 109, + [292] = 278, + [293] = 280, + [294] = 93, + [295] = 94, + [296] = 92, [297] = 109, - [298] = 113, - [299] = 106, - [300] = 113, - [301] = 106, - [302] = 104, - [303] = 113, - [304] = 106, - [305] = 104, - [306] = 93, - [307] = 92, - [308] = 101, + [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] = 101, - [311] = 96, - [312] = 106, - [313] = 104, - [314] = 109, - [315] = 113, - [316] = 113, - [317] = 109, - [318] = 104, - [319] = 106, + [310] = 94, + [311] = 99, + [312] = 109, + [313] = 108, + [314] = 107, + [315] = 114, + [316] = 114, + [317] = 107, + [318] = 108, + [319] = 109, [320] = 320, [321] = 320, [322] = 320, - [323] = 147, + [323] = 158, [324] = 144, [325] = 144, - [326] = 147, - [327] = 147, - [328] = 144, - [329] = 144, - [330] = 147, - [331] = 147, + [326] = 144, + [327] = 158, + [328] = 158, + [329] = 158, + [330] = 144, + [331] = 158, [332] = 144, [333] = 333, [334] = 334, - [335] = 335, - [336] = 333, - [337] = 334, + [335] = 333, + [336] = 336, + [337] = 336, [338] = 338, [339] = 339, - [340] = 340, - [341] = 341, + [340] = 338, + [341] = 338, [342] = 342, [343] = 343, - [344] = 344, - [345] = 345, + [344] = 338, + [345] = 338, [346] = 346, - [347] = 338, - [348] = 339, + [347] = 347, + [348] = 348, [349] = 349, - [350] = 340, + [350] = 350, [351] = 351, - [352] = 352, - [353] = 338, - [354] = 338, - [355] = 341, - [356] = 344, - [357] = 345, - [358] = 346, - [359] = 338, - [360] = 338, + [352] = 338, + [353] = 346, + [354] = 347, + [355] = 348, + [356] = 349, + [357] = 350, + [358] = 338, + [359] = 351, + [360] = 360, [361] = 338, [362] = 338, [363] = 338, - [364] = 338, - [365] = 338, - [366] = 343, - [367] = 342, - [368] = 368, - [369] = 368, + [364] = 342, + [365] = 343, + [366] = 338, + [367] = 367, + [368] = 333, + [369] = 336, [370] = 370, - [371] = 333, - [372] = 335, + [371] = 334, + [372] = 372, [373] = 373, - [374] = 334, - [375] = 346, - [376] = 339, - [377] = 343, - [378] = 378, - [379] = 341, - [380] = 378, + [374] = 373, + [375] = 375, + [376] = 347, + [377] = 375, + [378] = 350, + [379] = 339, + [380] = 342, [381] = 381, - [382] = 381, - [383] = 342, - [384] = 340, - [385] = 385, - [386] = 386, - [387] = 352, - [388] = 381, - [389] = 389, - [390] = 351, - [391] = 381, - [392] = 345, - [393] = 344, - [394] = 378, - [395] = 381, - [396] = 349, - [397] = 397, - [398] = 368, - [399] = 333, + [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] = 381, [400] = 400, - [401] = 386, + [401] = 367, [402] = 402, - [403] = 335, + [403] = 403, [404] = 404, - [405] = 405, - [406] = 406, + [405] = 373, + [406] = 372, [407] = 407, [408] = 408, - [409] = 409, + [409] = 336, [410] = 410, - [411] = 373, + [411] = 411, [412] = 412, - [413] = 335, - [414] = 342, - [415] = 340, - [416] = 341, - [417] = 389, - [418] = 93, - [419] = 351, - [420] = 92, - [421] = 352, - [422] = 409, - [423] = 385, - [424] = 344, - [425] = 349, - [426] = 334, - [427] = 427, - [428] = 345, - [429] = 343, - [430] = 400, - [431] = 339, - [432] = 346, - [433] = 433, - [434] = 92, - [435] = 368, - [436] = 101, - [437] = 405, - [438] = 406, - [439] = 96, - [440] = 433, + [413] = 398, + [414] = 414, + [415] = 334, + [416] = 416, + [417] = 348, + [418] = 410, + [419] = 400, + [420] = 333, + [421] = 347, + [422] = 93, + [423] = 92, + [424] = 360, + [425] = 414, + [426] = 346, + [427] = 342, + [428] = 372, + [429] = 349, + [430] = 350, + [431] = 431, + [432] = 351, + [433] = 367, + [434] = 334, + [435] = 387, + [436] = 339, + [437] = 343, + [438] = 438, + [439] = 439, + [440] = 93, [441] = 441, - [442] = 442, - [443] = 373, - [444] = 444, - [445] = 433, - [446] = 412, - [447] = 402, - [448] = 351, - [449] = 404, - [450] = 93, - [451] = 451, - [452] = 352, - [453] = 410, - [454] = 349, - [455] = 455, - [456] = 456, - [457] = 457, - [458] = 458, + [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] = 113, - [461] = 456, - [462] = 462, - [463] = 458, - [464] = 451, - [465] = 96, - [466] = 106, - [467] = 104, - [468] = 101, - [469] = 458, - [470] = 470, - [471] = 441, - [472] = 458, - [473] = 456, - [474] = 433, - [475] = 475, - [476] = 476, - [477] = 407, - [478] = 373, - [479] = 479, - [480] = 480, - [481] = 333, - [482] = 345, - [483] = 106, - [484] = 484, - [485] = 344, - [486] = 486, - [487] = 487, - [488] = 444, - [489] = 489, - [490] = 490, + [460] = 460, + [461] = 107, + [462] = 460, + [463] = 438, + [464] = 464, + [465] = 465, + [466] = 108, + [467] = 460, + [468] = 109, + [469] = 94, + [470] = 460, + [471] = 471, + [472] = 460, + [473] = 460, + [474] = 99, + [475] = 460, + [476] = 460, + [477] = 477, + [478] = 439, + [479] = 477, + [480] = 477, + [481] = 447, + [482] = 482, + [483] = 483, + [484] = 350, + [485] = 485, + [486] = 333, + [487] = 351, + [488] = 488, + [489] = 107, + [490] = 336, [491] = 491, - [492] = 492, - [493] = 104, - [494] = 334, + [492] = 404, + [493] = 493, + [494] = 402, [495] = 495, - [496] = 442, + [496] = 372, [497] = 497, - [498] = 408, - [499] = 346, - [500] = 340, - [501] = 339, - [502] = 341, - [503] = 113, - [504] = 504, + [498] = 498, + [499] = 108, + [500] = 348, + [501] = 109, + [502] = 346, + [503] = 503, + [504] = 347, [505] = 505, - [506] = 506, - [507] = 507, - [508] = 508, + [506] = 349, + [507] = 453, + [508] = 441, [509] = 509, [510] = 510, [511] = 511, @@ -5358,32 +5367,32 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [527] = 527, [528] = 528, [529] = 529, - [530] = 455, + [530] = 530, [531] = 531, - [532] = 343, - [533] = 342, - [534] = 517, - [535] = 518, - [536] = 519, - [537] = 520, - [538] = 521, - [539] = 522, - [540] = 523, - [541] = 524, - [542] = 525, - [543] = 526, - [544] = 527, - [545] = 528, - [546] = 531, + [532] = 532, + [533] = 533, + [534] = 534, + [535] = 535, + [536] = 536, + [537] = 537, + [538] = 538, + [539] = 539, + [540] = 540, + [541] = 541, + [542] = 537, + [543] = 543, + [544] = 524, + [545] = 525, + [546] = 541, [547] = 547, [548] = 548, [549] = 549, - [550] = 550, - [551] = 551, - [552] = 552, - [553] = 553, - [554] = 554, - [555] = 555, + [550] = 521, + [551] = 522, + [552] = 523, + [553] = 531, + [554] = 536, + [555] = 513, [556] = 556, [557] = 557, [558] = 558, @@ -5394,162 +5403,162 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [563] = 563, [564] = 564, [565] = 565, - [566] = 566, + [566] = 520, [567] = 567, [568] = 568, - [569] = 504, + [569] = 569, [570] = 570, [571] = 571, [572] = 572, [573] = 573, [574] = 574, - [575] = 575, + [575] = 512, [576] = 576, [577] = 577, [578] = 578, [579] = 579, - [580] = 505, - [581] = 506, - [582] = 512, - [583] = 513, - [584] = 514, - [585] = 516, - [586] = 462, - [587] = 518, - [588] = 519, - [589] = 520, - [590] = 521, - [591] = 522, - [592] = 523, - [593] = 524, - [594] = 525, - [595] = 526, - [596] = 527, - [597] = 528, - [598] = 531, - [599] = 547, - [600] = 548, - [601] = 549, - [602] = 550, - [603] = 551, - [604] = 552, - [605] = 553, - [606] = 554, - [607] = 555, - [608] = 556, - [609] = 557, - [610] = 558, - [611] = 559, - [612] = 560, - [613] = 561, - [614] = 562, - [615] = 563, - [616] = 564, - [617] = 565, - [618] = 566, - [619] = 567, - [620] = 568, - [621] = 504, - [622] = 570, - [623] = 571, - [624] = 572, - [625] = 573, - [626] = 574, - [627] = 575, - [628] = 576, - [629] = 577, - [630] = 578, - [631] = 579, - [632] = 505, - [633] = 506, - [634] = 512, - [635] = 513, - [636] = 514, - [637] = 516, - [638] = 573, - [639] = 574, - [640] = 575, - [641] = 576, - [642] = 642, - [643] = 547, - [644] = 548, - [645] = 549, - [646] = 550, - [647] = 577, - [648] = 551, - [649] = 552, - [650] = 553, - [651] = 554, - [652] = 555, - [653] = 556, - [654] = 557, - [655] = 558, - [656] = 559, - [657] = 560, - [658] = 561, - [659] = 562, - [660] = 563, - [661] = 564, - [662] = 565, - [663] = 566, - [664] = 567, - [665] = 568, - [666] = 578, - [667] = 570, - [668] = 571, - [669] = 572, + [580] = 580, + [581] = 581, + [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] = 517, - [672] = 672, - [673] = 510, - [674] = 674, - [675] = 511, - [676] = 676, - [677] = 677, - [678] = 678, - [679] = 679, - [680] = 680, - [681] = 444, - [682] = 682, + [671] = 580, + [672] = 581, + [673] = 565, + [674] = 482, + [675] = 533, + [676] = 534, + [677] = 535, + [678] = 538, + [679] = 539, + [680] = 538, + [681] = 681, + [682] = 526, [683] = 683, [684] = 684, [685] = 685, [686] = 686, [687] = 687, [688] = 688, - [689] = 689, + [689] = 488, [690] = 690, [691] = 691, - [692] = 490, - [693] = 693, - [694] = 694, + [692] = 692, + [693] = 441, + [694] = 528, [695] = 695, [696] = 696, [697] = 697, - [698] = 698, - [699] = 492, + [698] = 453, + [699] = 699, [700] = 700, - [701] = 497, - [702] = 702, + [701] = 701, + [702] = 339, [703] = 703, - [704] = 368, - [705] = 335, - [706] = 442, + [704] = 704, + [705] = 705, + [706] = 706, [707] = 707, [708] = 708, [709] = 709, [710] = 710, [711] = 711, - [712] = 712, + [712] = 367, [713] = 713, [714] = 714, - [715] = 462, - [716] = 442, + [715] = 715, + [716] = 510, [717] = 717, - [718] = 718, - [719] = 719, - [720] = 720, - [721] = 713, + [718] = 497, + [719] = 373, + [720] = 360, + [721] = 721, [722] = 722, [723] = 723, [724] = 724, @@ -5567,262 +5576,262 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [736] = 736, [737] = 737, [738] = 738, - [739] = 727, - [740] = 734, + [739] = 739, + [740] = 740, [741] = 741, [742] = 742, [743] = 743, - [744] = 714, - [745] = 719, - [746] = 720, - [747] = 713, - [748] = 735, - [749] = 736, - [750] = 737, - [751] = 738, - [752] = 727, - [753] = 734, - [754] = 741, - [755] = 742, - [756] = 743, - [757] = 714, - [758] = 719, - [759] = 720, - [760] = 741, - [761] = 742, - [762] = 762, - [763] = 763, - [764] = 764, + [744] = 744, + [745] = 745, + [746] = 746, + [747] = 747, + [748] = 748, + [749] = 749, + [750] = 750, + [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] = 766, - [767] = 767, + [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] = 743, + [778] = 778, [779] = 779, [780] = 780, - [781] = 737, - [782] = 738, + [781] = 781, + [782] = 782, [783] = 783, - [784] = 784, + [784] = 441, [785] = 785, [786] = 786, [787] = 787, - [788] = 788, - [789] = 789, - [790] = 790, - [791] = 349, - [792] = 352, + [788] = 485, + [789] = 495, + [790] = 453, + [791] = 791, + [792] = 493, [793] = 793, - [794] = 735, - [795] = 484, - [796] = 796, + [794] = 794, + [795] = 795, + [796] = 441, [797] = 797, - [798] = 736, - [799] = 799, - [800] = 489, - [801] = 735, - [802] = 736, - [803] = 737, - [804] = 738, - [805] = 727, - [806] = 734, - [807] = 741, - [808] = 742, - [809] = 743, - [810] = 714, + [798] = 798, + [799] = 464, + [800] = 482, + [801] = 801, + [802] = 802, + [803] = 803, + [804] = 804, + [805] = 805, + [806] = 806, + [807] = 807, + [808] = 808, + [809] = 809, + [810] = 810, [811] = 811, [812] = 812, [813] = 813, [814] = 814, - [815] = 815, - [816] = 816, - [817] = 719, - [818] = 818, - [819] = 819, - [820] = 820, - [821] = 821, - [822] = 822, - [823] = 823, - [824] = 824, - [825] = 720, - [826] = 826, - [827] = 713, + [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, + [829] = 505, [830] = 830, - [831] = 487, + [831] = 831, [832] = 832, - [833] = 714, + [833] = 833, [834] = 834, - [835] = 735, - [836] = 735, - [837] = 736, - [838] = 737, - [839] = 738, - [840] = 727, - [841] = 734, - [842] = 741, - [843] = 742, - [844] = 743, - [845] = 714, - [846] = 719, - [847] = 720, - [848] = 713, - [849] = 736, - [850] = 850, - [851] = 851, - [852] = 852, + [835] = 835, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 839, + [840] = 755, + [841] = 756, + [842] = 757, + [843] = 758, + [844] = 732, + [845] = 733, + [846] = 734, + [847] = 738, + [848] = 740, + [849] = 754, + [850] = 765, + [851] = 724, + [852] = 725, [853] = 853, [854] = 854, [855] = 855, [856] = 856, - [857] = 719, + [857] = 857, [858] = 858, - [859] = 737, + [859] = 859, [860] = 860, [861] = 861, [862] = 862, - [863] = 720, - [864] = 480, - [865] = 713, - [866] = 866, - [867] = 479, - [868] = 868, - [869] = 869, - [870] = 870, - [871] = 871, - [872] = 872, - [873] = 444, - [874] = 874, - [875] = 875, - [876] = 876, - [877] = 738, - [878] = 495, - [879] = 444, - [880] = 727, - [881] = 734, - [882] = 741, - [883] = 883, - [884] = 884, - [885] = 742, - [886] = 886, - [887] = 743, + [863] = 863, + [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] = 882, + [883] = 755, + [884] = 756, + [885] = 757, + [886] = 758, + [887] = 887, [888] = 888, [889] = 889, [890] = 890, - [891] = 455, - [892] = 892, - [893] = 893, - [894] = 351, - [895] = 895, - [896] = 686, - [897] = 897, - [898] = 898, - [899] = 899, - [900] = 900, - [901] = 901, - [902] = 490, + [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] = 905, [906] = 906, [907] = 907, [908] = 908, - [909] = 462, - [910] = 373, - [911] = 911, - [912] = 912, - [913] = 507, + [909] = 497, + [910] = 910, + [911] = 510, + [912] = 488, + [913] = 913, [914] = 914, [915] = 915, - [916] = 470, + [916] = 916, [917] = 917, [918] = 918, [919] = 919, - [920] = 920, + [920] = 686, [921] = 921, [922] = 922, - [923] = 923, - [924] = 924, + [923] = 687, + [924] = 704, [925] = 925, [926] = 926, [927] = 927, [928] = 928, - [929] = 929, + [929] = 688, [930] = 930, - [931] = 702, + [931] = 931, [932] = 932, - [933] = 933, + [933] = 713, [934] = 934, - [935] = 935, + [935] = 690, [936] = 936, - [937] = 937, - [938] = 938, + [937] = 527, + [938] = 483, [939] = 939, [940] = 940, - [941] = 455, + [941] = 498, [942] = 942, - [943] = 698, - [944] = 492, - [945] = 703, + [943] = 464, + [944] = 491, + [945] = 945, [946] = 946, - [947] = 707, + [947] = 947, [948] = 948, - [949] = 688, - [950] = 950, - [951] = 950, - [952] = 486, - [953] = 953, + [949] = 949, + [950] = 700, + [951] = 951, + [952] = 703, + [953] = 723, [954] = 954, - [955] = 689, + [955] = 955, [956] = 956, - [957] = 475, - [958] = 690, - [959] = 672, - [960] = 497, + [957] = 957, + [958] = 958, + [959] = 482, + [960] = 960, [961] = 961, [962] = 962, - [963] = 950, - [964] = 476, - [965] = 708, + [963] = 471, + [964] = 918, + [965] = 965, [966] = 966, [967] = 967, [968] = 968, [969] = 969, [970] = 970, - [971] = 971, - [972] = 890, - [973] = 898, - [974] = 935, - [975] = 975, + [971] = 918, + [972] = 372, + [973] = 973, + [974] = 691, + [975] = 721, [976] = 976, [977] = 977, - [978] = 978, - [979] = 948, - [980] = 980, - [981] = 981, - [982] = 918, - [983] = 922, + [978] = 497, + [979] = 510, + [980] = 488, + [981] = 705, + [982] = 982, + [983] = 683, [984] = 984, [985] = 985, [986] = 986, - [987] = 923, + [987] = 987, [988] = 988, - [989] = 961, - [990] = 990, - [991] = 991, + [989] = 989, + [990] = 684, + [991] = 982, [992] = 992, - [993] = 919, - [994] = 925, + [993] = 993, + [994] = 994, [995] = 995, [996] = 996, [997] = 997, @@ -5834,33 +5843,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1003] = 1003, [1004] = 1004, [1005] = 1005, - [1006] = 1006, + [1006] = 708, [1007] = 1007, [1008] = 1008, [1009] = 1009, - [1010] = 696, + [1010] = 1010, [1011] = 1011, [1012] = 1012, [1013] = 1013, - [1014] = 710, + [1014] = 1014, [1015] = 1015, [1016] = 1016, [1017] = 1017, - [1018] = 711, - [1019] = 1019, + [1018] = 1018, + [1019] = 685, [1020] = 1020, - [1021] = 691, - [1022] = 490, + [1021] = 1021, + [1022] = 1022, [1023] = 1023, - [1024] = 492, - [1025] = 674, + [1024] = 888, + [1025] = 962, [1026] = 1026, - [1027] = 497, - [1028] = 1028, - [1029] = 676, - [1030] = 677, - [1031] = 678, - [1032] = 682, + [1027] = 942, + [1028] = 973, + [1029] = 1029, + [1030] = 697, + [1031] = 1031, + [1032] = 1032, [1033] = 1033, [1034] = 1034, [1035] = 1035, @@ -5879,21 +5888,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1048] = 1048, [1049] = 1049, [1050] = 1050, - [1051] = 683, + [1051] = 1051, [1052] = 1052, - [1053] = 1053, + [1053] = 945, [1054] = 1054, - [1055] = 1055, - [1056] = 1056, + [1055] = 965, + [1056] = 966, [1057] = 1057, - [1058] = 684, + [1058] = 956, [1059] = 1059, [1060] = 1060, [1061] = 1061, - [1062] = 1062, + [1062] = 958, [1063] = 1063, [1064] = 1064, - [1065] = 685, + [1065] = 1065, [1066] = 1066, [1067] = 1067, [1068] = 1068, @@ -5901,8 +5910,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1070] = 1070, [1071] = 1071, [1072] = 1072, - [1073] = 687, - [1074] = 1074, + [1073] = 1073, + [1074] = 960, [1075] = 1075, [1076] = 1076, [1077] = 1077, @@ -5911,7 +5920,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1080] = 1080, [1081] = 1081, [1082] = 1082, - [1083] = 1083, + [1083] = 961, [1084] = 1084, [1085] = 1085, [1086] = 1086, @@ -5926,9 +5935,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1095] = 1095, [1096] = 1096, [1097] = 1097, - [1098] = 1097, - [1099] = 1078, - [1100] = 444, + [1098] = 1098, + [1099] = 1099, + [1100] = 1100, [1101] = 1101, [1102] = 1102, [1103] = 1103, @@ -5936,46 +5945,46 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1105] = 1105, [1106] = 1106, [1107] = 1107, - [1108] = 1011, + [1108] = 714, [1109] = 1109, - [1110] = 1110, + [1110] = 722, [1111] = 1111, - [1112] = 970, - [1113] = 976, - [1114] = 980, + [1112] = 717, + [1113] = 1113, + [1114] = 1114, [1115] = 1115, [1116] = 1116, - [1117] = 1117, + [1117] = 977, [1118] = 1118, [1119] = 1119, - [1120] = 712, - [1121] = 693, - [1122] = 694, - [1123] = 709, + [1120] = 1120, + [1121] = 1050, + [1122] = 1122, + [1123] = 1123, [1124] = 1124, - [1125] = 1125, - [1126] = 1078, - [1127] = 1127, - [1128] = 1128, - [1129] = 1011, + [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] = 695, + [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, - [1144] = 697, + [1143] = 1120, + [1144] = 1144, [1145] = 1145, [1146] = 1146, - [1147] = 1147, + [1147] = 681, [1148] = 1148, [1149] = 1149, [1150] = 1150, @@ -5995,7 +6004,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1164] = 1164, [1165] = 1165, [1166] = 1166, - [1167] = 1167, + [1167] = 1050, [1168] = 1168, [1169] = 1169, [1170] = 1170, @@ -6019,16 +6028,16 @@ 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, - [1196] = 1095, - [1197] = 1096, + [1196] = 1196, + [1197] = 1197, [1198] = 1198, [1199] = 1199, - [1200] = 1200, + [1200] = 1061, [1201] = 1201, [1202] = 1202, [1203] = 1203, @@ -6036,9 +6045,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1205] = 1205, [1206] = 1206, [1207] = 1207, - [1208] = 1157, + [1208] = 1208, [1209] = 1209, - [1210] = 1158, + [1210] = 1210, [1211] = 1211, [1212] = 1212, [1213] = 1213, @@ -6055,28 +6064,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1224] = 1224, [1225] = 1225, [1226] = 1226, - [1227] = 1227, + [1227] = 715, [1228] = 1228, - [1229] = 1229, + [1229] = 1141, [1230] = 1230, [1231] = 1231, - [1232] = 1132, + [1232] = 1232, [1233] = 1233, [1234] = 1234, [1235] = 1235, [1236] = 1236, - [1237] = 680, - [1238] = 1133, + [1237] = 1237, + [1238] = 1238, [1239] = 1239, [1240] = 1240, [1241] = 1241, [1242] = 1242, [1243] = 1243, [1244] = 1244, - [1245] = 1095, - [1246] = 1015, - [1247] = 1096, - [1248] = 1097, + [1245] = 1245, + [1246] = 1246, + [1247] = 695, + [1248] = 1248, [1249] = 1249, [1250] = 1250, [1251] = 1251, @@ -6084,3076 +6093,3076 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1253] = 1253, [1254] = 1254, [1255] = 1255, - [1256] = 1256, - [1257] = 1133, - [1258] = 1133, - [1259] = 1133, + [1256] = 1142, + [1257] = 1257, + [1258] = 1119, + [1259] = 1259, [1260] = 1260, - [1261] = 1261, - [1262] = 1262, - [1263] = 912, - [1264] = 766, - [1265] = 767, - [1266] = 888, - [1267] = 897, - [1268] = 1255, - [1269] = 956, - [1270] = 1173, - [1271] = 899, - [1272] = 928, - [1273] = 1203, - [1274] = 1192, - [1275] = 905, - [1276] = 946, - [1277] = 1214, - [1278] = 1146, - [1279] = 962, - [1280] = 1222, - [1281] = 908, - [1282] = 907, - [1283] = 1224, - [1284] = 1155, - [1285] = 915, - [1286] = 1227, - [1287] = 1287, - [1288] = 775, - [1289] = 1289, - [1290] = 776, - [1291] = 777, - [1292] = 921, - [1293] = 1293, - [1294] = 780, - [1295] = 933, - [1296] = 717, - [1297] = 718, - [1298] = 722, - [1299] = 723, - [1300] = 724, - [1301] = 725, - [1302] = 726, - [1303] = 953, - [1304] = 920, - [1305] = 926, - [1306] = 930, - [1307] = 784, - [1308] = 1308, - [1309] = 1231, - [1310] = 924, - [1311] = 1241, - [1312] = 929, - [1313] = 927, - [1314] = 679, - [1315] = 914, - [1316] = 884, - [1317] = 932, - [1318] = 903, - [1319] = 732, - [1320] = 733, - [1321] = 904, - [1322] = 934, - [1323] = 1323, - [1324] = 936, - [1325] = 937, - [1326] = 939, - [1327] = 940, - [1328] = 911, - [1329] = 895, - [1330] = 787, - [1331] = 789, - [1332] = 790, - [1333] = 954, - [1334] = 793, - [1335] = 901, - [1336] = 906, - [1337] = 942, - [1338] = 1338, - [1339] = 869, - [1340] = 700, - [1341] = 1308, - [1342] = 728, - [1343] = 729, - [1344] = 917, - [1345] = 938, - [1346] = 1346, - [1347] = 1347, - [1348] = 1348, - [1349] = 1349, - [1350] = 1350, - [1351] = 1351, - [1352] = 1352, - [1353] = 1353, - [1354] = 1348, + [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] = 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] = 1355, - [1356] = 1356, - [1357] = 507, + [1356] = 527, + [1357] = 1357, [1358] = 1358, [1359] = 1359, [1360] = 1360, [1361] = 1361, - [1362] = 1358, - [1363] = 1363, + [1362] = 1362, + [1363] = 1360, [1364] = 1364, - [1365] = 1349, - [1366] = 1350, - [1367] = 1352, - [1368] = 1355, - [1369] = 1358, - [1370] = 1358, - [1371] = 1364, - [1372] = 1372, - [1373] = 696, - [1374] = 1374, - [1375] = 1358, - [1376] = 1376, - [1377] = 386, + [1365] = 1365, + [1366] = 1366, + [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] = 1372, + [1379] = 1365, [1380] = 1380, - [1381] = 1381, - [1382] = 1382, + [1381] = 1366, + [1382] = 1366, [1383] = 1383, [1384] = 1384, [1385] = 1385, - [1386] = 386, - [1387] = 400, - [1388] = 1388, - [1389] = 409, + [1386] = 1386, + [1387] = 1387, + [1388] = 398, + [1389] = 1371, [1390] = 1390, [1391] = 1391, [1392] = 1392, [1393] = 1393, - [1394] = 92, - [1395] = 93, + [1394] = 410, + [1395] = 1395, [1396] = 1396, [1397] = 1397, - [1398] = 1398, - [1399] = 400, + [1398] = 414, + [1399] = 398, [1400] = 1400, - [1401] = 409, + [1401] = 410, [1402] = 1402, - [1403] = 96, - [1404] = 101, - [1405] = 507, - [1406] = 93, - [1407] = 451, - [1408] = 92, + [1403] = 1403, + [1404] = 414, + [1405] = 93, + [1406] = 1406, + [1407] = 92, + [1408] = 1408, [1409] = 1409, - [1410] = 1410, - [1411] = 444, - [1412] = 113, - [1413] = 451, - [1414] = 696, - [1415] = 1415, - [1416] = 106, - [1417] = 104, - [1418] = 1418, - [1419] = 1419, - [1420] = 1420, - [1421] = 96, - [1422] = 1422, - [1423] = 1423, - [1424] = 101, - [1425] = 442, - [1426] = 442, - [1427] = 462, - [1428] = 104, - [1429] = 113, - [1430] = 106, - [1431] = 444, - [1432] = 455, - [1433] = 510, - [1434] = 497, - [1435] = 455, - [1436] = 492, - [1437] = 462, - [1438] = 511, - [1439] = 490, - [1440] = 510, - [1441] = 1441, - [1442] = 444, - [1443] = 1443, - [1444] = 442, - [1445] = 1445, - [1446] = 490, - [1447] = 497, - [1448] = 511, - [1449] = 492, - [1450] = 1445, - [1451] = 1451, - [1452] = 1443, - [1453] = 455, + [1410] = 438, + [1411] = 1411, + [1412] = 92, + [1413] = 527, + [1414] = 93, + [1415] = 94, + [1416] = 1416, + [1417] = 1417, + [1418] = 99, + [1419] = 438, + [1420] = 99, + [1421] = 1421, + [1422] = 696, + [1423] = 94, + [1424] = 1424, + [1425] = 1425, + [1426] = 453, + [1427] = 1427, + [1428] = 109, + [1429] = 441, + [1430] = 107, + [1431] = 1431, + [1432] = 108, + [1433] = 1433, + [1434] = 109, + [1435] = 464, + [1436] = 107, + [1437] = 482, + [1438] = 441, + [1439] = 108, + [1440] = 453, + [1441] = 482, + [1442] = 510, + [1443] = 464, + [1444] = 528, + [1445] = 526, + [1446] = 497, + [1447] = 488, + [1448] = 497, + [1449] = 510, + [1450] = 488, + [1451] = 441, + [1452] = 1452, + [1453] = 528, [1454] = 1454, - [1455] = 444, - [1456] = 1441, - [1457] = 442, - [1458] = 462, - [1459] = 1454, - [1460] = 1460, + [1455] = 1455, + [1456] = 526, + [1457] = 453, + [1458] = 1458, + [1459] = 453, + [1460] = 441, [1461] = 1461, - [1462] = 1462, - [1463] = 890, - [1464] = 961, - [1465] = 1465, - [1466] = 1466, - [1467] = 1467, - [1468] = 1468, - [1469] = 1469, - [1470] = 490, - [1471] = 918, - [1472] = 922, + [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] = 925, - [1476] = 919, - [1477] = 923, - [1478] = 948, - [1479] = 492, - [1480] = 497, - [1481] = 898, - [1482] = 462, - [1483] = 455, - [1484] = 935, + [1475] = 966, + [1476] = 1476, + [1477] = 965, + [1478] = 962, + [1479] = 942, + [1480] = 1480, + [1481] = 956, + [1482] = 1482, + [1483] = 482, + [1484] = 1484, [1485] = 1485, [1486] = 1486, [1487] = 1487, - [1488] = 898, - [1489] = 925, - [1490] = 918, - [1491] = 1095, - [1492] = 922, + [1488] = 960, + [1489] = 488, + [1490] = 464, + [1491] = 961, + [1492] = 1492, [1493] = 1493, - [1494] = 1494, - [1495] = 1495, - [1496] = 935, - [1497] = 1015, - [1498] = 1096, - [1499] = 890, - [1500] = 490, - [1501] = 492, - [1502] = 497, - [1503] = 1097, - [1504] = 1504, - [1505] = 948, - [1506] = 923, - [1507] = 961, - [1508] = 919, - [1509] = 1509, - [1510] = 1015, - [1511] = 1207, - [1512] = 1512, - [1513] = 1211, - [1514] = 1213, - [1515] = 1215, - [1516] = 1218, - [1517] = 1221, - [1518] = 1225, - [1519] = 1230, - [1520] = 1233, - [1521] = 1512, - [1522] = 1235, + [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] = 942, + [1512] = 510, + [1513] = 958, + [1514] = 488, + [1515] = 1061, + [1516] = 1516, + [1517] = 1148, + [1518] = 1518, + [1519] = 1119, + [1520] = 1120, + [1521] = 1521, + [1522] = 1522, [1523] = 1523, [1524] = 1524, [1525] = 1525, - [1526] = 1249, - [1527] = 1251, - [1528] = 1254, - [1529] = 1256, - [1530] = 1261, - [1531] = 1161, - [1532] = 1165, - [1533] = 1181, - [1534] = 1195, - [1535] = 1236, - [1536] = 1250, - [1537] = 1140, - [1538] = 1150, - [1539] = 1187, - [1540] = 1193, - [1541] = 1204, - [1542] = 1253, - [1543] = 1139, - [1544] = 1142, - [1545] = 1148, - [1546] = 1154, - [1547] = 1159, - [1548] = 1163, - [1549] = 1169, - [1550] = 1177, - [1551] = 1183, - [1552] = 1191, - [1553] = 1200, - [1554] = 1209, - [1555] = 1219, - [1556] = 1228, - [1557] = 1243, - [1558] = 1135, - [1559] = 1141, - [1560] = 1143, - [1561] = 1561, - [1562] = 1152, - [1563] = 1563, - [1564] = 1564, - [1565] = 1565, - [1566] = 1164, - [1567] = 1167, - [1568] = 1171, - [1569] = 1175, - [1570] = 1179, - [1571] = 1182, - [1572] = 1185, - [1573] = 1189, - [1574] = 1194, - [1575] = 1198, - [1576] = 1201, - [1577] = 1206, - [1578] = 1212, - [1579] = 1216, - [1580] = 1220, - [1581] = 1223, - [1582] = 1226, - [1583] = 1229, - [1584] = 1234, - [1585] = 1239, - [1586] = 1242, - [1587] = 1244, - [1588] = 1252, - [1589] = 1260, - [1590] = 1202, - [1591] = 1134, - [1592] = 1136, - [1593] = 1138, - [1594] = 1145, - [1595] = 1147, - [1596] = 1149, - [1597] = 1151, - [1598] = 1153, - [1599] = 1156, - [1600] = 1160, - [1601] = 1162, - [1602] = 1602, - [1603] = 1603, - [1604] = 1604, - [1605] = 1524, - [1606] = 1166, - [1607] = 1168, - [1608] = 1170, - [1609] = 1172, - [1610] = 1174, - [1611] = 1176, - [1612] = 1178, - [1613] = 1180, - [1614] = 1184, - [1615] = 1186, - [1616] = 1188, - [1617] = 1190, - [1618] = 1618, - [1619] = 1619, - [1620] = 1620, - [1621] = 1621, - [1622] = 1097, - [1623] = 1623, - [1624] = 1624, - [1625] = 1625, - [1626] = 1626, - [1627] = 1627, - [1628] = 1628, - [1629] = 1629, - [1630] = 1523, - [1631] = 1525, - [1632] = 1564, - [1633] = 1621, - [1634] = 1561, - [1635] = 1565, - [1636] = 1173, - [1637] = 1192, - [1638] = 1214, - [1639] = 1222, - [1640] = 1224, - [1641] = 1227, - [1642] = 1231, - [1643] = 1241, - [1644] = 1255, - [1645] = 1203, - [1646] = 1146, - [1647] = 1155, - [1648] = 1602, - [1649] = 1603, - [1650] = 1604, - [1651] = 1524, - [1652] = 1563, - [1653] = 1625, - [1654] = 1524, - [1655] = 1655, - [1656] = 1626, - [1657] = 1618, - [1658] = 1619, - [1659] = 1623, - [1660] = 1660, - [1661] = 1624, - [1662] = 1095, - [1663] = 1096, - [1664] = 1664, - [1665] = 1665, - [1666] = 1666, - [1667] = 1620, - [1668] = 386, - [1669] = 1627, - [1670] = 1628, - [1671] = 1262, - [1672] = 1629, - [1673] = 1664, - [1674] = 1205, - [1675] = 1665, - [1676] = 1676, - [1677] = 1666, - [1678] = 1655, - [1679] = 1227, - [1680] = 400, - [1681] = 1173, - [1682] = 1660, - [1683] = 1683, - [1684] = 1222, - [1685] = 1192, - [1686] = 1214, - [1687] = 1687, - [1688] = 1224, - [1689] = 1683, - [1690] = 1231, - [1691] = 1241, - [1692] = 1255, - [1693] = 1203, - [1694] = 1146, - [1695] = 1155, - [1696] = 409, - [1697] = 386, - [1698] = 1698, - [1699] = 93, - [1700] = 1700, - [1701] = 92, - [1702] = 1702, - [1703] = 409, - [1704] = 389, - [1705] = 1705, - [1706] = 1706, - [1707] = 385, - [1708] = 1708, - [1709] = 1705, - [1710] = 1706, - [1711] = 1698, - [1712] = 1708, - [1713] = 1700, - [1714] = 400, + [1526] = 1050, + [1527] = 398, + [1528] = 1061, + [1529] = 1529, + [1530] = 1530, + [1531] = 1531, + [1532] = 1532, + [1533] = 1533, + [1534] = 1534, + [1535] = 1535, + [1536] = 1536, + [1537] = 1537, + [1538] = 1538, + [1539] = 1539, + [1540] = 1540, + [1541] = 1541, + [1542] = 1542, + [1543] = 1543, + [1544] = 1544, + [1545] = 1545, + [1546] = 1546, + [1547] = 1547, + [1548] = 1548, + [1549] = 1549, + [1550] = 1550, + [1551] = 1533, + [1552] = 1534, + [1553] = 1535, + [1554] = 1536, + [1555] = 1539, + [1556] = 1549, + [1557] = 1550, + [1558] = 1522, + [1559] = 1523, + [1560] = 1524, + [1561] = 1525, + [1562] = 1529, + [1563] = 1530, + [1564] = 1531, + [1565] = 1532, + [1566] = 1537, + [1567] = 1538, + [1568] = 1159, + [1569] = 1165, + [1570] = 1173, + [1571] = 1177, + [1572] = 1195, + [1573] = 1196, + [1574] = 1205, + [1575] = 1216, + [1576] = 1248, + [1577] = 1250, + [1578] = 1251, + [1579] = 1254, + [1580] = 1539, + [1581] = 1139, + [1582] = 1169, + [1583] = 1171, + [1584] = 1175, + [1585] = 1180, + [1586] = 1184, + [1587] = 1197, + [1588] = 1215, + [1589] = 1217, + [1590] = 1219, + [1591] = 1225, + [1592] = 1230, + [1593] = 1233, + [1594] = 1237, + [1595] = 1240, + [1596] = 1242, + [1597] = 1249, + [1598] = 1252, + [1599] = 1255, + [1600] = 1257, + [1601] = 1259, + [1602] = 1263, + [1603] = 1264, + [1604] = 1266, + [1605] = 1211, + [1606] = 1145, + [1607] = 1539, + [1608] = 1151, + [1609] = 1541, + [1610] = 1162, + [1611] = 1163, + [1612] = 1164, + [1613] = 1166, + [1614] = 1168, + [1615] = 1170, + [1616] = 1172, + [1617] = 1174, + [1618] = 1542, + [1619] = 1178, + [1620] = 1179, + [1621] = 1181, + [1622] = 1182, + [1623] = 1183, + [1624] = 1185, + [1625] = 1186, + [1626] = 1187, + [1627] = 1188, + [1628] = 1189, + [1629] = 1190, + [1630] = 1193, + [1631] = 1194, + [1632] = 1198, + [1633] = 1199, + [1634] = 1201, + [1635] = 1202, + [1636] = 1203, + [1637] = 1204, + [1638] = 1206, + [1639] = 1207, + [1640] = 1208, + [1641] = 1209, + [1642] = 1210, + [1643] = 1270, + [1644] = 1212, + [1645] = 1213, + [1646] = 1214, + [1647] = 1218, + [1648] = 1220, + [1649] = 1221, + [1650] = 1222, + [1651] = 1223, + [1652] = 1224, + [1653] = 1226, + [1654] = 1228, + [1655] = 1231, + [1656] = 1232, + [1657] = 1234, + [1658] = 1235, + [1659] = 1236, + [1660] = 1238, + [1661] = 1239, + [1662] = 1241, + [1663] = 1243, + [1664] = 1244, + [1665] = 1245, + [1666] = 1246, + [1667] = 1667, + [1668] = 1260, + [1669] = 1265, + [1670] = 1140, + [1671] = 1146, + [1672] = 1149, + [1673] = 1150, + [1674] = 1152, + [1675] = 1153, + [1676] = 1154, + [1677] = 1155, + [1678] = 1156, + [1679] = 1157, + [1680] = 1539, + [1681] = 1543, + [1682] = 1544, + [1683] = 1539, + [1684] = 1539, + [1685] = 1539, + [1686] = 1545, + [1687] = 1546, + [1688] = 1547, + [1689] = 1548, + [1690] = 1540, + [1691] = 414, + [1692] = 410, + [1693] = 1693, + [1694] = 1260, + [1695] = 1265, + [1696] = 1140, + [1697] = 1146, + [1698] = 1149, + [1699] = 1150, + [1700] = 1152, + [1701] = 1153, + [1702] = 1154, + [1703] = 1155, + [1704] = 1704, + [1705] = 1156, + [1706] = 1157, + [1707] = 1518, + [1708] = 398, + [1709] = 1693, + [1710] = 1710, + [1711] = 1711, + [1712] = 1712, + [1713] = 93, + [1714] = 92, [1715] = 1715, - [1716] = 405, - [1717] = 1717, - [1718] = 1718, - [1719] = 92, - [1720] = 101, - [1721] = 407, - [1722] = 412, - [1723] = 96, - [1724] = 333, - [1725] = 1717, - [1726] = 451, - [1727] = 334, + [1716] = 1716, + [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] = 1717, - [1730] = 1730, - [1731] = 410, - [1732] = 404, - [1733] = 406, - [1734] = 408, - [1735] = 402, - [1736] = 93, + [1729] = 404, + [1730] = 416, + [1731] = 1731, + [1732] = 403, + [1733] = 402, + [1734] = 333, + [1735] = 336, + [1736] = 94, [1737] = 1737, - [1738] = 343, - [1739] = 451, - [1740] = 342, - [1741] = 346, - [1742] = 106, - [1743] = 93, - [1744] = 334, - [1745] = 1745, - [1746] = 444, - [1747] = 442, - [1748] = 1748, - [1749] = 408, - [1750] = 92, - [1751] = 1751, + [1738] = 438, + [1739] = 1739, + [1740] = 1740, + [1741] = 411, + [1742] = 93, + [1743] = 92, + [1744] = 408, + [1745] = 412, + [1746] = 407, + [1747] = 1728, + [1748] = 1728, + [1749] = 1728, + [1750] = 1750, + [1751] = 92, [1752] = 1752, - [1753] = 104, - [1754] = 1745, - [1755] = 1745, - [1756] = 1756, - [1757] = 101, - [1758] = 1758, - [1759] = 1759, - [1760] = 1751, - [1761] = 339, + [1753] = 1753, + [1754] = 346, + [1755] = 347, + [1756] = 348, + [1757] = 349, + [1758] = 350, + [1759] = 351, + [1760] = 1760, + [1761] = 404, [1762] = 1752, - [1763] = 1763, - [1764] = 1764, - [1765] = 344, - [1766] = 340, - [1767] = 341, - [1768] = 113, - [1769] = 345, - [1770] = 407, - [1771] = 1751, - [1772] = 96, - [1773] = 1737, - [1774] = 1751, - [1775] = 333, - [1776] = 1764, - [1777] = 1777, - [1778] = 1778, + [1763] = 1753, + [1764] = 402, + [1765] = 1765, + [1766] = 336, + [1767] = 1767, + [1768] = 94, + [1769] = 1769, + [1770] = 1770, + [1771] = 333, + [1772] = 1765, + [1773] = 1767, + [1774] = 438, + [1775] = 1753, + [1776] = 453, + [1777] = 342, + [1778] = 1765, [1779] = 1779, - [1780] = 462, - [1781] = 368, - [1782] = 96, - [1783] = 442, - [1784] = 345, - [1785] = 1785, - [1786] = 1778, - [1787] = 1779, - [1788] = 342, + [1780] = 343, + [1781] = 1765, + [1782] = 93, + [1783] = 1753, + [1784] = 107, + [1785] = 1769, + [1786] = 441, + [1787] = 108, + [1788] = 109, [1789] = 1789, - [1790] = 1790, - [1791] = 346, - [1792] = 335, + [1790] = 99, + [1791] = 349, + [1792] = 1792, [1793] = 1793, - [1794] = 444, - [1795] = 1793, + [1794] = 1794, + [1795] = 1795, [1796] = 1796, - [1797] = 344, - [1798] = 1798, + [1797] = 441, + [1798] = 1795, [1799] = 1799, - [1800] = 343, - [1801] = 1801, - [1802] = 113, - [1803] = 101, + [1800] = 342, + [1801] = 1795, + [1802] = 1802, + [1803] = 343, [1804] = 1804, [1805] = 1805, - [1806] = 1806, - [1807] = 339, - [1808] = 340, - [1809] = 341, - [1810] = 1810, - [1811] = 1785, - [1812] = 1798, + [1806] = 346, + [1807] = 347, + [1808] = 348, + [1809] = 334, + [1810] = 350, + [1811] = 351, + [1812] = 1812, [1813] = 1813, - [1814] = 1801, - [1815] = 106, - [1816] = 455, - [1817] = 1785, - [1818] = 104, - [1819] = 1810, - [1820] = 1785, - [1821] = 1813, - [1822] = 1822, - [1823] = 1804, - [1824] = 1824, - [1825] = 490, - [1826] = 492, - [1827] = 497, - [1828] = 455, - [1829] = 351, - [1830] = 1830, - [1831] = 106, - [1832] = 1832, - [1833] = 349, - [1834] = 368, - [1835] = 462, - [1836] = 104, - [1837] = 1837, - [1838] = 511, - [1839] = 1839, - [1840] = 510, - [1841] = 352, - [1842] = 113, - [1843] = 1843, - [1844] = 335, - [1845] = 733, - [1846] = 442, - [1847] = 695, - [1848] = 490, - [1849] = 767, - [1850] = 345, - [1851] = 492, - [1852] = 1852, - [1853] = 340, - [1854] = 341, - [1855] = 1855, - [1856] = 1856, - [1857] = 1832, - [1858] = 92, - [1859] = 729, - [1860] = 93, - [1861] = 470, - [1862] = 352, - [1863] = 497, - [1864] = 475, - [1865] = 349, - [1866] = 339, - [1867] = 444, - [1868] = 351, - [1869] = 346, - [1870] = 510, - [1871] = 344, - [1872] = 697, - [1873] = 1474, - [1874] = 728, - [1875] = 732, - [1876] = 1855, - [1877] = 373, - [1878] = 766, - [1879] = 511, - [1880] = 1856, - [1881] = 341, - [1882] = 339, + [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] = 1796, + [1840] = 1795, + [1841] = 1834, + [1842] = 453, + [1843] = 1834, + [1844] = 1794, + [1845] = 1834, + [1846] = 1846, + [1847] = 1838, + [1848] = 1796, + [1849] = 1804, + [1850] = 1794, + [1851] = 1795, + [1852] = 1846, + [1853] = 1796, + [1854] = 1804, + [1855] = 482, + [1856] = 526, + [1857] = 1857, + [1858] = 1858, + [1859] = 1859, + [1860] = 528, + [1861] = 1861, + [1862] = 497, + [1863] = 1863, + [1864] = 510, + [1865] = 339, + [1866] = 360, + [1867] = 334, + [1868] = 367, + [1869] = 488, + [1870] = 464, + [1871] = 107, + [1872] = 108, + [1873] = 109, + [1874] = 373, + [1875] = 348, + [1876] = 1876, + [1877] = 769, + [1878] = 488, + [1879] = 753, + [1880] = 483, + [1881] = 1472, + [1882] = 1861, [1883] = 1883, - [1884] = 345, - [1885] = 373, - [1886] = 442, - [1887] = 479, - [1888] = 455, - [1889] = 487, - [1890] = 340, - [1891] = 766, - [1892] = 333, - [1893] = 1883, - [1894] = 93, - [1895] = 475, - [1896] = 346, - [1897] = 697, - [1898] = 462, - [1899] = 344, - [1900] = 1493, - [1901] = 470, - [1902] = 489, - [1903] = 728, - [1904] = 767, - [1905] = 92, - [1906] = 334, - [1907] = 732, - [1908] = 733, - [1909] = 695, - [1910] = 96, - [1911] = 444, - [1912] = 484, - [1913] = 495, - [1914] = 729, - [1915] = 480, - [1916] = 101, - [1917] = 698, - [1918] = 919, - [1919] = 925, - [1920] = 1920, - [1921] = 898, - [1922] = 935, - [1923] = 1923, - [1924] = 1924, - [1925] = 918, - [1926] = 922, - [1927] = 113, - [1928] = 106, - [1929] = 104, - [1930] = 1930, - [1931] = 1931, - [1932] = 490, - [1933] = 1933, - [1934] = 492, - [1935] = 497, - [1936] = 343, - [1937] = 342, - [1938] = 1938, - [1939] = 344, - [1940] = 345, - [1941] = 961, - [1942] = 339, - [1943] = 340, - [1944] = 341, - [1945] = 101, - [1946] = 890, + [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] = 1948, - [1949] = 455, - [1950] = 462, - [1951] = 96, - [1952] = 1948, - [1953] = 1953, - [1954] = 923, - [1955] = 707, - [1956] = 1494, - [1957] = 1957, - [1958] = 702, - [1959] = 948, - [1960] = 686, - [1961] = 703, - [1962] = 672, - [1963] = 688, - [1964] = 689, - [1965] = 690, - [1966] = 346, - [1967] = 1261, - [1968] = 1968, - [1969] = 335, - [1970] = 1970, - [1971] = 368, - [1972] = 1972, - [1973] = 1474, - [1974] = 1974, - [1975] = 507, - [1976] = 935, + [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] = 1977, - [1978] = 1978, - [1979] = 948, - [1980] = 923, - [1981] = 961, - [1982] = 919, - [1983] = 925, - [1984] = 890, - [1985] = 898, - [1986] = 918, - [1987] = 922, - [1988] = 1988, - [1989] = 113, - [1990] = 1990, - [1991] = 490, - [1992] = 492, - [1993] = 497, - [1994] = 1994, - [1995] = 106, - [1996] = 1996, - [1997] = 1997, - [1998] = 1998, - [1999] = 334, - [2000] = 2000, - [2001] = 2001, - [2002] = 2002, - [2003] = 1262, - [2004] = 1205, - [2005] = 2005, - [2006] = 1207, - [2007] = 1676, - [2008] = 1211, - [2009] = 1213, - [2010] = 1215, - [2011] = 1218, - [2012] = 1221, - [2013] = 1225, - [2014] = 1230, - [2015] = 1233, - [2016] = 1235, - [2017] = 104, - [2018] = 1249, - [2019] = 1251, - [2020] = 1254, - [2021] = 1256, - [2022] = 1161, - [2023] = 1165, - [2024] = 1181, - [2025] = 1195, - [2026] = 1236, - [2027] = 1250, - [2028] = 1140, - [2029] = 1150, - [2030] = 1187, - [2031] = 1193, - [2032] = 1204, - [2033] = 1253, + [1978] = 945, + [1979] = 888, + [1980] = 510, + [1981] = 1981, + [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] = 1142, - [2036] = 1148, - [2037] = 1154, - [2038] = 1159, - [2039] = 1163, - [2040] = 1169, - [2041] = 1177, - [2042] = 1183, - [2043] = 1191, - [2044] = 1200, - [2045] = 1209, - [2046] = 1219, - [2047] = 1243, - [2048] = 1135, - [2049] = 1141, - [2050] = 1143, - [2051] = 1152, - [2052] = 1164, - [2053] = 1167, - [2054] = 1171, - [2055] = 1175, - [2056] = 1179, - [2057] = 1182, - [2058] = 1185, - [2059] = 1189, - [2060] = 1194, - [2061] = 1198, - [2062] = 1201, - [2063] = 1206, - [2064] = 1212, - [2065] = 1216, - [2066] = 1220, - [2067] = 1223, - [2068] = 1226, - [2069] = 1229, - [2070] = 1234, - [2071] = 1239, - [2072] = 1242, - [2073] = 1244, - [2074] = 1252, - [2075] = 1260, - [2076] = 1202, - [2077] = 1134, - [2078] = 1136, - [2079] = 1138, - [2080] = 1145, - [2081] = 1147, - [2082] = 1149, - [2083] = 1151, - [2084] = 1153, - [2085] = 1156, - [2086] = 1160, - [2087] = 1162, - [2088] = 1166, - [2089] = 1168, - [2090] = 1170, - [2091] = 1172, - [2092] = 1174, - [2093] = 1176, - [2094] = 1178, - [2095] = 1180, - [2096] = 1184, - [2097] = 1186, - [2098] = 1188, - [2099] = 1190, - [2100] = 1988, - [2101] = 1998, - [2102] = 1998, - [2103] = 2103, - [2104] = 1474, - [2105] = 1998, - [2106] = 1998, - [2107] = 1015, - [2108] = 1998, - [2109] = 2109, - [2110] = 1228, - [2111] = 890, - [2112] = 1015, - [2113] = 1015, - [2114] = 2114, - [2115] = 1493, - [2116] = 1494, - [2117] = 1493, - [2118] = 2118, + [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] = 1494, - [2121] = 680, - [2122] = 351, - [2123] = 898, - [2124] = 352, - [2125] = 935, - [2126] = 349, - [2127] = 696, - [2128] = 2114, - [2129] = 2119, - [2130] = 2119, - [2131] = 918, - [2132] = 922, - [2133] = 2133, - [2134] = 2114, - [2135] = 679, - [2136] = 888, - [2137] = 936, - [2138] = 345, - [2139] = 2139, - [2140] = 2140, - [2141] = 1676, - [2142] = 695, - [2143] = 346, - [2144] = 937, - [2145] = 939, - [2146] = 1173, - [2147] = 1192, - [2148] = 1214, - [2149] = 1222, - [2150] = 1224, - [2151] = 1227, - [2152] = 1231, - [2153] = 940, - [2154] = 1241, - [2155] = 1255, - [2156] = 1203, - [2157] = 1146, - [2158] = 1155, - [2159] = 2139, - [2160] = 373, - [2161] = 486, - [2162] = 933, - [2163] = 339, - [2164] = 340, - [2165] = 1173, - [2166] = 1192, - [2167] = 1214, - [2168] = 1222, - [2169] = 1224, - [2170] = 1227, - [2171] = 1231, - [2172] = 1241, - [2173] = 1255, - [2174] = 1203, - [2175] = 1146, - [2176] = 1155, - [2177] = 341, - [2178] = 2139, - [2179] = 2179, - [2180] = 697, - [2181] = 793, - [2182] = 2179, - [2183] = 1676, - [2184] = 784, - [2185] = 2179, - [2186] = 2186, - [2187] = 2187, - [2188] = 2188, - [2189] = 2139, - [2190] = 767, - [2191] = 938, - [2192] = 903, - [2193] = 2193, - [2194] = 700, - [2195] = 2139, - [2196] = 930, - [2197] = 895, - [2198] = 917, - [2199] = 2139, - [2200] = 2139, - [2201] = 728, - [2202] = 729, - [2203] = 732, - [2204] = 869, - [2205] = 901, - [2206] = 906, - [2207] = 733, - [2208] = 507, - [2209] = 766, - [2210] = 942, - [2211] = 476, - [2212] = 344, - [2213] = 2213, - [2214] = 2213, - [2215] = 2213, - [2216] = 2213, - [2217] = 2213, - [2218] = 696, - [2219] = 2213, - [2220] = 2220, - [2221] = 2221, - [2222] = 2222, - [2223] = 2223, - [2224] = 2220, - [2225] = 1474, - [2226] = 507, - [2227] = 2227, - [2228] = 2228, + [2120] = 107, + [2121] = 2013, + [2122] = 2122, + [2123] = 1472, + [2124] = 109, + [2125] = 334, + [2126] = 2126, + [2127] = 108, + [2128] = 373, + [2129] = 1061, + [2130] = 2130, + [2131] = 2131, + [2132] = 2132, + [2133] = 2013, + [2134] = 2134, + [2135] = 1521, + [2136] = 2013, + [2137] = 2013, + [2138] = 2013, + [2139] = 2013, + [2140] = 942, + [2141] = 1201, + [2142] = 962, + [2143] = 1061, + [2144] = 942, + [2145] = 2145, + [2146] = 2146, + [2147] = 2147, + [2148] = 1510, + [2149] = 1510, + [2150] = 681, + [2151] = 339, + [2152] = 696, + [2153] = 1516, + [2154] = 965, + [2155] = 966, + [2156] = 888, + [2157] = 2157, + [2158] = 360, + [2159] = 1516, + [2160] = 2157, + [2161] = 2145, + [2162] = 1061, + [2163] = 2157, + [2164] = 2145, + [2165] = 367, + [2166] = 906, + [2167] = 940, + [2168] = 2168, + [2169] = 921, + [2170] = 739, + [2171] = 905, + [2172] = 749, + [2173] = 750, + [2174] = 768, + [2175] = 769, + [2176] = 2176, + [2177] = 752, + [2178] = 346, + [2179] = 1260, + [2180] = 1265, + [2181] = 1140, + [2182] = 1146, + [2183] = 1149, + [2184] = 1150, + [2185] = 1152, + [2186] = 1153, + [2187] = 1154, + [2188] = 1155, + [2189] = 1156, + [2190] = 1157, + [2191] = 753, + [2192] = 1521, + [2193] = 527, + [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] = 345, + [2231] = 2194, [2232] = 2232, - [2233] = 346, - [2234] = 2234, - [2235] = 1988, - [2236] = 2236, - [2237] = 696, - [2238] = 344, - [2239] = 341, - [2240] = 1493, - [2241] = 2241, - [2242] = 1494, - [2243] = 1474, - [2244] = 339, - [2245] = 340, - [2246] = 2246, + [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] = 1493, - [2249] = 1676, - [2250] = 2250, - [2251] = 1494, - [2252] = 2252, - [2253] = 2253, - [2254] = 1676, + [2248] = 2248, + [2249] = 2247, + [2250] = 2247, + [2251] = 2247, + [2252] = 2247, + [2253] = 2247, + [2254] = 2254, [2255] = 2255, [2256] = 2256, - [2257] = 373, - [2258] = 2258, - [2259] = 2259, - [2260] = 2253, - [2261] = 2255, + [2257] = 2257, + [2258] = 2248, + [2259] = 527, + [2260] = 1472, + [2261] = 2261, [2262] = 2262, - [2263] = 333, + [2263] = 2263, [2264] = 2264, - [2265] = 386, - [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] = 334, - [2274] = 2274, - [2275] = 2275, - [2276] = 2276, - [2277] = 343, - [2278] = 342, - [2279] = 2279, - [2280] = 407, - [2281] = 408, + [2273] = 696, + [2274] = 349, + [2275] = 350, + [2276] = 1472, + [2277] = 351, + [2278] = 348, + [2279] = 1521, + [2280] = 2280, + [2281] = 1516, [2282] = 2282, [2283] = 2283, - [2284] = 2284, + [2284] = 1510, [2285] = 2285, [2286] = 2286, - [2287] = 2287, + [2287] = 1521, [2288] = 2288, [2289] = 2289, [2290] = 2290, [2291] = 2291, - [2292] = 2291, - [2293] = 2293, - [2294] = 2294, + [2292] = 2286, + [2293] = 372, + [2294] = 2288, [2295] = 2295, - [2296] = 400, - [2297] = 368, - [2298] = 389, - [2299] = 386, - [2300] = 409, + [2296] = 336, + [2297] = 2297, + [2298] = 2297, + [2299] = 2299, + [2300] = 2300, [2301] = 2301, - [2302] = 405, - [2303] = 386, - [2304] = 93, - [2305] = 92, + [2302] = 333, + [2303] = 398, + [2304] = 2304, + [2305] = 2305, [2306] = 2306, [2307] = 2307, [2308] = 2308, [2309] = 2309, [2310] = 2310, - [2311] = 2301, - [2312] = 2306, - [2313] = 2307, - [2314] = 2308, - [2315] = 2309, - [2316] = 2310, - [2317] = 400, - [2318] = 409, - [2319] = 389, - [2320] = 412, - [2321] = 402, - [2322] = 404, - [2323] = 93, - [2324] = 400, - [2325] = 451, - [2326] = 409, - [2327] = 101, - [2328] = 92, - [2329] = 96, - [2330] = 389, - [2331] = 386, - [2332] = 412, - [2333] = 402, - [2334] = 404, - [2335] = 405, - [2336] = 389, - [2337] = 339, - [2338] = 340, - [2339] = 341, - [2340] = 96, - [2341] = 451, - [2342] = 444, - [2343] = 412, - [2344] = 402, - [2345] = 404, - [2346] = 405, - [2347] = 333, - [2348] = 400, - [2349] = 409, - [2350] = 93, - [2351] = 92, - [2352] = 442, - [2353] = 106, - [2354] = 344, - [2355] = 101, - [2356] = 345, - [2357] = 346, - [2358] = 113, - [2359] = 104, - [2360] = 487, - [2361] = 484, - [2362] = 96, - [2363] = 2363, - [2364] = 462, - [2365] = 106, - [2366] = 104, - [2367] = 444, - [2368] = 2368, - [2369] = 2369, - [2370] = 1474, - [2371] = 386, - [2372] = 408, - [2373] = 334, - [2374] = 442, - [2375] = 113, - [2376] = 333, - [2377] = 101, - [2378] = 405, - [2379] = 402, - [2380] = 412, - [2381] = 407, - [2382] = 93, - [2383] = 404, - [2384] = 92, - [2385] = 2385, - [2386] = 451, - [2387] = 2387, - [2388] = 455, - [2389] = 106, - [2390] = 409, - [2391] = 497, - [2392] = 334, - [2393] = 462, - [2394] = 442, - [2395] = 368, - [2396] = 510, - [2397] = 2397, - [2398] = 335, - [2399] = 333, - [2400] = 490, - [2401] = 113, - [2402] = 408, - [2403] = 2403, - [2404] = 444, - [2405] = 1494, - [2406] = 511, - [2407] = 101, - [2408] = 492, - [2409] = 400, - [2410] = 2410, - [2411] = 343, - [2412] = 495, - [2413] = 480, - [2414] = 451, - [2415] = 489, - [2416] = 96, - [2417] = 479, - [2418] = 104, - [2419] = 1493, - [2420] = 93, - [2421] = 342, - [2422] = 92, - [2423] = 455, - [2424] = 389, - [2425] = 407, - [2426] = 1676, - [2427] = 113, - [2428] = 412, - [2429] = 106, - [2430] = 1843, - [2431] = 104, - [2432] = 442, - [2433] = 490, - [2434] = 444, - [2435] = 346, - [2436] = 510, - [2437] = 339, - [2438] = 333, - [2439] = 340, - [2440] = 341, - [2441] = 492, - [2442] = 442, - [2443] = 343, - [2444] = 342, - [2445] = 497, - [2446] = 444, - [2447] = 101, - [2448] = 334, - [2449] = 455, - [2450] = 402, - [2451] = 368, - [2452] = 404, - [2453] = 405, - [2454] = 462, - [2455] = 344, - [2456] = 407, - [2457] = 96, - [2458] = 349, - [2459] = 2459, - [2460] = 345, - [2461] = 351, - [2462] = 352, - [2463] = 408, - [2464] = 511, - [2465] = 2465, - [2466] = 113, - [2467] = 339, - [2468] = 480, - [2469] = 444, - [2470] = 340, - [2471] = 341, - [2472] = 2472, - [2473] = 343, - [2474] = 346, - [2475] = 1843, - [2476] = 490, - [2477] = 408, - [2478] = 342, - [2479] = 442, - [2480] = 462, - [2481] = 492, - [2482] = 497, - [2483] = 2483, - [2484] = 489, - [2485] = 2472, - [2486] = 368, - [2487] = 487, - [2488] = 2488, - [2489] = 455, - [2490] = 479, - [2491] = 106, - [2492] = 442, - [2493] = 495, - [2494] = 333, - [2495] = 407, - [2496] = 104, - [2497] = 2472, - [2498] = 511, - [2499] = 2472, - [2500] = 484, - [2501] = 344, - [2502] = 444, - [2503] = 510, - [2504] = 334, - [2505] = 455, + [2311] = 2311, + [2312] = 2312, + [2313] = 2313, + [2314] = 2314, + [2315] = 2315, + [2316] = 2316, + [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] = 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] = 99, + [2359] = 93, + [2360] = 94, + [2361] = 414, + [2362] = 400, + [2363] = 411, + [2364] = 398, + [2365] = 410, + [2366] = 408, + [2367] = 412, + [2368] = 407, + [2369] = 93, + [2370] = 109, + [2371] = 411, + [2372] = 94, + [2373] = 410, + [2374] = 414, + [2375] = 438, + [2376] = 453, + [2377] = 333, + [2378] = 99, + [2379] = 346, + [2380] = 408, + [2381] = 412, + [2382] = 407, + [2383] = 347, + [2384] = 495, + [2385] = 348, + [2386] = 503, + [2387] = 441, + [2388] = 336, + [2389] = 400, + [2390] = 349, + [2391] = 336, + [2392] = 107, + [2393] = 350, + [2394] = 351, + [2395] = 92, + [2396] = 108, + [2397] = 333, + [2398] = 464, + [2399] = 404, + [2400] = 2400, + [2401] = 1472, + [2402] = 398, + [2403] = 99, + [2404] = 2404, + [2405] = 107, + [2406] = 453, + [2407] = 408, + [2408] = 412, + [2409] = 438, + [2410] = 441, + [2411] = 93, + [2412] = 2412, + [2413] = 482, + [2414] = 342, + [2415] = 402, + [2416] = 108, + [2417] = 2417, + [2418] = 2418, + [2419] = 411, + [2420] = 94, + [2421] = 92, + [2422] = 109, + [2423] = 407, + [2424] = 343, + [2425] = 453, + [2426] = 93, + [2427] = 2427, + [2428] = 92, + [2429] = 94, + [2430] = 404, + [2431] = 2431, + [2432] = 497, + [2433] = 99, + [2434] = 510, + [2435] = 1510, + [2436] = 488, + [2437] = 333, + [2438] = 1516, + [2439] = 402, + [2440] = 373, + [2441] = 107, + [2442] = 464, + [2443] = 526, + [2444] = 2444, + [2445] = 336, + [2446] = 528, + [2447] = 482, + [2448] = 109, + [2449] = 108, + [2450] = 414, + [2451] = 400, + [2452] = 410, + [2453] = 505, + [2454] = 493, + [2455] = 334, + [2456] = 485, + [2457] = 509, + [2458] = 373, + [2459] = 342, + [2460] = 343, + [2461] = 438, + [2462] = 441, + [2463] = 488, + [2464] = 336, + [2465] = 528, + [2466] = 342, + [2467] = 453, + [2468] = 404, + [2469] = 343, + [2470] = 349, + [2471] = 350, + [2472] = 351, + [2473] = 94, + [2474] = 99, + [2475] = 441, + [2476] = 108, + [2477] = 497, + [2478] = 408, + [2479] = 526, + [2480] = 412, + [2481] = 407, + [2482] = 510, + [2483] = 346, + [2484] = 347, + [2485] = 411, + [2486] = 109, + [2487] = 402, + [2488] = 333, + [2489] = 1521, + [2490] = 464, + [2491] = 107, + [2492] = 2492, + [2493] = 1863, + [2494] = 482, + [2495] = 441, + [2496] = 453, + [2497] = 367, + [2498] = 348, + [2499] = 339, + [2500] = 360, + [2501] = 687, + [2502] = 333, + [2503] = 2503, + [2504] = 464, + [2505] = 441, [2506] = 2506, - [2507] = 2507, - [2508] = 334, - [2509] = 335, - [2510] = 462, - [2511] = 702, - [2512] = 698, - [2513] = 688, - [2514] = 689, - [2515] = 690, - [2516] = 345, - [2517] = 2507, - [2518] = 511, - [2519] = 2519, - [2520] = 2520, - [2521] = 2521, - [2522] = 490, - [2523] = 344, - [2524] = 2524, - [2525] = 497, - [2526] = 368, - [2527] = 489, - [2528] = 923, - [2529] = 343, + [2507] = 503, + [2508] = 404, + [2509] = 2509, + [2510] = 441, + [2511] = 2511, + [2512] = 2512, + [2513] = 348, + [2514] = 109, + [2515] = 336, + [2516] = 342, + [2517] = 2517, + [2518] = 2518, + [2519] = 334, + [2520] = 505, + [2521] = 453, + [2522] = 485, + [2523] = 108, + [2524] = 373, + [2525] = 495, + [2526] = 493, + [2527] = 402, + [2528] = 1863, + [2529] = 482, [2530] = 2530, - [2531] = 497, - [2532] = 961, - [2533] = 342, - [2534] = 442, - [2535] = 919, - [2536] = 925, - [2537] = 455, - [2538] = 334, + [2531] = 350, + [2532] = 351, + [2533] = 2533, + [2534] = 333, + [2535] = 2530, + [2536] = 2536, + [2537] = 497, + [2538] = 509, [2539] = 2539, - [2540] = 487, - [2541] = 346, - [2542] = 444, - [2543] = 490, - [2544] = 455, - [2545] = 352, - [2546] = 479, - [2547] = 339, - [2548] = 345, - [2549] = 349, + [2540] = 528, + [2541] = 343, + [2542] = 510, + [2543] = 488, + [2544] = 2544, + [2545] = 464, + [2546] = 453, + [2547] = 2547, + [2548] = 347, + [2549] = 713, [2550] = 2550, - [2551] = 340, - [2552] = 341, - [2553] = 492, - [2554] = 898, - [2555] = 480, - [2556] = 2550, - [2557] = 948, - [2558] = 510, - [2559] = 492, - [2560] = 335, - [2561] = 484, - [2562] = 462, - [2563] = 2563, + [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] = 2566, - [2567] = 495, - [2568] = 351, - [2569] = 702, - [2570] = 890, - [2571] = 2571, - [2572] = 341, - [2573] = 343, - [2574] = 342, - [2575] = 333, - [2576] = 344, - [2577] = 2506, - [2578] = 918, - [2579] = 345, - [2580] = 346, - [2581] = 2581, - [2582] = 339, - [2583] = 922, - [2584] = 340, - [2585] = 698, - [2586] = 688, - [2587] = 689, - [2588] = 690, - [2589] = 935, - [2590] = 2590, - [2591] = 2465, - [2592] = 2592, - [2593] = 462, - [2594] = 688, - [2595] = 2595, + [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] = 486, - [2598] = 475, + [2597] = 336, + [2598] = 485, [2599] = 2599, - [2600] = 510, - [2601] = 486, - [2602] = 511, - [2603] = 352, - [2604] = 2566, - [2605] = 2571, - [2606] = 2590, - [2607] = 2607, - [2608] = 492, - [2609] = 497, - [2610] = 480, - [2611] = 349, - [2612] = 487, - [2613] = 479, - [2614] = 484, - [2615] = 455, - [2616] = 890, - [2617] = 368, - [2618] = 335, - [2619] = 462, - [2620] = 1957, - [2621] = 495, - [2622] = 490, - [2623] = 343, - [2624] = 490, - [2625] = 351, - [2626] = 470, - [2627] = 492, - [2628] = 935, - [2629] = 497, - [2630] = 476, - [2631] = 476, - [2632] = 2632, - [2633] = 2633, - [2634] = 948, - [2635] = 2635, + [2600] = 509, + [2601] = 482, + [2602] = 351, + [2603] = 367, + [2604] = 482, + [2605] = 713, + [2606] = 2596, + [2607] = 888, + [2608] = 342, + [2609] = 343, + [2610] = 965, + [2611] = 966, + [2612] = 485, + [2613] = 942, + [2614] = 350, + [2615] = 351, + [2616] = 2616, + [2617] = 2617, + [2618] = 2618, + [2619] = 510, + [2620] = 2620, + [2621] = 2621, + [2622] = 342, + [2623] = 528, + [2624] = 347, + [2625] = 348, + [2626] = 343, + [2627] = 453, + [2628] = 373, + [2629] = 700, + [2630] = 505, + [2631] = 686, + [2632] = 687, + [2633] = 688, + [2634] = 945, + [2635] = 497, [2636] = 2636, - [2637] = 2563, - [2638] = 373, - [2639] = 2564, - [2640] = 2565, - [2641] = 702, - [2642] = 698, - [2643] = 689, - [2644] = 690, - [2645] = 442, - [2646] = 923, - [2647] = 961, - [2648] = 919, - [2649] = 342, - [2650] = 925, - [2651] = 898, - [2652] = 1015, - [2653] = 444, - [2654] = 918, - [2655] = 922, - [2656] = 2519, - [2657] = 2520, - [2658] = 489, - [2659] = 2659, + [2637] = 505, + [2638] = 2638, + [2639] = 2503, + [2640] = 509, + [2641] = 956, + [2642] = 334, + [2643] = 2643, + [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] = 480, - [2671] = 487, - [2672] = 479, - [2673] = 484, - [2674] = 495, - [2675] = 489, - [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] = 2681, - [2682] = 368, - [2683] = 2683, - [2684] = 890, + [2681] = 495, + [2682] = 2587, + [2683] = 505, + [2684] = 2684, [2685] = 2685, - [2686] = 2686, - [2687] = 2687, - [2688] = 898, - [2689] = 2689, - [2690] = 2690, - [2691] = 2691, - [2692] = 2692, - [2693] = 2693, - [2694] = 2694, - [2695] = 2695, - [2696] = 2696, - [2697] = 2697, - [2698] = 2698, - [2699] = 2699, - [2700] = 2700, - [2701] = 2701, - [2702] = 2702, - [2703] = 2703, - [2704] = 2704, - [2705] = 2705, - [2706] = 2706, + [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] = 2708, + [2708] = 498, [2709] = 2709, - [2710] = 2710, - [2711] = 2711, - [2712] = 702, + [2710] = 342, + [2711] = 510, + [2712] = 945, [2713] = 2713, - [2714] = 2714, + [2714] = 464, [2715] = 2715, [2716] = 2716, - [2717] = 698, - [2718] = 2718, - [2719] = 1015, + [2717] = 2717, + [2718] = 498, + [2719] = 373, [2720] = 2720, [2721] = 2721, - [2722] = 2722, - [2723] = 2723, + [2722] = 491, + [2723] = 453, [2724] = 2724, - [2725] = 349, - [2726] = 688, - [2727] = 689, - [2728] = 690, + [2725] = 2725, + [2726] = 2726, + [2727] = 2727, + [2728] = 2728, [2729] = 2729, [2730] = 2730, [2731] = 2731, [2732] = 2732, [2733] = 2733, [2734] = 2734, - [2735] = 712, - [2736] = 693, + [2735] = 2735, + [2736] = 2736, [2737] = 2737, - [2738] = 694, + [2738] = 2738, [2739] = 2739, [2740] = 2740, - [2741] = 709, + [2741] = 2741, [2742] = 2742, - [2743] = 490, - [2744] = 462, + [2743] = 2743, + [2744] = 2744, [2745] = 2745, [2746] = 2746, [2747] = 2747, [2748] = 2748, - [2749] = 351, + [2749] = 2749, [2750] = 2750, [2751] = 2751, - [2752] = 492, - [2753] = 352, - [2754] = 497, + [2752] = 2752, + [2753] = 2753, + [2754] = 2754, [2755] = 2755, [2756] = 2756, [2757] = 2757, [2758] = 2758, - [2759] = 2759, + [2759] = 441, [2760] = 2760, - [2761] = 2761, + [2761] = 441, [2762] = 2762, [2763] = 2763, [2764] = 2764, [2765] = 2765, [2766] = 2766, - [2767] = 935, + [2767] = 2767, [2768] = 2768, [2769] = 2769, [2770] = 2770, - [2771] = 2635, + [2771] = 2771, [2772] = 2772, [2773] = 2773, [2774] = 2774, [2775] = 2775, - [2776] = 2636, - [2777] = 918, - [2778] = 1957, - [2779] = 922, + [2776] = 2776, + [2777] = 2777, + [2778] = 2778, + [2779] = 2779, [2780] = 2780, - [2781] = 455, + [2781] = 2781, [2782] = 2782, - [2783] = 2718, - [2784] = 2784, + [2783] = 2783, + [2784] = 713, [2785] = 2785, [2786] = 2786, [2787] = 2787, - [2788] = 919, + [2788] = 2788, [2789] = 2789, - [2790] = 373, + [2790] = 2790, [2791] = 2791, [2792] = 2792, [2793] = 2793, - [2794] = 2794, + [2794] = 942, [2795] = 2795, - [2796] = 2796, + [2796] = 464, [2797] = 2797, [2798] = 2798, - [2799] = 2799, - [2800] = 442, - [2801] = 2801, + [2799] = 700, + [2800] = 2800, + [2801] = 945, [2802] = 2802, - [2803] = 475, - [2804] = 2804, - [2805] = 2805, - [2806] = 1990, - [2807] = 2807, + [2803] = 2803, + [2804] = 1962, + [2805] = 956, + [2806] = 958, + [2807] = 482, [2808] = 2808, - [2809] = 476, - [2810] = 2810, + [2809] = 960, + [2810] = 961, [2811] = 2811, - [2812] = 444, - [2813] = 948, - [2814] = 2814, - [2815] = 444, - [2816] = 486, - [2817] = 470, - [2818] = 2818, - [2819] = 923, - [2820] = 2820, - [2821] = 925, - [2822] = 2822, + [2812] = 2812, + [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] = 2718, + [2827] = 2827, [2828] = 2828, [2829] = 2829, - [2830] = 335, - [2831] = 2831, - [2832] = 2832, - [2833] = 961, - [2834] = 2834, - [2835] = 2835, - [2836] = 2836, + [2830] = 2830, + [2831] = 493, + [2832] = 495, + [2833] = 509, + [2834] = 503, + [2835] = 505, + [2836] = 485, [2837] = 2837, [2838] = 2838, [2839] = 2839, [2840] = 2840, [2841] = 2841, - [2842] = 2842, - [2843] = 352, - [2844] = 373, - [2845] = 712, - [2846] = 693, + [2842] = 722, + [2843] = 2843, + [2844] = 2844, + [2845] = 717, + [2846] = 2846, [2847] = 2847, [2848] = 2848, - [2849] = 2763, + [2849] = 2849, [2850] = 2850, [2851] = 2851, [2852] = 2852, [2853] = 2853, - [2854] = 2659, - [2855] = 697, - [2856] = 2823, - [2857] = 386, - [2858] = 680, - [2859] = 901, + [2854] = 691, + [2855] = 721, + [2856] = 2587, + [2857] = 2857, + [2858] = 2858, + [2859] = 2859, [2860] = 2860, - [2861] = 2852, + [2861] = 2861, [2862] = 2862, - [2863] = 2863, - [2864] = 351, - [2865] = 702, - [2866] = 940, - [2867] = 2524, - [2868] = 688, - [2869] = 689, - [2870] = 898, - [2871] = 935, - [2872] = 1015, - [2873] = 690, - [2874] = 698, - [2875] = 2875, - [2876] = 2876, - [2877] = 1990, - [2878] = 948, - [2879] = 918, - [2880] = 922, - [2881] = 938, - [2882] = 2665, - [2883] = 470, - [2884] = 2676, - [2885] = 2680, - [2886] = 2686, - [2887] = 2687, + [2863] = 471, + [2864] = 2713, + [2865] = 2865, + [2866] = 2866, + [2867] = 2867, + [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] = 2888, - [2889] = 2690, - [2890] = 2692, - [2891] = 2693, - [2892] = 2694, - [2893] = 2696, - [2894] = 2697, - [2895] = 2698, - [2896] = 2699, - [2897] = 2701, - [2898] = 2703, - [2899] = 2539, - [2900] = 923, - [2901] = 961, - [2902] = 2706, - [2903] = 2707, - [2904] = 919, - [2905] = 2798, - [2906] = 925, - [2907] = 2530, - [2908] = 2581, - [2909] = 2592, - [2910] = 2910, - [2911] = 490, - [2912] = 444, - [2913] = 455, - [2914] = 2521, - [2915] = 2539, - [2916] = 2916, - [2917] = 462, - [2918] = 2524, + [2889] = 2889, + [2890] = 2890, + [2891] = 2891, + [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] = 2717, + [2907] = 2858, + [2908] = 2908, + [2909] = 2900, + [2910] = 956, + [2911] = 2911, + [2912] = 2912, + [2913] = 695, + [2914] = 939, + [2915] = 471, + [2916] = 958, + [2917] = 2533, + [2918] = 497, [2919] = 2919, - [2920] = 2530, - [2921] = 2581, - [2922] = 890, - [2923] = 2748, - [2924] = 349, - [2925] = 2851, - [2926] = 2592, - [2927] = 2927, - [2928] = 2928, - [2929] = 930, - [2930] = 475, - [2931] = 2683, - [2932] = 680, + [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] = 492, - [2935] = 497, - [2936] = 2685, - [2937] = 2847, - [2938] = 2848, - [2939] = 695, - [2940] = 694, - [2941] = 709, - [2942] = 2942, - [2943] = 2718, + [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] = 2521, - [2947] = 2704, - [2948] = 890, - [2949] = 780, - [2950] = 2950, - [2951] = 2951, - [2952] = 2952, - [2953] = 784, - [2954] = 936, - [2955] = 937, - [2956] = 939, - [2957] = 2957, + [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] = 2850, - [2960] = 2960, - [2961] = 1015, - [2962] = 888, - [2963] = 793, - [2964] = 895, - [2965] = 2592, - [2966] = 869, - [2967] = 933, - [2968] = 2968, - [2969] = 917, - [2970] = 2970, - [2971] = 2971, + [2959] = 2506, + [2960] = 441, + [2961] = 2509, + [2962] = 2511, + [2963] = 2512, + [2964] = 2896, + [2965] = 2830, + [2966] = 2966, + [2967] = 2881, + [2968] = 2826, + [2969] = 367, + [2970] = 2827, + [2971] = 398, [2972] = 2972, - [2973] = 2973, - [2974] = 732, - [2975] = 935, - [2976] = 733, - [2977] = 2530, - [2978] = 389, - [2979] = 2979, - [2980] = 386, - [2981] = 787, - [2982] = 789, - [2983] = 784, - [2984] = 2928, - [2985] = 2985, - [2986] = 936, - [2987] = 937, - [2988] = 939, - [2989] = 940, - [2990] = 2990, - [2991] = 2991, - [2992] = 717, - [2993] = 2860, - [2994] = 725, - [2995] = 718, - [2996] = 793, - [2997] = 917, - [2998] = 726, - [2999] = 923, - [3000] = 961, - [3001] = 919, - [3002] = 386, - [3003] = 948, + [2973] = 2886, + [2974] = 2903, + [2975] = 2975, + [2976] = 2976, + [2977] = 482, + [2978] = 2506, + [2979] = 2889, + [2980] = 2829, + [2981] = 339, + [2982] = 2982, + [2983] = 2902, + [2984] = 2547, + [2985] = 2770, + [2986] = 2986, + [2987] = 2509, + [2988] = 2857, + [2989] = 2896, + [2990] = 906, + [2991] = 2897, + [2992] = 2899, + [2993] = 2900, + [2994] = 691, + [2995] = 721, + [2996] = 2539, + [2997] = 2771, + [2998] = 2773, + [2999] = 2828, + [3000] = 681, + [3001] = 2976, + [3002] = 2982, + [3003] = 2824, [3004] = 3004, - [3005] = 898, - [3006] = 3006, - [3007] = 3007, - [3008] = 938, + [3005] = 722, + [3006] = 717, + [3007] = 713, + [3008] = 2774, [3009] = 3009, - [3010] = 3010, - [3011] = 3011, - [3012] = 400, - [3013] = 790, - [3014] = 386, - [3015] = 3015, - [3016] = 3016, - [3017] = 3017, - [3018] = 918, - [3019] = 922, - [3020] = 766, - [3021] = 3021, - [3022] = 3022, - [3023] = 2524, - [3024] = 680, + [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] = 767, - [3027] = 695, - [3028] = 2916, - [3029] = 2521, - [3030] = 2826, - [3031] = 3031, - [3032] = 679, - [3033] = 2919, - [3034] = 2140, - [3035] = 697, - [3036] = 2539, - [3037] = 3037, - [3038] = 906, - [3039] = 2828, - [3040] = 3040, - [3041] = 409, - [3042] = 2863, - [3043] = 490, - [3044] = 3044, - [3045] = 3045, - [3046] = 2187, - [3047] = 2188, - [3048] = 2193, - [3049] = 942, - [3050] = 3050, - [3051] = 492, - [3052] = 3052, - [3053] = 497, - [3054] = 869, - [3055] = 3055, - [3056] = 933, - [3057] = 3057, - [3058] = 903, - [3059] = 3059, - [3060] = 2581, - [3061] = 700, - [3062] = 884, - [3063] = 2944, - [3064] = 3064, - [3065] = 3065, - [3066] = 3066, - [3067] = 679, - [3068] = 3068, - [3069] = 925, - [3070] = 888, - [3071] = 3071, - [3072] = 732, - [3073] = 903, - [3074] = 722, - [3075] = 700, - [3076] = 901, - [3077] = 906, - [3078] = 2888, - [3079] = 373, - [3080] = 766, - [3081] = 3081, - [3082] = 728, - [3083] = 729, - [3084] = 767, - [3085] = 728, - [3086] = 729, - [3087] = 942, - [3088] = 733, - [3089] = 3089, - [3090] = 2933, - [3091] = 723, - [3092] = 3092, - [3093] = 895, - [3094] = 724, - [3095] = 3095, - [3096] = 3096, - [3097] = 3097, - [3098] = 3098, - [3099] = 3099, - [3100] = 3100, - [3101] = 3101, - [3102] = 3102, - [3103] = 930, - [3104] = 3104, - [3105] = 444, - [3106] = 775, - [3107] = 776, - [3108] = 777, - [3109] = 507, - [3110] = 386, - [3111] = 906, - [3112] = 942, + [3026] = 715, + [3027] = 739, + [3028] = 2896, + [3029] = 741, + [3030] = 921, + [3031] = 2517, + [3032] = 3032, + [3033] = 932, + [3034] = 928, + [3035] = 2897, + [3036] = 527, + [3037] = 931, + [3038] = 3038, + [3039] = 414, + [3040] = 2203, + [3041] = 695, + [3042] = 3042, + [3043] = 3043, + [3044] = 2539, + [3045] = 726, + [3046] = 2932, + [3047] = 2897, + [3048] = 749, + [3049] = 750, + [3050] = 739, + [3051] = 2825, + [3052] = 752, + [3053] = 753, + [3054] = 3054, + [3055] = 932, + [3056] = 410, + [3057] = 768, + [3058] = 769, + [3059] = 2905, + [3060] = 2896, + [3061] = 2539, + [3062] = 2919, + [3063] = 906, + [3064] = 3020, + [3065] = 741, + [3066] = 2517, + [3067] = 921, + [3068] = 2511, + [3069] = 2512, + [3070] = 2229, + [3071] = 2230, + [3072] = 2232, + [3073] = 3073, + [3074] = 1061, + [3075] = 3075, + [3076] = 3076, + [3077] = 731, + [3078] = 400, + [3079] = 3079, + [3080] = 3080, + [3081] = 939, + [3082] = 3082, + [3083] = 3083, + [3084] = 949, + [3085] = 3085, + [3086] = 3086, + [3087] = 2899, + [3088] = 3088, + [3089] = 699, + [3090] = 3090, + [3091] = 946, + [3092] = 707, + [3093] = 3093, + [3094] = 749, + [3095] = 750, + [3096] = 2547, + [3097] = 3004, + [3098] = 2533, + [3099] = 2899, + [3100] = 970, + [3101] = 2547, + [3102] = 889, + [3103] = 2900, + [3104] = 441, + [3105] = 954, + [3106] = 372, + [3107] = 3107, + [3108] = 3108, + [3109] = 3109, + [3110] = 398, + [3111] = 3111, + [3112] = 3112, [3113] = 3113, - [3114] = 409, - [3115] = 888, - [3116] = 775, + [3114] = 940, + [3115] = 3115, + [3116] = 3116, [3117] = 3117, - [3118] = 776, - [3119] = 777, - [3120] = 400, - [3121] = 780, - [3122] = 2960, - [3123] = 400, + [3118] = 3118, + [3119] = 2924, + [3120] = 890, + [3121] = 940, + [3122] = 752, + [3123] = 753, [3124] = 3124, - [3125] = 2952, - [3126] = 389, - [3127] = 784, - [3128] = 3128, - [3129] = 936, - [3130] = 937, - [3131] = 939, - [3132] = 940, - [3133] = 2187, - [3134] = 787, - [3135] = 789, - [3136] = 790, - [3137] = 793, - [3138] = 2188, + [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] = 3138, [3139] = 3139, - [3140] = 2193, - [3141] = 869, - [3142] = 933, + [3140] = 3140, + [3141] = 3141, + [3142] = 3142, [3143] = 3143, - [3144] = 717, - [3145] = 718, - [3146] = 722, - [3147] = 723, - [3148] = 724, - [3149] = 725, - [3150] = 726, - [3151] = 3151, - [3152] = 3152, - [3153] = 3153, - [3154] = 402, - [3155] = 728, - [3156] = 729, - [3157] = 409, - [3158] = 404, - [3159] = 3052, - [3160] = 405, - [3161] = 3161, - [3162] = 3162, + [3144] = 3144, + [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] = 400, - [3165] = 732, - [3166] = 733, + [3164] = 3164, + [3165] = 3165, + [3166] = 2565, [3167] = 3167, [3168] = 3168, - [3169] = 3052, - [3170] = 3016, - [3171] = 3171, - [3172] = 3172, - [3173] = 3173, - [3174] = 3174, - [3175] = 3096, + [3169] = 497, + [3170] = 3170, + [3171] = 735, + [3172] = 736, + [3173] = 737, + [3174] = 928, + [3175] = 931, [3176] = 3176, - [3177] = 3097, - [3178] = 3098, - [3179] = 3057, + [3177] = 510, + [3178] = 3178, + [3179] = 742, [3180] = 3180, - [3181] = 3181, - [3182] = 3153, - [3183] = 2140, - [3184] = 938, - [3185] = 386, - [3186] = 901, - [3187] = 3187, - [3188] = 3188, - [3189] = 3189, - [3190] = 3190, - [3191] = 3100, - [3192] = 3153, - [3193] = 3101, - [3194] = 3194, - [3195] = 3102, - [3196] = 3196, - [3197] = 3104, - [3198] = 3198, - [3199] = 930, - [3200] = 3200, - [3201] = 3201, - [3202] = 3009, - [3203] = 679, - [3204] = 3204, - [3205] = 903, - [3206] = 3010, - [3207] = 700, - [3208] = 3208, - [3209] = 3011, + [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] = 895, - [3212] = 3212, - [3213] = 3040, - [3214] = 917, - [3215] = 3065, - [3216] = 3015, - [3217] = 2958, - [3218] = 3004, - [3219] = 3055, - [3220] = 3059, - [3221] = 3089, - [3222] = 2985, - [3223] = 3081, - [3224] = 3037, - [3225] = 2990, - [3226] = 3017, - [3227] = 884, - [3228] = 409, - [3229] = 3229, - [3230] = 3230, - [3231] = 696, - [3232] = 412, - [3233] = 389, - [3234] = 3229, - [3235] = 3235, - [3236] = 389, - [3237] = 3139, - [3238] = 766, - [3239] = 767, - [3240] = 3176, - [3241] = 3241, - [3242] = 3143, - [3243] = 3243, + [3211] = 970, + [3212] = 3167, + [3213] = 753, + [3214] = 932, + [3215] = 398, + [3216] = 731, + [3217] = 928, + [3218] = 3218, + [3219] = 3219, + [3220] = 3220, + [3221] = 939, + [3222] = 3222, + [3223] = 970, + [3224] = 2203, + [3225] = 940, + [3226] = 905, + [3227] = 400, + [3228] = 906, + [3229] = 400, + [3230] = 735, + [3231] = 736, + [3232] = 737, + [3233] = 3233, + [3234] = 931, + [3235] = 408, + [3236] = 412, + [3237] = 407, + [3238] = 3238, + [3239] = 739, + [3240] = 939, + [3241] = 3143, + [3242] = 3242, + [3243] = 3032, [3244] = 3244, - [3245] = 3245, - [3246] = 3246, - [3247] = 3247, - [3248] = 3248, - [3249] = 3249, - [3250] = 3099, - [3251] = 3201, - [3252] = 3252, - [3253] = 790, - [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] = 3258, - [3259] = 3259, - [3260] = 92, - [3261] = 3261, - [3262] = 3262, - [3263] = 3167, - [3264] = 3168, - [3265] = 3265, + [3258] = 3130, + [3259] = 741, + [3260] = 727, + [3261] = 921, + [3262] = 410, + [3263] = 3163, + [3264] = 3137, + [3265] = 3138, [3266] = 3266, - [3267] = 3267, - [3268] = 3268, - [3269] = 3171, - [3270] = 3270, - [3271] = 3198, + [3267] = 3139, + [3268] = 3168, + [3269] = 949, + [3270] = 414, + [3271] = 890, [3272] = 3272, - [3273] = 3117, - [3274] = 3274, - [3275] = 3275, - [3276] = 3276, - [3277] = 3277, + [3273] = 742, + [3274] = 949, + [3275] = 2230, + [3276] = 743, + [3277] = 3085, [3278] = 3278, - [3279] = 3279, - [3280] = 3280, - [3281] = 400, - [3282] = 3282, - [3283] = 409, - [3284] = 3052, - [3285] = 3285, - [3286] = 3286, - [3287] = 3287, + [3279] = 744, + [3280] = 3140, + [3281] = 3141, + [3282] = 3142, + [3283] = 906, + [3284] = 745, + [3285] = 728, + [3286] = 729, + [3287] = 3107, [3288] = 3288, [3289] = 3289, - [3290] = 3290, + [3290] = 746, [3291] = 3291, - [3292] = 402, - [3293] = 404, - [3294] = 405, - [3295] = 3295, - [3296] = 3296, - [3297] = 3297, - [3298] = 412, - [3299] = 412, - [3300] = 3300, - [3301] = 3248, + [3292] = 3292, + [3293] = 3154, + [3294] = 3165, + [3295] = 411, + [3296] = 752, + [3297] = 747, + [3298] = 748, + [3299] = 3272, + [3300] = 2565, + [3301] = 2572, [3302] = 3302, - [3303] = 333, - [3304] = 3173, - [3305] = 3151, - [3306] = 3306, - [3307] = 3247, - [3308] = 3249, - [3309] = 3245, - [3310] = 3310, - [3311] = 3311, - [3312] = 93, - [3313] = 334, - [3314] = 3314, - [3315] = 3255, - [3316] = 409, - [3317] = 3317, + [3303] = 3073, + [3304] = 3304, + [3305] = 730, + [3306] = 2643, + [3307] = 3307, + [3308] = 3242, + [3309] = 2580, + [3310] = 398, + [3311] = 3304, + [3312] = 3242, + [3313] = 2599, + [3314] = 2618, + [3315] = 3304, + [3316] = 2620, + [3317] = 2582, [3318] = 3318, [3319] = 3319, - [3320] = 3320, - [3321] = 3321, - [3322] = 402, - [3323] = 404, - [3324] = 405, - [3325] = 3113, - [3326] = 3208, - [3327] = 92, - [3328] = 775, - [3329] = 3329, - [3330] = 3330, - [3331] = 93, - [3332] = 717, - [3333] = 718, - [3334] = 3334, - [3335] = 722, - [3336] = 3336, - [3337] = 723, - [3338] = 724, - [3339] = 725, - [3340] = 3340, - [3341] = 3161, - [3342] = 92, - [3343] = 726, - [3344] = 507, - [3345] = 3172, - [3346] = 3346, + [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] = 3174, - [3349] = 3349, - [3350] = 3350, - [3351] = 776, + [3348] = 3348, + [3349] = 699, + [3350] = 889, + [3351] = 3195, [3352] = 3352, - [3353] = 3040, - [3354] = 3354, - [3355] = 777, - [3356] = 93, - [3357] = 3065, - [3358] = 3015, - [3359] = 2958, - [3360] = 780, - [3361] = 3004, - [3362] = 3055, - [3363] = 3059, - [3364] = 3089, - [3365] = 2985, - [3366] = 3081, - [3367] = 3037, - [3368] = 2990, - [3369] = 400, + [3353] = 3307, + [3354] = 410, + [3355] = 946, + [3356] = 3356, + [3357] = 3357, + [3358] = 3358, + [3359] = 3359, + [3360] = 3360, + [3361] = 3361, + [3362] = 707, + [3363] = 3319, + [3364] = 2229, + [3365] = 92, + [3366] = 2912, + [3367] = 3367, + [3368] = 3368, + [3369] = 728, [3370] = 3370, - [3371] = 3371, - [3372] = 3372, + [3371] = 2533, + [3372] = 3219, [3373] = 3373, - [3374] = 884, + [3374] = 3374, [3375] = 3375, - [3376] = 93, - [3377] = 3377, - [3378] = 3378, - [3379] = 386, - [3380] = 92, + [3376] = 414, + [3377] = 412, + [3378] = 407, + [3379] = 3348, + [3380] = 3380, [3381] = 3381, - [3382] = 412, - [3383] = 402, - [3384] = 404, - [3385] = 405, + [3382] = 3382, + [3383] = 3383, + [3384] = 93, + [3385] = 3385, [3386] = 3386, [3387] = 3387, [3388] = 3388, [3389] = 3389, - [3390] = 3153, - [3391] = 385, - [3392] = 787, - [3393] = 789, + [3390] = 3390, + [3391] = 3391, + [3392] = 3392, + [3393] = 729, [3394] = 3394, - [3395] = 342, - [3396] = 409, - [3397] = 339, - [3398] = 93, - [3399] = 3399, - [3400] = 340, - [3401] = 93, - [3402] = 3402, - [3403] = 101, - [3404] = 341, - [3405] = 96, - [3406] = 696, - [3407] = 344, - [3408] = 451, - [3409] = 3409, + [3395] = 3395, + [3396] = 2517, + [3397] = 3397, + [3398] = 3398, + [3399] = 730, + [3400] = 527, + [3401] = 3401, + [3402] = 387, + [3403] = 3255, + [3404] = 3404, + [3405] = 3405, + [3406] = 3406, + [3407] = 3168, + [3408] = 3408, + [3409] = 411, [3410] = 3410, - [3411] = 3409, - [3412] = 343, - [3413] = 101, - [3414] = 407, + [3411] = 3233, + [3412] = 411, + [3413] = 742, + [3414] = 93, [3415] = 3415, - [3416] = 96, - [3417] = 92, - [3418] = 3418, - [3419] = 3409, - [3420] = 3420, - [3421] = 345, - [3422] = 101, - [3423] = 3409, - [3424] = 346, - [3425] = 96, - [3426] = 3153, - [3427] = 3427, - [3428] = 101, - [3429] = 92, - [3430] = 93, - [3431] = 408, - [3432] = 96, - [3433] = 3409, - [3434] = 389, - [3435] = 92, + [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] = 410, - [3438] = 400, - [3439] = 3439, - [3440] = 406, - [3441] = 3441, - [3442] = 3442, - [3443] = 3442, - [3444] = 3442, - [3445] = 3442, - [3446] = 3442, - [3447] = 3442, - [3448] = 3442, - [3449] = 3442, - [3450] = 444, - [3451] = 101, - [3452] = 2459, - [3453] = 113, - [3454] = 113, - [3455] = 3455, - [3456] = 96, - [3457] = 3457, - [3458] = 444, - [3459] = 3441, - [3460] = 3457, - [3461] = 3442, - [3462] = 3442, - [3463] = 101, - [3464] = 3464, - [3465] = 3464, - [3466] = 3466, - [3467] = 3467, - [3468] = 402, - [3469] = 404, - [3470] = 104, - [3471] = 3441, - [3472] = 3457, - [3473] = 3442, - [3474] = 96, - [3475] = 96, - [3476] = 3427, - [3477] = 3441, - [3478] = 405, - [3479] = 3466, - [3480] = 442, - [3481] = 3441, - [3482] = 3457, - [3483] = 3455, - [3484] = 3442, - [3485] = 368, - [3486] = 3467, - [3487] = 106, - [3488] = 106, - [3489] = 3442, - [3490] = 442, - [3491] = 101, - [3492] = 3441, - [3493] = 3457, - [3494] = 3442, + [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] = 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] = 3222, + [3489] = 3489, + [3490] = 3490, + [3491] = 3491, + [3492] = 3406, + [3493] = 3493, + [3494] = 3288, [3495] = 3495, - [3496] = 113, - [3497] = 3442, - [3498] = 3457, + [3496] = 92, + [3497] = 3497, + [3498] = 408, [3499] = 3499, - [3500] = 3441, - [3501] = 3457, - [3502] = 113, - [3503] = 3442, - [3504] = 104, - [3505] = 444, - [3506] = 3441, - [3507] = 3457, - [3508] = 442, - [3509] = 3442, - [3510] = 106, - [3511] = 104, - [3512] = 3441, - [3513] = 3457, - [3514] = 3442, - [3515] = 3441, - [3516] = 3457, - [3517] = 442, - [3518] = 3442, - [3519] = 3441, - [3520] = 106, - [3521] = 3457, - [3522] = 3441, - [3523] = 3457, - [3524] = 3442, - [3525] = 412, - [3526] = 3441, - [3527] = 3457, - [3528] = 3442, - [3529] = 3442, - [3530] = 3441, - [3531] = 444, - [3532] = 3457, - [3533] = 104, - [3534] = 3534, - [3535] = 3535, - [3536] = 455, - [3537] = 3537, - [3538] = 489, - [3539] = 345, - [3540] = 479, - [3541] = 3535, - [3542] = 3495, - [3543] = 3534, - [3544] = 3535, - [3545] = 3534, - [3546] = 3534, - [3547] = 3535, - [3548] = 3535, - [3549] = 3534, - [3550] = 1843, - [3551] = 3534, - [3552] = 3552, - [3553] = 3534, - [3554] = 113, - [3555] = 1843, - [3556] = 3534, - [3557] = 3534, - [3558] = 113, - [3559] = 3534, - [3560] = 3534, - [3561] = 3534, - [3562] = 3534, - [3563] = 3563, + [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] = 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] = 348, + [3558] = 99, + [3559] = 94, + [3560] = 3560, + [3561] = 3561, + [3562] = 349, + [3563] = 350, [3564] = 3564, - [3565] = 346, - [3566] = 3535, - [3567] = 3564, - [3568] = 455, - [3569] = 92, - [3570] = 104, - [3571] = 3535, - [3572] = 3534, - [3573] = 495, - [3574] = 106, - [3575] = 104, - [3576] = 113, - [3577] = 3537, - [3578] = 3534, - [3579] = 3564, - [3580] = 3537, - [3581] = 3581, - [3582] = 3581, - [3583] = 442, - [3584] = 3535, - [3585] = 93, - [3586] = 106, - [3587] = 3534, - [3588] = 462, - [3589] = 3535, - [3590] = 3535, - [3591] = 3564, - [3592] = 455, - [3593] = 462, - [3594] = 344, - [3595] = 3581, - [3596] = 3535, - [3597] = 455, - [3598] = 462, - [3599] = 3534, - [3600] = 3600, - [3601] = 444, - [3602] = 106, - [3603] = 334, - [3604] = 442, - [3605] = 3534, - [3606] = 3537, - [3607] = 3535, - [3608] = 3581, - [3609] = 339, - [3610] = 340, - [3611] = 341, - [3612] = 462, - [3613] = 444, - [3614] = 104, - [3615] = 3535, - [3616] = 490, - [3617] = 511, - [3618] = 93, - [3619] = 3619, + [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] = 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] = 492, - [3622] = 3619, - [3623] = 510, - [3624] = 3619, - [3625] = 3619, - [3626] = 492, - [3627] = 3619, - [3628] = 3628, - [3629] = 3619, - [3630] = 490, - [3631] = 511, - [3632] = 492, - [3633] = 497, - [3634] = 510, - [3635] = 3619, - [3636] = 455, - [3637] = 497, - [3638] = 497, - [3639] = 3619, - [3640] = 3640, - [3641] = 3619, - [3642] = 3619, - [3643] = 343, - [3644] = 342, - [3645] = 3645, - [3646] = 490, - [3647] = 511, - [3648] = 334, - [3649] = 333, - [3650] = 96, - [3651] = 3620, - [3652] = 3652, - [3653] = 92, - [3654] = 3619, - [3655] = 3619, - [3656] = 497, - [3657] = 510, - [3658] = 492, - [3659] = 3619, - [3660] = 462, - [3661] = 490, - [3662] = 462, - [3663] = 101, - [3664] = 455, - [3665] = 1832, - [3666] = 3666, - [3667] = 698, - [3668] = 3668, - [3669] = 444, - [3670] = 2519, - [3671] = 511, - [3672] = 495, - [3673] = 3673, - [3674] = 3674, - [3675] = 490, - [3676] = 511, - [3677] = 3673, - [3678] = 479, - [3679] = 688, - [3680] = 689, - [3681] = 690, - [3682] = 484, - [3683] = 442, - [3684] = 489, - [3685] = 3685, - [3686] = 334, - [3687] = 476, - [3688] = 3688, - [3689] = 3689, - [3690] = 3690, - [3691] = 444, - [3692] = 3692, - [3693] = 480, - [3694] = 3673, - [3695] = 442, - [3696] = 3673, - [3697] = 3697, - [3698] = 444, - [3699] = 3699, - [3700] = 334, - [3701] = 511, - [3702] = 3702, - [3703] = 510, - [3704] = 113, - [3705] = 3685, - [3706] = 3688, - [3707] = 3495, - [3708] = 3689, - [3709] = 3673, - [3710] = 3710, - [3711] = 3690, - [3712] = 487, - [3713] = 484, - [3714] = 495, - [3715] = 3552, - [3716] = 3716, - [3717] = 3717, - [3718] = 489, - [3719] = 333, - [3720] = 3666, - [3721] = 3721, - [3722] = 3628, - [3723] = 3673, - [3724] = 484, - [3725] = 442, - [3726] = 3702, + [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] = 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] = 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] = 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] = 96, - [3729] = 480, - [3730] = 3674, - [3731] = 2563, - [3732] = 3732, - [3733] = 3733, - [3734] = 3710, - [3735] = 475, - [3736] = 470, - [3737] = 3673, - [3738] = 3733, - [3739] = 3727, - [3740] = 3673, - [3741] = 486, - [3742] = 510, - [3743] = 104, - [3744] = 442, - [3745] = 3692, - [3746] = 3699, - [3747] = 490, - [3748] = 3748, - [3749] = 342, - [3750] = 2564, - [3751] = 444, - [3752] = 101, - [3753] = 3716, - [3754] = 487, - [3755] = 487, - [3756] = 343, - [3757] = 3757, - [3758] = 497, + [3728] = 3669, + [3729] = 464, + [3730] = 350, + [3731] = 351, + [3732] = 3686, + [3733] = 3659, + [3734] = 107, + [3735] = 3660, + [3736] = 92, + [3737] = 108, + [3738] = 3659, + [3739] = 93, + [3740] = 528, + [3741] = 3741, + [3742] = 497, + [3743] = 488, + [3744] = 482, + [3745] = 488, + [3746] = 3746, + [3747] = 3746, + [3748] = 464, + [3749] = 3746, + [3750] = 94, + [3751] = 526, + [3752] = 528, + [3753] = 3753, + [3754] = 3746, + [3755] = 3746, + [3756] = 497, + [3757] = 510, + [3758] = 336, [3759] = 510, - [3760] = 3732, - [3761] = 3673, - [3762] = 3645, - [3763] = 3666, - [3764] = 497, - [3765] = 3666, - [3766] = 492, - [3767] = 3673, - [3768] = 3757, - [3769] = 3769, - [3770] = 492, - [3771] = 3620, - [3772] = 106, - [3773] = 3673, - [3774] = 3774, - [3775] = 2636, - [3776] = 444, - [3777] = 342, - [3778] = 442, - [3779] = 444, - [3780] = 3774, - [3781] = 3781, - [3782] = 3782, - [3783] = 3783, - [3784] = 3784, - [3785] = 3785, - [3786] = 3786, + [3760] = 488, + [3761] = 3761, + [3762] = 3746, + [3763] = 92, + [3764] = 3746, + [3765] = 482, + [3766] = 3766, + [3767] = 464, + [3768] = 488, + [3769] = 497, + [3770] = 510, + [3771] = 526, + [3772] = 3746, + [3773] = 3753, + [3774] = 526, + [3775] = 3746, + [3776] = 3746, + [3777] = 99, + [3778] = 3746, + [3779] = 3779, + [3780] = 528, + [3781] = 333, + [3782] = 497, + [3783] = 510, + [3784] = 3746, + [3785] = 3746, + [3786] = 471, [3787] = 3787, - [3788] = 3788, + [3788] = 526, [3789] = 3789, [3790] = 3790, - [3791] = 3717, - [3792] = 3748, - [3793] = 3790, + [3791] = 453, + [3792] = 1861, + [3793] = 3766, [3794] = 3794, [3795] = 3795, - [3796] = 3796, - [3797] = 462, - [3798] = 3798, + [3796] = 453, + [3797] = 3797, + [3798] = 491, [3799] = 3799, [3800] = 3800, - [3801] = 3801, - [3802] = 3802, - [3803] = 343, - [3804] = 444, - [3805] = 3783, - [3806] = 342, - [3807] = 3807, + [3801] = 336, + [3802] = 3799, + [3803] = 3803, + [3804] = 3800, + [3805] = 497, + [3806] = 333, + [3807] = 3636, [3808] = 3808, - [3809] = 1443, - [3810] = 2661, - [3811] = 2520, - [3812] = 2661, - [3813] = 3813, - [3814] = 343, - [3815] = 698, - [3816] = 479, - [3817] = 495, - [3818] = 3818, - [3819] = 489, + [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] = 3821, - [3822] = 3822, + [3821] = 510, + [3822] = 2636, [3823] = 3823, - [3824] = 3784, - [3825] = 3781, - [3826] = 3785, - [3827] = 3786, - [3828] = 3828, - [3829] = 3782, - [3830] = 3790, - [3831] = 455, - [3832] = 342, - [3833] = 462, - [3834] = 3785, - [3835] = 3786, - [3836] = 344, - [3837] = 3837, - [3838] = 3787, - [3839] = 345, - [3840] = 346, - [3841] = 688, - [3842] = 689, - [3843] = 339, - [3844] = 340, - [3845] = 341, - [3846] = 690, - [3847] = 3847, - [3848] = 3848, - [3849] = 455, - [3850] = 462, - [3851] = 335, - [3852] = 3784, - [3853] = 3853, - [3854] = 1957, - [3855] = 3855, - [3856] = 3856, - [3857] = 3784, - [3858] = 3785, - [3859] = 3786, - [3860] = 368, - [3861] = 3790, - [3862] = 3784, - [3863] = 3785, - [3864] = 3786, - [3865] = 3790, - [3866] = 3784, + [3824] = 3799, + [3825] = 700, + [3826] = 3826, + [3827] = 509, + [3828] = 3790, + [3829] = 2617, + [3830] = 2573, + [3831] = 3820, + [3832] = 333, + [3833] = 3803, + [3834] = 441, + [3835] = 94, + [3836] = 526, + [3837] = 3799, + [3838] = 488, + [3839] = 453, + [3840] = 495, + [3841] = 3799, + [3842] = 3799, + [3843] = 503, + [3844] = 505, + [3845] = 3845, + [3846] = 3846, + [3847] = 441, + [3848] = 497, + [3849] = 3799, + [3850] = 498, + [3851] = 343, + [3852] = 3787, + [3853] = 528, + [3854] = 3823, + [3855] = 3789, + [3856] = 528, + [3857] = 3857, + [3858] = 3858, + [3859] = 3859, + [3860] = 488, + [3861] = 441, + [3862] = 3826, + [3863] = 3863, + [3864] = 109, + [3865] = 3865, + [3866] = 3799, [3867] = 3867, - [3868] = 2565, - [3869] = 3785, - [3870] = 3786, - [3871] = 3790, - [3872] = 3784, - [3873] = 3790, - [3874] = 442, - [3875] = 3784, - [3876] = 3876, - [3877] = 3877, - [3878] = 3790, - [3879] = 3879, - [3880] = 3784, - [3881] = 3790, - [3882] = 1957, - [3883] = 3883, - [3884] = 702, - [3885] = 3885, - [3886] = 702, - [3887] = 455, - [3888] = 698, - [3889] = 455, - [3890] = 3890, - [3891] = 462, - [3892] = 3892, - [3893] = 3893, - [3894] = 444, - [3895] = 113, - [3896] = 106, - [3897] = 104, + [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] = 688, - [3900] = 689, - [3901] = 690, - [3902] = 698, - [3903] = 688, - [3904] = 689, - [3905] = 690, - [3906] = 3853, + [3899] = 3899, + [3900] = 3900, + [3901] = 3901, + [3902] = 3902, + [3903] = 3903, + [3904] = 3904, + [3905] = 3905, + [3906] = 3906, [3907] = 3907, - [3908] = 442, + [3908] = 3908, [3909] = 3909, - [3910] = 3774, - [3911] = 3781, - [3912] = 3782, - [3913] = 444, - [3914] = 3914, - [3915] = 3774, - [3916] = 3781, - [3917] = 3782, - [3918] = 442, + [3910] = 342, + [3911] = 441, + [3912] = 3912, + [3913] = 1455, + [3914] = 343, + [3915] = 3915, + [3916] = 2587, + [3917] = 3917, + [3918] = 3918, [3919] = 3919, - [3920] = 3794, - [3921] = 3795, - [3922] = 3796, - [3923] = 3923, - [3924] = 3924, - [3925] = 3006, - [3926] = 3007, - [3927] = 343, - [3928] = 2635, + [3920] = 3900, + [3921] = 3901, + [3922] = 3922, + [3923] = 3902, + [3924] = 342, + [3925] = 700, + [3926] = 3926, + [3927] = 3927, + [3928] = 3899, [3929] = 3929, - [3930] = 490, - [3931] = 3190, - [3932] = 492, - [3933] = 497, - [3934] = 349, - [3935] = 3935, - [3936] = 3194, - [3937] = 351, - [3938] = 352, - [3939] = 3196, - [3940] = 495, - [3941] = 890, - [3942] = 3907, - [3943] = 3909, - [3944] = 898, - [3945] = 3241, - [3946] = 935, - [3947] = 3244, + [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] = 510, - [3950] = 1990, - [3951] = 3929, + [3949] = 349, + [3950] = 350, + [3951] = 351, [3952] = 3952, - [3953] = 489, - [3954] = 3954, - [3955] = 368, - [3956] = 3956, - [3957] = 444, - [3958] = 3958, - [3959] = 680, + [3953] = 464, + [3954] = 2587, + [3955] = 3955, + [3956] = 482, + [3957] = 1962, + [3958] = 334, + [3959] = 3959, [3960] = 3960, - [3961] = 3929, - [3962] = 3952, - [3963] = 3958, - [3964] = 890, - [3965] = 3954, - [3966] = 3958, - [3967] = 948, - [3968] = 3807, - [3969] = 3808, - [3970] = 3929, - [3971] = 3952, - [3972] = 703, - [3973] = 3628, - [3974] = 3645, - [3975] = 2661, - [3976] = 918, - [3977] = 3958, - [3978] = 922, - [3979] = 3929, - [3980] = 3952, - [3981] = 923, - [3982] = 3982, - [3983] = 455, - [3984] = 3958, - [3985] = 961, - [3986] = 948, - [3987] = 3929, - [3988] = 3952, - [3989] = 462, - [3990] = 3180, - [3991] = 492, + [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] = 3958, - [3994] = 3929, - [3995] = 3952, - [3996] = 462, - [3997] = 3929, - [3998] = 3952, - [3999] = 3999, - [4000] = 4000, - [4001] = 3181, - [4002] = 3958, - [4003] = 923, - [4004] = 3929, - [4005] = 3929, - [4006] = 3954, - [4007] = 3929, - [4008] = 3929, - [4009] = 961, - [4010] = 3929, - [4011] = 3992, - [4012] = 4012, - [4013] = 3929, - [4014] = 3929, - [4015] = 3929, - [4016] = 922, - [4017] = 333, - [4018] = 3929, - [4019] = 3929, - [4020] = 3929, - [4021] = 3954, - [4022] = 919, - [4023] = 4023, - [4024] = 3958, - [4025] = 4025, - [4026] = 3929, - [4027] = 4027, - [4028] = 490, - [4029] = 3952, - [4030] = 492, - [4031] = 4031, - [4032] = 497, - [4033] = 948, - [4034] = 919, - [4035] = 4035, - [4036] = 4036, - [4037] = 490, - [4038] = 923, - [4039] = 4039, - [4040] = 4040, - [4041] = 4039, - [4042] = 4042, + [3993] = 3993, + [3994] = 3903, + [3995] = 3995, + [3996] = 3899, + [3997] = 3997, + [3998] = 3998, + [3999] = 3903, + [4000] = 464, + [4001] = 482, + [4002] = 686, + [4003] = 687, + [4004] = 441, + [4005] = 688, + [4006] = 2713, + [4007] = 2680, + [4008] = 107, + [4009] = 3903, + [4010] = 108, + [4011] = 109, + [4012] = 3904, + [4013] = 4013, + [4014] = 4014, + [4015] = 4015, + [4016] = 453, + [4017] = 441, + [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] = 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] = 961, - [4045] = 2798, - [4046] = 492, - [4047] = 1990, - [4048] = 925, - [4049] = 1994, - [4050] = 919, - [4051] = 497, - [4052] = 925, - [4053] = 890, - [4054] = 898, - [4055] = 334, - [4056] = 455, - [4057] = 511, - [4058] = 3958, - [4059] = 3929, - [4060] = 4031, - [4061] = 3006, - [4062] = 3883, - [4063] = 462, - [4064] = 3956, - [4065] = 3898, - [4066] = 4027, + [4044] = 4044, + [4045] = 4045, + [4046] = 441, + [4047] = 3899, + [4048] = 4048, + [4049] = 960, + [4050] = 4050, + [4051] = 441, + [4052] = 4052, + [4053] = 4053, + [4054] = 4054, + [4055] = 4052, + [4056] = 4054, + [4057] = 4057, + [4058] = 4058, + [4059] = 3992, + [4060] = 4060, + [4061] = 3993, + [4062] = 961, + [4063] = 505, + [4064] = 4064, + [4065] = 485, + [4066] = 4057, [4067] = 4067, - [4068] = 3399, - [4069] = 918, - [4070] = 444, - [4071] = 455, - [4072] = 922, - [4073] = 3007, - [4074] = 335, - [4075] = 3956, - [4076] = 3188, - [4077] = 497, - [4078] = 462, - [4079] = 672, - [4080] = 4080, - [4081] = 898, - [4082] = 3189, - [4083] = 925, - [4084] = 4036, - [4085] = 490, - [4086] = 455, - [4087] = 3788, - [4088] = 3789, - [4089] = 1015, - [4090] = 3124, + [4068] = 4048, + [4069] = 4054, + [4070] = 4052, + [4071] = 526, + [4072] = 888, + [4073] = 962, + [4074] = 4029, + [4075] = 4075, + [4076] = 4064, + [4077] = 3766, + [4078] = 4078, + [4079] = 4030, + [4080] = 464, + [4081] = 4054, + [4082] = 4052, + [4083] = 3741, + [4084] = 888, + [4085] = 962, + [4086] = 690, + [4087] = 4087, + [4088] = 482, + [4089] = 4064, + [4090] = 2587, [4091] = 4091, - [4092] = 3952, - [4093] = 918, - [4094] = 3956, - [4095] = 890, - [4096] = 918, - [4097] = 679, - [4098] = 3124, - [4099] = 700, - [4100] = 698, - [4101] = 4101, - [4102] = 4102, - [4103] = 2581, - [4104] = 4104, + [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] = 923, - [4107] = 961, - [4108] = 4108, - [4109] = 4109, - [4110] = 919, - [4111] = 895, - [4112] = 925, - [4113] = 4113, - [4114] = 890, - [4115] = 898, - [4116] = 1015, - [4117] = 688, - [4118] = 689, - [4119] = 690, - [4120] = 884, - [4121] = 3717, - [4122] = 3748, - [4123] = 918, - [4124] = 922, - [4125] = 4125, - [4126] = 1777, - [4127] = 4127, - [4128] = 4128, - [4129] = 1790, - [4130] = 4130, - [4131] = 2592, + [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] = 4134, - [4135] = 1350, - [4136] = 1015, - [4137] = 4132, - [4138] = 4138, - [4139] = 4139, - [4140] = 4140, - [4141] = 4141, - [4142] = 4142, - [4143] = 4143, - [4144] = 935, - [4145] = 4145, - [4146] = 3999, - [4147] = 4147, - [4148] = 901, - [4149] = 442, - [4150] = 923, - [4151] = 961, - [4152] = 4139, - [4153] = 4042, - [4154] = 888, - [4155] = 2888, - [4156] = 898, - [4157] = 1015, + [4133] = 4050, + [4134] = 4054, + [4135] = 488, + [4136] = 956, + [4137] = 4054, + [4138] = 958, + [4139] = 4054, + [4140] = 4054, + [4141] = 4054, + [4142] = 334, + [4143] = 510, + [4144] = 960, + [4145] = 488, + [4146] = 961, + [4147] = 945, + [4148] = 681, + [4149] = 4053, + [4150] = 4058, + [4151] = 4087, + [4152] = 965, + [4153] = 966, + [4154] = 4154, + [4155] = 464, + [4156] = 510, + [4157] = 482, [4158] = 4158, - [4159] = 4159, - [4160] = 1393, - [4161] = 4125, - [4162] = 918, - [4163] = 922, - [4164] = 373, - [4165] = 775, - [4166] = 4166, - [4167] = 4167, - [4168] = 776, - [4169] = 777, - [4170] = 2521, - [4171] = 780, - [4172] = 2539, - [4173] = 4173, - [4174] = 4174, - [4175] = 4175, - [4176] = 4176, - [4177] = 3999, - [4178] = 343, - [4179] = 4179, + [4159] = 1061, + [4160] = 956, + [4161] = 888, + [4162] = 962, + [4163] = 464, + [4164] = 4164, + [4165] = 958, + [4166] = 4048, + [4167] = 373, + [4168] = 965, + [4169] = 4169, + [4170] = 333, + [4171] = 441, + [4172] = 464, + [4173] = 966, + [4174] = 336, + [4175] = 497, + [4176] = 488, + [4177] = 482, + [4178] = 4048, + [4179] = 4054, [4180] = 4180, - [4181] = 2972, - [4182] = 2973, - [4183] = 784, - [4184] = 4184, - [4185] = 342, - [4186] = 940, - [4187] = 787, - [4188] = 789, - [4189] = 790, + [4181] = 945, + [4182] = 510, + [4183] = 3908, + [4184] = 3909, + [4185] = 488, + [4186] = 4057, + [4187] = 4187, + [4188] = 360, + [4189] = 3964, [4190] = 4190, - [4191] = 793, - [4192] = 2524, - [4193] = 4193, - [4194] = 869, - [4195] = 948, - [4196] = 4196, - [4197] = 717, - [4198] = 718, - [4199] = 722, - [4200] = 723, - [4201] = 724, - [4202] = 725, - [4203] = 726, - [4204] = 923, - [4205] = 961, - [4206] = 2970, - [4207] = 2971, + [4191] = 961, + [4192] = 367, + [4193] = 956, + [4194] = 4194, + [4195] = 958, + [4196] = 723, + [4197] = 339, + [4198] = 2122, + [4199] = 3986, + [4200] = 482, + [4201] = 4201, + [4202] = 528, + [4203] = 4203, + [4204] = 4194, + [4205] = 960, + [4206] = 510, + [4207] = 4207, [4208] = 4208, - [4209] = 919, - [4210] = 925, - [4211] = 4211, - [4212] = 890, + [4209] = 4209, + [4210] = 728, + [4211] = 729, + [4212] = 3108, [4213] = 4213, - [4214] = 4214, - [4215] = 4215, + [4214] = 730, + [4215] = 2582, [4216] = 4216, - [4217] = 4217, - [4218] = 4218, - [4219] = 444, + [4217] = 942, + [4218] = 960, + [4219] = 4169, [4220] = 4220, [4221] = 4221, - [4222] = 344, - [4223] = 4223, - [4224] = 898, - [4225] = 4134, - [4226] = 4226, - [4227] = 345, - [4228] = 346, + [4222] = 4222, + [4223] = 4222, + [4224] = 4224, + [4225] = 4225, + [4226] = 731, + [4227] = 713, + [4228] = 906, [4229] = 4229, - [4230] = 918, - [4231] = 4132, - [4232] = 4232, - [4233] = 922, + [4230] = 1061, + [4231] = 4231, + [4232] = 735, + [4233] = 736, [4234] = 4234, - [4235] = 4132, - [4236] = 339, + [4235] = 737, + [4236] = 4236, [4237] = 4237, - [4238] = 340, - [4239] = 341, - [4240] = 938, - [4241] = 4241, + [4238] = 4238, + [4239] = 962, + [4240] = 1061, + [4241] = 739, [4242] = 4242, [4243] = 4243, [4244] = 4244, - [4245] = 4132, - [4246] = 4246, - [4247] = 4247, - [4248] = 4248, + [4245] = 4245, + [4246] = 965, + [4247] = 966, + [4248] = 372, [4249] = 4249, - [4250] = 349, + [4250] = 741, [4251] = 4251, - [4252] = 4252, - [4253] = 4253, - [4254] = 4254, - [4255] = 1796, - [4256] = 1824, - [4257] = 4132, - [4258] = 4258, - [4259] = 4259, - [4260] = 4260, - [4261] = 930, + [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] = 4264, - [4265] = 4132, - [4266] = 4266, - [4267] = 4267, + [4264] = 2643, + [4265] = 2580, + [4266] = 2599, + [4267] = 2618, [4268] = 4268, [4269] = 4269, [4270] = 4270, - [4271] = 4271, - [4272] = 4272, - [4273] = 4159, - [4274] = 490, - [4275] = 702, - [4276] = 4132, - [4277] = 919, - [4278] = 492, - [4279] = 492, - [4280] = 4280, - [4281] = 4281, + [4271] = 2620, + [4272] = 360, + [4273] = 343, + [4274] = 4201, + [4275] = 4275, + [4276] = 4276, + [4277] = 1805, + [4278] = 4278, + [4279] = 1812, + [4280] = 945, + [4281] = 441, [4282] = 4282, - [4283] = 4132, - [4284] = 497, + [4283] = 4283, + [4284] = 956, [4285] = 4285, - [4286] = 4132, + [4286] = 958, [4287] = 4287, - [4288] = 3600, - [4289] = 3563, + [4288] = 4288, + [4289] = 960, [4290] = 4290, - [4291] = 4132, + [4291] = 961, [4292] = 4292, - [4293] = 4293, - [4294] = 351, - [4295] = 4132, - [4296] = 4132, + [4293] = 888, + [4294] = 939, + [4295] = 4295, + [4296] = 4296, [4297] = 4297, [4298] = 4298, [4299] = 4299, - [4300] = 4132, - [4301] = 352, - [4302] = 898, - [4303] = 3982, - [4304] = 935, + [4300] = 4300, + [4301] = 3713, + [4302] = 3719, + [4303] = 4303, + [4304] = 4304, [4305] = 4305, - [4306] = 4306, - [4307] = 4307, - [4308] = 4308, - [4309] = 4309, - [4310] = 3499, - [4311] = 4311, - [4312] = 4312, - [4313] = 3180, - [4314] = 4221, - [4315] = 3181, - [4316] = 3128, - [4317] = 1805, - [4318] = 1806, + [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] = 4323, - [4324] = 4324, - [4325] = 490, + [4322] = 3643, + [4323] = 961, + [4324] = 4180, + [4325] = 4222, [4326] = 4326, [4327] = 4327, [4328] = 4328, @@ -9161,11 +9170,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4330] = 4330, [4331] = 4331, [4332] = 4332, - [4333] = 497, + [4333] = 4333, [4334] = 4334, [4335] = 4335, [4336] = 4336, - [4337] = 925, + [4337] = 4337, [4338] = 4338, [4339] = 4339, [4340] = 4340, @@ -9174,919 +9183,1040 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4343] = 4343, [4344] = 4344, [4345] = 4345, - [4346] = 4211, + [4346] = 4222, [4347] = 4347, - [4348] = 4348, + [4348] = 367, [4349] = 4349, [4350] = 4350, [4351] = 4351, - [4352] = 4352, + [4352] = 339, [4353] = 4353, [4354] = 4354, [4355] = 4355, - [4356] = 4356, - [4357] = 4357, - [4358] = 4358, - [4359] = 3188, - [4360] = 490, - [4361] = 3189, + [4356] = 3808, + [4357] = 4222, + [4358] = 497, + [4359] = 4359, + [4360] = 4360, + [4361] = 4361, [4362] = 4362, - [4363] = 3190, - [4364] = 3194, + [4363] = 4363, + [4364] = 4364, [4365] = 4365, - [4366] = 492, + [4366] = 510, [4367] = 4367, - [4368] = 497, + [4368] = 488, [4369] = 4369, - [4370] = 4132, - [4371] = 4132, - [4372] = 4132, + [4370] = 4370, + [4371] = 4371, + [4372] = 4372, [4373] = 4373, - [4374] = 948, - [4375] = 922, - [4376] = 4012, + [4374] = 4374, + [4375] = 4222, + [4376] = 4376, [4377] = 4377, [4378] = 4378, [4379] = 4379, [4380] = 4380, [4381] = 4381, [4382] = 4382, - [4383] = 4383, + [4383] = 699, [4384] = 4384, - [4385] = 4385, - [4386] = 4132, - [4387] = 4387, - [4388] = 490, - [4389] = 890, - [4390] = 3196, - [4391] = 492, - [4392] = 497, + [4385] = 4222, + [4386] = 707, + [4387] = 4319, + [4388] = 4222, + [4389] = 4389, + [4390] = 4390, + [4391] = 945, + [4392] = 4091, [4393] = 4393, - [4394] = 935, - [4395] = 4395, - [4396] = 4396, + [4394] = 4222, + [4395] = 965, + [4396] = 966, [4397] = 4397, - [4398] = 4377, - [4399] = 4399, - [4400] = 4127, - [4401] = 4128, - [4402] = 4184, + [4398] = 4398, + [4399] = 889, + [4400] = 4222, + [4401] = 4401, + [4402] = 4222, [4403] = 4403, - [4404] = 4404, + [4404] = 4222, [4405] = 4405, - [4406] = 2530, - [4407] = 4237, - [4408] = 4377, - [4409] = 4127, - [4410] = 4128, - [4411] = 4184, - [4412] = 948, - [4413] = 4413, + [4406] = 4406, + [4407] = 4222, + [4408] = 4225, + [4409] = 4409, + [4410] = 4222, + [4411] = 4411, + [4412] = 4412, + [4413] = 890, [4414] = 4414, - [4415] = 4415, + [4415] = 4393, [4416] = 4416, - [4417] = 4416, + [4417] = 4417, [4418] = 4418, - [4419] = 4309, + [4419] = 888, [4420] = 4420, - [4421] = 4311, - [4422] = 930, + [4421] = 942, + [4422] = 4422, [4423] = 4423, - [4424] = 4271, + [4424] = 4424, [4425] = 4425, - [4426] = 2193, - [4427] = 697, - [4428] = 455, - [4429] = 4429, - [4430] = 2521, - [4431] = 335, - [4432] = 4379, - [4433] = 4312, - [4434] = 4416, - [4435] = 3068, - [4436] = 936, - [4437] = 4437, - [4438] = 4420, - [4439] = 937, - [4440] = 939, - [4441] = 4213, - [4442] = 4353, - [4443] = 4354, - [4444] = 4380, - [4445] = 4355, - [4446] = 4356, - [4447] = 462, + [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] = 1802, + [4440] = 956, + [4441] = 4441, + [4442] = 958, + [4443] = 4443, + [4444] = 3205, + [4445] = 4445, + [4446] = 932, + [4447] = 960, [4448] = 4448, - [4449] = 4282, - [4450] = 2539, - [4451] = 4357, - [4452] = 4358, - [4453] = 4133, - [4454] = 4214, - [4455] = 4216, - [4456] = 4456, - [4457] = 4457, - [4458] = 4458, - [4459] = 4381, - [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] = 4437, - [4463] = 4463, - [4464] = 3009, + [4462] = 4462, + [4463] = 4222, + [4464] = 4222, [4465] = 4465, [4466] = 4466, - [4467] = 4382, + [4467] = 726, [4468] = 4468, - [4469] = 4383, + [4469] = 4469, [4470] = 4470, - [4471] = 4384, + [4471] = 4471, [4472] = 4472, - [4473] = 4253, + [4473] = 4473, [4474] = 4474, [4475] = 4475, - [4476] = 4385, - [4477] = 476, - [4478] = 4270, - [4479] = 2186, - [4480] = 4269, - [4481] = 933, - [4482] = 4306, - [4483] = 4138, - [4484] = 4387, - [4485] = 2950, - [4486] = 4420, - [4487] = 444, - [4488] = 4429, - [4489] = 906, - [4490] = 942, + [4476] = 497, + [4477] = 1833, + [4478] = 1836, + [4479] = 4479, + [4480] = 4480, + [4481] = 4481, + [4482] = 4430, + [4483] = 4483, + [4484] = 4484, + [4485] = 965, + [4486] = 966, + [4487] = 4222, + [4488] = 4488, + [4489] = 4489, + [4490] = 4169, [4491] = 4491, [4492] = 4492, - [4493] = 3010, - [4494] = 2530, + [4493] = 4409, + [4494] = 4326, [4495] = 4495, - [4496] = 4496, - [4497] = 4497, - [4498] = 2592, - [4499] = 3071, - [4500] = 4500, - [4501] = 4501, + [4496] = 956, + [4497] = 4216, + [4498] = 4221, + [4499] = 4499, + [4500] = 4499, + [4501] = 958, [4502] = 4502, [4503] = 4503, - [4504] = 4140, + [4504] = 488, [4505] = 4505, - [4506] = 4506, - [4507] = 4142, - [4508] = 4508, - [4509] = 4319, - [4510] = 4320, - [4511] = 4321, - [4512] = 4322, - [4513] = 4513, - [4514] = 4323, - [4515] = 4515, - [4516] = 4516, - [4517] = 4324, - [4518] = 4437, - [4519] = 4519, - [4520] = 4520, - [4521] = 4521, - [4522] = 4522, - [4523] = 4266, - [4524] = 4420, - [4525] = 4429, + [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] = 4523, [4526] = 4526, - [4527] = 444, - [4528] = 4528, - [4529] = 4529, + [4527] = 4527, + [4528] = 1371, + [4529] = 4328, [4530] = 4530, - [4531] = 4347, - [4532] = 4348, - [4533] = 4349, - [4534] = 4351, - [4535] = 4352, - [4536] = 4268, - [4537] = 728, - [4538] = 4229, - [4539] = 729, + [4531] = 4531, + [4532] = 905, + [4533] = 4533, + [4534] = 2506, + [4535] = 4295, + [4536] = 4296, + [4537] = 2533, + [4538] = 946, + [4539] = 4443, [4540] = 4540, - [4541] = 4541, - [4542] = 4542, - [4543] = 4416, - [4544] = 4267, - [4545] = 2581, - [4546] = 4546, - [4547] = 4456, - [4548] = 4362, + [4541] = 2509, + [4542] = 4523, + [4543] = 4543, + [4544] = 4544, + [4545] = 4545, + [4546] = 2517, + [4547] = 4547, + [4548] = 4548, [4549] = 4549, - [4550] = 903, - [4551] = 4308, - [4552] = 4367, - [4553] = 4326, - [4554] = 4554, - [4555] = 4555, - [4556] = 4327, - [4557] = 4331, - [4558] = 4558, - [4559] = 3243, - [4560] = 4560, - [4561] = 917, + [4550] = 4335, + [4551] = 4551, + [4552] = 4552, + [4553] = 4553, + [4554] = 768, + [4555] = 4297, + [4556] = 2539, + [4557] = 769, + [4558] = 2547, + [4559] = 4559, + [4560] = 482, + [4561] = 4561, [4562] = 4562, - [4563] = 4563, - [4564] = 507, - [4565] = 4365, - [4566] = 4338, - [4567] = 2524, - [4568] = 4297, - [4569] = 4569, - [4570] = 2140, - [4571] = 732, - [4572] = 4572, - [4573] = 733, - [4574] = 486, - [4575] = 4575, - [4576] = 4264, - [4577] = 4577, - [4578] = 4260, - [4579] = 4130, - [4580] = 4416, - [4581] = 4290, - [4582] = 4503, - [4583] = 4393, - [4584] = 4584, - [4585] = 4395, - [4586] = 4343, - [4587] = 3050, - [4588] = 4344, - [4589] = 4396, - [4590] = 4298, - [4591] = 4591, - [4592] = 4420, - [4593] = 4258, - [4594] = 368, + [4563] = 4282, + [4564] = 4523, + [4565] = 4565, + [4566] = 4283, + [4567] = 4285, + [4568] = 4568, + [4569] = 4406, + [4570] = 4370, + [4571] = 4571, + [4572] = 954, + [4573] = 4411, + [4574] = 1411, + [4575] = 4412, + [4576] = 4330, + [4577] = 4310, + [4578] = 4578, + [4579] = 4298, + [4580] = 4337, + [4581] = 4431, + [4582] = 2168, + [4583] = 4416, + [4584] = 4420, + [4585] = 4287, + [4586] = 4586, + [4587] = 4587, + [4588] = 4365, + [4589] = 464, + [4590] = 4590, + [4591] = 4288, + [4592] = 4592, + [4593] = 4341, + [4594] = 4594, [4595] = 4595, - [4596] = 4549, - [4597] = 4397, - [4598] = 4399, - [4599] = 4569, - [4600] = 4403, - [4601] = 3016, - [4602] = 4416, - [4603] = 4262, - [4604] = 442, - [4605] = 4605, - [4606] = 4606, - [4607] = 4414, - [4608] = 695, - [4609] = 4609, - [4610] = 4101, + [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] = 4434, + [4609] = 4479, + [4610] = 4480, [4611] = 4611, - [4612] = 4102, - [4613] = 4613, - [4614] = 4108, - [4615] = 4243, - [4616] = 4616, + [4612] = 4612, + [4613] = 4290, + [4614] = 4614, + [4615] = 4615, + [4616] = 4530, [4617] = 4617, - [4618] = 4369, - [4619] = 4619, - [4620] = 1409, - [4621] = 4420, - [4622] = 4429, - [4623] = 4254, - [4624] = 4272, - [4625] = 4625, - [4626] = 4247, + [4618] = 4445, + [4619] = 4617, + [4620] = 4531, + [4621] = 4461, + [4622] = 2899, + [4623] = 4559, + [4624] = 4491, + [4625] = 4492, + [4626] = 4350, [4627] = 4627, - [4628] = 4628, - [4629] = 4629, - [4630] = 4263, - [4631] = 4292, - [4632] = 4457, - [4633] = 2187, - [4634] = 4634, + [4628] = 4505, + [4629] = 4208, + [4630] = 4630, + [4631] = 4369, + [4632] = 4209, + [4633] = 4633, + [4634] = 4481, [4635] = 4635, - [4636] = 4404, - [4637] = 4416, - [4638] = 4638, - [4639] = 4639, - [4640] = 4405, - [4641] = 4641, - [4642] = 4642, - [4643] = 4259, - [4644] = 4246, - [4645] = 4226, - [4646] = 2188, - [4647] = 4299, - [4648] = 4420, - [4649] = 766, - [4650] = 767, - [4651] = 4651, - [4652] = 4345, - [4653] = 4653, - [4654] = 4293, - [4655] = 4655, - [4656] = 4335, - [4657] = 4657, - [4658] = 4472, - [4659] = 938, - [4660] = 4350, - [4661] = 4340, - [4662] = 4242, - [4663] = 1372, - [4664] = 4305, - [4665] = 4665, - [4666] = 4307, - [4667] = 4280, - [4668] = 1364, - [4669] = 4196, + [4636] = 4636, + [4637] = 4637, + [4638] = 4213, + [4639] = 4378, + [4640] = 4379, + [4641] = 4331, + [4642] = 4380, + [4643] = 4643, + [4644] = 4484, + [4645] = 4371, + [4646] = 4495, + [4647] = 4381, + [4648] = 4648, + [4649] = 4382, + [4650] = 4305, + [4651] = 334, + [4652] = 4372, + [4653] = 4488, + [4654] = 4327, + [4655] = 939, + [4656] = 4656, + [4657] = 453, + [4658] = 4343, + [4659] = 4659, + [4660] = 527, + [4661] = 4661, + [4662] = 4553, + [4663] = 4342, + [4664] = 4332, + [4665] = 4390, + [4666] = 4666, + [4667] = 4351, + [4668] = 4668, + [4669] = 4669, [4670] = 4670, [4671] = 4671, - [4672] = 4670, + [4672] = 4333, [4673] = 4673, - [4674] = 4674, + [4674] = 4523, [4675] = 4675, - [4676] = 4676, - [4677] = 4677, - [4678] = 918, - [4679] = 922, - [4680] = 4670, + [4676] = 928, + [4677] = 931, + [4678] = 4678, + [4679] = 4679, + [4680] = 749, [4681] = 4681, [4682] = 4682, - [4683] = 4683, - [4684] = 4674, - [4685] = 890, - [4686] = 4675, + [4683] = 750, + [4684] = 4530, + [4685] = 4617, + [4686] = 2900, [4687] = 4687, - [4688] = 4688, - [4689] = 4689, - [4690] = 4690, - [4691] = 4691, - [4692] = 4692, - [4693] = 490, - [4694] = 4682, + [4688] = 4553, + [4689] = 4303, + [4690] = 4553, + [4691] = 4304, + [4692] = 3109, + [4693] = 4693, + [4694] = 4694, [4695] = 4695, - [4696] = 4696, - [4697] = 4697, - [4698] = 4698, - [4699] = 4699, - [4700] = 4700, + [4696] = 4245, + [4697] = 4648, + [4698] = 4251, + [4699] = 4354, + [4700] = 4262, [4701] = 4701, - [4702] = 4702, - [4703] = 3999, - [4704] = 4704, - [4705] = 4705, + [4702] = 491, + [4703] = 4466, + [4704] = 4374, + [4705] = 4376, [4706] = 4706, - [4707] = 4707, - [4708] = 919, - [4709] = 4709, + [4707] = 2896, + [4708] = 4530, + [4709] = 4355, [4710] = 4710, - [4711] = 4711, - [4712] = 4671, - [4713] = 4670, - [4714] = 4714, - [4715] = 3128, - [4716] = 4716, - [4717] = 4699, - [4718] = 3017, - [4719] = 4719, - [4720] = 4720, - [4721] = 4721, - [4722] = 1097, - [4723] = 921, + [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] = 4522, - [4726] = 926, + [4725] = 4359, + [4726] = 4360, [4727] = 4727, - [4728] = 4728, + [4728] = 4468, [4729] = 4729, - [4730] = 4716, - [4731] = 4731, - [4732] = 349, + [4730] = 4730, + [4731] = 752, + [4732] = 4732, [4733] = 4733, - [4734] = 4695, - [4735] = 4729, - [4736] = 4736, - [4737] = 3600, - [4738] = 3563, - [4739] = 4739, - [4740] = 1968, - [4741] = 4696, - [4742] = 961, - [4743] = 4739, - [4744] = 4744, - [4745] = 4745, - [4746] = 4746, - [4747] = 4698, - [4748] = 4674, - [4749] = 4675, + [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] = 4750, - [4751] = 4683, - [4752] = 696, - [4753] = 4753, - [4754] = 492, - [4755] = 351, + [4751] = 4751, + [4752] = 4752, + [4753] = 970, + [4754] = 4523, + [4755] = 373, [4756] = 4756, - [4757] = 352, - [4758] = 4701, - [4759] = 4759, - [4760] = 4760, - [4761] = 4731, - [4762] = 4671, - [4763] = 4709, - [4764] = 4710, - [4765] = 4765, - [4766] = 4711, - [4767] = 4706, - [4768] = 4714, - [4769] = 3011, - [4770] = 4770, - [4771] = 932, - [4772] = 4772, - [4773] = 4773, - [4774] = 497, - [4775] = 4775, - [4776] = 4674, + [4757] = 1367, + [4758] = 921, + [4759] = 441, + [4760] = 4321, + [4761] = 4334, + [4762] = 4530, + [4763] = 4469, + [4764] = 4559, + [4765] = 940, + [4766] = 4766, + [4767] = 4384, + [4768] = 4470, + [4769] = 4769, + [4770] = 3154, + [4771] = 4771, + [4772] = 4299, + [4773] = 4292, + [4774] = 4329, + [4775] = 3165, + [4776] = 4559, [4777] = 4777, - [4778] = 4675, - [4779] = 4697, - [4780] = 4700, + [4778] = 4373, + [4779] = 956, + [4780] = 4780, [4781] = 4781, - [4782] = 953, - [4783] = 4704, - [4784] = 4705, + [4782] = 4782, + [4783] = 4783, + [4784] = 4784, [4785] = 4785, - [4786] = 898, + [4786] = 4786, [4787] = 4787, - [4788] = 4688, + [4788] = 4788, [4789] = 4789, - [4790] = 1660, + [4790] = 961, [4791] = 4791, [4792] = 4792, - [4793] = 1015, - [4794] = 4794, - [4795] = 4689, + [4793] = 4793, + [4794] = 488, + [4795] = 4795, [4796] = 4796, - [4797] = 3163, + [4797] = 4797, [4798] = 4798, [4799] = 4799, - [4800] = 4753, - [4801] = 4756, - [4802] = 4772, + [4800] = 930, + [4801] = 4801, + [4802] = 4802, [4803] = 4803, - [4804] = 4804, - [4805] = 925, - [4806] = 3210, - [4807] = 4807, - [4808] = 4707, - [4809] = 1996, - [4810] = 4739, - [4811] = 1997, - [4812] = 4812, - [4813] = 455, + [4804] = 2908, + [4805] = 2912, + [4806] = 4801, + [4807] = 4802, + [4808] = 4808, + [4809] = 4809, + [4810] = 1518, + [4811] = 4811, + [4812] = 360, + [4813] = 4813, [4814] = 4814, - [4815] = 4773, - [4816] = 4775, - [4817] = 935, - [4818] = 462, + [4815] = 4815, + [4816] = 942, + [4817] = 4817, + [4818] = 4818, [4819] = 4819, - [4820] = 4690, - [4821] = 4821, - [4822] = 948, - [4823] = 4823, - [4824] = 4824, - [4825] = 4691, - [4826] = 4739, - [4827] = 4739, + [4820] = 497, + [4821] = 4813, + [4822] = 3167, + [4823] = 2130, + [4824] = 2131, + [4825] = 4814, + [4826] = 4826, + [4827] = 367, [4828] = 4828, - [4829] = 4829, + [4829] = 339, [4830] = 4830, - [4831] = 4830, - [4832] = 4719, - [4833] = 923, - [4834] = 4834, - [4835] = 4720, - [4836] = 4671, - [4837] = 4837, - [4838] = 954, - [4839] = 4839, + [4831] = 4831, + [4832] = 888, + [4833] = 1050, + [4834] = 4795, + [4835] = 4835, + [4836] = 4836, + [4837] = 4796, + [4838] = 4808, + [4839] = 4811, [4840] = 4840, [4841] = 4841, - [4842] = 4842, - [4843] = 4843, + [4842] = 4798, + [4843] = 4799, [4844] = 4844, [4845] = 4845, [4846] = 4846, [4847] = 4847, [4848] = 4848, [4849] = 4849, - [4850] = 4839, - [4851] = 4851, - [4852] = 4852, + [4850] = 4850, + [4851] = 3713, + [4852] = 3719, [4853] = 4853, [4854] = 4854, [4855] = 4855, - [4856] = 4856, - [4857] = 4853, + [4856] = 4808, + [4857] = 4811, [4858] = 4858, - [4859] = 4839, - [4860] = 4841, - [4861] = 4841, + [4859] = 4859, + [4860] = 945, + [4861] = 4861, [4862] = 4862, - [4863] = 4863, - [4864] = 4843, - [4865] = 4845, - [4866] = 4866, + [4863] = 4844, + [4864] = 4845, + [4865] = 4848, + [4866] = 4849, [4867] = 4867, - [4868] = 4843, - [4869] = 4849, - [4870] = 4840, + [4868] = 4868, + [4869] = 4673, + [4870] = 934, [4871] = 4871, - [4872] = 4854, - [4873] = 4855, - [4874] = 4856, - [4875] = 4841, + [4872] = 4872, + [4873] = 4873, + [4874] = 4874, + [4875] = 4875, [4876] = 4876, [4877] = 4877, - [4878] = 4878, - [4879] = 4845, - [4880] = 476, - [4881] = 4847, - [4882] = 4866, - [4883] = 4849, - [4884] = 4884, - [4885] = 4885, - [4886] = 4854, - [4887] = 4855, - [4888] = 4856, - [4889] = 4841, - [4890] = 4890, - [4891] = 4891, - [4892] = 476, - [4893] = 4845, - [4894] = 4894, - [4895] = 2539, + [4878] = 904, + [4879] = 4879, + [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] = 4897, - [4898] = 4854, - [4899] = 4855, - [4900] = 4856, - [4901] = 4852, - [4902] = 4896, - [4903] = 4845, + [4897] = 957, + [4898] = 4873, + [4899] = 965, + [4900] = 4900, + [4901] = 4169, + [4902] = 2003, + [4903] = 4854, [4904] = 4904, - [4905] = 4840, - [4906] = 4841, - [4907] = 4856, - [4908] = 4854, - [4909] = 4855, - [4910] = 4856, - [4911] = 4845, + [4905] = 4875, + [4906] = 4855, + [4907] = 4907, + [4908] = 966, + [4909] = 4872, + [4910] = 4841, + [4911] = 3113, [4912] = 4912, - [4913] = 4845, - [4914] = 4845, + [4913] = 4874, + [4914] = 4818, [4915] = 4915, - [4916] = 4884, - [4917] = 4917, - [4918] = 4854, - [4919] = 4855, - [4920] = 4856, - [4921] = 4885, - [4922] = 4878, - [4923] = 4845, - [4924] = 4915, - [4925] = 4854, - [4926] = 4855, - [4927] = 4856, - [4928] = 4928, - [4929] = 4863, - [4930] = 4845, - [4931] = 4853, - [4932] = 4854, - [4933] = 4855, - [4934] = 4856, + [4916] = 4916, + [4917] = 4877, + [4918] = 4918, + [4919] = 4887, + [4920] = 4920, + [4921] = 4841, + [4922] = 4922, + [4923] = 4841, + [4924] = 510, + [4925] = 4871, + [4926] = 4900, + [4927] = 4896, + [4928] = 4817, + [4929] = 4801, + [4930] = 4802, + [4931] = 4868, + [4932] = 4876, + [4933] = 4808, + [4934] = 4811, [4935] = 4935, - [4936] = 4845, - [4937] = 486, - [4938] = 4854, - [4939] = 4855, - [4940] = 4856, - [4941] = 4941, - [4942] = 4942, - [4943] = 4845, - [4944] = 4944, - [4945] = 4854, - [4946] = 4855, - [4947] = 4856, - [4948] = 4849, - [4949] = 4915, - [4950] = 4845, + [4936] = 1061, + [4937] = 4937, + [4938] = 4841, + [4939] = 4939, + [4940] = 4940, + [4941] = 914, + [4942] = 958, + [4943] = 4943, + [4944] = 4847, + [4945] = 4850, + [4946] = 962, + [4947] = 4907, + [4948] = 4948, + [4949] = 4949, + [4950] = 4950, [4951] = 4951, - [4952] = 4854, - [4953] = 4855, - [4954] = 4856, + [4952] = 4952, + [4953] = 4953, + [4954] = 4954, [4955] = 4955, - [4956] = 4845, - [4957] = 4862, - [4958] = 4854, - [4959] = 4855, - [4960] = 4856, - [4961] = 4867, - [4962] = 4845, - [4963] = 4846, - [4964] = 4854, - [4965] = 4855, - [4966] = 4856, - [4967] = 4839, - [4968] = 4968, - [4969] = 4807, - [4970] = 4970, - [4971] = 4971, - [4972] = 4972, - [4973] = 4973, - [4974] = 4890, - [4975] = 4975, - [4976] = 4976, - [4977] = 930, - [4978] = 4885, - [4979] = 4852, - [4980] = 4980, - [4981] = 4955, - [4982] = 4982, - [4983] = 4983, - [4984] = 4970, - [4985] = 4849, - [4986] = 4844, - [4987] = 4854, - [4988] = 4849, - [4989] = 4846, - [4990] = 4990, - [4991] = 4855, - [4992] = 4852, - [4993] = 4993, - [4994] = 4848, - [4995] = 4856, - [4996] = 4877, - [4997] = 4845, - [4998] = 4854, - [4999] = 4840, - [5000] = 5000, - [5001] = 4839, + [4956] = 4949, + [4957] = 4957, + [4958] = 888, + [4959] = 4959, + [4960] = 4960, + [4961] = 4961, + [4962] = 4962, + [4963] = 4963, + [4964] = 4963, + [4965] = 4965, + [4966] = 4966, + [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] = 4963, + [4993] = 4965, + [4994] = 4966, + [4995] = 4949, + [4996] = 4952, + [4997] = 4957, + [4998] = 4962, + [4999] = 4999, + [5000] = 939, + [5001] = 4960, [5002] = 5002, - [5003] = 5003, - [5004] = 890, - [5005] = 5005, - [5006] = 4839, - [5007] = 4851, - [5008] = 476, - [5009] = 4849, - [5010] = 4853, - [5011] = 4841, + [5003] = 4963, + [5004] = 4965, + [5005] = 4966, + [5006] = 4951, + [5007] = 5002, + [5008] = 4957, + [5009] = 5009, + [5010] = 5010, + [5011] = 5011, [5012] = 5012, - [5013] = 5013, - [5014] = 4976, - [5015] = 5003, - [5016] = 4849, - [5017] = 4876, - [5018] = 4942, + [5013] = 4963, + [5014] = 4965, + [5015] = 4966, + [5016] = 491, + [5017] = 5017, + [5018] = 4957, [5019] = 5019, - [5020] = 5020, - [5021] = 4843, - [5022] = 4843, - [5023] = 5023, - [5024] = 4847, - [5025] = 4846, - [5026] = 4885, - [5027] = 4897, - [5028] = 4841, - [5029] = 5029, - [5030] = 4975, - [5031] = 5031, - [5032] = 5032, - [5033] = 4970, - [5034] = 4972, - [5035] = 5002, - [5036] = 4983, - [5037] = 5037, - [5038] = 4845, - [5039] = 5012, + [5020] = 4963, + [5021] = 4965, + [5022] = 4966, + [5023] = 4951, + [5024] = 4952, + [5025] = 4957, + [5026] = 5026, + [5027] = 4963, + [5028] = 4965, + [5029] = 4966, + [5030] = 5030, + [5031] = 5009, + [5032] = 4957, + [5033] = 5033, + [5034] = 4963, + [5035] = 4965, + [5036] = 4966, + [5037] = 4955, + [5038] = 5038, + [5039] = 4957, [5040] = 5040, - [5041] = 4915, - [5042] = 5042, - [5043] = 4968, - [5044] = 4855, - [5045] = 4846, - [5046] = 4849, - [5047] = 5037, - [5048] = 4846, - [5049] = 4871, - [5050] = 4975, - [5051] = 4843, - [5052] = 2521, - [5053] = 4951, - [5054] = 4839, - [5055] = 4862, - [5056] = 5056, - [5057] = 5057, - [5058] = 4867, - [5059] = 5013, - [5060] = 4852, - [5061] = 5061, - [5062] = 4915, - [5063] = 5031, - [5064] = 4854, - [5065] = 5061, - [5066] = 4855, - [5067] = 4856, + [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] = 4866, - [5072] = 4840, - [5073] = 4847, - [5074] = 5023, - [5075] = 4839, + [5071] = 5071, + [5072] = 5030, + [5073] = 5073, + [5074] = 5074, + [5075] = 5075, [5076] = 5076, - [5077] = 5077, - [5078] = 5076, - [5079] = 5000, - [5080] = 4851, - [5081] = 5081, - [5082] = 5082, - [5083] = 4885, - [5084] = 2592, - [5085] = 486, - [5086] = 4853, - [5087] = 5087, - [5088] = 5069, - [5089] = 4841, - [5090] = 2524, - [5091] = 4885, - [5092] = 5092, - [5093] = 5093, - [5094] = 4975, - [5095] = 4852, - [5096] = 4843, - [5097] = 4849, - [5098] = 5098, - [5099] = 4852, - [5100] = 4839, - [5101] = 4847, - [5102] = 4846, - [5103] = 486, - [5104] = 5104, - [5105] = 4993, - [5106] = 4968, - [5107] = 4972, - [5108] = 4973, - [5109] = 4890, - [5110] = 4845, - [5111] = 5111, - [5112] = 4848, - [5113] = 4844, - [5114] = 490, - [5115] = 4855, - [5116] = 4851, - [5117] = 4847, - [5118] = 492, - [5119] = 5119, - [5120] = 497, - [5121] = 4975, - [5122] = 4854, - [5123] = 5123, - [5124] = 4915, + [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] = 4845, - [5127] = 4842, - [5128] = 4852, - [5129] = 4856, - [5130] = 4866, - [5131] = 5131, - [5132] = 5003, + [5126] = 2517, + [5127] = 5045, + [5128] = 5076, + [5129] = 4999, + [5130] = 5100, + [5131] = 4963, + [5132] = 5030, [5133] = 5133, - [5134] = 4855, - [5135] = 4856, - [5136] = 4885, - [5137] = 4982, + [5134] = 4965, + [5135] = 4966, + [5136] = 5136, + [5137] = 5137, [5138] = 5138, - [5139] = 4849, - [5140] = 2530, - [5141] = 4849, + [5139] = 4961, + [5140] = 5140, + [5141] = 2539, [5142] = 5142, - [5143] = 4846, - [5144] = 5032, - [5145] = 5145, - [5146] = 4846, - [5147] = 4968, - [5148] = 4972, - [5149] = 4973, - [5150] = 4890, - [5151] = 938, - [5152] = 4848, - [5153] = 4975, - [5154] = 4853, - [5155] = 4968, - [5156] = 4972, - [5157] = 4973, - [5158] = 4890, - [5159] = 4968, - [5160] = 4972, - [5161] = 4973, - [5162] = 4890, - [5163] = 4968, - [5164] = 4972, - [5165] = 4973, - [5166] = 4890, - [5167] = 4968, - [5168] = 4973, - [5169] = 4890, - [5170] = 4968, - [5171] = 4973, - [5172] = 4890, - [5173] = 4968, - [5174] = 4973, - [5175] = 4890, - [5176] = 4968, - [5177] = 4973, - [5178] = 4890, - [5179] = 4968, - [5180] = 4973, - [5181] = 4890, - [5182] = 4968, - [5183] = 4973, - [5184] = 4890, - [5185] = 4968, - [5186] = 4973, - [5187] = 4890, - [5188] = 4968, - [5189] = 4973, - [5190] = 4890, - [5191] = 4968, - [5192] = 4973, - [5193] = 4890, - [5194] = 4968, - [5195] = 4973, - [5196] = 4890, - [5197] = 4968, - [5198] = 4973, - [5199] = 4890, - [5200] = 4968, - [5201] = 4973, - [5202] = 4890, - [5203] = 4968, - [5204] = 4973, - [5205] = 4890, - [5206] = 4968, - [5207] = 4973, - [5208] = 4890, - [5209] = 4845, - [5210] = 4852, - [5211] = 4917, - [5212] = 4845, - [5213] = 4844, - [5214] = 4951, - [5215] = 5111, - [5216] = 4852, - [5217] = 4854, - [5218] = 4915, - [5219] = 4912, - [5220] = 4854, - [5221] = 4855, - [5222] = 4855, - [5223] = 4856, - [5224] = 4856, - [5225] = 4849, - [5226] = 5037, - [5227] = 4846, - [5228] = 4851, - [5229] = 4973, - [5230] = 4975, - [5231] = 5231, - [5232] = 4839, - [5233] = 4840, - [5234] = 2581, - [5235] = 4852, - [5236] = 4841, - [5237] = 4871, - [5238] = 4854, - [5239] = 4854, - [5240] = 4855, - [5241] = 4856, - [5242] = 4878, - [5243] = 4847, - [5244] = 5231, - [5245] = 4840, - [5246] = 4871, - [5247] = 4876, - [5248] = 4878, - [5249] = 4942, - [5250] = 5069, - [5251] = 4839, - [5252] = 4851, - [5253] = 4851, - [5254] = 4853, - [5255] = 5231, - [5256] = 4841, - [5257] = 5257, - [5258] = 5258, + [5143] = 4828, + [5144] = 4999, + [5145] = 4949, + [5146] = 5146, + [5147] = 4963, + [5148] = 4951, + [5149] = 5017, + [5150] = 5150, + [5151] = 5151, + [5152] = 4951, + [5153] = 497, + [5154] = 5009, + [5155] = 5091, + [5156] = 5071, + [5157] = 510, + [5158] = 4966, + [5159] = 488, + [5160] = 5017, + [5161] = 5161, + [5162] = 4952, + [5163] = 4965, + [5164] = 5030, + [5165] = 5165, + [5166] = 4955, + [5167] = 4957, + [5168] = 5168, + [5169] = 4959, + [5170] = 5101, + [5171] = 5171, + [5172] = 5011, + [5173] = 5173, + [5174] = 491, + [5175] = 4999, + [5176] = 4991, + [5177] = 4991, + [5178] = 5178, + [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[] = { @@ -10749,1848 +10879,1885 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1720, - '"', 1687, - '#', 2190, - '$', 1512, - '&', 826, - '\'', 1690, - '(', 1563, - ')', 1618, - '*', 1114, - '+', 1119, - ',', 1471, - '-', 1120, - '.', 1723, - '/', 1116, - ':', 1715, - ';', 1453, - '<', 1143, - '=', 675, - '>', 1146, - '?', 1719, - '@', 1483, - '[', 1667, - ']', 1468, - '^', 1733, - '_', 1504, - '`', 1694, - '{', 1500, - '|', 1454, - '}', 1501, + '!', 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(570); + lookahead == ' ') SKIP(565); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1375); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1372); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(1450); + if (lookahead == '\n') ADVANCE(1447); END_STATE(); case 2: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1720, - '#', 2190, - '$', 1472, - '(', 1469, - ')', 1470, - ',', 1471, - '-', 1489, - '.', 1726, - ':', 1465, - ';', 1453, - '<', 1143, - '=', 675, - '>', 1481, - '?', 1719, - '@', 1483, - '[', 1467, - ']', 1468, - '{', 1500, - '|', 1454, - '}', 1501, + '!', 1717, + '#', 2187, + '$', 1469, + '(', 1466, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1724, + ':', 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(1375); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); END_STATE(); case 3: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1720, - '#', 2190, - '$', 1472, - '(', 1469, - ')', 1470, - ',', 1471, - '-', 1489, - '.', 1727, - ':', 1465, - ';', 1453, - '=', 675, - '>', 1481, - '?', 1719, - '[', 1467, - ']', 1468, - '{', 1500, - '|', 1454, - '}', 1501, + '!', 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(1375); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); END_STATE(); case 4: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1720, - '#', 2190, - ')', 1470, - '.', 1722, - ':', 1715, - ';', 1453, - '=', 322, - '?', 1719, - 'a', 420, - 'e', 287, - 'i', 386, - 'o', 288, - 'x', 430, - '{', 1500, - '|', 1454, - '}', 1501, + '!', 1717, + '#', 2187, + '(', 1466, + ')', 1467, + '-', 297, + '.', 1719, + ':', 1712, + ';', 1450, + '=', 674, + '>', 1478, + '?', 1716, + '[', 1464, + 'a', 416, + 'e', 288, + 'i', 382, + 'o', 289, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(4); END_STATE(); case 5: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1720, - '#', 2190, - ')', 1470, - '.', 1724, - ':', 1715, - ';', 1453, - '=', 322, - '?', 1719, - 'a', 420, - 'e', 287, - 'i', 386, - 'o', 288, - 'x', 430, - '{', 1500, - '|', 1454, - '}', 1501, + '!', 1717, + '#', 2187, + '(', 1466, + ')', 1467, + '-', 297, + '.', 1721, + ':', 1712, + ';', 1450, + '=', 674, + '>', 1478, + '?', 1716, + '[', 1464, + 'a', 416, + 'e', 288, + 'i', 382, + 'o', 289, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(4); END_STATE(); case 6: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '$', 1472, - '(', 1563, - '*', 1514, - '+', 1578, - '-', 1495, - '.', 1606, - '/', 1569, - '<', 1552, - '=', 1797, - '>', 1482, - '_', 1815, - 'a', 1867, - 'b', 1854, - 'e', 1868, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1881, - 's', 1901, - 'x', 1873, - '{', 1500, + '!', 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(1611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(6); END_STATE(); case 7: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '$', 1472, - '(', 1563, - '*', 1514, - '+', 1578, - '-', 1495, - '.', 1817, - '/', 1569, - '<', 1552, - '=', 1797, - '>', 1482, - '_', 1815, - 'a', 1867, - 'b', 1854, - 'e', 1868, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1881, - 's', 1901, - 'x', 1873, - '{', 1500, + '!', 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(1611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(6); END_STATE(); case 8: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1597, - '/', 1569, - '<', 1552, - '=', 1797, - '>', 1482, - 'B', 1655, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'a', 1867, - 'b', 1658, - 'd', 1826, - 'e', 1807, - 'g', 1811, - 'h', 1824, - 'i', 1865, - 'k', 1811, - 'l', 1853, - 'm', 1813, - 'n', 1874, - 'o', 1881, - 'p', 1811, - 's', 1840, - 't', 1811, - 'u', 1893, - 'w', 1860, - 'x', 1873, - '{', 1500, - 0xb5, 1893, + '!', 1792, + '#', 2187, + '$', 1469, + '(', 1560, + '*', 1511, + '+', 1575, + '-', 1492, + '.', 1603, + '/', 1566, + '<', 1549, + '=', 1794, + '>', 1479, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1865, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1597, - '/', 1569, - '<', 1552, - '=', 1797, - '>', 1482, - 'E', 1821, - 'a', 1867, - 'b', 1854, - 'e', 1818, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1881, - 's', 1901, - 'x', 1873, - '{', 1500, + '!', 1792, + '#', 2187, + '$', 1469, + '(', 1560, + '*', 1511, + '+', 1575, + '-', 1492, + '.', 1814, + '/', 1566, + '<', 1549, + '=', 1794, + '>', 1479, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1865, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - '<', 1552, - '=', 1797, - '>', 1482, - 'B', 1655, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - '_', 1815, - 'a', 1867, - 'b', 1658, - 'd', 1826, - 'e', 1807, - 'g', 1811, - 'h', 1824, - 'i', 1865, - 'k', 1811, - 'l', 1853, - 'm', 1813, - 'n', 1874, - 'o', 1881, - 'p', 1811, - 's', 1840, - 't', 1811, - 'u', 1893, - 'w', 1860, - 'x', 1873, - '{', 1500, - 0xb5, 1893, + '!', 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(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 11: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - '<', 1552, - '=', 1797, - '>', 1482, - 'B', 1655, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'a', 1867, - 'b', 1658, - 'd', 1826, - 'e', 1807, - 'g', 1811, - 'h', 1824, - 'i', 1865, - 'k', 1811, - 'l', 1853, - 'm', 1813, - 'n', 1874, - 'o', 1881, - 'p', 1811, - 's', 1840, - 't', 1811, - 'u', 1893, - 'w', 1860, - 'x', 1873, - '{', 1500, - 0xb5, 1893, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1594, + '/', 1566, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1815, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 12: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - '<', 1552, - '=', 1797, - '>', 1482, - 'B', 1655, - 'E', 1812, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'a', 1867, - 'b', 1658, - 'd', 1826, - 'e', 1810, - 'g', 1811, - 'h', 1824, - 'i', 1865, - 'k', 1811, - 'l', 1853, - 'm', 1813, - 'n', 1874, - 'o', 1881, - 'p', 1811, - 's', 1840, - 't', 1811, - 'u', 1893, - 'w', 1860, - 'x', 1873, - '{', 1500, - 0xb5, 1893, + '!', 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(1936); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - '<', 1552, - '=', 1797, - '>', 1482, - 'E', 1821, - '_', 1815, - 'a', 1867, - 'b', 1854, - 'e', 1818, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1881, - 's', 1901, - 'x', 1873, - '{', 1500, + '!', 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(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 14: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - '<', 1552, - '=', 1797, - '>', 1482, - 'E', 1821, - 'a', 1867, - 'b', 1854, - 'e', 1818, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1881, - 's', 1901, - 'x', 1873, - '{', 1500, + '!', 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(1936); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 15: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - '<', 1552, - '=', 1797, - '>', 1482, - 'a', 1867, - 'b', 1854, - 'e', 1868, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1881, - 's', 1901, - 'x', 1873, - '{', 1500, + '!', 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(1936); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1596, - '/', 1569, - '<', 1552, - '=', 1797, - '>', 1482, - 'E', 1821, - 'a', 1867, - 'b', 1854, - 'e', 1818, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1881, - 's', 1901, - 'x', 1873, - '{', 1500, + '!', 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(1936); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 17: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - '<', 1552, - '=', 1797, - '>', 1482, - 'E', 1821, - '_', 1815, - 'a', 1867, - 'b', 1854, - 'e', 1818, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1881, - 's', 1901, - 'x', 1873, - '{', 1500, + '!', 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(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 18: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - '<', 1552, - '=', 1797, - '>', 1482, - 'E', 1821, - 'a', 1867, - 'b', 1854, - 'e', 1818, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1881, - 's', 1901, - 'x', 1873, - '{', 1500, + '!', 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(1936); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 19: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - '<', 1552, - '=', 1797, - '>', 1482, - 'a', 1867, - 'b', 1854, - 'e', 1868, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1881, - 's', 1901, - 'x', 1873, - '{', 1500, + '!', 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(1936); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 319, - '#', 2190, - '$', 1472, - '*', 1514, - '+', 1579, - '-', 1496, - '.', 336, - '/', 1569, - '<', 1552, - '=', 321, - '>', 1482, - 'a', 420, - 'b', 399, - 'e', 424, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 451, - 's', 485, - 'x', 430, - '{', 1500, + '!', 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', 1450, + '\n', 1447, '\r', 1, - '!', 319, - '#', 2190, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 321, - '>', 1482, - 'a', 420, - 'b', 399, - 'e', 284, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 278, - 's', 485, - 'x', 430, - '|', 1454, + '!', 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', 1450, + '\n', 1447, '\r', 1, - '!', 319, - '#', 2190, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 321, - '>', 1482, - 'a', 420, - 'b', 399, - 'e', 286, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 288, - 's', 485, - 'x', 430, - '|', 1454, + '!', 320, + '#', 2187, + '$', 1469, + '*', 1511, + '+', 1576, + '-', 1493, + '.', 336, + '/', 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(22); END_STATE(); case 23: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 319, - '#', 2190, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - ':', 1715, - ';', 1453, - '<', 1552, - '=', 321, - '>', 1482, - 'a', 420, - 'b', 399, + '!', 320, + '#', 2187, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 322, + '>', 1479, + 'a', 416, + 'b', 395, 'e', 284, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 278, - 's', 485, - 'x', 430, - '|', 1454, - '}', 1501, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, + 'o', 279, + 's', 480, + 'x', 426, + '|', 1451, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); END_STATE(); case 24: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 319, - '#', 2190, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 321, - '>', 1482, - 'a', 420, - 'b', 399, - 'e', 284, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 278, - 's', 485, - 'x', 430, - '|', 1454, - '}', 1501, + '!', 320, + '#', 2187, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 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, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); END_STATE(); case 25: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 319, - '#', 2190, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 321, - '>', 1482, - 'a', 420, - 'b', 399, - 'e', 286, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 288, - 's', 485, - 'x', 430, - '|', 1454, - '}', 1501, + '!', 320, + '#', 2187, + '*', 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', 480, + 'x', 426, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); END_STATE(); case 26: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 319, - '#', 2190, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - '<', 1552, - '=', 321, - '>', 1482, - 'a', 420, - 'b', 399, + '!', 320, + '#', 2187, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 322, + '>', 1479, + 'a', 416, + 'b', 395, 'e', 284, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 278, - 's', 485, - 'x', 430, - '|', 1454, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, + 'o', 279, + 's', 480, + 'x', 426, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); END_STATE(); case 27: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 319, - '#', 2190, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - '<', 1552, - '=', 321, - '>', 1482, - 'a', 420, - 'b', 399, - 'e', 286, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 288, - 's', 485, - 'x', 430, - '|', 1454, + '!', 320, + '#', 2187, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 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(27); END_STATE(); case 28: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 319, - '#', 2190, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - '<', 1552, - '=', 321, - '>', 1482, - 'a', 420, - 'b', 399, - 'e', 424, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 451, - 's', 485, - 'x', 430, - '{', 1500, + '!', 320, + '#', 2187, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + '<', 1549, + '=', 322, + '>', 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', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - ')', 1470, - '+', 704, - '-', 1493, - '.', 699, - '0', 1625, - ':', 1715, - ';', 1453, - '=', 1731, - '@', 1464, - 'I', 811, - 'N', 807, - '[', 1467, - '^', 1733, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 771, - 't', 774, - 'u', 787, - 'w', 749, - '{', 1500, - '}', 1501, + '!', 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(1641); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(826); + lookahead == ' ') SKIP(29); END_STATE(); case 30: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - ')', 1470, - '+', 704, - '-', 1493, - '.', 699, - '0', 1625, - ':', 1715, - ';', 1453, - '@', 1464, - 'I', 811, - 'N', 807, - '[', 1467, - '^', 1733, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 771, - 't', 774, - 'u', 787, - 'w', 749, - '{', 1500, - '}', 1501, + '!', 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(1641); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(826); END_STATE(); case 31: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - ')', 1470, - '+', 1582, - '-', 1493, - '.', 700, - '0', 1625, - ':', 1465, - ';', 1453, - '<', 1143, - '=', 322, - '>', 1481, - '@', 1464, - 'I', 811, - 'N', 807, - '[', 1467, - ']', 1468, - '^', 1733, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 771, - 't', 774, - 'u', 787, - 'w', 749, - '{', 1500, - '|', 1454, - '}', 1501, + '"', 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(1641); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead)) ADVANCE(826); + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); case 32: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - ')', 1470, - '+', 1582, - '-', 1493, - '.', 700, - '0', 1625, - ':', 1465, - ';', 1453, - '=', 322, - '>', 1481, - '@', 1464, - 'I', 811, - 'N', 807, - '[', 1467, - ']', 1468, - '^', 1733, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 771, - 't', 774, - 'u', 787, - 'w', 749, - '{', 1500, - '|', 1454, - '}', 1501, + '"', 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(1641); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead)) ADVANCE(826); + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); case 33: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - '+', 704, - '-', 1493, - '.', 699, - '0', 1625, - ';', 1453, - '=', 1731, - 'I', 811, - 'N', 807, - '[', 1467, - '^', 1733, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 771, - 't', 774, - 'u', 787, - 'w', 753, - '{', 1500, - '\t', 1452, - ' ', 1452, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + ')', 1467, + '+', 1579, + '-', 1490, + '.', 697, + '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(1641); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); + 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', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - '+', 704, - '-', 1493, - '.', 699, - '0', 1625, - '=', 675, - '>', 1481, - '@', 1483, - 'I', 811, - 'N', 807, - '[', 1467, - '^', 1733, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 771, - 't', 774, - 'u', 787, - 'w', 753, - '{', 1500, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + ')', 1467, + '+', 1579, + '-', 1490, + '.', 697, + '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(1641); + 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(826); + (lookahead < '0' || '>' < lookahead)) ADVANCE(823); END_STATE(); case 35: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - '+', 704, - '-', 1493, - '.', 699, - '0', 1625, - '=', 675, - '>', 1481, - 'I', 811, - 'N', 807, - '[', 1467, - '^', 1733, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 771, - 't', 774, - 'u', 787, - 'w', 753, - '{', 1500, + '"', 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(1641); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); + 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', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - '+', 704, - '-', 298, - '.', 720, - '=', 1731, - 'I', 811, - 'N', 807, - '[', 1467, - ']', 1468, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 800, - 't', 774, - 'u', 787, - 'w', 753, - '{', 1500, + '"', 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(37); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); + 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', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - '+', 704, - '-', 298, - '.', 720, - 'I', 811, - 'N', 807, - '[', 1467, - ']', 1468, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 800, - 't', 774, - 'u', 787, - 'w', 753, - '{', 1500, + '"', 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(37); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); + 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', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - '+', 307, - '-', 1493, - '.', 308, - '0', 1628, - ':', 1715, - 'N', 532, - '[', 1467, - '_', 341, - '`', 1694, - 'f', 346, - 'n', 441, - 't', 456, - '{', 1500, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 701, + '-', 299, + '.', 717, + '=', 1728, + 'I', 808, + 'N', 804, + '[', 1464, + ']', 1465, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); + 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', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - '+', 1582, - '-', 1493, - '.', 703, - '0', 1630, - 'I', 811, - 'N', 807, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 800, - 't', 774, - 'u', 787, - 'w', 753, - '}', 1501, + '"', 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 (('1' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); + 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', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - '+', 2002, - '-', 1493, - '.', 2000, - '0', 1626, - 'N', 2049, - '[', 1467, - '_', 2014, - '`', 1694, - 'f', 2017, - 'n', 2029, - 't', 2032, - '{', 1500, + '"', 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 (lookahead == 'I' || - lookahead == 'i') ADVANCE(2053); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + lookahead == 'i') ADVANCE(536); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + END_STATE(); + case 41: + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 1579, + '-', 1490, + '.', 700, + '0', 1627, + 'I', 808, + 'N', 804, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, + '}', 1498, + ); + 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(2050); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2072); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 41: + case 43: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - '+', 2002, - '-', 1490, - '.', 2001, - '0', 1626, - ':', 1715, - ';', 1453, - 'N', 2049, - '[', 1467, - '_', 2014, - '`', 1694, - 'e', 1991, - 'f', 2017, - 'n', 2045, - 'o', 1992, - 't', 2032, - '{', 1500, - '|', 1454, - '}', 1501, - '\t', 1451, - ' ', 1451, - 'I', 2053, - 'i', 2053, + '"', 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(1642); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ']') ADVANCE(2072); + lookahead != ']') ADVANCE(2069); END_STATE(); - case 42: + case 44: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - '+', 2002, - '-', 1490, - '.', 2001, - '0', 1626, - ';', 1453, - 'N', 2049, - '[', 1467, - '_', 2014, - '`', 1694, - 'e', 1995, - 'f', 2017, - 'n', 2045, - 'o', 1996, - 't', 2032, - '{', 1500, - '\t', 1452, - ' ', 1452, - 'I', 2053, - 'i', 2053, + '"', 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(1642); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2072); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 43: + case 45: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - '+', 2084, - ',', 1471, - '-', 2083, - '.', 2085, - '0', 1627, - 'N', 2102, - '[', 1467, - ']', 1468, - '_', 2089, - '`', 1694, - 'f', 2092, - 'n', 2101, - 't', 2098, - '{', 1500, + '"', 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(43); + lookahead == ' ') SKIP(45); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2108); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == 'i') ADVANCE(2105); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2130); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2127); END_STATE(); - case 44: + case 46: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - '+', 2141, - '-', 2140, - '.', 2139, - '0', 1629, - 'N', 2156, - '[', 1467, - '_', 2143, - '`', 1694, - 'f', 2146, - 'n', 2155, - 't', 2152, - '{', 1500, + '"', 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(44); + lookahead == ' ') SKIP(46); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2162); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2176); + 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 45: + case 47: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1472, - '\'', 1690, - '(', 1469, - '+', 2002, - '-', 297, - '.', 2000, - '0', 1626, - 'N', 2049, - '[', 1467, - '_', 1503, - '`', 1694, - 'f', 2017, - 'n', 2045, - 't', 2032, - '{', 1500, - '}', 1501, + '"', 1684, + '#', 2187, + '$', 1469, + '\'', 1687, + '(', 1466, + '+', 1999, + '-', 298, + '.', 1997, + '0', 1623, + 'N', 2046, + '[', 1464, + '_', 1500, + '`', 1691, + 'f', 2014, + 'n', 2042, + 't', 2029, + '{', 1497, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(45); + lookahead == ' ') SKIP(47); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2053); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + 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(2072); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 46: + case 48: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1472, - '\'', 1690, - '(', 1469, - '+', 2084, - ',', 1471, - '-', 2083, - '.', 2082, - '0', 1627, - 'N', 2102, - '[', 1467, - ']', 1468, - '_', 2089, - '`', 1694, - 'f', 2092, - 'n', 2101, - 't', 2098, - '{', 1500, + '"', 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(46); + lookahead == ' ') SKIP(48); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2108); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == 'i') ADVANCE(2105); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2130); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2127); END_STATE(); - case 47: + case 49: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1472, - '\'', 1690, - '(', 1469, - '-', 1488, - '`', 1694, - 'f', 1517, - 'n', 1521, - 't', 1522, - '{', 1500, + '"', 1684, + '#', 2187, + '$', 1469, + '\'', 1687, + '(', 1466, + '-', 1485, + '`', 1691, + 'f', 1514, + 'n', 1518, + 't', 1519, + '{', 1497, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(47); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); + 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 48: + case 50: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '\'', 1690, - '+', 2141, - '-', 2140, - '.', 2139, - '>', 1481, - 'N', 2156, - '_', 2143, - '`', 1694, - 'f', 2146, - 'n', 2155, - 't', 2152, + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 2138, + '-', 2137, + '.', 2136, + '>', 1478, + 'N', 2153, + '_', 2140, + '`', 1691, + 'f', 2143, + 'n', 2152, + 't', 2149, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(48); + lookahead == ' ') SKIP(50); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2176); + 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 49: + case 51: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2193, - '$', 1474, - '\'', 1690, - '(', 1469, - '+', 850, - '-', 1494, - '.', 851, - '0', 866, - ':', 1715, - 'N', 1022, - '[', 1467, - '_', 868, - '`', 1694, - 'f', 876, - 'n', 946, - 't', 961, - '{', 1500, + '"', 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(38); + lookahead == ' ') SKIP(40); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1027); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(871); + 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(1048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1045); END_STATE(); - case 50: + case 52: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - '+', 1963, - ',', 1471, - '-', 1491, - '.', 1602, - ':', 1465, - '=', 675, - ']', 1468, - '_', 1347, - '|', 1454, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + '+', 1960, + ',', 1468, + '-', 1488, + '.', 1599, + ':', 1462, + '=', 672, + ']', 1465, + '_', 1344, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(72); + lookahead == ' ') SKIP(74); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1988); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); + 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 51: + case 53: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - '+', 1963, - ',', 1471, - '-', 1491, - '.', 1964, - ':', 1465, - '=', 675, - ']', 1468, - '_', 1347, - '|', 1454, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + '+', 1960, + ',', 1468, + '-', 1488, + '.', 1961, + ':', 1462, + '=', 672, + ']', 1465, + '_', 1344, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(72); + lookahead == ' ') SKIP(74); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1988); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); + 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 52: + case 54: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - ',', 1471, - '-', 1489, - '.', 1603, - ':', 1465, - '=', 675, - 'E', 1337, - 'G', 1345, - 'K', 1345, - 'M', 1345, - 'P', 1345, - 'T', 1345, - ']', 1468, - 'd', 1350, - 'e', 1336, - 'g', 1344, - 'h', 1368, - 'k', 1344, - 'm', 1346, - 'n', 1370, - 'p', 1344, - 's', 1355, - 't', 1344, - 'u', 1370, - 'w', 1356, - '|', 1454, - 0xb5, 1370, + '#', 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(73); + lookahead == ' ') SKIP(76); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1659); + lookahead == 'b') ADVANCE(1656); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12598,29 +12765,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1988); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); + lookahead == '^') ADVANCE(1985); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); - case 53: + case 55: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - ',', 1471, - '-', 1489, - '.', 1603, - ':', 1465, - '=', 675, - ']', 1468, - '|', 1454, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1600, + ':', 1462, + '=', 672, + ']', 1465, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(73); + lookahead == ' ') SKIP(76); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1338); + lookahead == 'e') ADVANCE(1335); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12628,49 +12795,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1988); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); + lookahead == '^') ADVANCE(1985); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); - case 54: + case 56: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - ',', 1471, - '-', 1489, - '.', 1967, - ':', 1465, - '=', 675, - 'E', 1337, - 'G', 1345, - 'K', 1345, - 'M', 1345, - 'P', 1345, - 'T', 1345, - ']', 1468, - '_', 1347, - 'd', 1350, - 'e', 1336, - 'g', 1344, - 'h', 1368, - 'k', 1344, - 'm', 1346, - 'n', 1370, - 'p', 1344, - 's', 1355, - 't', 1344, - 'u', 1370, - 'w', 1356, - '|', 1454, - 0xb5, 1370, + '#', 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(73); + lookahead == ' ') SKIP(76); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1659); + lookahead == 'b') ADVANCE(1656); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12678,49 +12845,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1988); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); + 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 55: + case 57: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - ',', 1471, - '-', 1489, - '.', 1967, - ':', 1465, - '=', 675, - 'E', 1337, - 'G', 1345, - 'K', 1345, - 'M', 1345, - 'P', 1345, - 'T', 1345, - ']', 1468, - 'd', 1350, - 'e', 1336, - 'g', 1344, - 'h', 1368, - 'k', 1344, - 'm', 1346, - 'n', 1370, - 'p', 1344, - 's', 1355, - 't', 1344, - 'u', 1370, - 'w', 1356, - '|', 1454, - 0xb5, 1370, + '#', 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(73); + lookahead == ' ') SKIP(76); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1659); + lookahead == 'b') ADVANCE(1656); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12728,48 +12895,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1988); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); + lookahead == '^') ADVANCE(1985); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); - case 56: + case 58: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - ',', 1471, - '-', 1489, - '.', 1967, - ':', 1465, - '=', 675, - 'E', 1345, - 'G', 1345, - 'K', 1345, - 'M', 1345, - 'P', 1345, - 'T', 1345, - ']', 1468, - 'd', 1350, - 'e', 1344, - 'g', 1344, - 'h', 1368, - 'k', 1344, - 'm', 1346, - 'n', 1370, - 'p', 1344, - 's', 1355, - 't', 1344, - 'u', 1370, - 'w', 1356, - '|', 1454, - 0xb5, 1370, + '#', 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(73); + lookahead == ' ') SKIP(76); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1659); + lookahead == 'b') ADVANCE(1656); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12777,30 +12944,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1988); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); + lookahead == '^') ADVANCE(1985); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); - case 57: + case 59: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - ',', 1471, - '-', 1489, - '.', 1967, - ':', 1465, - '=', 675, - ']', 1468, - '_', 1347, - '|', 1454, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1964, + ':', 1462, + '=', 672, + ']', 1465, + '_', 1344, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(73); + lookahead == ' ') SKIP(76); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1338); + lookahead == 'e') ADVANCE(1335); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12808,30 +12975,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1988); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); + 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 58: + case 60: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - ',', 1471, - '-', 1489, - '.', 1967, - ':', 1465, - '=', 675, - ']', 1468, - '|', 1454, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1964, + ':', 1462, + '=', 672, + ']', 1465, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(73); + lookahead == ' ') SKIP(76); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1338); + lookahead == 'e') ADVANCE(1335); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12839,27 +13006,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1988); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); + lookahead == '^') ADVANCE(1985); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); - case 59: + case 61: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - ',', 1471, - '-', 1489, - '.', 1967, - ':', 1465, - '=', 675, - ']', 1468, - '|', 1454, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1964, + ':', 1462, + '=', 672, + ']', 1465, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(73); + lookahead == ' ') SKIP(76); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12867,29 +13034,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1988); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); + lookahead == '^') ADVANCE(1985); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); - case 60: + case 62: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - ',', 1471, - '-', 1489, - '.', 1601, - ':', 1465, - '=', 675, - ']', 1468, - '|', 1454, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1598, + ':', 1462, + '=', 672, + ']', 1465, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(73); + lookahead == ' ') SKIP(76); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1338); + lookahead == 'e') ADVANCE(1335); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12897,30 +13064,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1988); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); + lookahead == '^') ADVANCE(1985); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); - case 61: + case 63: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - ',', 1471, - '-', 1489, - '.', 1965, - ':', 1465, - '=', 675, - ']', 1468, - '_', 1347, - '|', 1454, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1962, + ':', 1462, + '=', 672, + ']', 1465, + '_', 1344, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(73); + lookahead == ' ') SKIP(76); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1338); + lookahead == 'e') ADVANCE(1335); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12928,30 +13095,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1988); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); + 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 62: + case 64: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - ',', 1471, - '-', 1489, - '.', 1965, - ':', 1465, - '=', 675, - ']', 1468, - '|', 1454, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1962, + ':', 1462, + '=', 672, + ']', 1465, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(73); + lookahead == ' ') SKIP(76); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1338); + lookahead == 'e') ADVANCE(1335); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12959,27 +13126,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1988); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); + lookahead == '^') ADVANCE(1985); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1372); END_STATE(); - case 63: + case 65: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - ',', 1471, - '-', 1489, - '.', 1965, - ':', 1465, - '=', 675, - ']', 1468, - '|', 1454, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 1962, + ':', 1462, + '=', 672, + ']', 1465, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(73); + lookahead == ' ') SKIP(76); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12987,3105 +13154,3059 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1988); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1375); - END_STATE(); - case 64: - ADVANCE_MAP( - '\n', 1450, - '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - '.', 1606, - ';', 1453, - '_', 1815, - '\t', 1452, - ' ', 1452, - '+', 1793, - '-', 1793, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); - END_STATE(); - case 65: - ADVANCE_MAP( - '\n', 1450, - '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - '.', 1606, - '=', 1798, - '_', 1815, - 'i', 1847, - '|', 1454, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(74); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1793); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); + 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', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - '.', 1606, - '=', 1798, - '_', 1815, - '|', 1454, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1603, + ';', 1450, + '_', 1812, + '\t', 1449, + ' ', 1449, + '+', 1790, + '-', 1790, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(75); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1793); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); + 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', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - '.', 1817, - ';', 1453, - '_', 1815, - '\t', 1452, - ' ', 1452, - '+', 1793, - '-', 1793, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1603, + '=', 1795, + '_', 1812, + 'i', 1844, + '|', 1451, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); + if (lookahead == '\t' || + lookahead == ' ') SKIP(77); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); END_STATE(); case 68: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - '.', 1817, - '=', 1798, - '_', 1815, - 'i', 1847, - '|', 1454, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1603, + '=', 1795, + '_', 1812, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(78); if (lookahead == '+' || - lookahead == '-') ADVANCE(1793); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); + 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', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - '.', 1817, - '=', 1798, - '_', 1815, - '|', 1454, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1814, + ';', 1450, + '_', 1812, + '\t', 1449, + ' ', 1449, + '+', 1790, + '-', 1790, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(75); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1793); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); + 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', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1469, - ')', 1470, - ',', 1471, - '-', 1489, - '.', 311, - ':', 1465, - '=', 675, - '?', 1485, - '[', 1667, - ']', 1468, - '|', 1454, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1814, + '=', 1795, + '_', 1812, + 'i', 1844, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(71); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1375); + lookahead == ' ') SKIP(77); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); END_STATE(); case 71: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1469, - ')', 1470, - ',', 1471, - '-', 1489, - '.', 311, - ':', 1465, - '=', 675, - '[', 1467, - ']', 1468, - '|', 1454, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1814, + '=', 1795, + '_', 1812, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(71); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1375); + 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', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - ')', 1470, - '+', 313, - ',', 1471, - '-', 1492, + '#', 2187, + '$', 1469, + '(', 1466, + ')', 1467, + ',', 1468, + '-', 1486, '.', 312, - ':', 1465, - '=', 675, - ']', 1468, - '|', 1454, + ':', 1462, + '=', 672, + '[', 1464, + ']', 1465, + '|', 1451, ); if (lookahead == '\t' || lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1375); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); END_STATE(); case 73: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - ')', 1470, - ',', 1471, - '-', 1489, - '.', 311, - ':', 1465, - '=', 675, - ']', 1468, - '|', 1454, + '#', 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(1375); + 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', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '.', 336, - '=', 322, - 'i', 385, - '|', 1454, + '#', 2187, + '$', 1469, + ')', 1467, + '+', 314, + ',', 1468, + '-', 1489, + '.', 313, + ':', 1462, + '=', 672, + ']', 1465, + '|', 1451, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); - if (lookahead == '+' || - lookahead == '-') ADVANCE(313); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); END_STATE(); case 75: - if (lookahead == '\n') ADVANCE(1450); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '$') ADVANCE(1472); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '=') ADVANCE(322); - if (lookahead == '|') ADVANCE(1454); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '#', 2187, + '$', 1469, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 312, + ':', 1462, + '=', 672, + '?', 1482, + ']', 1465, + '|', 1451, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(75); - if (lookahead == '+' || - lookahead == '-') ADVANCE(313); + lookahead == ' ') SKIP(76); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); END_STATE(); case 76: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - '.', 1597, - ';', 1453, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'd', 1826, - 'e', 1808, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - 0xb5, 1893, - '\t', 1452, - ' ', 1452, - 'B', 1655, - 'b', 1655, + '#', 2187, + '$', 1469, + ')', 1467, + ',', 1468, + '-', 1486, + '.', 312, + ':', 1462, + '=', 672, + ']', 1465, + '|', 1451, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - '.', 1597, - ';', 1453, - '\t', 1452, - ' ', 1452, - 'E', 1821, - 'e', 1821, + '#', 2187, + '$', 1469, + '.', 336, + '=', 323, + 'i', 381, + '|', 1451, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == '\t' || + lookahead == ' ') SKIP(77); + if (lookahead == '+' || + lookahead == '-') ADVANCE(314); END_STATE(); case 78: - ADVANCE_MAP( - '\n', 1450, - '\r', 1, - '#', 2190, - '(', 1563, - '.', 1792, - ';', 1453, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - '_', 1815, - 'd', 1826, - 'e', 1808, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - 0xb5, 1893, - '\t', 1452, - ' ', 1452, - 'B', 1655, - 'b', 1655, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1469); + if (lookahead == '.') ADVANCE(336); + if (lookahead == '=') ADVANCE(323); + if (lookahead == '|') ADVANCE(1451); + if (lookahead == '\t' || + lookahead == ' ') SKIP(78); + if (lookahead == '+' || + lookahead == '-') ADVANCE(314); END_STATE(); case 79: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - '.', 1792, - ';', 1453, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'd', 1826, - 'e', 1808, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - 0xb5, 1893, - '\t', 1452, - ' ', 1452, - 'B', 1655, - 'b', 1655, + '#', 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(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 80: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - '.', 1792, - ';', 1453, - 'E', 1812, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'd', 1826, - 'e', 1811, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - 0xb5, 1893, - '\t', 1452, - ' ', 1452, - 'B', 1655, - 'b', 1655, + '#', 2187, + '(', 1560, + '.', 1594, + ';', 1450, + '\t', 1449, + ' ', 1449, + 'E', 1818, + 'e', 1818, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 81: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - '.', 1792, - ';', 1453, - '_', 1815, - '\t', 1452, - ' ', 1452, - 'E', 1821, - 'e', 1821, + '#', 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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - '.', 1792, - ';', 1453, - '\t', 1452, - ' ', 1452, - 'E', 1821, - 'e', 1821, + '#', 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 ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 83: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - '.', 1792, - ';', 1453, - '\t', 1452, - ' ', 1452, + '#', 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(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 84: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - '.', 1596, - ';', 1453, - '\t', 1452, - ' ', 1452, - 'E', 1821, - 'e', 1821, + '#', 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(1936); + 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', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ';', 1453, - '_', 1815, - '\t', 1452, - ' ', 1452, - 'E', 1821, - 'e', 1821, + '#', 2187, + '(', 1560, + '.', 1789, + ';', 1450, + '\t', 1449, + ' ', 1449, + 'E', 1818, + 'e', 1818, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 86: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ';', 1453, - '\t', 1452, - ' ', 1452, - 'E', 1821, - 'e', 1821, + '#', 2187, + '(', 1560, + '.', 1789, + ';', 1450, + '\t', 1449, + ' ', 1449, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 87: - if (lookahead == '\n') ADVANCE(1450); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '(') ADVANCE(1563); - if (lookahead == ';') ADVANCE(1453); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1452); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '#', 2187, + '(', 1560, + '.', 1593, + ';', 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 88: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1469, - ')', 1470, - ',', 1471, - '-', 296, - '.', 1725, - ':', 1465, - ';', 1453, - '=', 675, - '>', 1481, - '@', 1483, - '[', 1467, - ']', 1468, - 'c', 1353, - 'f', 1372, - 'i', 1361, - 'o', 1364, - 'v', 1349, - '{', 1500, - '}', 1501, + '#', 2187, + '(', 1560, + ';', 1450, + '_', 1812, + '\t', 1449, + ' ', 1449, + 'E', 1818, + 'e', 1818, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(89); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1375); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 89: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1469, - ')', 1470, - ',', 1471, - '-', 296, - '.', 1725, - ':', 1465, - ';', 1453, - '=', 675, - '>', 1481, - '[', 1467, - ']', 1468, - 'c', 1353, - 'f', 1372, - 'i', 1361, - 'o', 1364, - 'v', 1349, - '{', 1500, - '}', 1501, + '#', 2187, + '(', 1560, + ';', 1450, + '\t', 1449, + ' ', 1449, + 'E', 1818, + 'e', 1818, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(89); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1375); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 90: - ADVANCE_MAP( - '\n', 1450, - '\r', 1, - '#', 2190, - '(', 1469, - ')', 1470, - '-', 296, - '.', 309, - ':', 1465, - ';', 1453, - '=', 677, - '>', 1481, - '[', 1467, - 'a', 420, - 'e', 287, - 'i', 386, - 'o', 288, - 'x', 430, - '{', 1500, - '|', 1454, - '}', 1501, - ); + 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(91); + lookahead == ' ') ADVANCE(1449); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 91: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1469, - ')', 1470, - '-', 296, - ':', 1465, - ';', 1453, - '=', 677, - '>', 1481, - '[', 1467, - 'a', 420, - 'e', 287, - 'i', 386, - 'o', 288, - 'x', 430, - '{', 1500, - '|', 1454, - '}', 1501, + '#', 2187, + '(', 1466, + ')', 1467, + ',', 1468, + '-', 297, + '.', 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(91); + lookahead == ' ') SKIP(92); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); END_STATE(); case 92: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '.', 1597, - '=', 1798, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'd', 1826, - 'e', 1808, - 'g', 1811, - 'h', 1880, - 'i', 1847, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - '|', 1454, - 0xb5, 1893, + '#', 2187, + '(', 1466, + ')', 1467, + ',', 1468, + '-', 297, + '.', 1722, + ':', 1462, + ';', 1450, + '=', 672, + '>', 1478, + '[', 1464, + ']', 1465, + 'c', 1350, + 'f', 1369, + 'i', 1358, + 'o', 1361, + 'v', 1346, + '{', 1497, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(113); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(92); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); END_STATE(); case 93: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '.', 1597, - '=', 1798, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'd', 1826, - 'e', 1808, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - '|', 1454, - 0xb5, 1893, + '#', 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(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 94: - if (lookahead == '\n') ADVANCE(1450); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '.') ADVANCE(1597); - if (lookahead == '=') ADVANCE(1798); - if (lookahead == 'i') ADVANCE(1847); - if (lookahead == '|') ADVANCE(1454); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '#', 2187, + '.', 1594, + '=', 1795, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'd', 1823, + 'e', 1805, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '|', 1451, + 0xb5, 1890, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(113); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1821); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(115); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 95: - if (lookahead == '\n') ADVANCE(1450); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '.') ADVANCE(1597); - if (lookahead == '=') ADVANCE(1798); - if (lookahead == '|') ADVANCE(1454); + 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(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1821); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == 'e') ADVANCE(1818); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 96: - ADVANCE_MAP( - '\n', 1450, - '\r', 1, - '#', 2190, - '.', 1792, - '=', 1798, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - '_', 1815, - 'd', 1826, - 'e', 1808, - 'g', 1811, - 'h', 1880, - 'i', 1847, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - '|', 1454, - 0xb5, 1893, - ); + if (lookahead == '\n') ADVANCE(1447); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1594); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || - lookahead == ' ') SKIP(113); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(115); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1818); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 97: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '.', 1792, - '=', 1798, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - '_', 1815, - 'd', 1826, - 'e', 1808, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - '|', 1454, - 0xb5, 1893, + '#', 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(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '.', 1792, - '=', 1798, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'd', 1826, - 'e', 1808, - 'g', 1811, - 'h', 1880, - 'i', 1847, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - '|', 1454, - 0xb5, 1893, + '#', 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(113); + lookahead == ' ') SKIP(115); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '.', 1792, - '=', 1798, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'd', 1826, - 'e', 1808, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - '|', 1454, - 0xb5, 1893, + '#', 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(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '.', 1792, - '=', 1798, - 'E', 1812, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'd', 1826, - 'e', 1811, - 'g', 1811, - 'h', 1880, - 'i', 1847, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - '|', 1454, - 0xb5, 1893, + '#', 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(113); + lookahead == ' ') SKIP(115); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '.', 1792, - '=', 1798, - 'E', 1812, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'd', 1826, - 'e', 1811, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - '|', 1454, - 0xb5, 1893, + '#', 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(114); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '.', 1792, - '=', 1798, - '_', 1815, - 'i', 1847, - '|', 1454, + '#', 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(113); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1821); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(115); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 103: - if (lookahead == '\n') ADVANCE(1450); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '.') ADVANCE(1792); - if (lookahead == '=') ADVANCE(1798); - if (lookahead == '_') ADVANCE(1815); - if (lookahead == '|') ADVANCE(1454); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '#', 2187, + '.', 1789, + '=', 1795, + '_', 1812, + 'i', 1844, + '|', 1451, + ); if (lookahead == '\t' || lookahead == ' ') SKIP(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1821); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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: - if (lookahead == '\n') ADVANCE(1450); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '.') ADVANCE(1792); - if (lookahead == '=') ADVANCE(1798); - if (lookahead == 'i') ADVANCE(1847); - if (lookahead == '|') ADVANCE(1454); + 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(113); + lookahead == ' ') SKIP(115); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1821); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1450); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '.') ADVANCE(1792); - if (lookahead == '=') ADVANCE(1798); - if (lookahead == 'i') ADVANCE(1847); - if (lookahead == '|') ADVANCE(1454); + 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(113); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 106: - if (lookahead == '\n') ADVANCE(1450); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '.') ADVANCE(1792); - if (lookahead == '=') ADVANCE(1798); - if (lookahead == '|') ADVANCE(1454); + 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(114); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1821); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 107: - if (lookahead == '\n') ADVANCE(1450); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '.') ADVANCE(1792); - if (lookahead == '=') ADVANCE(1798); - if (lookahead == '|') ADVANCE(1454); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1789); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || - lookahead == ' ') SKIP(114); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(115); + 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(1450); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '.') ADVANCE(1596); - if (lookahead == '=') ADVANCE(1798); - if (lookahead == 'i') ADVANCE(1847); - if (lookahead == '|') ADVANCE(1454); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1789); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || - lookahead == ' ') SKIP(113); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1821); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1450); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '.') ADVANCE(1596); - if (lookahead == '=') ADVANCE(1798); - if (lookahead == '|') ADVANCE(1454); + 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(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1821); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1447); + if (lookahead == '\r') ADVANCE(1); + 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(1818); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); + END_STATE(); + case 111: ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - ':', 1715, - ';', 1453, - '=', 1731, - 'e', 287, - 'o', 289, - '|', 1454, - '}', 1501, - '\t', 1451, - ' ', 1451, + '#', 2187, + ':', 1712, + ';', 1450, + '=', 1728, + 'e', 288, + 'o', 290, + '|', 1451, + '}', 1498, + '\t', 1448, + ' ', 1448, ); END_STATE(); - case 111: - if (lookahead == '\n') ADVANCE(1450); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == ':') ADVANCE(1715); - if (lookahead == '{') ADVANCE(1500); - if (lookahead == '\t' || - lookahead == ' ') SKIP(111); - END_STATE(); case 112: - if (lookahead == '\n') ADVANCE(1450); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == ';') ADVANCE(1453); - if (lookahead == '=') ADVANCE(1731); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == ':') ADVANCE(1712); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1452); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1449); + lookahead == ' ') SKIP(112); END_STATE(); case 113: - if (lookahead == '\n') ADVANCE(1450); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '=') ADVANCE(322); - if (lookahead == 'i') ADVANCE(385); - if (lookahead == '|') ADVANCE(1454); + 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(1450); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '=') ADVANCE(322); - if (lookahead == '|') ADVANCE(1454); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '=') ADVANCE(323); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || lookahead == ' ') SKIP(114); END_STATE(); case 115: - if (lookahead == '\n') ADVANCE(1450); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '=') ADVANCE(1798); - if (lookahead == '_') ADVANCE(1815); - if (lookahead == 'i') ADVANCE(1847); - if (lookahead == '|') ADVANCE(1454); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '=') ADVANCE(323); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || - lookahead == ' ') SKIP(113); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1821); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(115); END_STATE(); case 116: - if (lookahead == '\n') ADVANCE(1450); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '=') ADVANCE(1798); - if (lookahead == '_') ADVANCE(1815); - if (lookahead == '|') ADVANCE(1454); + 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(114); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1821); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1450); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '=') ADVANCE(1798); - if (lookahead == 'i') ADVANCE(1847); - if (lookahead == '|') ADVANCE(1454); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == '_') ADVANCE(1812); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || - lookahead == ' ') SKIP(113); + lookahead == ' ') SKIP(115); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1821); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1450); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '=') ADVANCE(1798); - if (lookahead == 'i') ADVANCE(1847); - if (lookahead == '|') ADVANCE(1454); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == 'i') ADVANCE(1844); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || - lookahead == ' ') SKIP(113); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 119: - if (lookahead == '\n') ADVANCE(1450); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '=') ADVANCE(1798); - if (lookahead == '|') ADVANCE(1454); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == 'i') ADVANCE(1844); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || lookahead == ' ') SKIP(114); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1821); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 120: - if (lookahead == '\n') ADVANCE(1450); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '=') ADVANCE(1798); - if (lookahead == '|') ADVANCE(1454); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || - lookahead == ' ') SKIP(114); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(115); + 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(1450); + if (lookahead == '\n') ADVANCE(1447); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2193); - if (lookahead == ':') ADVANCE(1715); - if (lookahead == '{') ADVANCE(1500); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '=') ADVANCE(1795); + if (lookahead == '|') ADVANCE(1451); if (lookahead == '\t' || - lookahead == ' ') SKIP(111); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1447); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(2190); + if (lookahead == ':') ADVANCE(1712); + if (lookahead == '{') ADVANCE(1497); + if (lookahead == '\t' || + lookahead == ' ') SKIP(112); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); + END_STATE(); + case 123: ADVANCE_MAP( - '\n', 1709, - '\r', 1709, - '!', 1721, - '#', 2190, - '(', 1563, - '*', 1515, - '+', 1580, - '-', 1497, - '.', 1724, - '/', 1570, - ':', 1715, - ';', 1453, - '<', 1552, - '=', 676, - '>', 1482, - '?', 1719, - '@', 1483, - '[', 1467, - ']', 1468, - 'a', 420, - 'b', 399, + '\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', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 278, - 's', 485, - 'x', 430, - '|', 1454, - '}', 1501, - '\t', 1710, - ' ', 1710, - 0x0b, 1709, - '\f', 1709, - ',', 1709, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, + 'o', 279, + 's', 480, + 'x', 426, + '|', 1451, + '}', 1498, + '\t', 1707, + ' ', 1707, + 0x0b, 1706, + '\f', 1706, + ',', 1706, ); END_STATE(); - case 123: + case 124: ADVANCE_MAP( - '!', 1720, - '"', 1687, - '#', 2190, - '$', 179, - '\'', 1690, - '.', 1722, - ';', 1718, - '?', 1719, - '`', 1694, - '\t', 123, - ' ', 123, + '!', 1717, + '"', 1684, + '#', 2187, + '$', 180, + '\'', 1687, + '.', 1719, + ';', 1715, + '?', 1716, + '`', 1691, + '\t', 124, + ' ', 124, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(317); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); END_STATE(); - case 124: + case 125: ADVANCE_MAP( - '!', 1720, - '"', 1687, - '#', 2190, - '$', 179, - '\'', 1690, - '.', 1722, - ';', 1718, - '?', 1719, - '`', 1694, - '\t', 123, - ' ', 123, + '!', 1717, + '"', 1684, + '#', 2187, + '$', 180, + '\'', 1687, + '.', 1719, + ';', 1715, + '?', 1716, + '`', 1691, + '\t', 124, + ' ', 124, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(317); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); if (lookahead != 0 && (lookahead < '&' || '.' < lookahead) && (lookahead < ':' || '@' < lookahead) && lookahead != '[' && lookahead != ']' && lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1732); - END_STATE(); - case 125: - ADVANCE_MAP( - '!', 1720, - '"', 1687, - '#', 2190, - '\'', 1690, - '+', 704, - '-', 298, - '.', 1728, - '?', 1719, - 'I', 811, - 'N', 807, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 800, - 't', 774, - 'u', 787, - 'w', 753, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(125); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1729); END_STATE(); case 126: ADVANCE_MAP( - '!', 1720, - '"', 1687, - '#', 2190, - '\'', 1690, - '+', 704, - '-', 298, - '.', 1728, - 'I', 811, - 'N', 807, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 800, - 't', 774, - 'u', 787, - 'w', 753, + '!', 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(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); + 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( - '!', 1720, - '#', 2190, - ',', 1709, + '!', 1717, + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 701, + '-', 299, '.', 1725, - ';', 1718, - '?', 1719, - ']', 1468, - '\t', 1712, - ' ', 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 (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1713); + if (lookahead == '\t' || + lookahead == ' ') SKIP(127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); END_STATE(); case 128: ADVANCE_MAP( - '!', 1720, - '#', 2190, - '.', 1724, - ':', 1715, - '>', 1481, - '?', 1719, - 'E', 332, - 'G', 332, - 'K', 332, - 'M', 332, - 'P', 332, - 'T', 332, - ']', 1468, - 'd', 345, - 'e', 331, - 'g', 331, - 'h', 450, - 'k', 331, - 'm', 334, - 'n', 468, - 'p', 331, - 's', 375, - 't', 331, - 'u', 468, - 'w', 407, - '}', 1501, - 0xb5, 468, - '\t', 1714, - ' ', 1714, - 'B', 1655, - 'b', 1655, + '!', 1717, + '#', 2187, + ',', 1706, + '.', 1722, + ';', 1715, + '?', 1716, + ']', 1465, + '\t', 1709, + ' ', 1709, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1710); END_STATE(); case 129: ADVANCE_MAP( - '!', 1720, - '#', 2190, - '.', 1725, - ':', 1465, - '>', 1481, - '?', 1719, - ']', 1468, - '}', 1501, - '\t', 1714, - ' ', 1714, + '!', 1717, + '#', 2187, + '.', 1721, + ':', 1712, + '>', 1478, + '?', 1716, + ']', 1465, + '}', 1498, + '\t', 1711, + ' ', 1711, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); + lookahead == ',') ADVANCE(1706); END_STATE(); case 130: ADVANCE_MAP( - '!', 1795, - '#', 2190, - '$', 1472, - '(', 1563, - '*', 1514, - '+', 1578, - '-', 1495, - '.', 1606, - '/', 1569, - '<', 1552, - '=', 1796, - '>', 1482, - '_', 1815, - 'a', 1867, - 'b', 1854, - 'e', 1868, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1881, - 's', 1901, - 'x', 1873, + '!', 1717, + '#', 2187, + '.', 1722, + ':', 1462, + '>', 1478, + '?', 1716, + ']', 1465, + '}', 1498, + '\t', 1711, + ' ', 1711, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(144); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1706); END_STATE(); case 131: ADVANCE_MAP( - '!', 1795, - '#', 2190, - '$', 1472, - '(', 1563, - '*', 1514, - '+', 1578, - '-', 1495, - '.', 1817, - '/', 1569, - '<', 1552, - '=', 1796, - '>', 1482, - '_', 1815, - 'a', 1867, - 'b', 1854, - 'e', 1868, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1881, - 's', 1901, - 'x', 1873, + '!', 1792, + '#', 2187, + '$', 1469, + '(', 1560, + '*', 1511, + '+', 1575, + '-', 1492, + '.', 1603, + '/', 1566, + '<', 1549, + '=', 1793, + '>', 1479, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1865, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(144); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); + 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( - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1597, - '/', 1569, - '<', 1552, - '=', 1796, - '>', 1482, - 'B', 1655, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'a', 1867, - 'b', 1658, - 'd', 1826, - 'e', 1807, - 'g', 1811, - 'h', 1824, - 'i', 1865, - 'k', 1811, - 'l', 1853, - 'm', 1813, - 'n', 1874, - 'o', 1881, - 'p', 1811, - 's', 1840, - 't', 1811, - 'u', 1893, - 'w', 1860, - 'x', 1873, - 0xb5, 1893, + '!', 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(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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( - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1597, - '/', 1569, - '<', 1552, - '=', 1796, - '>', 1482, - 'E', 1821, - 'a', 1867, - 'b', 1854, - 'e', 1818, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1881, - 's', 1901, - 'x', 1873, + '!', 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(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(146); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 134: ADVANCE_MAP( - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - '<', 1552, - '=', 1796, - '>', 1482, - 'B', 1655, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - '_', 1815, - 'a', 1867, - 'b', 1658, - 'd', 1826, - 'e', 1807, - 'g', 1811, - 'h', 1824, - 'i', 1865, - 'k', 1811, - 'l', 1853, - 'm', 1813, - 'n', 1874, - 'o', 1881, - 'p', 1811, - 's', 1840, - 't', 1811, - 'u', 1893, - 'w', 1860, - 'x', 1873, - 0xb5, 1893, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1594, + '/', 1566, + '<', 1549, + '=', 1793, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1815, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(146); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 135: ADVANCE_MAP( - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - '<', 1552, - '=', 1796, - '>', 1482, - 'B', 1655, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'a', 1867, - 'b', 1658, - 'd', 1826, - 'e', 1807, - 'g', 1811, - 'h', 1824, - 'i', 1865, - 'k', 1811, - 'l', 1853, - 'm', 1813, - 'n', 1874, - 'o', 1881, - 'p', 1811, - 's', 1840, - 't', 1811, - 'u', 1893, - 'w', 1860, - 'x', 1873, - 0xb5, 1893, + '!', 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(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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( - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - '<', 1552, - '=', 1796, - '>', 1482, - 'B', 1655, - 'E', 1812, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'a', 1867, - 'b', 1658, - 'd', 1826, - 'e', 1810, - 'g', 1811, - 'h', 1824, - 'i', 1865, - 'k', 1811, - 'l', 1853, - 'm', 1813, - 'n', 1874, - 'o', 1881, - 'p', 1811, - 's', 1840, - 't', 1811, - 'u', 1893, - 'w', 1860, - 'x', 1873, - 0xb5, 1893, + '!', 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(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(146); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 137: ADVANCE_MAP( - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - '<', 1552, - '=', 1796, - '>', 1482, - 'E', 1821, - '_', 1815, - 'a', 1867, - 'b', 1854, - 'e', 1818, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1881, - 's', 1901, - 'x', 1873, + '!', 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(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(146); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 138: ADVANCE_MAP( - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - '<', 1552, - '=', 1796, - '>', 1482, - 'E', 1821, - 'a', 1867, - 'b', 1854, - 'e', 1818, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1881, - 's', 1901, - 'x', 1873, + '!', 1792, + '#', 2187, + '(', 1560, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + '<', 1549, + '=', 1793, + '>', 1479, + 'E', 1818, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1815, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1878, + 's', 1898, + 'x', 1870, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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( - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - '<', 1552, - '=', 1796, - '>', 1482, - 'a', 1867, - 'b', 1854, - 'e', 1868, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1881, - 's', 1901, - 'x', 1873, + '!', 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(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(146); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 140: ADVANCE_MAP( - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1596, - '/', 1569, - '<', 1552, - '=', 1796, - '>', 1482, - 'E', 1821, - 'a', 1867, - 'b', 1854, - 'e', 1818, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1881, - 's', 1901, - 'x', 1873, + '!', 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(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(146); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 141: ADVANCE_MAP( - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - '<', 1552, - '=', 1796, - '>', 1482, - 'E', 1821, - '_', 1815, - 'a', 1867, - 'b', 1854, - 'e', 1818, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1881, - 's', 1901, - 'x', 1873, + '!', 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(145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(146); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 142: ADVANCE_MAP( - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - '<', 1552, - '=', 1796, - '>', 1482, - 'E', 1821, - 'a', 1867, - 'b', 1854, - 'e', 1818, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1881, - 's', 1901, - 'x', 1873, + '!', 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(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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( - '!', 1795, - '#', 2190, - '(', 1563, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - '<', 1552, - '=', 1796, - '>', 1482, - 'a', 1867, - 'b', 1854, - 'e', 1868, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1881, - 's', 1901, - 'x', 1873, + '!', 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(145); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(146); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 144: ADVANCE_MAP( - '!', 319, - '#', 2190, - '$', 1472, - '*', 1514, - '+', 1579, - '-', 1496, - '.', 336, - '/', 1569, - '<', 1552, - '=', 320, - '>', 1482, - 'a', 420, - 'b', 399, - 'e', 424, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 451, - 's', 485, - 'x', 430, + '!', 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(144); + lookahead == ' ') SKIP(146); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 145: ADVANCE_MAP( - '!', 319, - '#', 2190, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - '<', 1552, - '=', 320, - '>', 1482, - 'a', 420, - 'b', 399, - 'e', 424, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 451, - 's', 485, - 'x', 430, + '!', 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(145); END_STATE(); case 146: ADVANCE_MAP( - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1563, - '+', 2002, - '-', 306, - '.', 2000, - '0', 1626, - ';', 1718, - 'N', 2049, - '[', 1467, - '_', 2014, - '`', 1694, - 'f', 2017, - 'n', 2045, - 't', 2032, - '{', 1500, - '\t', 149, - ' ', 149, - 'I', 2053, - 'i', 2053, + '!', 320, + '#', 2187, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 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 (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(317); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if (lookahead == '\t' || + lookahead == ' ') SKIP(146); + END_STATE(); + case 147: + ADVANCE_MAP( + '"', 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(1639); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2072); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 147: + case 148: ADVANCE_MAP( - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - '+', 1582, - '-', 1493, - '.', 703, - '0', 1630, - ':', 1465, - '<', 1143, - '>', 1481, - '@', 1483, - 'I', 811, - 'N', 807, - ']', 1468, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 800, - 't', 774, - 'u', 787, - 'w', 753, - '}', 1501, - '\t', 1714, - ' ', 1714, + '"', 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(1709); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1646); + 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(826); + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); - case 148: + case 149: ADVANCE_MAP( - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - '+', 2002, - '-', 306, - '.', 2000, - '0', 1626, - ':', 1715, - 'N', 2049, - '[', 1467, - '_', 2014, - '`', 1694, - 'f', 2017, - 'n', 2045, - 't', 2032, - '{', 1500, + '"', 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(148); + lookahead == ' ') SKIP(149); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2053); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + 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(2072); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 149: + case 150: ADVANCE_MAP( - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - '+', 2002, - '-', 306, - '.', 2000, - '0', 1626, - ';', 1718, - 'N', 2049, - '[', 1467, - '_', 2014, - '`', 1694, - 'f', 2017, - 'n', 2045, - 't', 2032, - '{', 1500, - '\t', 149, - ' ', 149, - 'I', 2053, - 'i', 2053, + '"', 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(317); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2072); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 150: + case 151: ADVANCE_MAP( - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - '+', 2002, - '-', 306, - '.', 2000, - '0', 1626, - 'N', 2049, - '[', 1467, - '_', 2014, - '`', 1694, - 'f', 2017, - 'n', 2045, - 't', 2032, - '{', 1500, + '"', 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(150); + lookahead == ' ') SKIP(151); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2053); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + 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(2072); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 151: + case 152: ADVANCE_MAP( - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - '+', 2002, - '-', 306, - '.', 2000, - ':', 1715, - 'N', 2049, - '_', 2014, - '`', 1694, - 'f', 2017, - 'n', 2045, - 't', 2032, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 1999, + '-', 308, + '.', 1997, + ':', 1712, + 'N', 2046, + '_', 2011, + '`', 1691, + 'f', 2014, + 'n', 2042, + 't', 2029, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(151); + lookahead == ' ') SKIP(152); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2053); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + 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(2072); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 152: + case 153: ADVANCE_MAP( - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - '+', 2002, - '-', 306, - '.', 2000, - 'N', 2049, - '_', 2014, - '`', 1694, - 'f', 2017, - 'n', 2045, - 't', 2032, + '"', 1684, + '#', 2187, + '$', 1470, + '\'', 1687, + '(', 1466, + '+', 1999, + '-', 308, + '.', 1997, + 'N', 2046, + '_', 2011, + '`', 1691, + 'f', 2014, + 'n', 2042, + 't', 2029, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(152); + lookahead == ' ') SKIP(153); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2053); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + 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(2072); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 153: + case 154: ADVANCE_MAP( - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - '+', 2084, - '-', 2083, - '.', 2085, - '0', 1627, - 'N', 2102, - '[', 1467, - ']', 1468, - '_', 2089, - '`', 1694, - 'f', 2092, - 'n', 2101, - 't', 2098, - '{', 1500, - '\t', 1714, - ' ', 1714, - 'I', 2108, - 'i', 2108, + '"', 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(1709); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == ',') ADVANCE(1706); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2130); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2127); END_STATE(); - case 154: - if (lookahead == '"') ADVANCE(1687); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '$') ADVANCE(1473); - if (lookahead == '\'') ADVANCE(1690); - if (lookahead == '(') ADVANCE(1469); - if (lookahead == '`') ADVANCE(1694); + 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(154); + lookahead == ' ') SKIP(155); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1989); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1986); END_STATE(); - case 155: + case 156: ADVANCE_MAP( - '"', 1687, - '#', 2190, - '$', 1472, - '\'', 1690, - '(', 1469, - '+', 2002, - ',', 1709, - '-', 306, - '.', 2000, - '0', 1626, - 'N', 2049, - '[', 1467, - '_', 1503, - '`', 1694, - 'f', 2017, - 'n', 2045, - 't', 2032, - '{', 1500, - '}', 1501, - '\t', 1711, - ' ', 1711, - 'I', 2053, - 'i', 2053, + '"', 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(1709); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1706); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2072); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 156: + case 157: ADVANCE_MAP( - '"', 1687, - '#', 2190, - '$', 1472, - '\'', 1690, - '(', 1469, - '+', 2002, - '-', 306, - '.', 2000, - '0', 1626, - 'N', 2049, - '[', 1467, - '_', 2014, - '`', 1694, - 'f', 2017, - 'n', 2045, - 't', 2032, - '{', 1500, + '"', 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(156); + lookahead == ' ') SKIP(157); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2053); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + 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(2072); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2069); END_STATE(); - case 157: + case 158: ADVANCE_MAP( - '"', 1687, - '#', 2190, - '$', 1472, - '\'', 1690, - '(', 1469, - '+', 2084, - '-', 2083, - '.', 2082, - '0', 1627, - 'N', 2102, - '[', 1467, - ']', 1468, - '_', 2089, - '`', 1694, - 'f', 2092, - 'n', 2101, - 't', 2098, - '{', 1500, - '\t', 1714, - ' ', 1714, - 'I', 2108, - 'i', 2108, + '"', 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(1709); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == ',') ADVANCE(1706); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2130); - END_STATE(); - case 158: - ADVANCE_MAP( - '"', 1687, - '#', 2190, - '\'', 1690, - '(', 1563, - '+', 704, - '-', 306, - '.', 720, - ':', 1465, - '>', 1481, - 'I', 811, - 'N', 807, - ']', 1468, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 800, - 't', 774, - 'u', 787, - 'w', 753, - '}', 1501, - '\t', 1714, - ' ', 1714, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2127); END_STATE(); case 159: ADVANCE_MAP( - '"', 1687, - '#', 2190, - '\'', 1690, - '+', 704, - '-', 306, - '.', 720, - ':', 1715, - 'I', 811, - 'N', 807, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 800, - 't', 774, - 'u', 787, - 'w', 753, + '"', 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 (lookahead == '\t' || - lookahead == ' ') SKIP(159); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); END_STATE(); case 160: ADVANCE_MAP( - '"', 1687, - '#', 2190, - '\'', 1690, - '+', 704, - '-', 298, - '.', 1728, - '?', 1719, - 'I', 811, - 'N', 807, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 800, - 't', 774, - 'u', 787, - 'w', 753, + '"', 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(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); + 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( - '"', 1687, - '#', 2190, - '\'', 1690, - '+', 704, - '-', 298, - '.', 1728, - 'I', 811, - 'N', 807, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 800, - 't', 774, - 'u', 787, - 'w', 753, + '"', 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(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); + 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( - '"', 1687, - '#', 2190, - '\'', 1690, - '+', 704, - '-', 298, - '.', 720, - ':', 1715, - 'I', 811, - 'N', 807, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 800, - 't', 774, - 'u', 787, - 'w', 753, + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 701, + '-', 299, + '.', 1725, + 'I', 808, + 'N', 804, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, ); if (lookahead == '\t' || lookahead == ' ') SKIP(162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); + 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( - '"', 1687, - '#', 2190, - '\'', 1690, - '+', 704, - '-', 298, - '.', 720, - '=', 1731, - 'I', 1445, - 'N', 1440, - '_', 1381, - '`', 1694, - 'a', 1405, - 'c', 1382, - 'd', 1389, - 'e', 1410, - 'f', 1383, - 'i', 1380, - 'l', 1396, - 'm', 1385, - 'n', 1436, - 't', 1419, - 'u', 1425, - 'w', 1402, + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 701, + '-', 299, + '.', 717, + ':', 1712, + 'I', 808, + 'N', 804, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1381); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1449); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); + lookahead == ' ') SKIP(163); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); END_STATE(); case 164: ADVANCE_MAP( - '"', 1687, - '#', 2190, - '\'', 1690, - '+', 704, - '-', 298, - '.', 720, - 'I', 811, - 'N', 807, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 800, - 't', 774, - 'u', 787, - 'w', 753, + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 701, + '-', 299, + '.', 717, + '=', 1728, + 'I', 1442, + 'N', 1437, + '_', 1378, + '`', 1691, + 'a', 1402, + 'c', 1379, + 'd', 1386, + 'e', 1407, + 'f', 1380, + 'i', 1377, + 'l', 1393, + 'm', 1382, + 'n', 1433, + 't', 1416, + 'u', 1422, + 'w', 1399, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); + 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( - '"', 1687, - '#', 2190, - '\'', 1690, - '+', 704, - '-', 1784, - '.', 1598, - 'E', 711, - 'G', 716, - 'I', 811, - 'K', 716, - 'M', 716, - 'N', 807, - 'P', 716, - 'T', 716, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 724, - 'e', 710, - 'f', 725, - 'g', 715, - 'h', 776, - 'i', 717, - 'k', 715, - 'l', 741, - 'm', 712, - 'n', 784, - 'p', 715, - 's', 742, - 't', 714, - 'u', 786, - 'w', 752, - 0xb5, 785, + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 701, + '-', 299, + '.', 717, + 'I', 808, + 'N', 804, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 730, + 'e', 758, + 'f', 722, + 'i', 714, + 'l', 738, + 'm', 724, + 'n', 797, + 't', 771, + 'u', 784, + 'w', 750, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(823); + END_STATE(); + case 166: + ADVANCE_MAP( + '"', 1684, + '#', 2187, + '\'', 1687, + '+', 701, + '-', 1781, + '.', 1595, + 'E', 708, + 'G', 713, + 'I', 808, + 'K', 713, + 'M', 713, + 'N', 804, + 'P', 713, + 'T', 713, + '_', 715, + '`', 1691, + 'a', 753, + 'c', 720, + 'd', 721, + 'e', 707, + 'f', 722, + 'g', 712, + 'h', 773, + 'i', 714, + 'k', 712, + 'l', 738, + 'm', 709, + 'n', 781, + 'p', 712, + 's', 739, + 't', 711, + 'u', 783, + 'w', 749, + 0xb5, 782, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(164); + lookahead == ' ') SKIP(165); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); + lookahead == 'b') ADVANCE(1652); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + 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(826); + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); - case 166: + case 167: ADVANCE_MAP( - '"', 1687, - '#', 2190, - '\'', 1690, - '+', 704, - '-', 1784, - '.', 720, - 'I', 811, - 'N', 807, - '[', 1667, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 800, - 't', 774, - 'u', 787, - 'w', 753, + '"', 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(164); + lookahead == ' ') SKIP(165); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + 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(826); + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); - case 167: + case 168: ADVANCE_MAP( - '"', 1687, - '#', 2190, - '\'', 1690, - '+', 704, - '-', 1784, - '.', 702, - 'E', 711, - 'G', 716, - 'I', 811, - 'K', 716, - 'M', 716, - 'N', 807, - 'P', 716, - 'T', 716, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 724, - 'e', 710, - 'f', 725, - 'g', 715, - 'h', 776, - 'i', 717, - 'k', 715, - 'l', 741, - 'm', 712, - 'n', 784, - 'p', 715, - 's', 742, - 't', 714, - 'u', 786, - 'w', 752, - 0xb5, 785, + '"', 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(164); + lookahead == ' ') SKIP(165); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); + lookahead == 'b') ADVANCE(1652); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + 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(826); + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); - case 168: + case 169: ADVANCE_MAP( - '"', 1687, - '#', 2190, - '\'', 1690, - '+', 704, - '-', 1784, - '.', 702, - 'E', 711, - 'G', 716, - 'I', 811, - 'K', 716, - 'M', 716, - 'N', 807, - 'P', 716, - 'T', 716, - '_', 722, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 724, - 'e', 710, - 'f', 725, - 'g', 715, - 'h', 776, - 'i', 717, - 'k', 715, - 'l', 741, - 'm', 712, - 'n', 784, - 'p', 715, - 's', 742, - 't', 714, - 'u', 786, - 'w', 752, - 0xb5, 785, + '"', 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(164); + lookahead == ' ') SKIP(165); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); + lookahead == 'b') ADVANCE(1652); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + 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(826); + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); - case 169: + case 170: ADVANCE_MAP( - '"', 1687, - '#', 2190, - '\'', 1690, - '+', 704, - '-', 1784, - '.', 702, - 'E', 716, - 'G', 716, - 'I', 811, - 'K', 716, - 'M', 716, - 'N', 807, - 'P', 716, - 'T', 716, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 724, - 'e', 713, - 'f', 725, - 'g', 715, - 'h', 776, - 'i', 717, - 'k', 715, - 'l', 741, - 'm', 712, - 'n', 784, - 'p', 715, - 's', 742, - 't', 714, - 'u', 786, - 'w', 752, - 0xb5, 785, + '"', 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(164); + lookahead == ' ') SKIP(165); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); + lookahead == 'b') ADVANCE(1652); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1936); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + 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(826); + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); - case 170: + case 171: ADVANCE_MAP( - '"', 1687, - '#', 2190, - '\'', 1690, - '+', 2141, - '-', 2140, - '.', 2139, - '>', 1481, - 'N', 2156, - '_', 2143, - '`', 1694, - 'f', 2146, - 'n', 2155, - 't', 2152, - '\t', 1714, - ' ', 1714, - 'I', 2162, - 'i', 2162, + '"', 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(1709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + 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(2176); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2173); END_STATE(); - case 171: - if (lookahead == '"') ADVANCE(1687); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '\'') ADVANCE(1690); - if (lookahead == '`') ADVANCE(1694); + case 172: + if (lookahead == '"') ADVANCE(1684); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '\'') ADVANCE(1687); + if (lookahead == '`') ADVANCE(1691); if (lookahead == '\t' || - lookahead == ' ') SKIP(171); + lookahead == ' ') SKIP(172); END_STATE(); - case 172: + case 173: ADVANCE_MAP( - '"', 1687, - '#', 2193, - '$', 1474, - '\'', 1690, - '(', 1469, - '+', 850, - '-', 849, - '.', 851, - '0', 867, - ':', 1715, - 'N', 1022, - '[', 1467, - '_', 868, - '`', 1694, - 'f', 876, - 'n', 1012, - 't', 961, - '{', 1500, + '"', 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(148); + lookahead == ' ') SKIP(149); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1027); + lookahead == 'i') ADVANCE(1024); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2072); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(874); + ('<' <= 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(1048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1045); END_STATE(); - case 173: + case 174: ADVANCE_MAP( - '"', 1687, - '#', 2193, - '$', 1474, - '\'', 1690, - '(', 1469, - '+', 850, - '-', 849, - '.', 851, - '0', 867, - 'N', 1022, - '[', 1467, - '_', 868, - '`', 1694, - 'f', 876, - 'n', 1012, - 't', 961, - '{', 1500, + '"', 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(150); + lookahead == ' ') SKIP(151); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1027); + lookahead == 'i') ADVANCE(1024); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2072); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(874); + ('<' <= 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(1048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1045); END_STATE(); - case 174: + case 175: ADVANCE_MAP( - '"', 1687, - '#', 2193, - '$', 1474, - '\'', 1690, - '(', 1469, - '+', 850, - '-', 849, - '.', 851, - ':', 1715, - 'N', 1022, - '_', 868, - '`', 1694, - 'f', 876, - 'n', 1012, - 't', 961, + '"', 1684, + '#', 2190, + '$', 1471, + '\'', 1687, + '(', 1466, + '+', 847, + '-', 846, + '.', 848, + ':', 1712, + 'N', 1019, + '_', 865, + '`', 1691, + 'f', 873, + 'n', 1009, + 't', 958, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(151); + lookahead == ' ') SKIP(152); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1027); + lookahead == 'i') ADVANCE(1024); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2072); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(874); + ('<' <= 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(1048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1045); END_STATE(); - case 175: + case 176: ADVANCE_MAP( - '"', 1687, - '#', 2193, - '$', 1474, - '\'', 1690, - '(', 1469, - '+', 850, - '-', 849, - '.', 851, - 'N', 1022, - '_', 868, - '`', 1694, - 'f', 876, - 'n', 1012, - 't', 961, + '"', 1684, + '#', 2190, + '$', 1471, + '\'', 1687, + '(', 1466, + '+', 847, + '-', 846, + '.', 848, + 'N', 1019, + '_', 865, + '`', 1691, + 'f', 873, + 'n', 1009, + 't', 958, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(152); + lookahead == ' ') SKIP(153); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1027); + lookahead == 'i') ADVANCE(1024); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2072); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(874); + ('<' <= 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(1048); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1045); END_STATE(); - case 176: + case 177: ADVANCE_MAP( - '"', 1687, - '#', 2193, - '\'', 1690, - '+', 850, - '-', 849, - '.', 868, - ':', 1715, - 'I', 1027, - 'N', 1022, - '_', 868, - '`', 1694, - 'a', 934, - 'c', 881, - 'd', 897, - 'e', 937, - 'f', 875, - 'i', 863, - 'l', 907, - 'm', 883, - 'n', 1012, - 't', 966, - 'u', 982, - 'w', 918, + '"', 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(159); + lookahead == ' ') SKIP(160); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1048); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 177: + case 178: ADVANCE_MAP( - '"', 1687, - '#', 2193, - '\'', 1690, - '+', 850, - '-', 842, - '.', 868, - ':', 1715, - 'I', 1027, - 'N', 1022, - '_', 868, - '`', 1694, - 'a', 934, - 'c', 881, - 'd', 897, - 'e', 937, - 'f', 875, - 'i', 863, - 'l', 907, - 'm', 883, - 'n', 1012, - 't', 966, - 'u', 982, - 'w', 918, + '"', 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(162); + lookahead == ' ') SKIP(163); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1048); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); - END_STATE(); - case 178: - if (lookahead == '"') ADVANCE(1687); - if (lookahead == '#') ADVANCE(1689); - if (lookahead == '\\') ADVANCE(511); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1688); - if (lookahead != 0) ADVANCE(1689); + 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: - if (lookahead == '"') ADVANCE(1704); - if (lookahead == '\'') ADVANCE(1703); - END_STATE(); - case 180: - if (lookahead == '"') ADVANCE(1705); - if (lookahead == '#') ADVANCE(1700); - if (lookahead == '(') ADVANCE(1469); + if (lookahead == '"') ADVANCE(1684); + if (lookahead == '#') ADVANCE(1686); if (lookahead == '\\') ADVANCE(506); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1699); - if (lookahead != 0) ADVANCE(1700); + 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(2190); - if (lookahead == '$') ADVANCE(1472); - if (lookahead == '(') ADVANCE(1563); - if (lookahead == '.') ADVANCE(1606); - if (lookahead == '_') ADVANCE(1815); - if (lookahead == '{') ADVANCE(1500); + if (lookahead == '"') ADVANCE(1702); + if (lookahead == '#') ADVANCE(1697); + if (lookahead == '(') ADVANCE(1466); + if (lookahead == '\\') ADVANCE(501); if (lookahead == '\t' || - lookahead == ' ') SKIP(190); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1793); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); + lookahead == ' ') ADVANCE(1696); + if (lookahead != 0) ADVANCE(1697); END_STATE(); case 182: + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1469); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '.') ADVANCE(1603); + if (lookahead == '_') ADVANCE(1812); + if (lookahead == '{') ADVANCE(1497); + if (lookahead == '\t' || + lookahead == ' ') SKIP(191); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1933); + END_STATE(); + case 183: ADVANCE_MAP( - '#', 2190, - '$', 1472, - '(', 1563, - '.', 1605, - ']', 1468, - '_', 1946, - '}', 1501, - '\t', 1714, - ' ', 1714, - '+', 1940, - '-', 1940, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1601, + ']', 1465, + '_', 1974, + '}', 1498, + '\t', 1711, + ' ', 1711, + '+', 1960, + '-', 1960, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + 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 183: + case 184: ADVANCE_MAP( - '#', 2190, - '$', 1472, - '(', 1563, - '.', 1974, - '_', 1977, - '}', 1501, - '\t', 1714, - ' ', 1714, - '+', 1963, - '-', 1963, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1971, + '_', 1974, + '}', 1498, + '\t', 1711, + ' ', 1711, + '+', 1960, + '-', 1960, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1988); + 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: + case 185: ADVANCE_MAP( - '#', 2190, - '$', 1472, - '(', 1563, - '.', 1947, - ']', 1468, - '_', 1946, - '\t', 1714, - ' ', 1714, - '+', 1940, - '-', 1940, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1944, + ']', 1465, + '_', 1943, + '\t', 1711, + ' ', 1711, + '+', 1937, + '-', 1937, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16093,24 +16214,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 185: + case 186: ADVANCE_MAP( - '#', 2190, - '$', 1472, - '(', 1563, - '.', 1938, - ']', 1468, - '_', 1946, - '\t', 1714, - ' ', 1714, - '+', 1940, - '-', 1940, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1935, + ']', 1465, + '_', 1943, + '\t', 1711, + ' ', 1711, + '+', 1937, + '-', 1937, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16118,136 +16239,143 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 186: + case 187: ADVANCE_MAP( - '#', 2190, - '$', 1472, - '(', 1563, - '.', 1604, - '_', 1977, - '}', 1501, - '\t', 1714, - ' ', 1714, - '+', 1963, - '-', 1963, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1602, + ']', 1465, + '_', 1943, + '\t', 1711, + ' ', 1711, + '+', 1937, + '-', 1937, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1988); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 187: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '$') ADVANCE(1472); - if (lookahead == '(') ADVANCE(1563); - if (lookahead == '.') ADVANCE(1817); - if (lookahead == '_') ADVANCE(1815); - if (lookahead == '{') ADVANCE(1500); + case 188: + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1469); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '.') ADVANCE(1814); + if (lookahead == '_') ADVANCE(1812); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || - lookahead == ' ') SKIP(190); + lookahead == ' ') SKIP(191); if (lookahead == '+' || - lookahead == '-') ADVANCE(1793); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); + 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 188: + case 189: ADVANCE_MAP( - '#', 2190, - '$', 1472, - '(', 1563, - '.', 1600, - '[', 1667, - ']', 1468, - '_', 1946, - '}', 1501, - '\t', 1714, - ' ', 1714, - '+', 1940, - '-', 1940, + '#', 2187, + '$', 1469, + '(', 1560, + '.', 1597, + '[', 1664, + ']', 1465, + '_', 1943, + '}', 1498, + '\t', 1711, + ' ', 1711, + '+', 1937, + '-', 1937, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); - END_STATE(); - case 189: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '$') ADVANCE(1472); - if (lookahead == '.') ADVANCE(336); - if (lookahead == ']') ADVANCE(1468); - if (lookahead == '\t' || - lookahead == ' ') SKIP(189); - if (lookahead == '+' || - lookahead == '-') ADVANCE(313); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); case 190: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '$') ADVANCE(1472); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1469); if (lookahead == '.') ADVANCE(336); - if (lookahead == '{') ADVANCE(1500); + if (lookahead == ']') ADVANCE(1465); if (lookahead == '\t' || lookahead == ' ') SKIP(190); if (lookahead == '+' || - lookahead == '-') ADVANCE(313); + lookahead == '-') ADVANCE(314); END_STATE(); case 191: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '$') ADVANCE(1472); + 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(313); + lookahead == '-') ADVANCE(314); END_STATE(); case 192: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '$') ADVANCE(1472); - if (lookahead == ':') ADVANCE(1715); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1469); + if (lookahead == '.') ADVANCE(336); if (lookahead == '\t' || lookahead == ' ') SKIP(192); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1375); + if (lookahead == '+' || + lookahead == '-') ADVANCE(314); END_STATE(); case 193: + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1469); + if (lookahead == ':') ADVANCE(1712); + if (lookahead == '\t' || + lookahead == ' ') SKIP(193); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); + END_STATE(); + case 194: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1597, - 'E', 1942, - 'G', 1944, - 'K', 1944, - 'M', 1944, - 'P', 1944, - 'T', 1944, - ']', 1468, - 'd', 1951, - 'e', 1941, - 'g', 1943, - 'h', 1957, - 'k', 1943, - 'm', 1945, - 'n', 1958, - 'p', 1943, - 's', 1954, - 't', 1943, - 'u', 1958, - 'w', 1955, - '}', 1501, - 0xb5, 1958, - '\t', 1714, - ' ', 1714, - 'B', 1655, - 'b', 1655, + '#', 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(1709); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16255,40 +16383,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 194: + case 195: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1597, - 'E', 1942, - 'G', 1944, - 'K', 1944, - 'M', 1944, - 'P', 1944, - 'T', 1944, - ']', 1468, - 'd', 1951, - 'e', 1941, - 'g', 1943, - 'h', 1957, - 'k', 1943, - 'm', 1945, - 'n', 1958, - 'p', 1943, - 's', 1954, - 't', 1943, - 'u', 1958, - 'w', 1955, - 0xb5, 1958, - '\t', 1714, - ' ', 1714, - 'B', 1655, - 'b', 1655, + '#', 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(1709); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16296,56 +16424,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 195: + case 196: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1597, - 'E', 1969, - 'G', 1971, - 'K', 1971, - 'M', 1971, - 'P', 1971, - 'T', 1971, - 'd', 1978, - 'e', 1968, - 'g', 1970, - 'h', 1984, - 'k', 1970, - 'm', 1972, - 'n', 1985, - 'p', 1970, - 's', 1981, - 't', 1970, - 'u', 1985, - 'w', 1982, - '}', 1501, - 0xb5, 1985, - '\t', 1714, - ' ', 1714, - 'B', 1655, - 'b', 1655, + '#', 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(1709); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + lookahead == ',') ADVANCE(1706); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); - case 196: + case 197: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1597, - ']', 1468, - '}', 1501, - '\t', 1714, - ' ', 1714, - 'E', 1949, - 'e', 1949, + '#', 2187, + '(', 1560, + '.', 1594, + ']', 1465, + '}', 1498, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16353,21 +16481,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 197: + case 198: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1597, - ']', 1468, - '\t', 1714, - ' ', 1714, - 'E', 1949, - 'e', 1949, + '#', 2187, + '(', 1560, + '.', 1594, + ']', 1465, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16375,37 +16503,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 198: + case 199: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1597, - '}', 1501, - '\t', 1714, - ' ', 1714, - 'E', 1975, - 'e', 1975, + '#', 2187, + '(', 1560, + '.', 1594, + '}', 1498, + '\t', 1711, + ' ', 1711, + 'E', 1972, + 'e', 1972, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + lookahead == ',') ADVANCE(1706); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); - case 199: + case 200: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1596, - ']', 1468, - '}', 1501, - '\t', 1714, - ' ', 1714, - 'E', 1949, - 'e', 1949, + '#', 2187, + '(', 1560, + '.', 1593, + ']', 1465, + '}', 1498, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16413,58 +16541,58 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 200: + case 201: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1596, - '}', 1501, - '\t', 1714, - ' ', 1714, - 'E', 1975, - 'e', 1975, + '#', 2187, + '(', 1560, + '.', 1593, + '}', 1498, + '\t', 1711, + ' ', 1711, + 'E', 1972, + 'e', 1972, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + lookahead == ',') ADVANCE(1706); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); - case 201: + case 202: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1937, - 'E', 1942, - 'G', 1944, - 'K', 1944, - 'M', 1944, - 'P', 1944, - 'T', 1944, - ']', 1468, - '_', 1946, - 'd', 1951, - 'e', 1941, - 'g', 1943, - 'h', 1957, - 'k', 1943, - 'm', 1945, - 'n', 1958, - 'p', 1943, - 's', 1954, - 't', 1943, - 'u', 1958, - 'w', 1955, - '}', 1501, - 0xb5, 1958, - '\t', 1714, - ' ', 1714, - 'B', 1655, - 'b', 1655, + '#', 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(1709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16473,42 +16601,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 202: + case 203: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1937, - 'E', 1942, - 'G', 1944, - 'K', 1944, - 'M', 1944, - 'P', 1944, - 'T', 1944, - ']', 1468, - '_', 1946, - 'd', 1951, - 'e', 1941, - 'g', 1943, - 'h', 1957, - 'k', 1943, - 'm', 1945, - 'n', 1958, - 'p', 1943, - 's', 1954, - 't', 1943, - 'u', 1958, - 'w', 1955, - 0xb5, 1958, - '\t', 1714, - ' ', 1714, - 'B', 1655, - 'b', 1655, + '#', 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(1709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16517,41 +16645,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 203: + case 204: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1937, - 'E', 1942, - 'G', 1944, - 'K', 1944, - 'M', 1944, - 'P', 1944, - 'T', 1944, - ']', 1468, - 'd', 1951, - 'e', 1941, - 'g', 1943, - 'h', 1957, - 'k', 1943, - 'm', 1945, - 'n', 1958, - 'p', 1943, - 's', 1954, - 't', 1943, - 'u', 1958, - 'w', 1955, - '}', 1501, - 0xb5, 1958, - '\t', 1714, - ' ', 1714, - 'B', 1655, - 'b', 1655, + '#', 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(1709); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16559,40 +16687,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 204: + case 205: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1937, - 'E', 1942, - 'G', 1944, - 'K', 1944, - 'M', 1944, - 'P', 1944, - 'T', 1944, - ']', 1468, - 'd', 1951, - 'e', 1941, - 'g', 1943, - 'h', 1957, - 'k', 1943, - 'm', 1945, - 'n', 1958, - 'p', 1943, - 's', 1954, - 't', 1943, - 'u', 1958, - 'w', 1955, - 0xb5, 1958, - '\t', 1714, - ' ', 1714, - 'B', 1655, - 'b', 1655, + '#', 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(1709); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16600,41 +16728,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 205: + case 206: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1937, - 'E', 1944, - 'G', 1944, - 'K', 1944, - 'M', 1944, - 'P', 1944, - 'T', 1944, - ']', 1468, - 'd', 1951, - 'e', 1943, - 'g', 1943, - 'h', 1957, - 'k', 1943, - 'm', 1945, - 'n', 1958, - 'p', 1943, - 's', 1954, - 't', 1943, - 'u', 1958, - 'w', 1955, - '}', 1501, - 0xb5, 1958, - '\t', 1714, - ' ', 1714, - 'B', 1655, - 'b', 1655, + '#', 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(1709); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16642,40 +16770,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 206: + case 207: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1937, - 'E', 1944, - 'G', 1944, - 'K', 1944, - 'M', 1944, - 'P', 1944, - 'T', 1944, - ']', 1468, - 'd', 1951, - 'e', 1943, - 'g', 1943, - 'h', 1957, - 'k', 1943, - 'm', 1945, - 'n', 1958, - 'p', 1943, - 's', 1954, - 't', 1943, - 'u', 1958, - 'w', 1955, - 0xb5, 1958, - '\t', 1714, - ' ', 1714, - 'B', 1655, - 'b', 1655, + '#', 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(1709); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16683,24 +16811,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 207: + case 208: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1937, - ']', 1468, - '_', 1946, - '}', 1501, - '\t', 1714, - ' ', 1714, - 'E', 1949, - 'e', 1949, + '#', 2187, + '(', 1560, + '.', 1934, + ']', 1465, + '_', 1943, + '}', 1498, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16709,23 +16837,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 208: + case 209: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1937, - ']', 1468, - '_', 1946, - '\t', 1714, - ' ', 1714, - 'E', 1949, - 'e', 1949, + '#', 2187, + '(', 1560, + '.', 1934, + ']', 1465, + '_', 1943, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16734,22 +16862,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 209: + case 210: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1937, - ']', 1468, - '}', 1501, - '\t', 1714, - ' ', 1714, - 'E', 1949, - 'e', 1949, + '#', 2187, + '(', 1560, + '.', 1934, + ']', 1465, + '}', 1498, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16757,18 +16885,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 210: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '(') ADVANCE(1563); - if (lookahead == '.') ADVANCE(1937); - if (lookahead == ']') ADVANCE(1468); - if (lookahead == '}') ADVANCE(1501); + 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(1714); + lookahead == ' ') ADVANCE(1711); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16776,21 +16904,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 211: + case 212: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1937, - ']', 1468, - '\t', 1714, - ' ', 1714, - 'E', 1949, - 'e', 1949, + '#', 2187, + '(', 1560, + '.', 1934, + ']', 1465, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16798,17 +16926,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 212: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '(') ADVANCE(1563); - if (lookahead == '.') ADVANCE(1937); - if (lookahead == ']') ADVANCE(1468); + case 213: + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '.') ADVANCE(1934); + if (lookahead == ']') ADVANCE(1465); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1714); + lookahead == ' ') ADVANCE(1711); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16816,23 +16944,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 213: + case 214: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1939, - ']', 1468, - '_', 1946, - '\t', 1714, - ' ', 1714, - 'E', 1949, - 'e', 1949, + '#', 2187, + '(', 1560, + '.', 1936, + ']', 1465, + '_', 1943, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16841,21 +16969,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 214: + case 215: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1939, - ']', 1468, - '\t', 1714, - ' ', 1714, - 'E', 1949, - 'e', 1949, + '#', 2187, + '(', 1560, + '.', 1936, + ']', 1465, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16863,17 +16991,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 215: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '(') ADVANCE(1563); - if (lookahead == '.') ADVANCE(1939); - if (lookahead == ']') ADVANCE(1468); + case 216: + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '.') ADVANCE(1936); + if (lookahead == ']') ADVANCE(1465); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1714); + lookahead == ' ') ADVANCE(1711); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16881,21 +17009,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 216: + case 217: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1599, - ']', 1468, - '\t', 1714, - ' ', 1714, - 'E', 1949, - 'e', 1949, + '#', 2187, + '(', 1560, + '.', 1596, + ']', 1465, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16903,169 +17031,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); - END_STATE(); - case 217: - ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1962, - 'E', 1969, - 'G', 1971, - 'K', 1971, - 'M', 1971, - 'P', 1971, - 'T', 1971, - '_', 1977, - 'd', 1978, - 'e', 1968, - 'g', 1970, - 'h', 1984, - 'k', 1970, - 'm', 1972, - 'n', 1985, - 'p', 1970, - 's', 1981, - 't', 1970, - 'u', 1985, - 'w', 1982, - '}', 1501, - 0xb5, 1985, - '\t', 1714, - ' ', 1714, - 'B', 1655, - 'b', 1655, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); case 218: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '.', 1962, - 'E', 1969, - 'G', 1971, - 'K', 1971, - 'M', 1971, - 'P', 1971, - 'T', 1971, - 'd', 1978, - 'e', 1968, - 'g', 1970, - 'h', 1984, - 'k', 1970, - 'm', 1972, - 'n', 1985, - 'p', 1970, - 's', 1981, - 't', 1970, - 'u', 1985, - 'w', 1982, - '}', 1501, - 0xb5, 1985, - '\t', 1714, - ' ', 1714, - 'B', 1655, - 'b', 1655, + '#', 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(1709); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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( - '#', 2190, - '(', 1563, - '.', 1962, - 'E', 1971, - 'G', 1971, - 'K', 1971, - 'M', 1971, - 'P', 1971, - 'T', 1971, - 'd', 1978, - 'e', 1970, - 'g', 1970, - 'h', 1984, - 'k', 1970, - 'm', 1972, - 'n', 1985, - 'p', 1970, - 's', 1981, - 't', 1970, - 'u', 1985, - 'w', 1982, - '}', 1501, - 0xb5, 1985, - '\t', 1714, - ' ', 1714, - 'B', 1655, - 'b', 1655, + '#', 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(1709); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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( - '#', 2190, - '(', 1563, - '.', 1962, - '_', 1977, - '}', 1501, - '\t', 1714, - ' ', 1714, - 'E', 1975, - 'e', 1975, + '#', 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(1709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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( - '#', 2190, - '(', 1563, - '.', 1962, - '}', 1501, - '\t', 1714, - ' ', 1714, - 'E', 1975, - 'e', 1975, + '#', 2187, + '(', 1560, + '.', 1959, + '_', 1974, + '}', 1498, + '\t', 1711, + ' ', 1711, + 'E', 1972, + 'e', 1972, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '(') ADVANCE(1563); - if (lookahead == '.') ADVANCE(1962); - if (lookahead == '}') ADVANCE(1501); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1714); + ADVANCE_MAP( + '#', 2187, + '(', 1560, + '.', 1959, + '}', 1498, + '\t', 1711, + ' ', 1711, + 'E', 1972, + 'e', 1972, + ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + lookahead == ',') ADVANCE(1706); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 223: + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '.') ADVANCE(1959); + if (lookahead == '}') ADVANCE(1498); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1711); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1706); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); + END_STATE(); + case 224: ADVANCE_MAP( - '#', 2190, - '(', 1563, - ']', 1468, - '_', 1946, - '\t', 1714, - ' ', 1714, - 'E', 1949, - 'e', 1949, + '#', 2187, + '(', 1560, + ']', 1465, + '_', 1943, + '\t', 1711, + ' ', 1711, + 'E', 1946, + 'e', 1946, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + lookahead == ',') ADVANCE(1706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17074,17 +17202,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 224: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '(') ADVANCE(1563); - if (lookahead == ']') ADVANCE(1468); - if (lookahead == '}') ADVANCE(1501); + case 225: + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == ']') ADVANCE(1465); + if (lookahead == '}') ADVANCE(1498); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1714); + lookahead == ' ') ADVANCE(1711); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17092,18 +17220,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 225: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '(') ADVANCE(1563); - if (lookahead == ']') ADVANCE(1468); + case 226: + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == ']') ADVANCE(1465); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1714); + lookahead == ' ') ADVANCE(1711); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1949); + lookahead == 'e') ADVANCE(1946); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17111,678 +17239,678 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1958); END_STATE(); - case 226: + case 227: ADVANCE_MAP( - '#', 2190, - '(', 1563, - '_', 1977, - '}', 1501, - '\t', 1714, - ' ', 1714, - 'E', 1975, - 'e', 1975, + '#', 2187, + '(', 1560, + '_', 1974, + '}', 1498, + '\t', 1711, + ' ', 1711, + 'E', 1972, + 'e', 1972, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); - END_STATE(); - case 227: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '(') ADVANCE(1563); - if (lookahead == '{') ADVANCE(1500); - if (lookahead == '\t' || - lookahead == ' ') SKIP(269); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 228: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '(') ADVANCE(1563); - if (lookahead == '}') ADVANCE(1501); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1714); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1975); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + lookahead == ' ') SKIP(270); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 229: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '(') ADVANCE(1563); - if (lookahead == '}') ADVANCE(1501); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '}') ADVANCE(1498); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1714); + lookahead == ' ') ADVANCE(1711); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1972); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + lookahead == ',') ADVANCE(1706); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 230: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '(') ADVANCE(1563); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '}') ADVANCE(1498); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + lookahead == ' ') ADVANCE(1711); + if (('\n' <= lookahead && lookahead <= '\r') || + 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(2190); - if (lookahead == '(') ADVANCE(1563); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + lookahead == ' ') SKIP(272); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 232: - ADVANCE_MAP( - '#', 2190, - '(', 1469, - '-', 1785, - '.', 1597, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - '[', 1467, - 'd', 1826, - 'e', 1808, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - 0xb5, 1893, - ); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1560); if (lookahead == '\t' || - lookahead == ' ') SKIP(238); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(272); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 233: ADVANCE_MAP( - '#', 2190, - '(', 1469, - '-', 1785, - '.', 1792, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - '[', 1467, - '_', 1815, - 'd', 1826, - 'e', 1808, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - 0xb5, 1893, + '#', 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(238); + lookahead == ' ') SKIP(239); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 234: ADVANCE_MAP( - '#', 2190, - '(', 1469, - '-', 1785, - '.', 1792, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - '[', 1467, - 'd', 1826, - 'e', 1808, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - 0xb5, 1893, + '#', 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(238); + lookahead == ' ') SKIP(239); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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( - '#', 2190, - '(', 1469, - '-', 1785, - '.', 1792, - 'E', 1812, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - '[', 1467, - 'd', 1826, - 'e', 1811, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - 0xb5, 1893, + '#', 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(238); + lookahead == ' ') SKIP(239); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 236: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '(') ADVANCE(1469); - if (lookahead == '-') ADVANCE(1785); - if (lookahead == '[') ADVANCE(1467); + ADVANCE_MAP( + '#', 2187, + '(', 1466, + '-', 1782, + '.', 1789, + 'E', 1809, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + '[', 1464, + 'd', 1823, + 'e', 1808, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + 0xb5, 1890, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(238); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 237: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '(') ADVANCE(1469); - if (lookahead == '-') ADVANCE(296); - if (lookahead == '=') ADVANCE(1731); - if (lookahead == '[') ADVANCE(1467); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1466); + if (lookahead == '-') ADVANCE(1782); + if (lookahead == '[') ADVANCE(1464); if (lookahead == '\t' || - lookahead == ' ') SKIP(238); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1449); + lookahead == ' ') SKIP(239); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 238: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '(') ADVANCE(1469); - if (lookahead == '-') ADVANCE(296); - if (lookahead == '[') ADVANCE(1467); + 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(238); + lookahead == ' ') SKIP(239); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1446); END_STATE(); case 239: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == ',') ADVANCE(1471); - if (lookahead == ']') ADVANCE(1468); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '(') ADVANCE(1466); + if (lookahead == '-') ADVANCE(297); + if (lookahead == '[') ADVANCE(1464); if (lookahead == '\t' || lookahead == ' ') SKIP(239); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1668); END_STATE(); case 240: - ADVANCE_MAP( - '#', 2190, - '.', 1597, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'd', 1826, - 'e', 1808, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - '{', 1500, - 0xb5, 1893, - ); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == ',') ADVANCE(1468); + if (lookahead == ']') ADVANCE(1465); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(240); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1665); END_STATE(); case 241: ADVANCE_MAP( - '#', 2190, - '.', 1597, - 'E', 1969, - 'G', 1971, - 'K', 1971, - 'M', 1971, - 'P', 1971, - 'T', 1971, - 'd', 1978, - 'e', 1968, - 'g', 1970, - 'h', 1984, - 'k', 1970, - 'm', 1972, - 'n', 1985, - 'p', 1970, - 's', 1981, - 't', 1970, - 'u', 1985, - 'w', 1982, - 0xb5, 1985, + '#', 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(271); + lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 242: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '.') ADVANCE(1597); - if (lookahead == '{') ADVANCE(1500); + ADVANCE_MAP( + '#', 2187, + '.', 1594, + 'E', 1966, + 'G', 1968, + 'K', 1968, + 'M', 1968, + 'P', 1968, + 'T', 1968, + 'd', 1975, + 'e', 1965, + 'g', 1967, + 'h', 1981, + 'k', 1967, + 'm', 1969, + 'n', 1982, + 'p', 1967, + 's', 1978, + 't', 1967, + 'u', 1982, + 'w', 1979, + 0xb5, 1982, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1821); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(272); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 243: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '.') ADVANCE(1597); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1594); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); + lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1975); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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(2190); - if (lookahead == '.') ADVANCE(1722); - if (lookahead == 'i') ADVANCE(1363); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1594); if (lookahead == '\t' || - lookahead == ' ') SKIP(244); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1375); + lookahead == ' ') SKIP(272); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1972); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 245: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '.') ADVANCE(1606); - if (lookahead == '_') ADVANCE(1815); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1719); + if (lookahead == 'i') ADVANCE(1360); if (lookahead == '\t' || - lookahead == ' ') SKIP(254); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1793); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(245); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1372); END_STATE(); case 246: - ADVANCE_MAP( - '#', 2190, - '.', 1792, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - '_', 1815, - 'd', 1826, - 'e', 1808, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - '{', 1500, - 0xb5, 1893, - ); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1603); + if (lookahead == '_') ADVANCE(1812); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(255); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 247: ADVANCE_MAP( - '#', 2190, - '.', 1792, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'd', 1826, - 'e', 1808, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - '{', 1500, - 0xb5, 1893, + '#', 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(269); + lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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( - '#', 2190, - '.', 1792, - 'E', 1812, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'd', 1826, - 'e', 1811, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - '{', 1500, - 0xb5, 1893, + '#', 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(269); + lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 249: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '.') ADVANCE(1792); - if (lookahead == '_') ADVANCE(1815); - if (lookahead == '{') ADVANCE(1500); + ADVANCE_MAP( + '#', 2187, + '.', 1789, + 'E', 1809, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'd', 1823, + 'e', 1808, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '{', 1497, + 0xb5, 1890, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1821); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(270); + if (lookahead == 'B' || + 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(2190); - if (lookahead == '.') ADVANCE(1792); - if (lookahead == '{') ADVANCE(1500); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1789); + if (lookahead == '_') ADVANCE(1812); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); + lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1821); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(2190); - if (lookahead == '.') ADVANCE(1792); - if (lookahead == '{') ADVANCE(1500); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1789); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(270); + if (lookahead == 'E' || + 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(2190); - if (lookahead == '.') ADVANCE(1596); - if (lookahead == '{') ADVANCE(1500); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1789); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1821); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(270); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 253: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '.') ADVANCE(1596); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1593); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); + lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1975); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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(2190); - if (lookahead == '.') ADVANCE(336); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1593); if (lookahead == '\t' || - lookahead == ' ') SKIP(254); - if (lookahead == '+' || - lookahead == '-') ADVANCE(313); + lookahead == ' ') SKIP(272); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1972); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 255: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '.') ADVANCE(1974); - if (lookahead == '_') ADVANCE(1977); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(336); if (lookahead == '\t' || - lookahead == ' ') SKIP(254); + lookahead == ' ') SKIP(255); if (lookahead == '+' || - 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(1988); + lookahead == '-') ADVANCE(314); END_STATE(); case 256: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '.') ADVANCE(1604); - if (lookahead == '_') ADVANCE(1977); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1601); + if (lookahead == '_') ADVANCE(1974); if (lookahead == '\t' || - lookahead == ' ') SKIP(254); + lookahead == ' ') SKIP(255); if (lookahead == '+' || - 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(1988); + 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(2190); - if (lookahead == '.') ADVANCE(1817); - if (lookahead == '_') ADVANCE(1815); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1971); + if (lookahead == '_') ADVANCE(1974); if (lookahead == '\t' || - lookahead == ' ') SKIP(254); + lookahead == ' ') SKIP(255); if (lookahead == '+' || - lookahead == '-') ADVANCE(1793); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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: - ADVANCE_MAP( - '#', 2190, - '.', 1962, - 'E', 1969, - 'G', 1971, - 'K', 1971, - 'M', 1971, - 'P', 1971, - 'T', 1971, - '_', 1977, - 'd', 1978, - 'e', 1968, - 'g', 1970, - 'h', 1984, - 'k', 1970, - 'm', 1972, - 'n', 1985, - 'p', 1970, - 's', 1981, - 't', 1970, - 'u', 1985, - 'w', 1982, - 0xb5, 1985, - ); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1814); + if (lookahead == '_') ADVANCE(1812); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + lookahead == ' ') SKIP(255); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1790); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 259: ADVANCE_MAP( - '#', 2190, - '.', 1962, - 'E', 1969, - 'G', 1971, - 'K', 1971, - 'M', 1971, - 'P', 1971, - 'T', 1971, - 'd', 1978, - 'e', 1968, - 'g', 1970, - 'h', 1984, - 'k', 1970, - 'm', 1972, - 'n', 1985, - 'p', 1970, - 's', 1981, - 't', 1970, - 'u', 1985, - 'w', 1982, - 0xb5, 1985, + '#', 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(271); + lookahead == ' ') SKIP(272); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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( - '#', 2190, - '.', 1962, - 'E', 1971, - 'G', 1971, - 'K', 1971, - 'M', 1971, - 'P', 1971, - 'T', 1971, - 'd', 1978, - 'e', 1970, - 'g', 1970, - 'h', 1984, - 'k', 1970, - 'm', 1972, - 'n', 1985, - 'p', 1970, - 's', 1981, - 't', 1970, - 'u', 1985, - 'w', 1982, - 0xb5, 1985, + '#', 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(271); + lookahead == ' ') SKIP(272); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 261: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '.') ADVANCE(1962); - if (lookahead == '_') ADVANCE(1977); + ADVANCE_MAP( + '#', 2187, + '.', 1959, + 'E', 1968, + 'G', 1968, + 'K', 1968, + 'M', 1968, + 'P', 1968, + 'T', 1968, + 'd', 1975, + 'e', 1967, + 'g', 1967, + 'h', 1981, + 'k', 1967, + 'm', 1969, + 'n', 1982, + 'p', 1967, + 's', 1978, + 't', 1967, + 'u', 1982, + 'w', 1979, + 0xb5, 1982, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1975); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + lookahead == ' ') SKIP(272); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 262: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '.') ADVANCE(1962); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1959); + if (lookahead == '_') ADVANCE(1974); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); + lookahead == ' ') SKIP(272); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1975); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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(2190); - if (lookahead == '.') ADVANCE(1962); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1959); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + lookahead == ' ') SKIP(272); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1972); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 264: - ADVANCE_MAP( - '#', 2190, - ':', 1715, - 'a', 412, - 'c', 438, - 'd', 373, - 'e', 517, - 'm', 436, - 'u', 474, - ); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(1959); if (lookahead == '\t' || - lookahead == ' ') SKIP(264); + lookahead == ' ') SKIP(272); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 265: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == ':') ADVANCE(1715); + ADVANCE_MAP( + '#', 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(2187); + if (lookahead == ':') ADVANCE(1712); + if (lookahead == '\t' || + lookahead == ' ') SKIP(266); + END_STATE(); + case 267: ADVANCE_MAP( - '#', 2190, - '>', 1481, - '[', 1467, - ']', 1468, - 'c', 1353, - 'f', 1372, - 'i', 1361, - 'o', 1364, - 'v', 1349, - '\t', 1714, - ' ', 1714, + '#', 2187, + '>', 1478, + '[', 1464, + ']', 1465, + 'c', 1350, + 'f', 1369, + 'i', 1358, + 'o', 1361, + 'v', 1346, + '\t', 1711, + ' ', 1711, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); + lookahead == ',') ADVANCE(1706); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -17790,75 +17918,75 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1375); - END_STATE(); - case 267: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '_') ADVANCE(1815); - if (lookahead == '{') ADVANCE(1500); - if (lookahead == '\t' || - lookahead == ' ') SKIP(269); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1821); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1372); END_STATE(); case 268: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '_') ADVANCE(1977); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '_') ADVANCE(1812); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); + lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1975); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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(2190); - if (lookahead == '{') ADVANCE(1500); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '_') ADVANCE(1974); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); + lookahead == ' ') SKIP(272); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1972); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 270: - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '{') ADVANCE(1500); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1821); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(270); END_STATE(); case 271: - if (lookahead == '#') ADVANCE(2190); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '{') ADVANCE(1497); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); + lookahead == ' ') SKIP(270); + if (lookahead == 'E' || + 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(2190); + if (lookahead == '#') ADVANCE(2187); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1975); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + lookahead == ' ') SKIP(272); END_STATE(); case 273: - if (lookahead == '#') ADVANCE(2190); + if (lookahead == '#') ADVANCE(2187); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1463); + lookahead == ' ') SKIP(272); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1972); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 274: - if (lookahead == '#') ADVANCE(2190); + if (lookahead == '#') ADVANCE(2187); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1499); + lookahead == ' ') SKIP(272); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1460); END_STATE(); case 275: - if (lookahead == '#') ADVANCE(2193); - if (lookahead == '$') ADVANCE(1475); - if (lookahead == ':') ADVANCE(1715); + if (lookahead == '#') ADVANCE(2187); if (lookahead == '\t' || - lookahead == ' ') SKIP(192); + lookahead == ' ') SKIP(272); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1496); + END_STATE(); + case 276: + if (lookahead == '#') ADVANCE(2190); + if (lookahead == '$') ADVANCE(1472); + if (lookahead == ':') ADVANCE(1712); + if (lookahead == '\t' || + lookahead == ' ') SKIP(193); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -17867,13486 +17995,13543 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '.' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1048); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1032); + lookahead == '^') ADVANCE(1045); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1029); END_STATE(); - case 276: + case 277: ADVANCE_MAP( - '#', 2193, - ':', 1715, - 'a', 934, - 'c', 953, - 'd', 897, - 'e', 1021, - 'm', 954, - 'u', 982, + '#', 2190, + ':', 1712, + 'a', 931, + 'c', 950, + 'd', 894, + 'e', 1018, + 'm', 951, + 'u', 979, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(264); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); - END_STATE(); - case 277: - if (lookahead == '#') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1693); - if (lookahead == '(') ADVANCE(1469); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1701); - if (lookahead != 0) ADVANCE(1702); + lookahead == ' ') SKIP(265); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 278: - if (lookahead == '+') ADVANCE(377); - if (lookahead == '>') ADVANCE(1741); - if (lookahead == 'r') ADVANCE(1533); - if (lookahead == 'u') ADVANCE(487); + if (lookahead == '#') ADVANCE(1699); + if (lookahead == '\'') ADVANCE(1690); + if (lookahead == '(') ADVANCE(1466); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1698); + if (lookahead != 0) ADVANCE(1699); END_STATE(); case 279: - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(340); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == '_') ADVANCE(340); - if (lookahead == 'l') ADVANCE(472); - if (lookahead == 'n') ADVANCE(363); - if (lookahead == 'r') ADVANCE(452); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + 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(378); - if (lookahead == '>') ADVANCE(1737); + if (lookahead == '+') ADVANCE(374); + if (lookahead == '>') ADVANCE(1734); END_STATE(); case 281: ADVANCE_MAP( - '+', 429, - '>', 1739, - 'I', 533, - 'i', 533, - 'n', 363, - 'r', 452, - 'B', 1655, - 'b', 1655, + '+', 425, + '>', 1736, + 'I', 528, + 'i', 528, + 'n', 360, + 'r', 447, + 'x', 440, + 'B', 1652, + 'b', 1652, ); END_STATE(); case 282: - if (lookahead == '+') ADVANCE(429); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'l') ADVANCE(472); - if (lookahead == 'n') ADVANCE(363); - if (lookahead == 'r') ADVANCE(452); + 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(429); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'l') ADVANCE(472); - if (lookahead == 'n') ADVANCE(363); - if (lookahead == 'r') ADVANCE(452); - if (lookahead == 'x') ADVANCE(444); + 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(429); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'n') ADVANCE(363); - if (lookahead == 'r') ADVANCE(452); + 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(428); - if (lookahead == '>') ADVANCE(1735); + 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(437); - if (lookahead == '>') ADVANCE(522); - if (lookahead == 'n') ADVANCE(363); - if (lookahead == 'r') ADVANCE(457); + if (lookahead == '+') ADVANCE(424); + if (lookahead == '>') ADVANCE(1732); END_STATE(); case 287: - if (lookahead == '+') ADVANCE(437); - if (lookahead == '>') ADVANCE(522); - if (lookahead == 'r') ADVANCE(457); + 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(379); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(1533); - if (lookahead == 'u') ADVANCE(492); + if (lookahead == '+') ADVANCE(433); + if (lookahead == '>') ADVANCE(517); + if (lookahead == 'r') ADVANCE(452); END_STATE(); case 289: - if (lookahead == '+') ADVANCE(379); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'u') ADVANCE(492); + 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(442); - if (lookahead == '>') ADVANCE(525); + if (lookahead == '+') ADVANCE(375); + if (lookahead == '>') ADVANCE(518); + if (lookahead == 'u') ADVANCE(487); END_STATE(); case 291: - if (lookahead == '+') ADVANCE(383); - if (lookahead == '>') ADVANCE(527); + if (lookahead == '+') ADVANCE(438); + if (lookahead == '>') ADVANCE(520); END_STATE(); case 292: - if (lookahead == '-') ADVANCE(354); + if (lookahead == '+') ADVANCE(379); + if (lookahead == '>') ADVANCE(522); END_STATE(); case 293: - if (lookahead == '-') ADVANCE(384); + if (lookahead == '-') ADVANCE(351); END_STATE(); case 294: - if (lookahead == '-') ADVANCE(384); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1562); + if (lookahead == '-') ADVANCE(380); END_STATE(); case 295: - if (lookahead == '-') ADVANCE(512); + if (lookahead == '-') ADVANCE(380); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1559); END_STATE(); case 296: - if (lookahead == '-') ADVANCE(1486); + if (lookahead == '-') ADVANCE(507); END_STATE(); case 297: - if (lookahead == '-') ADVANCE(1486); - if (lookahead == '.') ADVANCE(335); - if (lookahead == '>') ADVANCE(1466); - if (lookahead == '_') ADVANCE(307); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(538); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if (lookahead == '-') ADVANCE(1483); END_STATE(); case 298: - if (lookahead == '-') ADVANCE(1486); + if (lookahead == '-') ADVANCE(1483); if (lookahead == '.') ADVANCE(335); - if (lookahead == '_') ADVANCE(307); + if (lookahead == '>') ADVANCE(1463); + if (lookahead == '_') ADVANCE(309); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(538); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + lookahead == 'i') ADVANCE(533); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); END_STATE(); case 299: - if (lookahead == '-') ADVANCE(432); + 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 300: - if (lookahead == '-') ADVANCE(489); + if (lookahead == '-') ADVANCE(1483); + if (lookahead == '>') ADVANCE(1463); END_STATE(); case 301: - if (lookahead == '-') ADVANCE(559); + if (lookahead == '-') ADVANCE(428); END_STATE(); case 302: - if (lookahead == '-') ADVANCE(513); + if (lookahead == '-') ADVANCE(484); END_STATE(); case 303: - if (lookahead == '-') ADVANCE(514); + if (lookahead == '-') ADVANCE(554); END_STATE(); case 304: - if (lookahead == '-') ADVANCE(449); + if (lookahead == '-') ADVANCE(508); END_STATE(); case 305: - if (lookahead == '-') ADVANCE(515); + if (lookahead == '-') ADVANCE(509); END_STATE(); case 306: - if (lookahead == '.') ADVANCE(335); - if (lookahead == '_') ADVANCE(307); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(538); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if (lookahead == '-') ADVANCE(445); END_STATE(); case 307: - if (lookahead == '.') ADVANCE(335); - if (lookahead == '_') ADVANCE(307); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if (lookahead == '-') ADVANCE(510); END_STATE(); case 308: - if (lookahead == '.') ADVANCE(1509); - if (lookahead == '_') ADVANCE(342); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + 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(1595); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '_') ADVANCE(309); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); END_STATE(); case 310: - if (lookahead == '.') ADVANCE(1484); + if (lookahead == '.') ADVANCE(1506); + if (lookahead == '_') ADVANCE(339); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); END_STATE(); case 311: - if (lookahead == '.') ADVANCE(310); + if (lookahead == '.') ADVANCE(1481); END_STATE(); case 312: - if (lookahead == '.') ADVANCE(310); - if (lookahead == '_') ADVANCE(336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '.') ADVANCE(311); END_STATE(); case 313: - if (lookahead == '.') ADVANCE(337); - if (lookahead == '_') ADVANCE(313); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if (lookahead == '.') ADVANCE(311); + if (lookahead == '_') ADVANCE(336); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); END_STATE(); case 314: - if (lookahead == '2') ADVANCE(547); - if (lookahead == '0' || - lookahead == '1') ADVANCE(553); + if (lookahead == '.') ADVANCE(337); + if (lookahead == '_') ADVANCE(314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); END_STATE(); case 315: - if (lookahead == ':') ADVANCE(554); + if (lookahead == '2') ADVANCE(542); + if (lookahead == '0' || + lookahead == '1') ADVANCE(548); END_STATE(); case 316: - if (lookahead == ':') ADVANCE(555); + if (lookahead == ':') ADVANCE(549); END_STATE(); case 317: - if (lookahead == ';') ADVANCE(1718); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(317); + if (lookahead == ':') ADVANCE(550); END_STATE(); case 318: - if (lookahead == '=') ADVANCE(1141); - if (lookahead == '~') ADVANCE(1123); + if (lookahead == ';') ADVANCE(1715); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(318); END_STATE(); case 319: - if (lookahead == '=') ADVANCE(1550); - if (lookahead == '~') ADVANCE(1556); + if (lookahead == '=') ADVANCE(1138); + if (lookahead == '~') ADVANCE(1120); END_STATE(); case 320: - if (lookahead == '=') ADVANCE(1549); - if (lookahead == '>') ADVANCE(1502); - if (lookahead == '~') ADVANCE(1555); + if (lookahead == '=') ADVANCE(1547); + if (lookahead == '~') ADVANCE(1553); END_STATE(); case 321: - if (lookahead == '=') ADVANCE(1549); - if (lookahead == '~') ADVANCE(1555); + if (lookahead == '=') ADVANCE(1546); + if (lookahead == '>') ADVANCE(1499); + if (lookahead == '~') ADVANCE(1552); END_STATE(); case 322: - if (lookahead == '>') ADVANCE(1502); + if (lookahead == '=') ADVANCE(1546); + if (lookahead == '~') ADVANCE(1552); END_STATE(); case 323: - if (lookahead == '>') ADVANCE(1749); + if (lookahead == '>') ADVANCE(1499); END_STATE(); case 324: - if (lookahead == '>') ADVANCE(1747); + if (lookahead == '>') ADVANCE(1746); END_STATE(); case 325: - if (lookahead == '>') ADVANCE(1743); + if (lookahead == '>') ADVANCE(1744); END_STATE(); case 326: - if (lookahead == '>') ADVANCE(1745); + if (lookahead == '>') ADVANCE(1740); END_STATE(); case 327: - if (lookahead == '>') ADVANCE(524); + if (lookahead == '>') ADVANCE(1742); END_STATE(); case 328: - if (lookahead == '>') ADVANCE(526); + if (lookahead == '>') ADVANCE(519); END_STATE(); case 329: - if (lookahead == '>') ADVANCE(528); + if (lookahead == '>') ADVANCE(521); END_STATE(); case 330: - if (lookahead == '>') ADVANCE(529); + if (lookahead == '>') ADVANCE(523); END_STATE(); case 331: - if (lookahead == 'I') ADVANCE(533); - if (lookahead == 'i') ADVANCE(533); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); + if (lookahead == '>') ADVANCE(524); END_STATE(); case 332: - if (lookahead == 'I') ADVANCE(533); - if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'I') ADVANCE(528); + if (lookahead == 'i') ADVANCE(528); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); + lookahead == 'b') ADVANCE(1652); END_STATE(); case 333: - if (lookahead == 'I') ADVANCE(533); - if (lookahead == 'i') ADVANCE(419); - if (lookahead == 'o') ADVANCE(361); - if (lookahead == 's') ADVANCE(1660); + if (lookahead == 'I') ADVANCE(528); + if (lookahead == 'i') ADVANCE(353); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); + lookahead == 'b') ADVANCE(1652); END_STATE(); case 334: - if (lookahead == 'I') ADVANCE(533); - if (lookahead == 'i') ADVANCE(419); - if (lookahead == 's') ADVANCE(1660); + 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(1655); + lookahead == 'b') ADVANCE(1652); END_STATE(); case 335: if (lookahead == '_') ADVANCE(335); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); END_STATE(); case 336: if (lookahead == '_') ADVANCE(336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); END_STATE(); case 337: if (lookahead == '_') ADVANCE(337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); END_STATE(); case 338: - if (lookahead == '_') ADVANCE(340); - if (lookahead == 'o') ADVANCE(323); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if (lookahead == '_') ADVANCE(338); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); END_STATE(); case 339: - if (lookahead == '_') ADVANCE(340); - if (lookahead == '+' || - lookahead == '-') ADVANCE(340); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if (lookahead == '_') ADVANCE(339); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); END_STATE(); case 340: - if (lookahead == '_') ADVANCE(340); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if (lookahead == 'a') ADVANCE(464); END_STATE(); case 341: - if (lookahead == '_') ADVANCE(341); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == 'a') ADVANCE(464); + if (lookahead == 'r') ADVANCE(1657); END_STATE(); case 342: - if (lookahead == '_') ADVANCE(342); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if (lookahead == 'a') ADVANCE(513); + if (lookahead == 'e') ADVANCE(383); END_STATE(); case 343: - if (lookahead == 'a') ADVANCE(469); + if (lookahead == 'a') ADVANCE(413); END_STATE(); case 344: - if (lookahead == 'a') ADVANCE(469); - if (lookahead == 'r') ADVANCE(1660); + if (lookahead == 'a') ADVANCE(456); END_STATE(); case 345: - if (lookahead == 'a') ADVANCE(518); + if (lookahead == 'a') ADVANCE(465); END_STATE(); case 346: - if (lookahead == 'a') ADVANCE(417); + if (lookahead == 'a') ADVANCE(462); END_STATE(); case 347: - if (lookahead == 'a') ADVANCE(461); + if (lookahead == 'a') ADVANCE(476); END_STATE(); case 348: - if (lookahead == 'a') ADVANCE(470); + if (lookahead == 'a') ADVANCE(493); END_STATE(); case 349: - if (lookahead == 'a') ADVANCE(467); + if (lookahead == 'a') ADVANCE(495); END_STATE(); case 350: - if (lookahead == 'a') ADVANCE(481); + if (lookahead == 'a') ADVANCE(494); END_STATE(); case 351: - if (lookahead == 'a') ADVANCE(498); + 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(500); + if (lookahead == 'a') ADVANCE(461); END_STATE(); case 353: - if (lookahead == 'a') ADVANCE(499); + if (lookahead == 'b') ADVANCE(1652); END_STATE(); case 354: - if (lookahead == 'a') ADVANCE(425); - if (lookahead == 'o') ADVANCE(454); - if (lookahead == 's') ADVANCE(390); - if (lookahead == 'x') ADVANCE(439); + if (lookahead == 'c') ADVANCE(1657); END_STATE(); case 355: - if (lookahead == 'a') ADVANCE(466); + if (lookahead == 'c') ADVANCE(385); END_STATE(); case 356: - if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'c') ADVANCE(378); END_STATE(); case 357: - if (lookahead == 'c') ADVANCE(1660); + if (lookahead == 'd') ADVANCE(1526); END_STATE(); case 358: - if (lookahead == 'c') ADVANCE(389); + if (lookahead == 'd') ADVANCE(1570); END_STATE(); case 359: - if (lookahead == 'c') ADVANCE(382); + if (lookahead == 'd') ADVANCE(1584); END_STATE(); case 360: - if (lookahead == 'd') ADVANCE(1529); + if (lookahead == 'd') ADVANCE(466); END_STATE(); case 361: - if (lookahead == 'd') ADVANCE(1573); + if (lookahead == 'd') ADVANCE(503); END_STATE(); case 362: - if (lookahead == 'd') ADVANCE(1587); + if (lookahead == 'd') ADVANCE(472); END_STATE(); case 363: - if (lookahead == 'd') ADVANCE(471); + if (lookahead == 'e') ADVANCE(1046); END_STATE(); case 364: - if (lookahead == 'd') ADVANCE(508); + if (lookahead == 'e') ADVANCE(1070); END_STATE(); case 365: - if (lookahead == 'd') ADVANCE(477); + if (lookahead == 'e') ADVANCE(1088); END_STATE(); case 366: - if (lookahead == 'e') ADVANCE(1049); + if (lookahead == 'e') ADVANCE(1091); END_STATE(); case 367: - if (lookahead == 'e') ADVANCE(1073); + if (lookahead == 'e') ADVANCE(1055); END_STATE(); case 368: - if (lookahead == 'e') ADVANCE(1091); + if (lookahead == 'e') ADVANCE(1555); END_STATE(); case 369: - if (lookahead == 'e') ADVANCE(1094); + if (lookahead == 'e') ADVANCE(1557); END_STATE(); case 370: - if (lookahead == 'e') ADVANCE(1058); + if (lookahead == 'e') ADVANCE(383); END_STATE(); case 371: - if (lookahead == 'e') ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1477); END_STATE(); case 372: - if (lookahead == 'e') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(354); + if (lookahead == 't') ADVANCE(344); END_STATE(); case 373: - if (lookahead == 'e') ADVANCE(387); + if (lookahead == 'e') ADVANCE(325); END_STATE(); case 374: - if (lookahead == 'e') ADVANCE(1480); + if (lookahead == 'e') ADVANCE(457); END_STATE(); case 375: - if (lookahead == 'e') ADVANCE(357); + if (lookahead == 'e') ADVANCE(329); END_STATE(); case 376: - if (lookahead == 'e') ADVANCE(357); - if (lookahead == 't') ADVANCE(347); + if (lookahead == 'e') ADVANCE(453); END_STATE(); case 377: - if (lookahead == 'e') ADVANCE(324); + if (lookahead == 'e') ADVANCE(455); END_STATE(); case 378: - if (lookahead == 'e') ADVANCE(462); + if (lookahead == 'e') ADVANCE(410); END_STATE(); case 379: - if (lookahead == 'e') ADVANCE(328); + if (lookahead == 'e') ADVANCE(458); END_STATE(); case 380: - if (lookahead == 'e') ADVANCE(458); + 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(460); + if (lookahead == 'f') ADVANCE(1067); END_STATE(); case 382: - if (lookahead == 'e') ADVANCE(414); + if (lookahead == 'f') ADVANCE(1067); + if (lookahead == 'n') ADVANCE(1082); END_STATE(); case 383: - if (lookahead == 'e') ADVANCE(463); + if (lookahead == 'f') ADVANCE(824); END_STATE(); case 384: - if (lookahead == 'e') ADVANCE(427); - if (lookahead == 'h') ADVANCE(348); - if (lookahead == 'i') ADVANCE(422); - if (lookahead == 'l') ADVANCE(405); - if (lookahead == 's') ADVANCE(505); + if (lookahead == 'f') ADVANCE(1476); END_STATE(); case 385: - if (lookahead == 'f') ADVANCE(1070); + if (lookahead == 'h') ADVANCE(1076); END_STATE(); case 386: - if (lookahead == 'f') ADVANCE(1070); - if (lookahead == 'n') ADVANCE(1085); + if (lookahead == 'h') ADVANCE(407); END_STATE(); case 387: - if (lookahead == 'f') ADVANCE(827); + if (lookahead == 'h') ADVANCE(1542); END_STATE(); case 388: - if (lookahead == 'f') ADVANCE(1479); + if (lookahead == 'h') ADVANCE(1538); END_STATE(); case 389: - if (lookahead == 'h') ADVANCE(1079); + if (lookahead == 'h') ADVANCE(1544); END_STATE(); case 390: - if (lookahead == 'h') ADVANCE(411); + if (lookahead == 'h') ADVANCE(1540); END_STATE(); case 391: - if (lookahead == 'h') ADVANCE(1545); + if (lookahead == 'h') ADVANCE(1473); END_STATE(); case 392: - if (lookahead == 'h') ADVANCE(1541); + if (lookahead == 'h') ADVANCE(1474); END_STATE(); case 393: - if (lookahead == 'h') ADVANCE(1547); + if (lookahead == 'h') ADVANCE(301); END_STATE(); case 394: - if (lookahead == 'h') ADVANCE(1543); + if (lookahead == 'i') ADVANCE(404); END_STATE(); case 395: - if (lookahead == 'h') ADVANCE(1476); + if (lookahead == 'i') ADVANCE(475); END_STATE(); case 396: - if (lookahead == 'h') ADVANCE(1477); + if (lookahead == 'i') ADVANCE(483); END_STATE(); case 397: - if (lookahead == 'h') ADVANCE(299); + if (lookahead == 'i') ADVANCE(485); END_STATE(); case 398: - if (lookahead == 'i') ADVANCE(408); + if (lookahead == 'i') ADVANCE(488); END_STATE(); case 399: - if (lookahead == 'i') ADVANCE(480); + if (lookahead == 'i') ADVANCE(489); END_STATE(); case 400: - if (lookahead == 'i') ADVANCE(488); + if (lookahead == 'i') ADVANCE(490); END_STATE(); case 401: - if (lookahead == 'i') ADVANCE(490); + if (lookahead == 'i') ADVANCE(405); END_STATE(); case 402: - if (lookahead == 'i') ADVANCE(493); + 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(409); + if (lookahead == 'k') ADVANCE(369); END_STATE(); case 406: - if (lookahead == 'i') ADVANCE(349); + if (lookahead == 'l') ADVANCE(1094); END_STATE(); case 407: - if (lookahead == 'k') ADVANCE(1660); + if (lookahead == 'l') ADVANCE(1580); + if (lookahead == 'r') ADVANCE(1582); END_STATE(); case 408: - if (lookahead == 'k') ADVANCE(371); + 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 == 'l') ADVANCE(1097); + if (lookahead == 'l') ADVANCE(411); END_STATE(); case 411: - if (lookahead == 'l') ADVANCE(1583); - if (lookahead == 'r') ADVANCE(1585); + if (lookahead == 'l') ADVANCE(306); END_STATE(); case 412: - if (lookahead == 'l') ADVANCE(406); + if (lookahead == 'l') ADVANCE(367); END_STATE(); case 413: - if (lookahead == 'l') ADVANCE(410); + if (lookahead == 'l') ADVANCE(468); END_STATE(); case 414: - if (lookahead == 'l') ADVANCE(415); + if (lookahead == 'n') ADVANCE(1052); END_STATE(); case 415: - if (lookahead == 'l') ADVANCE(304); + if (lookahead == 'n') ADVANCE(1657); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); END_STATE(); case 416: - if (lookahead == 'l') ADVANCE(370); + if (lookahead == 'n') ADVANCE(357); END_STATE(); case 417: - if (lookahead == 'l') ADVANCE(473); + if (lookahead == 'n') ADVANCE(1082); END_STATE(); case 418: - if (lookahead == 'n') ADVANCE(1055); + if (lookahead == 'n') ADVANCE(1532); END_STATE(); case 419: - if (lookahead == 'n') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); + if (lookahead == 'n') ADVANCE(1475); END_STATE(); case 420: if (lookahead == 'n') ADVANCE(360); END_STATE(); case 421: - if (lookahead == 'n') ADVANCE(1085); + if (lookahead == 'n') ADVANCE(359); END_STATE(); case 422: - if (lookahead == 'n') ADVANCE(1535); + if (lookahead == 'n') ADVANCE(470); END_STATE(); case 423: - if (lookahead == 'n') ADVANCE(1478); + if (lookahead == 'n') ADVANCE(362); END_STATE(); case 424: - if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'o') ADVANCE(502); END_STATE(); case 425: - if (lookahead == 'n') ADVANCE(362); + if (lookahead == 'o') ADVANCE(324); END_STATE(); case 426: - if (lookahead == 'n') ADVANCE(475); + if (lookahead == 'o') ADVANCE(448); END_STATE(); case 427: - if (lookahead == 'n') ADVANCE(365); + if (lookahead == 'o') ADVANCE(384); END_STATE(); case 428: - if (lookahead == 'o') ADVANCE(507); + if (lookahead == 'o') ADVANCE(442); END_STATE(); case 429: - if (lookahead == 'o') ADVANCE(323); + if (lookahead == 'o') ADVANCE(481); END_STATE(); case 430: - if (lookahead == 'o') ADVANCE(453); + if (lookahead == 'o') ADVANCE(481); + if (lookahead == 's') ADVANCE(1657); END_STATE(); case 431: - if (lookahead == 'o') ADVANCE(388); + if (lookahead == 'o') ADVANCE(358); END_STATE(); case 432: - if (lookahead == 'o') ADVANCE(446); + if (lookahead == 'o') ADVANCE(361); END_STATE(); case 433: - if (lookahead == 'o') ADVANCE(486); + if (lookahead == 'o') ADVANCE(328); END_STATE(); case 434: - if (lookahead == 'o') ADVANCE(486); - if (lookahead == 's') ADVANCE(1660); + if (lookahead == 'o') ADVANCE(422); END_STATE(); case 435: - if (lookahead == 'o') ADVANCE(361); + if (lookahead == 'o') ADVANCE(450); END_STATE(); case 436: - if (lookahead == 'o') ADVANCE(364); + if (lookahead == 'o') ADVANCE(478); END_STATE(); case 437: - if (lookahead == 'o') ADVANCE(327); + 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(426); + if (lookahead == 'o') ADVANCE(505); END_STATE(); case 439: - if (lookahead == 'o') ADVANCE(455); + if (lookahead == 'o') ADVANCE(460); END_STATE(); case 440: - if (lookahead == 'o') ADVANCE(483); + if (lookahead == 'p') ADVANCE(439); + if (lookahead == 't') ADVANCE(376); END_STATE(); case 441: - if (lookahead == 'o') ADVANCE(484); - if (lookahead == 'u') ADVANCE(413); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(539); + if (lookahead == 'p') ADVANCE(371); END_STATE(); case 442: - if (lookahead == 'o') ADVANCE(510); + if (lookahead == 'p') ADVANCE(492); END_STATE(); case 443: - if (lookahead == 'o') ADVANCE(465); + if (lookahead == 'p') ADVANCE(348); END_STATE(); case 444: - if (lookahead == 'p') ADVANCE(443); - if (lookahead == 't') ADVANCE(380); + if (lookahead == 'p') ADVANCE(349); END_STATE(); case 445: - if (lookahead == 'p') ADVANCE(374); + if (lookahead == 'p') ADVANCE(350); END_STATE(); case 446: - if (lookahead == 'p') ADVANCE(497); + if (lookahead == 'r') ADVANCE(1530); END_STATE(); case 447: - if (lookahead == 'p') ADVANCE(351); + 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 == 'r') ADVANCE(1660); + if (lookahead == 'r') ADVANCE(1586); END_STATE(); case 451: - if (lookahead == 'r') ADVANCE(1533); + if (lookahead == 'r') ADVANCE(504); END_STATE(); case 452: - if (lookahead == 'r') ADVANCE(285); + if (lookahead == 'r') ADVANCE(291); END_STATE(); case 453: - if (lookahead == 'r') ADVANCE(1531); + if (lookahead == 'r') ADVANCE(414); END_STATE(); case 454: - if (lookahead == 'r') ADVANCE(1591); + 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(509); + if (lookahead == 'r') ADVANCE(498); END_STATE(); case 457: - if (lookahead == 'r') ADVANCE(290); + if (lookahead == 'r') ADVANCE(454); END_STATE(); case 458: - if (lookahead == 'r') ADVANCE(418); + if (lookahead == 'r') ADVANCE(459); END_STATE(); case 459: - if (lookahead == 'r') ADVANCE(326); + if (lookahead == 'r') ADVANCE(331); END_STATE(); case 460: - if (lookahead == 'r') ADVANCE(423); + if (lookahead == 'r') ADVANCE(477); END_STATE(); case 461: - if (lookahead == 'r') ADVANCE(503); + if (lookahead == 'r') ADVANCE(499); END_STATE(); case 462: - if (lookahead == 'r') ADVANCE(459); + if (lookahead == 's') ADVANCE(669); END_STATE(); case 463: - if (lookahead == 'r') ADVANCE(464); + if (lookahead == 's') ADVANCE(1657); END_STATE(); case 464: - if (lookahead == 'r') ADVANCE(330); + if (lookahead == 's') ADVANCE(1534); END_STATE(); case 465: - if (lookahead == 'r') ADVANCE(482); + if (lookahead == 's') ADVANCE(1536); END_STATE(); case 466: - if (lookahead == 'r') ADVANCE(504); + if (lookahead == 's') ADVANCE(296); END_STATE(); case 467: - if (lookahead == 's') ADVANCE(672); + if (lookahead == 's') ADVANCE(364); END_STATE(); case 468: - if (lookahead == 's') ADVANCE(1660); + if (lookahead == 's') ADVANCE(366); END_STATE(); case 469: - if (lookahead == 's') ADVANCE(1537); + if (lookahead == 's') ADVANCE(363); END_STATE(); case 470: - if (lookahead == 's') ADVANCE(1539); + if (lookahead == 's') ADVANCE(474); END_STATE(); case 471: - if (lookahead == 's') ADVANCE(295); + if (lookahead == 's') ADVANCE(304); END_STATE(); case 472: - if (lookahead == 's') ADVANCE(367); + if (lookahead == 's') ADVANCE(305); END_STATE(); case 473: - if (lookahead == 's') ADVANCE(369); + if (lookahead == 's') ADVANCE(307); END_STATE(); case 474: - if (lookahead == 's') ADVANCE(366); + if (lookahead == 't') ADVANCE(681); END_STATE(); case 475: - if (lookahead == 's') ADVANCE(479); + if (lookahead == 't') ADVANCE(293); END_STATE(); case 476: - if (lookahead == 's') ADVANCE(302); + 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(305); + if (lookahead == 't') ADVANCE(295); END_STATE(); case 479: - if (lookahead == 't') ADVANCE(684); + if (lookahead == 't') ADVANCE(543); END_STATE(); case 480: - if (lookahead == 't') ADVANCE(292); + if (lookahead == 't') ADVANCE(344); END_STATE(); case 481: - if (lookahead == 't') ADVANCE(358); + if (lookahead == 't') ADVANCE(294); END_STATE(); case 482: - if (lookahead == 't') ADVANCE(668); + if (lookahead == 't') ADVANCE(280); END_STATE(); case 483: - if (lookahead == 't') ADVANCE(294); + if (lookahead == 't') ADVANCE(387); END_STATE(); case 484: - if (lookahead == 't') ADVANCE(548); + if (lookahead == 't') ADVANCE(514); END_STATE(); case 485: - if (lookahead == 't') ADVANCE(347); + if (lookahead == 't') ADVANCE(388); END_STATE(); case 486: - if (lookahead == 't') ADVANCE(293); + if (lookahead == 't') ADVANCE(326); END_STATE(); case 487: - if (lookahead == 't') ADVANCE(280); + if (lookahead == 't') ADVANCE(292); END_STATE(); case 488: - if (lookahead == 't') ADVANCE(391); + if (lookahead == 't') ADVANCE(389); END_STATE(); case 489: - if (lookahead == 't') ADVANCE(519); + if (lookahead == 't') ADVANCE(390); END_STATE(); case 490: - if (lookahead == 't') ADVANCE(392); + if (lookahead == 't') ADVANCE(393); END_STATE(); case 491: - if (lookahead == 't') ADVANCE(325); + if (lookahead == 't') ADVANCE(330); END_STATE(); case 492: - if (lookahead == 't') ADVANCE(291); + if (lookahead == 't') ADVANCE(302); END_STATE(); case 493: - if (lookahead == 't') ADVANCE(393); + 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(397); + if (lookahead == 't') ADVANCE(497); END_STATE(); case 496: - if (lookahead == 't') ADVANCE(329); + if (lookahead == 't') ADVANCE(376); END_STATE(); case 497: - if (lookahead == 't') ADVANCE(300); + if (lookahead == 't') ADVANCE(377); END_STATE(); case 498: - if (lookahead == 't') ADVANCE(395); + 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(502); + if (lookahead == 't') ADVANCE(352); END_STATE(); case 501: - if (lookahead == 't') ADVANCE(380); + 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(476); + if (lookahead == 'u') ADVANCE(412); END_STATE(); case 504: - if (lookahead == 't') ADVANCE(478); + if (lookahead == 'u') ADVANCE(365); END_STATE(); case 505: - if (lookahead == 't') ADVANCE(355); + if (lookahead == 'u') ADVANCE(491); END_STATE(); case 506: - if (lookahead == 'u') ADVANCE(520); - if (lookahead == 'x') ADVANCE(567); - if (lookahead != 0) ADVANCE(1706); + if (lookahead == 'u') ADVANCE(516); + if (lookahead == 'x') ADVANCE(563); + if (lookahead != 0) ADVANCE(1695); END_STATE(); case 507: - if (lookahead == 'u') ADVANCE(491); + if (lookahead == 'w') ADVANCE(396); END_STATE(); case 508: - if (lookahead == 'u') ADVANCE(416); + if (lookahead == 'w') ADVANCE(397); END_STATE(); case 509: - if (lookahead == 'u') ADVANCE(368); + if (lookahead == 'w') ADVANCE(398); END_STATE(); case 510: - if (lookahead == 'u') ADVANCE(496); + if (lookahead == 'w') ADVANCE(399); END_STATE(); case 511: - if (lookahead == 'u') ADVANCE(521); - if (lookahead == 'x') ADVANCE(568); - if (lookahead != 0) ADVANCE(1698); + if (lookahead == 'w') ADVANCE(400); END_STATE(); case 512: - if (lookahead == 'w') ADVANCE(400); + 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 == 'x') ADVANCE(501); + if (lookahead == '|') ADVANCE(1454); END_STATE(); case 518: - if (lookahead == 'y') ADVANCE(1660); + if (lookahead == '|') ADVANCE(1455); END_STATE(); case 519: - if (lookahead == 'y') ADVANCE(445); + if (lookahead == '|') ADVANCE(1459); END_STATE(); case 520: - if (lookahead == '{') ADVANCE(564); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(562); + if (lookahead == '|') ADVANCE(1452); END_STATE(); case 521: - if (lookahead == '{') ADVANCE(566); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(569); + if (lookahead == '|') ADVANCE(1458); END_STATE(); case 522: - if (lookahead == '|') ADVANCE(1457); + if (lookahead == '|') ADVANCE(1453); END_STATE(); case 523: - if (lookahead == '|') ADVANCE(1458); + if (lookahead == '|') ADVANCE(1456); END_STATE(); case 524: - if (lookahead == '|') ADVANCE(1462); + if (lookahead == '|') ADVANCE(1457); END_STATE(); case 525: - if (lookahead == '|') ADVANCE(1455); + 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(1461); + 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(1456); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(534); END_STATE(); case 528: - if (lookahead == '|') ADVANCE(1459); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); END_STATE(); case 529: - if (lookahead == '|') ADVANCE(1460); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1104); END_STATE(); case 530: - if (lookahead == '}') ADVANCE(1706); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(530); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1102); END_STATE(); case 531: - if (lookahead == '}') ADVANCE(1698); - 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 == 'A' || - lookahead == 'a') ADVANCE(539); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(539); END_STATE(); case 533: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(529); END_STATE(); case 534: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1107); + 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 == 'I' || - lookahead == 'i') ADVANCE(543); + 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 == 'N' || - lookahead == 'n') ADVANCE(534); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(541); END_STATE(); case 539: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1111); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(540); END_STATE(); case 540: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(536); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1097); END_STATE(); case 541: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(535); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1103); END_STATE(); case 542: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(537); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1670); END_STATE(); case 543: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(546); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1559); END_STATE(); case 544: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(545); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(317); END_STATE(); case 545: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1100); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); END_STATE(); case 546: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); END_STATE(); case 547: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1673); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1678); END_STATE(); case 548: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1562); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); END_STATE(); case 549: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(544); END_STATE(); case 550: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(545); END_STATE(); case 551: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1677); END_STATE(); case 552: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(303); END_STATE(); case 553: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(552); END_STATE(); case 554: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(549); + 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(1680); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(555); END_STATE(); case 557: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(301); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(562); END_STATE(); case 558: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(557); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1703); END_STATE(); case 559: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(556); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(525); END_STATE(); case 560: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(315); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1695); END_STATE(); case 561: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(560); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(526); END_STATE(); case 562: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(558); END_STATE(); case 563: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1706); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(560); END_STATE(); case 564: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(530); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(563); END_STATE(); case 565: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1698); + if (eof) ADVANCE(660); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '!', 1717, + '"', 1684, + '#', 2187, + '$', 1470, + '&', 823, + '\'', 1687, + '(', 1466, + ')', 1467, + '*', 1511, + '+', 1574, + ',', 1468, + '-', 1485, + '.', 1720, + '/', 1569, + ':', 1712, + ';', 1450, + '<', 1548, + '=', 672, + '>', 1479, + '?', 1716, + '@', 1461, + '[', 1464, + ']', 1465, + '^', 1730, + '_', 1501, + '`', 1691, + '{', 1497, + '|', 1451, + '}', 1498, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(565); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1372); END_STATE(); case 566: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); + if (eof) ADVANCE(660); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '!', 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(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(823); END_STATE(); case 567: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(563); + if (eof) ADVANCE(660); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '!', 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(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 568: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(565); + if (eof) ADVANCE(660); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '!', 1717, + '#', 2187, + '(', 1466, + ')', 1467, + '-', 300, + '.', 1719, + ':', 1462, + ';', 1450, + '=', 672, + '>', 1478, + '?', 1716, + '[', 1464, + 'a', 416, + 'e', 288, + 'i', 417, + 'o', 289, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(568); END_STATE(); case 569: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(568); + if (eof) ADVANCE(660); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '!', 1717, + '#', 2187, + '(', 1466, + ')', 1467, + '-', 300, + '.', 1721, + ':', 1462, + ';', 1450, + '<', 1140, + '=', 672, + '>', 1478, + '?', 1716, + '@', 1480, + '[', 1464, + 'a', 416, + 'e', 288, + 'i', 417, + 'o', 289, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(568); END_STATE(); case 570: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1720, - '"', 1687, - '#', 2190, - '$', 1473, - '&', 826, - '\'', 1690, - '(', 1469, - ')', 1470, - '*', 1514, - '+', 1577, - ',', 1471, - '-', 1488, - '.', 1723, - '/', 1572, - ':', 1715, - ';', 1453, - '<', 1551, - '=', 675, - '>', 1482, - '?', 1719, - '@', 1464, - '[', 1467, - ']', 1468, - '^', 1733, - '_', 1504, - '`', 1694, - '{', 1500, - '|', 1454, - '}', 1501, + '!', 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 (lookahead == '\t' || lookahead == ' ') SKIP(570); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1375); END_STATE(); case 571: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1720, - '"', 1687, - '#', 2190, - '\'', 1690, - ')', 1470, - '*', 1513, - '+', 704, - '-', 306, - '.', 1728, - ';', 1453, - '?', 1719, - 'I', 811, - 'N', 807, - '[', 1467, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 800, - 't', 774, - 'u', 787, - 'w', 753, - '}', 1501, + '!', 1717, + '#', 2187, + '(', 1466, + ')', 1467, + '-', 297, + '.', 1721, + ':', 1462, + ';', 1450, + '=', 674, + '>', 1478, + '?', 1716, + '[', 1464, + 'a', 416, + 'e', 288, + 'i', 382, + 'o', 289, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(571); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '\'' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(826); + lookahead == ' ') SKIP(570); END_STATE(); case 572: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1720, - '"', 1687, - '#', 2190, - '\'', 1690, - ')', 1470, - '*', 1513, - '+', 704, - '-', 306, - '.', 1728, - ';', 1453, - 'I', 811, - 'N', 807, - '[', 1467, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 800, - 't', 774, - 'u', 787, - 'w', 753, - '}', 1501, + '!', 1717, + '#', 2187, + ')', 1467, + '.', 1721, + ';', 1450, + '=', 1728, + '?', 1716, + 'e', 1373, + 'o', 1374, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(572); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1446); END_STATE(); case 573: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1720, - '#', 2190, - '(', 1469, - ')', 1470, - '-', 296, - '.', 1722, - ':', 1715, - ';', 1453, - '=', 677, - '>', 1481, - '?', 1719, - '[', 1467, - 'a', 420, - 'e', 287, - 'i', 386, - 'o', 288, - 'x', 430, - '{', 1500, - '|', 1454, - '}', 1501, + '!', 1718, + '#', 2187, + '$', 1508, + '\'', 1690, + '(', 1560, + ')', 1467, + '*', 1512, + '+', 1577, + '-', 1494, + '.', 1721, + '/', 1567, + ':', 1712, + ';', 1450, + '<', 1549, + '=', 673, + '>', 1479, + '?', 1716, + '@', 1480, + ']', 1465, + '`', 1694, + 'a', 416, + 'b', 395, + 'c', 347, + 'd', 370, + '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(573); + lookahead == ' ') SKIP(576); END_STATE(); case 574: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1720, - '#', 2190, - '(', 1469, - ')', 1470, - '-', 296, - '.', 1722, - ':', 1465, - ';', 1453, - '=', 675, - '>', 1481, - '?', 1719, - '[', 1467, - 'a', 420, - 'e', 287, - 'i', 421, - 'o', 288, - 'x', 430, - '|', 1454, - '}', 1501, + '!', 1718, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1721, + '/', 1566, + ':', 1712, + ';', 1450, + '<', 1549, + '=', 321, + '>', 1479, + '?', 1716, + '@', 1461, + 'B', 1652, + 'E', 333, + 'G', 333, + 'K', 333, + 'M', 333, + 'P', 333, + 'T', 333, + '[', 1664, + 'a', 416, + 'b', 1654, + 'd', 342, + 'e', 281, + 'g', 332, + 'h', 341, + 'i', 382, + 'k', 332, + 'l', 394, + 'm', 334, + 'n', 430, + 'o', 279, + 'p', 332, + 's', 372, + 't', 332, + 'u', 463, + 'w', 403, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, + 0xb5, 463, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(574); + lookahead == ' ') SKIP(575); END_STATE(); case 575: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1720, - '#', 2190, - '(', 1469, - ')', 1470, - '-', 296, - '.', 1724, - ':', 1715, - ';', 1453, - '=', 677, - '>', 1481, - '?', 1719, - '[', 1467, - 'a', 420, - 'e', 287, - 'i', 386, - 'o', 288, - 'x', 430, - '{', 1500, - '|', 1454, - '}', 1501, + '!', 1718, + '#', 2187, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1719, + '/', 1566, + ':', 1712, + ';', 1450, + '<', 1549, + '=', 321, + '>', 1479, + '?', 1716, + '@', 1461, + 'a', 416, + 'b', 395, + 'd', 370, + 'e', 285, + 'h', 340, + 'i', 382, + 'l', 394, + 'm', 431, + 'n', 429, + 'o', 279, + 's', 480, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(573); + lookahead == ' ') SKIP(575); END_STATE(); case 576: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1720, - '#', 2190, - '(', 1469, - ')', 1470, - '-', 296, - '.', 1724, - ':', 1465, - ';', 1453, - '=', 675, - '>', 1481, - '?', 1719, - '[', 1467, - 'a', 420, - 'e', 287, - 'i', 421, - 'o', 288, - 'x', 430, - '|', 1454, - '}', 1501, + '!', 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', 480, + 'x', 426, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(574); + lookahead == ' ') SKIP(576); END_STATE(); case 577: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1720, - '#', 2190, - ')', 1470, - '.', 1724, - ';', 1453, - '=', 1731, - '?', 1719, - 'e', 1376, - 'o', 1377, - '|', 1454, - '}', 1501, - '\t', 1452, - ' ', 1452, + '!', 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 (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1449); + if (lookahead == '\t' || + 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(1933); END_STATE(); case 578: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1721, - '#', 2190, - '$', 1511, - '\'', 1693, - '(', 1563, - ')', 1470, - '*', 1515, - '+', 1580, - '-', 1497, - '.', 1724, - '/', 1570, - ':', 1715, - ';', 1453, - '<', 1552, - '=', 676, - '>', 1482, - '?', 1719, - '@', 1464, - ']', 1468, - '`', 1697, - 'a', 420, - 'b', 399, - 'c', 350, - 'd', 373, - 'e', 283, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 278, - 's', 485, - 'x', 430, - '{', 1500, - '|', 1454, - '}', 1501, + '!', 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(581); + 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 579: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1721, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1724, - '/', 1569, - ':', 1715, - ';', 1453, - '<', 1552, - '=', 320, - '>', 1482, - '?', 1719, - 'B', 1655, - 'E', 332, - 'G', 332, - 'K', 332, - 'M', 332, - 'P', 332, - 'T', 332, - '[', 1667, - 'a', 420, - 'b', 1657, - 'd', 345, - 'e', 281, - 'g', 331, - 'h', 344, - 'i', 386, - 'k', 331, - 'l', 398, - 'm', 333, - 'n', 434, - 'o', 278, - 'p', 331, - 's', 376, - 't', 331, - 'u', 468, - 'w', 407, - 'x', 430, - '{', 1500, - '|', 1454, - '}', 1501, - 0xb5, 468, + '!', 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(580); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1721, - '#', 2190, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1722, - '/', 1569, - ':', 1715, - ';', 1453, - '<', 1552, - '=', 320, - '>', 1482, - '?', 1719, - 'a', 420, - 'b', 399, - 'e', 284, - 'h', 343, - 'i', 386, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 278, - 's', 485, - 'x', 430, - '{', 1500, - '|', 1454, - '}', 1501, + '!', 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(580); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1721, - '#', 2190, - ')', 1470, - '*', 1515, - '+', 1580, - '-', 1497, - '.', 1722, - '/', 1570, - ':', 1715, - ';', 1453, - '<', 1552, - '=', 676, - '>', 1482, - '?', 1719, - '@', 1464, - ']', 1468, - 'a', 420, - 'b', 399, - 'c', 350, - 'd', 373, - 'e', 283, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 278, - 's', 485, - 'x', 430, - '{', 1500, - '|', 1454, - '}', 1501, + '!', 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(581); + lookahead == ' ') SKIP(614); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 582: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1578, - '-', 1495, - '.', 1606, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - '_', 1815, - 'a', 1867, - 'b', 1854, - 'e', 1774, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1765, - 's', 1901, - 'x', 1873, - '{', 1500, - '|', 1454, - '}', 1501, + '!', 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(614); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1936); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 583: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1578, - '-', 1495, - '.', 1606, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - '_', 1815, - 'a', 1867, - 'b', 1854, - 'e', 1778, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1780, - 's', 1901, - 'x', 1873, - '|', 1454, - '}', 1501, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1594, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1764, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1762, + 's', 1898, + 'x', 1870, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(616); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(613); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1933); END_STATE(); case 584: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1578, - '-', 1495, - '.', 1817, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - '_', 1815, - 'a', 1867, - 'b', 1854, - 'e', 1774, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1765, - 's', 1901, - 'x', 1873, - '|', 1454, - '}', 1501, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1594, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1767, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1777, + 's', 1898, + 'x', 1870, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 585: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1578, - '-', 1495, - '.', 1817, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - '_', 1815, - 'a', 1867, - 'b', 1854, - 'e', 1778, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1780, - 's', 1901, - 'x', 1873, - '|', 1454, - '}', 1501, + '!', 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(616); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1597, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'B', 1655, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'a', 1867, - 'b', 1658, - 'd', 1826, - 'e', 1766, - 'g', 1811, - 'h', 1824, - 'i', 1865, - 'k', 1811, - 'l', 1853, - 'm', 1813, - 'n', 1874, - 'o', 1765, - 'p', 1811, - 's', 1840, - 't', 1811, - 'u', 1893, - 'w', 1860, - 'x', 1873, - '|', 1454, - '}', 1501, - 0xb5, 1893, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'B', 1652, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + '_', 1812, + 'a', 1864, + 'b', 1655, + 'd', 1823, + 'e', 1765, + 'g', 1808, + 'h', 1821, + 'i', 1862, + 'k', 1808, + 'l', 1850, + 'm', 1810, + 'n', 1871, + 'o', 1777, + 'p', 1808, + 's', 1837, + 't', 1808, + 'u', 1890, + 'w', 1857, + 'x', 1870, + '|', 1451, + '}', 1498, + 0xb5, 1890, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1597, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'B', 1655, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'a', 1867, - 'b', 1658, - 'd', 1826, - 'e', 1768, - 'g', 1811, - 'h', 1824, - 'i', 1865, - 'k', 1811, - 'l', 1853, - 'm', 1813, - 'n', 1874, - 'o', 1780, - 'p', 1811, - 's', 1840, - 't', 1811, - 'u', 1893, - 'w', 1860, - 'x', 1873, - '|', 1454, - '}', 1501, - 0xb5, 1893, + '!', 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(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(614); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 588: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1597, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'E', 1821, - 'a', 1867, - 'b', 1854, - 'e', 1767, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1765, - 's', 1901, - 'x', 1873, - '{', 1500, - '|', 1454, - '}', 1501, + '!', 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(618); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1936); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 589: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1597, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'E', 1821, - 'a', 1867, - 'b', 1854, + '!', 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, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1780, - 's', 1901, - 'x', 1873, - '|', 1454, - '}', 1501, + '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(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(614); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 590: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'B', 1655, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'B', 1652, 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - '_', 1815, - 'a', 1867, - 'b', 1658, - 'd', 1826, - 'e', 1766, - 'g', 1811, - 'h', 1824, - 'i', 1865, - 'k', 1811, - 'l', 1853, - 'm', 1813, - 'n', 1874, - 'o', 1765, - 'p', 1811, - 's', 1840, - 't', 1811, - 'u', 1893, - 'w', 1860, - 'x', 1873, - '|', 1454, - '}', 1501, - 0xb5, 1893, + '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(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 591: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'B', 1655, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - '_', 1815, - 'a', 1867, - 'b', 1658, - 'd', 1826, - 'e', 1768, - 'g', 1811, - 'h', 1824, - 'i', 1865, - 'k', 1811, - 'l', 1853, - 'm', 1813, - 'n', 1874, - 'o', 1780, - 'p', 1811, - 's', 1840, - 't', 1811, - 'u', 1893, - 'w', 1860, - 'x', 1873, - '|', 1454, - '}', 1501, - 0xb5, 1893, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1764, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1762, + 's', 1898, + 'x', 1870, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'B', 1655, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'a', 1867, - 'b', 1658, - 'd', 1826, - 'e', 1766, - 'g', 1811, - 'h', 1824, - 'i', 1865, - 'k', 1811, - 'l', 1853, - 'm', 1813, - 'n', 1874, - 'o', 1765, - 'p', 1811, - 's', 1840, - 't', 1811, - 'u', 1893, - 'w', 1860, - 'x', 1873, - '|', 1454, - '}', 1501, - 0xb5, 1893, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + '_', 1812, + 'a', 1864, + 'b', 1851, + 'e', 1767, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1777, + 's', 1898, + 'x', 1870, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'B', 1655, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'a', 1867, - 'b', 1658, - 'd', 1826, - 'e', 1768, - 'g', 1811, - 'h', 1824, - 'i', 1865, - 'k', 1811, - 'l', 1853, - 'm', 1813, - 'n', 1874, - 'o', 1780, - 'p', 1811, - 's', 1840, - 't', 1811, - 'u', 1893, - 'w', 1860, - 'x', 1873, - '|', 1454, - '}', 1501, - 0xb5, 1893, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1764, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1762, + 's', 1898, + 'x', 1870, + '{', 1497, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'B', 1655, - 'E', 1812, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'a', 1867, - 'b', 1658, - 'd', 1826, - 'e', 1773, - 'g', 1811, - 'h', 1824, - 'i', 1865, - 'k', 1811, - 'l', 1853, - 'm', 1813, - 'n', 1874, - 'o', 1765, - 'p', 1811, - 's', 1840, - 't', 1811, - 'u', 1893, - 'w', 1860, - 'x', 1873, - '|', 1454, - '}', 1501, - 0xb5, 1893, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1789, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1767, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1777, + 's', 1898, + 'x', 1870, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 595: - if (eof) ADVANCE(663); - ADVANCE_MAP( - '\n', 1450, - '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'B', 1655, - 'E', 1812, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'a', 1867, - 'b', 1658, - 'd', 1826, - 'e', 1776, - 'g', 1811, - 'h', 1824, - 'i', 1865, - 'k', 1811, - 'l', 1853, - 'm', 1813, - 'n', 1874, - 'o', 1780, - 'p', 1811, - 's', 1840, - 't', 1811, - 'u', 1893, - 'w', 1860, - 'x', 1873, - '|', 1454, - '}', 1501, - 0xb5, 1893, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); - END_STATE(); - case 596: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'E', 1821, - '_', 1815, - 'a', 1867, - 'b', 1854, - 'e', 1767, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1765, - 's', 1901, - 'x', 1873, - '{', 1500, - '|', 1454, - '}', 1501, + '!', 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(618); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + lookahead == ' ') SKIP(613); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1936); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1933); END_STATE(); - case 597: - if (eof) ADVANCE(663); + case 596: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'E', 1821, - '_', 1815, - 'a', 1867, - 'b', 1854, - 'e', 1770, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1780, - 's', 1901, - 'x', 1873, - '|', 1454, - '}', 1501, + '!', 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(620); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); - case 598: - if (eof) ADVANCE(663); + case 597: + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'E', 1821, - 'a', 1867, - 'b', 1854, - 'e', 1767, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1765, - 's', 1901, - 'x', 1873, - '{', 1500, - '|', 1454, - '}', 1501, + '!', 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(618); + lookahead == ' ') SKIP(613); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1936); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1933); + END_STATE(); + case 598: + if (eof) ADVANCE(660); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '.', 1593, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, + 'e', 1767, + 'h', 1822, + 'i', 1862, + 'l', 1850, + 'm', 1873, + 'n', 1872, + 'o', 1777, + 's', 1898, + 'x', 1870, + '|', 1451, + '}', 1498, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 599: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'E', 1821, - 'a', 1867, - 'b', 1854, - 'e', 1770, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1780, - 's', 1901, - 'x', 1873, - '|', 1454, - '}', 1501, + '!', 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(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'a', 1867, - 'b', 1854, - 'e', 1774, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1765, - 's', 1901, - 'x', 1873, - '{', 1500, - '|', 1454, - '}', 1501, + '!', 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(618); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1792, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'a', 1867, - 'b', 1854, - 'e', 1778, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1780, - 's', 1901, - 'x', 1873, - '|', 1454, - '}', 1501, + '!', 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(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(614); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 602: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1596, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'E', 1821, - 'a', 1867, - 'b', 1854, + '!', 1792, + '#', 2187, + '(', 1560, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 1794, + '>', 1479, + 'E', 1818, + 'a', 1864, + 'b', 1851, 'e', 1767, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1765, - 's', 1901, - 'x', 1873, - '|', 1454, - '}', 1501, + '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(1936); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 603: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1596, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'E', 1821, - 'a', 1867, - 'b', 1854, - 'e', 1770, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1780, - 's', 1901, - 'x', 1873, - '|', 1454, - '}', 1501, + '!', 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(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'E', 1821, - '_', 1815, - 'a', 1867, - 'b', 1854, - 'e', 1767, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1765, - 's', 1901, - 'x', 1873, - '|', 1454, - '}', 1501, + '!', 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(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 605: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, + '!', 851, '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'E', 1821, - '_', 1815, - 'a', 1867, - 'b', 1854, - 'e', 1770, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1780, - 's', 1901, - 'x', 1873, - '|', 1454, - '}', 1501, + ')', 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(620); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, + '!', 851, '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'E', 1821, - 'a', 1867, - 'b', 1854, - 'e', 1767, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1765, - 's', 1901, - 'x', 1873, - '|', 1454, - '}', 1501, + ')', 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(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'E', 1821, - 'a', 1867, - 'b', 1854, - 'e', 1770, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1780, - 's', 1901, - 'x', 1873, - '|', 1454, - '}', 1501, + '!', 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(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(607); END_STATE(); case 608: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'a', 1867, - 'b', 1854, - 'e', 1774, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1765, - 's', 1901, - 'x', 1873, - '{', 1500, - '|', 1454, - '}', 1501, + '!', 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(618); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1936); + lookahead == ' ') SKIP(607); END_STATE(); case 609: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1795, - '#', 2190, - '(', 1563, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 1797, - '>', 1482, - 'a', 1867, - 'b', 1854, - 'e', 1778, - 'h', 1825, - 'i', 1865, - 'l', 1853, - 'm', 1876, - 'n', 1875, - 'o', 1780, - 's', 1901, - 'x', 1873, - '|', 1454, - '}', 1501, + '!', 320, + '#', 2187, + '$', 1469, + ')', 1467, + '*', 1511, + '+', 1576, + '-', 1493, + '.', 336, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 322, + '>', 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(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(609); END_STATE(); case 610: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 854, - '#', 2193, - ')', 1470, - '*', 1516, - '+', 1581, - '-', 1498, - '/', 1571, - ':', 1715, - ';', 1453, - '<', 1552, - '=', 321, - '>', 1482, - 'a', 938, - 'b', 920, - 'e', 831, - 'h', 877, - 'i', 939, - 'l', 919, - 'm', 951, - 'n', 952, - 'o', 830, - 's', 997, - 'x', 950, - '|', 1454, - '}', 1501, + '!', 320, + '#', 2187, + '$', 1469, + ')', 1467, + '*', 1511, + '+', 1576, + '-', 1493, + '.', 336, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 322, + '>', 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(617); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1048); + lookahead == ' ') SKIP(610); END_STATE(); case 611: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 854, - '#', 2193, - ')', 1470, - '*', 1516, - '+', 1581, - '-', 1498, - '/', 1571, - ';', 1453, - '<', 1552, - '=', 321, - '>', 1482, - 'a', 938, - 'b', 920, - 'e', 835, - 'h', 877, - 'i', 939, - 'l', 919, - 'm', 951, - 'n', 952, - 'o', 834, - 's', 997, - 'x', 950, - '|', 1454, - '}', 1501, + '!', 320, + '#', 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(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1048); + lookahead == ' ') SKIP(611); END_STATE(); case 612: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 319, - '#', 2190, - '$', 1472, - '(', 1469, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '.', 1596, - '/', 1569, - ':', 1465, - ';', 1453, - '<', 1552, - '=', 320, - '>', 1482, - 'E', 339, - '[', 1467, - 'a', 420, - 'b', 399, - 'c', 350, - 'e', 279, - 'f', 346, - 'h', 343, - 'i', 386, - 'l', 398, - 'm', 435, - 'n', 440, - 'o', 278, - 's', 485, - 't', 456, - 'x', 430, - '{', 1500, - '|', 1454, - '}', 1501, + '!', 320, + '#', 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', 480, + 'x', 426, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(613); + lookahead == ' ') SKIP(612); END_STATE(); case 613: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 319, - '#', 2190, - '$', 1472, - '(', 1469, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - ':', 1465, - ';', 1453, - '<', 1552, - '=', 320, - '>', 1482, - '[', 1467, - 'a', 420, - 'b', 399, - 'c', 350, - 'e', 282, - 'f', 346, - 'h', 343, - 'i', 386, - 'l', 398, - 'm', 435, - 'n', 440, - 'o', 278, - 's', 485, - 't', 456, - 'x', 430, - '{', 1500, - '|', 1454, - '}', 1501, + '!', 320, + '#', 2187, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 322, + '>', 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(613); END_STATE(); case 614: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 319, - '#', 2190, - '$', 1472, - ')', 1470, - '*', 1514, - '+', 1579, - '-', 1496, - '.', 336, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 321, - '>', 1482, - 'a', 420, - 'b', 399, + '!', 320, + '#', 2187, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 322, + '>', 1479, + 'a', 416, + 'b', 395, 'e', 284, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 278, - 's', 485, - 'x', 430, - '{', 1500, - '|', 1454, - '}', 1501, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, + 'o', 279, + 's', 480, + 'x', 426, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || lookahead == ' ') SKIP(614); END_STATE(); case 615: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 319, - '#', 2190, - '$', 1472, - ')', 1470, - '*', 1514, - '+', 1579, - '-', 1496, - '.', 336, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 321, - '>', 1482, - 'a', 420, - 'b', 399, - 'e', 284, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 278, - 's', 485, - 'x', 430, - '|', 1454, - '}', 1501, + '!', 320, + '#', 2187, + ')', 1467, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 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(615); END_STATE(); case 616: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 319, - '#', 2190, - '$', 1472, - ')', 1470, - '*', 1514, - '+', 1579, - '-', 1496, - '.', 336, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 321, - '>', 1482, - 'a', 420, - 'b', 399, - 'e', 286, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 288, - 's', 485, - 'x', 430, - '|', 1454, - '}', 1501, + '!', 320, + '#', 2187, + ')', 1467, + '*', 1512, + '+', 1577, + '-', 1494, + '.', 1719, + '/', 1567, + ':', 1462, + ';', 1450, + '<', 1549, + '=', 673, + '>', 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(616); END_STATE(); case 617: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 319, - '#', 2190, - ')', 1470, - '*', 1514, + '!', 320, + '#', 2187, + ')', 1467, + '*', 1512, '+', 1577, - '-', 1488, - '/', 1569, - ':', 1715, - ';', 1453, - '<', 1552, - '=', 321, - '>', 1482, - 'a', 420, - 'b', 399, + '-', 1494, + '.', 1721, + '/', 1567, + ':', 1462, + ';', 1450, + '<', 1549, + '=', 673, + '>', 1479, + 'a', 416, + 'b', 395, 'e', 284, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 278, - 's', 485, - 'x', 430, - '|', 1454, - '}', 1501, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, + 'o', 279, + 's', 480, + 'x', 426, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); + lookahead == ' ') SKIP(616); END_STATE(); case 618: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 319, - '#', 2190, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 321, - '>', 1482, - 'a', 420, - 'b', 399, + '!', 320, + '#', 2187, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 1566, + ';', 1450, + '<', 1549, + '=', 322, + '>', 1479, + 'a', 416, + 'b', 395, 'e', 284, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 278, - 's', 485, - 'x', 430, - '{', 1500, - '|', 1454, - '}', 1501, + 'h', 340, + 'i', 417, + 'l', 394, + 'm', 431, + 'n', 429, + 'o', 279, + 's', 480, + 'x', 426, + '|', 1451, ); if (lookahead == '\t' || lookahead == ' ') SKIP(618); END_STATE(); case 619: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 319, - '#', 2190, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 321, - '>', 1482, - 'a', 420, - 'b', 399, - 'e', 284, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 278, - 's', 485, - 'x', 430, - '|', 1454, - '}', 1501, + '!', 320, + '#', 2187, + '*', 1511, + '+', 1574, + '-', 1485, + '/', 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, ); if (lookahead == '\t' || lookahead == ' ') SKIP(619); END_STATE(); case 620: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 319, - '#', 2190, - ')', 1470, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 321, - '>', 1482, - 'a', 420, - 'b', 399, - 'e', 286, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 288, - 's', 485, - 'x', 430, - '|', 1454, - '}', 1501, + '"', 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 319, - '#', 2190, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 321, - '>', 1482, - 'a', 420, - 'b', 399, - 'e', 284, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 278, - 's', 485, - 'x', 430, - '|', 1454, + '"', 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 319, - '#', 2190, - '*', 1514, - '+', 1577, - '-', 1488, - '/', 1569, - ';', 1453, - '<', 1552, - '=', 321, - '>', 1482, - 'a', 420, - 'b', 399, - 'e', 286, - 'h', 343, - 'i', 421, - 'l', 398, - 'm', 435, - 'n', 433, - 'o', 288, - 's', 485, - 'x', 430, - '|', 1454, + '"', 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(622); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '@' && + (lookahead < ']' || 'a' < lookahead)) ADVANCE(823); END_STATE(); case 623: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - ')', 1618, - '+', 704, - '-', 1493, - '.', 699, - '0', 1625, - ':', 1465, - ';', 1453, - '=', 675, - '@', 1464, - 'I', 811, - 'N', 807, - '[', 1467, - '^', 1733, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 771, - 't', 774, - 'u', 787, - 'w', 749, - '{', 1500, - '|', 1454, - '}', 1501, + '"', 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(624); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + 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(826); + (lookahead < ']' || 'a' < lookahead)) ADVANCE(823); END_STATE(); case 624: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - ')', 1470, - '+', 704, - '-', 1493, - '.', 699, - '0', 1625, - ':', 1465, - ';', 1453, - '=', 675, - '@', 1464, - 'I', 811, - 'N', 807, - '[', 1467, - '^', 1733, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 771, - 't', 774, - 'u', 787, - 'w', 749, - '{', 1500, - '|', 1454, - '}', 1501, + '"', 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 (lookahead == '\t' || - lookahead == ' ') SKIP(624); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(826); + lookahead != ']') ADVANCE(2069); END_STATE(); case 625: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - ')', 1470, - '+', 704, - '-', 1493, - '.', 699, - '0', 1625, - ':', 1465, - ';', 1453, - '=', 675, - 'I', 811, - 'N', 807, - '[', 1467, - '^', 1733, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 693, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 771, - 'o', 695, - 't', 774, - 'u', 787, - 'w', 749, - '{', 1500, - '|', 1454, - '}', 1501, + '"', 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(625); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '@' && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(826); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '$', 1473, - '\'', 1690, - '(', 1469, - ')', 1470, - '+', 2002, - '-', 1490, - '.', 2001, - '0', 1626, - ';', 1453, - 'N', 2049, - '[', 1467, - '_', 2014, - '`', 1694, - 'e', 1991, - 'f', 2017, - 'n', 2045, - 'o', 1992, - 't', 2032, - '{', 1500, - '|', 1454, - '}', 1501, - '\t', 1452, - ' ', 1452, - 'I', 2053, - 'i', 2053, + '"', 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 (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if (lookahead == '\t' || + lookahead == ' ') SKIP(626); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2072); + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(823); END_STATE(); case 627: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '\'', 1690, - '(', 1469, - ')', 1470, - '*', 1513, - '+', 704, - '-', 297, - '.', 720, - ';', 1453, - '<', 1143, - '=', 675, - '>', 1481, - '@', 1483, - 'I', 811, - 'N', 807, - '[', 1467, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 800, - 't', 774, - 'u', 787, - 'w', 753, - '{', 1500, - '}', 1501, + '"', 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(1646); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(826); + 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 628: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '\'', 1690, - '(', 1469, - ')', 1470, - '*', 1513, - '+', 704, - '-', 297, - '.', 720, - ';', 1453, - '=', 675, - '>', 1481, - 'I', 811, - 'N', 807, - '[', 1467, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 800, - 't', 774, - 'u', 787, - 'w', 753, - '{', 1500, - '}', 1501, + '"', 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(628); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); + 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 629: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '\'', 1690, - ')', 1470, - '*', 1513, - '+', 704, - '-', 306, - '.', 1728, - ';', 1453, - '?', 1719, - 'I', 811, - 'N', 807, - '[', 1467, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 800, - 't', 774, - 'u', 787, - 'w', 753, - '}', 1501, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + '.', 1603, + ';', 1450, + '[', 1664, + '_', 1812, + 'e', 1776, + 'o', 1778, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, + '+', 1790, + '-', 1790, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(629); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(826); + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1933); END_STATE(); case 630: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2190, - '\'', 1690, - ')', 1470, - '*', 1513, - '+', 704, - '-', 306, - '.', 1728, - ';', 1453, - 'I', 811, - 'N', 807, - '[', 1467, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 800, - 't', 774, - 'u', 787, - 'w', 753, - '}', 1501, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + '.', 1603, + ';', 1450, + '_', 1812, + 'a', 1864, + 'e', 1776, + 'o', 1777, + 'x', 1870, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(630); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(826); + lookahead == ' ') SKIP(633); + 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 631: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '"', 1687, - '#', 2192, - '$', 1473, - '\'', 1690, - '(', 1469, - '+', 704, - '-', 1493, - '.', 699, - '0', 1625, - ';', 1453, - '@', 1464, - 'I', 811, - 'N', 807, - '[', 1467, - '^', 1733, - '_', 718, - '`', 1694, - 'a', 756, - 'c', 723, - 'd', 733, - 'e', 761, - 'f', 725, - 'i', 717, - 'l', 741, - 'm', 727, - 'n', 771, - 't', 774, - 'u', 787, - 'w', 749, - '{', 1500, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + '.', 1814, + ';', 1450, + '_', 1812, + 'a', 1864, + 'e', 1776, + 'o', 1777, + 'x', 1870, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(631); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(826); + lookahead == ' ') SKIP(633); + 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 632: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - '.', 1606, - ';', 1453, - '[', 1667, - '_', 1815, - 'e', 1779, - 'o', 1781, - '|', 1454, - '}', 1501, - '\t', 1452, - ' ', 1452, - '+', 1793, - '-', 1793, + '#', 2187, + '$', 1469, + '(', 1560, + ')', 1467, + '.', 1814, + ';', 1450, + '_', 1812, + 'e', 1776, + 'o', 1778, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, + '+', 1790, + '-', 1790, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ']' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - '.', 1606, - ';', 1453, - '_', 1815, - 'a', 1867, - 'e', 1779, - 'o', 1780, - 'x', 1873, - '|', 1454, - '}', 1501, + '#', 2187, + '$', 1469, + ')', 1467, + '.', 336, + ';', 1450, + 'a', 416, + 'e', 288, + 'o', 289, + 'x', 426, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(636); + lookahead == ' ') SKIP(633); if (lookahead == '+' || - lookahead == '-') ADVANCE(1793); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); + lookahead == '-') ADVANCE(314); END_STATE(); case 634: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - '.', 1817, - ';', 1453, - '_', 1815, - 'a', 1867, - 'e', 1779, - 'o', 1780, - 'x', 1873, - '|', 1454, - '}', 1501, + '#', 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(636); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1793); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); + 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 635: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - '(', 1563, - ')', 1470, - '.', 1817, - ';', 1453, - '_', 1815, - 'e', 1779, - 'o', 1781, - '|', 1454, - '}', 1501, - '\t', 1452, - ' ', 1452, - '+', 1793, - '-', 1793, + '#', 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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 636: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '$', 1472, - ')', 1470, - '.', 336, - ';', 1453, - 'a', 420, - 'e', 287, - 'o', 288, - 'x', 430, - '|', 1454, - '}', 1501, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1594, + ';', 1450, + 'E', 1818, + 'a', 1864, + 'e', 1768, + 'o', 1777, + 'x', 1870, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(636); - if (lookahead == '+' || - lookahead == '-') ADVANCE(313); + lookahead == ' ') SKIP(659); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 637: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - '.', 1597, - ';', 1453, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'a', 1867, - 'd', 1826, - 'e', 1769, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'o', 1780, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - 'x', 1873, - '|', 1454, - '}', 1501, - 0xb5, 1893, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1594, + ';', 1450, + 'E', 1818, + 'e', 1768, + 'o', 1778, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(662); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 638: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - '.', 1597, - ';', 1453, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'd', 1826, - 'e', 1769, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'o', 1781, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - '|', 1454, - '}', 1501, - 0xb5, 1893, - '\t', 1452, - ' ', 1452, - 'B', 1655, - 'b', 1655, + '#', 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(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - '.', 1597, - ';', 1453, - 'E', 1821, - 'a', 1867, - 'e', 1771, - 'o', 1780, - 'x', 1873, - '|', 1454, - '}', 1501, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 1450, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + '_', 1812, + 'd', 1823, + 'e', 1766, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'o', 1778, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '|', 1451, + '}', 1498, + 0xb5, 1890, + '\t', 1449, + ' ', 1449, + 'B', 1652, + 'b', 1652, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(662); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - '.', 1597, - ';', 1453, - 'E', 1821, - 'e', 1771, - 'o', 1781, - '|', 1454, - '}', 1501, - '\t', 1452, - ' ', 1452, + '#', 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 ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - '.', 1792, - ';', 1453, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - '_', 1815, - 'a', 1867, - 'd', 1826, - 'e', 1769, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'o', 1780, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - 'x', 1873, - '|', 1454, - '}', 1501, - 0xb5, 1893, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 1450, + 'E', 1806, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'd', 1823, + 'e', 1766, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'o', 1778, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '|', 1451, + '}', 1498, + 0xb5, 1890, + '\t', 1449, + ' ', 1449, + 'B', 1652, + 'b', 1652, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(662); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 642: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - '.', 1792, - ';', 1453, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 1450, 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - '_', 1815, - 'd', 1826, - 'e', 1769, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'o', 1781, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - '|', 1454, - '}', 1501, - 0xb5, 1893, - '\t', 1452, - ' ', 1452, - 'B', 1655, - 'b', 1655, + '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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - '.', 1792, - ';', 1453, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 1450, 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'a', 1867, - 'd', 1826, - 'e', 1769, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'o', 1780, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - 'x', 1873, - '|', 1454, - '}', 1501, - 0xb5, 1893, + 'G', 1809, + 'K', 1809, + 'M', 1809, + 'P', 1809, + 'T', 1809, + 'd', 1823, + 'e', 1774, + 'g', 1808, + 'h', 1877, + 'k', 1808, + 'm', 1811, + 'n', 1890, + 'o', 1778, + 'p', 1808, + 's', 1838, + 't', 1808, + 'u', 1890, + 'w', 1857, + '|', 1451, + '}', 1498, + 0xb5, 1890, + '\t', 1449, + ' ', 1449, + 'B', 1652, + 'b', 1652, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(662); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 644: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - '.', 1792, - ';', 1453, - 'E', 1809, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'd', 1826, - 'e', 1769, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'o', 1781, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - '|', 1454, - '}', 1501, - 0xb5, 1893, - '\t', 1452, - ' ', 1452, - 'B', 1655, - 'b', 1655, + '#', 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(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - '.', 1792, - ';', 1453, - 'E', 1812, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'a', 1867, - 'd', 1826, - 'e', 1777, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'o', 1780, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - 'x', 1873, - '|', 1454, - '}', 1501, - 0xb5, 1893, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 1450, + 'E', 1818, + '_', 1812, + 'e', 1768, + 'o', 1778, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(662); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - '.', 1792, - ';', 1453, - 'E', 1812, - 'G', 1812, - 'K', 1812, - 'M', 1812, - 'P', 1812, - 'T', 1812, - 'd', 1826, - 'e', 1777, - 'g', 1811, - 'h', 1880, - 'k', 1811, - 'm', 1814, - 'n', 1893, - 'o', 1781, - 'p', 1811, - 's', 1841, - 't', 1811, - 'u', 1893, - 'w', 1860, - '|', 1454, - '}', 1501, - 0xb5, 1893, - '\t', 1452, - ' ', 1452, - 'B', 1655, - 'b', 1655, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 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(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - '.', 1792, - ';', 1453, - 'E', 1821, - '_', 1815, - 'a', 1867, - 'e', 1771, - 'o', 1780, - 'x', 1873, - '|', 1454, - '}', 1501, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 1450, + 'E', 1818, + 'e', 1768, + 'o', 1778, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(662); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 648: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - '.', 1792, - ';', 1453, - 'E', 1821, - '_', 1815, - 'e', 1771, - 'o', 1781, - '|', 1454, - '}', 1501, - '\t', 1452, - ' ', 1452, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 1450, + 'a', 1864, + 'e', 1776, + 'o', 1777, + 'x', 1870, + '|', 1451, + '}', 1498, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - '.', 1792, - ';', 1453, - 'E', 1821, - 'a', 1867, - 'e', 1771, - 'o', 1780, - 'x', 1873, - '|', 1454, - '}', 1501, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1789, + ';', 1450, + 'e', 1776, + 'o', 1778, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(662); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 650: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - '.', 1792, - ';', 1453, - 'E', 1821, - 'e', 1771, - 'o', 1781, - '|', 1454, - '}', 1501, - '\t', 1452, - ' ', 1452, + '#', 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(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - '.', 1792, - ';', 1453, - 'a', 1867, - 'e', 1779, - 'o', 1780, - 'x', 1873, - '|', 1454, - '}', 1501, + '#', 2187, + '(', 1560, + ')', 1467, + '.', 1593, + ';', 1450, + 'E', 1818, + 'e', 1768, + 'o', 1778, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(662); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 652: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - '.', 1792, - ';', 1453, - 'e', 1779, - 'o', 1781, - '|', 1454, - '}', 1501, - '\t', 1452, - ' ', 1452, + '#', 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(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - '.', 1596, - ';', 1453, - 'E', 1821, - 'a', 1867, - 'e', 1771, - 'o', 1780, - 'x', 1873, - '|', 1454, - '}', 1501, + '#', 2187, + '(', 1560, + ')', 1467, + ';', 1450, + 'E', 1818, + '_', 1812, + 'e', 1768, + 'o', 1778, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(662); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - '.', 1596, - ';', 1453, - 'E', 1821, - 'e', 1771, - 'o', 1781, - '|', 1454, - '}', 1501, - '\t', 1452, - ' ', 1452, + '#', 2187, + '(', 1560, + ')', 1467, + ';', 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(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - ';', 1453, - 'E', 1821, - '_', 1815, - 'a', 1867, - 'e', 1771, - 'o', 1780, - 'x', 1873, - '|', 1454, - '}', 1501, + '#', 2187, + '(', 1560, + ')', 1467, + ';', 1450, + 'E', 1818, + 'e', 1768, + 'o', 1778, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(662); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 656: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - ';', 1453, - 'E', 1821, - '_', 1815, - 'e', 1771, - 'o', 1781, - '|', 1454, - '}', 1501, - '\t', 1452, - ' ', 1452, + '#', 2187, + '(', 1560, + ')', 1467, + ';', 1450, + 'a', 1864, + 'e', 1776, + 'o', 1777, + 'x', 1870, + '|', 1451, + '}', 1498, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - ';', 1453, - 'E', 1821, - 'a', 1867, - 'e', 1771, - 'o', 1780, - 'x', 1873, - '|', 1454, - '}', 1501, + '#', 2187, + '(', 1560, + ')', 1467, + ';', 1450, + 'e', 1776, + 'o', 1778, + '|', 1451, + '}', 1498, + '\t', 1449, + ' ', 1449, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(662); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 658: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - ';', 1453, - 'E', 1821, - 'e', 1771, - 'o', 1781, - '|', 1454, - '}', 1501, - '\t', 1452, - ' ', 1452, + '#', 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(1936); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1761); END_STATE(); case 659: - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - ';', 1453, - 'a', 1867, - 'e', 1779, - 'o', 1780, - 'x', 1873, - '|', 1454, - '}', 1501, + '#', 2187, + ')', 1467, + ';', 1450, + 'a', 416, + 'e', 288, + 'o', 289, + 'x', 426, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(662); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + lookahead == ' ') SKIP(659); END_STATE(); case 660: - if (eof) ADVANCE(663); - ADVANCE_MAP( - '\n', 1450, - '\r', 1, - '#', 2190, - '(', 1563, - ')', 1470, - ';', 1453, - 'e', 1779, - 'o', 1781, - '|', 1454, - '}', 1501, - '\t', 1452, - ' ', 1452, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 661: - if (eof) ADVANCE(663); - ADVANCE_MAP( - '\n', 1450, - '\r', 1, - '#', 2190, - ')', 1470, - ';', 1453, - '=', 1731, - 'e', 1758, - 'o', 1759, - '|', 1454, - '}', 1501, - '\t', 1452, - ' ', 1452, - ); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1764); + ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); case 662: - if (eof) ADVANCE(663); - ADVANCE_MAP( - '\n', 1450, - '\r', 1, - '#', 2190, - ')', 1470, - ';', 1453, - 'a', 420, - 'e', 287, - 'o', 288, - 'x', 430, - '|', 1454, - '}', 1501, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(662); + ACCEPT_TOKEN(aux_sym_shebang_token1); END_STATE(); case 663: - ACCEPT_TOKEN(ts_builtin_sym_end); + 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(anon_sym_POUND_BANG); + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(662); + if (lookahead == '\r') ADVANCE(664); + if (lookahead != 0) ADVANCE(664); END_STATE(); case 665: - ACCEPT_TOKEN(aux_sym_shebang_token1); + ACCEPT_TOKEN(anon_sym_export); END_STATE(); case 666: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(665); - if (lookahead == '\r') ADVANCE(667); - if (lookahead == '#') ADVANCE(2191); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(666); - if (lookahead != 0) ADVANCE(667); + 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(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(665); - if (lookahead == '\r') ADVANCE(667); - if (lookahead != 0) ADVANCE(667); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(741); END_STATE(); case 668: ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(901); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 669: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1397); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + ACCEPT_TOKEN(anon_sym_alias); END_STATE(); case 670: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(744); + 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_export); - if (lookahead == '-') ADVANCE(904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_alias); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 672: - ACCEPT_TOKEN(anon_sym_alias); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 673: - ACCEPT_TOKEN(anon_sym_alias); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(1546); + if (lookahead == '~') ADVANCE(1552); END_STATE(); case 674: - ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(1499); END_STATE(); case 675: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 676: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(1549); - if (lookahead == '~') ADVANCE(1555); + 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_EQ); - if (lookahead == '>') ADVANCE(1502); + ACCEPT_TOKEN(anon_sym_let); + 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); + ACCEPT_TOKEN(anon_sym_mut); END_STATE(); case 679: - ACCEPT_TOKEN(anon_sym_let); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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_let); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_mut); + 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); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 682: - ACCEPT_TOKEN(anon_sym_mut); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_const); + 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); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 685: - ACCEPT_TOKEN(anon_sym_const); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 686: - ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 687: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 688: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); case 689: - ACCEPT_TOKEN(anon_sym_STAR_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(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(765); + if (lookahead == '>') ADVANCE(517); + if (lookahead == 'l') ADVANCE(785); + if (lookahead == 'r') ADVANCE(774); + if (lookahead == 'x') ADVANCE(770); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 691: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(766); + if (lookahead == '>') ADVANCE(520); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 692: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(1619); - if (lookahead == '(') ADVANCE(1593); - if (lookahead == '{') ADVANCE(1708); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(768); + if (lookahead == '+') ADVANCE(743); if (lookahead == '>') ADVANCE(522); - if (lookahead == 'l') ADVANCE(788); - if (lookahead == 'r') ADVANCE(777); - if (lookahead == 'x') ADVANCE(773); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(769); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(747); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'u') ADVANCE(797); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(746); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(823); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(806); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(1509); - if (lookahead == '_') ADVANCE(720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(1506); - if (lookahead == '_') ADVANCE(720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(692); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(1595); - if (lookahead == '_') ADVANCE(720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(701); - if (lookahead == '_') ADVANCE(720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(719); - if (lookahead == '_') ADVANCE(704); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(554); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + ADVANCE_MAP( + 'I', 805, + '_', 719, + 'i', 805, + 'l', 785, + 'x', 770, + '+', 719, + '-', 719, + 'B', 1652, + 'b', 1652, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + if (lookahead == 'I') ADVANCE(805); + if (lookahead == '_') ADVANCE(719); + if (lookahead == 'i') ADVANCE(725); + if (lookahead == '+' || + lookahead == '-') ADVANCE(719); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 709: 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(826); + ADVANCE_MAP( + 'I', 805, + 'a', 795, + 'i', 762, + 'o', 729, + 's', 1657, + 'u', 790, + 'B', 1652, + 'b', 1652, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 710: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 808, - '_', 721, - 'i', 808, - 'l', 788, - 'x', 773, - '+', 721, - '-', 721, - 'B', 1655, - 'b', 1655, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(808); - if (lookahead == '_') ADVANCE(721); - if (lookahead == 'i') ADVANCE(728); - if (lookahead == '+' || - lookahead == '-') ADVANCE(721); + if (lookahead == 'I') ADVANCE(805); + if (lookahead == 'i') ADVANCE(805); + if (lookahead == 'r') ADVANCE(798); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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); - ADVANCE_MAP( - 'I', 808, - 'a', 798, - 'i', 765, - 'o', 732, - 's', 1660, - 'u', 793, - 'B', 1655, - 'b', 1655, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + if (lookahead == 'I') ADVANCE(805); + if (lookahead == 'i') ADVANCE(805); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(808); - if (lookahead == 'i') ADVANCE(808); - if (lookahead == 'l') ADVANCE(788); - if (lookahead == 'x') ADVANCE(773); + if (lookahead == 'I') ADVANCE(805); + if (lookahead == 'i') ADVANCE(725); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(808); - if (lookahead == 'i') ADVANCE(808); - if (lookahead == 'r') ADVANCE(801); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'I') ADVANCE(808); - if (lookahead == 'i') ADVANCE(808); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'I') ADVANCE(808); - if (lookahead == 'i') ADVANCE(728); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + if (lookahead == '_') ADVANCE(716); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 717: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(809); - if (lookahead == 'f') ADVANCE(1070); - if (lookahead == 'n') ADVANCE(1086); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 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(826); + 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(1649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(1648); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == '_') ADVANCE(721); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == '_') ADVANCE(722); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(791); - if (lookahead == 'o') ADVANCE(766); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(805); - if (lookahead == 'e') ADVANCE(748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(762); - if (lookahead == 'o') ADVANCE(775); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'a') ADVANCE(783); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'a') ADVANCE(798); - if (lookahead == 'o') ADVANCE(732); - if (lookahead == 'u') ADVANCE(793); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'b') ADVANCE(1655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + if (lookahead == 'c') ADVANCE(748); + 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(1660); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'c') ADVANCE(750); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'c') ADVANCE(751); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'd') ADVANCE(803); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(1049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(1073); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(1091); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(1094); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(1528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(1067); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(1058); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(792); - if (lookahead == 'o') ADVANCE(767); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(729); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(780); - if (lookahead == 'i') ADVANCE(759); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(778); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'e') ADVANCE(781); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'e') ADVANCE(707); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'f') ADVANCE(827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(1079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(1082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'h') ADVANCE(755); - if (lookahead == 'k') ADVANCE(1660); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'h') ADVANCE(755); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'i') ADVANCE(726); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'i') ADVANCE(759); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(754); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(1097); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + if (lookahead == 'l') ADVANCE(737); + 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(757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(739); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(740); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'l') ADVANCE(788); - if (lookahead == 'x') ADVANCE(773); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'l') ADVANCE(790); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(1055); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(804); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'n') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'n') ADVANCE(789); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(772); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(802); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'o') ADVANCE(779); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'o') ADVANCE(794); - if (lookahead == 'u') ADVANCE(758); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(812); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'p') ADVANCE(1064); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'p') ADVANCE(770); - if (lookahead == 't') ADVANCE(745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(801); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(1061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(1660); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(694); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(763); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(796); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'r') ADVANCE(782); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'r') ADVANCE(709); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + if (lookahead == 's') ADVANCE(1658); + 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(1660); - if (lookahead == 'u') ADVANCE(758); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(812); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(1660); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + if (lookahead == 's') ADVANCE(732); + 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(1661); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(734); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(826); + 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 == 's') ADVANCE(795); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 's') ADVANCE(737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(730); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(678); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(817); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(684); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(670); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(696); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 't') ADVANCE(731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 't') ADVANCE(708); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(758); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(812); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(736); - if (lookahead == 'y') ADVANCE(1076); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'u') ADVANCE(799); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'u') ADVANCE(760); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'v') ADVANCE(1052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'y') ADVANCE(1660); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == '{') ADVANCE(1708); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'A' || - lookahead == 'a') ADVANCE(812); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'F' || - lookahead == 'f') ADVANCE(1101); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + if (lookahead == 'N' || + 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 == 'I' || - lookahead == 'i') ADVANCE(814); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + if (lookahead == 'N' || + 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(809); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'N' || - lookahead == 'n') ADVANCE(1111); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'N' || - lookahead == 'n') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 == 'T' || - lookahead == 't') ADVANCE(815); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1100); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1651); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1562); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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 <= '7') || - lookahead == '_') ADVANCE(1652); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(697); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(1676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(817); + 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(705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(818); + 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(826); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(820); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(823); END_STATE(); case 824: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(821); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + ACCEPT_TOKEN(anon_sym_def); END_STATE(); case 825: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1650); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + 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(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(826); + ACCEPT_TOKEN(anon_sym_def); + 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); + 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(anon_sym_def); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == '+') ADVANCE(944); + if (lookahead == '>') ADVANCE(1736); + if (lookahead == 'n') ADVANCE(888); + if (lookahead == 'r') ADVANCE(959); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 829: - ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == '+') ADVANCE(900); + if (lookahead == '>') ADVANCE(1734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 830: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(902); - if (lookahead == '>') ADVANCE(1741); - if (lookahead == 'r') ADVANCE(1534); - if (lookahead == 'u') ADVANCE(995); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1739); - if (lookahead == 'n') ADVANCE(891); - if (lookahead == 'r') ADVANCE(962); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(949); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(905); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(1534); - if (lookahead == 'u') ADVANCE(1001); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(955); - if (lookahead == '>') ADVANCE(522); - if (lookahead == 'n') ADVANCE(891); - if (lookahead == 'r') ADVANCE(968); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(957); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(908); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1038); - if (lookahead == '_') ADVANCE(868); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(882); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(909); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1017); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1487); - if (lookahead == '.') ADVANCE(868); - if (lookahead == '_') ADVANCE(850); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1027); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == '-') ADVANCE(1017); + 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(1044); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1019); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1020); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1046); - if (lookahead == '_') ADVANCE(868); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(868); - if (lookahead == '_') ADVANCE(850); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1027); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(868); - if (lookahead == '_') ADVANCE(850); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1510); - if (lookahead == '_') ADVANCE(868); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(554); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(2071); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1550); - if (lookahead == '~') ADVANCE(1557); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == 'T') ADVANCE(1039); + 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 == 'N') ADVANCE(1023); - if (lookahead == 'f') ADVANCE(1072); - if (lookahead == 'n') ADVANCE(1087); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'T') ADVANCE(1041); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'T') ADVANCE(1042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(868); - if (lookahead == 'b') ADVANCE(1654); - if (lookahead == 'o') ADVANCE(1664); - if (lookahead == 'x') ADVANCE(1666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(868); - if (lookahead == 'b') ADVANCE(1654); - if (lookahead == 'o') ADVANCE(1664); - if (lookahead == 'x') ADVANCE(1666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(873); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(868); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == '_') ADVANCE(865); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(868); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(838); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(868); + 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(1048); + 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(868); + 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(1048); + 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(868); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(848); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == '_') ADVANCE(868); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == '_') ADVANCE(868); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(873); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(930); - if (lookahead == 'o') ADVANCE(967); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == 'a') ADVANCE(976); + 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(971); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(979); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(989); - if (lookahead == 'o') ADVANCE(944); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(943); - if (lookahead == 'o') ADVANCE(964); - if (lookahead == 's') ADVANCE(911); - if (lookahead == 'x') ADVANCE(956); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'a') ADVANCE(1005); - if (lookahead == 'o') ADVANCE(890); - if (lookahead == 'u') ADVANCE(991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == 'c') ADVANCE(914); + 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 == 'a') ADVANCE(976); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'c') ADVANCE(916); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'c') ADVANCE(917); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1574); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1588); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'd') ADVANCE(981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'd') ADVANCE(986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1093); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1096); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1559); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1561); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(910); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1051); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1075); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1069); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1060); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(970); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(990); - if (lookahead == 'o') ADVANCE(948); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'e') ADVANCE(974); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'e') ADVANCE(945); - if (lookahead == 'h') ADVANCE(879); - if (lookahead == 'i') ADVANCE(940); - if (lookahead == 'l') ADVANCE(926); - if (lookahead == 's') ADVANCE(1009); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'f') ADVANCE(829); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(932); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1048); + 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(1048); + 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(1548); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1544); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1081); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'h') ADVANCE(1084); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'h') ADVANCE(921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1048); + 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(935); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == 'i') ADVANCE(1000); + 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(1000); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1003); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'i') ADVANCE(929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == 'k') ADVANCE(893); + 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 == 'i') ADVANCE(880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'k') ADVANCE(895); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'k') ADVANCE(896); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(980); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1099); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1584); - if (lookahead == 'r') ADVANCE(1586); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(931); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == 'l') ADVANCE(898); + 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(927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(900); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'l') ADVANCE(901); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'l') ADVANCE(983); - if (lookahead == 'x') ADVANCE(960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(887); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1090); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1536); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1057); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1016); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(889); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'n') ADVANCE(984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'n') ADVANCE(892); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(988); - if (lookahead == 'u') ADVANCE(933); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1026); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(959); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1013); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(963); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(944); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(890); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(965); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'o') ADVANCE(1014); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'o') ADVANCE(975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'p') ADVANCE(1066); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'p') ADVANCE(958); - if (lookahead == 't') ADVANCE(906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1011); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(833); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1532); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1590); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1010); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1063); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1007); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(969); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(862); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(973); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'r') ADVANCE(993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'r') ADVANCE(1008); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1538); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1540); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == 's') ADVANCE(896); + 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(841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == 's') ADVANCE(844); + 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(844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 's') ADVANCE(846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 's') ADVANCE(847); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(885); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(683); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(839); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(832); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(912); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(840); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == 't') ADVANCE(912); + 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(837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(914); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(886); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(985); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 't') ADVANCE(987); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 't') ADVANCE(884); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(893); - if (lookahead == 'y') ADVANCE(1078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(933); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1026); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(999); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'u') ADVANCE(1004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'u') ADVANCE(936); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == 'w') ADVANCE(920); + 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 == 'v') ADVANCE(1054); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == 'w') ADVANCE(921); + 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(1048); + 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(1048); + 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 == 'w') ADVANCE(924); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'w') ADVANCE(925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'x') ADVANCE(1006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'A' || - lookahead == 'a') ADVANCE(1026); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == 'I' || + 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 == 'F' || - lookahead == 'f') ADVANCE(1025); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 == 'I' || - lookahead == 'i') ADVANCE(1029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == 'N' || + 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 == 'I' || - lookahead == 'i') ADVANCE(1028); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1021); + 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(1048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1030); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1045); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1029); END_STATE(); case 1030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '0' || - lookahead == '1' || + if (('0' <= lookahead && lookahead <= '7') || lookahead == '_') ADVANCE(1031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1048); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1032); + 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 (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1562); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 <= '7') || - lookahead == '_') ADVANCE(1034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(843); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(864); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1035); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1034); + 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(853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1036); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(1048); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1046: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 1047: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1047); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_use); + 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); + ACCEPT_TOKEN(anon_sym_export_DASHenv); END_STATE(); case 1050: - ACCEPT_TOKEN(anon_sym_use); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + 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); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 1053: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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_export_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_extern); + 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); + ACCEPT_TOKEN(anon_sym_module); END_STATE(); case 1056: - ACCEPT_TOKEN(anon_sym_extern); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_module); + 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); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 1059: - ACCEPT_TOKEN(anon_sym_module); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_for); + 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); + ACCEPT_TOKEN(anon_sym_loop); END_STATE(); case 1062: - ACCEPT_TOKEN(anon_sym_for); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_loop); + 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); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 1065: - ACCEPT_TOKEN(anon_sym_loop); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_while); + 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); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 1068: - ACCEPT_TOKEN(anon_sym_while); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_if); + 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); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 1071: - ACCEPT_TOKEN(anon_sym_if); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_else); + 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); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 1074: - ACCEPT_TOKEN(anon_sym_else); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_try); + 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); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 1077: - ACCEPT_TOKEN(anon_sym_try); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_catch); + 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); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 1080: - ACCEPT_TOKEN(anon_sym_catch); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_match); + 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); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 1083: - ACCEPT_TOKEN(anon_sym_match); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1098); END_STATE(); case 1084: - ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1022); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1085: ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1440); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1086: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1101); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1087: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1025); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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 (lookahead == 'F' || - lookahead == 'f') ADVANCE(1443); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 1089: - ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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_in); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_true); + 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); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 1092: - ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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_true); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_false); + 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); + ACCEPT_TOKEN(anon_sym_null); END_STATE(); case 1095: - ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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_false); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_null); + 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); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); END_STATE(); case 1098: - ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(810); END_STATE(); case 1099: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2051); END_STATE(); case 1100: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2106); END_STATE(); case 1101: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(813); + lookahead == 'i') ADVANCE(2160); END_STATE(); case 1102: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2054); + lookahead == 'i') ADVANCE(537); END_STATE(); case 1103: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2109); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); END_STATE(); case 1104: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2163); + lookahead == 'i') ADVANCE(535); END_STATE(); case 1105: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(542); + lookahead == 'i') ADVANCE(1930); END_STATE(); case 1106: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2108); END_STATE(); case 1107: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(540); + lookahead == 'i') ADVANCE(2162); END_STATE(); case 1108: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1933); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); END_STATE(); case 1109: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2111); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 1110: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2165); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 1111: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(1109); END_STATE(); case 1112: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(1115); END_STATE(); case 1113: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_SLASH); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1114: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1112); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 1115: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1118); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 1116: - ACCEPT_TOKEN(anon_sym_SLASH); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(1110); END_STATE(); case 1117: - ACCEPT_TOKEN(anon_sym_mod); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 1118: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); case 1119: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1113); + ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); case 1120: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 1121: - ACCEPT_TOKEN(anon_sym_bit_DASHshl); + ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); case 1122: - ACCEPT_TOKEN(anon_sym_bit_DASHshr); + ACCEPT_TOKEN(anon_sym_like); END_STATE(); case 1123: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_not_DASHlike); END_STATE(); case 1124: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); + ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); case 1125: - ACCEPT_TOKEN(anon_sym_like); + ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); case 1126: - ACCEPT_TOKEN(anon_sym_not_DASHlike); + ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); case 1127: - ACCEPT_TOKEN(anon_sym_bit_DASHand); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 1128: - ACCEPT_TOKEN(anon_sym_bit_DASHxor); + ACCEPT_TOKEN(anon_sym_xor); END_STATE(); case 1129: - ACCEPT_TOKEN(anon_sym_bit_DASHor); + ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 1130: - ACCEPT_TOKEN(anon_sym_and); + ACCEPT_TOKEN(anon_sym_in2); END_STATE(); case 1131: - ACCEPT_TOKEN(anon_sym_xor); + ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); case 1132: - ACCEPT_TOKEN(anon_sym_or); + ACCEPT_TOKEN(anon_sym_has); END_STATE(); case 1133: - ACCEPT_TOKEN(anon_sym_in2); + ACCEPT_TOKEN(anon_sym_not_DASHhas); END_STATE(); case 1134: - ACCEPT_TOKEN(anon_sym_not_DASHin); + ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); case 1135: - ACCEPT_TOKEN(anon_sym_has); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); END_STATE(); case 1136: - ACCEPT_TOKEN(anon_sym_not_DASHhas); + ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); case 1137: - ACCEPT_TOKEN(anon_sym_starts_DASHwith); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); END_STATE(); case 1138: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 1139: - ACCEPT_TOKEN(anon_sym_ends_DASHwith); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 1140: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 1141: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(1142); END_STATE(); case 1142: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 1143: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(1144); END_STATE(); case 1144: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1145); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 1145: - ACCEPT_TOKEN(anon_sym_LT_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(anon_sym_GT); - if (lookahead == '=') ADVANCE(1147); + 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', 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(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(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, + '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 ((!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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - ')', 1470, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - '_', 1226, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1192, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1193, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '!', 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, + '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(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - ')', 1470, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, + '!', 1208, + '#', 2187, + ')', 1467, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - '_', 1226, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1200, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1201, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '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(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - ')', 1470, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, + '!', 1208, + '#', 2187, + ')', 1467, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1192, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1193, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '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(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - ')', 1470, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1200, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1201, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '!', 1208, + '#', 2187, + ')', 1467, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1594, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - ')', 1470, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1224, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1195, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1193, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '!', 1208, + '#', 2187, + ')', 1467, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1594, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - ')', 1470, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1224, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1198, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1201, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '!', 1208, + '#', 2187, + ')', 1467, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'a', 1265, + 'b', 1254, + 'e', 1193, + 'h', 1229, + 'i', 1267, + 'l', 1255, + 'm', 1275, + 'n', 1279, + 'o', 1190, + 's', 1301, + 'x', 1274, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - ')', 1470, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1597, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1192, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1193, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '!', 1208, + '#', 2187, + ')', 1467, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'a', 1265, + 'b', 1254, + 'e', 1196, + 'h', 1229, + 'i', 1267, + 'l', 1255, + 'm', 1275, + 'n', 1279, + 'o', 1198, + 's', 1301, + 'x', 1274, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - ')', 1470, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1597, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1200, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1201, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ':', 1712, + ';', 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, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - ')', 1470, - '*', 1114, - '+', 1119, - '-', 1120, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'a', 1268, - 'b', 1257, - 'e', 1196, - 'h', 1232, - 'i', 1270, - 'l', 1258, - 'm', 1278, - 'n', 1282, - 'o', 1193, - 's', 1304, - 'x', 1277, - '|', 1454, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ':', 1712, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - ')', 1470, - '*', 1114, - '+', 1119, - '-', 1120, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'a', 1268, - 'b', 1257, - 'e', 1199, - 'h', 1232, - 'i', 1270, - 'l', 1258, - 'm', 1278, - 'n', 1282, - 'o', 1201, - 's', 1304, - 'x', 1277, - '|', 1454, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ':', 1712, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1221, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1192, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ':', 1715, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - '_', 1226, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1192, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1193, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - '}', 1501, - 0xb5, 1296, + '!', 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, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ':', 1715, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1192, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1193, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - '}', 1501, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + '_', 1223, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ':', 1715, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1224, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1195, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1193, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - '}', 1501, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - '_', 1226, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1192, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1193, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - '}', 1501, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - '_', 1226, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1200, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1201, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - '}', 1501, - 0xb5, 1296, + '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(25); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1192, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1193, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - '}', 1501, - 0xb5, 1296, + '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(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1200, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1201, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - '}', 1501, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + '<', 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(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1224, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1195, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1193, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - '}', 1501, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + '_', 1223, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1224, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1198, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1201, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - '}', 1501, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - '_', 1226, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1192, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1193, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - '_', 1226, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1200, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1201, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '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(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1192, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1193, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '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(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1200, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1201, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1594, + '/', 1112, + ':', 1712, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1224, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1195, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1193, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1594, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1224, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1198, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1201, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1594, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + '}', 1498, + 0xb5, 1293, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1597, - '/', 1115, - ':', 1715, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1192, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1193, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - '}', 1501, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1594, + '/', 1112, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1597, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1192, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1193, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - '}', 1501, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1594, + '/', 1112, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1597, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1200, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1201, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - '}', 1501, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'a', 1265, + 'b', 1254, + 'e', 1193, + 'h', 1229, + 'i', 1267, + 'l', 1255, + 'm', 1275, + 'n', 1279, + 'o', 1190, + 's', 1301, + 'x', 1274, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1597, - '/', 1115, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1192, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1193, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'a', 1265, + 'b', 1254, + 'e', 1196, + 'h', 1229, + 'i', 1267, + 'l', 1255, + 'm', 1275, + 'n', 1279, + 'o', 1198, + 's', 1301, + 'x', 1274, + '|', 1451, + '}', 1498, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1597, - '/', 1115, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1200, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1201, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + '<', 1141, + '=', 319, + '>', 1143, + 'a', 1265, + 'b', 1254, + 'e', 1193, + 'h', 1229, + 'i', 1267, + 'l', 1255, + 'm', 1275, + 'n', 1279, + 'o', 1190, + 's', 1301, + 'x', 1274, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'a', 1268, - 'b', 1257, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + '<', 1141, + '=', 319, + '>', 1143, + 'a', 1265, + 'b', 1254, 'e', 1196, - 'h', 1232, - 'i', 1270, - 'l', 1258, - 'm', 1278, - 'n', 1282, - 'o', 1193, - 's', 1304, - 'x', 1277, - '|', 1454, - '}', 1501, + 'h', 1229, + 'i', 1267, + 'l', 1255, + 'm', 1275, + 'n', 1279, + 'o', 1198, + 's', 1301, + 'x', 1274, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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', 1450, - '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'a', 1268, - 'b', 1257, - 'e', 1199, - 'h', 1232, - 'i', 1270, - 'l', 1258, - 'm', 1278, - 'n', 1282, - 'o', 1201, - 's', 1304, - 'x', 1277, - '|', 1454, - '}', 1501, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1593, + '/', 1112, + ':', 1712, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1217, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1281, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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( - '\n', 1450, - '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '/', 1115, - '<', 1144, - '=', 318, - '>', 1146, - 'a', 1268, - 'b', 1257, - 'e', 1196, - 'h', 1232, - 'i', 1270, - 'l', 1258, - 'm', 1278, - 'n', 1282, - 'o', 1193, - 's', 1304, - 'x', 1277, - '|', 1454, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1593, + '/', 1112, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1217, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1281, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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( - '\n', 1450, - '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '/', 1115, - '<', 1144, - '=', 318, - '>', 1146, - 'a', 1268, - 'b', 1257, - 'e', 1199, - 'h', 1232, - 'i', 1270, - 'l', 1258, - 'm', 1278, - 'n', 1282, - 'o', 1201, - 's', 1304, - 'x', 1277, - '|', 1454, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + ':', 1712, + '<', 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', 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(1325); + 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( - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1596, - '/', 1115, - ':', 1715, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1220, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1284, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + ':', 1712, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1217, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1281, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(265); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + lookahead == ' ') SKIP(266); + 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( - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1596, - '/', 1115, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + ':', 1712, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1220, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1284, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - 0xb5, 1296, + '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(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + lookahead == ' ') SKIP(266); + 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( - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '/', 1115, - ':', 1715, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - '_', 1226, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1220, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1284, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + '<', 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', 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(265); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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( - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '/', 1115, - ':', 1715, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1220, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1284, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1217, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1281, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(265); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + lookahead == ' ') SKIP(272); + 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( - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '/', 1115, - ':', 1715, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1224, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1222, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1284, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1221, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1219, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1281, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(265); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + lookahead == ' ') SKIP(272); + 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( - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '/', 1115, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - '_', 1226, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1220, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1284, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + '<', 1141, + '=', 319, + '>', 1143, + 'a', 1265, + 'b', 1254, + 'e', 1269, + 'h', 1229, + 'i', 1267, + 'l', 1255, + 'm', 1275, + 'n', 1279, + 'o', 1281, + 's', 1301, + 'x', 1274, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + lookahead == ' ') SKIP(272); + 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( - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '/', 1115, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1220, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1284, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - 0xb5, 1296, - ); + if (lookahead == '#') ADVANCE(2187); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + lookahead == ' ') SKIP(272); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '/', 1115, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1224, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1222, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1284, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - 0xb5, 1296, + '+', 1224, + '-', 1226, + '>', 1736, + 'I', 1321, + '_', 1226, + 'i', 1321, + 'n', 1239, + 'r', 1282, + 'B', 1652, + 'b', 1652, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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); - ADVANCE_MAP( - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '/', 1115, - '<', 1144, - '=', 318, - '>', 1146, - 'a', 1268, - 'b', 1257, - 'e', 1272, - 'h', 1232, - 'i', 1270, - 'l', 1258, - 'm', 1278, - 'n', 1282, - 'o', 1284, - 's', 1304, - 'x', 1277, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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(2190); - if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (lookahead == '+') ADVANCE(1273); + if (lookahead == '>') ADVANCE(1732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '+', 1227, - '-', 1229, - '>', 1739, - 'I', 1324, - '_', 1229, - 'i', 1324, - 'n', 1242, - 'r', 1285, - 'B', 1655, - 'b', 1655, + '+', 1272, + '>', 1736, + 'I', 1321, + 'i', 1321, + 'n', 1239, + 'r', 1282, + 'B', 1652, + 'b', 1652, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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); - if (lookahead == '+') ADVANCE(1247); - if (lookahead == '>') ADVANCE(1741); - if (lookahead == 'r') ADVANCE(1132); - if (lookahead == 'u') ADVANCE(1306); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1276); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (lookahead == '+') ADVANCE(1245); + if (lookahead == '>') ADVANCE(1734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '+', 1275, - '>', 1739, - 'I', 1324, - 'i', 1324, - 'n', 1242, - 'r', 1285, - 'B', 1655, - 'b', 1655, + '+', 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(1325); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1275); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'n') ADVANCE(1242); - if (lookahead == 'r') ADVANCE(1285); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (lookahead == '+') ADVANCE(1276); + if (lookahead == '>') ADVANCE(517); + if (lookahead == 'n') ADVANCE(1239); + if (lookahead == 'r') ADVANCE(1287); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1248); - if (lookahead == '>') ADVANCE(1737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + ADVANCE_MAP( + '+', 1225, + '-', 1226, + '>', 517, + 'I', 1321, + '_', 1226, + 'i', 1321, + 'n', 1239, + 'r', 1287, + 'B', 1652, + 'b', 1652, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1279, - '>', 522, - 'I', 1324, - 'i', 1324, - 'n', 1242, - 'r', 1290, - 'B', 1655, - 'b', 1655, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1279); - if (lookahead == '>') ADVANCE(522); - if (lookahead == 'n') ADVANCE(1242); - if (lookahead == 'r') ADVANCE(1290); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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); - ADVANCE_MAP( - '+', 1228, - '-', 1229, - '>', 522, - 'I', 1324, - '_', 1229, - 'i', 1324, - 'n', 1242, - 'r', 1290, - 'B', 1655, - 'b', 1655, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1249); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(1132); - if (lookahead == 'u') ADVANCE(1310); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1283); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1250); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1235); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (lookahead == '-') ADVANCE(1317); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1251); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (lookahead == '-') ADVANCE(1318); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '-') ADVANCE(1319); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1325); + 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(1321); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1322); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1595); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1142); - if (lookahead == '~') ADVANCE(1124); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + ADVANCE_MAP( + 'I', 1321, + '_', 1226, + 'i', 1321, + 'n', 1239, + '+', 1226, + '-', 1226, + 'B', 1652, + 'b', 1652, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (lookahead == 'I') ADVANCE(1321); + if (lookahead == '_') ADVANCE(1226); + if (lookahead == 'i') ADVANCE(1234); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1226); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1219: 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(1325); + 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); - ADVANCE_MAP( - 'I', 1324, - '_', 1229, - 'i', 1324, - 'n', 1242, - '+', 1229, - '-', 1229, - 'B', 1655, - 'b', 1655, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (lookahead == 'I') ADVANCE(1321); + if (lookahead == 'i') ADVANCE(1321); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1324); - if (lookahead == '_') ADVANCE(1229); - if (lookahead == 'i') ADVANCE(1237); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1229); + if (lookahead == 'I') ADVANCE(1321); + if (lookahead == 'i') ADVANCE(1234); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1324); - if (lookahead == 'i') ADVANCE(1324); - if (lookahead == 'n') ADVANCE(1242); + 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(1655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1324); - if (lookahead == 'i') ADVANCE(1324); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'I') ADVANCE(1324); - if (lookahead == 'i') ADVANCE(1237); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (lookahead == '_') ADVANCE(1226); + if (lookahead == 'o') ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1324); - if (lookahead == 'i') ADVANCE(1269); - if (lookahead == 'o') ADVANCE(1240); - if (lookahead == 's') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (lookahead == '_') ADVANCE(1226); + if (lookahead == 'o') ADVANCE(1213); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1322); END_STATE(); case 1226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '_') ADVANCE(1226); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1229); - if (lookahead == 'o') ADVANCE(1212); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == '_') ADVANCE(1229); - if (lookahead == 'o') ADVANCE(1216); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == '_') ADVANCE(1229); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1323); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1297); - if (lookahead == 'r') ADVANCE(1660); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1297); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1289); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1298); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'a') ADVANCE(1273); - if (lookahead == 'o') ADVANCE(1287); - if (lookahead == 's') ADVANCE(1252); - if (lookahead == 'x') ADVANCE(1280); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'a') ADVANCE(1295); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'b') ADVANCE(1655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'c') ADVANCE(1660); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1130); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1117); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'd') ADVANCE(1299); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'd') ADVANCE(1301); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (lookahead == 'e') ADVANCE(1123); + 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(1238); - if (lookahead == 't') ADVANCE(1233); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1125); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1126); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1213); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1292); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1217); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'e') ADVANCE(1293); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'e') ADVANCE(1274); - if (lookahead == 'h') ADVANCE(1234); - if (lookahead == 'i') ADVANCE(1271); - if (lookahead == 'l') ADVANCE(1263); - if (lookahead == 's') ADVANCE(1316); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1267); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1139); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1137); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'h') ADVANCE(1140); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'h') ADVANCE(1138); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1303); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1307); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (lookahead == 'i') ADVANCE(1309); + 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(1309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1311); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'i') ADVANCE(1312); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'i') ADVANCE(1266); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (lookahead == 'k') ADVANCE(1243); + 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(1660); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'k') ADVANCE(1245); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'k') ADVANCE(1246); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'l') ADVANCE(1121); - if (lookahead == 'r') ADVANCE(1122); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1239); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (lookahead == 'n') ADVANCE(1131); + 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(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1133); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1134); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1242); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'n') ADVANCE(1241); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'n') ADVANCE(1243); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1212); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1286); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1240); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1216); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1288); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1305); - if (lookahead == 's') ADVANCE(1660); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'o') ADVANCE(1305); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'o') ADVANCE(1318); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1132); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1194); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1131); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1129); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1128); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1314); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1202); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1215); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1291); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1294); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'r') ADVANCE(1219); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'r') ADVANCE(1315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (lookahead == 's') ADVANCE(1133); + 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(1660); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1135); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (lookahead == 's') ADVANCE(1204); + 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(1136); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (lookahead == 's') ADVANCE(1205); + 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(1325); + 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(1325); + 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 == 's') ADVANCE(1208); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 's') ADVANCE(1209); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1204); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1233); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1205); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1197); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1214); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (lookahead == 't') ADVANCE(1253); + 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(1203); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1255); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1256); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1218); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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(1300); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 't') ADVANCE(1302); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 't') ADVANCE(1236); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'u') ADVANCE(1308); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (lookahead == 'w') ADVANCE(1257); + 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 == 'u') ADVANCE(1313); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (lookahead == 'w') ADVANCE(1258); + 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(1325); + 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(1325); + 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 == 'w') ADVANCE(1261); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 == 'w') ADVANCE(1262); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 (lookahead == 'y') ADVANCE(1660); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + 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 (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (eof) ADVANCE(660); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + '_', 1223, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(619); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1325: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1325); + if (eof) ADVANCE(660); + ADVANCE_MAP( + '\n', 1447, + '\r', 1, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(618); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1322); END_STATE(); case 1326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - '_', 1226, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1192, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1193, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - '_', 1226, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1200, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1201, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '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(622); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1207, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1192, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1193, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '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(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1200, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1201, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1594, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1189, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1190, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(622); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1224, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1195, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1193, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '.', 1594, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'B', 1652, + 'E', 1218, + 'G', 1221, + 'K', 1221, + 'M', 1221, + 'P', 1221, + 'T', 1221, + 'a', 1265, + 'b', 1653, + 'd', 1227, + 'e', 1197, + 'g', 1220, + 'h', 1228, + 'i', 1267, + 'k', 1220, + 'l', 1255, + 'm', 1222, + 'n', 1278, + 'o', 1198, + 'p', 1220, + 's', 1241, + 't', 1220, + 'u', 1293, + 'w', 1261, + 'x', 1274, + '|', 1451, + 0xb5, 1293, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1210, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1224, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1198, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1201, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'a', 1265, + 'b', 1254, + 'e', 1193, + 'h', 1229, + 'i', 1267, + 'l', 1255, + 'm', 1275, + 'n', 1279, + 'o', 1190, + 's', 1301, + 'x', 1274, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(622); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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(663); + if (eof) ADVANCE(660); ADVANCE_MAP( - '\n', 1450, + '\n', 1447, '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1597, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1192, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1193, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, + '!', 1208, + '#', 2187, + '*', 1111, + '+', 1116, + '-', 1117, + '/', 1112, + ';', 1450, + '<', 1141, + '=', 319, + '>', 1143, + 'a', 1265, + 'b', 1254, + 'e', 1196, + 'h', 1229, + 'i', 1267, + 'l', 1255, + 'm', 1275, + 'n', 1279, + 'o', 1198, + 's', 1301, + 'x', 1274, + '|', 1451, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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(663); - ADVANCE_MAP( - '\n', 1450, - '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '.', 1597, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'B', 1655, - 'E', 1221, - 'G', 1224, - 'K', 1224, - 'M', 1224, - 'P', 1224, - 'T', 1224, - 'a', 1268, - 'b', 1656, - 'd', 1230, - 'e', 1200, - 'g', 1223, - 'h', 1231, - 'i', 1270, - 'k', 1223, - 'l', 1258, - 'm', 1225, - 'n', 1281, - 'o', 1201, - 'p', 1223, - 's', 1244, - 't', 1223, - 'u', 1296, - 'w', 1264, - 'x', 1277, - '|', 1454, - 0xb5, 1296, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(622); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + 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(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(663); - ADVANCE_MAP( - '\n', 1450, - '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'a', 1268, - 'b', 1257, - 'e', 1196, - 'h', 1232, - 'i', 1270, - 'l', 1258, - 'm', 1278, - 'n', 1282, - 'o', 1193, - 's', 1304, - 'x', 1277, - '|', 1454, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(1345); + if (lookahead == '-') ADVANCE(1973); + if (lookahead == 'I') ADVANCE(1371); + if (lookahead == '_') ADVANCE(1345); + if (lookahead == 'i') ADVANCE(1348); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1335: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(663); - ADVANCE_MAP( - '\n', 1450, - '\r', 1, - '!', 1211, - '#', 2190, - '*', 1114, - '+', 1119, - '-', 1120, - '/', 1115, - ';', 1453, - '<', 1144, - '=', 318, - '>', 1146, - 'a', 1268, - 'b', 1257, - 'e', 1199, - 'h', 1232, - 'i', 1270, - 'l', 1258, - 'm', 1278, - 'n', 1282, - 'o', 1201, - 's', 1304, - 'x', 1277, - '|', 1454, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(622); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1325); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(1345); + if (lookahead == '-') ADVANCE(1973); + if (lookahead == '_') ADVANCE(1345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1336: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1348); - if (lookahead == '-') ADVANCE(1976); - if (lookahead == 'I') ADVANCE(1374); - if (lookahead == '_') ADVANCE(1348); - if (lookahead == 'i') ADVANCE(1374); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1659); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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(1348); - if (lookahead == '-') ADVANCE(1976); - if (lookahead == 'I') ADVANCE(1374); - if (lookahead == '_') ADVANCE(1348); - if (lookahead == 'i') ADVANCE(1351); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1659); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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(1348); - if (lookahead == '-') ADVANCE(1976); - if (lookahead == '_') ADVANCE(1348); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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(447); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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(359); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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(431); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == '-') ADVANCE(448); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + if (lookahead == 'I') ADVANCE(1371); + if (lookahead == 'i') ADVANCE(1348); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1343: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(516); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + if (lookahead == 'I') ADVANCE(1371); + if (lookahead == 'i') ADVANCE(1359); + if (lookahead == 's') ADVANCE(1659); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1344: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1374); - if (lookahead == 'i') ADVANCE(1374); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1659); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == 'I') ADVANCE(1374); - if (lookahead == 'i') ADVANCE(1351); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1659); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 1346: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1374); - if (lookahead == 'i') ADVANCE(1362); - if (lookahead == 's') ADVANCE(1662); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1659); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == '_') ADVANCE(1347); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == '_') ADVANCE(1348); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == 'a') ADVANCE(1369); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == 'a') ADVANCE(1373); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == 'b') ADVANCE(1659); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == 'c') ADVANCE(1662); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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(1357); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == 'e') ADVANCE(1341); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == 'e') ADVANCE(1352); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == 'k') ADVANCE(1662); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + if (lookahead == 'l') ADVANCE(1337); + 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(1358); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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(1339); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == 'l') ADVANCE(1340); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == 'l') ADVANCE(1359); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == 'm') ADVANCE(1366); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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(1662); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1659); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == 'n') ADVANCE(1089); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == 'n') ADVANCE(1354); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == 'o') ADVANCE(1367); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == 'p') ADVANCE(1365); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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(1371); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == 'r') ADVANCE(1662); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == 'r') ADVANCE(1343); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == 's') ADVANCE(1662); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == 't') ADVANCE(1342); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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 == 'u') ADVANCE(1360); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1373: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(1662); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1659); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(375); + if (lookahead == '>') ADVANCE(518); + if (lookahead == 'u') ADVANCE(1431); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1375: - ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(438); + if (lookahead == '>') ADVANCE(520); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1446); END_STATE(); case 1376: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(437); + if (lookahead == '+') ADVANCE(379); if (lookahead == '>') ADVANCE(522); - if (lookahead == 'r') ADVANCE(1421); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(379); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'u') ADVANCE(1434); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == '+') ADVANCE(442); - if (lookahead == '>') ADVANCE(525); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(383); - if (lookahead == '>') ADVANCE(527); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'N') ADVANCE(1441); - if (lookahead == 'f') ADVANCE(1071); - if (lookahead == 'n') ADVANCE(1088); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == '_') ADVANCE(1381); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1381); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1429); - if (lookahead == 'o') ADVANCE(1414); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1411); - if (lookahead == 'o') ADVANCE(1420); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'a') ADVANCE(1424); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + if (lookahead == 'c') ADVANCE(1398); + 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 == 'a') ADVANCE(1435); - if (lookahead == 'o') ADVANCE(1388); - if (lookahead == 'u') ADVANCE(1431); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'c') ADVANCE(1400); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'c') ADVANCE(1401); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'd') ADVANCE(1438); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1399); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1050); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1074); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1092); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1095); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1068); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1059); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1430); - if (lookahead == 'o') ADVANCE(1415); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'e') ADVANCE(1413); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'e') ADVANCE(1422); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'f') ADVANCE(828); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1080); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'h') ADVANCE(1083); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'h') ADVANCE(1404); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'i') ADVANCE(1384); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'i') ADVANCE(1408); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1403); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1098); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + if (lookahead == 'l') ADVANCE(1392); + 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(1406); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1394); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1395); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'l') ADVANCE(1426); - if (lookahead == 'x') ADVANCE(1418); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'l') ADVANCE(1428); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1056); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'n') ADVANCE(1439); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'n') ADVANCE(1427); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'o') ADVANCE(1417); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'o') ADVANCE(1423); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'p') ADVANCE(1065); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'p') ADVANCE(1416); - if (lookahead == 't') ADVANCE(1398); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1437); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1062); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1378); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'r') ADVANCE(1412); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'r') ADVANCE(1433); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + if (lookahead == 's') ADVANCE(1388); + 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(673); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1390); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1449); + 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 == 's') ADVANCE(1432); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 's') ADVANCE(1393); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(1386); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(679); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(682); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(685); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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(669); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 't') ADVANCE(1379); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 't') ADVANCE(1387); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 (lookahead == 'A' || - lookahead == 'a') ADVANCE(1444); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'u') ADVANCE(1392); - if (lookahead == 'y') ADVANCE(1077); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'u') ADVANCE(1409); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'v') ADVANCE(1053); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'A' || - lookahead == 'a') ADVANCE(1444); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + if (lookahead == 'I' || + 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 == 'F' || - lookahead == 'f') ADVANCE(1443); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'I' || - lookahead == 'i') ADVANCE(1447); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + if (lookahead == 'N' || + 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 == 'I' || - lookahead == 'i') ADVANCE(1446); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1439); + 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(1449); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'N' || - lookahead == 'n') ADVANCE(1441); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 == 'N' || - lookahead == 'n') ADVANCE(1442); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + 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 (lookahead == 'T' || - lookahead == 't') ADVANCE(1448); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + ACCEPT_TOKEN(sym__newline); END_STATE(); case 1448: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1449); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + ACCEPT_TOKEN(sym__space); + if (lookahead == ':') ADVANCE(1712); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1448); END_STATE(); case 1449: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1449); + ACCEPT_TOKEN(sym__space); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1449); END_STATE(); case 1450: - ACCEPT_TOKEN(sym__newline); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 1451: - ACCEPT_TOKEN(sym__space); - if (lookahead == ':') ADVANCE(1715); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1451); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 1452: - ACCEPT_TOKEN(sym__space); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1452); + ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); case 1453: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); case 1454: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); case 1455: - ACCEPT_TOKEN(anon_sym_err_GT_PIPE); + ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); case 1456: - ACCEPT_TOKEN(anon_sym_out_GT_PIPE); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); case 1457: - ACCEPT_TOKEN(anon_sym_e_GT_PIPE); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); case 1458: - ACCEPT_TOKEN(anon_sym_o_GT_PIPE); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); case 1459: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); case 1460: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_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(anon_sym_o_PLUSe_GT_PIPE); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 1462: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 1463: - ACCEPT_TOKEN(sym_attribute_identifier); - if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1463); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 1464: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 1465: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 1466: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 1467: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 1468: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 1469: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 1470: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(1701); + if (lookahead == '\'') ADVANCE(1700); END_STATE(); case 1471: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(1701); + if (lookahead == '\'') ADVANCE(1700); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1472: ACCEPT_TOKEN(anon_sym_DOLLAR); + 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 (lookahead == '"') ADVANCE(1704); - if (lookahead == '\'') ADVANCE(1703); + ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); case 1474: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1704); - if (lookahead == '\'') ADVANCE(1703); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); case 1475: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); case 1476: - ACCEPT_TOKEN(anon_sym_cell_DASHpath); + ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); case 1477: - ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); + ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); case 1478: - ACCEPT_TOKEN(anon_sym_import_DASHpattern); + ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); case 1479: - ACCEPT_TOKEN(anon_sym_one_DASHof); + ACCEPT_TOKEN(anon_sym_GT2); + if (lookahead == '=') ADVANCE(1551); END_STATE(); case 1480: - ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); + ACCEPT_TOKEN(anon_sym_AT2); END_STATE(); case 1481: - ACCEPT_TOKEN(anon_sym_GT2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 1482: - ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(1554); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 1483: - ACCEPT_TOKEN(anon_sym_AT2); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 1484: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + 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_QMARK); + ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); case 1486: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(1483); END_STATE(); case 1487: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_DASH2); + 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(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(1486); + 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(1486); if (lookahead == '.') ADVANCE(335); - if (lookahead == '_') ADVANCE(307); + if (lookahead == '_') ADVANCE(309); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(538); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + lookahead == 'i') ADVANCE(533); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); END_STATE(); case 1491: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1486); - if (lookahead == '.') ADVANCE(1973); - if (lookahead == '_') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + 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 1492: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1486); - if (lookahead == '.') ADVANCE(337); - if (lookahead == '_') ADVANCE(313); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + 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(335); - if (lookahead == '_') ADVANCE(307); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(538); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + 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(868); - if (lookahead == '_') ADVANCE(850); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1027); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if (lookahead == '=') ADVANCE(685); END_STATE(); case 1495: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(1816); - if (lookahead == '_') ADVANCE(1793); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + 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 (lookahead == '.') ADVANCE(337); - if (lookahead == '_') ADVANCE(313); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); case 1497: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '=') ADVANCE(688); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 1498: - ACCEPT_TOKEN(anon_sym_DASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 1499: - ACCEPT_TOKEN(sym_param_short_flag_identifier); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 1500: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(2011); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); END_STATE(); case 1501: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym__); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1502: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 1503: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + 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__); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + 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(2077); + if (lookahead == '<') ADVANCE(1605); + if (lookahead == '=') ADVANCE(1604); END_STATE(); case 1506: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(692); - if (lookahead == '<') ADVANCE(1608); - if (lookahead == '=') ADVANCE(1607); + if (lookahead == '<') ADVANCE(1605); + if (lookahead == '=') ADVANCE(1604); END_STATE(); case 1507: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(1990); - if (lookahead == '<') ADVANCE(1608); - if (lookahead == '=') ADVANCE(1607); + 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(2080); - if (lookahead == '<') ADVANCE(1608); - if (lookahead == '=') ADVANCE(1607); + ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); case 1509: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1608); - if (lookahead == '=') ADVANCE(1607); + ACCEPT_TOKEN(anon_sym_DOLLAR2); + if (lookahead == '"') ADVANCE(1701); + if (lookahead == '\'') ADVANCE(1700); END_STATE(); case 1510: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1608); - if (lookahead == '=') ADVANCE(1607); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); case 1511: - ACCEPT_TOKEN(anon_sym_DOLLAR2); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1561); END_STATE(); case 1512: - ACCEPT_TOKEN(anon_sym_DOLLAR2); - if (lookahead == '"') ADVANCE(1704); - if (lookahead == '\'') ADVANCE(1703); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1561); + if (lookahead == '=') ADVANCE(686); END_STATE(); case 1513: ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1562); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1514: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1564); + 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(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1564); - if (lookahead == '=') ADVANCE(689); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'e') ADVANCE(1088); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); END_STATE(); case 1516: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1565); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'e') ADVANCE(1091); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1524); END_STATE(); case 1517: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'a') ADVANCE(1520); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); + 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 == 'e') ADVANCE(1091); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); + 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 == 'e') ADVANCE(1094); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); + 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 == 'l') ADVANCE(1523); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); + 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 == 'o') ADVANCE(1524); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); + 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 == 'r') ADVANCE(1525); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); + 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 == 's') ADVANCE(1519); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); + 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 (lookahead == 't') ADVANCE(1526); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); + 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 (lookahead == 'u') ADVANCE(1518); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 1526: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1562); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1527); + ACCEPT_TOKEN(anon_sym_and2); END_STATE(); case 1527: - 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(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_where); + ACCEPT_TOKEN(anon_sym_xor2); END_STATE(); case 1529: - ACCEPT_TOKEN(anon_sym_and2); + 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_and2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_or2); END_STATE(); case 1531: - ACCEPT_TOKEN(anon_sym_xor2); + 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_xor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_not_DASHin2); END_STATE(); case 1533: - ACCEPT_TOKEN(anon_sym_or2); + 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_or2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_has2); END_STATE(); case 1535: - ACCEPT_TOKEN(anon_sym_not_DASHin2); + 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_not_DASHin2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_not_DASHhas2); END_STATE(); case 1537: - ACCEPT_TOKEN(anon_sym_has2); + 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_has2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); END_STATE(); case 1539: - ACCEPT_TOKEN(anon_sym_not_DASHhas2); + 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_not_DASHhas2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); END_STATE(); case 1541: - ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + 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_starts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); END_STATE(); case 1543: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); + 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_not_DASHstarts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); END_STATE(); case 1545: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + 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_ends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_EQ_EQ2); END_STATE(); case 1547: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); + ACCEPT_TOKEN(anon_sym_BANG_EQ2); END_STATE(); case 1548: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); case 1549: - ACCEPT_TOKEN(anon_sym_EQ_EQ2); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(1550); END_STATE(); case 1550: - ACCEPT_TOKEN(anon_sym_BANG_EQ2); + ACCEPT_TOKEN(anon_sym_LT_EQ2); END_STATE(); case 1551: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(anon_sym_GT_EQ2); END_STATE(); case 1552: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(1553); + ACCEPT_TOKEN(anon_sym_EQ_TILDE2); END_STATE(); case 1553: - ACCEPT_TOKEN(anon_sym_LT_EQ2); + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); END_STATE(); case 1554: - ACCEPT_TOKEN(anon_sym_GT_EQ2); + 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_EQ_TILDE2); + ACCEPT_TOKEN(anon_sym_like2); END_STATE(); case 1556: - ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + 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_BANG_TILDE2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_not_DASHlike2); END_STATE(); case 1558: - ACCEPT_TOKEN(anon_sym_like2); + 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_like2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); case 1560: - ACCEPT_TOKEN(anon_sym_not_DASHlike2); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 1561: - ACCEPT_TOKEN(anon_sym_not_DASHlike2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); END_STATE(); case 1562: - ACCEPT_TOKEN(aux_sym_expr_unary_token1); + 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_LPAREN2); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); case 1564: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if (lookahead == '=') ADVANCE(688); END_STATE(); case 1565: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + 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); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1572); END_STATE(); case 1567: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if (lookahead == '=') ADVANCE(691); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1572); + if (lookahead == '=') ADVANCE(687); END_STATE(); case 1568: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1573); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); case 1569: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1575); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); case 1570: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1575); - if (lookahead == '=') ADVANCE(690); + ACCEPT_TOKEN(anon_sym_mod2); END_STATE(); case 1571: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1576); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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_SLASH2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); END_STATE(); case 1573: - ACCEPT_TOKEN(anon_sym_mod2); + 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_mod2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1563); END_STATE(); case 1575: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + ACCEPT_TOKEN(anon_sym_PLUS2); + 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_SLASH_SLASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_PLUS2); + 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(1566); + if (lookahead == '+') ADVANCE(1564); + if (lookahead == '=') ADVANCE(684); END_STATE(); case 1578: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1566); - if (lookahead == '.') ADVANCE(1816); - if (lookahead == '_') ADVANCE(1793); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if (lookahead == '+') ADVANCE(1565); + 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 (lookahead == '.') ADVANCE(337); - if (lookahead == '_') ADVANCE(313); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + 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(1567); - if (lookahead == '=') ADVANCE(687); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); END_STATE(); case 1581: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1568); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + 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_PLUS2); - if (lookahead == '.') ADVANCE(719); - if (lookahead == '_') ADVANCE(704); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); END_STATE(); case 1583: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + 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_DASHshl2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); END_STATE(); case 1585: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + 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_DASHshr2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); END_STATE(); case 1587: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); + 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_DASHand2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); END_STATE(); case 1589: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + 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_DASHxor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); case 1591: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); + 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_bit_DASHor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '<') ADVANCE(1607); + if (lookahead == '=') ADVANCE(1606); END_STATE(); case 1593: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 1594: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1484); - if (lookahead == '<') ADVANCE(1610); - if (lookahead == '=') ADVANCE(1609); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1592); END_STATE(); case 1595: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(1610); - if (lookahead == '=') ADVANCE(1609); + ACCEPT_TOKEN(anon_sym_DOT); + 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(1502); END_STATE(); case 1597: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1595); + 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(1595); - if (lookahead == '_') ADVANCE(720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if (lookahead == '.') ADVANCE(1963); END_STATE(); case 1599: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1505); + 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(1505); - if (lookahead == '_') ADVANCE(1947); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '.') ADVANCE(1591); END_STATE(); case 1601: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1966); + if (lookahead == '_') ADVANCE(1971); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); END_STATE(); case 1602: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1966); - if (lookahead == '_') ADVANCE(1974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '_') ADVANCE(1944); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); END_STATE(); case 1603: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1594); + if (lookahead == '_') ADVANCE(1814); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); END_STATE(); case 1604: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 1605: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1947); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); case 1606: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1817); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); case 1607: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); case 1608: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(1608); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); END_STATE(); case 1609: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); + 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(anon_sym_DOT_DOT_LT2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + if (lookahead == '_') ADVANCE(1610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); END_STATE(); case 1611: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + 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_token1); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(1612); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); END_STATE(); case 1613: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); if (lookahead == '_') ADVANCE(1613); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); END_STATE(); case 1614: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); + 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_token4); - if (lookahead == '_') ADVANCE(1615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 1616: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); - if (lookahead == '_') ADVANCE(1616); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); END_STATE(); case 1617: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); - if (lookahead == '_') ADVANCE(1617); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + 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(anon_sym_RPAREN2); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(2063); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); END_STATE(); case 1619: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + 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(822); - if (lookahead == '_') ADVANCE(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + 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(2066); - if (lookahead == '_') ADVANCE(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + 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(2120); - if (lookahead == '_') ADVANCE(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + 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(2172); - if (lookahead == '_') ADVANCE(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + 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(558); - if (lookahead == '_') ADVANCE(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + 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(1646); - if (lookahead == 'b') ADVANCE(1653); - if (lookahead == 'o') ADVANCE(1663); - if (lookahead == 'x') ADVANCE(1665); - 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(1635); END_STATE(); case 1626: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1646); - if (lookahead == 'b') ADVANCE(1653); - if (lookahead == 'o') ADVANCE(1663); - if (lookahead == 'x') ADVANCE(1665); - 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(1637); END_STATE(); case 1627: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1646); - if (lookahead == 'b') ADVANCE(1653); - if (lookahead == 'o') ADVANCE(1663); - if (lookahead == 'x') ADVANCE(1665); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + 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(1646); - if (lookahead == 'b') ADVANCE(1653); - if (lookahead == 'o') ADVANCE(1663); - if (lookahead == 'x') ADVANCE(1665); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + 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(1646); - if (lookahead == 'b') ADVANCE(1653); - if (lookahead == 'o') ADVANCE(1663); - if (lookahead == 'x') ADVANCE(1665); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + 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(1646); - if (lookahead == 'b') ADVANCE(816); - if (lookahead == 'o') ADVANCE(818); - if (lookahead == 'x') ADVANCE(825); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + 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(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1620); + 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(1646); - 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(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1621); + 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(1646); - 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(1646); - 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(1646); - 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(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1624); + 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(1646); - 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(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1623); + 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(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + 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(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + 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(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + 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(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); END_STATE(); case 1644: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + 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_token1); - if (lookahead == '_') ADVANCE(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + 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_token1); + 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_token2); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - END_STATE(); - case 1648: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(1648); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - END_STATE(); - case 1649: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); - if (lookahead == '_') ADVANCE(1649); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); - END_STATE(); - case 1650: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1650); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1647); END_STATE(); - case 1651: + case 1648: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1651); + lookahead == '_') ADVANCE(1648); END_STATE(); - case 1652: + case 1649: ACCEPT_TOKEN(aux_sym__val_number_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1652); + lookahead == '_') ADVANCE(1649); END_STATE(); - case 1653: + case 1650: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1651); + lookahead == '_') ADVANCE(1648); END_STATE(); - case 1654: + case 1651: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + lookahead == '_') ADVANCE(1028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); - case 1655: + case 1652: ACCEPT_TOKEN(sym_filesize_unit); END_STATE(); - case 1656: + case 1653: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1303); + if (lookahead == 'i') ADVANCE(1300); END_STATE(); - case 1657: + case 1654: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(480); + if (lookahead == 'i') ADVANCE(475); END_STATE(); - case 1658: + case 1655: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1900); + if (lookahead == 'i') ADVANCE(1897); END_STATE(); - case 1659: + case 1656: ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); - case 1660: + case 1657: ACCEPT_TOKEN(sym_duration_unit); END_STATE(); - case 1661: + case 1658: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(1049); + if (lookahead == 'e') ADVANCE(1046); END_STATE(); - case 1662: + case 1659: ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1375); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1372); END_STATE(); - case 1663: + case 1660: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1652); + lookahead == '_') ADVANCE(1649); END_STATE(); - case 1664: + case 1661: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + lookahead == '_') ADVANCE(1031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); - case 1665: + case 1662: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1650); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1647); END_STATE(); - case 1666: + case 1663: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1047); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + ('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 1667: + case 1664: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 1668: + case 1665: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1668); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1665); END_STATE(); - case 1669: + case 1666: ACCEPT_TOKEN(sym_val_date); END_STATE(); - case 1670: + case 1667: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(552); + if (lookahead == '.') ADVANCE(547); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(315); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1669); + lookahead == 'z') ADVANCE(1666); END_STATE(); - case 1671: + case 1668: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2064); + if (lookahead == '.') ADVANCE(2061); if (lookahead == '+' || - lookahead == '-') ADVANCE(2003); + lookahead == '-') ADVANCE(2000); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1669); + lookahead == 'z') ADVANCE(1666); END_STATE(); - case 1672: + case 1669: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2123); + if (lookahead == '.') ADVANCE(2120); if (lookahead == '+' || - lookahead == '-') ADVANCE(2086); + lookahead == '-') ADVANCE(2083); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1669); + lookahead == 'z') ADVANCE(1666); END_STATE(); - case 1673: + case 1670: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1684); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(551); + if (lookahead == ':') ADVANCE(1681); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(546); END_STATE(); - case 1674: + case 1671: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1685); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2059); + if (lookahead == ':') ADVANCE(1682); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2056); END_STATE(); - case 1675: + case 1672: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1686); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2117); + if (lookahead == ':') ADVANCE(1683); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2114); END_STATE(); - case 1676: + case 1673: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(824); + if (lookahead == 'T') ADVANCE(821); END_STATE(); - case 1677: + case 1674: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2068); + if (lookahead == 'T') ADVANCE(2065); END_STATE(); - case 1678: + case 1675: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2126); + if (lookahead == 'T') ADVANCE(2123); END_STATE(); - case 1679: + case 1676: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2174); + if (lookahead == 'T') ADVANCE(2171); END_STATE(); - case 1680: + case 1677: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(561); + if (lookahead == 'T') ADVANCE(556); END_STATE(); - case 1681: + case 1678: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(315); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1669); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1681); + lookahead == 'z') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1678); END_STATE(); - case 1682: + case 1679: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2003); + lookahead == '-') ADVANCE(2000); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1669); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1682); + lookahead == 'z') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); END_STATE(); - case 1683: + case 1680: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2086); + lookahead == '-') ADVANCE(2083); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1669); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1683); + lookahead == 'z') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1680); END_STATE(); - case 1684: + case 1681: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(551); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(546); END_STATE(); - case 1685: + case 1682: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2059); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2056); END_STATE(); - case 1686: + case 1683: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2117); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2114); END_STATE(); - case 1687: + case 1684: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 1688: + case 1685: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(1689); + if (lookahead == '#') ADVANCE(1686); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1688); + lookahead == ' ') ADVANCE(1685); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(1689); + lookahead != '\\') ADVANCE(1686); END_STATE(); - case 1689: + case 1686: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1689); + lookahead != '\\') ADVANCE(1686); END_STATE(); - case 1690: + case 1687: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 1691: + case 1688: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); - if (lookahead == '#') ADVANCE(1692); + if (lookahead == '#') ADVANCE(1689); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1691); + lookahead == ' ') ADVANCE(1688); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1692); + lookahead != '\'') ADVANCE(1689); END_STATE(); - case 1692: + case 1689: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1692); + lookahead != '\'') ADVANCE(1689); END_STATE(); - case 1693: + case 1690: ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); - case 1694: + case 1691: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 1695: + case 1692: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); - if (lookahead == '#') ADVANCE(1696); + if (lookahead == '#') ADVANCE(1693); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1695); + lookahead == ' ') ADVANCE(1692); if (lookahead != 0 && - lookahead != '`') ADVANCE(1696); + lookahead != '`') ADVANCE(1693); END_STATE(); - case 1696: + case 1693: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); if (lookahead != 0 && - lookahead != '`') ADVANCE(1696); + lookahead != '`') ADVANCE(1693); END_STATE(); - case 1697: + case 1694: ACCEPT_TOKEN(anon_sym_BQUOTE2); END_STATE(); - case 1698: + case 1695: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 1699: + case 1696: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(1700); + if (lookahead == '#') ADVANCE(1697); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1699); + lookahead == ' ') ADVANCE(1696); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(1700); + lookahead != '\\') ADVANCE(1697); END_STATE(); - case 1700: + case 1697: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(1700); + lookahead != '\\') ADVANCE(1697); END_STATE(); - case 1701: + case 1698: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(1702); + if (lookahead == '#') ADVANCE(1699); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1701); + lookahead == ' ') ADVANCE(1698); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1702); + lookahead != '(') ADVANCE(1699); END_STATE(); - case 1702: + case 1699: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1702); + lookahead != '(') ADVANCE(1699); END_STATE(); - case 1703: + case 1700: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); - case 1704: + case 1701: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); - case 1705: + case 1702: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 1706: + case 1703: ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); - case 1707: + case 1704: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); - case 1708: + case 1705: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); - case 1709: + case 1706: ACCEPT_TOKEN(sym__entry_separator); END_STATE(); - case 1710: + case 1707: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == '\n') ADVANCE(1709); - if (lookahead == '\r') ADVANCE(1709); + if (lookahead == '\n') ADVANCE(1706); + if (lookahead == '\r') ADVANCE(1706); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1710); + lookahead == ' ') ADVANCE(1707); if (lookahead == 0x0b || lookahead == '\f' || - lookahead == ',') ADVANCE(1709); + lookahead == ',') ADVANCE(1706); END_STATE(); - case 1711: + case 1708: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1709); + if (lookahead == ',') ADVANCE(1706); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1711); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1709); + lookahead == ' ') ADVANCE(1708); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1706); END_STATE(); - case 1712: + case 1709: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1709); + if (lookahead == ',') ADVANCE(1706); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1713); + lookahead == ' ') ADVANCE(1709); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1710); END_STATE(); - case 1713: + case 1710: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(1718); + if (lookahead == ';') ADVANCE(1715); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(317); + lookahead == ' ') ADVANCE(318); END_STATE(); - case 1714: + case 1711: ACCEPT_TOKEN(sym__entry_separator); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1714); + lookahead == ' ') ADVANCE(1711); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1709); + lookahead == ',') ADVANCE(1706); END_STATE(); - case 1715: + case 1712: ACCEPT_TOKEN(anon_sym_COLON2); END_STATE(); - case 1716: + case 1713: ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(2194); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1717); + if (lookahead == '#') ADVANCE(2191); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1714); END_STATE(); - case 1717: + case 1714: ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1717); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1714); END_STATE(); - case 1718: + case 1715: ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); - case 1719: + case 1716: ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); - case 1720: + case 1717: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 1721: + case 1718: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(1550); - if (lookahead == '~') ADVANCE(1556); + if (lookahead == '=') ADVANCE(1547); + if (lookahead == '~') ADVANCE(1553); + END_STATE(); + case 1719: + 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(1592); END_STATE(); case 1722: ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(1502); END_STATE(); case 1723: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(698); + if (lookahead == '.') ADVANCE(311); END_STATE(); case 1724: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1595); + if (lookahead == '.') ADVANCE(1591); END_STATE(); case 1725: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1505); + if (lookahead == '_') ADVANCE(717); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); END_STATE(); case 1726: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1594); + 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(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(310); + ACCEPT_TOKEN(aux_sym_path_token1); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1727); END_STATE(); case 1728: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '_') ADVANCE(720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); case 1729: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '"') ADVANCE(1687); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '\'') ADVANCE(1690); - if (lookahead == '`') ADVANCE(1694); - if (lookahead == '\t' || - lookahead == ' ') SKIP(171); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1730); + 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_path_token1); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1730); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 1731: - ACCEPT_TOKEN(anon_sym_EQ2); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(1747); END_STATE(); case 1732: - ACCEPT_TOKEN(aux_sym_env_var_token1); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1732); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(1747); + if (lookahead == '|') ADVANCE(1452); END_STATE(); case 1733: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(1748); END_STATE(); case 1734: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1750); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(1748); + if (lookahead == '|') ADVANCE(1453); END_STATE(); case 1735: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1750); - if (lookahead == '|') ADVANCE(1455); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(1749); END_STATE(); case 1736: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(1751); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(1749); + if (lookahead == '|') ADVANCE(1454); END_STATE(); case 1737: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(1751); - if (lookahead == '|') ADVANCE(1456); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(1750); END_STATE(); case 1738: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(1752); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(1750); + if (lookahead == '|') ADVANCE(1455); END_STATE(); case 1739: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(1752); - if (lookahead == '|') ADVANCE(1457); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(1751); END_STATE(); case 1740: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(1753); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(1751); + if (lookahead == '|') ADVANCE(1456); END_STATE(); case 1741: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(1753); - if (lookahead == '|') ADVANCE(1458); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(1752); END_STATE(); case 1742: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(1754); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(1752); + if (lookahead == '|') ADVANCE(1457); END_STATE(); case 1743: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(1754); - if (lookahead == '|') ADVANCE(1459); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(1753); END_STATE(); case 1744: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(1755); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(1753); + if (lookahead == '|') ADVANCE(1458); END_STATE(); case 1745: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(1755); - if (lookahead == '|') ADVANCE(1460); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(1754); END_STATE(); case 1746: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(1756); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(1754); + if (lookahead == '|') ADVANCE(1459); END_STATE(); case 1747: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(1756); - if (lookahead == '|') ADVANCE(1461); + ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); case 1748: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1757); + ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); case 1749: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1757); - if (lookahead == '|') ADVANCE(1462); + ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); case 1750: - ACCEPT_TOKEN(anon_sym_err_GT_GT); + ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); case 1751: - ACCEPT_TOKEN(anon_sym_out_GT_GT); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); case 1752: - ACCEPT_TOKEN(anon_sym_e_GT_GT); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); case 1753: - ACCEPT_TOKEN(anon_sym_o_GT_GT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); case 1754: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); case 1755: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_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(anon_sym_o_PLUSe_GT_GT); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(375); + if (lookahead == '>') ADVANCE(518); + if (lookahead == 'u') ADVANCE(1760); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1761); END_STATE(); case 1757: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(438); + if (lookahead == '>') ADVANCE(520); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1761); END_STATE(); case 1758: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(437); + if (lookahead == '+') ADVANCE(379); if (lookahead == '>') ADVANCE(522); - if (lookahead == 'r') ADVANCE(1762); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1764); + 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(379); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'u') ADVANCE(1763); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1764); + 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 == '+') ADVANCE(442); - if (lookahead == '>') ADVANCE(525); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1764); + 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 == '+') ADVANCE(383); - if (lookahead == '>') ADVANCE(527); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1764); + 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 (lookahead == 'r') ADVANCE(1760); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1764); + 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_short_flag_identifier); - if (lookahead == 't') ADVANCE(1761); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1764); + ACCEPT_TOKEN(sym__unquoted_pattern); + ADVANCE_MAP( + '+', 1816, + '-', 1819, + '>', 1736, + 'I', 1926, + '_', 1819, + 'i', 1926, + 'n', 1833, + 'r', 1882, + 'B', 1652, + 'b', 1652, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1764: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(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); - if (lookahead == '+') ADVANCE(1842); - if (lookahead == '>') ADVANCE(1741); - if (lookahead == 'r') ADVANCE(1533); - if (lookahead == 'u') ADVANCE(1903); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + ADVANCE_MAP( + '+', 1817, + '-', 1819, + '>', 1918, + 'I', 1926, + '_', 1819, + 'i', 1926, + 'n', 1833, + 'r', 1883, + 'B', 1652, + 'b', 1652, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1766: ACCEPT_TOKEN(sym__unquoted_pattern); ADVANCE_MAP( - '+', 1819, - '-', 1822, - '>', 1739, - 'I', 1929, - '_', 1822, - 'i', 1929, - 'n', 1836, - 'r', 1885, - 'B', 1655, - 'b', 1655, + '+', 1817, + '-', 1819, + '>', 1918, + 'I', 1926, + '_', 1819, + 'i', 1926, + 'r', 1883, + 'B', 1652, + 'b', 1652, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1767: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1819); - if (lookahead == '-') ADVANCE(1822); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == '_') ADVANCE(1822); - if (lookahead == 'n') ADVANCE(1836); - if (lookahead == 'r') ADVANCE(1885); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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); - ADVANCE_MAP( - '+', 1820, - '-', 1822, - '>', 1921, - 'I', 1929, - '_', 1822, - 'i', 1929, - 'n', 1836, - 'r', 1886, - 'B', 1655, - 'b', 1655, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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); - ADVANCE_MAP( - '+', 1820, - '-', 1822, - '>', 1921, - 'I', 1929, - '_', 1822, - 'i', 1929, - 'r', 1886, - 'B', 1655, - 'b', 1655, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1820); - if (lookahead == '-') ADVANCE(1822); - if (lookahead == '>') ADVANCE(1921); - if (lookahead == '_') ADVANCE(1822); - if (lookahead == 'n') ADVANCE(1836); - if (lookahead == 'r') ADVANCE(1886); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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); - if (lookahead == '+') ADVANCE(1820); - if (lookahead == '-') ADVANCE(1822); - if (lookahead == '>') ADVANCE(1921); - if (lookahead == '_') ADVANCE(1822); - if (lookahead == 'r') ADVANCE(1886); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1843); - if (lookahead == '>') ADVANCE(1737); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == '+') ADVANCE(1869); + if (lookahead == '>') ADVANCE(1732); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1773: ACCEPT_TOKEN(sym__unquoted_pattern); ADVANCE_MAP( - '+', 1871, - '>', 1739, - 'I', 1929, - 'i', 1929, - 'n', 1836, - 'r', 1885, - 'B', 1655, - 'b', 1655, + '+', 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(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1774: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1871); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'n') ADVANCE(1836); - if (lookahead == 'r') ADVANCE(1885); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1872); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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); - ADVANCE_MAP( - '+', 1877, - '>', 1921, - 'I', 1929, - 'i', 1929, - 'n', 1836, - 'r', 1886, - 'B', 1655, - 'b', 1655, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1877); - if (lookahead == '>') ADVANCE(1921); - if (lookahead == 'I') ADVANCE(1929); - if (lookahead == 'i') ADVANCE(1929); - if (lookahead == 'r') ADVANCE(1886); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == '+') ADVANCE(1841); + if (lookahead == '>') ADVANCE(1919); + if (lookahead == 'r') ADVANCE(1530); + if (lookahead == 'u') ADVANCE(1904); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1778: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1877); - if (lookahead == '>') ADVANCE(1921); - if (lookahead == 'n') ADVANCE(1836); - if (lookahead == 'r') ADVANCE(1886); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1877); + if (lookahead == '+') ADVANCE(1876); if (lookahead == '>') ADVANCE(1921); - if (lookahead == 'r') ADVANCE(1886); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1844); - if (lookahead == '>') ADVANCE(1922); - if (lookahead == 'r') ADVANCE(1533); - if (lookahead == 'u') ADVANCE(1907); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1844); - if (lookahead == '>') ADVANCE(1922); - if (lookahead == 'u') ADVANCE(1907); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1879); - if (lookahead == '>') ADVANCE(1924); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1845); - if (lookahead == '>') ADVANCE(1926); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1486); - if (lookahead == '.') ADVANCE(1823); - if (lookahead == '_') ADVANCE(1794); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1932); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1486); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1829); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == '-') ADVANCE(1914); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1787: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1846); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == '-') ADVANCE(1915); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1788: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '-') ADVANCE(1916); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1936); + 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(1918); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1919); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == '.') ADVANCE(1820); + if (lookahead == '_') ADVANCE(1791); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1792: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1595); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1816); - if (lookahead == '_') ADVANCE(1793); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1823); - if (lookahead == '_') ADVANCE(1794); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1550); - if (lookahead == '~') ADVANCE(1556); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1549); - if (lookahead == '>') ADVANCE(1502); - if (lookahead == '~') ADVANCE(1555); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1549); - if (lookahead == '~') ADVANCE(1555); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1502); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1749); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1747); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1743); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1745); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1923); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == '>') ADVANCE(1925); + 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(1925); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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); - if (lookahead == '>') ADVANCE(1927); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == '>') ADVANCE(1928); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == 'I') ADVANCE(1926); + if (lookahead == '_') ADVANCE(1819); + if (lookahead == 'i') ADVANCE(1828); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1819); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1807: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - 'I', 1929, - '_', 1822, - 'i', 1929, - 'n', 1836, - '+', 1822, - '-', 1822, - 'B', 1655, - 'b', 1655, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == 'I') ADVANCE(1926); + if (lookahead == 'i') ADVANCE(1926); + if (lookahead == 'n') ADVANCE(1833); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1808: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1929); - if (lookahead == '_') ADVANCE(1822); - if (lookahead == 'i') ADVANCE(1929); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1822); + if (lookahead == 'I') ADVANCE(1926); + if (lookahead == 'i') ADVANCE(1926); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1929); - if (lookahead == '_') ADVANCE(1822); - if (lookahead == 'i') ADVANCE(1831); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1822); + if (lookahead == 'I') ADVANCE(1926); + if (lookahead == 'i') ADVANCE(1828); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1929); - if (lookahead == 'i') ADVANCE(1929); - if (lookahead == 'n') ADVANCE(1836); + 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(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1929); - if (lookahead == 'i') ADVANCE(1929); + if (lookahead == 'I') ADVANCE(1926); + if (lookahead == 'i') ADVANCE(1861); + if (lookahead == 's') ADVANCE(1657); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1929); - if (lookahead == 'i') ADVANCE(1831); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'I') ADVANCE(1929); - if (lookahead == 'i') ADVANCE(1864); - if (lookahead == 'o') ADVANCE(1834); - if (lookahead == 's') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == '_') ADVANCE(1813); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1814: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1929); - if (lookahead == 'i') ADVANCE(1864); - if (lookahead == 's') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == '_') ADVANCE(1814); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1815: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1816); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1817); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1822); - if (lookahead == 'n') ADVANCE(1836); + if (lookahead == '_') ADVANCE(1819); if (lookahead == '+' || - lookahead == '-') ADVANCE(1822); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1822); - if (lookahead == 'o') ADVANCE(1799); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1822); - if (lookahead == 'o') ADVANCE(1803); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == '_') ADVANCE(1820); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1821: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1822); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1822); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == '_') ADVANCE(1822); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == '_') ADVANCE(1823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1894); - if (lookahead == 'r') ADVANCE(1660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1894); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1920); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1888); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1895); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'a') ADVANCE(1869); - if (lookahead == 'o') ADVANCE(1883); - if (lookahead == 's') ADVANCE(1852); - if (lookahead == 'x') ADVANCE(1878); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'a') ADVANCE(1892); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'c') ADVANCE(1660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1529); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1573); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1587); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'd') ADVANCE(1896); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'd') ADVANCE(1898); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1558); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1560); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1832); - if (lookahead == 't') ADVANCE(1827); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1832); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1800); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1889); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1804); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'e') ADVANCE(1890); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'e') ADVANCE(1870); - if (lookahead == 'h') ADVANCE(1828); - if (lookahead == 'i') ADVANCE(1866); - if (lookahead == 'l') ADVANCE(1859); - if (lookahead == 's') ADVANCE(1913); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'f') ADVANCE(1070); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1936); + 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(1936); + 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(1547); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'h') ADVANCE(1543); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'h') ADVANCE(1863); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1861); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1900); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1904); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == 'i') ADVANCE(1906); + 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(1906); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1908); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'i') ADVANCE(1909); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'i') ADVANCE(1862); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == 'k') ADVANCE(1836); + 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(1660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'k') ADVANCE(1838); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'k') ADVANCE(1839); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'l') ADVANCE(1583); - if (lookahead == 'r') ADVANCE(1585); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1085); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1535); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1936); + 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(1836); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'n') ADVANCE(1835); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'n') ADVANCE(1837); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1799); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1914); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1882); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1902); - if (lookahead == 's') ADVANCE(1660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1902); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1834); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1803); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'o') ADVANCE(1884); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'o') ADVANCE(1915); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1533); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1531); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1591); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1589); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1775); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1782); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1802); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1911); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1887); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1891); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'r') ADVANCE(1806); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'r') ADVANCE(1912); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1537); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == 's') ADVANCE(1786); + 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(1539); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == 's') ADVANCE(1787); + 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(1936); + 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(1936); + 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 == 's') ADVANCE(1790); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 's') ADVANCE(1791); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1786); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1827); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1787); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1772); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1848); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1801); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1849); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == 't') ADVANCE(1848); + 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(1783); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1850); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1851); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1805); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1897); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 't') ADVANCE(1899); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 't') ADVANCE(1830); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'u') ADVANCE(1905); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == 'w') ADVANCE(1853); + 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 == 'u') ADVANCE(1910); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == 'w') ADVANCE(1854); + 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(1936); + 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(1936); + 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 == 'w') ADVANCE(1857); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'w') ADVANCE(1858); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == '|') ADVANCE(1455); + 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 == 'y') ADVANCE(1660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1457); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1458); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1462); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1455); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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(1461); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == '|') ADVANCE(1457); + 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(1456); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == '|') ADVANCE(1459); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == '|') ADVANCE(1460); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'F' || - lookahead == 'f') ADVANCE(1108); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1928); + 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 == 'I' || - lookahead == 'i') ADVANCE(1934); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'N' || - lookahead == 'n') ADVANCE(1930); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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 == 'N' || - lookahead == 'n') ADVANCE(1931); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1933); END_STATE(); case 1934: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1935); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + 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); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1106); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '.') ADVANCE(1502); + if (lookahead == '_') ADVANCE(1944); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1936: - ACCEPT_TOKEN(sym__unquoted_pattern); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1936); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '.') ADVANCE(1502); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1937: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1595); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + 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(1505); + if (lookahead == 'I') ADVANCE(1957); if (lookahead == '_') ADVANCE(1947); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + 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 == '.') ADVANCE(1505); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + if (lookahead == 'I') ADVANCE(1957); + if (lookahead == '_') ADVANCE(1947); + if (lookahead == 'i') ADVANCE(1949); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1947); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1940: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1948); - if (lookahead == '_') ADVANCE(1940); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + if (lookahead == 'I') ADVANCE(1957); + if (lookahead == 'i') ADVANCE(1957); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1941: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1960); - if (lookahead == '_') ADVANCE(1950); - if (lookahead == 'i') ADVANCE(1960); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1950); + if (lookahead == 'I') ADVANCE(1957); + if (lookahead == 'i') ADVANCE(1949); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + 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(1960); - if (lookahead == '_') ADVANCE(1950); - if (lookahead == 'i') ADVANCE(1952); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1950); + if (lookahead == 'I') ADVANCE(1957); + if (lookahead == 'i') ADVANCE(1953); + if (lookahead == 's') ADVANCE(1657); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + 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(1960); - if (lookahead == 'i') ADVANCE(1960); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + 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 == 'I') ADVANCE(1960); - if (lookahead == 'i') ADVANCE(1952); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + 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 1945: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1960); - if (lookahead == 'i') ADVANCE(1956); - if (lookahead == 's') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + if (lookahead == '_') ADVANCE(1945); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1946: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1946); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + if (lookahead == '_') ADVANCE(1947); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1958); END_STATE(); case 1947: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); if (lookahead == '_') ADVANCE(1947); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + 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(1615); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + 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 == '_') ADVANCE(1950); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1950); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + 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 == '_') ADVANCE(1950); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + 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 == 'a') ADVANCE(1959); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + 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 == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + 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 == 'c') ADVANCE(1660); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + 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 == 'e') ADVANCE(1953); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + 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 == 'k') ADVANCE(1660); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + 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 == 'n') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + 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 == 'r') ADVANCE(1660); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + 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 == 's') ADVANCE(1660); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + 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 (lookahead == 'y') ADVANCE(1660); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(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(1985); END_STATE(); case 1960: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(1970); + if (lookahead == '_') ADVANCE(1960); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1961: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1961); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(1963); + if (lookahead == '_') ADVANCE(1971); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1962: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1595); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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(1973); - if (lookahead == '_') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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(1966); - 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(1988); + 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(1966); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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 == '.') ADVANCE(1484); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + if (lookahead == 'I') ADVANCE(1984); + if (lookahead == '_') ADVANCE(1973); + if (lookahead == 'i') ADVANCE(1976); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1973); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1985); END_STATE(); case 1967: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1594); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + if (lookahead == 'I') ADVANCE(1984); + if (lookahead == 'i') ADVANCE(1984); + 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 1968: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1987); - if (lookahead == '_') ADVANCE(1976); - if (lookahead == 'i') ADVANCE(1987); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1976); + if (lookahead == 'I') ADVANCE(1984); + if (lookahead == 'i') ADVANCE(1976); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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(1987); - if (lookahead == '_') ADVANCE(1976); - if (lookahead == 'i') ADVANCE(1979); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1976); + if (lookahead == 'I') ADVANCE(1984); + if (lookahead == 'i') ADVANCE(1980); + if (lookahead == 's') ADVANCE(1657); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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(1987); - if (lookahead == 'i') ADVANCE(1987); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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 == 'I') ADVANCE(1987); - if (lookahead == 'i') ADVANCE(1979); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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 1972: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1987); - if (lookahead == 'i') ADVANCE(1983); - if (lookahead == 's') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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(1973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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(1988); + 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(1976); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1976); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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 == '_') ADVANCE(1976); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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 == '_') ADVANCE(1977); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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 == 'a') ADVANCE(1986); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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 == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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 == 'c') ADVANCE(1660); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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 == 'e') ADVANCE(1980); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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 == 'k') ADVANCE(1660); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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 == 'n') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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 == 'r') ADVANCE(1660); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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 == 's') ADVANCE(1660); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); + 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 (lookahead == 'y') ADVANCE(1660); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); - END_STATE(); - case 1987: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1655); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); - END_STATE(); - case 1988: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1988); - END_STATE(); - case 1989: ACCEPT_TOKEN(sym__unquoted_naive); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -31354,1149 +31539,1149 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1989); + (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(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(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(1619); - if (lookahead == '(') ADVANCE(1593); - if (lookahead == '[') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2027); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(2033); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2020); - if (lookahead == '>') ADVANCE(1741); - if (lookahead == 'u') ADVANCE(2041); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + if (lookahead == '+') ADVANCE(2027); + if (lookahead == '>') ADVANCE(1735); + if (lookahead == 'r') ADVANCE(2031); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 1993: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2028); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2021); - if (lookahead == '>') ADVANCE(1737); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2030); - if (lookahead == '>') ADVANCE(1738); - if (lookahead == 'r') ADVANCE(2034); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2022); - if (lookahead == '>') ADVANCE(1740); - if (lookahead == 'u') ADVANCE(2043); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2031); - if (lookahead == '>') ADVANCE(1734); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2023); - if (lookahead == '>') ADVANCE(1736); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2067); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(1509); - if (lookahead == '_') ADVANCE(2016); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(2016); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2015); - if (lookahead == '_') ADVANCE(2002); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == '2') ADVANCE(2057); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2065); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2069); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2071); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(1749); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(1747); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(1743); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(1745); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(1748); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(1746); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(1742); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + if (lookahead == '_') ADVANCE(2012); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2069); END_STATE(); case 2013: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1744); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 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(2072); + 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 == '_') ADVANCE(2015); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == '_') ADVANCE(2016); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == 'a') ADVANCE(2025); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(1091); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(1094); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2007); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2035); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == 'e') ADVANCE(2011); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == 'e') ADVANCE(2038); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(1097); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == 'l') ADVANCE(2039); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == 'l') ADVANCE(2024); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2006); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2047); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2040); - if (lookahead == 'u') ADVANCE(2026); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2052); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == 'o') ADVANCE(2010); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == 'o') ADVANCE(2048); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2046); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(1993); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(1997); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2036); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2009); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == 'r') ADVANCE(2013); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == 'r') ADVANCE(2037); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == 's') ADVANCE(2019); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2058); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(1994); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2008); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == 't') ADVANCE(1998); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == 't') ADVANCE(2012); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2026); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2052); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2018); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == 'u') ADVANCE(2042); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == 'u') ADVANCE(2044); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == 'A' || - lookahead == 'a') ADVANCE(2052); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == 'F' || - lookahead == 'f') ADVANCE(1102); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + if (lookahead == 'N' || + 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 == 'I' || - lookahead == 'i') ADVANCE(2055); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2048); + 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(1111); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == 'N' || - lookahead == 'n') ADVANCE(2050); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 == 'N' || - lookahead == 'n') ADVANCE(2051); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 (lookahead == 'T' || - lookahead == 't') ADVANCE(2056); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1100); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 <= '3')) ADVANCE(1674); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1562); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(1669); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(1999); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2005); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(1677); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(1671); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(1682); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(1674); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2060); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2062); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2061); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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(2063); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + 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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(2004); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1469); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '.') ADVANCE(2073); + if (lookahead == '_') ADVANCE(2074); + if (lookahead == '\t' || + lookahead == ' ') SKIP(192); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2072); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2076); END_STATE(); case 2071: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2070); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2072); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(2073); + if (lookahead == '_') ADVANCE(2074); + if (lookahead == '\t' || + lookahead == ' ') SKIP(255); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2072); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2076); END_STATE(); case 2072: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(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(2190); - if (lookahead == '$') ADVANCE(1472); - if (lookahead == '(') ADVANCE(1563); - if (lookahead == '.') ADVANCE(2076); - if (lookahead == '_') ADVANCE(2077); - if (lookahead == '\t' || - lookahead == ' ') SKIP(191); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2075); + if (lookahead == '_') ADVANCE(2073); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2079); + 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(2190); - if (lookahead == '.') ADVANCE(2076); - if (lookahead == '_') ADVANCE(2077); - if (lookahead == '\t' || - lookahead == ' ') SKIP(254); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2075); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2079); + if (lookahead == '_') ADVANCE(2074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2076); END_STATE(); case 2075: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2078); if (lookahead == '_') ADVANCE(2075); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2079); + 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(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2079); + 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 (lookahead == '_') ADVANCE(2077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2079); + 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_token2); - if (lookahead == '_') ADVANCE(2078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2079); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '-') ADVANCE(2122); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2079: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2079); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(1506); + if (lookahead == '_') ADVANCE(2088); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2080: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(1619); - if (lookahead == '(') ADVANCE(1593); - if (lookahead == '[') ADVANCE(1707); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2130); + 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(2125); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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(1509); - if (lookahead == '_') ADVANCE(2091); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + if (lookahead == '.') ADVANCE(1505); + if (lookahead == '_') ADVANCE(2088); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2083: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2090); - if (lookahead == '_') ADVANCE(2084); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2110); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 == '.') ADVANCE(2090); - if (lookahead == '_') ADVANCE(2084); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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(1508); - if (lookahead == '_') ADVANCE(2091); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 == '2') ADVANCE(2116); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2124); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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(2127); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + if (lookahead == '_') ADVANCE(2087); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2127); END_STATE(); case 2088: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2129); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 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(2130); + 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 == '_') ADVANCE(2090); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 == '_') ADVANCE(2091); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 == 'a') ADVANCE(2096); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 == 'e') ADVANCE(1091); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 == 'e') ADVANCE(1094); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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(1097); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 == 'l') ADVANCE(2099); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 == 'l') ADVANCE(2095); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 == 'r') ADVANCE(2100); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 == 's') ADVANCE(2094); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 2100: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2093); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 == 'u') ADVANCE(2097); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2107); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + if (lookahead == 'F' || + 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 == 'A' || - lookahead == 'a') ADVANCE(2107); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 == 'F' || - lookahead == 'f') ADVANCE(1109); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2110); + 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 == 'F' || - lookahead == 'f') ADVANCE(1103); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 == 'I' || - lookahead == 'i') ADVANCE(2112); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + if (lookahead == 'N' || + 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 == 'I' || - lookahead == 'i') ADVANCE(2113); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2102); + 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(1111); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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(2104); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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(2105); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 == 'N' || - lookahead == 'n') ADVANCE(2103); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2112); + 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 == 'N' || - lookahead == 'n') ADVANCE(2106); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 == 'T' || - lookahead == 't') ADVANCE(2114); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + if (lookahead == 'Y' || + 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 == 'T' || - lookahead == 't') ADVANCE(2115); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1100); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1106); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 <= '3')) ADVANCE(1675); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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(1669); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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(2081); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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(2088); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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(2118); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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(1678); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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(1672); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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(1683); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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(1675); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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(2121); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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(2119); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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(2122); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(2087); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + 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_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2128); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1469); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '.') ADVANCE(2131); + if (lookahead == '_') ADVANCE(2132); + if (lookahead == '\t' || + lookahead == ' ') SKIP(192); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2130); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2134); END_STATE(); case 2130: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2130); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(2133); + if (lookahead == '_') ADVANCE(2130); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2134); END_STATE(); case 2131: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2190); - if (lookahead == '$') ADVANCE(1511); - if (lookahead == '(') ADVANCE(1563); - if (lookahead == '.') ADVANCE(2134); - if (lookahead == ']') ADVANCE(1468); - if (lookahead == '_') ADVANCE(2135); - if (lookahead == '\t' || - lookahead == ' ') SKIP(189); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2133); + if (lookahead == '_') ADVANCE(2131); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2137); + 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(2190); - if (lookahead == '$') ADVANCE(1472); - if (lookahead == '(') ADVANCE(1563); - if (lookahead == '.') ADVANCE(2134); - if (lookahead == '_') ADVANCE(2135); - if (lookahead == '\t' || - lookahead == ' ') SKIP(191); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2133); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2137); + if (lookahead == '_') ADVANCE(2132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2134); END_STATE(); case 2133: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2136); if (lookahead == '_') ADVANCE(2133); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2137); + 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(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2137); + 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 (lookahead == '_') ADVANCE(2135); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2137); + 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_list_token2); - if (lookahead == '_') ADVANCE(2136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2137); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(1506); + if (lookahead == '_') ADVANCE(2142); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2173); END_STATE(); case 2137: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2137); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + 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(2173); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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(1509); - if (lookahead == '_') ADVANCE(2145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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(2144); - if (lookahead == '_') ADVANCE(2141); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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(2144); if (lookahead == '_') ADVANCE(2141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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(554); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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 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(2176); + 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 == '_') ADVANCE(2144); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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 == '_') ADVANCE(2145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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 == 'a') ADVANCE(2150); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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 == 'e') ADVANCE(1091); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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 == 'e') ADVANCE(1094); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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(1097); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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 == 'l') ADVANCE(2153); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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 == 'l') ADVANCE(2149); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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 == 'r') ADVANCE(2154); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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 == 's') ADVANCE(2148); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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 2154: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2147); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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 == 'u') ADVANCE(2151); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2161); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + if (lookahead == 'F' || + 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 == 'A' || - lookahead == 'a') ADVANCE(2161); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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 == 'F' || - lookahead == 'f') ADVANCE(1110); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2164); + 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 == 'F' || - lookahead == 'f') ADVANCE(1104); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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 == 'I' || - lookahead == 'i') ADVANCE(2166); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + if (lookahead == 'N' || + 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 == 'I' || - lookahead == 'i') ADVANCE(2167); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2156); + 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(1111); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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(2158); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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(2159); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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 == 'N' || - lookahead == 'n') ADVANCE(2157); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2166); + 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 == 'N' || - lookahead == 'n') ADVANCE(2160); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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 == 'T' || - lookahead == 't') ADVANCE(2168); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + if (lookahead == 'Y' || + 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 == 'T' || - lookahead == 't') ADVANCE(2169); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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 (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1100); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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 (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1106); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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(2138); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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(2142); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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(2170); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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(2175); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + 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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(2171); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(1469); + if (lookahead == '(') ADVANCE(1560); + if (lookahead == '.') ADVANCE(2177); + if (lookahead == '_') ADVANCE(2178); + if (lookahead == '\t' || + lookahead == ' ') SKIP(192); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2176); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2180); END_STATE(); case 2175: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2176); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '.') ADVANCE(2177); + if (lookahead == '_') ADVANCE(2178); + if (lookahead == '\t' || + lookahead == ' ') SKIP(255); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2176); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2180); END_STATE(); case 2176: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(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(2190); - if (lookahead == '$') ADVANCE(1472); - if (lookahead == '(') ADVANCE(1563); - if (lookahead == '.') ADVANCE(2180); - if (lookahead == '_') ADVANCE(2181); - if (lookahead == '\t' || - lookahead == ' ') SKIP(191); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2179); + if (lookahead == '_') ADVANCE(2177); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2183); + 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(2190); - if (lookahead == '.') ADVANCE(2180); - if (lookahead == '_') ADVANCE(2181); - if (lookahead == '\t' || - lookahead == ' ') SKIP(254); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2179); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2183); + if (lookahead == '_') ADVANCE(2178); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2180); END_STATE(); case 2179: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(2182); if (lookahead == '_') ADVANCE(2179); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2183); + 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(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2183); + 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 (lookahead == '_') ADVANCE(2181); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2183); - END_STATE(); - case 2182: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2182); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2183); - END_STATE(); - case 2183: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2183); - END_STATE(); - case 2184: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(2197); + if (lookahead == '#') ADVANCE(2194); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2185); + lookahead != '|') ADVANCE(2182); END_STATE(); - case 2185: + case 2182: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32504,20 +32689,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2185); + lookahead != '|') ADVANCE(2182); END_STATE(); - case 2186: + case 2183: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(2196); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2187); + 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 2187: + 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(2187); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2184); END_STATE(); - case 2188: + case 2185: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(2195); + if (lookahead == '#') ADVANCE(2192); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -32526,9 +32711,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2189); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2186); END_STATE(); - case 2189: + case 2186: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32538,30 +32723,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2189); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2186); END_STATE(); - case 2190: + case 2187: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 2191: + case 2188: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(665); - if (lookahead == '\r') ADVANCE(667); - if (lookahead != 0) ADVANCE(667); + if (lookahead == '\n') ADVANCE(662); + if (lookahead == '\r') ADVANCE(664); + if (lookahead != 0) ADVANCE(664); END_STATE(); - case 2192: + case 2189: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(664); + if (lookahead == '!') ADVANCE(661); END_STATE(); - case 2193: + case 2190: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1045); END_STATE(); - case 2194: + case 2191: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1717); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1714); END_STATE(); - case 2195: + case 2192: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32571,13 +32756,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2189); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2186); END_STATE(); - case 2196: + 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(2187); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2184); END_STATE(); - case 2197: + case 2194: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32585,26 +32770,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2185); + lookahead != '|') ADVANCE(2182); END_STATE(); - case 2198: + case 2195: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2200); + lookahead != '\n') ADVANCE(2197); END_STATE(); - case 2199: + case 2196: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(2198); + if (lookahead == '#') ADVANCE(2195); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2199); + lookahead == ' ') ADVANCE(2196); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(2200); + lookahead != '\n') ADVANCE(2197); END_STATE(); - case 2200: + case 2197: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2200); + lookahead != '\n') ADVANCE(2197); END_STATE(); default: return false; @@ -33152,5264 +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 = 631, .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 = 623, .external_lex_state = 2}, - [17] = {.lex_state = 623, .external_lex_state = 2}, - [18] = {.lex_state = 623, .external_lex_state = 2}, - [19] = {.lex_state = 623, .external_lex_state = 2}, - [20] = {.lex_state = 623, .external_lex_state = 2}, - [21] = {.lex_state = 623, .external_lex_state = 2}, - [22] = {.lex_state = 623, .external_lex_state = 2}, - [23] = {.lex_state = 623, .external_lex_state = 2}, - [24] = {.lex_state = 623, .external_lex_state = 2}, - [25] = {.lex_state = 623, .external_lex_state = 2}, - [26] = {.lex_state = 623, .external_lex_state = 2}, - [27] = {.lex_state = 623, .external_lex_state = 2}, - [28] = {.lex_state = 623, .external_lex_state = 2}, - [29] = {.lex_state = 623, .external_lex_state = 2}, - [30] = {.lex_state = 623, .external_lex_state = 2}, - [31] = {.lex_state = 623, .external_lex_state = 2}, - [32] = {.lex_state = 623, .external_lex_state = 2}, - [33] = {.lex_state = 623, .external_lex_state = 2}, - [34] = {.lex_state = 623, .external_lex_state = 2}, - [35] = {.lex_state = 29, .external_lex_state = 2}, - [36] = {.lex_state = 623, .external_lex_state = 2}, - [37] = {.lex_state = 29, .external_lex_state = 2}, - [38] = {.lex_state = 29, .external_lex_state = 2}, - [39] = {.lex_state = 623, .external_lex_state = 2}, - [40] = {.lex_state = 29, .external_lex_state = 2}, - [41] = {.lex_state = 623, .external_lex_state = 2}, - [42] = {.lex_state = 623, .external_lex_state = 2}, - [43] = {.lex_state = 623, .external_lex_state = 2}, - [44] = {.lex_state = 29, .external_lex_state = 2}, - [45] = {.lex_state = 29, .external_lex_state = 2}, - [46] = {.lex_state = 623, .external_lex_state = 2}, - [47] = {.lex_state = 623, .external_lex_state = 2}, - [48] = {.lex_state = 623, .external_lex_state = 2}, - [49] = {.lex_state = 29, .external_lex_state = 2}, - [50] = {.lex_state = 29, .external_lex_state = 2}, - [51] = {.lex_state = 29, .external_lex_state = 2}, - [52] = {.lex_state = 623, .external_lex_state = 2}, - [53] = {.lex_state = 623, .external_lex_state = 2}, - [54] = {.lex_state = 29, .external_lex_state = 2}, - [55] = {.lex_state = 623, .external_lex_state = 2}, - [56] = {.lex_state = 29, .external_lex_state = 2}, - [57] = {.lex_state = 623, .external_lex_state = 2}, - [58] = {.lex_state = 623, .external_lex_state = 2}, - [59] = {.lex_state = 29, .external_lex_state = 2}, - [60] = {.lex_state = 623, .external_lex_state = 2}, - [61] = {.lex_state = 623, .external_lex_state = 2}, - [62] = {.lex_state = 29, .external_lex_state = 2}, - [63] = {.lex_state = 29, .external_lex_state = 2}, - [64] = {.lex_state = 29, .external_lex_state = 2}, - [65] = {.lex_state = 29, .external_lex_state = 2}, - [66] = {.lex_state = 623, .external_lex_state = 2}, - [67] = {.lex_state = 623, .external_lex_state = 2}, - [68] = {.lex_state = 29, .external_lex_state = 2}, - [69] = {.lex_state = 29, .external_lex_state = 2}, - [70] = {.lex_state = 29, .external_lex_state = 2}, - [71] = {.lex_state = 29, .external_lex_state = 2}, - [72] = {.lex_state = 29, .external_lex_state = 2}, - [73] = {.lex_state = 29, .external_lex_state = 2}, - [74] = {.lex_state = 623, .external_lex_state = 2}, - [75] = {.lex_state = 623, .external_lex_state = 2}, - [76] = {.lex_state = 29, .external_lex_state = 2}, - [77] = {.lex_state = 623, .external_lex_state = 2}, - [78] = {.lex_state = 29, .external_lex_state = 2}, - [79] = {.lex_state = 623, .external_lex_state = 2}, - [80] = {.lex_state = 623, .external_lex_state = 2}, - [81] = {.lex_state = 623, .external_lex_state = 2}, - [82] = {.lex_state = 623, .external_lex_state = 2}, - [83] = {.lex_state = 623, .external_lex_state = 2}, - [84] = {.lex_state = 623, .external_lex_state = 2}, - [85] = {.lex_state = 623, .external_lex_state = 2}, - [86] = {.lex_state = 623, .external_lex_state = 2}, - [87] = {.lex_state = 623, .external_lex_state = 2}, - [88] = {.lex_state = 623, .external_lex_state = 2}, - [89] = {.lex_state = 623, .external_lex_state = 2}, - [90] = {.lex_state = 623, .external_lex_state = 2}, - [91] = {.lex_state = 623, .external_lex_state = 2}, - [92] = {.lex_state = 1158}, - [93] = {.lex_state = 1173}, - [94] = {.lex_state = 1161}, - [95] = {.lex_state = 1326}, - [96] = {.lex_state = 1159}, - [97] = {.lex_state = 1332}, - [98] = {.lex_state = 1174}, - [99] = {.lex_state = 1154}, - [100] = {.lex_state = 1148}, - [101] = {.lex_state = 1159}, - [102] = {.lex_state = 1328}, - [103] = {.lex_state = 1326}, - [104] = {.lex_state = 1160}, - [105] = {.lex_state = 1163}, - [106] = {.lex_state = 1160}, - [107] = {.lex_state = 1163}, - [108] = {.lex_state = 41, .external_lex_state = 2}, - [109] = {.lex_state = 1160}, - [110] = {.lex_state = 626, .external_lex_state = 2}, - [111] = {.lex_state = 1328}, - [112] = {.lex_state = 1150}, + [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 = 1332}, - [115] = {.lex_state = 1150}, - [116] = {.lex_state = 1165}, - [117] = {.lex_state = 1330}, - [118] = {.lex_state = 1165}, - [119] = {.lex_state = 626, .external_lex_state = 2}, - [120] = {.lex_state = 1330}, - [121] = {.lex_state = 1165}, - [122] = {.lex_state = 626, .external_lex_state = 2}, - [123] = {.lex_state = 1330}, - [124] = {.lex_state = 1176}, - [125] = {.lex_state = 1330}, - [126] = {.lex_state = 1167}, - [127] = {.lex_state = 1152}, - [128] = {.lex_state = 1165}, - [129] = {.lex_state = 1152}, - [130] = {.lex_state = 1328}, - [131] = {.lex_state = 1152}, - [132] = {.lex_state = 1152}, - [133] = {.lex_state = 1328}, - [134] = {.lex_state = 1169}, - [135] = {.lex_state = 1330}, - [136] = {.lex_state = 1330}, - [137] = {.lex_state = 1169}, - [138] = {.lex_state = 1330}, - [139] = {.lex_state = 1330}, - [140] = {.lex_state = 1171}, - [141] = {.lex_state = 1171}, - [142] = {.lex_state = 1171}, - [143] = {.lex_state = 1171}, - [144] = {.lex_state = 1334}, - [145] = {.lex_state = 623, .external_lex_state = 2}, - [146] = {.lex_state = 623, .external_lex_state = 2}, - [147] = {.lex_state = 1178}, - [148] = {.lex_state = 623, .external_lex_state = 2}, - [149] = {.lex_state = 623, .external_lex_state = 2}, - [150] = {.lex_state = 623, .external_lex_state = 2}, - [151] = {.lex_state = 1178}, - [152] = {.lex_state = 623, .external_lex_state = 2}, - [153] = {.lex_state = 623, .external_lex_state = 2}, - [154] = {.lex_state = 623, .external_lex_state = 2}, - [155] = {.lex_state = 623, .external_lex_state = 2}, - [156] = {.lex_state = 1156}, - [157] = {.lex_state = 1156}, - [158] = {.lex_state = 623, .external_lex_state = 2}, - [159] = {.lex_state = 623, .external_lex_state = 2}, - [160] = {.lex_state = 623, .external_lex_state = 2}, - [161] = {.lex_state = 623, .external_lex_state = 2}, - [162] = {.lex_state = 623, .external_lex_state = 2}, - [163] = {.lex_state = 1334}, - [164] = {.lex_state = 623, .external_lex_state = 2}, - [165] = {.lex_state = 1178}, - [166] = {.lex_state = 1178}, - [167] = {.lex_state = 623, .external_lex_state = 2}, - [168] = {.lex_state = 623, .external_lex_state = 2}, - [169] = {.lex_state = 623, .external_lex_state = 2}, - [170] = {.lex_state = 623, .external_lex_state = 2}, - [171] = {.lex_state = 623, .external_lex_state = 2}, - [172] = {.lex_state = 623, .external_lex_state = 2}, - [173] = {.lex_state = 623, .external_lex_state = 2}, - [174] = {.lex_state = 623, .external_lex_state = 2}, - [175] = {.lex_state = 623, .external_lex_state = 2}, - [176] = {.lex_state = 623, .external_lex_state = 2}, - [177] = {.lex_state = 623, .external_lex_state = 2}, - [178] = {.lex_state = 623, .external_lex_state = 2}, - [179] = {.lex_state = 623, .external_lex_state = 2}, - [180] = {.lex_state = 623, .external_lex_state = 2}, - [181] = {.lex_state = 623, .external_lex_state = 2}, - [182] = {.lex_state = 623, .external_lex_state = 2}, - [183] = {.lex_state = 623, .external_lex_state = 2}, - [184] = {.lex_state = 623, .external_lex_state = 2}, - [185] = {.lex_state = 623, .external_lex_state = 2}, - [186] = {.lex_state = 1334}, - [187] = {.lex_state = 623, .external_lex_state = 2}, - [188] = {.lex_state = 1334}, - [189] = {.lex_state = 623, .external_lex_state = 2}, - [190] = {.lex_state = 623, .external_lex_state = 2}, - [191] = {.lex_state = 623, .external_lex_state = 2}, - [192] = {.lex_state = 1180}, - [193] = {.lex_state = 1180}, - [194] = {.lex_state = 42, .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 = 1149}, - [268] = {.lex_state = 1175}, - [269] = {.lex_state = 1162}, - [270] = {.lex_state = 1333}, - [271] = {.lex_state = 1155}, - [272] = {.lex_state = 1327}, - [273] = {.lex_state = 1164}, - [274] = {.lex_state = 1151}, - [275] = {.lex_state = 1164}, - [276] = {.lex_state = 1333}, - [277] = {.lex_state = 1327}, - [278] = {.lex_state = 34, .external_lex_state = 2}, - [279] = {.lex_state = 34, .external_lex_state = 2}, - [280] = {.lex_state = 34, .external_lex_state = 2}, - [281] = {.lex_state = 34, .external_lex_state = 2}, - [282] = {.lex_state = 34, .external_lex_state = 2}, - [283] = {.lex_state = 1329}, - [284] = {.lex_state = 34, .external_lex_state = 2}, - [285] = {.lex_state = 34, .external_lex_state = 2}, - [286] = {.lex_state = 1329}, - [287] = {.lex_state = 34, .external_lex_state = 2}, - [288] = {.lex_state = 34, .external_lex_state = 2}, - [289] = {.lex_state = 1151}, - [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 = 34, .external_lex_state = 2}, - [294] = {.lex_state = 1331}, - [295] = {.lex_state = 1329}, - [296] = {.lex_state = 1153}, - [297] = {.lex_state = 1166}, - [298] = {.lex_state = 1331}, - [299] = {.lex_state = 1331}, - [300] = {.lex_state = 1153}, - [301] = {.lex_state = 1153}, - [302] = {.lex_state = 1153}, - [303] = {.lex_state = 1166}, - [304] = {.lex_state = 1166}, - [305] = {.lex_state = 1166}, - [306] = {.lex_state = 1177}, - [307] = {.lex_state = 1168}, - [308] = {.lex_state = 1329}, - [309] = {.lex_state = 1331}, - [310] = {.lex_state = 1170}, - [311] = {.lex_state = 1170}, - [312] = {.lex_state = 1331}, - [313] = {.lex_state = 1331}, - [314] = {.lex_state = 1331}, - [315] = {.lex_state = 1331}, - [316] = {.lex_state = 1172}, - [317] = {.lex_state = 1172}, - [318] = {.lex_state = 1172}, - [319] = {.lex_state = 1172}, - [320] = {.lex_state = 43, .external_lex_state = 2}, - [321] = {.lex_state = 43, .external_lex_state = 2}, - [322] = {.lex_state = 43, .external_lex_state = 2}, - [323] = {.lex_state = 1179}, - [324] = {.lex_state = 1157}, - [325] = {.lex_state = 1179}, - [326] = {.lex_state = 1157}, - [327] = {.lex_state = 1335}, - [328] = {.lex_state = 1335}, - [329] = {.lex_state = 1335}, - [330] = {.lex_state = 1335}, - [331] = {.lex_state = 1181}, - [332] = {.lex_state = 1181}, - [333] = {.lex_state = 578}, - [334] = {.lex_state = 578}, - [335] = {.lex_state = 122}, - [336] = {.lex_state = 122}, - [337] = {.lex_state = 122}, - [338] = {.lex_state = 43, .external_lex_state = 2}, - [339] = {.lex_state = 122}, - [340] = {.lex_state = 122}, - [341] = {.lex_state = 122}, - [342] = {.lex_state = 578}, - [343] = {.lex_state = 578}, - [344] = {.lex_state = 578}, - [345] = {.lex_state = 578}, - [346] = {.lex_state = 578}, - [347] = {.lex_state = 43, .external_lex_state = 2}, - [348] = {.lex_state = 578}, - [349] = {.lex_state = 122}, - [350] = {.lex_state = 578}, - [351] = {.lex_state = 122}, - [352] = {.lex_state = 122}, - [353] = {.lex_state = 43, .external_lex_state = 2}, - [354] = {.lex_state = 43, .external_lex_state = 2}, - [355] = {.lex_state = 578}, - [356] = {.lex_state = 122}, - [357] = {.lex_state = 122}, - [358] = {.lex_state = 122}, - [359] = {.lex_state = 43, .external_lex_state = 2}, - [360] = {.lex_state = 43, .external_lex_state = 2}, - [361] = {.lex_state = 43, .external_lex_state = 2}, - [362] = {.lex_state = 43, .external_lex_state = 2}, - [363] = {.lex_state = 43, .external_lex_state = 2}, - [364] = {.lex_state = 43, .external_lex_state = 2}, - [365] = {.lex_state = 43, .external_lex_state = 2}, - [366] = {.lex_state = 122}, - [367] = {.lex_state = 122}, - [368] = {.lex_state = 578}, - [369] = {.lex_state = 122}, - [370] = {.lex_state = 43, .external_lex_state = 2}, - [371] = {.lex_state = 578}, - [372] = {.lex_state = 578}, - [373] = {.lex_state = 122}, - [374] = {.lex_state = 578}, - [375] = {.lex_state = 578}, - [376] = {.lex_state = 578}, - [377] = {.lex_state = 578}, - [378] = {.lex_state = 43, .external_lex_state = 2}, - [379] = {.lex_state = 578}, - [380] = {.lex_state = 43, .external_lex_state = 2}, - [381] = {.lex_state = 43, .external_lex_state = 2}, - [382] = {.lex_state = 43, .external_lex_state = 2}, - [383] = {.lex_state = 578}, - [384] = {.lex_state = 578}, - [385] = {.lex_state = 582}, - [386] = {.lex_state = 582}, - [387] = {.lex_state = 578}, - [388] = {.lex_state = 43, .external_lex_state = 2}, - [389] = {.lex_state = 582}, - [390] = {.lex_state = 578}, - [391] = {.lex_state = 43, .external_lex_state = 2}, - [392] = {.lex_state = 578}, - [393] = {.lex_state = 578}, - [394] = {.lex_state = 43, .external_lex_state = 2}, - [395] = {.lex_state = 43, .external_lex_state = 2}, - [396] = {.lex_state = 578}, - [397] = {.lex_state = 122}, - [398] = {.lex_state = 578}, - [399] = {.lex_state = 579}, - [400] = {.lex_state = 584}, - [401] = {.lex_state = 582}, - [402] = {.lex_state = 582}, - [403] = {.lex_state = 578}, - [404] = {.lex_state = 582}, - [405] = {.lex_state = 582}, - [406] = {.lex_state = 582}, - [407] = {.lex_state = 579}, - [408] = {.lex_state = 579}, - [409] = {.lex_state = 584}, - [410] = {.lex_state = 582}, - [411] = {.lex_state = 578}, - [412] = {.lex_state = 582}, - [413] = {.lex_state = 579}, + [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 = 579}, - [415] = {.lex_state = 579}, - [416] = {.lex_state = 579}, - [417] = {.lex_state = 582}, - [418] = {.lex_state = 586}, - [419] = {.lex_state = 578}, - [420] = {.lex_state = 590}, - [421] = {.lex_state = 578}, - [422] = {.lex_state = 584}, - [423] = {.lex_state = 582}, - [424] = {.lex_state = 579}, - [425] = {.lex_state = 578}, - [426] = {.lex_state = 579}, - [427] = {.lex_state = 578}, - [428] = {.lex_state = 579}, - [429] = {.lex_state = 579}, - [430] = {.lex_state = 584}, - [431] = {.lex_state = 579}, - [432] = {.lex_state = 579}, - [433] = {.lex_state = 578}, - [434] = {.lex_state = 590}, - [435] = {.lex_state = 579}, - [436] = {.lex_state = 592}, - [437] = {.lex_state = 582}, - [438] = {.lex_state = 582}, - [439] = {.lex_state = 592}, - [440] = {.lex_state = 578}, - [441] = {.lex_state = 578}, - [442] = {.lex_state = 596}, - [443] = {.lex_state = 578}, - [444] = {.lex_state = 588}, - [445] = {.lex_state = 578}, - [446] = {.lex_state = 582}, - [447] = {.lex_state = 582}, - [448] = {.lex_state = 579}, - [449] = {.lex_state = 582}, - [450] = {.lex_state = 586}, - [451] = {.lex_state = 594}, - [452] = {.lex_state = 579}, - [453] = {.lex_state = 582}, - [454] = {.lex_state = 579}, - [455] = {.lex_state = 598}, - [456] = {.lex_state = 39, .external_lex_state = 2}, - [457] = {.lex_state = 39, .external_lex_state = 2}, - [458] = {.lex_state = 39, .external_lex_state = 2}, - [459] = {.lex_state = 43, .external_lex_state = 2}, - [460] = {.lex_state = 594}, - [461] = {.lex_state = 39, .external_lex_state = 2}, - [462] = {.lex_state = 598}, - [463] = {.lex_state = 39, .external_lex_state = 2}, - [464] = {.lex_state = 594}, - [465] = {.lex_state = 592}, - [466] = {.lex_state = 594}, - [467] = {.lex_state = 594}, - [468] = {.lex_state = 592}, - [469] = {.lex_state = 39, .external_lex_state = 2}, - [470] = {.lex_state = 579}, - [471] = {.lex_state = 578}, - [472] = {.lex_state = 39, .external_lex_state = 2}, - [473] = {.lex_state = 39, .external_lex_state = 2}, - [474] = {.lex_state = 578}, - [475] = {.lex_state = 579}, - [476] = {.lex_state = 579}, - [477] = {.lex_state = 579}, - [478] = {.lex_state = 579}, - [479] = {.lex_state = 579}, - [480] = {.lex_state = 579}, - [481] = {.lex_state = 579}, - [482] = {.lex_state = 579}, - [483] = {.lex_state = 594}, - [484] = {.lex_state = 579}, - [485] = {.lex_state = 579}, - [486] = {.lex_state = 579}, - [487] = {.lex_state = 579}, - [488] = {.lex_state = 588}, - [489] = {.lex_state = 579}, - [490] = {.lex_state = 600}, - [491] = {.lex_state = 39, .external_lex_state = 2}, - [492] = {.lex_state = 600}, - [493] = {.lex_state = 594}, - [494] = {.lex_state = 579}, - [495] = {.lex_state = 579}, - [496] = {.lex_state = 596}, - [497] = {.lex_state = 600}, - [498] = {.lex_state = 579}, - [499] = {.lex_state = 579}, - [500] = {.lex_state = 579}, - [501] = {.lex_state = 579}, - [502] = {.lex_state = 579}, - [503] = {.lex_state = 594}, - [504] = {.lex_state = 40, .external_lex_state = 2}, - [505] = {.lex_state = 40, .external_lex_state = 2}, - [506] = {.lex_state = 40, .external_lex_state = 2}, - [507] = {.lex_state = 612}, - [508] = {.lex_state = 43, .external_lex_state = 2}, - [509] = {.lex_state = 43, .external_lex_state = 2}, - [510] = {.lex_state = 600}, - [511] = {.lex_state = 600}, - [512] = {.lex_state = 40, .external_lex_state = 2}, - [513] = {.lex_state = 40, .external_lex_state = 2}, - [514] = {.lex_state = 40, .external_lex_state = 2}, - [515] = {.lex_state = 43, .external_lex_state = 2}, - [516] = {.lex_state = 40, .external_lex_state = 2}, - [517] = {.lex_state = 40, .external_lex_state = 2}, - [518] = {.lex_state = 40, .external_lex_state = 2}, - [519] = {.lex_state = 40, .external_lex_state = 2}, - [520] = {.lex_state = 40, .external_lex_state = 2}, - [521] = {.lex_state = 40, .external_lex_state = 2}, - [522] = {.lex_state = 40, .external_lex_state = 2}, - [523] = {.lex_state = 40, .external_lex_state = 2}, - [524] = {.lex_state = 40, .external_lex_state = 2}, - [525] = {.lex_state = 40, .external_lex_state = 2}, - [526] = {.lex_state = 40, .external_lex_state = 2}, - [527] = {.lex_state = 40, .external_lex_state = 2}, - [528] = {.lex_state = 40, .external_lex_state = 2}, - [529] = {.lex_state = 39, .external_lex_state = 2}, - [530] = {.lex_state = 598}, - [531] = {.lex_state = 40, .external_lex_state = 2}, - [532] = {.lex_state = 579}, - [533] = {.lex_state = 579}, - [534] = {.lex_state = 40, .external_lex_state = 2}, - [535] = {.lex_state = 40, .external_lex_state = 2}, - [536] = {.lex_state = 40, .external_lex_state = 2}, - [537] = {.lex_state = 40, .external_lex_state = 2}, - [538] = {.lex_state = 40, .external_lex_state = 2}, - [539] = {.lex_state = 40, .external_lex_state = 2}, - [540] = {.lex_state = 40, .external_lex_state = 2}, - [541] = {.lex_state = 40, .external_lex_state = 2}, - [542] = {.lex_state = 40, .external_lex_state = 2}, - [543] = {.lex_state = 40, .external_lex_state = 2}, - [544] = {.lex_state = 40, .external_lex_state = 2}, - [545] = {.lex_state = 40, .external_lex_state = 2}, - [546] = {.lex_state = 40, .external_lex_state = 2}, - [547] = {.lex_state = 40, .external_lex_state = 2}, - [548] = {.lex_state = 40, .external_lex_state = 2}, - [549] = {.lex_state = 40, .external_lex_state = 2}, - [550] = {.lex_state = 40, .external_lex_state = 2}, - [551] = {.lex_state = 40, .external_lex_state = 2}, - [552] = {.lex_state = 40, .external_lex_state = 2}, - [553] = {.lex_state = 40, .external_lex_state = 2}, - [554] = {.lex_state = 40, .external_lex_state = 2}, - [555] = {.lex_state = 40, .external_lex_state = 2}, - [556] = {.lex_state = 40, .external_lex_state = 2}, - [557] = {.lex_state = 40, .external_lex_state = 2}, - [558] = {.lex_state = 40, .external_lex_state = 2}, - [559] = {.lex_state = 40, .external_lex_state = 2}, - [560] = {.lex_state = 40, .external_lex_state = 2}, - [561] = {.lex_state = 40, .external_lex_state = 2}, - [562] = {.lex_state = 40, .external_lex_state = 2}, - [563] = {.lex_state = 40, .external_lex_state = 2}, - [564] = {.lex_state = 40, .external_lex_state = 2}, - [565] = {.lex_state = 40, .external_lex_state = 2}, - [566] = {.lex_state = 40, .external_lex_state = 2}, - [567] = {.lex_state = 40, .external_lex_state = 2}, - [568] = {.lex_state = 40, .external_lex_state = 2}, - [569] = {.lex_state = 40, .external_lex_state = 2}, - [570] = {.lex_state = 40, .external_lex_state = 2}, - [571] = {.lex_state = 40, .external_lex_state = 2}, - [572] = {.lex_state = 40, .external_lex_state = 2}, - [573] = {.lex_state = 40, .external_lex_state = 2}, - [574] = {.lex_state = 40, .external_lex_state = 2}, - [575] = {.lex_state = 40, .external_lex_state = 2}, - [576] = {.lex_state = 40, .external_lex_state = 2}, - [577] = {.lex_state = 40, .external_lex_state = 2}, - [578] = {.lex_state = 40, .external_lex_state = 2}, - [579] = {.lex_state = 40, .external_lex_state = 2}, - [580] = {.lex_state = 40, .external_lex_state = 2}, - [581] = {.lex_state = 40, .external_lex_state = 2}, - [582] = {.lex_state = 40, .external_lex_state = 2}, - [583] = {.lex_state = 40, .external_lex_state = 2}, - [584] = {.lex_state = 40, .external_lex_state = 2}, - [585] = {.lex_state = 40, .external_lex_state = 2}, - [586] = {.lex_state = 598}, - [587] = {.lex_state = 40, .external_lex_state = 2}, - [588] = {.lex_state = 40, .external_lex_state = 2}, - [589] = {.lex_state = 40, .external_lex_state = 2}, - [590] = {.lex_state = 40, .external_lex_state = 2}, - [591] = {.lex_state = 40, .external_lex_state = 2}, - [592] = {.lex_state = 40, .external_lex_state = 2}, - [593] = {.lex_state = 40, .external_lex_state = 2}, - [594] = {.lex_state = 40, .external_lex_state = 2}, - [595] = {.lex_state = 40, .external_lex_state = 2}, - [596] = {.lex_state = 40, .external_lex_state = 2}, - [597] = {.lex_state = 40, .external_lex_state = 2}, - [598] = {.lex_state = 40, .external_lex_state = 2}, - [599] = {.lex_state = 40, .external_lex_state = 2}, - [600] = {.lex_state = 40, .external_lex_state = 2}, - [601] = {.lex_state = 40, .external_lex_state = 2}, - [602] = {.lex_state = 40, .external_lex_state = 2}, - [603] = {.lex_state = 40, .external_lex_state = 2}, - [604] = {.lex_state = 40, .external_lex_state = 2}, - [605] = {.lex_state = 40, .external_lex_state = 2}, - [606] = {.lex_state = 40, .external_lex_state = 2}, - [607] = {.lex_state = 40, .external_lex_state = 2}, - [608] = {.lex_state = 40, .external_lex_state = 2}, - [609] = {.lex_state = 40, .external_lex_state = 2}, - [610] = {.lex_state = 40, .external_lex_state = 2}, - [611] = {.lex_state = 40, .external_lex_state = 2}, - [612] = {.lex_state = 40, .external_lex_state = 2}, - [613] = {.lex_state = 40, .external_lex_state = 2}, - [614] = {.lex_state = 40, .external_lex_state = 2}, - [615] = {.lex_state = 40, .external_lex_state = 2}, - [616] = {.lex_state = 40, .external_lex_state = 2}, - [617] = {.lex_state = 40, .external_lex_state = 2}, - [618] = {.lex_state = 40, .external_lex_state = 2}, - [619] = {.lex_state = 40, .external_lex_state = 2}, - [620] = {.lex_state = 40, .external_lex_state = 2}, - [621] = {.lex_state = 40, .external_lex_state = 2}, - [622] = {.lex_state = 40, .external_lex_state = 2}, - [623] = {.lex_state = 40, .external_lex_state = 2}, - [624] = {.lex_state = 40, .external_lex_state = 2}, - [625] = {.lex_state = 40, .external_lex_state = 2}, - [626] = {.lex_state = 40, .external_lex_state = 2}, - [627] = {.lex_state = 40, .external_lex_state = 2}, - [628] = {.lex_state = 40, .external_lex_state = 2}, - [629] = {.lex_state = 40, .external_lex_state = 2}, - [630] = {.lex_state = 40, .external_lex_state = 2}, - [631] = {.lex_state = 40, .external_lex_state = 2}, - [632] = {.lex_state = 40, .external_lex_state = 2}, - [633] = {.lex_state = 40, .external_lex_state = 2}, - [634] = {.lex_state = 40, .external_lex_state = 2}, - [635] = {.lex_state = 40, .external_lex_state = 2}, - [636] = {.lex_state = 40, .external_lex_state = 2}, - [637] = {.lex_state = 40, .external_lex_state = 2}, - [638] = {.lex_state = 40, .external_lex_state = 2}, - [639] = {.lex_state = 40, .external_lex_state = 2}, - [640] = {.lex_state = 40, .external_lex_state = 2}, - [641] = {.lex_state = 40, .external_lex_state = 2}, - [642] = {.lex_state = 39, .external_lex_state = 2}, - [643] = {.lex_state = 40, .external_lex_state = 2}, - [644] = {.lex_state = 40, .external_lex_state = 2}, - [645] = {.lex_state = 40, .external_lex_state = 2}, - [646] = {.lex_state = 40, .external_lex_state = 2}, - [647] = {.lex_state = 40, .external_lex_state = 2}, - [648] = {.lex_state = 40, .external_lex_state = 2}, - [649] = {.lex_state = 40, .external_lex_state = 2}, - [650] = {.lex_state = 40, .external_lex_state = 2}, - [651] = {.lex_state = 40, .external_lex_state = 2}, - [652] = {.lex_state = 40, .external_lex_state = 2}, - [653] = {.lex_state = 40, .external_lex_state = 2}, - [654] = {.lex_state = 40, .external_lex_state = 2}, - [655] = {.lex_state = 40, .external_lex_state = 2}, - [656] = {.lex_state = 40, .external_lex_state = 2}, - [657] = {.lex_state = 40, .external_lex_state = 2}, - [658] = {.lex_state = 40, .external_lex_state = 2}, - [659] = {.lex_state = 40, .external_lex_state = 2}, - [660] = {.lex_state = 40, .external_lex_state = 2}, - [661] = {.lex_state = 40, .external_lex_state = 2}, - [662] = {.lex_state = 40, .external_lex_state = 2}, - [663] = {.lex_state = 40, .external_lex_state = 2}, - [664] = {.lex_state = 40, .external_lex_state = 2}, - [665] = {.lex_state = 40, .external_lex_state = 2}, - [666] = {.lex_state = 40, .external_lex_state = 2}, - [667] = {.lex_state = 40, .external_lex_state = 2}, - [668] = {.lex_state = 40, .external_lex_state = 2}, - [669] = {.lex_state = 40, .external_lex_state = 2}, - [670] = {.lex_state = 40, .external_lex_state = 2}, - [671] = {.lex_state = 40, .external_lex_state = 2}, - [672] = {.lex_state = 579}, - [673] = {.lex_state = 600}, - [674] = {.lex_state = 579}, - [675] = {.lex_state = 600}, - [676] = {.lex_state = 579}, - [677] = {.lex_state = 579}, - [678] = {.lex_state = 579}, - [679] = {.lex_state = 579}, - [680] = {.lex_state = 579}, - [681] = {.lex_state = 602}, - [682] = {.lex_state = 579}, - [683] = {.lex_state = 579}, - [684] = {.lex_state = 579}, - [685] = {.lex_state = 579}, - [686] = {.lex_state = 579}, - [687] = {.lex_state = 579}, - [688] = {.lex_state = 579}, - [689] = {.lex_state = 579}, - [690] = {.lex_state = 579}, - [691] = {.lex_state = 579}, - [692] = {.lex_state = 600}, - [693] = {.lex_state = 579}, - [694] = {.lex_state = 579}, - [695] = {.lex_state = 579}, - [696] = {.lex_state = 612}, - [697] = {.lex_state = 579}, - [698] = {.lex_state = 579}, - [699] = {.lex_state = 600}, - [700] = {.lex_state = 579}, - [701] = {.lex_state = 600}, - [702] = {.lex_state = 579}, - [703] = {.lex_state = 579}, - [704] = {.lex_state = 579}, - [705] = {.lex_state = 579}, - [706] = {.lex_state = 604}, - [707] = {.lex_state = 579}, - [708] = {.lex_state = 579}, - [709] = {.lex_state = 579}, - [710] = {.lex_state = 579}, - [711] = {.lex_state = 579}, - [712] = {.lex_state = 579}, - [713] = {.lex_state = 40, .external_lex_state = 2}, - [714] = {.lex_state = 40, .external_lex_state = 2}, - [715] = {.lex_state = 606}, - [716] = {.lex_state = 604}, - [717] = {.lex_state = 579}, - [718] = {.lex_state = 579}, - [719] = {.lex_state = 40, .external_lex_state = 2}, - [720] = {.lex_state = 40, .external_lex_state = 2}, - [721] = {.lex_state = 40, .external_lex_state = 2}, - [722] = {.lex_state = 579}, - [723] = {.lex_state = 579}, - [724] = {.lex_state = 579}, - [725] = {.lex_state = 579}, - [726] = {.lex_state = 579}, - [727] = {.lex_state = 40, .external_lex_state = 2}, - [728] = {.lex_state = 579}, - [729] = {.lex_state = 579}, - [730] = {.lex_state = 579}, - [731] = {.lex_state = 579}, - [732] = {.lex_state = 579}, - [733] = {.lex_state = 579}, - [734] = {.lex_state = 40, .external_lex_state = 2}, - [735] = {.lex_state = 40, .external_lex_state = 2}, - [736] = {.lex_state = 40, .external_lex_state = 2}, - [737] = {.lex_state = 40, .external_lex_state = 2}, - [738] = {.lex_state = 40, .external_lex_state = 2}, - [739] = {.lex_state = 40, .external_lex_state = 2}, - [740] = {.lex_state = 40, .external_lex_state = 2}, - [741] = {.lex_state = 40, .external_lex_state = 2}, - [742] = {.lex_state = 40, .external_lex_state = 2}, - [743] = {.lex_state = 40, .external_lex_state = 2}, - [744] = {.lex_state = 40, .external_lex_state = 2}, - [745] = {.lex_state = 40, .external_lex_state = 2}, - [746] = {.lex_state = 40, .external_lex_state = 2}, - [747] = {.lex_state = 40, .external_lex_state = 2}, - [748] = {.lex_state = 40, .external_lex_state = 2}, - [749] = {.lex_state = 40, .external_lex_state = 2}, - [750] = {.lex_state = 40, .external_lex_state = 2}, - [751] = {.lex_state = 40, .external_lex_state = 2}, - [752] = {.lex_state = 40, .external_lex_state = 2}, - [753] = {.lex_state = 40, .external_lex_state = 2}, - [754] = {.lex_state = 40, .external_lex_state = 2}, - [755] = {.lex_state = 40, .external_lex_state = 2}, - [756] = {.lex_state = 40, .external_lex_state = 2}, - [757] = {.lex_state = 40, .external_lex_state = 2}, - [758] = {.lex_state = 40, .external_lex_state = 2}, - [759] = {.lex_state = 40, .external_lex_state = 2}, - [760] = {.lex_state = 40, .external_lex_state = 2}, - [761] = {.lex_state = 40, .external_lex_state = 2}, - [762] = {.lex_state = 579}, - [763] = {.lex_state = 579}, - [764] = {.lex_state = 579}, - [765] = {.lex_state = 625, .external_lex_state = 2}, - [766] = {.lex_state = 579}, - [767] = {.lex_state = 579}, - [768] = {.lex_state = 579}, - [769] = {.lex_state = 579}, - [770] = {.lex_state = 579}, - [771] = {.lex_state = 579}, - [772] = {.lex_state = 579}, - [773] = {.lex_state = 579}, - [774] = {.lex_state = 579}, - [775] = {.lex_state = 579}, - [776] = {.lex_state = 579}, - [777] = {.lex_state = 579}, - [778] = {.lex_state = 40, .external_lex_state = 2}, - [779] = {.lex_state = 579}, - [780] = {.lex_state = 579}, - [781] = {.lex_state = 40, .external_lex_state = 2}, - [782] = {.lex_state = 40, .external_lex_state = 2}, - [783] = {.lex_state = 39, .external_lex_state = 2}, - [784] = {.lex_state = 579}, - [785] = {.lex_state = 39, .external_lex_state = 2}, - [786] = {.lex_state = 579}, - [787] = {.lex_state = 579}, - [788] = {.lex_state = 625, .external_lex_state = 2}, - [789] = {.lex_state = 579}, - [790] = {.lex_state = 579}, - [791] = {.lex_state = 579}, - [792] = {.lex_state = 579}, - [793] = {.lex_state = 579}, - [794] = {.lex_state = 40, .external_lex_state = 2}, - [795] = {.lex_state = 579}, - [796] = {.lex_state = 579}, - [797] = {.lex_state = 579}, - [798] = {.lex_state = 40, .external_lex_state = 2}, - [799] = {.lex_state = 579}, - [800] = {.lex_state = 579}, - [801] = {.lex_state = 40, .external_lex_state = 2}, - [802] = {.lex_state = 40, .external_lex_state = 2}, - [803] = {.lex_state = 40, .external_lex_state = 2}, - [804] = {.lex_state = 40, .external_lex_state = 2}, - [805] = {.lex_state = 40, .external_lex_state = 2}, - [806] = {.lex_state = 40, .external_lex_state = 2}, - [807] = {.lex_state = 40, .external_lex_state = 2}, - [808] = {.lex_state = 40, .external_lex_state = 2}, - [809] = {.lex_state = 40, .external_lex_state = 2}, - [810] = {.lex_state = 40, .external_lex_state = 2}, - [811] = {.lex_state = 579}, - [812] = {.lex_state = 579}, - [813] = {.lex_state = 579}, - [814] = {.lex_state = 579}, - [815] = {.lex_state = 579}, - [816] = {.lex_state = 579}, - [817] = {.lex_state = 40, .external_lex_state = 2}, - [818] = {.lex_state = 579}, - [819] = {.lex_state = 579}, - [820] = {.lex_state = 579}, - [821] = {.lex_state = 579}, - [822] = {.lex_state = 579}, - [823] = {.lex_state = 579}, - [824] = {.lex_state = 579}, - [825] = {.lex_state = 40, .external_lex_state = 2}, - [826] = {.lex_state = 579}, - [827] = {.lex_state = 40, .external_lex_state = 2}, - [828] = {.lex_state = 579}, - [829] = {.lex_state = 579}, - [830] = {.lex_state = 579}, - [831] = {.lex_state = 579}, - [832] = {.lex_state = 579}, - [833] = {.lex_state = 40, .external_lex_state = 2}, - [834] = {.lex_state = 579}, - [835] = {.lex_state = 40, .external_lex_state = 2}, - [836] = {.lex_state = 40, .external_lex_state = 2}, - [837] = {.lex_state = 40, .external_lex_state = 2}, - [838] = {.lex_state = 40, .external_lex_state = 2}, - [839] = {.lex_state = 40, .external_lex_state = 2}, - [840] = {.lex_state = 40, .external_lex_state = 2}, - [841] = {.lex_state = 40, .external_lex_state = 2}, - [842] = {.lex_state = 40, .external_lex_state = 2}, - [843] = {.lex_state = 40, .external_lex_state = 2}, - [844] = {.lex_state = 40, .external_lex_state = 2}, - [845] = {.lex_state = 40, .external_lex_state = 2}, - [846] = {.lex_state = 40, .external_lex_state = 2}, - [847] = {.lex_state = 40, .external_lex_state = 2}, - [848] = {.lex_state = 40, .external_lex_state = 2}, - [849] = {.lex_state = 40, .external_lex_state = 2}, - [850] = {.lex_state = 39, .external_lex_state = 2}, - [851] = {.lex_state = 579}, - [852] = {.lex_state = 579}, - [853] = {.lex_state = 579}, - [854] = {.lex_state = 625, .external_lex_state = 2}, - [855] = {.lex_state = 579}, - [856] = {.lex_state = 579}, - [857] = {.lex_state = 40, .external_lex_state = 2}, - [858] = {.lex_state = 579}, - [859] = {.lex_state = 40, .external_lex_state = 2}, - [860] = {.lex_state = 579}, - [861] = {.lex_state = 579}, - [862] = {.lex_state = 579}, - [863] = {.lex_state = 40, .external_lex_state = 2}, - [864] = {.lex_state = 579}, - [865] = {.lex_state = 40, .external_lex_state = 2}, - [866] = {.lex_state = 579}, - [867] = {.lex_state = 579}, - [868] = {.lex_state = 579}, - [869] = {.lex_state = 579}, - [870] = {.lex_state = 579}, - [871] = {.lex_state = 39, .external_lex_state = 2}, - [872] = {.lex_state = 579}, - [873] = {.lex_state = 612}, - [874] = {.lex_state = 39, .external_lex_state = 2}, - [875] = {.lex_state = 579}, - [876] = {.lex_state = 579}, - [877] = {.lex_state = 40, .external_lex_state = 2}, - [878] = {.lex_state = 579}, - [879] = {.lex_state = 602}, - [880] = {.lex_state = 40, .external_lex_state = 2}, - [881] = {.lex_state = 40, .external_lex_state = 2}, - [882] = {.lex_state = 40, .external_lex_state = 2}, - [883] = {.lex_state = 579}, - [884] = {.lex_state = 579}, - [885] = {.lex_state = 40, .external_lex_state = 2}, - [886] = {.lex_state = 579}, - [887] = {.lex_state = 40, .external_lex_state = 2}, - [888] = {.lex_state = 579}, - [889] = {.lex_state = 39, .external_lex_state = 2}, - [890] = {.lex_state = 608}, - [891] = {.lex_state = 606}, - [892] = {.lex_state = 579}, - [893] = {.lex_state = 579}, - [894] = {.lex_state = 579}, - [895] = {.lex_state = 579}, - [896] = {.lex_state = 579}, - [897] = {.lex_state = 579}, - [898] = {.lex_state = 608}, - [899] = {.lex_state = 579}, - [900] = {.lex_state = 625, .external_lex_state = 2}, - [901] = {.lex_state = 579}, - [902] = {.lex_state = 608}, - [903] = {.lex_state = 579}, - [904] = {.lex_state = 579}, - [905] = {.lex_state = 579}, - [906] = {.lex_state = 579}, - [907] = {.lex_state = 579}, - [908] = {.lex_state = 579}, - [909] = {.lex_state = 606}, - [910] = {.lex_state = 579}, - [911] = {.lex_state = 579}, - [912] = {.lex_state = 579}, - [913] = {.lex_state = 625, .external_lex_state = 2}, - [914] = {.lex_state = 579}, - [915] = {.lex_state = 579}, - [916] = {.lex_state = 579}, - [917] = {.lex_state = 579}, - [918] = {.lex_state = 608}, - [919] = {.lex_state = 608}, - [920] = {.lex_state = 579}, - [921] = {.lex_state = 579}, - [922] = {.lex_state = 608}, - [923] = {.lex_state = 608}, - [924] = {.lex_state = 579}, - [925] = {.lex_state = 608}, - [926] = {.lex_state = 579}, - [927] = {.lex_state = 579}, - [928] = {.lex_state = 579}, - [929] = {.lex_state = 579}, - [930] = {.lex_state = 579}, - [931] = {.lex_state = 579}, - [932] = {.lex_state = 579}, - [933] = {.lex_state = 579}, - [934] = {.lex_state = 579}, - [935] = {.lex_state = 608}, - [936] = {.lex_state = 579}, - [937] = {.lex_state = 579}, - [938] = {.lex_state = 579}, - [939] = {.lex_state = 579}, - [940] = {.lex_state = 579}, - [941] = {.lex_state = 606}, - [942] = {.lex_state = 579}, - [943] = {.lex_state = 579}, - [944] = {.lex_state = 608}, - [945] = {.lex_state = 579}, - [946] = {.lex_state = 579}, - [947] = {.lex_state = 579}, - [948] = {.lex_state = 608}, - [949] = {.lex_state = 579}, - [950] = {.lex_state = 49, .external_lex_state = 2}, - [951] = {.lex_state = 49, .external_lex_state = 2}, - [952] = {.lex_state = 579}, - [953] = {.lex_state = 579}, - [954] = {.lex_state = 579}, - [955] = {.lex_state = 579}, - [956] = {.lex_state = 579}, - [957] = {.lex_state = 579}, - [958] = {.lex_state = 579}, - [959] = {.lex_state = 579}, - [960] = {.lex_state = 608}, - [961] = {.lex_state = 608}, - [962] = {.lex_state = 579}, - [963] = {.lex_state = 49, .external_lex_state = 2}, - [964] = {.lex_state = 579}, - [965] = {.lex_state = 579}, - [966] = {.lex_state = 579}, - [967] = {.lex_state = 579}, - [968] = {.lex_state = 579}, - [969] = {.lex_state = 579}, - [970] = {.lex_state = 40, .external_lex_state = 2}, - [971] = {.lex_state = 579}, - [972] = {.lex_state = 608}, - [973] = {.lex_state = 608}, - [974] = {.lex_state = 608}, - [975] = {.lex_state = 579}, - [976] = {.lex_state = 40, .external_lex_state = 2}, - [977] = {.lex_state = 579}, - [978] = {.lex_state = 579}, - [979] = {.lex_state = 608}, - [980] = {.lex_state = 40, .external_lex_state = 2}, - [981] = {.lex_state = 579}, - [982] = {.lex_state = 608}, - [983] = {.lex_state = 608}, - [984] = {.lex_state = 579}, - [985] = {.lex_state = 579}, - [986] = {.lex_state = 579}, - [987] = {.lex_state = 608}, - [988] = {.lex_state = 579}, - [989] = {.lex_state = 608}, - [990] = {.lex_state = 579}, - [991] = {.lex_state = 579}, - [992] = {.lex_state = 579}, - [993] = {.lex_state = 608}, - [994] = {.lex_state = 608}, - [995] = {.lex_state = 579}, - [996] = {.lex_state = 579}, - [997] = {.lex_state = 579}, - [998] = {.lex_state = 579}, - [999] = {.lex_state = 579}, - [1000] = {.lex_state = 579}, - [1001] = {.lex_state = 579}, - [1002] = {.lex_state = 579}, - [1003] = {.lex_state = 579}, - [1004] = {.lex_state = 579}, - [1005] = {.lex_state = 625, .external_lex_state = 2}, - [1006] = {.lex_state = 579}, - [1007] = {.lex_state = 625, .external_lex_state = 2}, - [1008] = {.lex_state = 579}, - [1009] = {.lex_state = 579}, - [1010] = {.lex_state = 625, .external_lex_state = 2}, - [1011] = {.lex_state = 623, .external_lex_state = 2}, - [1012] = {.lex_state = 579}, - [1013] = {.lex_state = 579}, - [1014] = {.lex_state = 579}, - [1015] = {.lex_state = 608}, - [1016] = {.lex_state = 579}, - [1017] = {.lex_state = 579}, - [1018] = {.lex_state = 579}, - [1019] = {.lex_state = 579}, - [1020] = {.lex_state = 579}, - [1021] = {.lex_state = 579}, - [1022] = {.lex_state = 608}, - [1023] = {.lex_state = 579}, - [1024] = {.lex_state = 608}, - [1025] = {.lex_state = 579}, - [1026] = {.lex_state = 579}, - [1027] = {.lex_state = 608}, - [1028] = {.lex_state = 579}, - [1029] = {.lex_state = 579}, - [1030] = {.lex_state = 579}, - [1031] = {.lex_state = 579}, - [1032] = {.lex_state = 579}, - [1033] = {.lex_state = 579}, - [1034] = {.lex_state = 579}, - [1035] = {.lex_state = 579}, - [1036] = {.lex_state = 579}, - [1037] = {.lex_state = 579}, - [1038] = {.lex_state = 579}, - [1039] = {.lex_state = 579}, - [1040] = {.lex_state = 579}, - [1041] = {.lex_state = 579}, - [1042] = {.lex_state = 579}, - [1043] = {.lex_state = 579}, - [1044] = {.lex_state = 579}, - [1045] = {.lex_state = 579}, - [1046] = {.lex_state = 579}, - [1047] = {.lex_state = 579}, - [1048] = {.lex_state = 579}, - [1049] = {.lex_state = 579}, - [1050] = {.lex_state = 579}, - [1051] = {.lex_state = 579}, - [1052] = {.lex_state = 579}, - [1053] = {.lex_state = 579}, - [1054] = {.lex_state = 579}, - [1055] = {.lex_state = 579}, - [1056] = {.lex_state = 579}, - [1057] = {.lex_state = 579}, - [1058] = {.lex_state = 579}, - [1059] = {.lex_state = 579}, - [1060] = {.lex_state = 579}, - [1061] = {.lex_state = 579}, - [1062] = {.lex_state = 579}, - [1063] = {.lex_state = 579}, - [1064] = {.lex_state = 579}, - [1065] = {.lex_state = 579}, - [1066] = {.lex_state = 579}, - [1067] = {.lex_state = 579}, - [1068] = {.lex_state = 579}, - [1069] = {.lex_state = 579}, - [1070] = {.lex_state = 579}, - [1071] = {.lex_state = 579}, - [1072] = {.lex_state = 579}, - [1073] = {.lex_state = 579}, - [1074] = {.lex_state = 579}, - [1075] = {.lex_state = 579}, - [1076] = {.lex_state = 579}, - [1077] = {.lex_state = 579}, - [1078] = {.lex_state = 46, .external_lex_state = 2}, - [1079] = {.lex_state = 49, .external_lex_state = 2}, - [1080] = {.lex_state = 579}, - [1081] = {.lex_state = 579}, - [1082] = {.lex_state = 579}, - [1083] = {.lex_state = 579}, - [1084] = {.lex_state = 579}, - [1085] = {.lex_state = 579}, - [1086] = {.lex_state = 579}, - [1087] = {.lex_state = 579}, - [1088] = {.lex_state = 579}, - [1089] = {.lex_state = 579}, - [1090] = {.lex_state = 579}, - [1091] = {.lex_state = 579}, - [1092] = {.lex_state = 579}, - [1093] = {.lex_state = 579}, - [1094] = {.lex_state = 49, .external_lex_state = 2}, - [1095] = {.lex_state = 610}, - [1096] = {.lex_state = 610}, - [1097] = {.lex_state = 610}, - [1098] = {.lex_state = 610}, - [1099] = {.lex_state = 46, .external_lex_state = 2}, - [1100] = {.lex_state = 612}, - [1101] = {.lex_state = 579}, - [1102] = {.lex_state = 579}, - [1103] = {.lex_state = 579}, - [1104] = {.lex_state = 579}, - [1105] = {.lex_state = 579}, - [1106] = {.lex_state = 579}, - [1107] = {.lex_state = 579}, - [1108] = {.lex_state = 623, .external_lex_state = 2}, - [1109] = {.lex_state = 579}, - [1110] = {.lex_state = 579}, - [1111] = {.lex_state = 579}, - [1112] = {.lex_state = 40, .external_lex_state = 2}, - [1113] = {.lex_state = 40, .external_lex_state = 2}, - [1114] = {.lex_state = 40, .external_lex_state = 2}, - [1115] = {.lex_state = 579}, - [1116] = {.lex_state = 579}, - [1117] = {.lex_state = 579}, - [1118] = {.lex_state = 579}, - [1119] = {.lex_state = 625, .external_lex_state = 2}, - [1120] = {.lex_state = 579}, - [1121] = {.lex_state = 579}, - [1122] = {.lex_state = 579}, - [1123] = {.lex_state = 579}, - [1124] = {.lex_state = 579}, - [1125] = {.lex_state = 579}, - [1126] = {.lex_state = 46, .external_lex_state = 2}, - [1127] = {.lex_state = 579}, - [1128] = {.lex_state = 579}, - [1129] = {.lex_state = 623, .external_lex_state = 2}, - [1130] = {.lex_state = 579}, - [1131] = {.lex_state = 579}, - [1132] = {.lex_state = 49, .external_lex_state = 2}, - [1133] = {.lex_state = 49, .external_lex_state = 2}, - [1134] = {.lex_state = 579}, - [1135] = {.lex_state = 579}, - [1136] = {.lex_state = 579}, - [1137] = {.lex_state = 579}, - [1138] = {.lex_state = 579}, - [1139] = {.lex_state = 579}, - [1140] = {.lex_state = 579}, - [1141] = {.lex_state = 579}, - [1142] = {.lex_state = 579}, - [1143] = {.lex_state = 579}, - [1144] = {.lex_state = 579}, - [1145] = {.lex_state = 579}, - [1146] = {.lex_state = 579}, - [1147] = {.lex_state = 579}, - [1148] = {.lex_state = 579}, - [1149] = {.lex_state = 579}, - [1150] = {.lex_state = 579}, - [1151] = {.lex_state = 579}, - [1152] = {.lex_state = 579}, - [1153] = {.lex_state = 579}, - [1154] = {.lex_state = 579}, - [1155] = {.lex_state = 579}, - [1156] = {.lex_state = 579}, - [1157] = {.lex_state = 45, .external_lex_state = 2}, - [1158] = {.lex_state = 45, .external_lex_state = 2}, - [1159] = {.lex_state = 579}, - [1160] = {.lex_state = 579}, - [1161] = {.lex_state = 579}, - [1162] = {.lex_state = 579}, - [1163] = {.lex_state = 579}, - [1164] = {.lex_state = 579}, - [1165] = {.lex_state = 579}, - [1166] = {.lex_state = 579}, - [1167] = {.lex_state = 579}, - [1168] = {.lex_state = 579}, - [1169] = {.lex_state = 579}, - [1170] = {.lex_state = 579}, - [1171] = {.lex_state = 579}, - [1172] = {.lex_state = 579}, - [1173] = {.lex_state = 579}, - [1174] = {.lex_state = 579}, - [1175] = {.lex_state = 579}, - [1176] = {.lex_state = 579}, - [1177] = {.lex_state = 579}, - [1178] = {.lex_state = 579}, - [1179] = {.lex_state = 579}, - [1180] = {.lex_state = 579}, - [1181] = {.lex_state = 579}, - [1182] = {.lex_state = 579}, - [1183] = {.lex_state = 579}, - [1184] = {.lex_state = 579}, - [1185] = {.lex_state = 579}, - [1186] = {.lex_state = 579}, - [1187] = {.lex_state = 579}, - [1188] = {.lex_state = 579}, - [1189] = {.lex_state = 579}, - [1190] = {.lex_state = 579}, - [1191] = {.lex_state = 579}, - [1192] = {.lex_state = 579}, - [1193] = {.lex_state = 579}, - [1194] = {.lex_state = 579}, - [1195] = {.lex_state = 579}, - [1196] = {.lex_state = 610}, - [1197] = {.lex_state = 610}, - [1198] = {.lex_state = 579}, - [1199] = {.lex_state = 31, .external_lex_state = 2}, - [1200] = {.lex_state = 579}, - [1201] = {.lex_state = 579}, - [1202] = {.lex_state = 579}, - [1203] = {.lex_state = 579}, - [1204] = {.lex_state = 579}, - [1205] = {.lex_state = 579}, - [1206] = {.lex_state = 579}, - [1207] = {.lex_state = 579}, - [1208] = {.lex_state = 45, .external_lex_state = 2}, - [1209] = {.lex_state = 579}, - [1210] = {.lex_state = 45, .external_lex_state = 2}, - [1211] = {.lex_state = 579}, - [1212] = {.lex_state = 579}, - [1213] = {.lex_state = 579}, - [1214] = {.lex_state = 579}, - [1215] = {.lex_state = 579}, - [1216] = {.lex_state = 579}, - [1217] = {.lex_state = 579}, - [1218] = {.lex_state = 579}, - [1219] = {.lex_state = 579}, - [1220] = {.lex_state = 579}, - [1221] = {.lex_state = 579}, - [1222] = {.lex_state = 579}, - [1223] = {.lex_state = 579}, - [1224] = {.lex_state = 579}, - [1225] = {.lex_state = 579}, - [1226] = {.lex_state = 579}, - [1227] = {.lex_state = 579}, - [1228] = {.lex_state = 579}, - [1229] = {.lex_state = 579}, - [1230] = {.lex_state = 579}, - [1231] = {.lex_state = 579}, - [1232] = {.lex_state = 49, .external_lex_state = 2}, - [1233] = {.lex_state = 579}, - [1234] = {.lex_state = 579}, - [1235] = {.lex_state = 579}, - [1236] = {.lex_state = 579}, - [1237] = {.lex_state = 579}, - [1238] = {.lex_state = 49, .external_lex_state = 2}, - [1239] = {.lex_state = 579}, - [1240] = {.lex_state = 579}, - [1241] = {.lex_state = 579}, - [1242] = {.lex_state = 579}, - [1243] = {.lex_state = 579}, - [1244] = {.lex_state = 579}, - [1245] = {.lex_state = 610}, - [1246] = {.lex_state = 608}, - [1247] = {.lex_state = 610}, - [1248] = {.lex_state = 610}, - [1249] = {.lex_state = 579}, - [1250] = {.lex_state = 579}, - [1251] = {.lex_state = 579}, - [1252] = {.lex_state = 579}, - [1253] = {.lex_state = 579}, - [1254] = {.lex_state = 579}, - [1255] = {.lex_state = 579}, - [1256] = {.lex_state = 579}, - [1257] = {.lex_state = 49, .external_lex_state = 2}, - [1258] = {.lex_state = 49, .external_lex_state = 2}, - [1259] = {.lex_state = 49, .external_lex_state = 2}, - [1260] = {.lex_state = 579}, - [1261] = {.lex_state = 579}, - [1262] = {.lex_state = 579}, - [1263] = {.lex_state = 579}, - [1264] = {.lex_state = 579}, - [1265] = {.lex_state = 579}, - [1266] = {.lex_state = 579}, - [1267] = {.lex_state = 579}, - [1268] = {.lex_state = 579}, - [1269] = {.lex_state = 579}, - [1270] = {.lex_state = 579}, - [1271] = {.lex_state = 579}, - [1272] = {.lex_state = 579}, - [1273] = {.lex_state = 579}, - [1274] = {.lex_state = 579}, - [1275] = {.lex_state = 579}, - [1276] = {.lex_state = 579}, - [1277] = {.lex_state = 579}, - [1278] = {.lex_state = 579}, - [1279] = {.lex_state = 579}, - [1280] = {.lex_state = 579}, - [1281] = {.lex_state = 579}, - [1282] = {.lex_state = 579}, - [1283] = {.lex_state = 579}, - [1284] = {.lex_state = 579}, - [1285] = {.lex_state = 579}, - [1286] = {.lex_state = 579}, - [1287] = {.lex_state = 44, .external_lex_state = 2}, - [1288] = {.lex_state = 579}, - [1289] = {.lex_state = 44, .external_lex_state = 2}, - [1290] = {.lex_state = 579}, - [1291] = {.lex_state = 579}, - [1292] = {.lex_state = 579}, - [1293] = {.lex_state = 44, .external_lex_state = 2}, - [1294] = {.lex_state = 579}, - [1295] = {.lex_state = 579}, - [1296] = {.lex_state = 579}, - [1297] = {.lex_state = 579}, - [1298] = {.lex_state = 579}, - [1299] = {.lex_state = 579}, - [1300] = {.lex_state = 579}, - [1301] = {.lex_state = 579}, - [1302] = {.lex_state = 579}, - [1303] = {.lex_state = 579}, - [1304] = {.lex_state = 579}, - [1305] = {.lex_state = 579}, - [1306] = {.lex_state = 579}, - [1307] = {.lex_state = 579}, - [1308] = {.lex_state = 623, .external_lex_state = 2}, - [1309] = {.lex_state = 579}, - [1310] = {.lex_state = 579}, - [1311] = {.lex_state = 579}, - [1312] = {.lex_state = 579}, - [1313] = {.lex_state = 579}, - [1314] = {.lex_state = 579}, - [1315] = {.lex_state = 579}, - [1316] = {.lex_state = 579}, - [1317] = {.lex_state = 579}, - [1318] = {.lex_state = 579}, - [1319] = {.lex_state = 579}, - [1320] = {.lex_state = 579}, - [1321] = {.lex_state = 579}, - [1322] = {.lex_state = 579}, - [1323] = {.lex_state = 44, .external_lex_state = 2}, - [1324] = {.lex_state = 579}, - [1325] = {.lex_state = 579}, - [1326] = {.lex_state = 579}, - [1327] = {.lex_state = 579}, - [1328] = {.lex_state = 579}, - [1329] = {.lex_state = 579}, - [1330] = {.lex_state = 579}, - [1331] = {.lex_state = 579}, - [1332] = {.lex_state = 579}, - [1333] = {.lex_state = 579}, - [1334] = {.lex_state = 579}, - [1335] = {.lex_state = 579}, - [1336] = {.lex_state = 579}, - [1337] = {.lex_state = 579}, - [1338] = {.lex_state = 623, .external_lex_state = 2}, - [1339] = {.lex_state = 579}, - [1340] = {.lex_state = 579}, - [1341] = {.lex_state = 623, .external_lex_state = 2}, - [1342] = {.lex_state = 579}, - [1343] = {.lex_state = 579}, - [1344] = {.lex_state = 579}, - [1345] = {.lex_state = 579}, - [1346] = {.lex_state = 45, .external_lex_state = 2}, - [1347] = {.lex_state = 172, .external_lex_state = 2}, - [1348] = {.lex_state = 173, .external_lex_state = 2}, - [1349] = {.lex_state = 29, .external_lex_state = 2}, - [1350] = {.lex_state = 29, .external_lex_state = 2}, - [1351] = {.lex_state = 44, .external_lex_state = 2}, - [1352] = {.lex_state = 29, .external_lex_state = 2}, - [1353] = {.lex_state = 44, .external_lex_state = 2}, + [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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 29, .external_lex_state = 2}, - [1356] = {.lex_state = 44, .external_lex_state = 2}, - [1357] = {.lex_state = 623, .external_lex_state = 2}, - [1358] = {.lex_state = 146, .external_lex_state = 2}, - [1359] = {.lex_state = 45, .external_lex_state = 2}, - [1360] = {.lex_state = 623, .external_lex_state = 2}, - [1361] = {.lex_state = 45, .external_lex_state = 2}, - [1362] = {.lex_state = 146, .external_lex_state = 2}, - [1363] = {.lex_state = 623, .external_lex_state = 2}, - [1364] = {.lex_state = 631, .external_lex_state = 2}, - [1365] = {.lex_state = 623, .external_lex_state = 2}, - [1366] = {.lex_state = 623, .external_lex_state = 2}, - [1367] = {.lex_state = 623, .external_lex_state = 2}, - [1368] = {.lex_state = 623, .external_lex_state = 2}, - [1369] = {.lex_state = 146, .external_lex_state = 2}, - [1370] = {.lex_state = 146, .external_lex_state = 2}, - [1371] = {.lex_state = 623, .external_lex_state = 2}, - [1372] = {.lex_state = 29, .external_lex_state = 2}, - [1373] = {.lex_state = 623, .external_lex_state = 2}, - [1374] = {.lex_state = 45, .external_lex_state = 2}, - [1375] = {.lex_state = 146, .external_lex_state = 2}, - [1376] = {.lex_state = 623, .external_lex_state = 2}, - [1377] = {.lex_state = 583}, - [1378] = {.lex_state = 623, .external_lex_state = 2}, - [1379] = {.lex_state = 623, .external_lex_state = 2}, - [1380] = {.lex_state = 623, .external_lex_state = 2}, - [1381] = {.lex_state = 623, .external_lex_state = 2}, - [1382] = {.lex_state = 623, .external_lex_state = 2}, - [1383] = {.lex_state = 623, .external_lex_state = 2}, - [1384] = {.lex_state = 623, .external_lex_state = 2}, - [1385] = {.lex_state = 29, .external_lex_state = 2}, - [1386] = {.lex_state = 583}, - [1387] = {.lex_state = 585}, - [1388] = {.lex_state = 623, .external_lex_state = 2}, - [1389] = {.lex_state = 585}, - [1390] = {.lex_state = 623, .external_lex_state = 2}, - [1391] = {.lex_state = 34, .external_lex_state = 2}, - [1392] = {.lex_state = 34, .external_lex_state = 2}, - [1393] = {.lex_state = 33, .external_lex_state = 2}, - [1394] = {.lex_state = 591}, - [1395] = {.lex_state = 587}, - [1396] = {.lex_state = 33, .external_lex_state = 2}, - [1397] = {.lex_state = 46, .external_lex_state = 2}, - [1398] = {.lex_state = 623, .external_lex_state = 2}, - [1399] = {.lex_state = 585}, - [1400] = {.lex_state = 623, .external_lex_state = 2}, - [1401] = {.lex_state = 585}, - [1402] = {.lex_state = 33, .external_lex_state = 2}, - [1403] = {.lex_state = 593}, - [1404] = {.lex_state = 593}, - [1405] = {.lex_state = 34, .external_lex_state = 2}, - [1406] = {.lex_state = 587}, - [1407] = {.lex_state = 595}, - [1408] = {.lex_state = 591}, - [1409] = {.lex_state = 33, .external_lex_state = 2}, - [1410] = {.lex_state = 33, .external_lex_state = 2}, - [1411] = {.lex_state = 589}, - [1412] = {.lex_state = 595}, - [1413] = {.lex_state = 595}, - [1414] = {.lex_state = 34, .external_lex_state = 2}, - [1415] = {.lex_state = 46, .external_lex_state = 2}, - [1416] = {.lex_state = 595}, - [1417] = {.lex_state = 595}, - [1418] = {.lex_state = 46, .external_lex_state = 2}, - [1419] = {.lex_state = 156, .external_lex_state = 2}, - [1420] = {.lex_state = 46, .external_lex_state = 2}, - [1421] = {.lex_state = 593}, - [1422] = {.lex_state = 156, .external_lex_state = 2}, - [1423] = {.lex_state = 33, .external_lex_state = 2}, - [1424] = {.lex_state = 593}, - [1425] = {.lex_state = 597}, - [1426] = {.lex_state = 597}, - [1427] = {.lex_state = 599}, - [1428] = {.lex_state = 595}, - [1429] = {.lex_state = 595}, - [1430] = {.lex_state = 595}, - [1431] = {.lex_state = 589}, - [1432] = {.lex_state = 599}, - [1433] = {.lex_state = 601}, - [1434] = {.lex_state = 601}, - [1435] = {.lex_state = 599}, - [1436] = {.lex_state = 601}, - [1437] = {.lex_state = 599}, - [1438] = {.lex_state = 601}, - [1439] = {.lex_state = 601}, - [1440] = {.lex_state = 601}, - [1441] = {.lex_state = 627, .external_lex_state = 2}, - [1442] = {.lex_state = 603}, - [1443] = {.lex_state = 579}, - [1444] = {.lex_state = 605}, - [1445] = {.lex_state = 627, .external_lex_state = 2}, - [1446] = {.lex_state = 601}, - [1447] = {.lex_state = 601}, - [1448] = {.lex_state = 601}, - [1449] = {.lex_state = 601}, - [1450] = {.lex_state = 627, .external_lex_state = 2}, - [1451] = {.lex_state = 36, .external_lex_state = 2}, - [1452] = {.lex_state = 579}, - [1453] = {.lex_state = 607}, - [1454] = {.lex_state = 36, .external_lex_state = 2}, - [1455] = {.lex_state = 603}, - [1456] = {.lex_state = 627, .external_lex_state = 2}, - [1457] = {.lex_state = 605}, - [1458] = {.lex_state = 607}, - [1459] = {.lex_state = 36, .external_lex_state = 2}, - [1460] = {.lex_state = 147, .external_lex_state = 2}, - [1461] = {.lex_state = 147, .external_lex_state = 2}, - [1462] = {.lex_state = 147, .external_lex_state = 2}, - [1463] = {.lex_state = 609}, - [1464] = {.lex_state = 609}, - [1465] = {.lex_state = 147, .external_lex_state = 2}, - [1466] = {.lex_state = 147, .external_lex_state = 2}, - [1467] = {.lex_state = 147, .external_lex_state = 2}, - [1468] = {.lex_state = 147, .external_lex_state = 2}, - [1469] = {.lex_state = 147, .external_lex_state = 2}, - [1470] = {.lex_state = 609}, - [1471] = {.lex_state = 609}, - [1472] = {.lex_state = 609}, - [1473] = {.lex_state = 147, .external_lex_state = 2}, - [1474] = {.lex_state = 147, .external_lex_state = 2}, - [1475] = {.lex_state = 609}, - [1476] = {.lex_state = 609}, - [1477] = {.lex_state = 609}, - [1478] = {.lex_state = 609}, - [1479] = {.lex_state = 609}, - [1480] = {.lex_state = 609}, - [1481] = {.lex_state = 609}, - [1482] = {.lex_state = 607}, - [1483] = {.lex_state = 607}, - [1484] = {.lex_state = 609}, - [1485] = {.lex_state = 147, .external_lex_state = 2}, - [1486] = {.lex_state = 147, .external_lex_state = 2}, - [1487] = {.lex_state = 147, .external_lex_state = 2}, - [1488] = {.lex_state = 609}, - [1489] = {.lex_state = 609}, - [1490] = {.lex_state = 609}, - [1491] = {.lex_state = 611}, - [1492] = {.lex_state = 609}, - [1493] = {.lex_state = 147, .external_lex_state = 2}, - [1494] = {.lex_state = 39, .external_lex_state = 2}, - [1495] = {.lex_state = 147, .external_lex_state = 2}, - [1496] = {.lex_state = 609}, - [1497] = {.lex_state = 609}, - [1498] = {.lex_state = 611}, - [1499] = {.lex_state = 609}, - [1500] = {.lex_state = 609}, - [1501] = {.lex_state = 609}, - [1502] = {.lex_state = 609}, - [1503] = {.lex_state = 611}, - [1504] = {.lex_state = 147, .external_lex_state = 2}, - [1505] = {.lex_state = 609}, - [1506] = {.lex_state = 609}, - [1507] = {.lex_state = 609}, - [1508] = {.lex_state = 609}, - [1509] = {.lex_state = 177, .external_lex_state = 2}, - [1510] = {.lex_state = 609}, - [1511] = {.lex_state = 579}, - [1512] = {.lex_state = 36, .external_lex_state = 2}, - [1513] = {.lex_state = 579}, - [1514] = {.lex_state = 579}, - [1515] = {.lex_state = 579}, - [1516] = {.lex_state = 579}, - [1517] = {.lex_state = 579}, - [1518] = {.lex_state = 579}, - [1519] = {.lex_state = 579}, - [1520] = {.lex_state = 579}, - [1521] = {.lex_state = 36, .external_lex_state = 2}, - [1522] = {.lex_state = 579}, - [1523] = {.lex_state = 88}, - [1524] = {.lex_state = 36, .external_lex_state = 2}, - [1525] = {.lex_state = 88}, - [1526] = {.lex_state = 579}, - [1527] = {.lex_state = 579}, - [1528] = {.lex_state = 579}, - [1529] = {.lex_state = 579}, - [1530] = {.lex_state = 579}, - [1531] = {.lex_state = 579}, - [1532] = {.lex_state = 579}, - [1533] = {.lex_state = 579}, - [1534] = {.lex_state = 579}, - [1535] = {.lex_state = 579}, - [1536] = {.lex_state = 579}, - [1537] = {.lex_state = 579}, - [1538] = {.lex_state = 579}, - [1539] = {.lex_state = 579}, - [1540] = {.lex_state = 579}, - [1541] = {.lex_state = 579}, - [1542] = {.lex_state = 579}, - [1543] = {.lex_state = 579}, - [1544] = {.lex_state = 579}, - [1545] = {.lex_state = 579}, - [1546] = {.lex_state = 579}, - [1547] = {.lex_state = 579}, - [1548] = {.lex_state = 579}, - [1549] = {.lex_state = 579}, - [1550] = {.lex_state = 579}, - [1551] = {.lex_state = 579}, - [1552] = {.lex_state = 579}, - [1553] = {.lex_state = 579}, - [1554] = {.lex_state = 579}, - [1555] = {.lex_state = 579}, - [1556] = {.lex_state = 579}, - [1557] = {.lex_state = 579}, - [1558] = {.lex_state = 579}, - [1559] = {.lex_state = 579}, - [1560] = {.lex_state = 579}, - [1561] = {.lex_state = 88}, - [1562] = {.lex_state = 579}, - [1563] = {.lex_state = 88}, - [1564] = {.lex_state = 88}, - [1565] = {.lex_state = 88}, - [1566] = {.lex_state = 579}, - [1567] = {.lex_state = 579}, - [1568] = {.lex_state = 579}, - [1569] = {.lex_state = 579}, - [1570] = {.lex_state = 579}, - [1571] = {.lex_state = 579}, - [1572] = {.lex_state = 579}, - [1573] = {.lex_state = 579}, - [1574] = {.lex_state = 579}, - [1575] = {.lex_state = 579}, - [1576] = {.lex_state = 579}, - [1577] = {.lex_state = 579}, - [1578] = {.lex_state = 579}, - [1579] = {.lex_state = 579}, - [1580] = {.lex_state = 579}, - [1581] = {.lex_state = 579}, - [1582] = {.lex_state = 579}, - [1583] = {.lex_state = 579}, - [1584] = {.lex_state = 579}, - [1585] = {.lex_state = 579}, - [1586] = {.lex_state = 579}, - [1587] = {.lex_state = 579}, - [1588] = {.lex_state = 579}, - [1589] = {.lex_state = 579}, - [1590] = {.lex_state = 579}, - [1591] = {.lex_state = 579}, - [1592] = {.lex_state = 579}, - [1593] = {.lex_state = 579}, - [1594] = {.lex_state = 579}, - [1595] = {.lex_state = 579}, - [1596] = {.lex_state = 579}, - [1597] = {.lex_state = 579}, - [1598] = {.lex_state = 579}, - [1599] = {.lex_state = 579}, - [1600] = {.lex_state = 579}, - [1601] = {.lex_state = 579}, - [1602] = {.lex_state = 88}, - [1603] = {.lex_state = 88}, - [1604] = {.lex_state = 88}, - [1605] = {.lex_state = 36, .external_lex_state = 2}, - [1606] = {.lex_state = 579}, - [1607] = {.lex_state = 579}, - [1608] = {.lex_state = 579}, - [1609] = {.lex_state = 579}, - [1610] = {.lex_state = 579}, - [1611] = {.lex_state = 579}, - [1612] = {.lex_state = 579}, - [1613] = {.lex_state = 579}, - [1614] = {.lex_state = 579}, - [1615] = {.lex_state = 579}, - [1616] = {.lex_state = 579}, - [1617] = {.lex_state = 579}, - [1618] = {.lex_state = 88}, - [1619] = {.lex_state = 88}, - [1620] = {.lex_state = 88}, - [1621] = {.lex_state = 88}, - [1622] = {.lex_state = 611}, - [1623] = {.lex_state = 88}, - [1624] = {.lex_state = 88}, - [1625] = {.lex_state = 88}, - [1626] = {.lex_state = 88}, - [1627] = {.lex_state = 88}, - [1628] = {.lex_state = 88}, - [1629] = {.lex_state = 88}, - [1630] = {.lex_state = 88}, - [1631] = {.lex_state = 88}, - [1632] = {.lex_state = 88}, - [1633] = {.lex_state = 88}, - [1634] = {.lex_state = 88}, - [1635] = {.lex_state = 88}, - [1636] = {.lex_state = 579}, - [1637] = {.lex_state = 579}, - [1638] = {.lex_state = 579}, - [1639] = {.lex_state = 579}, - [1640] = {.lex_state = 579}, - [1641] = {.lex_state = 579}, - [1642] = {.lex_state = 579}, - [1643] = {.lex_state = 579}, - [1644] = {.lex_state = 579}, - [1645] = {.lex_state = 579}, - [1646] = {.lex_state = 579}, - [1647] = {.lex_state = 579}, - [1648] = {.lex_state = 88}, - [1649] = {.lex_state = 88}, - [1650] = {.lex_state = 88}, - [1651] = {.lex_state = 36, .external_lex_state = 2}, - [1652] = {.lex_state = 88}, - [1653] = {.lex_state = 88}, - [1654] = {.lex_state = 36, .external_lex_state = 2}, - [1655] = {.lex_state = 88}, - [1656] = {.lex_state = 88}, - [1657] = {.lex_state = 88}, - [1658] = {.lex_state = 88}, - [1659] = {.lex_state = 88}, - [1660] = {.lex_state = 579}, - [1661] = {.lex_state = 88}, - [1662] = {.lex_state = 611}, - [1663] = {.lex_state = 611}, - [1664] = {.lex_state = 88}, - [1665] = {.lex_state = 88}, - [1666] = {.lex_state = 88}, - [1667] = {.lex_state = 88}, - [1668] = {.lex_state = 6}, - [1669] = {.lex_state = 88}, - [1670] = {.lex_state = 88}, - [1671] = {.lex_state = 579}, - [1672] = {.lex_state = 88}, - [1673] = {.lex_state = 88}, - [1674] = {.lex_state = 579}, - [1675] = {.lex_state = 88}, - [1676] = {.lex_state = 39, .external_lex_state = 2}, - [1677] = {.lex_state = 88}, - [1678] = {.lex_state = 88}, - [1679] = {.lex_state = 579}, - [1680] = {.lex_state = 7}, - [1681] = {.lex_state = 579}, - [1682] = {.lex_state = 579}, - [1683] = {.lex_state = 177, .external_lex_state = 2}, - [1684] = {.lex_state = 579}, - [1685] = {.lex_state = 579}, - [1686] = {.lex_state = 579}, - [1687] = {.lex_state = 88}, - [1688] = {.lex_state = 579}, - [1689] = {.lex_state = 177, .external_lex_state = 2}, - [1690] = {.lex_state = 579}, - [1691] = {.lex_state = 579}, - [1692] = {.lex_state = 579}, - [1693] = {.lex_state = 579}, - [1694] = {.lex_state = 579}, - [1695] = {.lex_state = 579}, - [1696] = {.lex_state = 7}, - [1697] = {.lex_state = 130}, - [1698] = {.lex_state = 36, .external_lex_state = 2}, - [1699] = {.lex_state = 8}, - [1700] = {.lex_state = 36, .external_lex_state = 2}, - [1701] = {.lex_state = 10}, - [1702] = {.lex_state = 36, .external_lex_state = 2}, - [1703] = {.lex_state = 131}, - [1704] = {.lex_state = 130}, - [1705] = {.lex_state = 36, .external_lex_state = 2}, - [1706] = {.lex_state = 36, .external_lex_state = 2}, - [1707] = {.lex_state = 130}, - [1708] = {.lex_state = 36, .external_lex_state = 2}, - [1709] = {.lex_state = 36, .external_lex_state = 2}, - [1710] = {.lex_state = 36, .external_lex_state = 2}, - [1711] = {.lex_state = 36, .external_lex_state = 2}, - [1712] = {.lex_state = 36, .external_lex_state = 2}, - [1713] = {.lex_state = 36, .external_lex_state = 2}, - [1714] = {.lex_state = 131}, - [1715] = {.lex_state = 176, .external_lex_state = 2}, - [1716] = {.lex_state = 130}, - [1717] = {.lex_state = 88}, - [1718] = {.lex_state = 176, .external_lex_state = 2}, - [1719] = {.lex_state = 134}, - [1720] = {.lex_state = 11}, - [1721] = {.lex_state = 630, .external_lex_state = 2}, - [1722] = {.lex_state = 130}, - [1723] = {.lex_state = 11}, - [1724] = {.lex_state = 571, .external_lex_state = 2}, - [1725] = {.lex_state = 88}, - [1726] = {.lex_state = 12}, - [1727] = {.lex_state = 630, .external_lex_state = 2}, - [1728] = {.lex_state = 88}, - [1729] = {.lex_state = 88}, - [1730] = {.lex_state = 176, .external_lex_state = 2}, - [1731] = {.lex_state = 130}, - [1732] = {.lex_state = 130}, - [1733] = {.lex_state = 130}, - [1734] = {.lex_state = 630, .external_lex_state = 2}, - [1735] = {.lex_state = 130}, - [1736] = {.lex_state = 132}, - [1737] = {.lex_state = 176, .external_lex_state = 2}, - [1738] = {.lex_state = 630, .external_lex_state = 2}, - [1739] = {.lex_state = 136}, - [1740] = {.lex_state = 630, .external_lex_state = 2}, - [1741] = {.lex_state = 571, .external_lex_state = 2}, - [1742] = {.lex_state = 12}, - [1743] = {.lex_state = 165, .external_lex_state = 2}, - [1744] = {.lex_state = 630, .external_lex_state = 2}, - [1745] = {.lex_state = 88}, - [1746] = {.lex_state = 9}, - [1747] = {.lex_state = 13}, - [1748] = {.lex_state = 88}, - [1749] = {.lex_state = 630, .external_lex_state = 2}, - [1750] = {.lex_state = 168, .external_lex_state = 2}, - [1751] = {.lex_state = 176, .external_lex_state = 2}, - [1752] = {.lex_state = 176, .external_lex_state = 2}, - [1753] = {.lex_state = 12}, - [1754] = {.lex_state = 88}, - [1755] = {.lex_state = 88}, - [1756] = {.lex_state = 88}, - [1757] = {.lex_state = 135}, - [1758] = {.lex_state = 36, .external_lex_state = 2}, - [1759] = {.lex_state = 36, .external_lex_state = 2}, - [1760] = {.lex_state = 176, .external_lex_state = 2}, - [1761] = {.lex_state = 571, .external_lex_state = 2}, - [1762] = {.lex_state = 176, .external_lex_state = 2}, - [1763] = {.lex_state = 36, .external_lex_state = 2}, - [1764] = {.lex_state = 176, .external_lex_state = 2}, - [1765] = {.lex_state = 571, .external_lex_state = 2}, - [1766] = {.lex_state = 571, .external_lex_state = 2}, - [1767] = {.lex_state = 571, .external_lex_state = 2}, - [1768] = {.lex_state = 12}, - [1769] = {.lex_state = 571, .external_lex_state = 2}, - [1770] = {.lex_state = 630, .external_lex_state = 2}, - [1771] = {.lex_state = 176, .external_lex_state = 2}, - [1772] = {.lex_state = 135}, - [1773] = {.lex_state = 176, .external_lex_state = 2}, - [1774] = {.lex_state = 176, .external_lex_state = 2}, - [1775] = {.lex_state = 571, .external_lex_state = 2}, - [1776] = {.lex_state = 176, .external_lex_state = 2}, - [1777] = {.lex_state = 88}, - [1778] = {.lex_state = 88}, - [1779] = {.lex_state = 88}, - [1780] = {.lex_state = 14}, - [1781] = {.lex_state = 572, .external_lex_state = 2}, - [1782] = {.lex_state = 167, .external_lex_state = 2}, - [1783] = {.lex_state = 137}, - [1784] = {.lex_state = 571, .external_lex_state = 2}, - [1785] = {.lex_state = 36, .external_lex_state = 2}, - [1786] = {.lex_state = 88}, - [1787] = {.lex_state = 88}, - [1788] = {.lex_state = 630, .external_lex_state = 2}, - [1789] = {.lex_state = 88}, - [1790] = {.lex_state = 88}, - [1791] = {.lex_state = 571, .external_lex_state = 2}, - [1792] = {.lex_state = 629, .external_lex_state = 2}, - [1793] = {.lex_state = 88}, - [1794] = {.lex_state = 133}, - [1795] = {.lex_state = 88}, - [1796] = {.lex_state = 88}, - [1797] = {.lex_state = 571, .external_lex_state = 2}, - [1798] = {.lex_state = 36, .external_lex_state = 2}, - [1799] = {.lex_state = 88}, - [1800] = {.lex_state = 630, .external_lex_state = 2}, - [1801] = {.lex_state = 36, .external_lex_state = 2}, - [1802] = {.lex_state = 136}, - [1803] = {.lex_state = 167, .external_lex_state = 2}, - [1804] = {.lex_state = 36, .external_lex_state = 2}, - [1805] = {.lex_state = 88}, - [1806] = {.lex_state = 88}, - [1807] = {.lex_state = 571, .external_lex_state = 2}, - [1808] = {.lex_state = 571, .external_lex_state = 2}, - [1809] = {.lex_state = 571, .external_lex_state = 2}, - [1810] = {.lex_state = 88}, - [1811] = {.lex_state = 36, .external_lex_state = 2}, - [1812] = {.lex_state = 36, .external_lex_state = 2}, - [1813] = {.lex_state = 36, .external_lex_state = 2}, - [1814] = {.lex_state = 36, .external_lex_state = 2}, - [1815] = {.lex_state = 136}, - [1816] = {.lex_state = 14}, - [1817] = {.lex_state = 36, .external_lex_state = 2}, - [1818] = {.lex_state = 136}, - [1819] = {.lex_state = 88}, - [1820] = {.lex_state = 36, .external_lex_state = 2}, - [1821] = {.lex_state = 36, .external_lex_state = 2}, - [1822] = {.lex_state = 88}, - [1823] = {.lex_state = 36, .external_lex_state = 2}, - [1824] = {.lex_state = 88}, - [1825] = {.lex_state = 15}, - [1826] = {.lex_state = 15}, - [1827] = {.lex_state = 15}, - [1828] = {.lex_state = 138}, - [1829] = {.lex_state = 630, .external_lex_state = 2}, - [1830] = {.lex_state = 88}, - [1831] = {.lex_state = 169, .external_lex_state = 2}, - [1832] = {.lex_state = 579}, - [1833] = {.lex_state = 630, .external_lex_state = 2}, - [1834] = {.lex_state = 572, .external_lex_state = 2}, - [1835] = {.lex_state = 138}, - [1836] = {.lex_state = 169, .external_lex_state = 2}, - [1837] = {.lex_state = 88}, - [1838] = {.lex_state = 15}, - [1839] = {.lex_state = 88}, - [1840] = {.lex_state = 15}, - [1841] = {.lex_state = 630, .external_lex_state = 2}, - [1842] = {.lex_state = 169, .external_lex_state = 2}, - [1843] = {.lex_state = 169, .external_lex_state = 2}, - [1844] = {.lex_state = 629, .external_lex_state = 2}, - [1845] = {.lex_state = 627, .external_lex_state = 2}, - [1846] = {.lex_state = 17}, - [1847] = {.lex_state = 627, .external_lex_state = 2}, - [1848] = {.lex_state = 139}, - [1849] = {.lex_state = 627, .external_lex_state = 2}, - [1850] = {.lex_state = 627, .external_lex_state = 2}, - [1851] = {.lex_state = 139}, - [1852] = {.lex_state = 174, .external_lex_state = 2}, - [1853] = {.lex_state = 627, .external_lex_state = 2}, - [1854] = {.lex_state = 627, .external_lex_state = 2}, - [1855] = {.lex_state = 88}, - [1856] = {.lex_state = 88}, - [1857] = {.lex_state = 579}, - [1858] = {.lex_state = 1184}, - [1859] = {.lex_state = 627, .external_lex_state = 2}, - [1860] = {.lex_state = 1182}, - [1861] = {.lex_state = 627, .external_lex_state = 2}, - [1862] = {.lex_state = 630, .external_lex_state = 2}, - [1863] = {.lex_state = 139}, - [1864] = {.lex_state = 627, .external_lex_state = 2}, - [1865] = {.lex_state = 630, .external_lex_state = 2}, + [1355] = {.lex_state = 47, .external_lex_state = 2}, + [1356] = {.lex_state = 620, .external_lex_state = 2}, + [1357] = {.lex_state = 31, .external_lex_state = 2}, + [1358] = {.lex_state = 46, .external_lex_state = 2}, + [1359] = {.lex_state = 46, .external_lex_state = 2}, + [1360] = {.lex_state = 174, .external_lex_state = 2}, + [1361] = {.lex_state = 46, .external_lex_state = 2}, + [1362] = {.lex_state = 31, .external_lex_state = 2}, + [1363] = {.lex_state = 174, .external_lex_state = 2}, + [1364] = {.lex_state = 31, .external_lex_state = 2}, + [1365] = {.lex_state = 31, .external_lex_state = 2}, + [1366] = {.lex_state = 147, .external_lex_state = 2}, + [1367] = {.lex_state = 620, .external_lex_state = 2}, + [1368] = {.lex_state = 47, .external_lex_state = 2}, + [1369] = {.lex_state = 620, .external_lex_state = 2}, + [1370] = {.lex_state = 620, .external_lex_state = 2}, + [1371] = {.lex_state = 31, .external_lex_state = 2}, + [1372] = {.lex_state = 620, .external_lex_state = 2}, + [1373] = {.lex_state = 147, .external_lex_state = 2}, + [1374] = {.lex_state = 620, .external_lex_state = 2}, + [1375] = {.lex_state = 628, .external_lex_state = 2}, + [1376] = {.lex_state = 620, .external_lex_state = 2}, + [1377] = {.lex_state = 147, .external_lex_state = 2}, + [1378] = {.lex_state = 47, .external_lex_state = 2}, + [1379] = {.lex_state = 620, .external_lex_state = 2}, + [1380] = {.lex_state = 47, .external_lex_state = 2}, + [1381] = {.lex_state = 147, .external_lex_state = 2}, + [1382] = {.lex_state = 147, .external_lex_state = 2}, + [1383] = {.lex_state = 620, .external_lex_state = 2}, + [1384] = {.lex_state = 31, .external_lex_state = 2}, + [1385] = {.lex_state = 620, .external_lex_state = 2}, + [1386] = {.lex_state = 620, .external_lex_state = 2}, + [1387] = {.lex_state = 620, .external_lex_state = 2}, + [1388] = {.lex_state = 578}, + [1389] = {.lex_state = 620, .external_lex_state = 2}, + [1390] = {.lex_state = 620, .external_lex_state = 2}, + [1391] = {.lex_state = 620, .external_lex_state = 2}, + [1392] = {.lex_state = 620, .external_lex_state = 2}, + [1393] = {.lex_state = 620, .external_lex_state = 2}, + [1394] = {.lex_state = 580}, + [1395] = {.lex_state = 36, .external_lex_state = 2}, + [1396] = {.lex_state = 620, .external_lex_state = 2}, + [1397] = {.lex_state = 620, .external_lex_state = 2}, + [1398] = {.lex_state = 580}, + [1399] = {.lex_state = 578}, + [1400] = {.lex_state = 36, .external_lex_state = 2}, + [1401] = {.lex_state = 580}, + [1402] = {.lex_state = 48, .external_lex_state = 2}, + [1403] = {.lex_state = 620, .external_lex_state = 2}, + [1404] = {.lex_state = 580}, + [1405] = {.lex_state = 582}, + [1406] = {.lex_state = 35, .external_lex_state = 2}, + [1407] = {.lex_state = 586}, + [1408] = {.lex_state = 35, .external_lex_state = 2}, + [1409] = {.lex_state = 620, .external_lex_state = 2}, + [1410] = {.lex_state = 590}, + [1411] = {.lex_state = 35, .external_lex_state = 2}, + [1412] = {.lex_state = 586}, + [1413] = {.lex_state = 36, .external_lex_state = 2}, + [1414] = {.lex_state = 582}, + [1415] = {.lex_state = 588}, + [1416] = {.lex_state = 35, .external_lex_state = 2}, + [1417] = {.lex_state = 35, .external_lex_state = 2}, + [1418] = {.lex_state = 588}, + [1419] = {.lex_state = 590}, + [1420] = {.lex_state = 588}, + [1421] = {.lex_state = 48, .external_lex_state = 2}, + [1422] = {.lex_state = 36, .external_lex_state = 2}, + [1423] = {.lex_state = 588}, + [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 = 627, .external_lex_state = 2}, [1866] = {.lex_state = 627, .external_lex_state = 2}, - [1867] = {.lex_state = 16}, - [1868] = {.lex_state = 630, .external_lex_state = 2}, - [1869] = {.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 = 627, .external_lex_state = 2}, - [1872] = {.lex_state = 627, .external_lex_state = 2}, - [1873] = {.lex_state = 266}, - [1874] = {.lex_state = 627, .external_lex_state = 2}, - [1875] = {.lex_state = 627, .external_lex_state = 2}, - [1876] = {.lex_state = 88}, - [1877] = {.lex_state = 627, .external_lex_state = 2}, - [1878] = {.lex_state = 627, .external_lex_state = 2}, - [1879] = {.lex_state = 139}, - [1880] = {.lex_state = 88}, - [1881] = {.lex_state = 627, .external_lex_state = 2}, - [1882] = {.lex_state = 627, .external_lex_state = 2}, + [1871] = {.lex_state = 170, .external_lex_state = 2}, + [1872] = {.lex_state = 170, .external_lex_state = 2}, + [1873] = {.lex_state = 170, .external_lex_state = 2}, + [1874] = {.lex_state = 567, .external_lex_state = 2}, + [1875] = {.lex_state = 625, .external_lex_state = 2}, + [1876] = {.lex_state = 91}, + [1877] = {.lex_state = 625, .external_lex_state = 2}, + [1878] = {.lex_state = 140}, + [1879] = {.lex_state = 625, .external_lex_state = 2}, + [1880] = {.lex_state = 625, .external_lex_state = 2}, + [1881] = {.lex_state = 267}, + [1882] = {.lex_state = 574}, [1883] = {.lex_state = 175, .external_lex_state = 2}, - [1884] = {.lex_state = 627, .external_lex_state = 2}, - [1885] = {.lex_state = 627, .external_lex_state = 2}, - [1886] = {.lex_state = 141}, - [1887] = {.lex_state = 161, .external_lex_state = 2}, - [1888] = {.lex_state = 18}, - [1889] = {.lex_state = 161, .external_lex_state = 2}, - [1890] = {.lex_state = 627, .external_lex_state = 2}, - [1891] = {.lex_state = 627, .external_lex_state = 2}, - [1892] = {.lex_state = 125, .external_lex_state = 2}, - [1893] = {.lex_state = 175, .external_lex_state = 2}, - [1894] = {.lex_state = 1183}, - [1895] = {.lex_state = 627, .external_lex_state = 2}, + [1884] = {.lex_state = 625, .external_lex_state = 2}, + [1885] = {.lex_state = 19}, + [1886] = {.lex_state = 625, .external_lex_state = 2}, + [1887] = {.lex_state = 91}, + [1888] = {.lex_state = 625, .external_lex_state = 2}, + [1889] = {.lex_state = 627, .external_lex_state = 2}, + [1890] = {.lex_state = 625, .external_lex_state = 2}, + [1891] = {.lex_state = 91}, + [1892] = {.lex_state = 140}, + [1893] = {.lex_state = 625, .external_lex_state = 2}, + [1894] = {.lex_state = 140}, + [1895] = {.lex_state = 625, .external_lex_state = 2}, [1896] = {.lex_state = 627, .external_lex_state = 2}, - [1897] = {.lex_state = 627, .external_lex_state = 2}, - [1898] = {.lex_state = 18}, - [1899] = {.lex_state = 627, .external_lex_state = 2}, - [1900] = {.lex_state = 266}, - [1901] = {.lex_state = 627, .external_lex_state = 2}, - [1902] = {.lex_state = 161, .external_lex_state = 2}, - [1903] = {.lex_state = 627, .external_lex_state = 2}, - [1904] = {.lex_state = 627, .external_lex_state = 2}, - [1905] = {.lex_state = 1187}, - [1906] = {.lex_state = 161, .external_lex_state = 2}, - [1907] = {.lex_state = 627, .external_lex_state = 2}, - [1908] = {.lex_state = 627, .external_lex_state = 2}, - [1909] = {.lex_state = 627, .external_lex_state = 2}, - [1910] = {.lex_state = 1185}, - [1911] = {.lex_state = 140}, - [1912] = {.lex_state = 161, .external_lex_state = 2}, - [1913] = {.lex_state = 161, .external_lex_state = 2}, - [1914] = {.lex_state = 627, .external_lex_state = 2}, - [1915] = {.lex_state = 161, .external_lex_state = 2}, - [1916] = {.lex_state = 1185}, - [1917] = {.lex_state = 579}, - [1918] = {.lex_state = 19}, - [1919] = {.lex_state = 19}, - [1920] = {.lex_state = 266}, - [1921] = {.lex_state = 19}, - [1922] = {.lex_state = 19}, - [1923] = {.lex_state = 266}, - [1924] = {.lex_state = 266}, - [1925] = {.lex_state = 19}, - [1926] = {.lex_state = 19}, - [1927] = {.lex_state = 1186}, - [1928] = {.lex_state = 1186}, - [1929] = {.lex_state = 1186}, - [1930] = {.lex_state = 266}, - [1931] = {.lex_state = 266}, - [1932] = {.lex_state = 19}, - [1933] = {.lex_state = 266}, - [1934] = {.lex_state = 19}, - [1935] = {.lex_state = 19}, - [1936] = {.lex_state = 161, .external_lex_state = 2}, - [1937] = {.lex_state = 161, .external_lex_state = 2}, - [1938] = {.lex_state = 266}, - [1939] = {.lex_state = 125, .external_lex_state = 2}, - [1940] = {.lex_state = 125, .external_lex_state = 2}, - [1941] = {.lex_state = 19}, - [1942] = {.lex_state = 125, .external_lex_state = 2}, - [1943] = {.lex_state = 125, .external_lex_state = 2}, - [1944] = {.lex_state = 125, .external_lex_state = 2}, - [1945] = {.lex_state = 1188}, - [1946] = {.lex_state = 19}, - [1947] = {.lex_state = 1186}, - [1948] = {.lex_state = 152, .external_lex_state = 2}, - [1949] = {.lex_state = 142}, - [1950] = {.lex_state = 142}, - [1951] = {.lex_state = 1188}, - [1952] = {.lex_state = 152, .external_lex_state = 2}, - [1953] = {.lex_state = 266}, - [1954] = {.lex_state = 19}, - [1955] = {.lex_state = 579}, - [1956] = {.lex_state = 88}, - [1957] = {.lex_state = 163, .external_lex_state = 2}, - [1958] = {.lex_state = 579}, - [1959] = {.lex_state = 19}, - [1960] = {.lex_state = 579}, - [1961] = {.lex_state = 579}, - [1962] = {.lex_state = 579}, - [1963] = {.lex_state = 579}, - [1964] = {.lex_state = 579}, - [1965] = {.lex_state = 579}, - [1966] = {.lex_state = 125, .external_lex_state = 2}, - [1967] = {.lex_state = 579}, - [1968] = {.lex_state = 579}, - [1969] = {.lex_state = 160, .external_lex_state = 2}, - [1970] = {.lex_state = 266}, - [1971] = {.lex_state = 126, .external_lex_state = 2}, - [1972] = {.lex_state = 266}, - [1973] = {.lex_state = 153, .external_lex_state = 2}, - [1974] = {.lex_state = 158, .external_lex_state = 2}, - [1975] = {.lex_state = 88}, - [1976] = {.lex_state = 143}, - [1977] = {.lex_state = 153, .external_lex_state = 2}, - [1978] = {.lex_state = 153, .external_lex_state = 2}, - [1979] = {.lex_state = 143}, - [1980] = {.lex_state = 143}, - [1981] = {.lex_state = 143}, - [1982] = {.lex_state = 143}, - [1983] = {.lex_state = 143}, - [1984] = {.lex_state = 143}, - [1985] = {.lex_state = 143}, - [1986] = {.lex_state = 143}, - [1987] = {.lex_state = 143}, - [1988] = {.lex_state = 43, .external_lex_state = 2}, - [1989] = {.lex_state = 1189}, - [1990] = {.lex_state = 36, .external_lex_state = 2}, - [1991] = {.lex_state = 143}, + [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 = 140}, + [1908] = {.lex_state = 140}, + [1909] = {.lex_state = 1181}, + [1910] = {.lex_state = 625, .external_lex_state = 2}, + [1911] = {.lex_state = 625, .external_lex_state = 2}, + [1912] = {.lex_state = 625, .external_lex_state = 2}, + [1913] = {.lex_state = 162, .external_lex_state = 2}, + [1914] = {.lex_state = 126, .external_lex_state = 2}, + [1915] = {.lex_state = 267}, + [1916] = {.lex_state = 162, .external_lex_state = 2}, + [1917] = {.lex_state = 162, .external_lex_state = 2}, + [1918] = {.lex_state = 176, .external_lex_state = 2}, + [1919] = {.lex_state = 1184}, + [1920] = {.lex_state = 1182}, + [1921] = {.lex_state = 625, .external_lex_state = 2}, + [1922] = {.lex_state = 142}, + [1923] = {.lex_state = 1182}, + [1924] = {.lex_state = 162, .external_lex_state = 2}, + [1925] = {.lex_state = 141}, + [1926] = {.lex_state = 625, .external_lex_state = 2}, + [1927] = {.lex_state = 625, .external_lex_state = 2}, + [1928] = {.lex_state = 625, .external_lex_state = 2}, + [1929] = {.lex_state = 625, .external_lex_state = 2}, + [1930] = {.lex_state = 625, .external_lex_state = 2}, + [1931] = {.lex_state = 20}, + [1932] = {.lex_state = 176, .external_lex_state = 2}, + [1933] = {.lex_state = 625, .external_lex_state = 2}, + [1934] = {.lex_state = 1180}, + [1935] = {.lex_state = 625, .external_lex_state = 2}, + [1936] = {.lex_state = 625, .external_lex_state = 2}, + [1937] = {.lex_state = 162, .external_lex_state = 2}, + [1938] = {.lex_state = 20}, + [1939] = {.lex_state = 625, .external_lex_state = 2}, + [1940] = {.lex_state = 162, .external_lex_state = 2}, + [1941] = {.lex_state = 625, .external_lex_state = 2}, + [1942] = {.lex_state = 625, .external_lex_state = 2}, + [1943] = {.lex_state = 162, .external_lex_state = 2}, + [1944] = {.lex_state = 625, .external_lex_state = 2}, + [1945] = {.lex_state = 625, .external_lex_state = 2}, + [1946] = {.lex_state = 625, .external_lex_state = 2}, + [1947] = {.lex_state = 267}, + [1948] = {.lex_state = 143}, + [1949] = {.lex_state = 21}, + [1950] = {.lex_state = 574}, + [1951] = {.lex_state = 91}, + [1952] = {.lex_state = 1183}, + [1953] = {.lex_state = 126, .external_lex_state = 2}, + [1954] = {.lex_state = 1185}, + [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 = 143}, - [1994] = {.lex_state = 36, .external_lex_state = 2}, - [1995] = {.lex_state = 1189}, - [1996] = {.lex_state = 579}, - [1997] = {.lex_state = 579}, - [1998] = {.lex_state = 1189}, - [1999] = {.lex_state = 578}, - [2000] = {.lex_state = 43, .external_lex_state = 2}, - [2001] = {.lex_state = 158, .external_lex_state = 2}, - [2002] = {.lex_state = 158, .external_lex_state = 2}, - [2003] = {.lex_state = 579}, - [2004] = {.lex_state = 579}, - [2005] = {.lex_state = 153, .external_lex_state = 2}, - [2006] = {.lex_state = 579}, - [2007] = {.lex_state = 88}, - [2008] = {.lex_state = 579}, - [2009] = {.lex_state = 579}, - [2010] = {.lex_state = 579}, - [2011] = {.lex_state = 579}, - [2012] = {.lex_state = 579}, - [2013] = {.lex_state = 579}, - [2014] = {.lex_state = 579}, - [2015] = {.lex_state = 579}, - [2016] = {.lex_state = 579}, - [2017] = {.lex_state = 1189}, - [2018] = {.lex_state = 579}, - [2019] = {.lex_state = 579}, - [2020] = {.lex_state = 579}, - [2021] = {.lex_state = 579}, - [2022] = {.lex_state = 579}, - [2023] = {.lex_state = 579}, - [2024] = {.lex_state = 579}, - [2025] = {.lex_state = 579}, - [2026] = {.lex_state = 579}, - [2027] = {.lex_state = 579}, - [2028] = {.lex_state = 579}, - [2029] = {.lex_state = 579}, - [2030] = {.lex_state = 579}, - [2031] = {.lex_state = 579}, - [2032] = {.lex_state = 579}, - [2033] = {.lex_state = 579}, - [2034] = {.lex_state = 579}, - [2035] = {.lex_state = 579}, - [2036] = {.lex_state = 579}, - [2037] = {.lex_state = 579}, - [2038] = {.lex_state = 579}, - [2039] = {.lex_state = 579}, - [2040] = {.lex_state = 579}, - [2041] = {.lex_state = 579}, - [2042] = {.lex_state = 579}, - [2043] = {.lex_state = 579}, - [2044] = {.lex_state = 579}, - [2045] = {.lex_state = 579}, - [2046] = {.lex_state = 579}, - [2047] = {.lex_state = 579}, - [2048] = {.lex_state = 579}, - [2049] = {.lex_state = 579}, - [2050] = {.lex_state = 579}, - [2051] = {.lex_state = 579}, - [2052] = {.lex_state = 579}, - [2053] = {.lex_state = 579}, - [2054] = {.lex_state = 579}, - [2055] = {.lex_state = 579}, - [2056] = {.lex_state = 579}, - [2057] = {.lex_state = 579}, - [2058] = {.lex_state = 579}, - [2059] = {.lex_state = 579}, - [2060] = {.lex_state = 579}, - [2061] = {.lex_state = 579}, - [2062] = {.lex_state = 579}, - [2063] = {.lex_state = 579}, - [2064] = {.lex_state = 579}, - [2065] = {.lex_state = 579}, - [2066] = {.lex_state = 579}, - [2067] = {.lex_state = 579}, - [2068] = {.lex_state = 579}, - [2069] = {.lex_state = 579}, - [2070] = {.lex_state = 579}, - [2071] = {.lex_state = 579}, - [2072] = {.lex_state = 579}, - [2073] = {.lex_state = 579}, - [2074] = {.lex_state = 579}, - [2075] = {.lex_state = 579}, - [2076] = {.lex_state = 579}, - [2077] = {.lex_state = 579}, - [2078] = {.lex_state = 579}, - [2079] = {.lex_state = 579}, - [2080] = {.lex_state = 579}, - [2081] = {.lex_state = 579}, - [2082] = {.lex_state = 579}, - [2083] = {.lex_state = 579}, - [2084] = {.lex_state = 579}, - [2085] = {.lex_state = 579}, - [2086] = {.lex_state = 579}, - [2087] = {.lex_state = 579}, - [2088] = {.lex_state = 579}, - [2089] = {.lex_state = 579}, - [2090] = {.lex_state = 579}, - [2091] = {.lex_state = 579}, - [2092] = {.lex_state = 579}, - [2093] = {.lex_state = 579}, - [2094] = {.lex_state = 579}, - [2095] = {.lex_state = 579}, - [2096] = {.lex_state = 579}, - [2097] = {.lex_state = 579}, - [2098] = {.lex_state = 579}, - [2099] = {.lex_state = 579}, - [2100] = {.lex_state = 43, .external_lex_state = 2}, - [2101] = {.lex_state = 1189}, - [2102] = {.lex_state = 1189}, - [2103] = {.lex_state = 158, .external_lex_state = 2}, - [2104] = {.lex_state = 158, .external_lex_state = 2}, - [2105] = {.lex_state = 1189}, - [2106] = {.lex_state = 1189}, - [2107] = {.lex_state = 19}, - [2108] = {.lex_state = 1189}, - [2109] = {.lex_state = 153, .external_lex_state = 2}, - [2110] = {.lex_state = 579}, - [2111] = {.lex_state = 166, .external_lex_state = 2}, - [2112] = {.lex_state = 143}, - [2113] = {.lex_state = 166, .external_lex_state = 2}, - [2114] = {.lex_state = 579}, - [2115] = {.lex_state = 158, .external_lex_state = 2}, - [2116] = {.lex_state = 36, .external_lex_state = 2}, - [2117] = {.lex_state = 153, .external_lex_state = 2}, - [2118] = {.lex_state = 158, .external_lex_state = 2}, - [2119] = {.lex_state = 579}, - [2120] = {.lex_state = 43, .external_lex_state = 2}, - [2121] = {.lex_state = 166, .external_lex_state = 2}, - [2122] = {.lex_state = 161, .external_lex_state = 2}, - [2123] = {.lex_state = 166, .external_lex_state = 2}, - [2124] = {.lex_state = 161, .external_lex_state = 2}, - [2125] = {.lex_state = 166, .external_lex_state = 2}, - [2126] = {.lex_state = 161, .external_lex_state = 2}, - [2127] = {.lex_state = 88}, - [2128] = {.lex_state = 579}, - [2129] = {.lex_state = 579}, - [2130] = {.lex_state = 579}, - [2131] = {.lex_state = 166, .external_lex_state = 2}, - [2132] = {.lex_state = 166, .external_lex_state = 2}, - [2133] = {.lex_state = 153, .external_lex_state = 2}, - [2134] = {.lex_state = 579}, - [2135] = {.lex_state = 36, .external_lex_state = 2}, - [2136] = {.lex_state = 36, .external_lex_state = 2}, - [2137] = {.lex_state = 36, .external_lex_state = 2}, - [2138] = {.lex_state = 36, .external_lex_state = 2}, - [2139] = {.lex_state = 1190}, - [2140] = {.lex_state = 36, .external_lex_state = 2}, - [2141] = {.lex_state = 43, .external_lex_state = 2}, - [2142] = {.lex_state = 36, .external_lex_state = 2}, - [2143] = {.lex_state = 36, .external_lex_state = 2}, - [2144] = {.lex_state = 36, .external_lex_state = 2}, - [2145] = {.lex_state = 36, .external_lex_state = 2}, - [2146] = {.lex_state = 579}, - [2147] = {.lex_state = 579}, - [2148] = {.lex_state = 579}, - [2149] = {.lex_state = 579}, - [2150] = {.lex_state = 579}, - [2151] = {.lex_state = 579}, - [2152] = {.lex_state = 579}, - [2153] = {.lex_state = 36, .external_lex_state = 2}, - [2154] = {.lex_state = 579}, - [2155] = {.lex_state = 579}, - [2156] = {.lex_state = 579}, - [2157] = {.lex_state = 579}, - [2158] = {.lex_state = 579}, - [2159] = {.lex_state = 1190}, - [2160] = {.lex_state = 36, .external_lex_state = 2}, - [2161] = {.lex_state = 36, .external_lex_state = 2}, - [2162] = {.lex_state = 36, .external_lex_state = 2}, - [2163] = {.lex_state = 36, .external_lex_state = 2}, - [2164] = {.lex_state = 36, .external_lex_state = 2}, - [2165] = {.lex_state = 579}, - [2166] = {.lex_state = 579}, - [2167] = {.lex_state = 579}, - [2168] = {.lex_state = 579}, - [2169] = {.lex_state = 579}, - [2170] = {.lex_state = 579}, - [2171] = {.lex_state = 579}, - [2172] = {.lex_state = 579}, - [2173] = {.lex_state = 579}, - [2174] = {.lex_state = 579}, - [2175] = {.lex_state = 579}, - [2176] = {.lex_state = 579}, - [2177] = {.lex_state = 36, .external_lex_state = 2}, - [2178] = {.lex_state = 1190}, - [2179] = {.lex_state = 48, .external_lex_state = 2}, - [2180] = {.lex_state = 36, .external_lex_state = 2}, - [2181] = {.lex_state = 36, .external_lex_state = 2}, - [2182] = {.lex_state = 48, .external_lex_state = 2}, - [2183] = {.lex_state = 36, .external_lex_state = 2}, - [2184] = {.lex_state = 36, .external_lex_state = 2}, - [2185] = {.lex_state = 48, .external_lex_state = 2}, - [2186] = {.lex_state = 36, .external_lex_state = 2}, - [2187] = {.lex_state = 36, .external_lex_state = 2}, - [2188] = {.lex_state = 36, .external_lex_state = 2}, - [2189] = {.lex_state = 1190}, - [2190] = {.lex_state = 36, .external_lex_state = 2}, - [2191] = {.lex_state = 36, .external_lex_state = 2}, - [2192] = {.lex_state = 36, .external_lex_state = 2}, - [2193] = {.lex_state = 36, .external_lex_state = 2}, - [2194] = {.lex_state = 36, .external_lex_state = 2}, - [2195] = {.lex_state = 1190}, - [2196] = {.lex_state = 36, .external_lex_state = 2}, - [2197] = {.lex_state = 36, .external_lex_state = 2}, - [2198] = {.lex_state = 36, .external_lex_state = 2}, - [2199] = {.lex_state = 1190}, - [2200] = {.lex_state = 1190}, - [2201] = {.lex_state = 36, .external_lex_state = 2}, - [2202] = {.lex_state = 36, .external_lex_state = 2}, - [2203] = {.lex_state = 36, .external_lex_state = 2}, - [2204] = {.lex_state = 36, .external_lex_state = 2}, - [2205] = {.lex_state = 36, .external_lex_state = 2}, - [2206] = {.lex_state = 36, .external_lex_state = 2}, - [2207] = {.lex_state = 36, .external_lex_state = 2}, - [2208] = {.lex_state = 40, .external_lex_state = 2}, - [2209] = {.lex_state = 36, .external_lex_state = 2}, - [2210] = {.lex_state = 36, .external_lex_state = 2}, - [2211] = {.lex_state = 36, .external_lex_state = 2}, - [2212] = {.lex_state = 36, .external_lex_state = 2}, - [2213] = {.lex_state = 579}, - [2214] = {.lex_state = 579}, - [2215] = {.lex_state = 579}, - [2216] = {.lex_state = 579}, - [2217] = {.lex_state = 579}, - [2218] = {.lex_state = 40, .external_lex_state = 2}, - [2219] = {.lex_state = 579}, - [2220] = {.lex_state = 578}, - [2221] = {.lex_state = 155, .external_lex_state = 2}, - [2222] = {.lex_state = 155, .external_lex_state = 2}, - [2223] = {.lex_state = 48, .external_lex_state = 2}, - [2224] = {.lex_state = 578}, - [2225] = {.lex_state = 155, .external_lex_state = 2}, - [2226] = {.lex_state = 44, .external_lex_state = 2}, - [2227] = {.lex_state = 155, .external_lex_state = 2}, - [2228] = {.lex_state = 157, .external_lex_state = 2}, - [2229] = {.lex_state = 157, .external_lex_state = 2}, - [2230] = {.lex_state = 157, .external_lex_state = 2}, - [2231] = {.lex_state = 575}, - [2232] = {.lex_state = 157, .external_lex_state = 2}, - [2233] = {.lex_state = 575}, - [2234] = {.lex_state = 155, .external_lex_state = 2}, - [2235] = {.lex_state = 46, .external_lex_state = 2}, - [2236] = {.lex_state = 157, .external_lex_state = 2}, - [2237] = {.lex_state = 44, .external_lex_state = 2}, - [2238] = {.lex_state = 575}, - [2239] = {.lex_state = 575}, - [2240] = {.lex_state = 155, .external_lex_state = 2}, - [2241] = {.lex_state = 157, .external_lex_state = 2}, - [2242] = {.lex_state = 45, .external_lex_state = 2}, - [2243] = {.lex_state = 157, .external_lex_state = 2}, - [2244] = {.lex_state = 575}, - [2245] = {.lex_state = 575}, - [2246] = {.lex_state = 48, .external_lex_state = 2}, - [2247] = {.lex_state = 48, .external_lex_state = 2}, - [2248] = {.lex_state = 157, .external_lex_state = 2}, - [2249] = {.lex_state = 45, .external_lex_state = 2}, - [2250] = {.lex_state = 48, .external_lex_state = 2}, - [2251] = {.lex_state = 46, .external_lex_state = 2}, - [2252] = {.lex_state = 157, .external_lex_state = 2}, - [2253] = {.lex_state = 578}, - [2254] = {.lex_state = 46, .external_lex_state = 2}, - [2255] = {.lex_state = 578}, - [2256] = {.lex_state = 578}, - [2257] = {.lex_state = 90}, - [2258] = {.lex_state = 578}, - [2259] = {.lex_state = 47, .external_lex_state = 2}, - [2260] = {.lex_state = 578}, - [2261] = {.lex_state = 578}, - [2262] = {.lex_state = 47, .external_lex_state = 2}, - [2263] = {.lex_state = 5}, - [2264] = {.lex_state = 47, .external_lex_state = 2}, - [2265] = {.lex_state = 633}, - [2266] = {.lex_state = 47, .external_lex_state = 2}, - [2267] = {.lex_state = 47, .external_lex_state = 2}, - [2268] = {.lex_state = 47, .external_lex_state = 2}, - [2269] = {.lex_state = 47, .external_lex_state = 2}, + [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 = 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 = 47, .external_lex_state = 2}, - [2272] = {.lex_state = 47, .external_lex_state = 2}, - [2273] = {.lex_state = 579}, - [2274] = {.lex_state = 47, .external_lex_state = 2}, - [2275] = {.lex_state = 47, .external_lex_state = 2}, - [2276] = {.lex_state = 47, .external_lex_state = 2}, - [2277] = {.lex_state = 579}, - [2278] = {.lex_state = 579}, + [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 = 579}, - [2281] = {.lex_state = 579}, - [2282] = {.lex_state = 47, .external_lex_state = 2}, - [2283] = {.lex_state = 47, .external_lex_state = 2}, - [2284] = {.lex_state = 47, .external_lex_state = 2}, - [2285] = {.lex_state = 47, .external_lex_state = 2}, - [2286] = {.lex_state = 47, .external_lex_state = 2}, - [2287] = {.lex_state = 47, .external_lex_state = 2}, - [2288] = {.lex_state = 47, .external_lex_state = 2}, - [2289] = {.lex_state = 47, .external_lex_state = 2}, - [2290] = {.lex_state = 47, .external_lex_state = 2}, - [2291] = {.lex_state = 47, .external_lex_state = 2}, - [2292] = {.lex_state = 47, .external_lex_state = 2}, - [2293] = {.lex_state = 47, .external_lex_state = 2}, - [2294] = {.lex_state = 47, .external_lex_state = 2}, - [2295] = {.lex_state = 47, .external_lex_state = 2}, - [2296] = {.lex_state = 634}, - [2297] = {.lex_state = 5}, - [2298] = {.lex_state = 582}, - [2299] = {.lex_state = 633}, - [2300] = {.lex_state = 634}, - [2301] = {.lex_state = 47, .external_lex_state = 2}, - [2302] = {.lex_state = 582}, - [2303] = {.lex_state = 632}, - [2304] = {.lex_state = 637}, - [2305] = {.lex_state = 641}, - [2306] = {.lex_state = 47, .external_lex_state = 2}, - [2307] = {.lex_state = 47, .external_lex_state = 2}, - [2308] = {.lex_state = 47, .external_lex_state = 2}, - [2309] = {.lex_state = 47, .external_lex_state = 2}, - [2310] = {.lex_state = 47, .external_lex_state = 2}, - [2311] = {.lex_state = 47, .external_lex_state = 2}, - [2312] = {.lex_state = 47, .external_lex_state = 2}, - [2313] = {.lex_state = 47, .external_lex_state = 2}, - [2314] = {.lex_state = 47, .external_lex_state = 2}, - [2315] = {.lex_state = 47, .external_lex_state = 2}, - [2316] = {.lex_state = 47, .external_lex_state = 2}, - [2317] = {.lex_state = 634}, - [2318] = {.lex_state = 634}, - [2319] = {.lex_state = 582}, - [2320] = {.lex_state = 582}, - [2321] = {.lex_state = 582}, - [2322] = {.lex_state = 582}, - [2323] = {.lex_state = 637}, - [2324] = {.lex_state = 635}, - [2325] = {.lex_state = 645}, - [2326] = {.lex_state = 635}, - [2327] = {.lex_state = 643}, - [2328] = {.lex_state = 641}, - [2329] = {.lex_state = 643}, - [2330] = {.lex_state = 632}, - [2331] = {.lex_state = 632}, - [2332] = {.lex_state = 582}, - [2333] = {.lex_state = 582}, - [2334] = {.lex_state = 582}, - [2335] = {.lex_state = 582}, - [2336] = {.lex_state = 632}, - [2337] = {.lex_state = 576}, - [2338] = {.lex_state = 576}, - [2339] = {.lex_state = 576}, - [2340] = {.lex_state = 643}, - [2341] = {.lex_state = 645}, - [2342] = {.lex_state = 639}, - [2343] = {.lex_state = 632}, - [2344] = {.lex_state = 632}, - [2345] = {.lex_state = 632}, - [2346] = {.lex_state = 632}, - [2347] = {.lex_state = 576}, - [2348] = {.lex_state = 635}, - [2349] = {.lex_state = 635}, - [2350] = {.lex_state = 638}, - [2351] = {.lex_state = 642}, - [2352] = {.lex_state = 647}, - [2353] = {.lex_state = 645}, - [2354] = {.lex_state = 576}, - [2355] = {.lex_state = 643}, - [2356] = {.lex_state = 576}, - [2357] = {.lex_state = 576}, - [2358] = {.lex_state = 645}, - [2359] = {.lex_state = 645}, - [2360] = {.lex_state = 579}, - [2361] = {.lex_state = 579}, - [2362] = {.lex_state = 644}, - [2363] = {.lex_state = 170, .external_lex_state = 2}, - [2364] = {.lex_state = 649}, - [2365] = {.lex_state = 645}, - [2366] = {.lex_state = 645}, - [2367] = {.lex_state = 639}, - [2368] = {.lex_state = 578}, - [2369] = {.lex_state = 170, .external_lex_state = 2}, - [2370] = {.lex_state = 170, .external_lex_state = 2}, - [2371] = {.lex_state = 50}, - [2372] = {.lex_state = 578}, - [2373] = {.lex_state = 578}, - [2374] = {.lex_state = 647}, - [2375] = {.lex_state = 645}, - [2376] = {.lex_state = 575}, - [2377] = {.lex_state = 644}, - [2378] = {.lex_state = 632}, - [2379] = {.lex_state = 632}, - [2380] = {.lex_state = 632}, - [2381] = {.lex_state = 578}, - [2382] = {.lex_state = 638}, - [2383] = {.lex_state = 632}, - [2384] = {.lex_state = 642}, - [2385] = {.lex_state = 170, .external_lex_state = 2}, - [2386] = {.lex_state = 646}, - [2387] = {.lex_state = 170, .external_lex_state = 2}, - [2388] = {.lex_state = 649}, - [2389] = {.lex_state = 646}, - [2390] = {.lex_state = 51}, - [2391] = {.lex_state = 651}, - [2392] = {.lex_state = 577}, - [2393] = {.lex_state = 649}, - [2394] = {.lex_state = 648}, - [2395] = {.lex_state = 576}, - [2396] = {.lex_state = 651}, - [2397] = {.lex_state = 578}, - [2398] = {.lex_state = 576}, - [2399] = {.lex_state = 577}, - [2400] = {.lex_state = 651}, - [2401] = {.lex_state = 646}, - [2402] = {.lex_state = 577}, - [2403] = {.lex_state = 170, .external_lex_state = 2}, - [2404] = {.lex_state = 640}, - [2405] = {.lex_state = 48, .external_lex_state = 2}, - [2406] = {.lex_state = 651}, - [2407] = {.lex_state = 644}, - [2408] = {.lex_state = 651}, - [2409] = {.lex_state = 51}, - [2410] = {.lex_state = 578}, - [2411] = {.lex_state = 578}, - [2412] = {.lex_state = 578}, - [2413] = {.lex_state = 578}, - [2414] = {.lex_state = 646}, - [2415] = {.lex_state = 578}, - [2416] = {.lex_state = 644}, - [2417] = {.lex_state = 578}, - [2418] = {.lex_state = 646}, - [2419] = {.lex_state = 170, .external_lex_state = 2}, - [2420] = {.lex_state = 52}, - [2421] = {.lex_state = 578}, - [2422] = {.lex_state = 54}, - [2423] = {.lex_state = 649}, - [2424] = {.lex_state = 50}, - [2425] = {.lex_state = 577}, - [2426] = {.lex_state = 48, .external_lex_state = 2}, - [2427] = {.lex_state = 646}, - [2428] = {.lex_state = 50}, - [2429] = {.lex_state = 646}, - [2430] = {.lex_state = 646}, - [2431] = {.lex_state = 646}, + [2280] = {.lex_state = 50, .external_lex_state = 2}, + [2281] = {.lex_state = 48, .external_lex_state = 2}, + [2282] = {.lex_state = 50, .external_lex_state = 2}, + [2283] = {.lex_state = 158, .external_lex_state = 2}, + [2284] = {.lex_state = 158, .external_lex_state = 2}, + [2285] = {.lex_state = 50, .external_lex_state = 2}, + [2286] = {.lex_state = 573}, + [2287] = {.lex_state = 48, .external_lex_state = 2}, + [2288] = {.lex_state = 573}, + [2289] = {.lex_state = 49, .external_lex_state = 2}, + [2290] = {.lex_state = 573}, + [2291] = {.lex_state = 573}, + [2292] = {.lex_state = 573}, + [2293] = {.lex_state = 571}, + [2294] = {.lex_state = 573}, + [2295] = {.lex_state = 49, .external_lex_state = 2}, + [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 = 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 = 651}, - [2434] = {.lex_state = 640}, - [2435] = {.lex_state = 577}, - [2436] = {.lex_state = 651}, - [2437] = {.lex_state = 577}, - [2438] = {.lex_state = 577}, - [2439] = {.lex_state = 577}, - [2440] = {.lex_state = 577}, - [2441] = {.lex_state = 651}, - [2442] = {.lex_state = 655}, - [2443] = {.lex_state = 577}, - [2444] = {.lex_state = 577}, - [2445] = {.lex_state = 651}, - [2446] = {.lex_state = 653}, - [2447] = {.lex_state = 55}, - [2448] = {.lex_state = 577}, - [2449] = {.lex_state = 650}, - [2450] = {.lex_state = 50}, - [2451] = {.lex_state = 575}, - [2452] = {.lex_state = 50}, - [2453] = {.lex_state = 50}, - [2454] = {.lex_state = 650}, - [2455] = {.lex_state = 577}, - [2456] = {.lex_state = 577}, - [2457] = {.lex_state = 55}, - [2458] = {.lex_state = 576}, - [2459] = {.lex_state = 56}, - [2460] = {.lex_state = 577}, - [2461] = {.lex_state = 576}, - [2462] = {.lex_state = 576}, - [2463] = {.lex_state = 577}, - [2464] = {.lex_state = 651}, - [2465] = {.lex_state = 578}, - [2466] = {.lex_state = 56}, - [2467] = {.lex_state = 577}, - [2468] = {.lex_state = 578}, - [2469] = {.lex_state = 653}, - [2470] = {.lex_state = 577}, - [2471] = {.lex_state = 577}, - [2472] = {.lex_state = 154, .external_lex_state = 2}, - [2473] = {.lex_state = 577}, - [2474] = {.lex_state = 577}, - [2475] = {.lex_state = 646}, - [2476] = {.lex_state = 652}, - [2477] = {.lex_state = 2}, - [2478] = {.lex_state = 577}, - [2479] = {.lex_state = 57}, - [2480] = {.lex_state = 657}, - [2481] = {.lex_state = 652}, - [2482] = {.lex_state = 652}, - [2483] = {.lex_state = 2}, - [2484] = {.lex_state = 578}, - [2485] = {.lex_state = 154, .external_lex_state = 2}, - [2486] = {.lex_state = 577}, - [2487] = {.lex_state = 578}, - [2488] = {.lex_state = 578}, - [2489] = {.lex_state = 650}, - [2490] = {.lex_state = 578}, - [2491] = {.lex_state = 56}, - [2492] = {.lex_state = 655}, - [2493] = {.lex_state = 578}, - [2494] = {.lex_state = 2}, - [2495] = {.lex_state = 2}, - [2496] = {.lex_state = 56}, - [2497] = {.lex_state = 154, .external_lex_state = 2}, - [2498] = {.lex_state = 652}, - [2499] = {.lex_state = 154, .external_lex_state = 2}, - [2500] = {.lex_state = 578}, - [2501] = {.lex_state = 577}, - [2502] = {.lex_state = 53}, - [2503] = {.lex_state = 652}, - [2504] = {.lex_state = 2}, - [2505] = {.lex_state = 657}, - [2506] = {.lex_state = 578}, - [2507] = {.lex_state = 578}, - [2508] = {.lex_state = 576}, - [2509] = {.lex_state = 577}, + [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 = 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 = 569}, [2510] = {.lex_state = 650}, - [2511] = {.lex_state = 578}, - [2512] = {.lex_state = 578}, - [2513] = {.lex_state = 578}, - [2514] = {.lex_state = 578}, - [2515] = {.lex_state = 578}, - [2516] = {.lex_state = 577}, - [2517] = {.lex_state = 578}, - [2518] = {.lex_state = 652}, - [2519] = {.lex_state = 577}, - [2520] = {.lex_state = 577}, - [2521] = {.lex_state = 2}, - [2522] = {.lex_state = 659}, - [2523] = {.lex_state = 576}, - [2524] = {.lex_state = 2}, - [2525] = {.lex_state = 652}, - [2526] = {.lex_state = 577}, - [2527] = {.lex_state = 577}, - [2528] = {.lex_state = 659}, - [2529] = {.lex_state = 2}, - [2530] = {.lex_state = 2}, - [2531] = {.lex_state = 659}, - [2532] = {.lex_state = 659}, - [2533] = {.lex_state = 2}, - [2534] = {.lex_state = 656}, - [2535] = {.lex_state = 659}, - [2536] = {.lex_state = 659}, - [2537] = {.lex_state = 58}, - [2538] = {.lex_state = 576}, - [2539] = {.lex_state = 2}, - [2540] = {.lex_state = 577}, - [2541] = {.lex_state = 576}, - [2542] = {.lex_state = 654}, - [2543] = {.lex_state = 652}, - [2544] = {.lex_state = 657}, - [2545] = {.lex_state = 577}, - [2546] = {.lex_state = 577}, - [2547] = {.lex_state = 576}, - [2548] = {.lex_state = 576}, - [2549] = {.lex_state = 577}, - [2550] = {.lex_state = 578}, - [2551] = {.lex_state = 576}, - [2552] = {.lex_state = 576}, - [2553] = {.lex_state = 652}, - [2554] = {.lex_state = 659}, - [2555] = {.lex_state = 577}, - [2556] = {.lex_state = 578}, - [2557] = {.lex_state = 659}, - [2558] = {.lex_state = 652}, - [2559] = {.lex_state = 659}, - [2560] = {.lex_state = 577}, - [2561] = {.lex_state = 577}, - [2562] = {.lex_state = 657}, - [2563] = {.lex_state = 577}, - [2564] = {.lex_state = 577}, - [2565] = {.lex_state = 577}, - [2566] = {.lex_state = 578}, - [2567] = {.lex_state = 577}, - [2568] = {.lex_state = 577}, - [2569] = {.lex_state = 578}, - [2570] = {.lex_state = 659}, - [2571] = {.lex_state = 578}, - [2572] = {.lex_state = 2}, - [2573] = {.lex_state = 576}, - [2574] = {.lex_state = 576}, - [2575] = {.lex_state = 576}, - [2576] = {.lex_state = 2}, - [2577] = {.lex_state = 578}, - [2578] = {.lex_state = 659}, - [2579] = {.lex_state = 2}, - [2580] = {.lex_state = 2}, - [2581] = {.lex_state = 2}, - [2582] = {.lex_state = 2}, - [2583] = {.lex_state = 659}, - [2584] = {.lex_state = 2}, - [2585] = {.lex_state = 578}, - [2586] = {.lex_state = 578}, - [2587] = {.lex_state = 578}, - [2588] = {.lex_state = 578}, - [2589] = {.lex_state = 659}, - [2590] = {.lex_state = 578}, - [2591] = {.lex_state = 578}, - [2592] = {.lex_state = 2}, - [2593] = {.lex_state = 58}, - [2594] = {.lex_state = 638}, - [2595] = {.lex_state = 2}, - [2596] = {.lex_state = 2}, - [2597] = {.lex_state = 2}, - [2598] = {.lex_state = 638}, - [2599] = {.lex_state = 2}, - [2600] = {.lex_state = 59}, - [2601] = {.lex_state = 638}, - [2602] = {.lex_state = 59}, - [2603] = {.lex_state = 577}, - [2604] = {.lex_state = 578}, - [2605] = {.lex_state = 578}, - [2606] = {.lex_state = 578}, - [2607] = {.lex_state = 2}, - [2608] = {.lex_state = 659}, - [2609] = {.lex_state = 659}, - [2610] = {.lex_state = 577}, - [2611] = {.lex_state = 577}, - [2612] = {.lex_state = 577}, - [2613] = {.lex_state = 577}, - [2614] = {.lex_state = 577}, - [2615] = {.lex_state = 658}, - [2616] = {.lex_state = 659}, - [2617] = {.lex_state = 2}, - [2618] = {.lex_state = 2}, - [2619] = {.lex_state = 658}, - [2620] = {.lex_state = 577}, - [2621] = {.lex_state = 577}, - [2622] = {.lex_state = 659}, - [2623] = {.lex_state = 576}, - [2624] = {.lex_state = 59}, - [2625] = {.lex_state = 577}, - [2626] = {.lex_state = 638}, - [2627] = {.lex_state = 59}, - [2628] = {.lex_state = 659}, - [2629] = {.lex_state = 59}, - [2630] = {.lex_state = 638}, - [2631] = {.lex_state = 2}, - [2632] = {.lex_state = 110}, - [2633] = {.lex_state = 2}, - [2634] = {.lex_state = 659}, - [2635] = {.lex_state = 661}, - [2636] = {.lex_state = 638}, - [2637] = {.lex_state = 577}, - [2638] = {.lex_state = 638}, - [2639] = {.lex_state = 577}, - [2640] = {.lex_state = 577}, - [2641] = {.lex_state = 638}, - [2642] = {.lex_state = 638}, - [2643] = {.lex_state = 638}, - [2644] = {.lex_state = 638}, - [2645] = {.lex_state = 656}, - [2646] = {.lex_state = 659}, - [2647] = {.lex_state = 659}, - [2648] = {.lex_state = 659}, - [2649] = {.lex_state = 576}, - [2650] = {.lex_state = 659}, - [2651] = {.lex_state = 659}, - [2652] = {.lex_state = 659}, - [2653] = {.lex_state = 654}, - [2654] = {.lex_state = 659}, - [2655] = {.lex_state = 659}, - [2656] = {.lex_state = 577}, - [2657] = {.lex_state = 577}, - [2658] = {.lex_state = 577}, - [2659] = {.lex_state = 578}, - [2660] = {.lex_state = 578}, - [2661] = {.lex_state = 2}, - [2662] = {.lex_state = 578}, - [2663] = {.lex_state = 578}, - [2664] = {.lex_state = 578}, - [2665] = {.lex_state = 578}, - [2666] = {.lex_state = 578}, - [2667] = {.lex_state = 578}, - [2668] = {.lex_state = 578}, - [2669] = {.lex_state = 578}, - [2670] = {.lex_state = 2}, - [2671] = {.lex_state = 2}, - [2672] = {.lex_state = 2}, - [2673] = {.lex_state = 2}, - [2674] = {.lex_state = 2}, - [2675] = {.lex_state = 2}, - [2676] = {.lex_state = 578}, - [2677] = {.lex_state = 578}, - [2678] = {.lex_state = 578}, - [2679] = {.lex_state = 578}, - [2680] = {.lex_state = 578}, - [2681] = {.lex_state = 578}, - [2682] = {.lex_state = 576}, - [2683] = {.lex_state = 625}, - [2684] = {.lex_state = 660}, - [2685] = {.lex_state = 632}, - [2686] = {.lex_state = 578}, - [2687] = {.lex_state = 578}, - [2688] = {.lex_state = 660}, - [2689] = {.lex_state = 578}, - [2690] = {.lex_state = 578}, - [2691] = {.lex_state = 578}, - [2692] = {.lex_state = 578}, - [2693] = {.lex_state = 578}, - [2694] = {.lex_state = 578}, - [2695] = {.lex_state = 578}, - [2696] = {.lex_state = 578}, - [2697] = {.lex_state = 578}, - [2698] = {.lex_state = 578}, - [2699] = {.lex_state = 578}, - [2700] = {.lex_state = 578}, - [2701] = {.lex_state = 578}, - [2702] = {.lex_state = 578}, - [2703] = {.lex_state = 578}, - [2704] = {.lex_state = 578}, - [2705] = {.lex_state = 2}, - [2706] = {.lex_state = 578}, - [2707] = {.lex_state = 578}, - [2708] = {.lex_state = 578}, - [2709] = {.lex_state = 578}, - [2710] = {.lex_state = 578}, - [2711] = {.lex_state = 578}, - [2712] = {.lex_state = 638}, - [2713] = {.lex_state = 578}, - [2714] = {.lex_state = 578}, - [2715] = {.lex_state = 578}, - [2716] = {.lex_state = 578}, - [2717] = {.lex_state = 638}, - [2718] = {.lex_state = 625}, - [2719] = {.lex_state = 659}, - [2720] = {.lex_state = 578}, - [2721] = {.lex_state = 578}, - [2722] = {.lex_state = 578}, - [2723] = {.lex_state = 578}, - [2724] = {.lex_state = 578}, - [2725] = {.lex_state = 2}, - [2726] = {.lex_state = 638}, - [2727] = {.lex_state = 638}, - [2728] = {.lex_state = 638}, - [2729] = {.lex_state = 578}, - [2730] = {.lex_state = 578}, - [2731] = {.lex_state = 578}, - [2732] = {.lex_state = 578}, - [2733] = {.lex_state = 578}, - [2734] = {.lex_state = 578}, - [2735] = {.lex_state = 632}, - [2736] = {.lex_state = 632}, - [2737] = {.lex_state = 578}, - [2738] = {.lex_state = 632}, - [2739] = {.lex_state = 578}, - [2740] = {.lex_state = 578}, - [2741] = {.lex_state = 632}, - [2742] = {.lex_state = 578}, - [2743] = {.lex_state = 660}, - [2744] = {.lex_state = 658}, - [2745] = {.lex_state = 578}, - [2746] = {.lex_state = 578}, - [2747] = {.lex_state = 578}, - [2748] = {.lex_state = 577}, - [2749] = {.lex_state = 2}, - [2750] = {.lex_state = 578}, - [2751] = {.lex_state = 578}, - [2752] = {.lex_state = 660}, - [2753] = {.lex_state = 2}, - [2754] = {.lex_state = 660}, - [2755] = {.lex_state = 578}, - [2756] = {.lex_state = 578}, - [2757] = {.lex_state = 578}, - [2758] = {.lex_state = 578}, - [2759] = {.lex_state = 578}, - [2760] = {.lex_state = 578}, - [2761] = {.lex_state = 578}, - [2762] = {.lex_state = 578}, - [2763] = {.lex_state = 578}, - [2764] = {.lex_state = 578}, - [2765] = {.lex_state = 578}, - [2766] = {.lex_state = 578}, - [2767] = {.lex_state = 660}, - [2768] = {.lex_state = 578}, - [2769] = {.lex_state = 578}, - [2770] = {.lex_state = 578}, - [2771] = {.lex_state = 661}, - [2772] = {.lex_state = 578}, - [2773] = {.lex_state = 578}, - [2774] = {.lex_state = 578}, - [2775] = {.lex_state = 578}, - [2776] = {.lex_state = 638}, - [2777] = {.lex_state = 660}, - [2778] = {.lex_state = 577}, - [2779] = {.lex_state = 660}, - [2780] = {.lex_state = 578}, - [2781] = {.lex_state = 658}, - [2782] = {.lex_state = 578}, - [2783] = {.lex_state = 625}, - [2784] = {.lex_state = 578}, - [2785] = {.lex_state = 578}, - [2786] = {.lex_state = 578}, - [2787] = {.lex_state = 578}, - [2788] = {.lex_state = 660}, - [2789] = {.lex_state = 578}, - [2790] = {.lex_state = 638}, - [2791] = {.lex_state = 578}, - [2792] = {.lex_state = 578}, - [2793] = {.lex_state = 578}, - [2794] = {.lex_state = 578}, - [2795] = {.lex_state = 578}, - [2796] = {.lex_state = 578}, - [2797] = {.lex_state = 578}, - [2798] = {.lex_state = 577}, - [2799] = {.lex_state = 578}, - [2800] = {.lex_state = 61}, - [2801] = {.lex_state = 578}, - [2802] = {.lex_state = 578}, - [2803] = {.lex_state = 638}, - [2804] = {.lex_state = 578}, - [2805] = {.lex_state = 578}, - [2806] = {.lex_state = 577}, - [2807] = {.lex_state = 578}, - [2808] = {.lex_state = 578}, - [2809] = {.lex_state = 638}, - [2810] = {.lex_state = 578}, - [2811] = {.lex_state = 578}, - [2812] = {.lex_state = 60}, - [2813] = {.lex_state = 660}, - [2814] = {.lex_state = 578}, - [2815] = {.lex_state = 654}, - [2816] = {.lex_state = 638}, - [2817] = {.lex_state = 638}, - [2818] = {.lex_state = 578}, - [2819] = {.lex_state = 660}, - [2820] = {.lex_state = 578}, - [2821] = {.lex_state = 660}, - [2822] = {.lex_state = 578}, - [2823] = {.lex_state = 578}, - [2824] = {.lex_state = 578}, - [2825] = {.lex_state = 578}, - [2826] = {.lex_state = 576}, - [2827] = {.lex_state = 625}, - [2828] = {.lex_state = 576}, - [2829] = {.lex_state = 578}, - [2830] = {.lex_state = 576}, - [2831] = {.lex_state = 578}, - [2832] = {.lex_state = 578}, - [2833] = {.lex_state = 660}, - [2834] = {.lex_state = 578}, - [2835] = {.lex_state = 578}, - [2836] = {.lex_state = 578}, - [2837] = {.lex_state = 578}, - [2838] = {.lex_state = 578}, - [2839] = {.lex_state = 578}, - [2840] = {.lex_state = 578}, - [2841] = {.lex_state = 578}, - [2842] = {.lex_state = 578}, - [2843] = {.lex_state = 576}, - [2844] = {.lex_state = 2}, - [2845] = {.lex_state = 632}, - [2846] = {.lex_state = 632}, - [2847] = {.lex_state = 2}, - [2848] = {.lex_state = 2}, - [2849] = {.lex_state = 578}, - [2850] = {.lex_state = 578}, - [2851] = {.lex_state = 2}, - [2852] = {.lex_state = 2}, - [2853] = {.lex_state = 2}, - [2854] = {.lex_state = 578}, - [2855] = {.lex_state = 632}, - [2856] = {.lex_state = 578}, - [2857] = {.lex_state = 65}, - [2858] = {.lex_state = 632}, - [2859] = {.lex_state = 2}, - [2860] = {.lex_state = 578}, - [2861] = {.lex_state = 2}, - [2862] = {.lex_state = 2}, - [2863] = {.lex_state = 626}, - [2864] = {.lex_state = 576}, - [2865] = {.lex_state = 2}, - [2866] = {.lex_state = 2}, - [2867] = {.lex_state = 110}, - [2868] = {.lex_state = 2}, - [2869] = {.lex_state = 2}, - [2870] = {.lex_state = 660}, - [2871] = {.lex_state = 660}, - [2872] = {.lex_state = 660}, - [2873] = {.lex_state = 2}, - [2874] = {.lex_state = 2}, - [2875] = {.lex_state = 2}, - [2876] = {.lex_state = 577}, - [2877] = {.lex_state = 577}, - [2878] = {.lex_state = 660}, - [2879] = {.lex_state = 660}, - [2880] = {.lex_state = 660}, - [2881] = {.lex_state = 2}, - [2882] = {.lex_state = 578}, - [2883] = {.lex_state = 2}, - [2884] = {.lex_state = 578}, - [2885] = {.lex_state = 578}, - [2886] = {.lex_state = 578}, - [2887] = {.lex_state = 578}, - [2888] = {.lex_state = 626}, - [2889] = {.lex_state = 578}, - [2890] = {.lex_state = 578}, - [2891] = {.lex_state = 578}, - [2892] = {.lex_state = 578}, - [2893] = {.lex_state = 578}, - [2894] = {.lex_state = 578}, - [2895] = {.lex_state = 578}, - [2896] = {.lex_state = 578}, - [2897] = {.lex_state = 578}, - [2898] = {.lex_state = 578}, - [2899] = {.lex_state = 110}, - [2900] = {.lex_state = 660}, - [2901] = {.lex_state = 660}, - [2902] = {.lex_state = 578}, - [2903] = {.lex_state = 578}, - [2904] = {.lex_state = 660}, - [2905] = {.lex_state = 577}, - [2906] = {.lex_state = 660}, - [2907] = {.lex_state = 577}, - [2908] = {.lex_state = 577}, - [2909] = {.lex_state = 577}, - [2910] = {.lex_state = 124, .external_lex_state = 2}, - [2911] = {.lex_state = 660}, - [2912] = {.lex_state = 654}, - [2913] = {.lex_state = 62}, - [2914] = {.lex_state = 577}, - [2915] = {.lex_state = 577}, - [2916] = {.lex_state = 626}, - [2917] = {.lex_state = 62}, - [2918] = {.lex_state = 577}, - [2919] = {.lex_state = 626}, - [2920] = {.lex_state = 110}, - [2921] = {.lex_state = 110}, - [2922] = {.lex_state = 660}, - [2923] = {.lex_state = 577}, - [2924] = {.lex_state = 576}, + [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 = 572}, + [2570] = {.lex_state = 656}, + [2571] = {.lex_state = 569}, + [2572] = {.lex_state = 569}, + [2573] = {.lex_state = 572}, + [2574] = {.lex_state = 649}, + [2575] = {.lex_state = 572}, + [2576] = {.lex_state = 569}, + [2577] = {.lex_state = 651}, + [2578] = {.lex_state = 654}, + [2579] = {.lex_state = 60}, + [2580] = {.lex_state = 569}, + [2581] = {.lex_state = 573}, + [2582] = {.lex_state = 569}, + [2583] = {.lex_state = 572}, + [2584] = {.lex_state = 569}, + [2585] = {.lex_state = 649}, + [2586] = {.lex_state = 569}, + [2587] = {.lex_state = 569}, + [2588] = {.lex_state = 573}, + [2589] = {.lex_state = 649}, + [2590] = {.lex_state = 656}, + [2591] = {.lex_state = 573}, + [2592] = {.lex_state = 572}, + [2593] = {.lex_state = 2}, + [2594] = {.lex_state = 569}, + [2595] = {.lex_state = 569}, + [2596] = {.lex_state = 573}, + [2597] = {.lex_state = 569}, + [2598] = {.lex_state = 572}, + [2599] = {.lex_state = 569}, + [2600] = {.lex_state = 572}, + [2601] = {.lex_state = 60}, + [2602] = {.lex_state = 569}, + [2603] = {.lex_state = 572}, + [2604] = {.lex_state = 654}, + [2605] = {.lex_state = 573}, + [2606] = {.lex_state = 573}, + [2607] = {.lex_state = 656}, + [2608] = {.lex_state = 569}, + [2609] = {.lex_state = 569}, + [2610] = {.lex_state = 656}, + [2611] = {.lex_state = 656}, + [2612] = {.lex_state = 569}, + [2613] = {.lex_state = 656}, + [2614] = {.lex_state = 2}, + [2615] = {.lex_state = 2}, + [2616] = {.lex_state = 573}, + [2617] = {.lex_state = 572}, + [2618] = {.lex_state = 569}, + [2619] = {.lex_state = 649}, + [2620] = {.lex_state = 569}, + [2621] = {.lex_state = 572}, + [2622] = {.lex_state = 2}, + [2623] = {.lex_state = 649}, + [2624] = {.lex_state = 2}, + [2625] = {.lex_state = 2}, + [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 = 655}, + [2715] = {.lex_state = 573}, + [2716] = {.lex_state = 573}, + [2717] = {.lex_state = 573}, + [2718] = {.lex_state = 635}, + [2719] = {.lex_state = 569}, + [2720] = {.lex_state = 573}, + [2721] = {.lex_state = 573}, + [2722] = {.lex_state = 635}, + [2723] = {.lex_state = 63}, + [2724] = {.lex_state = 573}, + [2725] = {.lex_state = 573}, + [2726] = {.lex_state = 573}, + [2727] = {.lex_state = 573}, + [2728] = {.lex_state = 573}, + [2729] = {.lex_state = 573}, + [2730] = {.lex_state = 573}, + [2731] = {.lex_state = 573}, + [2732] = {.lex_state = 573}, + [2733] = {.lex_state = 573}, + [2734] = {.lex_state = 573}, + [2735] = {.lex_state = 573}, + [2736] = {.lex_state = 573}, + [2737] = {.lex_state = 573}, + [2738] = {.lex_state = 573}, + [2739] = {.lex_state = 573}, + [2740] = {.lex_state = 573}, + [2741] = {.lex_state = 573}, + [2742] = {.lex_state = 573}, + [2743] = {.lex_state = 573}, + [2744] = {.lex_state = 573}, + [2745] = {.lex_state = 573}, + [2746] = {.lex_state = 573}, + [2747] = {.lex_state = 573}, + [2748] = {.lex_state = 573}, + [2749] = {.lex_state = 573}, + [2750] = {.lex_state = 573}, + [2751] = {.lex_state = 573}, + [2752] = {.lex_state = 573}, + [2753] = {.lex_state = 573}, + [2754] = {.lex_state = 573}, + [2755] = {.lex_state = 573}, + [2756] = {.lex_state = 573}, + [2757] = {.lex_state = 573}, + [2758] = {.lex_state = 573}, + [2759] = {.lex_state = 651}, + [2760] = {.lex_state = 573}, + [2761] = {.lex_state = 62}, + [2762] = {.lex_state = 573}, + [2763] = {.lex_state = 573}, + [2764] = {.lex_state = 573}, + [2765] = {.lex_state = 573}, + [2766] = {.lex_state = 573}, + [2767] = {.lex_state = 573}, + [2768] = {.lex_state = 573}, + [2769] = {.lex_state = 573}, + [2770] = {.lex_state = 573}, + [2771] = {.lex_state = 573}, + [2772] = {.lex_state = 573}, + [2773] = {.lex_state = 573}, + [2774] = {.lex_state = 573}, + [2775] = {.lex_state = 573}, + [2776] = {.lex_state = 573}, + [2777] = {.lex_state = 573}, + [2778] = {.lex_state = 573}, + [2779] = {.lex_state = 573}, + [2780] = {.lex_state = 573}, + [2781] = {.lex_state = 573}, + [2782] = {.lex_state = 573}, + [2783] = {.lex_state = 573}, + [2784] = {.lex_state = 635}, + [2785] = {.lex_state = 573}, + [2786] = {.lex_state = 573}, + [2787] = {.lex_state = 573}, + [2788] = {.lex_state = 573}, + [2789] = {.lex_state = 573}, + [2790] = {.lex_state = 573}, + [2791] = {.lex_state = 573}, + [2792] = {.lex_state = 573}, + [2793] = {.lex_state = 573}, + [2794] = {.lex_state = 657}, + [2795] = {.lex_state = 573}, + [2796] = {.lex_state = 655}, + [2797] = {.lex_state = 573}, + [2798] = {.lex_state = 573}, + [2799] = {.lex_state = 635}, + [2800] = {.lex_state = 573}, + [2801] = {.lex_state = 657}, + [2802] = {.lex_state = 573}, + [2803] = {.lex_state = 573}, + [2804] = {.lex_state = 572}, + [2805] = {.lex_state = 657}, + [2806] = {.lex_state = 657}, + [2807] = {.lex_state = 655}, + [2808] = {.lex_state = 573}, + [2809] = {.lex_state = 657}, + [2810] = {.lex_state = 657}, + [2811] = {.lex_state = 573}, + [2812] = {.lex_state = 572}, + [2813] = {.lex_state = 657}, + [2814] = {.lex_state = 657}, + [2815] = {.lex_state = 573}, + [2816] = {.lex_state = 657}, + [2817] = {.lex_state = 635}, + [2818] = {.lex_state = 635}, + [2819] = {.lex_state = 573}, + [2820] = {.lex_state = 635}, + [2821] = {.lex_state = 635}, + [2822] = {.lex_state = 656}, + [2823] = {.lex_state = 569}, + [2824] = {.lex_state = 621}, + [2825] = {.lex_state = 569}, + [2826] = {.lex_state = 573}, + [2827] = {.lex_state = 573}, + [2828] = {.lex_state = 573}, + [2829] = {.lex_state = 573}, + [2830] = {.lex_state = 573}, + [2831] = {.lex_state = 2}, + [2832] = {.lex_state = 2}, + [2833] = {.lex_state = 2}, + [2834] = {.lex_state = 2}, + [2835] = {.lex_state = 2}, + [2836] = {.lex_state = 2}, + [2837] = {.lex_state = 573}, + [2838] = {.lex_state = 573}, + [2839] = {.lex_state = 573}, + [2840] = {.lex_state = 573}, + [2841] = {.lex_state = 573}, + [2842] = {.lex_state = 629}, + [2843] = {.lex_state = 573}, + [2844] = {.lex_state = 573}, + [2845] = {.lex_state = 629}, + [2846] = {.lex_state = 573}, + [2847] = {.lex_state = 573}, + [2848] = {.lex_state = 573}, + [2849] = {.lex_state = 573}, + [2850] = {.lex_state = 573}, + [2851] = {.lex_state = 573}, + [2852] = {.lex_state = 573}, + [2853] = {.lex_state = 573}, + [2854] = {.lex_state = 629}, + [2855] = {.lex_state = 629}, + [2856] = {.lex_state = 2}, + [2857] = {.lex_state = 573}, + [2858] = {.lex_state = 573}, + [2859] = {.lex_state = 573}, + [2860] = {.lex_state = 2}, + [2861] = {.lex_state = 573}, + [2862] = {.lex_state = 573}, + [2863] = {.lex_state = 635}, + [2864] = {.lex_state = 658}, + [2865] = {.lex_state = 573}, + [2866] = {.lex_state = 573}, + [2867] = {.lex_state = 629}, + [2868] = {.lex_state = 635}, + [2869] = {.lex_state = 573}, + [2870] = {.lex_state = 569}, + [2871] = {.lex_state = 2}, + [2872] = {.lex_state = 621}, + [2873] = {.lex_state = 657}, + [2874] = {.lex_state = 617}, + [2875] = {.lex_state = 635}, + [2876] = {.lex_state = 2}, + [2877] = {.lex_state = 573}, + [2878] = {.lex_state = 657}, + [2879] = {.lex_state = 2}, + [2880] = {.lex_state = 657}, + [2881] = {.lex_state = 573}, + [2882] = {.lex_state = 573}, + [2883] = {.lex_state = 621}, + [2884] = {.lex_state = 572}, + [2885] = {.lex_state = 572}, + [2886] = {.lex_state = 573}, + [2887] = {.lex_state = 573}, + [2888] = {.lex_state = 573}, + [2889] = {.lex_state = 573}, + [2890] = {.lex_state = 573}, + [2891] = {.lex_state = 573}, + [2892] = {.lex_state = 573}, + [2893] = {.lex_state = 573}, + [2894] = {.lex_state = 573}, + [2895] = {.lex_state = 573}, + [2896] = {.lex_state = 621}, + [2897] = {.lex_state = 621}, + [2898] = {.lex_state = 573}, + [2899] = {.lex_state = 621}, + [2900] = {.lex_state = 621}, + [2901] = {.lex_state = 573}, + [2902] = {.lex_state = 621}, + [2903] = {.lex_state = 573}, + [2904] = {.lex_state = 657}, + [2905] = {.lex_state = 624}, + [2906] = {.lex_state = 573}, + [2907] = {.lex_state = 573}, + [2908] = {.lex_state = 621}, + [2909] = {.lex_state = 621}, + [2910] = {.lex_state = 657}, + [2911] = {.lex_state = 2}, + [2912] = {.lex_state = 621}, + [2913] = {.lex_state = 629}, + [2914] = {.lex_state = 2}, + [2915] = {.lex_state = 2}, + [2916] = {.lex_state = 657}, + [2917] = {.lex_state = 572}, + [2918] = {.lex_state = 657}, + [2919] = {.lex_state = 573}, + [2920] = {.lex_state = 657}, + [2921] = {.lex_state = 2}, + [2922] = {.lex_state = 2}, + [2923] = {.lex_state = 621}, + [2924] = {.lex_state = 573}, [2925] = {.lex_state = 2}, - [2926] = {.lex_state = 110}, + [2926] = {.lex_state = 111}, [2927] = {.lex_state = 2}, - [2928] = {.lex_state = 578}, - [2929] = {.lex_state = 2}, - [2930] = {.lex_state = 2}, - [2931] = {.lex_state = 625}, - [2932] = {.lex_state = 70}, - [2933] = {.lex_state = 578}, - [2934] = {.lex_state = 660}, - [2935] = {.lex_state = 660}, - [2936] = {.lex_state = 632}, + [2928] = {.lex_state = 572}, + [2929] = {.lex_state = 657}, + [2930] = {.lex_state = 111}, + [2931] = {.lex_state = 657}, + [2932] = {.lex_state = 624}, + [2933] = {.lex_state = 2}, + [2934] = {.lex_state = 2}, + [2935] = {.lex_state = 2}, + [2936] = {.lex_state = 569}, [2937] = {.lex_state = 2}, - [2938] = {.lex_state = 2}, - [2939] = {.lex_state = 632}, - [2940] = {.lex_state = 632}, - [2941] = {.lex_state = 632}, - [2942] = {.lex_state = 2}, - [2943] = {.lex_state = 625}, - [2944] = {.lex_state = 626}, - [2945] = {.lex_state = 2}, - [2946] = {.lex_state = 110}, - [2947] = {.lex_state = 578}, - [2948] = {.lex_state = 63}, - [2949] = {.lex_state = 626}, - [2950] = {.lex_state = 2}, - [2951] = {.lex_state = 578}, - [2952] = {.lex_state = 626}, - [2953] = {.lex_state = 2}, - [2954] = {.lex_state = 2}, - [2955] = {.lex_state = 2}, - [2956] = {.lex_state = 2}, - [2957] = {.lex_state = 626}, - [2958] = {.lex_state = 578}, - [2959] = {.lex_state = 578}, - [2960] = {.lex_state = 578}, - [2961] = {.lex_state = 660}, - [2962] = {.lex_state = 626}, - [2963] = {.lex_state = 2}, - [2964] = {.lex_state = 626}, - [2965] = {.lex_state = 577}, + [2938] = {.lex_state = 111}, + [2939] = {.lex_state = 2}, + [2940] = {.lex_state = 621}, + [2941] = {.lex_state = 657}, + [2942] = {.lex_state = 572}, + [2943] = {.lex_state = 2}, + [2944] = {.lex_state = 624}, + [2945] = {.lex_state = 657}, + [2946] = {.lex_state = 657}, + [2947] = {.lex_state = 572}, + [2948] = {.lex_state = 2}, + [2949] = {.lex_state = 2}, + [2950] = {.lex_state = 657}, + [2951] = {.lex_state = 2}, + [2952] = {.lex_state = 657}, + [2953] = {.lex_state = 657}, + [2954] = {.lex_state = 573}, + [2955] = {.lex_state = 573}, + [2956] = {.lex_state = 573}, + [2957] = {.lex_state = 617}, + [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 = 2}, - [2968] = {.lex_state = 626}, - [2969] = {.lex_state = 626}, - [2970] = {.lex_state = 59}, - [2971] = {.lex_state = 59}, - [2972] = {.lex_state = 59}, - [2973] = {.lex_state = 59}, - [2974] = {.lex_state = 626}, - [2975] = {.lex_state = 63}, - [2976] = {.lex_state = 626}, - [2977] = {.lex_state = 577}, - [2978] = {.lex_state = 65}, - [2979] = {.lex_state = 578}, - [2980] = {.lex_state = 66}, - [2981] = {.lex_state = 626}, - [2982] = {.lex_state = 626}, - [2983] = {.lex_state = 626}, - [2984] = {.lex_state = 578}, - [2985] = {.lex_state = 578}, - [2986] = {.lex_state = 626}, - [2987] = {.lex_state = 626}, - [2988] = {.lex_state = 626}, - [2989] = {.lex_state = 626}, - [2990] = {.lex_state = 578}, - [2991] = {.lex_state = 578}, - [2992] = {.lex_state = 626}, - [2993] = {.lex_state = 578}, - [2994] = {.lex_state = 626}, - [2995] = {.lex_state = 626}, - [2996] = {.lex_state = 626}, - [2997] = {.lex_state = 2}, - [2998] = {.lex_state = 626}, - [2999] = {.lex_state = 63}, - [3000] = {.lex_state = 63}, - [3001] = {.lex_state = 63}, - [3002] = {.lex_state = 64}, - [3003] = {.lex_state = 63}, - [3004] = {.lex_state = 578}, - [3005] = {.lex_state = 63}, - [3006] = {.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 = 573}, + [2992] = {.lex_state = 573}, + [2993] = {.lex_state = 573}, + [2994] = {.lex_state = 629}, + [2995] = {.lex_state = 629}, + [2996] = {.lex_state = 572}, + [2997] = {.lex_state = 573}, + [2998] = {.lex_state = 573}, + [2999] = {.lex_state = 573}, + [3000] = {.lex_state = 629}, + [3001] = {.lex_state = 2}, + [3002] = {.lex_state = 2}, + [3003] = {.lex_state = 621}, + [3004] = {.lex_state = 624}, + [3005] = {.lex_state = 629}, + [3006] = {.lex_state = 629}, [3007] = {.lex_state = 2}, - [3008] = {.lex_state = 626}, - [3009] = {.lex_state = 626}, - [3010] = {.lex_state = 626}, - [3011] = {.lex_state = 626}, - [3012] = {.lex_state = 68}, - [3013] = {.lex_state = 626}, - [3014] = {.lex_state = 188}, - [3015] = {.lex_state = 578}, - [3016] = {.lex_state = 626}, - [3017] = {.lex_state = 626}, - [3018] = {.lex_state = 63}, - [3019] = {.lex_state = 63}, - [3020] = {.lex_state = 2}, - [3021] = {.lex_state = 626}, - [3022] = {.lex_state = 578}, - [3023] = {.lex_state = 577}, - [3024] = {.lex_state = 632}, - [3025] = {.lex_state = 626}, - [3026] = {.lex_state = 2}, - [3027] = {.lex_state = 632}, - [3028] = {.lex_state = 626}, - [3029] = {.lex_state = 577}, - [3030] = {.lex_state = 625}, - [3031] = {.lex_state = 59}, - [3032] = {.lex_state = 626}, - [3033] = {.lex_state = 626}, - [3034] = {.lex_state = 626}, - [3035] = {.lex_state = 632}, - [3036] = {.lex_state = 577}, - [3037] = {.lex_state = 578}, - [3038] = {.lex_state = 2}, - [3039] = {.lex_state = 625}, - [3040] = {.lex_state = 578}, - [3041] = {.lex_state = 68}, - [3042] = {.lex_state = 626}, - [3043] = {.lex_state = 63}, - [3044] = {.lex_state = 578}, - [3045] = {.lex_state = 578}, - [3046] = {.lex_state = 626}, - [3047] = {.lex_state = 626}, - [3048] = {.lex_state = 626}, + [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 = 657}, + [3022] = {.lex_state = 64}, + [3023] = {.lex_state = 624}, + [3024] = {.lex_state = 2}, + [3025] = {.lex_state = 573}, + [3026] = {.lex_state = 629}, + [3027] = {.lex_state = 2}, + [3028] = {.lex_state = 573}, + [3029] = {.lex_state = 2}, + [3030] = {.lex_state = 2}, + [3031] = {.lex_state = 621}, + [3032] = {.lex_state = 624}, + [3033] = {.lex_state = 624}, + [3034] = {.lex_state = 624}, + [3035] = {.lex_state = 573}, + [3036] = {.lex_state = 49, .external_lex_state = 2}, + [3037] = {.lex_state = 624}, + [3038] = {.lex_state = 573}, + [3039] = {.lex_state = 70}, + [3040] = {.lex_state = 624}, + [3041] = {.lex_state = 629}, + [3042] = {.lex_state = 573}, + [3043] = {.lex_state = 573}, + [3044] = {.lex_state = 621}, + [3045] = {.lex_state = 624}, + [3046] = {.lex_state = 624}, + [3047] = {.lex_state = 2}, + [3048] = {.lex_state = 2}, [3049] = {.lex_state = 2}, - [3050] = {.lex_state = 2}, - [3051] = {.lex_state = 63}, - [3052] = {.lex_state = 626}, - [3053] = {.lex_state = 63}, - [3054] = {.lex_state = 626}, - [3055] = {.lex_state = 578}, - [3056] = {.lex_state = 626}, - [3057] = {.lex_state = 626}, - [3058] = {.lex_state = 626}, - [3059] = {.lex_state = 578}, - [3060] = {.lex_state = 577}, - [3061] = {.lex_state = 626}, - [3062] = {.lex_state = 626}, - [3063] = {.lex_state = 626}, - [3064] = {.lex_state = 59}, - [3065] = {.lex_state = 578}, - [3066] = {.lex_state = 578}, - [3067] = {.lex_state = 2}, + [3050] = {.lex_state = 624}, + [3051] = {.lex_state = 621}, + [3052] = {.lex_state = 2}, + [3053] = {.lex_state = 2}, + [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 = 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 = 63}, - [3070] = {.lex_state = 2}, - [3071] = {.lex_state = 2}, - [3072] = {.lex_state = 2}, - [3073] = {.lex_state = 2}, - [3074] = {.lex_state = 626}, - [3075] = {.lex_state = 2}, - [3076] = {.lex_state = 626}, - [3077] = {.lex_state = 626}, - [3078] = {.lex_state = 626}, - [3079] = {.lex_state = 625}, - [3080] = {.lex_state = 626}, - [3081] = {.lex_state = 578}, - [3082] = {.lex_state = 626}, - [3083] = {.lex_state = 626}, - [3084] = {.lex_state = 626}, - [3085] = {.lex_state = 2}, - [3086] = {.lex_state = 2}, - [3087] = {.lex_state = 626}, - [3088] = {.lex_state = 2}, - [3089] = {.lex_state = 578}, - [3090] = {.lex_state = 578}, - [3091] = {.lex_state = 626}, - [3092] = {.lex_state = 59}, - [3093] = {.lex_state = 2}, - [3094] = {.lex_state = 626}, - [3095] = {.lex_state = 578}, - [3096] = {.lex_state = 626}, - [3097] = {.lex_state = 626}, - [3098] = {.lex_state = 626}, - [3099] = {.lex_state = 626}, - [3100] = {.lex_state = 626}, - [3101] = {.lex_state = 626}, - [3102] = {.lex_state = 626}, - [3103] = {.lex_state = 626}, - [3104] = {.lex_state = 626}, - [3105] = {.lex_state = 60}, - [3106] = {.lex_state = 626}, - [3107] = {.lex_state = 626}, - [3108] = {.lex_state = 626}, - [3109] = {.lex_state = 47, .external_lex_state = 2}, - [3110] = {.lex_state = 182}, - [3111] = {.lex_state = 626}, - [3112] = {.lex_state = 626}, - [3113] = {.lex_state = 578}, - [3114] = {.lex_state = 69}, - [3115] = {.lex_state = 626}, - [3116] = {.lex_state = 626}, - [3117] = {.lex_state = 578}, - [3118] = {.lex_state = 626}, - [3119] = {.lex_state = 626}, - [3120] = {.lex_state = 67}, - [3121] = {.lex_state = 626}, - [3122] = {.lex_state = 578}, - [3123] = {.lex_state = 69}, - [3124] = {.lex_state = 2}, - [3125] = {.lex_state = 626}, - [3126] = {.lex_state = 188}, - [3127] = {.lex_state = 626}, - [3128] = {.lex_state = 2}, - [3129] = {.lex_state = 626}, - [3130] = {.lex_state = 626}, - [3131] = {.lex_state = 626}, - [3132] = {.lex_state = 626}, - [3133] = {.lex_state = 626}, - [3134] = {.lex_state = 626}, - [3135] = {.lex_state = 626}, - [3136] = {.lex_state = 626}, - [3137] = {.lex_state = 626}, - [3138] = {.lex_state = 626}, - [3139] = {.lex_state = 2}, - [3140] = {.lex_state = 626}, - [3141] = {.lex_state = 626}, - [3142] = {.lex_state = 626}, - [3143] = {.lex_state = 2}, - [3144] = {.lex_state = 626}, - [3145] = {.lex_state = 626}, - [3146] = {.lex_state = 626}, - [3147] = {.lex_state = 626}, - [3148] = {.lex_state = 626}, - [3149] = {.lex_state = 626}, - [3150] = {.lex_state = 626}, - [3151] = {.lex_state = 578}, - [3152] = {.lex_state = 578}, - [3153] = {.lex_state = 578}, - [3154] = {.lex_state = 65}, - [3155] = {.lex_state = 626}, - [3156] = {.lex_state = 626}, - [3157] = {.lex_state = 185}, - [3158] = {.lex_state = 65}, - [3159] = {.lex_state = 578}, + [3069] = {.lex_state = 2}, + [3070] = {.lex_state = 624}, + [3071] = {.lex_state = 624}, + [3072] = {.lex_state = 624}, + [3073] = {.lex_state = 573}, + [3074] = {.lex_state = 657}, + [3075] = {.lex_state = 573}, + [3076] = {.lex_state = 573}, + [3077] = {.lex_state = 624}, + [3078] = {.lex_state = 67}, + [3079] = {.lex_state = 573}, + [3080] = {.lex_state = 573}, + [3081] = {.lex_state = 621}, + [3082] = {.lex_state = 573}, + [3083] = {.lex_state = 573}, + [3084] = {.lex_state = 621}, + [3085] = {.lex_state = 624}, + [3086] = {.lex_state = 573}, + [3087] = {.lex_state = 2}, + [3088] = {.lex_state = 573}, + [3089] = {.lex_state = 2}, + [3090] = {.lex_state = 573}, + [3091] = {.lex_state = 2}, + [3092] = {.lex_state = 2}, + [3093] = {.lex_state = 61}, + [3094] = {.lex_state = 624}, + [3095] = {.lex_state = 624}, + [3096] = {.lex_state = 621}, + [3097] = {.lex_state = 624}, + [3098] = {.lex_state = 572}, + [3099] = {.lex_state = 573}, + [3100] = {.lex_state = 624}, + [3101] = {.lex_state = 572}, + [3102] = {.lex_state = 2}, + [3103] = {.lex_state = 2}, + [3104] = {.lex_state = 62}, + [3105] = {.lex_state = 2}, + [3106] = {.lex_state = 621}, + [3107] = {.lex_state = 621}, + [3108] = {.lex_state = 61}, + [3109] = {.lex_state = 624}, + [3110] = {.lex_state = 189}, + [3111] = {.lex_state = 573}, + [3112] = {.lex_state = 624}, + [3113] = {.lex_state = 624}, + [3114] = {.lex_state = 624}, + [3115] = {.lex_state = 624}, + [3116] = {.lex_state = 573}, + [3117] = {.lex_state = 61}, + [3118] = {.lex_state = 573}, + [3119] = {.lex_state = 573}, + [3120] = {.lex_state = 624}, + [3121] = {.lex_state = 2}, + [3122] = {.lex_state = 624}, + [3123] = {.lex_state = 624}, + [3124] = {.lex_state = 624}, + [3125] = {.lex_state = 65}, + [3126] = {.lex_state = 621}, + [3127] = {.lex_state = 65}, + [3128] = {.lex_state = 65}, + [3129] = {.lex_state = 624}, + [3130] = {.lex_state = 624}, + [3131] = {.lex_state = 624}, + [3132] = {.lex_state = 624}, + [3133] = {.lex_state = 65}, + [3134] = {.lex_state = 65}, + [3135] = {.lex_state = 65}, + [3136] = {.lex_state = 65}, + [3137] = {.lex_state = 624}, + [3138] = {.lex_state = 624}, + [3139] = {.lex_state = 624}, + [3140] = {.lex_state = 624}, + [3141] = {.lex_state = 624}, + [3142] = {.lex_state = 624}, + [3143] = {.lex_state = 624}, + [3144] = {.lex_state = 61}, + [3145] = {.lex_state = 68}, + [3146] = {.lex_state = 572}, + [3147] = {.lex_state = 624}, + [3148] = {.lex_state = 624}, + [3149] = {.lex_state = 621}, + [3150] = {.lex_state = 572}, + [3151] = {.lex_state = 65}, + [3152] = {.lex_state = 624}, + [3153] = {.lex_state = 573}, + [3154] = {.lex_state = 624}, + [3155] = {.lex_state = 624}, + [3156] = {.lex_state = 66}, + [3157] = {.lex_state = 65}, + [3158] = {.lex_state = 621}, + [3159] = {.lex_state = 624}, [3160] = {.lex_state = 65}, - [3161] = {.lex_state = 578}, - [3162] = {.lex_state = 2}, - [3163] = {.lex_state = 2}, - [3164] = {.lex_state = 185}, - [3165] = {.lex_state = 626}, - [3166] = {.lex_state = 626}, - [3167] = {.lex_state = 578}, - [3168] = {.lex_state = 578}, - [3169] = {.lex_state = 626}, - [3170] = {.lex_state = 626}, - [3171] = {.lex_state = 578}, - [3172] = {.lex_state = 578}, - [3173] = {.lex_state = 578}, - [3174] = {.lex_state = 578}, - [3175] = {.lex_state = 626}, - [3176] = {.lex_state = 2}, - [3177] = {.lex_state = 626}, - [3178] = {.lex_state = 626}, - [3179] = {.lex_state = 626}, - [3180] = {.lex_state = 2}, - [3181] = {.lex_state = 2}, - [3182] = {.lex_state = 578}, - [3183] = {.lex_state = 626}, - [3184] = {.lex_state = 626}, - [3185] = {.lex_state = 186}, - [3186] = {.lex_state = 626}, - [3187] = {.lex_state = 578}, - [3188] = {.lex_state = 2}, - [3189] = {.lex_state = 2}, + [3161] = {.lex_state = 621}, + [3162] = {.lex_state = 621}, + [3163] = {.lex_state = 621}, + [3164] = {.lex_state = 624}, + [3165] = {.lex_state = 624}, + [3166] = {.lex_state = 621}, + [3167] = {.lex_state = 624}, + [3168] = {.lex_state = 621}, + [3169] = {.lex_state = 65}, + [3170] = {.lex_state = 573}, + [3171] = {.lex_state = 624}, + [3172] = {.lex_state = 624}, + [3173] = {.lex_state = 624}, + [3174] = {.lex_state = 2}, + [3175] = {.lex_state = 2}, + [3176] = {.lex_state = 573}, + [3177] = {.lex_state = 65}, + [3178] = {.lex_state = 624}, + [3179] = {.lex_state = 624}, + [3180] = {.lex_state = 61}, + [3181] = {.lex_state = 624}, + [3182] = {.lex_state = 624}, + [3183] = {.lex_state = 624}, + [3184] = {.lex_state = 621}, + [3185] = {.lex_state = 624}, + [3186] = {.lex_state = 624}, + [3187] = {.lex_state = 65}, + [3188] = {.lex_state = 624}, + [3189] = {.lex_state = 624}, [3190] = {.lex_state = 2}, - [3191] = {.lex_state = 626}, - [3192] = {.lex_state = 578}, - [3193] = {.lex_state = 626}, - [3194] = {.lex_state = 2}, - [3195] = {.lex_state = 626}, - [3196] = {.lex_state = 2}, - [3197] = {.lex_state = 626}, - [3198] = {.lex_state = 578}, - [3199] = {.lex_state = 626}, - [3200] = {.lex_state = 578}, - [3201] = {.lex_state = 578}, - [3202] = {.lex_state = 626}, - [3203] = {.lex_state = 626}, - [3204] = {.lex_state = 70}, - [3205] = {.lex_state = 626}, - [3206] = {.lex_state = 626}, - [3207] = {.lex_state = 626}, - [3208] = {.lex_state = 578}, - [3209] = {.lex_state = 626}, - [3210] = {.lex_state = 2}, - [3211] = {.lex_state = 626}, - [3212] = {.lex_state = 578}, - [3213] = {.lex_state = 578}, - [3214] = {.lex_state = 626}, - [3215] = {.lex_state = 578}, - [3216] = {.lex_state = 578}, - [3217] = {.lex_state = 578}, - [3218] = {.lex_state = 578}, - [3219] = {.lex_state = 578}, - [3220] = {.lex_state = 578}, - [3221] = {.lex_state = 578}, - [3222] = {.lex_state = 578}, - [3223] = {.lex_state = 578}, - [3224] = {.lex_state = 578}, - [3225] = {.lex_state = 578}, - [3226] = {.lex_state = 626}, - [3227] = {.lex_state = 626}, - [3228] = {.lex_state = 67}, - [3229] = {.lex_state = 2}, - [3230] = {.lex_state = 2}, - [3231] = {.lex_state = 47, .external_lex_state = 2}, - [3232] = {.lex_state = 65}, - [3233] = {.lex_state = 182}, - [3234] = {.lex_state = 2}, - [3235] = {.lex_state = 2}, - [3236] = {.lex_state = 632}, - [3237] = {.lex_state = 2}, - [3238] = {.lex_state = 626}, - [3239] = {.lex_state = 626}, - [3240] = {.lex_state = 2}, - [3241] = {.lex_state = 59}, - [3242] = {.lex_state = 2}, - [3243] = {.lex_state = 63}, - [3244] = {.lex_state = 59}, - [3245] = {.lex_state = 578}, - [3246] = {.lex_state = 626}, - [3247] = {.lex_state = 578}, - [3248] = {.lex_state = 578}, - [3249] = {.lex_state = 578}, - [3250] = {.lex_state = 626}, - [3251] = {.lex_state = 578}, - [3252] = {.lex_state = 578}, + [3191] = {.lex_state = 621}, + [3192] = {.lex_state = 624}, + [3193] = {.lex_state = 573}, + [3194] = {.lex_state = 621}, + [3195] = {.lex_state = 621}, + [3196] = {.lex_state = 621}, + [3197] = {.lex_state = 621}, + [3198] = {.lex_state = 624}, + [3199] = {.lex_state = 624}, + [3200] = {.lex_state = 573}, + [3201] = {.lex_state = 629}, + [3202] = {.lex_state = 624}, + [3203] = {.lex_state = 624}, + [3204] = {.lex_state = 624}, + [3205] = {.lex_state = 61}, + [3206] = {.lex_state = 2}, + [3207] = {.lex_state = 621}, + [3208] = {.lex_state = 573}, + [3209] = {.lex_state = 621}, + [3210] = {.lex_state = 61}, + [3211] = {.lex_state = 2}, + [3212] = {.lex_state = 624}, + [3213] = {.lex_state = 624}, + [3214] = {.lex_state = 624}, + [3215] = {.lex_state = 183}, + [3216] = {.lex_state = 624}, + [3217] = {.lex_state = 624}, + [3218] = {.lex_state = 2}, + [3219] = {.lex_state = 573}, + [3220] = {.lex_state = 573}, + [3221] = {.lex_state = 624}, + [3222] = {.lex_state = 573}, + [3223] = {.lex_state = 624}, + [3224] = {.lex_state = 624}, + [3225] = {.lex_state = 624}, + [3226] = {.lex_state = 624}, + [3227] = {.lex_state = 189}, + [3228] = {.lex_state = 624}, + [3229] = {.lex_state = 183}, + [3230] = {.lex_state = 624}, + [3231] = {.lex_state = 624}, + [3232] = {.lex_state = 624}, + [3233] = {.lex_state = 573}, + [3234] = {.lex_state = 624}, + [3235] = {.lex_state = 67}, + [3236] = {.lex_state = 67}, + [3237] = {.lex_state = 67}, + [3238] = {.lex_state = 573}, + [3239] = {.lex_state = 624}, + [3240] = {.lex_state = 621}, + [3241] = {.lex_state = 624}, + [3242] = {.lex_state = 573}, + [3243] = {.lex_state = 624}, + [3244] = {.lex_state = 573}, + [3245] = {.lex_state = 624}, + [3246] = {.lex_state = 621}, + [3247] = {.lex_state = 71}, + [3248] = {.lex_state = 624}, + [3249] = {.lex_state = 624}, + [3250] = {.lex_state = 624}, + [3251] = {.lex_state = 624}, + [3252] = {.lex_state = 71}, [3253] = {.lex_state = 2}, - [3254] = {.lex_state = 578}, - [3255] = {.lex_state = 2131}, - [3256] = {.lex_state = 2}, - [3257] = {.lex_state = 578}, - [3258] = {.lex_state = 578}, - [3259] = {.lex_state = 578}, - [3260] = {.lex_state = 96}, - [3261] = {.lex_state = 578}, - [3262] = {.lex_state = 578}, - [3263] = {.lex_state = 578}, - [3264] = {.lex_state = 578}, - [3265] = {.lex_state = 578}, - [3266] = {.lex_state = 578}, - [3267] = {.lex_state = 2}, - [3268] = {.lex_state = 578}, - [3269] = {.lex_state = 578}, - [3270] = {.lex_state = 578}, - [3271] = {.lex_state = 578}, - [3272] = {.lex_state = 578}, - [3273] = {.lex_state = 578}, - [3274] = {.lex_state = 2}, - [3275] = {.lex_state = 578}, - [3276] = {.lex_state = 578}, - [3277] = {.lex_state = 578}, - [3278] = {.lex_state = 578}, - [3279] = {.lex_state = 578}, - [3280] = {.lex_state = 578}, - [3281] = {.lex_state = 183}, - [3282] = {.lex_state = 578}, - [3283] = {.lex_state = 184}, - [3284] = {.lex_state = 578}, - [3285] = {.lex_state = 578}, - [3286] = {.lex_state = 578}, - [3287] = {.lex_state = 578}, - [3288] = {.lex_state = 578}, - [3289] = {.lex_state = 578}, - [3290] = {.lex_state = 578}, - [3291] = {.lex_state = 578}, - [3292] = {.lex_state = 632}, - [3293] = {.lex_state = 632}, - [3294] = {.lex_state = 632}, - [3295] = {.lex_state = 578}, - [3296] = {.lex_state = 578}, - [3297] = {.lex_state = 2}, - [3298] = {.lex_state = 632}, - [3299] = {.lex_state = 188}, - [3300] = {.lex_state = 578}, - [3301] = {.lex_state = 578}, - [3302] = {.lex_state = 578}, - [3303] = {.lex_state = 128}, - [3304] = {.lex_state = 578}, - [3305] = {.lex_state = 578}, - [3306] = {.lex_state = 578}, - [3307] = {.lex_state = 578}, - [3308] = {.lex_state = 578}, - [3309] = {.lex_state = 578}, - [3310] = {.lex_state = 2}, - [3311] = {.lex_state = 2}, - [3312] = {.lex_state = 76}, - [3313] = {.lex_state = 122}, - [3314] = {.lex_state = 578}, - [3315] = {.lex_state = 2131}, - [3316] = {.lex_state = 183}, - [3317] = {.lex_state = 578}, - [3318] = {.lex_state = 578}, - [3319] = {.lex_state = 578}, - [3320] = {.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 = 2}, + [3302] = {.lex_state = 624}, + [3303] = {.lex_state = 573}, + [3304] = {.lex_state = 621}, + [3305] = {.lex_state = 624}, + [3306] = {.lex_state = 2}, + [3307] = {.lex_state = 2}, + [3308] = {.lex_state = 573}, + [3309] = {.lex_state = 2}, + [3310] = {.lex_state = 187}, + [3311] = {.lex_state = 621}, + [3312] = {.lex_state = 573}, + [3313] = {.lex_state = 2}, + [3314] = {.lex_state = 2}, + [3315] = {.lex_state = 621}, + [3316] = {.lex_state = 2}, + [3317] = {.lex_state = 2}, + [3318] = {.lex_state = 621}, + [3319] = {.lex_state = 2}, + [3320] = {.lex_state = 624}, [3321] = {.lex_state = 2}, - [3322] = {.lex_state = 188}, - [3323] = {.lex_state = 188}, - [3324] = {.lex_state = 188}, - [3325] = {.lex_state = 578}, - [3326] = {.lex_state = 578}, - [3327] = {.lex_state = 78}, - [3328] = {.lex_state = 2}, - [3329] = {.lex_state = 578}, - [3330] = {.lex_state = 578}, - [3331] = {.lex_state = 193}, - [3332] = {.lex_state = 2}, - [3333] = {.lex_state = 2}, - [3334] = {.lex_state = 2}, - [3335] = {.lex_state = 2}, - [3336] = {.lex_state = 2}, - [3337] = {.lex_state = 2}, - [3338] = {.lex_state = 2}, - [3339] = {.lex_state = 2}, - [3340] = {.lex_state = 578}, - [3341] = {.lex_state = 578}, - [3342] = {.lex_state = 201}, - [3343] = {.lex_state = 2}, - [3344] = {.lex_state = 2}, - [3345] = {.lex_state = 578}, - [3346] = {.lex_state = 578}, + [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 = 578}, - [3349] = {.lex_state = 578}, - [3350] = {.lex_state = 2}, - [3351] = {.lex_state = 2}, - [3352] = {.lex_state = 578}, - [3353] = {.lex_state = 578}, - [3354] = {.lex_state = 2}, - [3355] = {.lex_state = 2}, - [3356] = {.lex_state = 92}, - [3357] = {.lex_state = 578}, - [3358] = {.lex_state = 578}, - [3359] = {.lex_state = 578}, - [3360] = {.lex_state = 2}, - [3361] = {.lex_state = 578}, - [3362] = {.lex_state = 578}, - [3363] = {.lex_state = 578}, - [3364] = {.lex_state = 578}, - [3365] = {.lex_state = 578}, - [3366] = {.lex_state = 578}, - [3367] = {.lex_state = 578}, - [3368] = {.lex_state = 578}, - [3369] = {.lex_state = 184}, - [3370] = {.lex_state = 578}, - [3371] = {.lex_state = 578}, - [3372] = {.lex_state = 578}, - [3373] = {.lex_state = 578}, + [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 = 573}, + [3358] = {.lex_state = 573}, + [3359] = {.lex_state = 573}, + [3360] = {.lex_state = 75}, + [3361] = {.lex_state = 573}, + [3362] = {.lex_state = 624}, + [3363] = {.lex_state = 2}, + [3364] = {.lex_state = 624}, + [3365] = {.lex_state = 202}, + [3366] = {.lex_state = 2}, + [3367] = {.lex_state = 573}, + [3368] = {.lex_state = 573}, + [3369] = {.lex_state = 2}, + [3370] = {.lex_state = 573}, + [3371] = {.lex_state = 2}, + [3372] = {.lex_state = 573}, + [3373] = {.lex_state = 573}, [3374] = {.lex_state = 2}, [3375] = {.lex_state = 2}, - [3376] = {.lex_state = 194}, - [3377] = {.lex_state = 2}, - [3378] = {.lex_state = 578}, - [3379] = {.lex_state = 181}, - [3380] = {.lex_state = 202}, - [3381] = {.lex_state = 578}, - [3382] = {.lex_state = 188}, - [3383] = {.lex_state = 188}, - [3384] = {.lex_state = 188}, - [3385] = {.lex_state = 188}, - [3386] = {.lex_state = 2}, - [3387] = {.lex_state = 2}, - [3388] = {.lex_state = 578}, - [3389] = {.lex_state = 578}, - [3390] = {.lex_state = 578}, - [3391] = {.lex_state = 182}, - [3392] = {.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 = 573}, [3393] = {.lex_state = 2}, - [3394] = {.lex_state = 2}, - [3395] = {.lex_state = 122}, - [3396] = {.lex_state = 187}, - [3397] = {.lex_state = 128}, - [3398] = {.lex_state = 232}, + [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 = 128}, - [3401] = {.lex_state = 195}, - [3402] = {.lex_state = 2}, - [3403] = {.lex_state = 98}, - [3404] = {.lex_state = 128}, - [3405] = {.lex_state = 79}, - [3406] = {.lex_state = 2}, - [3407] = {.lex_state = 128}, - [3408] = {.lex_state = 80}, - [3409] = {.lex_state = 612}, + [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 = 612}, - [3412] = {.lex_state = 122}, - [3413] = {.lex_state = 204}, - [3414] = {.lex_state = 122}, - [3415] = {.lex_state = 2}, - [3416] = {.lex_state = 98}, - [3417] = {.lex_state = 233}, - [3418] = {.lex_state = 578}, - [3419] = {.lex_state = 612}, - [3420] = {.lex_state = 2}, - [3421] = {.lex_state = 128}, - [3422] = {.lex_state = 79}, - [3423] = {.lex_state = 612}, - [3424] = {.lex_state = 128}, - [3425] = {.lex_state = 204}, - [3426] = {.lex_state = 578}, - [3427] = {.lex_state = 206}, - [3428] = {.lex_state = 203}, - [3429] = {.lex_state = 217}, - [3430] = {.lex_state = 93}, - [3431] = {.lex_state = 122}, - [3432] = {.lex_state = 203}, - [3433] = {.lex_state = 612}, - [3434] = {.lex_state = 582}, - [3435] = {.lex_state = 97}, - [3436] = {.lex_state = 2}, - [3437] = {.lex_state = 188}, - [3438] = {.lex_state = 187}, - [3439] = {.lex_state = 2}, - [3440] = {.lex_state = 188}, - [3441] = {.lex_state = 2073}, - [3442] = {.lex_state = 1729, .external_lex_state = 2}, - [3443] = {.lex_state = 1729, .external_lex_state = 2}, - [3444] = {.lex_state = 1729, .external_lex_state = 2}, - [3445] = {.lex_state = 1729, .external_lex_state = 2}, - [3446] = {.lex_state = 1729, .external_lex_state = 2}, - [3447] = {.lex_state = 1729, .external_lex_state = 2}, - [3448] = {.lex_state = 1729, .external_lex_state = 2}, - [3449] = {.lex_state = 1729, .external_lex_state = 2}, - [3450] = {.lex_state = 197}, - [3451] = {.lex_state = 99}, - [3452] = {.lex_state = 219}, - [3453] = {.lex_state = 100}, - [3454] = {.lex_state = 80}, - [3455] = {.lex_state = 2177}, - [3456] = {.lex_state = 218}, - [3457] = {.lex_state = 2073}, - [3458] = {.lex_state = 77}, - [3459] = {.lex_state = 2073}, - [3460] = {.lex_state = 2073}, - [3461] = {.lex_state = 1729, .external_lex_state = 2}, - [3462] = {.lex_state = 1729, .external_lex_state = 2}, - [3463] = {.lex_state = 218}, - [3464] = {.lex_state = 2132}, - [3465] = {.lex_state = 2132}, - [3466] = {.lex_state = 2132}, - [3467] = {.lex_state = 2177}, - [3468] = {.lex_state = 582}, - [3469] = {.lex_state = 582}, - [3470] = {.lex_state = 100}, - [3471] = {.lex_state = 2073}, - [3472] = {.lex_state = 2073}, - [3473] = {.lex_state = 1729, .external_lex_state = 2}, - [3474] = {.lex_state = 99}, - [3475] = {.lex_state = 234}, - [3476] = {.lex_state = 205}, - [3477] = {.lex_state = 2073}, - [3478] = {.lex_state = 582}, - [3479] = {.lex_state = 2132}, - [3480] = {.lex_state = 102}, - [3481] = {.lex_state = 2073}, - [3482] = {.lex_state = 2073}, - [3483] = {.lex_state = 2177}, - [3484] = {.lex_state = 1729, .external_lex_state = 2}, - [3485] = {.lex_state = 128}, - [3486] = {.lex_state = 2177}, - [3487] = {.lex_state = 100}, - [3488] = {.lex_state = 80}, - [3489] = {.lex_state = 1729, .external_lex_state = 2}, - [3490] = {.lex_state = 81}, - [3491] = {.lex_state = 234}, - [3492] = {.lex_state = 2073}, - [3493] = {.lex_state = 2073}, - [3494] = {.lex_state = 1729, .external_lex_state = 2}, - [3495] = {.lex_state = 100}, - [3496] = {.lex_state = 205}, - [3497] = {.lex_state = 1729, .external_lex_state = 2}, - [3498] = {.lex_state = 2073}, - [3499] = {.lex_state = 2}, - [3500] = {.lex_state = 2073}, - [3501] = {.lex_state = 2073}, - [3502] = {.lex_state = 206}, - [3503] = {.lex_state = 1729, .external_lex_state = 2}, - [3504] = {.lex_state = 80}, - [3505] = {.lex_state = 94}, - [3506] = {.lex_state = 2073}, - [3507] = {.lex_state = 2073}, - [3508] = {.lex_state = 208}, - [3509] = {.lex_state = 1729, .external_lex_state = 2}, - [3510] = {.lex_state = 206}, - [3511] = {.lex_state = 206}, - [3512] = {.lex_state = 2073}, - [3513] = {.lex_state = 2073}, - [3514] = {.lex_state = 1729, .external_lex_state = 2}, - [3515] = {.lex_state = 2073}, - [3516] = {.lex_state = 2073}, - [3517] = {.lex_state = 207}, - [3518] = {.lex_state = 1729, .external_lex_state = 2}, - [3519] = {.lex_state = 2073}, - [3520] = {.lex_state = 205}, - [3521] = {.lex_state = 2073}, - [3522] = {.lex_state = 2073}, - [3523] = {.lex_state = 2073}, - [3524] = {.lex_state = 1729, .external_lex_state = 2}, - [3525] = {.lex_state = 582}, - [3526] = {.lex_state = 2073}, - [3527] = {.lex_state = 2073}, - [3528] = {.lex_state = 1729, .external_lex_state = 2}, - [3529] = {.lex_state = 1729, .external_lex_state = 2}, - [3530] = {.lex_state = 2073}, - [3531] = {.lex_state = 196}, - [3532] = {.lex_state = 2073}, - [3533] = {.lex_state = 205}, - [3534] = {.lex_state = 582}, - [3535] = {.lex_state = 582}, - [3536] = {.lex_state = 209}, - [3537] = {.lex_state = 582}, - [3538] = {.lex_state = 88}, - [3539] = {.lex_state = 129}, - [3540] = {.lex_state = 88}, - [3541] = {.lex_state = 582}, - [3542] = {.lex_state = 101}, - [3543] = {.lex_state = 582}, - [3544] = {.lex_state = 582}, - [3545] = {.lex_state = 582}, - [3546] = {.lex_state = 582}, - [3547] = {.lex_state = 582}, - [3548] = {.lex_state = 582}, - [3549] = {.lex_state = 582}, - [3550] = {.lex_state = 80}, - [3551] = {.lex_state = 582}, - [3552] = {.lex_state = 206}, - [3553] = {.lex_state = 582}, - [3554] = {.lex_state = 101}, - [3555] = {.lex_state = 235}, - [3556] = {.lex_state = 582}, - [3557] = {.lex_state = 582}, - [3558] = {.lex_state = 219}, - [3559] = {.lex_state = 582}, - [3560] = {.lex_state = 582}, - [3561] = {.lex_state = 582}, - [3562] = {.lex_state = 582}, - [3563] = {.lex_state = 627}, - [3564] = {.lex_state = 582}, - [3565] = {.lex_state = 129}, - [3566] = {.lex_state = 582}, - [3567] = {.lex_state = 582}, - [3568] = {.lex_state = 82}, - [3569] = {.lex_state = 246}, - [3570] = {.lex_state = 235}, - [3571] = {.lex_state = 582}, - [3572] = {.lex_state = 582}, - [3573] = {.lex_state = 88}, - [3574] = {.lex_state = 101}, - [3575] = {.lex_state = 101}, - [3576] = {.lex_state = 235}, - [3577] = {.lex_state = 582}, - [3578] = {.lex_state = 582}, - [3579] = {.lex_state = 582}, - [3580] = {.lex_state = 582}, - [3581] = {.lex_state = 582}, - [3582] = {.lex_state = 582}, - [3583] = {.lex_state = 220}, - [3584] = {.lex_state = 582}, - [3585] = {.lex_state = 240}, - [3586] = {.lex_state = 219}, - [3587] = {.lex_state = 582}, - [3588] = {.lex_state = 209}, - [3589] = {.lex_state = 582}, - [3590] = {.lex_state = 582}, - [3591] = {.lex_state = 582}, - [3592] = {.lex_state = 211}, - [3593] = {.lex_state = 82}, - [3594] = {.lex_state = 129}, - [3595] = {.lex_state = 582}, - [3596] = {.lex_state = 582}, - [3597] = {.lex_state = 104}, - [3598] = {.lex_state = 211}, - [3599] = {.lex_state = 582}, - [3600] = {.lex_state = 627}, - [3601] = {.lex_state = 198}, - [3602] = {.lex_state = 235}, - [3603] = {.lex_state = 88}, - [3604] = {.lex_state = 103}, - [3605] = {.lex_state = 582}, - [3606] = {.lex_state = 582}, - [3607] = {.lex_state = 582}, - [3608] = {.lex_state = 582}, - [3609] = {.lex_state = 129}, - [3610] = {.lex_state = 129}, - [3611] = {.lex_state = 129}, - [3612] = {.lex_state = 104}, - [3613] = {.lex_state = 95}, - [3614] = {.lex_state = 219}, - [3615] = {.lex_state = 582}, - [3616] = {.lex_state = 105}, - [3617] = {.lex_state = 212}, - [3618] = {.lex_state = 241}, - [3619] = {.lex_state = 244}, - [3620] = {.lex_state = 127}, - [3621] = {.lex_state = 210}, - [3622] = {.lex_state = 244}, - [3623] = {.lex_state = 212}, - [3624] = {.lex_state = 244}, - [3625] = {.lex_state = 244}, - [3626] = {.lex_state = 83}, - [3627] = {.lex_state = 244}, - [3628] = {.lex_state = 579}, - [3629] = {.lex_state = 244}, - [3630] = {.lex_state = 212}, - [3631] = {.lex_state = 105}, - [3632] = {.lex_state = 212}, - [3633] = {.lex_state = 212}, - [3634] = {.lex_state = 105}, - [3635] = {.lex_state = 244}, - [3636] = {.lex_state = 221}, - [3637] = {.lex_state = 105}, - [3638] = {.lex_state = 83}, - [3639] = {.lex_state = 244}, - [3640] = {.lex_state = 276}, - [3641] = {.lex_state = 244}, - [3642] = {.lex_state = 244}, - [3643] = {.lex_state = 88}, - [3644] = {.lex_state = 88}, - [3645] = {.lex_state = 579}, - [3646] = {.lex_state = 210}, - [3647] = {.lex_state = 83}, - [3648] = {.lex_state = 129}, - [3649] = {.lex_state = 129}, - [3650] = {.lex_state = 247}, - [3651] = {.lex_state = 127}, - [3652] = {.lex_state = 2}, - [3653] = {.lex_state = 258}, - [3654] = {.lex_state = 244}, - [3655] = {.lex_state = 244}, - [3656] = {.lex_state = 210}, - [3657] = {.lex_state = 83}, - [3658] = {.lex_state = 105}, - [3659] = {.lex_state = 244}, - [3660] = {.lex_state = 106}, - [3661] = {.lex_state = 83}, - [3662] = {.lex_state = 221}, - [3663] = {.lex_state = 247}, - [3664] = {.lex_state = 106}, - [3665] = {.lex_state = 128}, - [3666] = {.lex_state = 276}, - [3667] = {.lex_state = 579}, - [3668] = {.lex_state = 275}, - [3669] = {.lex_state = 108}, - [3670] = {.lex_state = 122}, - [3671] = {.lex_state = 222}, - [3672] = {.lex_state = 127}, - [3673] = {.lex_state = 31}, - [3674] = {.lex_state = 45}, - [3675] = {.lex_state = 222}, - [3676] = {.lex_state = 210}, - [3677] = {.lex_state = 31}, - [3678] = {.lex_state = 122}, - [3679] = {.lex_state = 579}, - [3680] = {.lex_state = 579}, - [3681] = {.lex_state = 579}, - [3682] = {.lex_state = 122}, - [3683] = {.lex_state = 85}, - [3684] = {.lex_state = 127}, - [3685] = {.lex_state = 45}, - [3686] = {.lex_state = 88}, - [3687] = {.lex_state = 122}, - [3688] = {.lex_state = 45}, - [3689] = {.lex_state = 45}, - [3690] = {.lex_state = 45}, - [3691] = {.lex_state = 216}, - [3692] = {.lex_state = 45}, - [3693] = {.lex_state = 122}, - [3694] = {.lex_state = 31}, - [3695] = {.lex_state = 249}, - [3696] = {.lex_state = 31}, - [3697] = {.lex_state = 129}, - [3698] = {.lex_state = 242}, - [3699] = {.lex_state = 45}, - [3700] = {.lex_state = 122}, - [3701] = {.lex_state = 107}, - [3702] = {.lex_state = 45}, - [3703] = {.lex_state = 107}, - [3704] = {.lex_state = 248}, - [3705] = {.lex_state = 45}, - [3706] = {.lex_state = 45}, - [3707] = {.lex_state = 248}, - [3708] = {.lex_state = 45}, - [3709] = {.lex_state = 31}, - [3710] = {.lex_state = 245}, - [3711] = {.lex_state = 45}, - [3712] = {.lex_state = 129}, - [3713] = {.lex_state = 129}, - [3714] = {.lex_state = 122}, - [3715] = {.lex_state = 205}, - [3716] = {.lex_state = 45}, - [3717] = {.lex_state = 579}, - [3718] = {.lex_state = 122}, - [3719] = {.lex_state = 127}, - [3720] = {.lex_state = 276}, - [3721] = {.lex_state = 275}, - [3722] = {.lex_state = 129}, - [3723] = {.lex_state = 31}, - [3724] = {.lex_state = 88}, - [3725] = {.lex_state = 115}, - [3726] = {.lex_state = 45}, - [3727] = {.lex_state = 45}, - [3728] = {.lex_state = 259}, - [3729] = {.lex_state = 88}, - [3730] = {.lex_state = 45}, - [3731] = {.lex_state = 122}, - [3732] = {.lex_state = 45}, - [3733] = {.lex_state = 45}, - [3734] = {.lex_state = 256}, - [3735] = {.lex_state = 122}, - [3736] = {.lex_state = 122}, - [3737] = {.lex_state = 31}, - [3738] = {.lex_state = 45}, - [3739] = {.lex_state = 45}, - [3740] = {.lex_state = 31}, - [3741] = {.lex_state = 122}, - [3742] = {.lex_state = 222}, - [3743] = {.lex_state = 248}, - [3744] = {.lex_state = 213}, - [3745] = {.lex_state = 45}, - [3746] = {.lex_state = 45}, - [3747] = {.lex_state = 107}, - [3748] = {.lex_state = 579}, - [3749] = {.lex_state = 129}, - [3750] = {.lex_state = 122}, - [3751] = {.lex_state = 84}, - [3752] = {.lex_state = 259}, - [3753] = {.lex_state = 45}, - [3754] = {.lex_state = 88}, - [3755] = {.lex_state = 122}, - [3756] = {.lex_state = 129}, - [3757] = {.lex_state = 276}, - [3758] = {.lex_state = 107}, - [3759] = {.lex_state = 210}, - [3760] = {.lex_state = 45}, - [3761] = {.lex_state = 31}, - [3762] = {.lex_state = 129}, - [3763] = {.lex_state = 276}, - [3764] = {.lex_state = 222}, - [3765] = {.lex_state = 276}, - [3766] = {.lex_state = 222}, - [3767] = {.lex_state = 31}, - [3768] = {.lex_state = 276}, - [3769] = {.lex_state = 275}, - [3770] = {.lex_state = 107}, - [3771] = {.lex_state = 129}, - [3772] = {.lex_state = 248}, - [3773] = {.lex_state = 31}, - [3774] = {.lex_state = 275}, - [3775] = {.lex_state = 638}, - [3776] = {.lex_state = 243}, - [3777] = {.lex_state = 88}, - [3778] = {.lex_state = 223}, - [3779] = {.lex_state = 109}, - [3780] = {.lex_state = 275}, - [3781] = {.lex_state = 275}, - [3782] = {.lex_state = 275}, - [3783] = {.lex_state = 257}, - [3784] = {.lex_state = 180}, - [3785] = {.lex_state = 2074}, - [3786] = {.lex_state = 2074}, - [3787] = {.lex_state = 248}, - [3788] = {.lex_state = 31}, - [3789] = {.lex_state = 31}, - [3790] = {.lex_state = 180}, - [3791] = {.lex_state = 122}, - [3792] = {.lex_state = 122}, - [3793] = {.lex_state = 180}, - [3794] = {.lex_state = 275}, - [3795] = {.lex_state = 275}, - [3796] = {.lex_state = 275}, - [3797] = {.lex_state = 250}, - [3798] = {.lex_state = 31}, - [3799] = {.lex_state = 0}, - [3800] = {.lex_state = 0}, - [3801] = {.lex_state = 0}, - [3802] = {.lex_state = 31}, - [3803] = {.lex_state = 127}, - [3804] = {.lex_state = 199}, - [3805] = {.lex_state = 255}, - [3806] = {.lex_state = 127}, - [3807] = {.lex_state = 31}, - [3808] = {.lex_state = 31}, - [3809] = {.lex_state = 122}, - [3810] = {.lex_state = 88}, - [3811] = {.lex_state = 122}, - [3812] = {.lex_state = 128}, - [3813] = {.lex_state = 188}, - [3814] = {.lex_state = 122}, - [3815] = {.lex_state = 122}, - [3816] = {.lex_state = 128}, - [3817] = {.lex_state = 128}, - [3818] = {.lex_state = 31}, - [3819] = {.lex_state = 128}, - [3820] = {.lex_state = 0}, - [3821] = {.lex_state = 0}, - [3822] = {.lex_state = 0}, - [3823] = {.lex_state = 0}, - [3824] = {.lex_state = 180}, - [3825] = {.lex_state = 275}, - [3826] = {.lex_state = 2074}, - [3827] = {.lex_state = 2074}, - [3828] = {.lex_state = 122}, - [3829] = {.lex_state = 275}, - [3830] = {.lex_state = 180}, - [3831] = {.lex_state = 117}, - [3832] = {.lex_state = 122}, - [3833] = {.lex_state = 117}, - [3834] = {.lex_state = 2074}, - [3835] = {.lex_state = 2074}, - [3836] = {.lex_state = 127}, - [3837] = {.lex_state = 578}, - [3838] = {.lex_state = 248}, - [3839] = {.lex_state = 127}, - [3840] = {.lex_state = 127}, - [3841] = {.lex_state = 122}, - [3842] = {.lex_state = 122}, - [3843] = {.lex_state = 127}, - [3844] = {.lex_state = 127}, - [3845] = {.lex_state = 127}, - [3846] = {.lex_state = 122}, - [3847] = {.lex_state = 180}, - [3848] = {.lex_state = 275}, - [3849] = {.lex_state = 86}, - [3850] = {.lex_state = 86}, - [3851] = {.lex_state = 129}, - [3852] = {.lex_state = 180}, - [3853] = {.lex_state = 257}, - [3854] = {.lex_state = 112}, - [3855] = {.lex_state = 31}, - [3856] = {.lex_state = 0}, - [3857] = {.lex_state = 180}, - [3858] = {.lex_state = 2074}, - [3859] = {.lex_state = 2074}, - [3860] = {.lex_state = 129}, - [3861] = {.lex_state = 180}, - [3862] = {.lex_state = 180}, - [3863] = {.lex_state = 2074}, - [3864] = {.lex_state = 2074}, - [3865] = {.lex_state = 180}, - [3866] = {.lex_state = 180}, - [3867] = {.lex_state = 122}, - [3868] = {.lex_state = 122}, - [3869] = {.lex_state = 2074}, - [3870] = {.lex_state = 2074}, - [3871] = {.lex_state = 180}, - [3872] = {.lex_state = 180}, - [3873] = {.lex_state = 180}, - [3874] = {.lex_state = 226}, - [3875] = {.lex_state = 180}, - [3876] = {.lex_state = 2178}, - [3877] = {.lex_state = 2178}, - [3878] = {.lex_state = 180}, - [3879] = {.lex_state = 260}, - [3880] = {.lex_state = 180}, - [3881] = {.lex_state = 180}, - [3882] = {.lex_state = 237}, - [3883] = {.lex_state = 31}, - [3884] = {.lex_state = 122}, - [3885] = {.lex_state = 578}, - [3886] = {.lex_state = 638}, - [3887] = {.lex_state = 250}, - [3888] = {.lex_state = 638}, - [3889] = {.lex_state = 214}, - [3890] = {.lex_state = 122}, - [3891] = {.lex_state = 214}, - [3892] = {.lex_state = 122}, - [3893] = {.lex_state = 188}, - [3894] = {.lex_state = 200}, - [3895] = {.lex_state = 260}, - [3896] = {.lex_state = 260}, - [3897] = {.lex_state = 260}, - [3898] = {.lex_state = 31}, - [3899] = {.lex_state = 638}, - [3900] = {.lex_state = 638}, - [3901] = {.lex_state = 638}, - [3902] = {.lex_state = 122}, - [3903] = {.lex_state = 122}, - [3904] = {.lex_state = 122}, - [3905] = {.lex_state = 122}, - [3906] = {.lex_state = 255}, - [3907] = {.lex_state = 31}, - [3908] = {.lex_state = 261}, - [3909] = {.lex_state = 31}, - [3910] = {.lex_state = 275}, - [3911] = {.lex_state = 275}, - [3912] = {.lex_state = 275}, - [3913] = {.lex_state = 612}, - [3914] = {.lex_state = 0}, - [3915] = {.lex_state = 275}, - [3916] = {.lex_state = 275}, - [3917] = {.lex_state = 275}, - [3918] = {.lex_state = 116}, + [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 = 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 = 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 = 275}, - [3921] = {.lex_state = 275}, - [3922] = {.lex_state = 275}, - [3923] = {.lex_state = 0}, - [3924] = {.lex_state = 0}, - [3925] = {.lex_state = 627}, - [3926] = {.lex_state = 627}, - [3927] = {.lex_state = 88}, - [3928] = {.lex_state = 661}, - [3929] = {.lex_state = 178}, - [3930] = {.lex_state = 87}, - [3931] = {.lex_state = 627}, - [3932] = {.lex_state = 87}, - [3933] = {.lex_state = 87}, - [3934] = {.lex_state = 129}, - [3935] = {.lex_state = 121}, - [3936] = {.lex_state = 627}, + [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 = 129}, - [3939] = {.lex_state = 627}, - [3940] = {.lex_state = 124}, - [3941] = {.lex_state = 118}, - [3942] = {.lex_state = 0}, - [3943] = {.lex_state = 0}, - [3944] = {.lex_state = 118}, - [3945] = {.lex_state = 158}, - [3946] = {.lex_state = 87}, - [3947] = {.lex_state = 158}, - [3948] = {.lex_state = 122}, - [3949] = {.lex_state = 251}, - [3950] = {.lex_state = 33}, - [3951] = {.lex_state = 178}, - [3952] = {.lex_state = 277}, - [3953] = {.lex_state = 124}, - [3954] = {.lex_state = 623}, - [3955] = {.lex_state = 127}, - [3956] = {.lex_state = 2}, - [3957] = {.lex_state = 199}, - [3958] = {.lex_state = 277}, - [3959] = {.lex_state = 188}, - [3960] = {.lex_state = 122}, - [3961] = {.lex_state = 178}, - [3962] = {.lex_state = 277}, - [3963] = {.lex_state = 277}, - [3964] = {.lex_state = 224}, - [3965] = {.lex_state = 623}, - [3966] = {.lex_state = 277}, - [3967] = {.lex_state = 87}, - [3968] = {.lex_state = 0}, - [3969] = {.lex_state = 0}, - [3970] = {.lex_state = 178}, - [3971] = {.lex_state = 277}, - [3972] = {.lex_state = 122}, - [3973] = {.lex_state = 122}, - [3974] = {.lex_state = 122}, - [3975] = {.lex_state = 122}, - [3976] = {.lex_state = 118}, - [3977] = {.lex_state = 277}, - [3978] = {.lex_state = 118}, - [3979] = {.lex_state = 178}, - [3980] = {.lex_state = 277}, - [3981] = {.lex_state = 118}, - [3982] = {.lex_state = 31}, - [3983] = {.lex_state = 228}, - [3984] = {.lex_state = 277}, - [3985] = {.lex_state = 118}, - [3986] = {.lex_state = 118}, - [3987] = {.lex_state = 178}, - [3988] = {.lex_state = 277}, - [3989] = {.lex_state = 225}, - [3990] = {.lex_state = 627}, - [3991] = {.lex_state = 251}, - [3992] = {.lex_state = 582}, - [3993] = {.lex_state = 277}, - [3994] = {.lex_state = 178}, - [3995] = {.lex_state = 277}, - [3996] = {.lex_state = 228}, - [3997] = {.lex_state = 178}, - [3998] = {.lex_state = 277}, - [3999] = {.lex_state = 118}, - [4000] = {.lex_state = 122}, - [4001] = {.lex_state = 627}, - [4002] = {.lex_state = 277}, - [4003] = {.lex_state = 87}, - [4004] = {.lex_state = 178}, - [4005] = {.lex_state = 178}, - [4006] = {.lex_state = 623}, - [4007] = {.lex_state = 178}, - [4008] = {.lex_state = 178}, - [4009] = {.lex_state = 87}, - [4010] = {.lex_state = 178}, - [4011] = {.lex_state = 582}, - [4012] = {.lex_state = 31}, - [4013] = {.lex_state = 178}, - [4014] = {.lex_state = 178}, - [4015] = {.lex_state = 178}, - [4016] = {.lex_state = 215}, - [4017] = {.lex_state = 124}, - [4018] = {.lex_state = 178}, - [4019] = {.lex_state = 178}, - [4020] = {.lex_state = 178}, - [4021] = {.lex_state = 623}, - [4022] = {.lex_state = 118}, - [4023] = {.lex_state = 31}, - [4024] = {.lex_state = 277}, - [4025] = {.lex_state = 215}, - [4026] = {.lex_state = 178}, - [4027] = {.lex_state = 623}, - [4028] = {.lex_state = 215}, - [4029] = {.lex_state = 277}, - [4030] = {.lex_state = 215}, - [4031] = {.lex_state = 275}, - [4032] = {.lex_state = 215}, - [4033] = {.lex_state = 215}, - [4034] = {.lex_state = 87}, - [4035] = {.lex_state = 88}, - [4036] = {.lex_state = 2}, - [4037] = {.lex_state = 118}, - [4038] = {.lex_state = 215}, - [4039] = {.lex_state = 275}, - [4040] = {.lex_state = 122}, - [4041] = {.lex_state = 275}, - [4042] = {.lex_state = 31}, - [4043] = {.lex_state = 122}, - [4044] = {.lex_state = 215}, - [4045] = {.lex_state = 33}, - [4046] = {.lex_state = 118}, - [4047] = {.lex_state = 36}, - [4048] = {.lex_state = 87}, - [4049] = {.lex_state = 45}, - [4050] = {.lex_state = 215}, - [4051] = {.lex_state = 118}, - [4052] = {.lex_state = 215}, - [4053] = {.lex_state = 87}, - [4054] = {.lex_state = 87}, - [4055] = {.lex_state = 578}, - [4056] = {.lex_state = 262}, - [4057] = {.lex_state = 251}, - [4058] = {.lex_state = 277}, - [4059] = {.lex_state = 178}, - [4060] = {.lex_state = 275}, - [4061] = {.lex_state = 147}, - [4062] = {.lex_state = 0}, - [4063] = {.lex_state = 262}, - [4064] = {.lex_state = 2}, - [4065] = {.lex_state = 0}, - [4066] = {.lex_state = 623}, - [4067] = {.lex_state = 122}, - [4068] = {.lex_state = 88}, - [4069] = {.lex_state = 87}, - [4070] = {.lex_state = 654}, - [4071] = {.lex_state = 119}, - [4072] = {.lex_state = 87}, - [4073] = {.lex_state = 147}, - [4074] = {.lex_state = 127}, - [4075] = {.lex_state = 2}, - [4076] = {.lex_state = 627}, - [4077] = {.lex_state = 251}, - [4078] = {.lex_state = 119}, - [4079] = {.lex_state = 122}, - [4080] = {.lex_state = 277}, - [4081] = {.lex_state = 215}, - [4082] = {.lex_state = 627}, - [4083] = {.lex_state = 118}, - [4084] = {.lex_state = 2}, - [4085] = {.lex_state = 251}, - [4086] = {.lex_state = 225}, - [4087] = {.lex_state = 0}, - [4088] = {.lex_state = 0}, - [4089] = {.lex_state = 118}, - [4090] = {.lex_state = 627}, - [4091] = {.lex_state = 88}, - [4092] = {.lex_state = 277}, - [4093] = {.lex_state = 215}, - [4094] = {.lex_state = 2}, - [4095] = {.lex_state = 215}, - [4096] = {.lex_state = 224}, - [4097] = {.lex_state = 188}, - [4098] = {.lex_state = 147}, - [4099] = {.lex_state = 188}, - [4100] = {.lex_state = 578}, - [4101] = {.lex_state = 31}, - [4102] = {.lex_state = 31}, - [4103] = {.lex_state = 0}, - [4104] = {.lex_state = 188}, - [4105] = {.lex_state = 188}, - [4106] = {.lex_state = 229}, - [4107] = {.lex_state = 229}, - [4108] = {.lex_state = 31}, - [4109] = {.lex_state = 122}, - [4110] = {.lex_state = 229}, - [4111] = {.lex_state = 188}, - [4112] = {.lex_state = 229}, - [4113] = {.lex_state = 122}, - [4114] = {.lex_state = 236}, - [4115] = {.lex_state = 229}, - [4116] = {.lex_state = 236}, - [4117] = {.lex_state = 578}, - [4118] = {.lex_state = 578}, - [4119] = {.lex_state = 578}, - [4120] = {.lex_state = 188}, - [4121] = {.lex_state = 122}, - [4122] = {.lex_state = 122}, - [4123] = {.lex_state = 229}, - [4124] = {.lex_state = 229}, - [4125] = {.lex_state = 31}, - [4126] = {.lex_state = 0}, - [4127] = {.lex_state = 0}, - [4128] = {.lex_state = 0}, - [4129] = {.lex_state = 0}, - [4130] = {.lex_state = 31}, - [4131] = {.lex_state = 0}, - [4132] = {.lex_state = 244}, - [4133] = {.lex_state = 31}, - [4134] = {.lex_state = 0}, - [4135] = {.lex_state = 31}, - [4136] = {.lex_state = 87}, - [4137] = {.lex_state = 244}, - [4138] = {.lex_state = 31}, - [4139] = {.lex_state = 263}, - [4140] = {.lex_state = 31}, - [4141] = {.lex_state = 41}, - [4142] = {.lex_state = 31}, - [4143] = {.lex_state = 122}, - [4144] = {.lex_state = 236}, - [4145] = {.lex_state = 180}, - [4146] = {.lex_state = 215}, - [4147] = {.lex_state = 41}, - [4148] = {.lex_state = 147}, - [4149] = {.lex_state = 267}, - [4150] = {.lex_state = 224}, - [4151] = {.lex_state = 224}, - [4152] = {.lex_state = 251}, - [4153] = {.lex_state = 0}, - [4154] = {.lex_state = 188}, - [4155] = {.lex_state = 626}, - [4156] = {.lex_state = 236}, - [4157] = {.lex_state = 120}, - [4158] = {.lex_state = 31}, - [4159] = {.lex_state = 31}, - [4160] = {.lex_state = 41}, - [4161] = {.lex_state = 31}, - [4162] = {.lex_state = 236}, - [4163] = {.lex_state = 236}, - [4164] = {.lex_state = 129}, - [4165] = {.lex_state = 188}, - [4166] = {.lex_state = 122}, - [4167] = {.lex_state = 122}, - [4168] = {.lex_state = 188}, - [4169] = {.lex_state = 188}, - [4170] = {.lex_state = 0}, - [4171] = {.lex_state = 188}, - [4172] = {.lex_state = 0}, - [4173] = {.lex_state = 178}, - [4174] = {.lex_state = 121}, - [4175] = {.lex_state = 122}, - [4176] = {.lex_state = 31}, + [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 = 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 = 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 = 124}, - [4179] = {.lex_state = 122}, - [4180] = {.lex_state = 121}, - [4181] = {.lex_state = 122}, - [4182] = {.lex_state = 122}, - [4183] = {.lex_state = 188}, + [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 = 124}, - [4186] = {.lex_state = 147}, - [4187] = {.lex_state = 188}, - [4188] = {.lex_state = 188}, - [4189] = {.lex_state = 188}, - [4190] = {.lex_state = 0}, - [4191] = {.lex_state = 188}, - [4192] = {.lex_state = 0}, - [4193] = {.lex_state = 121}, - [4194] = {.lex_state = 188}, - [4195] = {.lex_state = 120}, - [4196] = {.lex_state = 147}, - [4197] = {.lex_state = 188}, - [4198] = {.lex_state = 188}, - [4199] = {.lex_state = 188}, - [4200] = {.lex_state = 188}, - [4201] = {.lex_state = 188}, - [4202] = {.lex_state = 188}, - [4203] = {.lex_state = 188}, - [4204] = {.lex_state = 120}, - [4205] = {.lex_state = 120}, - [4206] = {.lex_state = 122}, - [4207] = {.lex_state = 122}, - [4208] = {.lex_state = 31}, - [4209] = {.lex_state = 120}, - [4210] = {.lex_state = 120}, - [4211] = {.lex_state = 251}, - [4212] = {.lex_state = 120}, - [4213] = {.lex_state = 31}, - [4214] = {.lex_state = 31}, - [4215] = {.lex_state = 31}, - [4216] = {.lex_state = 31}, - [4217] = {.lex_state = 0}, - [4218] = {.lex_state = 31}, - [4219] = {.lex_state = 252}, - [4220] = {.lex_state = 122}, - [4221] = {.lex_state = 578}, - [4222] = {.lex_state = 124}, - [4223] = {.lex_state = 122}, - [4224] = {.lex_state = 120}, - [4225] = {.lex_state = 0}, - [4226] = {.lex_state = 180}, - [4227] = {.lex_state = 124}, - [4228] = {.lex_state = 124}, - [4229] = {.lex_state = 31}, - [4230] = {.lex_state = 120}, - [4231] = {.lex_state = 244}, - [4232] = {.lex_state = 31}, - [4233] = {.lex_state = 120}, - [4234] = {.lex_state = 578}, - [4235] = {.lex_state = 244}, - [4236] = {.lex_state = 124}, - [4237] = {.lex_state = 31}, - [4238] = {.lex_state = 124}, - [4239] = {.lex_state = 124}, - [4240] = {.lex_state = 147}, - [4241] = {.lex_state = 122}, - [4242] = {.lex_state = 31}, - [4243] = {.lex_state = 31}, - [4244] = {.lex_state = 623}, - [4245] = {.lex_state = 244}, - [4246] = {.lex_state = 31}, - [4247] = {.lex_state = 31}, - [4248] = {.lex_state = 626}, - [4249] = {.lex_state = 188}, - [4250] = {.lex_state = 127}, - [4251] = {.lex_state = 178}, - [4252] = {.lex_state = 626}, - [4253] = {.lex_state = 31}, - [4254] = {.lex_state = 31}, - [4255] = {.lex_state = 0}, - [4256] = {.lex_state = 0}, - [4257] = {.lex_state = 244}, - [4258] = {.lex_state = 31}, - [4259] = {.lex_state = 31}, - [4260] = {.lex_state = 31}, - [4261] = {.lex_state = 147}, - [4262] = {.lex_state = 31}, - [4263] = {.lex_state = 31}, - [4264] = {.lex_state = 31}, - [4265] = {.lex_state = 244}, - [4266] = {.lex_state = 31}, - [4267] = {.lex_state = 31}, - [4268] = {.lex_state = 31}, - [4269] = {.lex_state = 31}, - [4270] = {.lex_state = 31}, - [4271] = {.lex_state = 31}, - [4272] = {.lex_state = 31}, - [4273] = {.lex_state = 31}, - [4274] = {.lex_state = 229}, - [4275] = {.lex_state = 578}, - [4276] = {.lex_state = 244}, - [4277] = {.lex_state = 224}, - [4278] = {.lex_state = 224}, - [4279] = {.lex_state = 229}, - [4280] = {.lex_state = 147}, - [4281] = {.lex_state = 180}, - [4282] = {.lex_state = 31}, - [4283] = {.lex_state = 244}, - [4284] = {.lex_state = 229}, - [4285] = {.lex_state = 188}, - [4286] = {.lex_state = 244}, - [4287] = {.lex_state = 122}, - [4288] = {.lex_state = 0}, - [4289] = {.lex_state = 0}, - [4290] = {.lex_state = 31}, - [4291] = {.lex_state = 244}, - [4292] = {.lex_state = 31}, - [4293] = {.lex_state = 31}, - [4294] = {.lex_state = 127}, - [4295] = {.lex_state = 244}, - [4296] = {.lex_state = 244}, - [4297] = {.lex_state = 31}, - [4298] = {.lex_state = 31}, - [4299] = {.lex_state = 31}, - [4300] = {.lex_state = 244}, - [4301] = {.lex_state = 127}, - [4302] = {.lex_state = 224}, - [4303] = {.lex_state = 0}, - [4304] = {.lex_state = 224}, - [4305] = {.lex_state = 31}, - [4306] = {.lex_state = 215}, - [4307] = {.lex_state = 31}, - [4308] = {.lex_state = 31}, - [4309] = {.lex_state = 31}, - [4310] = {.lex_state = 88}, - [4311] = {.lex_state = 31}, - [4312] = {.lex_state = 31}, - [4313] = {.lex_state = 147}, - [4314] = {.lex_state = 578}, - [4315] = {.lex_state = 147}, - [4316] = {.lex_state = 627}, - [4317] = {.lex_state = 0}, - [4318] = {.lex_state = 0}, - [4319] = {.lex_state = 31}, - [4320] = {.lex_state = 31}, - [4321] = {.lex_state = 31}, - [4322] = {.lex_state = 31}, - [4323] = {.lex_state = 31}, - [4324] = {.lex_state = 31}, - [4325] = {.lex_state = 224}, - [4326] = {.lex_state = 31}, - [4327] = {.lex_state = 31}, - [4328] = {.lex_state = 188}, - [4329] = {.lex_state = 188}, - [4330] = {.lex_state = 188}, - [4331] = {.lex_state = 31}, - [4332] = {.lex_state = 188}, - [4333] = {.lex_state = 224}, - [4334] = {.lex_state = 122}, - [4335] = {.lex_state = 31}, - [4336] = {.lex_state = 122}, - [4337] = {.lex_state = 224}, - [4338] = {.lex_state = 31}, - [4339] = {.lex_state = 122}, - [4340] = {.lex_state = 31}, - [4341] = {.lex_state = 31}, - [4342] = {.lex_state = 31}, - [4343] = {.lex_state = 31}, - [4344] = {.lex_state = 31}, - [4345] = {.lex_state = 31}, - [4346] = {.lex_state = 263}, - [4347] = {.lex_state = 31}, - [4348] = {.lex_state = 31}, - [4349] = {.lex_state = 31}, - [4350] = {.lex_state = 31}, - [4351] = {.lex_state = 31}, - [4352] = {.lex_state = 31}, - [4353] = {.lex_state = 31}, - [4354] = {.lex_state = 31}, - [4355] = {.lex_state = 31}, - [4356] = {.lex_state = 31}, - [4357] = {.lex_state = 31}, - [4358] = {.lex_state = 31}, - [4359] = {.lex_state = 147}, - [4360] = {.lex_state = 263}, - [4361] = {.lex_state = 147}, - [4362] = {.lex_state = 31}, - [4363] = {.lex_state = 147}, - [4364] = {.lex_state = 147}, - [4365] = {.lex_state = 31}, - [4366] = {.lex_state = 263}, - [4367] = {.lex_state = 31}, - [4368] = {.lex_state = 263}, - [4369] = {.lex_state = 31}, - [4370] = {.lex_state = 244}, - [4371] = {.lex_state = 244}, - [4372] = {.lex_state = 244}, - [4373] = {.lex_state = 122}, - [4374] = {.lex_state = 224}, - [4375] = {.lex_state = 224}, - [4376] = {.lex_state = 0}, - [4377] = {.lex_state = 0}, - [4378] = {.lex_state = 0}, - [4379] = {.lex_state = 31}, - [4380] = {.lex_state = 31}, - [4381] = {.lex_state = 31}, - [4382] = {.lex_state = 31}, - [4383] = {.lex_state = 31}, - [4384] = {.lex_state = 31}, - [4385] = {.lex_state = 31}, - [4386] = {.lex_state = 244}, - [4387] = {.lex_state = 31}, - [4388] = {.lex_state = 120}, - [4389] = {.lex_state = 229}, - [4390] = {.lex_state = 147}, - [4391] = {.lex_state = 120}, - [4392] = {.lex_state = 120}, - [4393] = {.lex_state = 31}, - [4394] = {.lex_state = 229}, - [4395] = {.lex_state = 31}, - [4396] = {.lex_state = 31}, - [4397] = {.lex_state = 31}, - [4398] = {.lex_state = 0}, - [4399] = {.lex_state = 31}, - [4400] = {.lex_state = 0}, - [4401] = {.lex_state = 0}, - [4402] = {.lex_state = 0}, - [4403] = {.lex_state = 31}, - [4404] = {.lex_state = 31}, - [4405] = {.lex_state = 31}, - [4406] = {.lex_state = 0}, - [4407] = {.lex_state = 31}, - [4408] = {.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 = 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 = 0}, - [4412] = {.lex_state = 229}, - [4413] = {.lex_state = 122}, - [4414] = {.lex_state = 31}, - [4415] = {.lex_state = 122}, - [4416] = {.lex_state = 239}, - [4417] = {.lex_state = 239}, - [4418] = {.lex_state = 31}, - [4419] = {.lex_state = 0}, - [4420] = {.lex_state = 239}, - [4421] = {.lex_state = 0}, - [4422] = {.lex_state = 127}, - [4423] = {.lex_state = 31}, - [4424] = {.lex_state = 0}, + [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 = 45}, - [4427] = {.lex_state = 45}, - [4428] = {.lex_state = 270}, - [4429] = {.lex_state = 227}, - [4430] = {.lex_state = 147}, - [4431] = {.lex_state = 124}, - [4432] = {.lex_state = 0}, - [4433] = {.lex_state = 0}, - [4434] = {.lex_state = 239}, - [4435] = {.lex_state = 34}, - [4436] = {.lex_state = 122}, - [4437] = {.lex_state = 34}, - [4438] = {.lex_state = 239}, - [4439] = {.lex_state = 122}, - [4440] = {.lex_state = 122}, - [4441] = {.lex_state = 188}, - [4442] = {.lex_state = 0}, - [4443] = {.lex_state = 0}, - [4444] = {.lex_state = 0}, - [4445] = {.lex_state = 0}, - [4446] = {.lex_state = 0}, - [4447] = {.lex_state = 270}, - [4448] = {.lex_state = 147}, - [4449] = {.lex_state = 188}, - [4450] = {.lex_state = 147}, - [4451] = {.lex_state = 0}, - [4452] = {.lex_state = 0}, - [4453] = {.lex_state = 0}, - [4454] = {.lex_state = 188}, - [4455] = {.lex_state = 188}, + [4426] = {.lex_state = 252}, + [4427] = {.lex_state = 624}, + [4428] = {.lex_state = 230}, + [4429] = {.lex_state = 33}, + [4430] = {.lex_state = 252}, + [4431] = {.lex_state = 33}, + [4432] = {.lex_state = 189}, + [4433] = {.lex_state = 264}, + [4434] = {.lex_state = 33}, + [4435] = {.lex_state = 264}, + [4436] = {.lex_state = 264}, + [4437] = {.lex_state = 0}, + [4438] = {.lex_state = 123}, + [4439] = {.lex_state = 0}, + [4440] = {.lex_state = 230}, + [4441] = {.lex_state = 574}, + [4442] = {.lex_state = 230}, + [4443] = {.lex_state = 33}, + [4444] = {.lex_state = 123}, + [4445] = {.lex_state = 33}, + [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 = 578}, - [4458] = {.lex_state = 626}, - [4459] = {.lex_state = 0}, - [4460] = {.lex_state = 147}, - [4461] = {.lex_state = 122}, - [4462] = {.lex_state = 34}, - [4463] = {.lex_state = 147}, - [4464] = {.lex_state = 122}, - [4465] = {.lex_state = 147}, - [4466] = {.lex_state = 122}, - [4467] = {.lex_state = 0}, - [4468] = {.lex_state = 122}, - [4469] = {.lex_state = 0}, - [4470] = {.lex_state = 122}, - [4471] = {.lex_state = 0}, - [4472] = {.lex_state = 88}, - [4473] = {.lex_state = 0}, - [4474] = {.lex_state = 31}, - [4475] = {.lex_state = 122}, - [4476] = {.lex_state = 0}, - [4477] = {.lex_state = 188}, + [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 = 123}, + [4474] = {.lex_state = 123}, + [4475] = {.lex_state = 33}, + [4476] = {.lex_state = 225}, + [4477] = {.lex_state = 0}, [4478] = {.lex_state = 0}, - [4479] = {.lex_state = 45}, - [4480] = {.lex_state = 0}, - [4481] = {.lex_state = 122}, - [4482] = {.lex_state = 224}, - [4483] = {.lex_state = 0}, - [4484] = {.lex_state = 0}, - [4485] = {.lex_state = 34}, - [4486] = {.lex_state = 239}, - [4487] = {.lex_state = 253}, - [4488] = {.lex_state = 227}, - [4489] = {.lex_state = 122}, - [4490] = {.lex_state = 122}, - [4491] = {.lex_state = 127}, - [4492] = {.lex_state = 147}, - [4493] = {.lex_state = 122}, - [4494] = {.lex_state = 147}, - [4495] = {.lex_state = 277}, - [4496] = {.lex_state = 147}, - [4497] = {.lex_state = 122}, - [4498] = {.lex_state = 147}, - [4499] = {.lex_state = 34}, - [4500] = {.lex_state = 147}, - [4501] = {.lex_state = 122}, - [4502] = {.lex_state = 31}, - [4503] = {.lex_state = 121}, - [4504] = {.lex_state = 0}, - [4505] = {.lex_state = 31}, - [4506] = {.lex_state = 122}, - [4507] = {.lex_state = 0}, - [4508] = {.lex_state = 122}, - [4509] = {.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 = 148}, + [4496] = {.lex_state = 225}, + [4497] = {.lex_state = 0}, + [4498] = {.lex_state = 0}, + [4499] = {.lex_state = 0}, + [4500] = {.lex_state = 0}, + [4501] = {.lex_state = 225}, + [4502] = {.lex_state = 0}, + [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 = 31}, - [4514] = {.lex_state = 0}, - [4515] = {.lex_state = 147}, - [4516] = {.lex_state = 122}, - [4517] = {.lex_state = 0}, - [4518] = {.lex_state = 34}, - [4519] = {.lex_state = 122}, - [4520] = {.lex_state = 31}, - [4521] = {.lex_state = 122}, - [4522] = {.lex_state = 147}, - [4523] = {.lex_state = 0}, - [4524] = {.lex_state = 239}, - [4525] = {.lex_state = 227}, - [4526] = {.lex_state = 188}, - [4527] = {.lex_state = 612}, - [4528] = {.lex_state = 188}, - [4529] = {.lex_state = 188}, - [4530] = {.lex_state = 122}, - [4531] = {.lex_state = 0}, - [4532] = {.lex_state = 0}, - [4533] = {.lex_state = 0}, - [4534] = {.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 = 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 = 240}, + [4531] = {.lex_state = 122}, + [4532] = {.lex_state = 123}, + [4533] = {.lex_state = 148}, + [4534] = {.lex_state = 148}, [4535] = {.lex_state = 0}, [4536] = {.lex_state = 0}, - [4537] = {.lex_state = 122}, - [4538] = {.lex_state = 0}, - [4539] = {.lex_state = 122}, - [4540] = {.lex_state = 31}, - [4541] = {.lex_state = 122}, - [4542] = {.lex_state = 31}, - [4543] = {.lex_state = 239}, - [4544] = {.lex_state = 0}, - [4545] = {.lex_state = 147}, - [4546] = {.lex_state = 31}, - [4547] = {.lex_state = 121}, - [4548] = {.lex_state = 0}, - [4549] = {.lex_state = 121}, - [4550] = {.lex_state = 122}, - [4551] = {.lex_state = 0}, - [4552] = {.lex_state = 0}, - [4553] = {.lex_state = 188}, - [4554] = {.lex_state = 122}, - [4555] = {.lex_state = 31}, - [4556] = {.lex_state = 188}, - [4557] = {.lex_state = 188}, - [4558] = {.lex_state = 31}, - [4559] = {.lex_state = 229}, - [4560] = {.lex_state = 122}, - [4561] = {.lex_state = 122}, - [4562] = {.lex_state = 31}, - [4563] = {.lex_state = 277}, - [4564] = {.lex_state = 631}, - [4565] = {.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 = 240}, + [4565] = {.lex_state = 189}, [4566] = {.lex_state = 0}, - [4567] = {.lex_state = 147}, - [4568] = {.lex_state = 0}, - [4569] = {.lex_state = 230}, - [4570] = {.lex_state = 45}, - [4571] = {.lex_state = 122}, - [4572] = {.lex_state = 122}, - [4573] = {.lex_state = 122}, - [4574] = {.lex_state = 188}, - [4575] = {.lex_state = 122}, + [4567] = {.lex_state = 0}, + [4568] = {.lex_state = 179}, + [4569] = {.lex_state = 0}, + [4570] = {.lex_state = 0}, + [4571] = {.lex_state = 33}, + [4572] = {.lex_state = 123}, + [4573] = {.lex_state = 0}, + [4574] = {.lex_state = 43}, + [4575] = {.lex_state = 0}, [4576] = {.lex_state = 0}, - [4577] = {.lex_state = 631}, - [4578] = {.lex_state = 0}, + [4577] = {.lex_state = 0}, + [4578] = {.lex_state = 33}, [4579] = {.lex_state = 0}, - [4580] = {.lex_state = 239}, - [4581] = {.lex_state = 0}, - [4582] = {.lex_state = 121}, + [4580] = {.lex_state = 189}, + [4581] = {.lex_state = 189}, + [4582] = {.lex_state = 47}, [4583] = {.lex_state = 0}, - [4584] = {.lex_state = 31}, + [4584] = {.lex_state = 0}, [4585] = {.lex_state = 0}, - [4586] = {.lex_state = 0}, - [4587] = {.lex_state = 34}, + [4586] = {.lex_state = 278}, + [4587] = {.lex_state = 123}, [4588] = {.lex_state = 0}, - [4589] = {.lex_state = 0}, - [4590] = {.lex_state = 0}, - [4591] = {.lex_state = 239}, - [4592] = {.lex_state = 239}, - [4593] = {.lex_state = 0}, - [4594] = {.lex_state = 124}, - [4595] = {.lex_state = 122}, - [4596] = {.lex_state = 121}, + [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 = 0}, - [4599] = {.lex_state = 230}, - [4600] = {.lex_state = 0}, - [4601] = {.lex_state = 122}, - [4602] = {.lex_state = 239}, - [4603] = {.lex_state = 0}, - [4604] = {.lex_state = 268}, - [4605] = {.lex_state = 122}, - [4606] = {.lex_state = 31}, - [4607] = {.lex_state = 0}, - [4608] = {.lex_state = 45}, - [4609] = {.lex_state = 31}, - [4610] = {.lex_state = 188}, - [4611] = {.lex_state = 31}, - [4612] = {.lex_state = 188}, - [4613] = {.lex_state = 31}, - [4614] = {.lex_state = 188}, - [4615] = {.lex_state = 0}, - [4616] = {.lex_state = 0}, - [4617] = {.lex_state = 31}, + [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 = 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 = 122}, - [4620] = {.lex_state = 41}, - [4621] = {.lex_state = 239}, - [4622] = {.lex_state = 227}, - [4623] = {.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 = 178}, + [4625] = {.lex_state = 0}, [4626] = {.lex_state = 0}, - [4627] = {.lex_state = 122}, + [4627] = {.lex_state = 123}, [4628] = {.lex_state = 0}, - [4629] = {.lex_state = 122}, - [4630] = {.lex_state = 0}, + [4629] = {.lex_state = 0}, + [4630] = {.lex_state = 628}, [4631] = {.lex_state = 0}, - [4632] = {.lex_state = 578}, - [4633] = {.lex_state = 45}, - [4634] = {.lex_state = 31}, - [4635] = {.lex_state = 231}, - [4636] = {.lex_state = 0}, - [4637] = {.lex_state = 239}, - [4638] = {.lex_state = 122}, - [4639] = {.lex_state = 122}, + [4632] = {.lex_state = 0}, + [4633] = {.lex_state = 123}, + [4634] = {.lex_state = 0}, + [4635] = {.lex_state = 123}, + [4636] = {.lex_state = 123}, + [4637] = {.lex_state = 33}, + [4638] = {.lex_state = 0}, + [4639] = {.lex_state = 0}, [4640] = {.lex_state = 0}, - [4641] = {.lex_state = 122}, - [4642] = {.lex_state = 239}, - [4643] = {.lex_state = 0}, + [4641] = {.lex_state = 0}, + [4642] = {.lex_state = 0}, + [4643] = {.lex_state = 33}, [4644] = {.lex_state = 0}, - [4645] = {.lex_state = 277}, - [4646] = {.lex_state = 45}, + [4645] = {.lex_state = 0}, + [4646] = {.lex_state = 123}, [4647] = {.lex_state = 0}, - [4648] = {.lex_state = 239}, - [4649] = {.lex_state = 122}, - [4650] = {.lex_state = 122}, - [4651] = {.lex_state = 122}, + [4648] = {.lex_state = 91}, + [4649] = {.lex_state = 0}, + [4650] = {.lex_state = 0}, + [4651] = {.lex_state = 125}, [4652] = {.lex_state = 0}, - [4653] = {.lex_state = 31}, + [4653] = {.lex_state = 0}, [4654] = {.lex_state = 0}, - [4655] = {.lex_state = 31}, + [4655] = {.lex_state = 128}, [4656] = {.lex_state = 0}, - [4657] = {.lex_state = 122}, - [4658] = {.lex_state = 88}, - [4659] = {.lex_state = 127}, - [4660] = {.lex_state = 0}, - [4661] = {.lex_state = 0}, - [4662] = {.lex_state = 0}, - [4663] = {.lex_state = 31}, + [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 = 122}, - [4666] = {.lex_state = 0}, - [4667] = {.lex_state = 147}, - [4668] = {.lex_state = 31}, - [4669] = {.lex_state = 122}, - [4670] = {.lex_state = 2184}, - [4671] = {.lex_state = 2184}, - [4672] = {.lex_state = 2184}, - [4673] = {.lex_state = 122}, - [4674] = {.lex_state = 2184}, - [4675] = {.lex_state = 2184}, - [4676] = {.lex_state = 122}, - [4677] = {.lex_state = 122}, - [4678] = {.lex_state = 227}, - [4679] = {.lex_state = 227}, - [4680] = {.lex_state = 2184}, - [4681] = {.lex_state = 122}, - [4682] = {.lex_state = 0}, - [4683] = {.lex_state = 0}, - [4684] = {.lex_state = 2184}, - [4685] = {.lex_state = 227}, - [4686] = {.lex_state = 2184}, - [4687] = {.lex_state = 579}, - [4688] = {.lex_state = 2188}, - [4689] = {.lex_state = 2188}, - [4690] = {.lex_state = 0}, + [4665] = {.lex_state = 0}, + [4666] = {.lex_state = 573}, + [4667] = {.lex_state = 0}, + [4668] = {.lex_state = 33}, + [4669] = {.lex_state = 33}, + [4670] = {.lex_state = 189}, + [4671] = {.lex_state = 189}, + [4672] = {.lex_state = 0}, + [4673] = {.lex_state = 148}, + [4674] = {.lex_state = 240}, + [4675] = {.lex_state = 122}, + [4676] = {.lex_state = 123}, + [4677] = {.lex_state = 123}, + [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 = 36}, [4691] = {.lex_state = 0}, - [4692] = {.lex_state = 122}, - [4693] = {.lex_state = 227}, - [4694] = {.lex_state = 0}, - [4695] = {.lex_state = 0}, + [4692] = {.lex_state = 123}, + [4693] = {.lex_state = 232}, + [4694] = {.lex_state = 123}, + [4695] = {.lex_state = 123}, [4696] = {.lex_state = 0}, - [4697] = {.lex_state = 0}, + [4697] = {.lex_state = 91}, [4698] = {.lex_state = 0}, [4699] = {.lex_state = 0}, [4700] = {.lex_state = 0}, - [4701] = {.lex_state = 0}, - [4702] = {.lex_state = 2186}, - [4703] = {.lex_state = 224}, + [4701] = {.lex_state = 123}, + [4702] = {.lex_state = 189}, + [4703] = {.lex_state = 0}, [4704] = {.lex_state = 0}, [4705] = {.lex_state = 0}, - [4706] = {.lex_state = 0}, - [4707] = {.lex_state = 0}, - [4708] = {.lex_state = 227}, + [4706] = {.lex_state = 123}, + [4707] = {.lex_state = 36}, + [4708] = {.lex_state = 240}, [4709] = {.lex_state = 0}, - [4710] = {.lex_state = 0}, - [4711] = {.lex_state = 0}, - [4712] = {.lex_state = 2184}, - [4713] = {.lex_state = 2184}, + [4710] = {.lex_state = 123}, + [4711] = {.lex_state = 47}, + [4712] = {.lex_state = 47}, + [4713] = {.lex_state = 0}, [4714] = {.lex_state = 0}, - [4715] = {.lex_state = 122}, - [4716] = {.lex_state = 0}, - [4717] = {.lex_state = 0}, - [4718] = {.lex_state = 122}, + [4715] = {.lex_state = 0}, + [4716] = {.lex_state = 47}, + [4717] = {.lex_state = 240}, + [4718] = {.lex_state = 189}, [4719] = {.lex_state = 0}, - [4720] = {.lex_state = 0}, - [4721] = {.lex_state = 122}, - [4722] = {.lex_state = 121}, + [4720] = {.lex_state = 189}, + [4721] = {.lex_state = 189}, + [4722] = {.lex_state = 240}, [4723] = {.lex_state = 122}, - [4724] = {.lex_state = 0}, - [4725] = {.lex_state = 34}, - [4726] = {.lex_state = 122}, - [4727] = {.lex_state = 2186}, - [4728] = {.lex_state = 2186}, - [4729] = {.lex_state = 0}, - [4730] = {.lex_state = 0}, - [4731] = {.lex_state = 0}, - [4732] = {.lex_state = 124}, - [4733] = {.lex_state = 122}, - [4734] = {.lex_state = 0}, - [4735] = {.lex_state = 0}, - [4736] = {.lex_state = 2188}, - [4737] = {.lex_state = 122}, + [4724] = {.lex_state = 33}, + [4725] = {.lex_state = 0}, + [4726] = {.lex_state = 0}, + [4727] = {.lex_state = 123}, + [4728] = {.lex_state = 0}, + [4729] = {.lex_state = 123}, + [4730] = {.lex_state = 624}, + [4731] = {.lex_state = 123}, + [4732] = {.lex_state = 33}, + [4733] = {.lex_state = 33}, + [4734] = {.lex_state = 573}, + [4735] = {.lex_state = 123}, + [4736] = {.lex_state = 189}, + [4737] = {.lex_state = 189}, [4738] = {.lex_state = 122}, [4739] = {.lex_state = 0}, - [4740] = {.lex_state = 122}, - [4741] = {.lex_state = 0}, - [4742] = {.lex_state = 227}, - [4743] = {.lex_state = 0}, - [4744] = {.lex_state = 147}, + [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 = 122}, - [4747] = {.lex_state = 0}, - [4748] = {.lex_state = 2184}, - [4749] = {.lex_state = 2184}, - [4750] = {.lex_state = 122}, - [4751] = {.lex_state = 0}, - [4752] = {.lex_state = 631}, - [4753] = {.lex_state = 0}, - [4754] = {.lex_state = 227}, - [4755] = {.lex_state = 124}, - [4756] = {.lex_state = 0}, - [4757] = {.lex_state = 124}, - [4758] = {.lex_state = 0}, - [4759] = {.lex_state = 122}, - [4760] = {.lex_state = 2186}, + [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 = 2184}, + [4762] = {.lex_state = 240}, [4763] = {.lex_state = 0}, - [4764] = {.lex_state = 0}, - [4765] = {.lex_state = 122}, - [4766] = {.lex_state = 0}, - [4767] = {.lex_state = 0}, + [4764] = {.lex_state = 33}, + [4765] = {.lex_state = 123}, + [4766] = {.lex_state = 240}, + [4767] = {.lex_state = 278}, [4768] = {.lex_state = 0}, - [4769] = {.lex_state = 122}, - [4770] = {.lex_state = 121}, - [4771] = {.lex_state = 122}, - [4772] = {.lex_state = 578}, - [4773] = {.lex_state = 2188}, - [4774] = {.lex_state = 227}, - [4775] = {.lex_state = 2188}, - [4776] = {.lex_state = 2184}, - [4777] = {.lex_state = 2186}, - [4778] = {.lex_state = 2184}, - [4779] = {.lex_state = 0}, - [4780] = {.lex_state = 0}, - [4781] = {.lex_state = 122}, - [4782] = {.lex_state = 122}, - [4783] = {.lex_state = 0}, - [4784] = {.lex_state = 0}, - [4785] = {.lex_state = 122}, - [4786] = {.lex_state = 227}, - [4787] = {.lex_state = 122}, - [4788] = {.lex_state = 2188}, - [4789] = {.lex_state = 122}, - [4790] = {.lex_state = 122}, - [4791] = {.lex_state = 122}, - [4792] = {.lex_state = 122}, - [4793] = {.lex_state = 227}, - [4794] = {.lex_state = 122}, - [4795] = {.lex_state = 2188}, - [4796] = {.lex_state = 1716}, - [4797] = {.lex_state = 147}, - [4798] = {.lex_state = 626}, - [4799] = {.lex_state = 2}, - [4800] = {.lex_state = 0}, - [4801] = {.lex_state = 0}, - [4802] = {.lex_state = 578}, - [4803] = {.lex_state = 626}, - [4804] = {.lex_state = 122}, - [4805] = {.lex_state = 227}, - [4806] = {.lex_state = 147}, - [4807] = {.lex_state = 122}, - [4808] = {.lex_state = 0}, - [4809] = {.lex_state = 122}, - [4810] = {.lex_state = 0}, - [4811] = {.lex_state = 122}, - [4812] = {.lex_state = 0}, - [4813] = {.lex_state = 272}, - [4814] = {.lex_state = 2184}, - [4815] = {.lex_state = 2188}, - [4816] = {.lex_state = 2188}, - [4817] = {.lex_state = 227}, - [4818] = {.lex_state = 272}, - [4819] = {.lex_state = 122}, - [4820] = {.lex_state = 0}, - [4821] = {.lex_state = 122}, - [4822] = {.lex_state = 227}, - [4823] = {.lex_state = 0}, - [4824] = {.lex_state = 122}, + [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 = 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 = 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 = 0}, - [4827] = {.lex_state = 0}, - [4828] = {.lex_state = 239}, - [4829] = {.lex_state = 122}, - [4830] = {.lex_state = 31}, - [4831] = {.lex_state = 31}, - [4832] = {.lex_state = 0}, - [4833] = {.lex_state = 227}, - [4834] = {.lex_state = 122}, - [4835] = {.lex_state = 0}, - [4836] = {.lex_state = 2184}, - [4837] = {.lex_state = 147}, - [4838] = {.lex_state = 122}, - [4839] = {.lex_state = 0}, - [4840] = {.lex_state = 1191}, - [4841] = {.lex_state = 31}, - [4842] = {.lex_state = 230}, - [4843] = {.lex_state = 1191}, - [4844] = {.lex_state = 623}, - [4845] = {.lex_state = 0, .external_lex_state = 3}, - [4846] = {.lex_state = 31}, + [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 = 0}, + [4842] = {.lex_state = 0}, + [4843] = {.lex_state = 0}, + [4844] = {.lex_state = 0}, + [4845] = {.lex_state = 0}, + [4846] = {.lex_state = 123}, [4847] = {.lex_state = 0}, - [4848] = {.lex_state = 626}, + [4848] = {.lex_state = 0}, [4849] = {.lex_state = 0}, [4850] = {.lex_state = 0}, - [4851] = {.lex_state = 0}, - [4852] = {.lex_state = 0}, - [4853] = {.lex_state = 0}, - [4854] = {.lex_state = 0}, - [4855] = {.lex_state = 578}, - [4856] = {.lex_state = 578}, - [4857] = {.lex_state = 0}, - [4858] = {.lex_state = 2186}, - [4859] = {.lex_state = 0}, - [4860] = {.lex_state = 31}, - [4861] = {.lex_state = 31}, - [4862] = {.lex_state = 31}, + [4851] = {.lex_state = 123}, + [4852] = {.lex_state = 123}, + [4853] = {.lex_state = 123}, + [4854] = {.lex_state = 2185}, + [4855] = {.lex_state = 2185}, + [4856] = {.lex_state = 2181}, + [4857] = {.lex_state = 2181}, + [4858] = {.lex_state = 0}, + [4859] = {.lex_state = 123}, + [4860] = {.lex_state = 228}, + [4861] = {.lex_state = 123}, + [4862] = {.lex_state = 0}, [4863] = {.lex_state = 0}, - [4864] = {.lex_state = 1191}, - [4865] = {.lex_state = 0, .external_lex_state = 3}, + [4864] = {.lex_state = 0}, + [4865] = {.lex_state = 0}, [4866] = {.lex_state = 0}, - [4867] = {.lex_state = 31}, - [4868] = {.lex_state = 1191}, - [4869] = {.lex_state = 0}, - [4870] = {.lex_state = 1191}, - [4871] = {.lex_state = 623}, + [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 = 578}, - [4874] = {.lex_state = 578}, - [4875] = {.lex_state = 31}, - [4876] = {.lex_state = 31}, - [4877] = {.lex_state = 31}, - [4878] = {.lex_state = 623}, - [4879] = {.lex_state = 0, .external_lex_state = 3}, - [4880] = {.lex_state = 2184}, - [4881] = {.lex_state = 0}, - [4882] = {.lex_state = 0}, - [4883] = {.lex_state = 0}, - [4884] = {.lex_state = 45}, - [4885] = {.lex_state = 121}, + [4873] = {.lex_state = 0}, + [4874] = {.lex_state = 0}, + [4875] = {.lex_state = 0}, + [4876] = {.lex_state = 573}, + [4877] = {.lex_state = 0}, + [4878] = {.lex_state = 123}, + [4879] = {.lex_state = 123}, + [4880] = {.lex_state = 228}, + [4881] = {.lex_state = 2181}, + [4882] = {.lex_state = 123}, + [4883] = {.lex_state = 123}, + [4884] = {.lex_state = 2181}, + [4885] = {.lex_state = 0}, [4886] = {.lex_state = 0}, - [4887] = {.lex_state = 578}, - [4888] = {.lex_state = 578}, - [4889] = {.lex_state = 31}, - [4890] = {.lex_state = 1695}, - [4891] = {.lex_state = 31}, - [4892] = {.lex_state = 2188}, - [4893] = {.lex_state = 0, .external_lex_state = 3}, + [4887] = {.lex_state = 0}, + [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 = 29}, - [4896] = {.lex_state = 230}, - [4897] = {.lex_state = 230}, + [4895] = {.lex_state = 0}, + [4896] = {.lex_state = 33}, + [4897] = {.lex_state = 123}, [4898] = {.lex_state = 0}, - [4899] = {.lex_state = 578}, - [4900] = {.lex_state = 578}, - [4901] = {.lex_state = 0}, - [4902] = {.lex_state = 227}, - [4903] = {.lex_state = 0, .external_lex_state = 3}, - [4904] = {.lex_state = 2188}, - [4905] = {.lex_state = 1191}, - [4906] = {.lex_state = 31}, - [4907] = {.lex_state = 578}, - [4908] = {.lex_state = 0}, - [4909] = {.lex_state = 578}, - [4910] = {.lex_state = 578}, - [4911] = {.lex_state = 0, .external_lex_state = 3}, - [4912] = {.lex_state = 31}, - [4913] = {.lex_state = 0, .external_lex_state = 3}, - [4914] = {.lex_state = 0, .external_lex_state = 3}, - [4915] = {.lex_state = 227}, - [4916] = {.lex_state = 45}, + [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 = 228}, + [4909] = {.lex_state = 0}, + [4910] = {.lex_state = 0}, + [4911] = {.lex_state = 123}, + [4912] = {.lex_state = 123}, + [4913] = {.lex_state = 0}, + [4914] = {.lex_state = 0}, + [4915] = {.lex_state = 123}, + [4916] = {.lex_state = 2183}, [4917] = {.lex_state = 0}, - [4918] = {.lex_state = 0}, - [4919] = {.lex_state = 578}, - [4920] = {.lex_state = 578}, - [4921] = {.lex_state = 121}, - [4922] = {.lex_state = 623}, - [4923] = {.lex_state = 0, .external_lex_state = 3}, - [4924] = {.lex_state = 227}, - [4925] = {.lex_state = 0}, - [4926] = {.lex_state = 578}, - [4927] = {.lex_state = 578}, - [4928] = {.lex_state = 2}, - [4929] = {.lex_state = 0}, - [4930] = {.lex_state = 0, .external_lex_state = 3}, + [4918] = {.lex_state = 123}, + [4919] = {.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 = 578}, - [4934] = {.lex_state = 578}, - [4935] = {.lex_state = 2199}, - [4936] = {.lex_state = 0, .external_lex_state = 3}, - [4937] = {.lex_state = 2188}, + [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 = 578}, - [4940] = {.lex_state = 578}, - [4941] = {.lex_state = 0}, - [4942] = {.lex_state = 0}, - [4943] = {.lex_state = 0, .external_lex_state = 3}, - [4944] = {.lex_state = 29}, + [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 = 0}, - [4946] = {.lex_state = 578}, - [4947] = {.lex_state = 578}, - [4948] = {.lex_state = 0}, - [4949] = {.lex_state = 227}, - [4950] = {.lex_state = 0, .external_lex_state = 3}, - [4951] = {.lex_state = 31}, - [4952] = {.lex_state = 0}, - [4953] = {.lex_state = 578}, - [4954] = {.lex_state = 578}, + [4946] = {.lex_state = 228}, + [4947] = {.lex_state = 0}, + [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 = 0, .external_lex_state = 3}, - [4957] = {.lex_state = 31}, - [4958] = {.lex_state = 0}, - [4959] = {.lex_state = 578}, - [4960] = {.lex_state = 578}, - [4961] = {.lex_state = 31}, - [4962] = {.lex_state = 0, .external_lex_state = 3}, - [4963] = {.lex_state = 31}, + [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 = 0}, + [4963] = {.lex_state = 0}, [4964] = {.lex_state = 0}, - [4965] = {.lex_state = 578}, - [4966] = {.lex_state = 578}, - [4967] = {.lex_state = 0}, - [4968] = {.lex_state = 0, .external_lex_state = 4}, - [4969] = {.lex_state = 0}, - [4970] = {.lex_state = 31}, - [4971] = {.lex_state = 666}, + [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 = 1691}, - [4974] = {.lex_state = 1695}, + [4973] = {.lex_state = 573}, + [4974] = {.lex_state = 33}, [4975] = {.lex_state = 0}, - [4976] = {.lex_state = 0}, - [4977] = {.lex_state = 146}, - [4978] = {.lex_state = 121}, + [4976] = {.lex_state = 573}, + [4977] = {.lex_state = 0}, + [4978] = {.lex_state = 0}, [4979] = {.lex_state = 0}, - [4980] = {.lex_state = 273}, - [4981] = {.lex_state = 0}, - [4982] = {.lex_state = 0}, - [4983] = {.lex_state = 0}, - [4984] = {.lex_state = 31}, - [4985] = {.lex_state = 0}, - [4986] = {.lex_state = 623}, - [4987] = {.lex_state = 0}, - [4988] = {.lex_state = 0}, - [4989] = {.lex_state = 31}, + [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 = 578}, + [4991] = {.lex_state = 228}, [4992] = {.lex_state = 0}, - [4993] = {.lex_state = 227}, - [4994] = {.lex_state = 626}, - [4995] = {.lex_state = 578}, - [4996] = {.lex_state = 31}, + [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 = 1191}, - [5000] = {.lex_state = 0}, + [4999] = {.lex_state = 122}, + [5000] = {.lex_state = 147}, [5001] = {.lex_state = 0}, - [5002] = {.lex_state = 623}, - [5003] = {.lex_state = 2}, - [5004] = {.lex_state = 230}, - [5005] = {.lex_state = 0}, + [5002] = {.lex_state = 0}, + [5003] = {.lex_state = 0}, + [5004] = {.lex_state = 573}, + [5005] = {.lex_state = 573}, [5006] = {.lex_state = 0}, [5007] = {.lex_state = 0}, - [5008] = {.lex_state = 2186}, + [5008] = {.lex_state = 0, .external_lex_state = 3}, [5009] = {.lex_state = 0}, - [5010] = {.lex_state = 0}, - [5011] = {.lex_state = 31}, - [5012] = {.lex_state = 623}, - [5013] = {.lex_state = 623}, - [5014] = {.lex_state = 0}, - [5015] = {.lex_state = 2}, - [5016] = {.lex_state = 0}, - [5017] = {.lex_state = 31}, - [5018] = {.lex_state = 0}, - [5019] = {.lex_state = 2}, - [5020] = {.lex_state = 31}, - [5021] = {.lex_state = 1191}, - [5022] = {.lex_state = 1191}, + [5010] = {.lex_state = 231}, + [5011] = {.lex_state = 620}, + [5012] = {.lex_state = 231}, + [5013] = {.lex_state = 0}, + [5014] = {.lex_state = 573}, + [5015] = {.lex_state = 573}, + [5016] = {.lex_state = 2181}, + [5017] = {.lex_state = 0}, + [5018] = {.lex_state = 0, .external_lex_state = 3}, + [5019] = {.lex_state = 2196}, + [5020] = {.lex_state = 0}, + [5021] = {.lex_state = 573}, + [5022] = {.lex_state = 573}, [5023] = {.lex_state = 0}, - [5024] = {.lex_state = 0}, - [5025] = {.lex_state = 31}, - [5026] = {.lex_state = 121}, - [5027] = {.lex_state = 227}, - [5028] = {.lex_state = 31}, - [5029] = {.lex_state = 666}, - [5030] = {.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 = 230}, - [5033] = {.lex_state = 31}, + [5032] = {.lex_state = 0, .external_lex_state = 3}, + [5033] = {.lex_state = 231}, [5034] = {.lex_state = 0}, - [5035] = {.lex_state = 623}, - [5036] = {.lex_state = 0}, + [5035] = {.lex_state = 573}, + [5036] = {.lex_state = 573}, [5037] = {.lex_state = 0}, - [5038] = {.lex_state = 0, .external_lex_state = 3}, - [5039] = {.lex_state = 623}, + [5038] = {.lex_state = 33}, + [5039] = {.lex_state = 0, .external_lex_state = 3}, [5040] = {.lex_state = 0}, - [5041] = {.lex_state = 227}, - [5042] = {.lex_state = 31}, - [5043] = {.lex_state = 0, .external_lex_state = 4}, - [5044] = {.lex_state = 578}, - [5045] = {.lex_state = 31}, - [5046] = {.lex_state = 0}, - [5047] = {.lex_state = 0}, - [5048] = {.lex_state = 31}, - [5049] = {.lex_state = 623}, - [5050] = {.lex_state = 0}, - [5051] = {.lex_state = 1191}, - [5052] = {.lex_state = 29}, - [5053] = {.lex_state = 31}, + [5041] = {.lex_state = 0}, + [5042] = {.lex_state = 573}, + [5043] = {.lex_state = 573}, + [5044] = {.lex_state = 0}, + [5045] = {.lex_state = 33}, + [5046] = {.lex_state = 0, .external_lex_state = 3}, + [5047] = {.lex_state = 122}, + [5048] = {.lex_state = 0}, + [5049] = {.lex_state = 573}, + [5050] = {.lex_state = 573}, + [5051] = {.lex_state = 0}, + [5052] = {.lex_state = 0, .external_lex_state = 3}, + [5053] = {.lex_state = 0}, [5054] = {.lex_state = 0}, - [5055] = {.lex_state = 31}, - [5056] = {.lex_state = 146}, - [5057] = {.lex_state = 2}, - [5058] = {.lex_state = 31}, - [5059] = {.lex_state = 623}, + [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 = 227}, - [5062] = {.lex_state = 227}, + [5061] = {.lex_state = 573}, + [5062] = {.lex_state = 573}, [5063] = {.lex_state = 0}, - [5064] = {.lex_state = 0}, - [5065] = {.lex_state = 230}, - [5066] = {.lex_state = 578}, - [5067] = {.lex_state = 578}, - [5068] = {.lex_state = 237}, - [5069] = {.lex_state = 0}, - [5070] = {.lex_state = 0}, - [5071] = {.lex_state = 0}, - [5072] = {.lex_state = 1191}, + [5064] = {.lex_state = 0, .external_lex_state = 4}, + [5065] = {.lex_state = 33}, + [5066] = {.lex_state = 47}, + [5067] = {.lex_state = 33}, + [5068] = {.lex_state = 0}, + [5069] = {.lex_state = 1688}, + [5070] = {.lex_state = 1692}, + [5071] = {.lex_state = 228}, + [5072] = {.lex_state = 1188}, [5073] = {.lex_state = 0}, [5074] = {.lex_state = 0}, [5075] = {.lex_state = 0}, - [5076] = {.lex_state = 227}, - [5077] = {.lex_state = 1716}, - [5078] = {.lex_state = 230}, + [5076] = {.lex_state = 0}, + [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 = 0}, - [5083] = {.lex_state = 121}, - [5084] = {.lex_state = 29}, - [5085] = {.lex_state = 2184}, - [5086] = {.lex_state = 0}, - [5087] = {.lex_state = 231}, + [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 = 31}, - [5090] = {.lex_state = 29}, - [5091] = {.lex_state = 121}, - [5092] = {.lex_state = 2184}, - [5093] = {.lex_state = 0}, + [5089] = {.lex_state = 33}, + [5090] = {.lex_state = 624}, + [5091] = {.lex_state = 0}, + [5092] = {.lex_state = 228}, + [5093] = {.lex_state = 33}, [5094] = {.lex_state = 0}, [5095] = {.lex_state = 0}, - [5096] = {.lex_state = 1191}, - [5097] = {.lex_state = 0}, - [5098] = {.lex_state = 146}, + [5096] = {.lex_state = 0}, + [5097] = {.lex_state = 33}, + [5098] = {.lex_state = 0}, [5099] = {.lex_state = 0}, - [5100] = {.lex_state = 0}, - [5101] = {.lex_state = 0}, - [5102] = {.lex_state = 31}, - [5103] = {.lex_state = 2186}, - [5104] = {.lex_state = 230}, - [5105] = {.lex_state = 230}, - [5106] = {.lex_state = 0, .external_lex_state = 4}, - [5107] = {.lex_state = 0}, - [5108] = {.lex_state = 1691}, - [5109] = {.lex_state = 1695}, - [5110] = {.lex_state = 0, .external_lex_state = 3}, - [5111] = {.lex_state = 578}, - [5112] = {.lex_state = 626}, - [5113] = {.lex_state = 623}, - [5114] = {.lex_state = 230}, - [5115] = {.lex_state = 578}, + [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 = 0}, - [5118] = {.lex_state = 230}, - [5119] = {.lex_state = 0}, - [5120] = {.lex_state = 230}, + [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 = 0}, - [5124] = {.lex_state = 227}, - [5125] = {.lex_state = 29}, - [5126] = {.lex_state = 0, .external_lex_state = 3}, - [5127] = {.lex_state = 227}, + [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 = 578}, - [5130] = {.lex_state = 0}, - [5131] = {.lex_state = 29}, - [5132] = {.lex_state = 2}, - [5133] = {.lex_state = 31}, - [5134] = {.lex_state = 578}, - [5135] = {.lex_state = 578}, - [5136] = {.lex_state = 121}, + [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 = 29}, + [5138] = {.lex_state = 0}, [5139] = {.lex_state = 0}, - [5140] = {.lex_state = 29}, - [5141] = {.lex_state = 0}, - [5142] = {.lex_state = 0}, - [5143] = {.lex_state = 31}, - [5144] = {.lex_state = 227}, - [5145] = {.lex_state = 0}, - [5146] = {.lex_state = 31}, - [5147] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 1691}, - [5150] = {.lex_state = 1695}, - [5151] = {.lex_state = 146}, - [5152] = {.lex_state = 626}, - [5153] = {.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, .external_lex_state = 4}, - [5156] = {.lex_state = 0}, - [5157] = {.lex_state = 1691}, - [5158] = {.lex_state = 1695}, - [5159] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 1691}, - [5162] = {.lex_state = 1695}, - [5163] = {.lex_state = 0, .external_lex_state = 4}, - [5164] = {.lex_state = 0}, - [5165] = {.lex_state = 1691}, - [5166] = {.lex_state = 1695}, - [5167] = {.lex_state = 0, .external_lex_state = 4}, - [5168] = {.lex_state = 1691}, - [5169] = {.lex_state = 1695}, - [5170] = {.lex_state = 0, .external_lex_state = 4}, - [5171] = {.lex_state = 1691}, - [5172] = {.lex_state = 1695}, - [5173] = {.lex_state = 0, .external_lex_state = 4}, - [5174] = {.lex_state = 1691}, - [5175] = {.lex_state = 1695}, - [5176] = {.lex_state = 0, .external_lex_state = 4}, - [5177] = {.lex_state = 1691}, - [5178] = {.lex_state = 1695}, - [5179] = {.lex_state = 0, .external_lex_state = 4}, - [5180] = {.lex_state = 1691}, - [5181] = {.lex_state = 1695}, - [5182] = {.lex_state = 0, .external_lex_state = 4}, - [5183] = {.lex_state = 1691}, - [5184] = {.lex_state = 1695}, - [5185] = {.lex_state = 0, .external_lex_state = 4}, - [5186] = {.lex_state = 1691}, - [5187] = {.lex_state = 1695}, - [5188] = {.lex_state = 0, .external_lex_state = 4}, - [5189] = {.lex_state = 1691}, - [5190] = {.lex_state = 1695}, - [5191] = {.lex_state = 0, .external_lex_state = 4}, - [5192] = {.lex_state = 1691}, - [5193] = {.lex_state = 1695}, - [5194] = {.lex_state = 0, .external_lex_state = 4}, - [5195] = {.lex_state = 1691}, - [5196] = {.lex_state = 1695}, - [5197] = {.lex_state = 0, .external_lex_state = 4}, - [5198] = {.lex_state = 1691}, - [5199] = {.lex_state = 1695}, - [5200] = {.lex_state = 0, .external_lex_state = 4}, - [5201] = {.lex_state = 1691}, - [5202] = {.lex_state = 1695}, - [5203] = {.lex_state = 0, .external_lex_state = 4}, - [5204] = {.lex_state = 1691}, - [5205] = {.lex_state = 1695}, - [5206] = {.lex_state = 0, .external_lex_state = 4}, - [5207] = {.lex_state = 1691}, - [5208] = {.lex_state = 1695}, - [5209] = {.lex_state = 0, .external_lex_state = 3}, - [5210] = {.lex_state = 0}, - [5211] = {.lex_state = 0}, - [5212] = {.lex_state = 0, .external_lex_state = 3}, - [5213] = {.lex_state = 623}, - [5214] = {.lex_state = 31}, - [5215] = {.lex_state = 578}, + [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 = 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 = 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] = {.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 = 0}, - [5218] = {.lex_state = 227}, - [5219] = {.lex_state = 31}, + [5217] = {.lex_state = 624}, + [5218] = {.lex_state = 0, .external_lex_state = 3}, + [5219] = {.lex_state = 33}, [5220] = {.lex_state = 0}, - [5221] = {.lex_state = 578}, - [5222] = {.lex_state = 578}, - [5223] = {.lex_state = 578}, - [5224] = {.lex_state = 578}, - [5225] = {.lex_state = 0}, - [5226] = {.lex_state = 0}, - [5227] = {.lex_state = 31}, + [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 = 1691}, - [5230] = {.lex_state = 0}, - [5231] = {.lex_state = 31}, - [5232] = {.lex_state = 0}, - [5233] = {.lex_state = 1191}, - [5234] = {.lex_state = 29}, - [5235] = {.lex_state = 0}, - [5236] = {.lex_state = 31}, - [5237] = {.lex_state = 623}, + [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 = 0}, - [5240] = {.lex_state = 578}, - [5241] = {.lex_state = 578}, - [5242] = {.lex_state = 623}, - [5243] = {.lex_state = 0}, - [5244] = {.lex_state = 31}, - [5245] = {.lex_state = 1191}, - [5246] = {.lex_state = 623}, - [5247] = {.lex_state = 31}, - [5248] = {.lex_state = 623}, + [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 = 0}, - [5251] = {.lex_state = 0}, + [5250] = {.lex_state = 1188}, + [5251] = {.lex_state = 620}, [5252] = {.lex_state = 0}, - [5253] = {.lex_state = 0}, + [5253] = {.lex_state = 0, .external_lex_state = 4}, [5254] = {.lex_state = 0}, - [5255] = {.lex_state = 31}, - [5256] = {.lex_state = 31}, - [5257] = {.lex_state = 274}, - [5258] = {(TSStateId)(-1),}, + [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] = { @@ -38507,77 +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(5005), - [sym_shebang] = STATE(47), - [sym__block_body_statement] = STATE(4303), - [sym__declaration] = STATE(4523), - [sym_decl_alias] = STATE(4544), - [sym_stmt_let] = STATE(4536), - [sym_stmt_mut] = STATE(4536), - [sym_stmt_const] = STATE(4536), - [sym_assignment] = STATE(4536), - [sym__mutable_assignment_pattern] = STATE(4478), - [sym__statement] = STATE(4523), - [sym_pipeline] = STATE(4536), - [sym__block_body] = STATE(5082), - [sym_cmd_identifier] = STATE(2923), - [aux_sym__repeat_newline] = STATE(4577), - [sym_attribute_list] = STATE(4457), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4544), - [sym_decl_export] = STATE(4544), - [sym_decl_extern] = STATE(4544), - [sym_decl_module] = STATE(4544), - [sym_decl_use] = STATE(4544), - [sym__ctrl_statement] = STATE(4536), - [sym__ctrl_expression] = STATE(3263), - [sym_ctrl_for] = STATE(4624), - [sym_ctrl_loop] = STATE(4624), - [sym_ctrl_while] = STATE(4624), - [sym_ctrl_if] = STATE(3264), - [sym_ctrl_match] = STATE(3264), - [sym_ctrl_try] = STATE(3264), - [sym__stmt_let_shortcut] = STATE(3269), - [sym_pipe_element] = STATE(2993), - [sym_where_command] = STATE(3263), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1321), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1321), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(896), - [sym_val_range] = STATE(1321), - [sym__value] = STATE(1321), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1318), - [sym_val_variable] = STATE(440), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3263), + [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(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(185), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(280), + [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(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -38640,86 +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(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5153), - [sym_cmd_identifier] = STATE(2632), - [aux_sym__repeat_newline] = STATE(26), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym__match_pattern_record_body] = STATE(5069), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(771), - [sym__spread_parenthesized] = STATE(4677), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(397), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(1217), - [sym__val_number_decimal] = STATE(109), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(1217), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(1217), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym__spread_record] = STATE(4677), + [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(4665), - [sym__record_key] = STATE(4944), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym__types_body_repeat1] = STATE(491), - [aux_sym__match_pattern_record_body_repeat1] = STATE(785), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(850), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(511), + [aux_sym__match_pattern_record_body_repeat1] = STATE(793), + [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38786,84 +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(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5121), - [sym_cmd_identifier] = STATE(2632), - [aux_sym__repeat_newline] = STATE(20), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(52), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(771), - [sym__spread_parenthesized] = STATE(4677), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(427), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(1217), - [sym__val_number_decimal] = STATE(109), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(1217), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(1217), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym__spread_record] = STATE(4677), - [sym_record_body] = STATE(5128), - [sym_record_entry] = STATE(4651), - [sym__record_key] = STATE(4944), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5057), + [sym_cmd_identifier] = STATE(2679), + [aux_sym__repeat_newline] = STATE(17), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(50), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__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(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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym__types_body_repeat1] = STATE(642), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(850), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38930,84 +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(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5094), - [sym_cmd_identifier] = STATE(2632), + [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(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(36), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(771), - [sym__spread_parenthesized] = STATE(4677), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(427), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(1217), - [sym__val_number_decimal] = STATE(109), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(1217), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(1217), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym__spread_record] = STATE(4677), - [sym_record_body] = STATE(4901), - [sym_record_entry] = STATE(4651), - [sym__record_key] = STATE(4944), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym__types_body_repeat1] = STATE(642), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(850), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39074,84 +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(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5226), - [sym_cmd_identifier] = STATE(2632), - [aux_sym__repeat_newline] = STATE(26), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(771), - [sym__spread_parenthesized] = STATE(4677), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(427), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(1217), - [sym__val_number_decimal] = STATE(109), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(1217), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(1217), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym__spread_record] = STATE(4677), + [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(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(4651), - [sym__record_key] = STATE(4944), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym__types_body_repeat1] = STATE(642), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(850), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39218,84 +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(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5037), - [sym_cmd_identifier] = STATE(2632), - [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(36), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(771), - [sym__spread_parenthesized] = STATE(4677), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(427), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(1217), - [sym__val_number_decimal] = STATE(109), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(1217), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(1217), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym__spread_record] = STATE(4677), - [sym_record_body] = STATE(4901), - [sym_record_entry] = STATE(4651), - [sym__record_key] = STATE(4944), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym__types_body_repeat1] = STATE(642), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(850), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39362,84 +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(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5153), - [sym_cmd_identifier] = STATE(2632), - [aux_sym__repeat_newline] = STATE(26), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), + [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(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(771), - [sym__spread_parenthesized] = STATE(4677), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(427), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(1217), - [sym__val_number_decimal] = STATE(109), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(1217), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(1217), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym__spread_record] = STATE(4677), - [sym_record_body] = STATE(5216), - [sym_record_entry] = STATE(4651), - [sym__record_key] = STATE(4944), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym__types_body_repeat1] = STATE(642), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(850), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39506,84 +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(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5121), - [sym_cmd_identifier] = STATE(2632), - [aux_sym__repeat_newline] = STATE(20), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(52), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(771), - [sym__spread_parenthesized] = STATE(4677), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(427), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(1217), - [sym__val_number_decimal] = STATE(109), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(1217), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(1217), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym__spread_record] = STATE(4677), - [sym_record_body] = STATE(5099), - [sym_record_entry] = STATE(4651), - [sym__record_key] = STATE(4944), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5249), + [sym_cmd_identifier] = STATE(2679), + [aux_sym__repeat_newline] = STATE(21), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(42), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__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(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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym__types_body_repeat1] = STATE(642), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(850), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39650,84 +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(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5047), - [sym_cmd_identifier] = STATE(2632), - [aux_sym__repeat_newline] = STATE(20), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(52), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(771), - [sym__spread_parenthesized] = STATE(4677), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(427), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(1217), - [sym__val_number_decimal] = STATE(109), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(1217), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(1217), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym__spread_record] = STATE(4677), - [sym_record_body] = STATE(5128), - [sym_record_entry] = STATE(4651), - [sym__record_key] = STATE(4944), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym__types_body_repeat1] = STATE(642), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(850), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39794,84 +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(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5230), - [sym_cmd_identifier] = STATE(2632), - [aux_sym__repeat_newline] = STATE(23), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(39), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(771), - [sym__spread_parenthesized] = STATE(4677), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(427), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(1217), - [sym__val_number_decimal] = STATE(109), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(1217), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(1217), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym__spread_record] = STATE(4677), - [sym_record_body] = STATE(5235), - [sym_record_entry] = STATE(4651), - [sym__record_key] = STATE(4944), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(4970), + [sym_cmd_identifier] = STATE(2679), + [aux_sym__repeat_newline] = STATE(20), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(58), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__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(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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym__types_body_repeat1] = STATE(642), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(850), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39938,84 +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(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(4975), - [sym_cmd_identifier] = STATE(2632), - [aux_sym__repeat_newline] = STATE(22), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(53), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(771), - [sym__spread_parenthesized] = STATE(4677), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(427), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(1217), - [sym__val_number_decimal] = STATE(109), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(1217), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(1217), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym__spread_record] = STATE(4677), - [sym_record_body] = STATE(4979), - [sym_record_entry] = STATE(4651), - [sym__record_key] = STATE(4944), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym__types_body_repeat1] = STATE(642), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(850), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40082,84 +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(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5030), - [sym_cmd_identifier] = STATE(2632), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(46), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(771), - [sym__spread_parenthesized] = STATE(4677), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(427), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(1217), - [sym__val_number_decimal] = STATE(109), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(1217), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(1217), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym__spread_record] = STATE(4677), - [sym_record_body] = STATE(5095), - [sym_record_entry] = STATE(4651), - [sym__record_key] = STATE(4944), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym__types_body_repeat1] = STATE(642), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(850), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40226,84 +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(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5094), - [sym_cmd_identifier] = STATE(2632), - [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(36), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(771), - [sym__spread_parenthesized] = STATE(4677), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(427), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(1217), - [sym__val_number_decimal] = STATE(109), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(1217), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(1217), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym__spread_record] = STATE(4677), - [sym_record_body] = STATE(4992), - [sym_record_entry] = STATE(4651), - [sym__record_key] = STATE(4944), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym__types_body_repeat1] = STATE(642), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(850), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40370,84 +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(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5050), - [sym_cmd_identifier] = STATE(2632), - [aux_sym__repeat_newline] = STATE(24), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(58), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(771), - [sym__spread_parenthesized] = STATE(4677), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(427), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(1217), - [sym__val_number_decimal] = STATE(109), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(1217), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(1217), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym__spread_record] = STATE(4677), - [sym_record_body] = STATE(5210), - [sym_record_entry] = STATE(4651), - [sym__record_key] = STATE(4944), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5057), + [sym_cmd_identifier] = STATE(2679), + [aux_sym__repeat_newline] = STATE(17), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym_parameter_pipes] = STATE(50), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__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(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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym__types_body_repeat1] = STATE(642), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(850), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40514,84 +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(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5050), - [sym_cmd_identifier] = STATE(2632), - [aux_sym__repeat_newline] = STATE(24), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(58), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(771), - [sym__spread_parenthesized] = STATE(4677), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(427), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(1217), - [sym__val_number_decimal] = STATE(109), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(1217), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(1217), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym__spread_record] = STATE(4677), - [sym_record_body] = STATE(5060), - [sym_record_entry] = STATE(4651), - [sym__record_key] = STATE(4944), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym__types_body_repeat1] = STATE(642), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(850), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40658,76 +40964,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(16)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5253), - [sym_cmd_identifier] = STATE(2748), - [aux_sym__repeat_newline] = STATE(1357), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(66), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -40790,76 +41096,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(17)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5094), - [sym_cmd_identifier] = STATE(2748), - [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), + [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(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -40922,76 +41228,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(18)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5121), - [sym_cmd_identifier] = STATE(2748), - [aux_sym__repeat_newline] = STATE(20), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(52), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -41054,76 +41360,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(19)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5047), - [sym_cmd_identifier] = STATE(2748), - [aux_sym__repeat_newline] = STATE(20), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(52), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -41186,76 +41492,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(20)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5228), - [sym_cmd_identifier] = STATE(2748), - [aux_sym__repeat_newline] = STATE(1357), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(61), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -41318,76 +41624,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(21)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5037), - [sym_cmd_identifier] = STATE(2748), - [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(36), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -41450,76 +41756,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(22)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5007), - [sym_cmd_identifier] = STATE(2748), - [aux_sym__repeat_newline] = STATE(1357), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(55), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -41582,76 +41888,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(23)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5252), - [sym_cmd_identifier] = STATE(2748), - [aux_sym__repeat_newline] = STATE(1357), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(41), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -41714,76 +42020,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(24)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5080), - [sym_cmd_identifier] = STATE(2748), - [aux_sym__repeat_newline] = STATE(1357), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(60), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -41846,76 +42152,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(25)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(4851), - [sym_cmd_identifier] = STATE(2748), - [aux_sym__repeat_newline] = STATE(1357), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym_parameter_pipes] = STATE(48), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -41978,76 +42284,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(26)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5116), - [sym_cmd_identifier] = STATE(2748), - [aux_sym__repeat_newline] = STATE(1357), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), + [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(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -42110,74 +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(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(4846), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -42240,74 +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(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(4989), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -42348,7 +42654,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(335), + [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), @@ -42370,74 +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(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(5143), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -42469,7 +42775,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(347), + [anon_sym_RPAREN] = ACTIONS(349), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -42478,7 +42784,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(349), + [anon_sym_RPAREN2] = ACTIONS(351), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42500,74 +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(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(5025), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -42599,7 +42905,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(351), + [anon_sym_RPAREN] = ACTIONS(353), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -42608,7 +42914,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(353), + [anon_sym_RPAREN2] = ACTIONS(355), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42630,74 +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(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(5048), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -42729,7 +43035,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(355), + [anon_sym_RPAREN] = ACTIONS(357), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -42738,7 +43044,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(357), + [anon_sym_RPAREN2] = ACTIONS(359), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42760,74 +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(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(5146), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -42859,7 +43165,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(359), + [anon_sym_RPAREN] = ACTIONS(361), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -42868,7 +43174,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(361), + [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), @@ -42890,74 +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(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(5102), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -42989,7 +43295,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(363), + [anon_sym_RPAREN] = ACTIONS(365), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -42998,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(349), + [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), @@ -43020,74 +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(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(5227), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -43119,7 +43425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(365), + [anon_sym_RPAREN] = ACTIONS(367), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -43128,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(367), + [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), @@ -43150,74 +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(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(4861), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -43279,74 +43585,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(36)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(4931), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -43408,74 +43714,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(37)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(5143), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5196), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(37), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -43537,74 +43843,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(38)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(4846), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -43666,74 +43972,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(39)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5254), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -43795,74 +44101,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(40)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(5256), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5059), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(40), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -43924,74 +44230,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(41)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(4847), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5002), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(41), [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -44053,74 +44359,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(42)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5154), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -44182,203 +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] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5000), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_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(385), - [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(44)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(4963), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), - [sym_comment] = STATE(44), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -44410,7 +44587,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(387), + [anon_sym_RPAREN] = ACTIONS(385), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44439,80 +44616,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(45)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(5017), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), - [sym_comment] = STATE(45), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [STATE(44)] = { + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5121), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [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(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), @@ -44522,9 +44699,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), @@ -44539,19 +44716,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(389), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(387), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(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), @@ -44564,84 +44741,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(46)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(4857), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(46), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [STATE(45)] = { + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5127), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(45), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), + [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), @@ -44651,9 +44828,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), @@ -44668,19 +44845,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(389), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(391), [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), @@ -44693,213 +44870,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(47)] = { - [sym__block_body_statement] = STATE(4303), - [sym__declaration] = STATE(4523), - [sym_decl_alias] = STATE(4544), - [sym_stmt_let] = STATE(4536), - [sym_stmt_mut] = STATE(4536), - [sym_stmt_const] = STATE(4536), - [sym_assignment] = STATE(4536), - [sym__mutable_assignment_pattern] = STATE(4478), - [sym__statement] = STATE(4523), - [sym_pipeline] = STATE(4536), - [sym__block_body] = STATE(5081), - [sym_cmd_identifier] = STATE(2923), - [sym_attribute_list] = STATE(4457), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4544), - [sym_decl_export] = STATE(4544), - [sym_decl_extern] = STATE(4544), - [sym_decl_module] = STATE(4544), - [sym_decl_use] = STATE(4544), - [sym__ctrl_statement] = STATE(4536), - [sym__ctrl_expression] = STATE(3263), - [sym_ctrl_for] = STATE(4624), - [sym_ctrl_loop] = STATE(4624), - [sym_ctrl_while] = STATE(4624), - [sym_ctrl_if] = STATE(3264), - [sym_ctrl_match] = STATE(3264), - [sym_ctrl_try] = STATE(3264), - [sym__stmt_let_shortcut] = STATE(3269), - [sym_pipe_element] = STATE(2993), - [sym_where_command] = STATE(3263), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1321), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1321), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(896), - [sym_val_range] = STATE(1321), - [sym__value] = STATE(1321), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1318), - [sym_val_variable] = STATE(440), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3263), - [sym_comment] = STATE(47), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym__block_body_repeat2] = STATE(91), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(393), - [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(48)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(4881), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(48), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [STATE(46)] = { + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5240), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(46), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -44909,9 +44957,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), @@ -44926,19 +44974,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(391), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(395), [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), @@ -44951,84 +44999,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(49)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(4841), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), - [sym_comment] = STATE(49), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [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), + [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), @@ -45038,9 +45086,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), @@ -45055,19 +45103,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(397), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(393), [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), @@ -45080,79 +45128,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(50)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(4906), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), - [sym_comment] = STATE(50), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -45184,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), @@ -45213,80 +45261,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(51)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(5025), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), - [sym_comment] = STATE(51), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [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), @@ -45296,9 +45344,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), @@ -45313,19 +45361,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(401), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(397), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -45338,79 +45386,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(52)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(4853), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(52), + [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(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -45445,7 +45493,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(403), + [anon_sym_RBRACE] = ACTIONS(399), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -45471,80 +45519,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(53)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5010), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(53), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [STATE(51)] = { + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5207), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(51), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), + [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), @@ -45554,9 +45602,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), @@ -45571,19 +45619,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(401), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(405), [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), @@ -45596,79 +45644,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(54)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(5011), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), - [sym_comment] = STATE(54), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [STATE(52)] = { + [sym__block_body_statement] = STATE(4274), + [sym__declaration] = STATE(4535), + [sym_decl_alias] = STATE(4536), + [sym_stmt_let] = STATE(4555), + [sym_stmt_mut] = STATE(4555), + [sym_stmt_const] = STATE(4555), + [sym_assignment] = STATE(4555), + [sym__mutable_assignment_pattern] = STATE(4579), + [sym__statement] = STATE(4535), + [sym_pipeline] = STATE(4555), + [sym__block_body] = STATE(5108), + [sym_cmd_identifier] = STATE(2947), + [sym_attribute_list] = STATE(4666), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4536), + [sym_decl_export] = STATE(4536), + [sym_decl_extern] = STATE(4536), + [sym_decl_module] = STATE(4536), + [sym_decl_use] = STATE(4536), + [sym__ctrl_statement] = STATE(4555), + [sym__ctrl_expression] = STATE(3379), + [sym_ctrl_for] = STATE(4772), + [sym_ctrl_loop] = STATE(4772), + [sym_ctrl_while] = STATE(4772), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3501), + [sym_pipe_element] = STATE(3200), + [sym_where_command] = STATE(3379), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(924), + [sym_val_range] = STATE(1286), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1295), + [sym_val_variable] = STATE(447), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(123), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3379), + [sym_comment] = STATE(52), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(291), + [ts_builtin_sym_end] = ACTIONS(403), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_use] = ACTIONS(23), + [anon_sym_export_DASHenv] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(27), + [anon_sym_module] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_loop] = ACTIONS(33), + [anon_sym_while] = ACTIONS(35), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [sym__newline] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(63), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(53)] = { + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5193), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(53), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45700,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(407), + [anon_sym_RPAREN] = ACTIONS(405), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -45729,75 +45906,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(55)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5024), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(55), + [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(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -45832,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(409), + [anon_sym_RBRACE] = ACTIONS(407), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -45858,75 +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(56)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(5028), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), - [sym_comment] = STATE(56), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -45958,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(411), + [anon_sym_RPAREN] = ACTIONS(409), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -45987,75 +46164,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(57)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5079), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(57), + [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(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -46090,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(413), + [anon_sym_RBRACE] = ACTIONS(411), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46116,75 +46293,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(57)] = { + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5361), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(57), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), + [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(413), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(333), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(343), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, [STATE(58)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5086), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -46246,74 +46552,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(59)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(5089), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -46375,74 +46681,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(60)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5101), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -46504,79 +46810,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(61)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5243), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [aux_sym_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), @@ -46586,9 +46892,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), @@ -46603,19 +46909,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(421), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(421), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -46628,84 +46934,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(62)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(5236), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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_parenthesized_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [aux_sym_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), @@ -46715,9 +47021,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), @@ -46732,19 +47038,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(423), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(423), [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), @@ -46757,79 +47063,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(63)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(4860), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -46891,79 +47197,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(64)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(4875), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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_parenthesized_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [aux_sym_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), @@ -46973,9 +47279,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), @@ -46990,19 +47296,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(427), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(427), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(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), @@ -47015,84 +47321,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(65)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(4889), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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_parenthesized_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [aux_sym_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), @@ -47102,9 +47408,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), @@ -47119,19 +47425,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(429), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(429), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(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), @@ -47144,84 +47450,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(66)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5073), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [aux_sym_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), @@ -47231,9 +47537,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), @@ -47248,19 +47554,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(431), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(431), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(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), @@ -47273,79 +47579,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(67)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5117), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(79), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -47407,74 +47713,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(68)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(4876), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -47536,74 +47842,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(69)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(4989), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -47665,74 +47971,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(70)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(5102), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(4967), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(70), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -47794,74 +48100,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(71)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(5247), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -47923,74 +48229,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(72)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(5045), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -48052,74 +48358,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(73)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(5048), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(4996), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(73), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), + [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), @@ -48181,79 +48487,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(74)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(4912), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(433), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(191), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(86), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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__block_body_repeat1] = STATE(1357), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(82), + [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), @@ -48263,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), @@ -48280,11 +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(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), @@ -48304,84 +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_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(4877), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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_parenthesized_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [aux_sym_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), @@ -48391,9 +48696,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), @@ -48408,11 +48713,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(461), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -48432,83 +48738,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(76)] = { - [sym__block_body_statement] = STATE(4042), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(433), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(191), - [aux_sym__block_body_repeat1] = STATE(1350), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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), @@ -48518,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(457), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -48535,7 +48842,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(459), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -48565,74 +48871,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(77)] = { - [sym__block_body_statement] = STATE(4153), - [sym__declaration] = STATE(4523), - [sym_decl_alias] = STATE(4544), - [sym_stmt_let] = STATE(4536), - [sym_stmt_mut] = STATE(4536), - [sym_stmt_const] = STATE(4536), - [sym_assignment] = STATE(4536), - [sym__mutable_assignment_pattern] = STATE(4478), - [sym__statement] = STATE(4523), - [sym_pipeline] = STATE(4536), - [sym_cmd_identifier] = STATE(2923), - [sym_attribute_list] = STATE(4457), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4544), - [sym_decl_export] = STATE(4544), - [sym_decl_extern] = STATE(4544), - [sym_decl_module] = STATE(4544), - [sym_decl_use] = STATE(4544), - [sym__ctrl_statement] = STATE(4536), - [sym__ctrl_expression] = STATE(3263), - [sym_ctrl_for] = STATE(4624), - [sym_ctrl_loop] = STATE(4624), - [sym_ctrl_while] = STATE(4624), - [sym_ctrl_if] = STATE(3264), - [sym_ctrl_match] = STATE(3264), - [sym_ctrl_try] = STATE(3264), - [sym__stmt_let_shortcut] = STATE(3269), - [sym_pipe_element] = STATE(2993), - [sym_where_command] = STATE(3263), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1321), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1321), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(896), - [sym_val_range] = STATE(1321), - [sym__value] = STATE(1321), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1318), - [sym_val_variable] = STATE(440), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3263), + [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_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(1366), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(459), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(333), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(343), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(78)] = { + [sym__block_body_statement] = STATE(4201), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym__block_body] = STATE(5364), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [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(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), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(459), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(79)] = { + [sym__block_body_statement] = STATE(4392), + [sym__declaration] = STATE(4535), + [sym_decl_alias] = STATE(4536), + [sym_stmt_let] = STATE(4555), + [sym_stmt_mut] = STATE(4555), + [sym_stmt_const] = STATE(4555), + [sym_assignment] = STATE(4555), + [sym__mutable_assignment_pattern] = STATE(4579), + [sym__statement] = STATE(4535), + [sym_pipeline] = STATE(4555), + [sym_cmd_identifier] = STATE(2947), + [sym_attribute_list] = STATE(4666), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4536), + [sym_decl_export] = STATE(4536), + [sym_decl_extern] = STATE(4536), + [sym_decl_module] = STATE(4536), + [sym_decl_use] = STATE(4536), + [sym__ctrl_statement] = STATE(4555), + [sym__ctrl_expression] = STATE(3379), + [sym_ctrl_for] = STATE(4772), + [sym_ctrl_loop] = STATE(4772), + [sym_ctrl_while] = STATE(4772), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3501), + [sym_pipe_element] = STATE(3200), + [sym_where_command] = STATE(3379), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(924), + [sym_val_range] = STATE(1286), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1295), + [sym_val_variable] = STATE(447), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(123), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3379), + [sym_comment] = STATE(79), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(1374), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(291), + [ts_builtin_sym_end] = ACTIONS(461), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -48692,79 +49254,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(78)] = { - [sym__block_body_statement_parenthesized] = STATE(3802), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), - [sym_comment] = STATE(78), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(1350), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [STATE(80)] = { + [sym__block_body_statement] = STATE(4091), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [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_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), @@ -48774,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), @@ -48791,19 +49353,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(461), [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), @@ -48816,83 +49378,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(79)] = { - [sym__block_body_statement] = STATE(4042), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(79), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(1350), - [aux_sym__block_body_repeat2] = STATE(90), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [STATE(81)] = { + [sym__block_body_statement_parenthesized] = STATE(3898), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym__parenthesized_body] = STATE(5244), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(81), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48902,9 +49465,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), @@ -48922,16 +49485,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), + [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), @@ -48944,84 +49506,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(80)] = { - [sym__block_body_statement] = STATE(3982), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym__block_body] = STATE(5219), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(433), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(80), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(86), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(284), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [STATE(82)] = { + [sym__block_body_statement_parenthesized] = STATE(3931), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(82), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(86), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -49031,9 +49591,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), @@ -49043,8 +49603,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(283), [aux_sym_cmd_identifier_token4] = ACTIONS(283), [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), - [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), @@ -49052,7 +49610,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), @@ -49072,84 +49630,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(81)] = { - [sym__block_body_statement_parenthesized] = STATE(3818), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym__parenthesized_body] = STATE(4996), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), - [sym_comment] = STATE(81), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym__block_body_repeat1] = STATE(78), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(88), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [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), @@ -49159,9 +49715,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), @@ -49171,8 +49727,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(283), [aux_sym_cmd_identifier_token4] = ACTIONS(283), [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), - [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), @@ -49180,7 +49734,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), @@ -49200,77 +49754,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(82)] = { - [sym__block_body_statement] = STATE(4376), - [sym__declaration] = STATE(4523), - [sym_decl_alias] = STATE(4544), - [sym_stmt_let] = STATE(4536), - [sym_stmt_mut] = STATE(4536), - [sym_stmt_const] = STATE(4536), - [sym_assignment] = STATE(4536), - [sym__mutable_assignment_pattern] = STATE(4478), - [sym__statement] = STATE(4523), - [sym_pipeline] = STATE(4536), - [sym_cmd_identifier] = STATE(2923), - [sym_attribute_list] = STATE(4457), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4544), - [sym_decl_export] = STATE(4544), - [sym_decl_extern] = STATE(4544), - [sym_decl_module] = STATE(4544), - [sym_decl_use] = STATE(4544), - [sym__ctrl_statement] = STATE(4536), - [sym__ctrl_expression] = STATE(3263), - [sym_ctrl_for] = STATE(4624), - [sym_ctrl_loop] = STATE(4624), - [sym_ctrl_while] = STATE(4624), - [sym_ctrl_if] = STATE(3264), - [sym_ctrl_match] = STATE(3264), - [sym_ctrl_try] = STATE(3264), - [sym__stmt_let_shortcut] = STATE(3269), - [sym_pipe_element] = STATE(2993), - [sym_where_command] = STATE(3263), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1321), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1321), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(896), - [sym_val_range] = STATE(1321), - [sym__value] = STATE(1321), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1318), - [sym_val_variable] = STATE(440), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3263), - [sym_comment] = STATE(82), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(280), + [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), @@ -49328,73 +49882,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(83)] = { - [sym__block_body_statement_parenthesized] = STATE(3855), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), - [sym_comment] = STATE(83), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(87), + [STATE(85)] = { + [sym__block_body_statement_parenthesized] = STATE(4018), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(85), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -49452,197 +50006,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(84)] = { - [sym__block_body_statement] = STATE(4012), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(433), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(84), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(284), - [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(85)] = { - [sym__block_body_statement] = STATE(4616), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(474), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(138), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(85), - [aux_sym_pipeline_repeat1] = STATE(183), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(86)] = { + [sym__block_body_statement_parenthesized] = STATE(4502), + [sym__declaration_parenthesized] = STATE(4594), + [sym_decl_alias_parenthesized] = STATE(4614), + [sym_stmt_let_parenthesized] = STATE(4748), + [sym_stmt_mut_parenthesized] = STATE(4748), + [sym_stmt_const_parenthesized] = STATE(4748), + [sym_assignment_parenthesized] = STATE(4748), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4596), + [sym__statement_parenthesized] = STATE(4594), + [sym_pipeline_parenthesized] = STATE(4748), + [sym_cmd_identifier] = STATE(3009), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4614), + [sym_decl_export] = STATE(4614), + [sym_decl_extern] = STATE(4614), + [sym_decl_module] = STATE(4614), + [sym_decl_use] = STATE(4614), + [sym__ctrl_statement] = STATE(4748), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(478), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(86), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(463), [anon_sym_alias] = ACTIONS(466), [anon_sym_let] = ACTIONS(469), @@ -49700,78 +50130,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(598), }, - [STATE(86)] = { - [sym__block_body_statement] = STATE(4042), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(433), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(86), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(284), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [STATE(87)] = { + [sym__block_body_statement] = STATE(4091), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(87), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(292), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -49781,7 +50211,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(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -49804,10 +50234,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), @@ -49824,321 +50254,197 @@ 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_parenthesized] = STATE(4217), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(471), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(138), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), - [sym_comment] = STATE(87), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [aux_sym__parenthesized_body_repeat2] = STATE(87), - [anon_sym_export] = ACTIONS(601), - [anon_sym_alias] = ACTIONS(604), - [anon_sym_let] = ACTIONS(607), - [anon_sym_mut] = ACTIONS(610), - [anon_sym_const] = ACTIONS(613), - [aux_sym_cmd_identifier_token1] = ACTIONS(616), - [anon_sym_def] = ACTIONS(619), - [anon_sym_use] = ACTIONS(622), - [anon_sym_export_DASHenv] = ACTIONS(625), - [anon_sym_extern] = ACTIONS(628), - [anon_sym_module] = ACTIONS(631), - [anon_sym_for] = ACTIONS(634), - [anon_sym_loop] = ACTIONS(637), - [anon_sym_while] = ACTIONS(640), - [anon_sym_if] = ACTIONS(643), - [anon_sym_else] = ACTIONS(646), - [anon_sym_try] = ACTIONS(649), - [anon_sym_catch] = ACTIONS(646), - [anon_sym_match] = ACTIONS(652), - [anon_sym_in] = ACTIONS(655), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [anon_sym_null] = ACTIONS(661), - [aux_sym_cmd_identifier_token3] = ACTIONS(664), - [aux_sym_cmd_identifier_token4] = ACTIONS(664), - [aux_sym_cmd_identifier_token5] = ACTIONS(664), - [anon_sym_AT] = ACTIONS(667), - [anon_sym_LBRACK] = ACTIONS(670), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(676), - [anon_sym_DASH2] = ACTIONS(679), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_DOT_DOT] = ACTIONS(685), - [anon_sym_where] = ACTIONS(688), - [aux_sym_expr_unary_token1] = ACTIONS(691), - [anon_sym_DOT_DOT_EQ] = ACTIONS(694), - [anon_sym_DOT_DOT_LT] = ACTIONS(694), - [aux_sym__val_number_decimal_token1] = ACTIONS(697), - [aux_sym__val_number_decimal_token2] = ACTIONS(700), - [aux_sym__val_number_decimal_token3] = ACTIONS(703), - [aux_sym__val_number_decimal_token4] = ACTIONS(703), - [aux_sym__val_number_token1] = ACTIONS(706), - [aux_sym__val_number_token2] = ACTIONS(706), - [aux_sym__val_number_token3] = ACTIONS(706), - [anon_sym_0b] = ACTIONS(709), - [anon_sym_0o] = ACTIONS(712), - [anon_sym_0x] = ACTIONS(712), - [sym_val_date] = ACTIONS(715), - [anon_sym_DQUOTE] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(721), - [anon_sym_BQUOTE] = ACTIONS(724), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(730), - [anon_sym_CARET] = ACTIONS(733), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(736), - }, [STATE(88)] = { - [sym__block_body_statement_parenthesized] = STATE(3802), - [sym__declaration_parenthesized] = STATE(4502), - [sym_decl_alias_parenthesized] = STATE(4505), - [sym_stmt_let_parenthesized] = STATE(4513), - [sym_stmt_mut_parenthesized] = STATE(4513), - [sym_stmt_const_parenthesized] = STATE(4513), - [sym_assignment_parenthesized] = STATE(4513), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4546), - [sym__statement_parenthesized] = STATE(4502), - [sym_pipeline_parenthesized] = STATE(4513), - [sym_cmd_identifier] = STATE(2876), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4505), - [sym_decl_export] = STATE(4505), - [sym_decl_extern] = STATE(4505), - [sym_decl_module] = STATE(4505), - [sym_decl_use] = STATE(4505), - [sym__ctrl_statement] = STATE(4513), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(441), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [sym__block_body_statement] = STATE(4324), + [sym__declaration] = STATE(4535), + [sym_decl_alias] = STATE(4536), + [sym_stmt_let] = STATE(4555), + [sym_stmt_mut] = STATE(4555), + [sym_stmt_const] = STATE(4555), + [sym_assignment] = STATE(4555), + [sym__mutable_assignment_pattern] = STATE(4579), + [sym__statement] = STATE(4535), + [sym_pipeline] = STATE(4555), + [sym_cmd_identifier] = STATE(2947), + [sym_attribute_list] = STATE(4666), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4536), + [sym_decl_export] = STATE(4536), + [sym_decl_extern] = STATE(4536), + [sym_decl_module] = STATE(4536), + [sym_decl_use] = STATE(4536), + [sym__ctrl_statement] = STATE(4555), + [sym__ctrl_expression] = STATE(3379), + [sym_ctrl_for] = STATE(4772), + [sym_ctrl_loop] = STATE(4772), + [sym_ctrl_while] = STATE(4772), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3501), + [sym_pipe_element] = STATE(3200), + [sym_where_command] = STATE(3379), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(924), + [sym_val_range] = STATE(1286), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1295), + [sym_val_variable] = STATE(447), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(123), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3379), [sym_comment] = STATE(88), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), - [aux_sym__parenthesized_body_repeat2] = STATE(87), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [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), + [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(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_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(211), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(89)] = { - [sym__block_body_statement] = STATE(4042), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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(85), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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), @@ -50197,77 +50503,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(90)] = { - [sym__block_body_statement] = STATE(4012), - [sym__declaration] = STATE(4266), - [sym_decl_alias] = STATE(4267), - [sym_stmt_let] = STATE(4268), - [sym_stmt_mut] = STATE(4268), - [sym_stmt_const] = STATE(4268), - [sym_assignment] = STATE(4268), - [sym__mutable_assignment_pattern] = STATE(4270), - [sym__statement] = STATE(4266), - [sym_pipeline] = STATE(4268), - [sym_cmd_identifier] = STATE(2748), - [sym_attribute_list] = STATE(4632), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4267), - [sym_decl_export] = STATE(4267), - [sym_decl_extern] = STATE(4267), - [sym_decl_module] = STATE(4267), - [sym_decl_use] = STATE(4267), - [sym__ctrl_statement] = STATE(4268), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_for] = STATE(4272), - [sym_ctrl_loop] = STATE(4272), - [sym_ctrl_while] = STATE(4272), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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_repeat1] = STATE(184), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [aux_sym_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), @@ -50277,7 +50583,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), @@ -50300,10 +50606,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), @@ -50321,128 +50627,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(91)] = { - [sym__block_body_statement] = STATE(4153), - [sym__declaration] = STATE(4523), - [sym_decl_alias] = STATE(4544), - [sym_stmt_let] = STATE(4536), - [sym_stmt_mut] = STATE(4536), - [sym_stmt_const] = STATE(4536), - [sym_assignment] = STATE(4536), - [sym__mutable_assignment_pattern] = STATE(4478), - [sym__statement] = STATE(4523), - [sym_pipeline] = STATE(4536), - [sym_cmd_identifier] = STATE(2923), - [sym_attribute_list] = STATE(4457), - [sym_attribute] = STATE(4724), - [sym_decl_def] = STATE(4544), - [sym_decl_export] = STATE(4544), - [sym_decl_extern] = STATE(4544), - [sym_decl_module] = STATE(4544), - [sym_decl_use] = STATE(4544), - [sym__ctrl_statement] = STATE(4536), - [sym__ctrl_expression] = STATE(3263), - [sym_ctrl_for] = STATE(4624), - [sym_ctrl_loop] = STATE(4624), - [sym_ctrl_while] = STATE(4624), - [sym_ctrl_if] = STATE(3264), - [sym_ctrl_match] = STATE(3264), - [sym_ctrl_try] = STATE(3264), - [sym__stmt_let_shortcut] = STATE(3269), - [sym_pipe_element] = STATE(2993), - [sym_where_command] = STATE(3263), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1321), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1321), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(896), - [sym_val_range] = STATE(1321), - [sym__value] = STATE(1321), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1318), - [sym_val_variable] = STATE(440), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3263), + [sym__block_body_statement] = STATE(4656), + [sym__declaration] = STATE(4295), + [sym_decl_alias] = STATE(4296), + [sym_stmt_let] = STATE(4297), + [sym_stmt_mut] = STATE(4297), + [sym_stmt_const] = STATE(4297), + [sym_assignment] = STATE(4297), + [sym__mutable_assignment_pattern] = STATE(4298), + [sym__statement] = STATE(4295), + [sym_pipeline] = STATE(4297), + [sym_cmd_identifier] = STATE(2812), + [sym_attribute_list] = STATE(4734), + [sym_attribute] = STATE(4937), + [sym_decl_def] = STATE(4296), + [sym_decl_export] = STATE(4296), + [sym_decl_extern] = STATE(4296), + [sym_decl_module] = STATE(4296), + [sym_decl_use] = STATE(4296), + [sym__ctrl_statement] = STATE(4297), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_for] = STATE(4299), + [sym_ctrl_loop] = STATE(4299), + [sym_ctrl_while] = STATE(4299), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2956), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(481), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(91), [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(3885), - [aux_sym_pipe_element_repeat2] = STATE(280), - [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), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3955), + [aux_sym_pipe_element_repeat2] = STATE(285), + [anon_sym_export] = ACTIONS(601), + [anon_sym_alias] = ACTIONS(604), + [anon_sym_let] = ACTIONS(607), + [anon_sym_mut] = ACTIONS(610), + [anon_sym_const] = ACTIONS(613), + [aux_sym_cmd_identifier_token1] = ACTIONS(616), + [anon_sym_def] = ACTIONS(619), + [anon_sym_use] = ACTIONS(622), + [anon_sym_export_DASHenv] = ACTIONS(625), + [anon_sym_extern] = ACTIONS(628), + [anon_sym_module] = ACTIONS(631), + [anon_sym_for] = ACTIONS(634), + [anon_sym_loop] = ACTIONS(637), + [anon_sym_while] = ACTIONS(640), + [anon_sym_if] = ACTIONS(643), + [anon_sym_else] = ACTIONS(646), + [anon_sym_try] = ACTIONS(649), + [anon_sym_catch] = ACTIONS(646), + [anon_sym_match] = ACTIONS(652), + [anon_sym_in] = ACTIONS(655), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), + [anon_sym_null] = ACTIONS(661), + [aux_sym_cmd_identifier_token3] = ACTIONS(664), + [aux_sym_cmd_identifier_token4] = ACTIONS(664), + [aux_sym_cmd_identifier_token5] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(667), + [anon_sym_LBRACK] = ACTIONS(670), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(676), + [anon_sym_DASH2] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(685), + [anon_sym_where] = ACTIONS(688), + [aux_sym_expr_unary_token1] = ACTIONS(691), + [anon_sym_DOT_DOT_EQ] = ACTIONS(694), + [anon_sym_DOT_DOT_LT] = ACTIONS(694), + [aux_sym__val_number_decimal_token1] = ACTIONS(697), + [aux_sym__val_number_decimal_token2] = ACTIONS(700), + [aux_sym__val_number_decimal_token3] = ACTIONS(703), + [aux_sym__val_number_decimal_token4] = ACTIONS(703), + [aux_sym__val_number_token1] = ACTIONS(706), + [aux_sym__val_number_token2] = ACTIONS(706), + [aux_sym__val_number_token3] = ACTIONS(706), + [anon_sym_0b] = ACTIONS(709), + [anon_sym_0o] = ACTIONS(712), + [anon_sym_0x] = ACTIONS(712), + [sym_val_date] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(718), + [anon_sym_SQUOTE] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(724), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(727), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(730), + [anon_sym_CARET] = ACTIONS(733), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(736), }, [STATE(92)] = { [sym_comment] = STATE(92), @@ -50664,115 +50970,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(94)] = { [sym_comment] = STATE(94), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token1] = ACTIONS(755), - [aux_sym__immediate_decimal_token5] = ACTIONS(757), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_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), - [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -50822,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), @@ -50856,8 +51162,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token1] = ACTIONS(759), - [aux_sym__immediate_decimal_token5] = ACTIONS(761), + [aux_sym__immediate_decimal_token1] = ACTIONS(755), + [aux_sym__immediate_decimal_token5] = ACTIONS(757), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -50880,115 +51186,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(96)] = { [sym_comment] = STATE(96), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [aux_sym__immediate_decimal_token5] = ACTIONS(767), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), - [anon_sym_COLON2] = ACTIONS(763), - [anon_sym_err_GT] = ACTIONS(763), - [anon_sym_out_GT] = ACTIONS(763), - [anon_sym_e_GT] = ACTIONS(763), - [anon_sym_o_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT] = ACTIONS(763), - [anon_sym_err_GT_GT] = ACTIONS(763), - [anon_sym_out_GT_GT] = ACTIONS(763), - [anon_sym_e_GT_GT] = ACTIONS(763), - [anon_sym_o_GT_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(97)] = { - [sym_comment] = STATE(97), - [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -51038,6 +51235,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), @@ -51070,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(769), + [anon_sym_DOT] = ACTIONS(759), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(771), + [aux_sym__immediate_decimal_token5] = ACTIONS(761), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -51094,8 +51292,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(98)] = { - [sym_comment] = STATE(98), + [STATE(97)] = { + [sym_comment] = STATE(97), + [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -51145,7 +51344,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), @@ -51178,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(773), + [anon_sym_DOT] = ACTIONS(763), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(775), + [aux_sym__immediate_decimal_token5] = ACTIONS(765), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -51202,8 +51400,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(98)] = { + [sym_comment] = STATE(98), + [anon_sym_in] = ACTIONS(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), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(775), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_COLON2] = ACTIONS(771), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(771), + [anon_sym_out_GT_GT] = ACTIONS(771), + [anon_sym_e_GT_GT] = ACTIONS(771), + [anon_sym_o_GT_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(100)] = { + [sym_comment] = STATE(100), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -51310,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(100)] = { - [sym_comment] = STATE(100), + [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), @@ -51359,7 +51774,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), @@ -51418,8 +51832,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(101)] = { - [sym_comment] = STATE(101), + [STATE(102)] = { + [sym_comment] = STATE(102), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(785), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(771), + [anon_sym_out_GT_GT] = ACTIONS(771), + [anon_sym_e_GT_GT] = ACTIONS(771), + [anon_sym_o_GT_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(103)] = { + [sym_comment] = STATE(103), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -51469,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), @@ -51502,12 +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(753), + [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), @@ -51526,115 +52046,329 @@ 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), - [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(771), - [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), + [STATE(104)] = { + [sym_comment] = STATE(104), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token1] = ACTIONS(791), + [aux_sym__immediate_decimal_token5] = ACTIONS(793), + [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(103)] = { - [sym_comment] = STATE(103), + [STATE(105)] = { + [sym_expr_parenthesized] = STATE(2680), + [sym__spread_parenthesized] = STATE(3130), + [sym_val_range] = STATE(3137), + [sym__val_range] = STATE(4685), + [sym__value] = STATE(3137), + [sym_val_nothing] = STATE(3023), + [sym_val_bool] = STATE(2794), + [sym__spread_variable] = STATE(3138), + [sym_val_variable] = STATE(2654), + [sym_val_cellpath] = STATE(3023), + [sym_val_number] = STATE(3023), + [sym__val_number_decimal] = STATE(2409), + [sym__val_number] = STATE(3192), + [sym_val_duration] = STATE(3023), + [sym_val_filesize] = STATE(3023), + [sym_val_binary] = STATE(3023), + [sym_val_string] = STATE(3023), + [sym__raw_str] = STATE(2483), + [sym__str_double_quotes] = STATE(2483), + [sym__str_single_quotes] = STATE(2483), + [sym__str_back_ticks] = STATE(2483), + [sym_val_interpolated] = STATE(3023), + [sym__inter_single_quotes] = STATE(3094), + [sym__inter_double_quotes] = STATE(3095), + [sym_val_list] = STATE(3023), + [sym__spread_list] = STATE(3130), + [sym_val_record] = STATE(3023), + [sym_val_table] = STATE(3023), + [sym_val_closure] = STATE(3023), + [sym__cmd_arg] = STATE(3139), + [sym_redirection] = STATE(3140), + [sym__flag] = STATE(3141), + [sym_short_flag] = STATE(3142), + [sym_long_flag] = STATE(3142), + [sym_unquoted] = STATE(2867), + [sym__unquoted_with_expr] = STATE(3143), + [sym__unquoted_anonymous_prefix] = STATE(4685), + [sym_comment] = STATE(105), + [anon_sym_true] = ACTIONS(795), + [anon_sym_false] = ACTIONS(795), + [anon_sym_null] = ACTIONS(797), + [aux_sym_cmd_identifier_token3] = ACTIONS(799), + [aux_sym_cmd_identifier_token4] = ACTIONS(799), + [aux_sym_cmd_identifier_token5] = ACTIONS(799), + [sym__newline] = ACTIONS(801), + [sym__space] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_err_GT_PIPE] = ACTIONS(804), + [anon_sym_out_GT_PIPE] = ACTIONS(804), + [anon_sym_e_GT_PIPE] = ACTIONS(804), + [anon_sym_o_GT_PIPE] = ACTIONS(804), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(804), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(804), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(804), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(804), + [anon_sym_LBRACK] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(810), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DASH2] = ACTIONS(814), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_RBRACE] = ACTIONS(804), + [anon_sym_DOT_DOT] = ACTIONS(818), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(822), + [anon_sym_DOT_DOT_LT] = ACTIONS(822), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(824), + [aux_sym__val_number_decimal_token1] = ACTIONS(826), + [aux_sym__val_number_decimal_token2] = ACTIONS(826), + [aux_sym__val_number_decimal_token3] = ACTIONS(828), + [aux_sym__val_number_decimal_token4] = ACTIONS(828), + [aux_sym__val_number_token1] = ACTIONS(830), + [aux_sym__val_number_token2] = ACTIONS(830), + [aux_sym__val_number_token3] = ACTIONS(830), + [anon_sym_0b] = ACTIONS(832), + [anon_sym_0o] = ACTIONS(834), + [anon_sym_0x] = ACTIONS(834), + [sym_val_date] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(846), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(848), + [anon_sym_COLON2] = ACTIONS(850), + [anon_sym_err_GT] = ACTIONS(852), + [anon_sym_out_GT] = ACTIONS(852), + [anon_sym_e_GT] = ACTIONS(852), + [anon_sym_o_GT] = ACTIONS(852), + [anon_sym_err_PLUSout_GT] = ACTIONS(852), + [anon_sym_out_PLUSerr_GT] = ACTIONS(852), + [anon_sym_o_PLUSe_GT] = ACTIONS(852), + [anon_sym_e_PLUSo_GT] = ACTIONS(852), + [anon_sym_err_GT_GT] = ACTIONS(852), + [anon_sym_out_GT_GT] = ACTIONS(852), + [anon_sym_e_GT_GT] = ACTIONS(852), + [anon_sym_o_GT_GT] = ACTIONS(852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(852), + [aux_sym_unquoted_token1] = ACTIONS(854), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(856), + }, + [STATE(106)] = { + [sym_comment] = STATE(106), + [ts_builtin_sym_end] = ACTIONS(773), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(858), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(771), + [anon_sym_out_GT_GT] = ACTIONS(771), + [anon_sym_e_GT_GT] = ACTIONS(771), + [anon_sym_o_GT_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(107)] = { + [sym_comment] = STATE(107), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -51684,6 +52418,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), @@ -51718,10 +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_token1] = ACTIONS(785), - [aux_sym__immediate_decimal_token5] = ACTIONS(787), [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), @@ -51740,115 +52474,222 @@ 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(104)] = { - [sym_comment] = STATE(104), - [anon_sym_in] = ACTIONS(789), - [anon_sym_STAR_STAR] = ACTIONS(791), - [anon_sym_PLUS_PLUS] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_mod] = ACTIONS(791), - [anon_sym_SLASH_SLASH] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_bit_DASHshl] = ACTIONS(791), - [anon_sym_bit_DASHshr] = ACTIONS(791), - [anon_sym_EQ_TILDE] = ACTIONS(791), - [anon_sym_BANG_TILDE] = ACTIONS(791), - [anon_sym_like] = ACTIONS(791), - [anon_sym_not_DASHlike] = ACTIONS(791), - [anon_sym_bit_DASHand] = ACTIONS(791), - [anon_sym_bit_DASHxor] = ACTIONS(791), - [anon_sym_bit_DASHor] = ACTIONS(791), - [anon_sym_and] = ACTIONS(791), - [anon_sym_xor] = ACTIONS(791), - [anon_sym_or] = ACTIONS(791), - [anon_sym_in2] = ACTIONS(791), - [anon_sym_not_DASHin] = ACTIONS(791), - [anon_sym_has] = ACTIONS(791), - [anon_sym_not_DASHhas] = ACTIONS(791), - [anon_sym_starts_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), - [anon_sym_ends_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), - [anon_sym_EQ_EQ] = ACTIONS(791), - [anon_sym_BANG_EQ] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(791), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_GT_EQ] = ACTIONS(791), - [aux_sym_cmd_identifier_token6] = ACTIONS(789), - [sym__newline] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(789), - [anon_sym_err_GT_PIPE] = ACTIONS(789), - [anon_sym_out_GT_PIPE] = ACTIONS(789), - [anon_sym_e_GT_PIPE] = ACTIONS(789), - [anon_sym_o_GT_PIPE] = ACTIONS(789), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), - [anon_sym_GT2] = ACTIONS(789), - [anon_sym_DASH2] = ACTIONS(789), - [anon_sym_RBRACE] = ACTIONS(789), - [anon_sym_STAR2] = ACTIONS(789), - [anon_sym_and2] = ACTIONS(789), - [anon_sym_xor2] = ACTIONS(789), - [anon_sym_or2] = ACTIONS(789), - [anon_sym_not_DASHin2] = ACTIONS(789), - [anon_sym_has2] = ACTIONS(789), - [anon_sym_not_DASHhas2] = ACTIONS(789), - [anon_sym_starts_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), - [anon_sym_ends_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), - [anon_sym_EQ_EQ2] = ACTIONS(789), - [anon_sym_BANG_EQ2] = ACTIONS(789), - [anon_sym_LT2] = ACTIONS(789), - [anon_sym_LT_EQ2] = ACTIONS(789), - [anon_sym_GT_EQ2] = ACTIONS(789), - [anon_sym_EQ_TILDE2] = ACTIONS(789), - [anon_sym_BANG_TILDE2] = ACTIONS(789), - [anon_sym_like2] = ACTIONS(789), - [anon_sym_not_DASHlike2] = ACTIONS(789), - [anon_sym_STAR_STAR2] = ACTIONS(789), - [anon_sym_PLUS_PLUS2] = ACTIONS(789), - [anon_sym_SLASH2] = ACTIONS(789), - [anon_sym_mod2] = ACTIONS(789), - [anon_sym_SLASH_SLASH2] = ACTIONS(789), - [anon_sym_PLUS2] = ACTIONS(789), - [anon_sym_bit_DASHshl2] = ACTIONS(789), - [anon_sym_bit_DASHshr2] = ACTIONS(789), - [anon_sym_bit_DASHand2] = ACTIONS(789), - [anon_sym_bit_DASHxor2] = ACTIONS(789), - [anon_sym_bit_DASHor2] = ACTIONS(789), - [anon_sym_DOT_DOT2] = ACTIONS(789), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), - [anon_sym_DOT_DOT_LT2] = ACTIONS(791), - [sym_filesize_unit] = ACTIONS(789), - [sym_duration_unit] = ACTIONS(791), - [anon_sym_COLON2] = ACTIONS(789), - [anon_sym_err_GT] = ACTIONS(789), - [anon_sym_out_GT] = ACTIONS(789), - [anon_sym_e_GT] = ACTIONS(789), - [anon_sym_o_GT] = ACTIONS(789), - [anon_sym_err_PLUSout_GT] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT] = ACTIONS(789), - [anon_sym_o_PLUSe_GT] = ACTIONS(789), - [anon_sym_e_PLUSo_GT] = ACTIONS(789), - [anon_sym_err_GT_GT] = ACTIONS(789), - [anon_sym_out_GT_GT] = ACTIONS(789), - [anon_sym_e_GT_GT] = ACTIONS(789), - [anon_sym_o_GT_GT] = ACTIONS(789), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), + [STATE(108)] = { + [sym_comment] = STATE(108), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_COLON2] = ACTIONS(771), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(771), + [anon_sym_out_GT_GT] = ACTIONS(771), + [anon_sym_e_GT_GT] = ACTIONS(771), + [anon_sym_o_GT_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(105)] = { - [sym_comment] = STATE(105), + [STATE(109)] = { + [sym_comment] = STATE(109), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_mod] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(862), + [anon_sym_bit_DASHshl] = ACTIONS(862), + [anon_sym_bit_DASHshr] = ACTIONS(862), + [anon_sym_EQ_TILDE] = ACTIONS(862), + [anon_sym_BANG_TILDE] = ACTIONS(862), + [anon_sym_like] = ACTIONS(862), + [anon_sym_not_DASHlike] = ACTIONS(862), + [anon_sym_bit_DASHand] = ACTIONS(862), + [anon_sym_bit_DASHxor] = ACTIONS(862), + [anon_sym_bit_DASHor] = ACTIONS(862), + [anon_sym_and] = ACTIONS(862), + [anon_sym_xor] = ACTIONS(862), + [anon_sym_or] = ACTIONS(862), + [anon_sym_in2] = ACTIONS(862), + [anon_sym_not_DASHin] = ACTIONS(862), + [anon_sym_has] = ACTIONS(862), + [anon_sym_not_DASHhas] = ACTIONS(862), + [anon_sym_starts_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), + [anon_sym_ends_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(862), + [aux_sym_cmd_identifier_token6] = ACTIONS(860), + [sym__newline] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_RBRACE] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), + [anon_sym_DOT_DOT_LT2] = ACTIONS(862), + [sym_filesize_unit] = ACTIONS(860), + [sym_duration_unit] = ACTIONS(862), + [anon_sym_COLON2] = ACTIONS(860), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(110)] = { + [sym_comment] = STATE(110), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -51933,7 +52774,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(775), + [aux_sym__immediate_decimal_token5] = ACTIONS(761), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -51954,473 +52795,473 @@ 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(106)] = { - [sym_comment] = STATE(106), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), - [anon_sym_COLON2] = ACTIONS(763), - [anon_sym_err_GT] = ACTIONS(763), - [anon_sym_out_GT] = ACTIONS(763), - [anon_sym_e_GT] = ACTIONS(763), - [anon_sym_o_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT] = ACTIONS(763), - [anon_sym_err_GT_GT] = ACTIONS(763), - [anon_sym_out_GT_GT] = ACTIONS(763), - [anon_sym_e_GT_GT] = ACTIONS(763), - [anon_sym_o_GT_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), + [STATE(111)] = { + [sym_comment] = STATE(111), + [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(779), + [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(107)] = { - [sym_comment] = STATE(107), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [aux_sym__immediate_decimal_token5] = ACTIONS(793), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), - [anon_sym_err_GT] = ACTIONS(763), - [anon_sym_out_GT] = ACTIONS(763), - [anon_sym_e_GT] = ACTIONS(763), - [anon_sym_o_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT] = ACTIONS(763), - [anon_sym_err_GT_GT] = ACTIONS(763), - [anon_sym_out_GT_GT] = ACTIONS(763), - [anon_sym_e_GT_GT] = ACTIONS(763), - [anon_sym_o_GT_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), + [STATE(112)] = { + [sym_comment] = STATE(112), + [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(765), + [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(108)] = { - [sym_expr_parenthesized] = STATE(2636), - [sym__spread_parenthesized] = STATE(3096), - [sym_val_range] = STATE(3097), - [sym__val_range] = STATE(4622), - [sym__value] = STATE(3097), - [sym_val_nothing] = STATE(3058), - [sym_val_bool] = STATE(2767), - [sym__spread_variable] = STATE(3098), - [sym_val_variable] = STATE(2641), - [sym_val_cellpath] = STATE(3058), - [sym_val_number] = STATE(3058), - [sym__val_number_decimal] = STATE(2386), - [sym__val_number] = STATE(3061), - [sym_val_duration] = STATE(3058), - [sym_val_filesize] = STATE(3058), - [sym_val_binary] = STATE(3058), - [sym_val_string] = STATE(3058), - [sym__raw_str] = STATE(2455), - [sym__str_double_quotes] = STATE(2455), - [sym__str_single_quotes] = STATE(2455), - [sym__str_back_ticks] = STATE(2455), - [sym_val_interpolated] = STATE(3058), - [sym__inter_single_quotes] = STATE(3082), - [sym__inter_double_quotes] = STATE(3083), - [sym_val_list] = STATE(3058), - [sym__spread_list] = STATE(3096), - [sym_val_record] = STATE(3058), - [sym_val_table] = STATE(3058), - [sym_val_closure] = STATE(3058), - [sym__cmd_arg] = STATE(3099), - [sym_redirection] = STATE(3100), - [sym__flag] = STATE(3101), - [sym_short_flag] = STATE(3102), - [sym_long_flag] = STATE(3102), - [sym_unquoted] = STATE(2685), - [sym__unquoted_with_expr] = STATE(3104), - [sym__unquoted_anonymous_prefix] = STATE(4622), - [sym_comment] = STATE(108), - [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), + [STATE(113)] = { + [sym_comment] = STATE(113), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(864), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(771), + [anon_sym_out_GT_GT] = ACTIONS(771), + [anon_sym_e_GT_GT] = ACTIONS(771), + [anon_sym_o_GT_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(856), }, - [STATE(109)] = { - [sym_comment] = STATE(109), - [anon_sym_in] = ACTIONS(858), - [anon_sym_STAR_STAR] = ACTIONS(860), - [anon_sym_PLUS_PLUS] = ACTIONS(860), - [anon_sym_STAR] = ACTIONS(862), - [anon_sym_SLASH] = ACTIONS(862), - [anon_sym_mod] = ACTIONS(860), - [anon_sym_SLASH_SLASH] = ACTIONS(860), - [anon_sym_PLUS] = ACTIONS(862), - [anon_sym_DASH] = ACTIONS(860), - [anon_sym_bit_DASHshl] = ACTIONS(860), - [anon_sym_bit_DASHshr] = ACTIONS(860), - [anon_sym_EQ_TILDE] = ACTIONS(860), - [anon_sym_BANG_TILDE] = ACTIONS(860), - [anon_sym_like] = ACTIONS(860), - [anon_sym_not_DASHlike] = ACTIONS(860), - [anon_sym_bit_DASHand] = ACTIONS(860), - [anon_sym_bit_DASHxor] = ACTIONS(860), - [anon_sym_bit_DASHor] = ACTIONS(860), - [anon_sym_and] = ACTIONS(860), - [anon_sym_xor] = ACTIONS(860), - [anon_sym_or] = ACTIONS(860), - [anon_sym_in2] = ACTIONS(860), - [anon_sym_not_DASHin] = ACTIONS(860), - [anon_sym_has] = ACTIONS(860), - [anon_sym_not_DASHhas] = ACTIONS(860), - [anon_sym_starts_DASHwith] = ACTIONS(860), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(860), - [anon_sym_ends_DASHwith] = ACTIONS(860), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(860), - [anon_sym_EQ_EQ] = ACTIONS(860), - [anon_sym_BANG_EQ] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(862), - [anon_sym_LT_EQ] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(862), - [anon_sym_GT_EQ] = ACTIONS(860), - [aux_sym_cmd_identifier_token6] = ACTIONS(864), - [sym__newline] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_err_GT_PIPE] = ACTIONS(858), - [anon_sym_out_GT_PIPE] = ACTIONS(858), - [anon_sym_e_GT_PIPE] = ACTIONS(858), - [anon_sym_o_GT_PIPE] = ACTIONS(858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), - [anon_sym_GT2] = ACTIONS(858), - [anon_sym_DASH2] = ACTIONS(858), - [anon_sym_RBRACE] = ACTIONS(858), - [anon_sym_STAR2] = ACTIONS(858), - [anon_sym_and2] = ACTIONS(858), - [anon_sym_xor2] = ACTIONS(858), - [anon_sym_or2] = ACTIONS(858), - [anon_sym_not_DASHin2] = ACTIONS(858), - [anon_sym_has2] = ACTIONS(858), - [anon_sym_not_DASHhas2] = ACTIONS(858), - [anon_sym_starts_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), - [anon_sym_ends_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), - [anon_sym_EQ_EQ2] = ACTIONS(858), - [anon_sym_BANG_EQ2] = ACTIONS(858), - [anon_sym_LT2] = ACTIONS(858), - [anon_sym_LT_EQ2] = ACTIONS(858), - [anon_sym_GT_EQ2] = ACTIONS(858), - [anon_sym_EQ_TILDE2] = ACTIONS(858), - [anon_sym_BANG_TILDE2] = ACTIONS(858), - [anon_sym_like2] = ACTIONS(858), - [anon_sym_not_DASHlike2] = ACTIONS(858), - [anon_sym_STAR_STAR2] = ACTIONS(858), - [anon_sym_PLUS_PLUS2] = ACTIONS(858), - [anon_sym_SLASH2] = ACTIONS(858), - [anon_sym_mod2] = ACTIONS(858), - [anon_sym_SLASH_SLASH2] = ACTIONS(858), - [anon_sym_PLUS2] = ACTIONS(858), - [anon_sym_bit_DASHshl2] = ACTIONS(858), - [anon_sym_bit_DASHshr2] = ACTIONS(858), - [anon_sym_bit_DASHand2] = ACTIONS(858), - [anon_sym_bit_DASHxor2] = ACTIONS(858), - [anon_sym_bit_DASHor2] = ACTIONS(858), - [anon_sym_DOT_DOT2] = ACTIONS(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(870), - [sym_duration_unit] = ACTIONS(872), - [anon_sym_COLON2] = ACTIONS(858), - [anon_sym_err_GT] = ACTIONS(858), - [anon_sym_out_GT] = ACTIONS(858), - [anon_sym_e_GT] = ACTIONS(858), - [anon_sym_o_GT] = ACTIONS(858), - [anon_sym_err_PLUSout_GT] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT] = ACTIONS(858), - [anon_sym_o_PLUSe_GT] = ACTIONS(858), - [anon_sym_e_PLUSo_GT] = ACTIONS(858), - [anon_sym_err_GT_GT] = ACTIONS(858), - [anon_sym_out_GT_GT] = ACTIONS(858), - [anon_sym_e_GT_GT] = ACTIONS(858), - [anon_sym_o_GT_GT] = ACTIONS(858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(858), + [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(110)] = { - [sym_expr_parenthesized] = STATE(2636), - [sym__spread_parenthesized] = STATE(3096), - [sym_val_range] = STATE(3097), - [sym__val_range] = STATE(4622), - [sym__value] = STATE(3097), - [sym_val_nothing] = STATE(3058), - [sym_val_bool] = STATE(2767), - [sym__spread_variable] = STATE(3098), - [sym_val_variable] = STATE(2641), - [sym_val_cellpath] = STATE(3058), - [sym_val_number] = STATE(3058), - [sym__val_number_decimal] = STATE(2386), - [sym__val_number] = STATE(3061), - [sym_val_duration] = STATE(3058), - [sym_val_filesize] = STATE(3058), - [sym_val_binary] = STATE(3058), - [sym_val_string] = STATE(3058), - [sym__raw_str] = STATE(2455), - [sym__str_double_quotes] = STATE(2455), - [sym__str_single_quotes] = STATE(2455), - [sym__str_back_ticks] = STATE(2455), - [sym_val_interpolated] = STATE(3058), - [sym__inter_single_quotes] = STATE(3082), - [sym__inter_double_quotes] = STATE(3083), - [sym_val_list] = STATE(3058), - [sym__spread_list] = STATE(3096), - [sym_val_record] = STATE(3058), - [sym_val_table] = STATE(3058), - [sym_val_closure] = STATE(3058), - [sym__cmd_arg] = STATE(3099), - [sym_redirection] = STATE(3100), - [sym__flag] = STATE(3101), - [sym_short_flag] = STATE(3102), - [sym_long_flag] = STATE(3102), - [sym_unquoted] = STATE(2685), - [sym__unquoted_with_expr] = STATE(3104), - [sym__unquoted_anonymous_prefix] = STATE(4622), - [sym_comment] = STATE(110), + [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), @@ -52428,7 +53269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token4] = ACTIONS(799), [aux_sym_cmd_identifier_token5] = ACTIONS(799), [sym__newline] = ACTIONS(804), - [sym__space] = ACTIONS(874), + [sym__space] = ACTIONS(882), [anon_sym_SEMI] = ACTIONS(804), [anon_sym_PIPE] = ACTIONS(804), [anon_sym_err_GT_PIPE] = ACTIONS(804), @@ -52489,115 +53330,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(856), }, - [STATE(111)] = { - [sym_comment] = STATE(111), - [ts_builtin_sym_end] = ACTIONS(765), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [aux_sym__immediate_decimal_token5] = ACTIONS(876), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), - [anon_sym_err_GT] = ACTIONS(763), - [anon_sym_out_GT] = ACTIONS(763), - [anon_sym_e_GT] = ACTIONS(763), - [anon_sym_o_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT] = ACTIONS(763), - [anon_sym_err_GT_GT] = ACTIONS(763), - [anon_sym_out_GT_GT] = ACTIONS(763), - [anon_sym_e_GT_GT] = ACTIONS(763), - [anon_sym_o_GT_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), + [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(112)] = { - [sym_comment] = STATE(112), + [STATE(117)] = { + [sym_comment] = STATE(117), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -52645,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), @@ -52682,7 +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(779), + [aux_sym__immediate_decimal_token5] = ACTIONS(789), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -52703,8 +53542,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(113)] = { - [sym_comment] = STATE(113), + [STATE(118)] = { + [sym_comment] = STATE(118), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(771), + [anon_sym_out_GT_GT] = ACTIONS(771), + [anon_sym_e_GT_GT] = ACTIONS(771), + [anon_sym_o_GT_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [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), @@ -52752,9 +53697,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), @@ -52791,7 +53736,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT2] = ACTIONS(741), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), - [anon_sym_COLON2] = ACTIONS(739), [anon_sym_err_GT] = ACTIONS(739), [anon_sym_out_GT] = ACTIONS(739), [anon_sym_e_GT] = ACTIONS(739), @@ -52810,434 +53754,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(114)] = { - [sym_comment] = STATE(114), - [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(878), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(880), - [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(115)] = { - [sym_comment] = STATE(115), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_RPAREN] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [aux_sym__immediate_decimal_token5] = ACTIONS(882), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), - [anon_sym_err_GT] = ACTIONS(763), - [anon_sym_out_GT] = ACTIONS(763), - [anon_sym_e_GT] = ACTIONS(763), - [anon_sym_o_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT] = ACTIONS(763), - [anon_sym_err_GT_GT] = ACTIONS(763), - [anon_sym_out_GT_GT] = ACTIONS(763), - [anon_sym_e_GT_GT] = ACTIONS(763), - [anon_sym_o_GT_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(116)] = { - [sym_comment] = STATE(116), - [anon_sym_in] = ACTIONS(789), - [anon_sym_STAR_STAR] = ACTIONS(791), - [anon_sym_PLUS_PLUS] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_mod] = ACTIONS(791), - [anon_sym_SLASH_SLASH] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_bit_DASHshl] = ACTIONS(791), - [anon_sym_bit_DASHshr] = ACTIONS(791), - [anon_sym_EQ_TILDE] = ACTIONS(791), - [anon_sym_BANG_TILDE] = ACTIONS(791), - [anon_sym_like] = ACTIONS(791), - [anon_sym_not_DASHlike] = ACTIONS(791), - [anon_sym_bit_DASHand] = ACTIONS(791), - [anon_sym_bit_DASHxor] = ACTIONS(791), - [anon_sym_bit_DASHor] = ACTIONS(791), - [anon_sym_and] = ACTIONS(791), - [anon_sym_xor] = ACTIONS(791), - [anon_sym_or] = ACTIONS(791), - [anon_sym_in2] = ACTIONS(791), - [anon_sym_not_DASHin] = ACTIONS(791), - [anon_sym_has] = ACTIONS(791), - [anon_sym_not_DASHhas] = ACTIONS(791), - [anon_sym_starts_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), - [anon_sym_ends_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), - [anon_sym_EQ_EQ] = ACTIONS(791), - [anon_sym_BANG_EQ] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(791), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_GT_EQ] = ACTIONS(791), - [aux_sym_cmd_identifier_token6] = ACTIONS(789), - [sym__newline] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(789), - [anon_sym_err_GT_PIPE] = ACTIONS(789), - [anon_sym_out_GT_PIPE] = ACTIONS(789), - [anon_sym_e_GT_PIPE] = ACTIONS(789), - [anon_sym_o_GT_PIPE] = ACTIONS(789), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), - [anon_sym_GT2] = ACTIONS(789), - [anon_sym_DASH2] = ACTIONS(789), - [anon_sym_RBRACE] = ACTIONS(789), - [anon_sym_STAR2] = ACTIONS(789), - [anon_sym_and2] = ACTIONS(789), - [anon_sym_xor2] = ACTIONS(789), - [anon_sym_or2] = ACTIONS(789), - [anon_sym_not_DASHin2] = ACTIONS(789), - [anon_sym_has2] = ACTIONS(789), - [anon_sym_not_DASHhas2] = ACTIONS(789), - [anon_sym_starts_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), - [anon_sym_ends_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), - [anon_sym_EQ_EQ2] = ACTIONS(789), - [anon_sym_BANG_EQ2] = ACTIONS(789), - [anon_sym_LT2] = ACTIONS(789), - [anon_sym_LT_EQ2] = ACTIONS(789), - [anon_sym_GT_EQ2] = ACTIONS(789), - [anon_sym_EQ_TILDE2] = ACTIONS(789), - [anon_sym_BANG_TILDE2] = ACTIONS(789), - [anon_sym_like2] = ACTIONS(789), - [anon_sym_not_DASHlike2] = ACTIONS(789), - [anon_sym_STAR_STAR2] = ACTIONS(789), - [anon_sym_PLUS_PLUS2] = ACTIONS(789), - [anon_sym_SLASH2] = ACTIONS(789), - [anon_sym_mod2] = ACTIONS(789), - [anon_sym_SLASH_SLASH2] = ACTIONS(789), - [anon_sym_PLUS2] = ACTIONS(789), - [anon_sym_bit_DASHshl2] = ACTIONS(789), - [anon_sym_bit_DASHshr2] = ACTIONS(789), - [anon_sym_bit_DASHand2] = ACTIONS(789), - [anon_sym_bit_DASHxor2] = ACTIONS(789), - [anon_sym_bit_DASHor2] = ACTIONS(789), - [anon_sym_DOT_DOT2] = ACTIONS(789), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), - [anon_sym_DOT_DOT_LT2] = ACTIONS(791), - [sym_filesize_unit] = ACTIONS(789), - [sym_duration_unit] = ACTIONS(791), - [anon_sym_err_GT] = ACTIONS(789), - [anon_sym_out_GT] = ACTIONS(789), - [anon_sym_e_GT] = ACTIONS(789), - [anon_sym_o_GT] = ACTIONS(789), - [anon_sym_err_PLUSout_GT] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT] = ACTIONS(789), - [anon_sym_o_PLUSe_GT] = ACTIONS(789), - [anon_sym_e_PLUSo_GT] = ACTIONS(789), - [anon_sym_err_GT_GT] = ACTIONS(789), - [anon_sym_out_GT_GT] = ACTIONS(789), - [anon_sym_e_GT_GT] = ACTIONS(789), - [anon_sym_o_GT_GT] = ACTIONS(789), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), + [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(117)] = { - [sym_comment] = STATE(117), - [ts_builtin_sym_end] = ACTIONS(884), - [anon_sym_in] = ACTIONS(858), - [anon_sym_STAR_STAR] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_mod] = ACTIONS(886), - [anon_sym_SLASH_SLASH] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_bit_DASHshl] = ACTIONS(886), - [anon_sym_bit_DASHshr] = ACTIONS(886), - [anon_sym_EQ_TILDE] = ACTIONS(886), - [anon_sym_BANG_TILDE] = ACTIONS(886), - [anon_sym_like] = ACTIONS(886), - [anon_sym_not_DASHlike] = ACTIONS(886), - [anon_sym_bit_DASHand] = ACTIONS(886), - [anon_sym_bit_DASHxor] = ACTIONS(886), - [anon_sym_bit_DASHor] = ACTIONS(886), - [anon_sym_and] = ACTIONS(886), - [anon_sym_xor] = ACTIONS(886), - [anon_sym_or] = ACTIONS(886), - [anon_sym_in2] = ACTIONS(886), - [anon_sym_not_DASHin] = ACTIONS(886), - [anon_sym_has] = ACTIONS(886), - [anon_sym_not_DASHhas] = ACTIONS(886), - [anon_sym_starts_DASHwith] = ACTIONS(886), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(886), - [anon_sym_ends_DASHwith] = ACTIONS(886), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(886), - [anon_sym_EQ_EQ] = ACTIONS(886), - [anon_sym_BANG_EQ] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_LT_EQ] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(888), - [anon_sym_GT_EQ] = ACTIONS(886), - [aux_sym_cmd_identifier_token6] = ACTIONS(890), - [sym__newline] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_err_GT_PIPE] = ACTIONS(858), - [anon_sym_out_GT_PIPE] = ACTIONS(858), - [anon_sym_e_GT_PIPE] = ACTIONS(858), - [anon_sym_o_GT_PIPE] = ACTIONS(858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), - [anon_sym_GT2] = ACTIONS(858), - [anon_sym_DASH2] = ACTIONS(858), - [anon_sym_STAR2] = ACTIONS(858), - [anon_sym_and2] = ACTIONS(858), - [anon_sym_xor2] = ACTIONS(858), - [anon_sym_or2] = ACTIONS(858), - [anon_sym_not_DASHin2] = ACTIONS(858), - [anon_sym_has2] = ACTIONS(858), - [anon_sym_not_DASHhas2] = ACTIONS(858), - [anon_sym_starts_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), - [anon_sym_ends_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), - [anon_sym_EQ_EQ2] = ACTIONS(858), - [anon_sym_BANG_EQ2] = ACTIONS(858), - [anon_sym_LT2] = ACTIONS(858), - [anon_sym_LT_EQ2] = ACTIONS(858), - [anon_sym_GT_EQ2] = ACTIONS(858), - [anon_sym_EQ_TILDE2] = ACTIONS(858), - [anon_sym_BANG_TILDE2] = ACTIONS(858), - [anon_sym_like2] = ACTIONS(858), - [anon_sym_not_DASHlike2] = ACTIONS(858), - [anon_sym_STAR_STAR2] = ACTIONS(858), - [anon_sym_PLUS_PLUS2] = ACTIONS(858), - [anon_sym_SLASH2] = ACTIONS(858), - [anon_sym_mod2] = ACTIONS(858), - [anon_sym_SLASH_SLASH2] = ACTIONS(858), - [anon_sym_PLUS2] = ACTIONS(858), - [anon_sym_bit_DASHshl2] = ACTIONS(858), - [anon_sym_bit_DASHshr2] = ACTIONS(858), - [anon_sym_bit_DASHand2] = ACTIONS(858), - [anon_sym_bit_DASHxor2] = ACTIONS(858), - [anon_sym_bit_DASHor2] = ACTIONS(858), - [anon_sym_DOT_DOT2] = ACTIONS(892), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(894), - [anon_sym_DOT_DOT_LT2] = ACTIONS(894), - [sym_filesize_unit] = ACTIONS(896), - [sym_duration_unit] = ACTIONS(898), - [anon_sym_err_GT] = ACTIONS(858), - [anon_sym_out_GT] = ACTIONS(858), - [anon_sym_e_GT] = ACTIONS(858), - [anon_sym_o_GT] = ACTIONS(858), - [anon_sym_err_PLUSout_GT] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT] = ACTIONS(858), - [anon_sym_o_PLUSe_GT] = ACTIONS(858), - [anon_sym_e_PLUSo_GT] = ACTIONS(858), - [anon_sym_err_GT_GT] = ACTIONS(858), - [anon_sym_out_GT_GT] = ACTIONS(858), - [anon_sym_e_GT_GT] = ACTIONS(858), - [anon_sym_o_GT_GT] = ACTIONS(858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(858), + [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(118)] = { - [sym_comment] = STATE(118), + [STATE(122)] = { + [sym_comment] = STATE(122), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -53342,114 +54072,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(119)] = { - [sym_expr_parenthesized] = STATE(2636), - [sym__spread_parenthesized] = STATE(3096), - [sym_val_range] = STATE(3097), - [sym__val_range] = STATE(4622), - [sym__value] = STATE(3097), - [sym_val_nothing] = STATE(3058), - [sym_val_bool] = STATE(2767), - [sym__spread_variable] = STATE(3098), - [sym_val_variable] = STATE(2641), - [sym_val_cellpath] = STATE(3058), - [sym_val_number] = STATE(3058), - [sym__val_number_decimal] = STATE(2386), - [sym__val_number] = STATE(3061), - [sym_val_duration] = STATE(3058), - [sym_val_filesize] = STATE(3058), - [sym_val_binary] = STATE(3058), - [sym_val_string] = STATE(3058), - [sym__raw_str] = STATE(2455), - [sym__str_double_quotes] = STATE(2455), - [sym__str_single_quotes] = STATE(2455), - [sym__str_back_ticks] = STATE(2455), - [sym_val_interpolated] = STATE(3058), - [sym__inter_single_quotes] = STATE(3082), - [sym__inter_double_quotes] = STATE(3083), - [sym_val_list] = STATE(3058), - [sym__spread_list] = STATE(3096), - [sym_val_record] = STATE(3058), - [sym_val_table] = STATE(3058), - [sym_val_closure] = STATE(3058), - [sym__cmd_arg] = STATE(3246), - [sym_redirection] = STATE(3100), - [sym__flag] = STATE(3101), - [sym_short_flag] = STATE(3102), - [sym_long_flag] = STATE(3102), - [sym_unquoted] = STATE(2685), - [sym__unquoted_with_expr] = STATE(3104), - [sym__unquoted_anonymous_prefix] = STATE(4622), - [sym_comment] = STATE(119), - [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(900), - [sym__space] = ACTIONS(902), - [anon_sym_SEMI] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(900), - [anon_sym_err_GT_PIPE] = ACTIONS(900), - [anon_sym_out_GT_PIPE] = ACTIONS(900), - [anon_sym_e_GT_PIPE] = ACTIONS(900), - [anon_sym_o_GT_PIPE] = ACTIONS(900), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(900), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(900), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(900), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(900), - [anon_sym_LBRACK] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(808), - [anon_sym_RPAREN] = ACTIONS(900), - [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), + [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), - [sym_raw_string_begin] = ACTIONS(856), }, - [STATE(120)] = { - [sym_comment] = STATE(120), + [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), @@ -53554,326 +54496,114 @@ 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(121)] = { - [sym_comment] = STATE(121), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), - [anon_sym_err_GT] = ACTIONS(763), - [anon_sym_out_GT] = ACTIONS(763), - [anon_sym_e_GT] = ACTIONS(763), - [anon_sym_o_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT] = ACTIONS(763), - [anon_sym_err_GT_GT] = ACTIONS(763), - [anon_sym_out_GT_GT] = ACTIONS(763), - [anon_sym_e_GT_GT] = ACTIONS(763), - [anon_sym_o_GT_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(122)] = { - [sym_expr_parenthesized] = STATE(2776), - [sym__spread_parenthesized] = STATE(3175), - [sym_val_range] = STATE(3177), - [sym__val_range] = STATE(4429), - [sym__value] = STATE(3177), - [sym_val_nothing] = STATE(3205), - [sym_val_bool] = STATE(2871), - [sym__spread_variable] = STATE(3178), - [sym_val_variable] = STATE(2712), - [sym_val_cellpath] = STATE(3205), - [sym_val_number] = STATE(3205), - [sym__val_number_decimal] = STATE(2414), - [sym__val_number] = STATE(3207), - [sym_val_duration] = STATE(3205), - [sym_val_filesize] = STATE(3205), - [sym_val_binary] = STATE(3205), - [sym_val_string] = STATE(3205), - [sym__raw_str] = STATE(2501), - [sym__str_double_quotes] = STATE(2501), - [sym__str_single_quotes] = STATE(2501), - [sym__str_back_ticks] = STATE(2501), - [sym_val_interpolated] = STATE(3205), - [sym__inter_single_quotes] = STATE(3155), - [sym__inter_double_quotes] = STATE(3156), - [sym_val_list] = STATE(3205), - [sym__spread_list] = STATE(3175), - [sym_val_record] = STATE(3205), - [sym_val_table] = STATE(3205), - [sym_val_closure] = STATE(3205), - [sym__cmd_arg] = STATE(3250), - [sym_redirection] = STATE(3191), - [sym__flag] = STATE(3193), - [sym_short_flag] = STATE(3195), - [sym_long_flag] = STATE(3195), - [sym_unquoted] = STATE(2936), - [sym__unquoted_with_expr] = STATE(3197), - [sym__unquoted_anonymous_prefix] = STATE(4429), - [sym_comment] = STATE(122), - [ts_builtin_sym_end] = ACTIONS(874), - [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(804), - [sym__space] = ACTIONS(874), - [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(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(123)] = { - [sym_comment] = STATE(123), - [ts_builtin_sym_end] = ACTIONS(765), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), - [anon_sym_err_GT] = ACTIONS(763), - [anon_sym_out_GT] = ACTIONS(763), - [anon_sym_e_GT] = ACTIONS(763), - [anon_sym_o_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT] = ACTIONS(763), - [anon_sym_err_GT_GT] = ACTIONS(763), - [anon_sym_out_GT_GT] = ACTIONS(763), - [anon_sym_e_GT_GT] = ACTIONS(763), - [anon_sym_o_GT_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), + [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(124)] = { - [sym_comment] = STATE(124), + [STATE(128)] = { + [sym_comment] = STATE(128), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -53954,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(960), + [anon_sym_DOT] = ACTIONS(912), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(962), + [aux_sym__immediate_decimal_token5] = ACTIONS(914), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -53978,114 +54708,220 @@ 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), - [ts_builtin_sym_end] = ACTIONS(791), - [anon_sym_in] = ACTIONS(789), - [anon_sym_STAR_STAR] = ACTIONS(791), - [anon_sym_PLUS_PLUS] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_mod] = ACTIONS(791), - [anon_sym_SLASH_SLASH] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_bit_DASHshl] = ACTIONS(791), - [anon_sym_bit_DASHshr] = ACTIONS(791), - [anon_sym_EQ_TILDE] = ACTIONS(791), - [anon_sym_BANG_TILDE] = ACTIONS(791), - [anon_sym_like] = ACTIONS(791), - [anon_sym_not_DASHlike] = ACTIONS(791), - [anon_sym_bit_DASHand] = ACTIONS(791), - [anon_sym_bit_DASHxor] = ACTIONS(791), - [anon_sym_bit_DASHor] = ACTIONS(791), - [anon_sym_and] = ACTIONS(791), - [anon_sym_xor] = ACTIONS(791), - [anon_sym_or] = ACTIONS(791), - [anon_sym_in2] = ACTIONS(791), - [anon_sym_not_DASHin] = ACTIONS(791), - [anon_sym_has] = ACTIONS(791), - [anon_sym_not_DASHhas] = ACTIONS(791), - [anon_sym_starts_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), - [anon_sym_ends_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), - [anon_sym_EQ_EQ] = ACTIONS(791), - [anon_sym_BANG_EQ] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(791), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_GT_EQ] = ACTIONS(791), - [aux_sym_cmd_identifier_token6] = ACTIONS(789), - [sym__newline] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(789), - [anon_sym_err_GT_PIPE] = ACTIONS(789), - [anon_sym_out_GT_PIPE] = ACTIONS(789), - [anon_sym_e_GT_PIPE] = ACTIONS(789), - [anon_sym_o_GT_PIPE] = ACTIONS(789), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), - [anon_sym_GT2] = ACTIONS(789), - [anon_sym_DASH2] = ACTIONS(789), - [anon_sym_STAR2] = ACTIONS(789), - [anon_sym_and2] = ACTIONS(789), - [anon_sym_xor2] = ACTIONS(789), - [anon_sym_or2] = ACTIONS(789), - [anon_sym_not_DASHin2] = ACTIONS(789), - [anon_sym_has2] = ACTIONS(789), - [anon_sym_not_DASHhas2] = ACTIONS(789), - [anon_sym_starts_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), - [anon_sym_ends_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), - [anon_sym_EQ_EQ2] = ACTIONS(789), - [anon_sym_BANG_EQ2] = ACTIONS(789), - [anon_sym_LT2] = ACTIONS(789), - [anon_sym_LT_EQ2] = ACTIONS(789), - [anon_sym_GT_EQ2] = ACTIONS(789), - [anon_sym_EQ_TILDE2] = ACTIONS(789), - [anon_sym_BANG_TILDE2] = ACTIONS(789), - [anon_sym_like2] = ACTIONS(789), - [anon_sym_not_DASHlike2] = ACTIONS(789), - [anon_sym_STAR_STAR2] = ACTIONS(789), - [anon_sym_PLUS_PLUS2] = ACTIONS(789), - [anon_sym_SLASH2] = ACTIONS(789), - [anon_sym_mod2] = ACTIONS(789), - [anon_sym_SLASH_SLASH2] = ACTIONS(789), - [anon_sym_PLUS2] = ACTIONS(789), - [anon_sym_bit_DASHshl2] = ACTIONS(789), - [anon_sym_bit_DASHshr2] = ACTIONS(789), - [anon_sym_bit_DASHand2] = ACTIONS(789), - [anon_sym_bit_DASHxor2] = ACTIONS(789), - [anon_sym_bit_DASHor2] = ACTIONS(789), - [anon_sym_DOT_DOT2] = ACTIONS(789), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), - [anon_sym_DOT_DOT_LT2] = ACTIONS(791), - [sym_filesize_unit] = ACTIONS(789), - [sym_duration_unit] = ACTIONS(791), - [anon_sym_err_GT] = ACTIONS(789), - [anon_sym_out_GT] = ACTIONS(789), - [anon_sym_e_GT] = ACTIONS(789), - [anon_sym_o_GT] = ACTIONS(789), - [anon_sym_err_PLUSout_GT] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT] = ACTIONS(789), - [anon_sym_o_PLUSe_GT] = ACTIONS(789), - [anon_sym_e_PLUSo_GT] = ACTIONS(789), - [anon_sym_err_GT_GT] = ACTIONS(789), - [anon_sym_out_GT_GT] = ACTIONS(789), - [anon_sym_e_GT_GT] = ACTIONS(789), - [anon_sym_o_GT_GT] = ACTIONS(789), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), + [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(126)] = { - [sym_comment] = STATE(126), + [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), @@ -54168,8 +55004,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token1] = ACTIONS(964), - [aux_sym__immediate_decimal_token5] = ACTIONS(966), + [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), @@ -54190,220 +55026,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(127)] = { - [sym_comment] = STATE(127), - [anon_sym_in] = ACTIONS(858), - [anon_sym_STAR_STAR] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_mod] = ACTIONS(968), - [anon_sym_SLASH_SLASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_bit_DASHshl] = ACTIONS(968), - [anon_sym_bit_DASHshr] = ACTIONS(968), - [anon_sym_EQ_TILDE] = ACTIONS(968), - [anon_sym_BANG_TILDE] = ACTIONS(968), - [anon_sym_like] = ACTIONS(968), - [anon_sym_not_DASHlike] = ACTIONS(968), - [anon_sym_bit_DASHand] = ACTIONS(968), - [anon_sym_bit_DASHxor] = ACTIONS(968), - [anon_sym_bit_DASHor] = ACTIONS(968), - [anon_sym_and] = ACTIONS(968), - [anon_sym_xor] = ACTIONS(968), - [anon_sym_or] = ACTIONS(968), - [anon_sym_in2] = ACTIONS(968), - [anon_sym_not_DASHin] = ACTIONS(968), - [anon_sym_has] = ACTIONS(968), - [anon_sym_not_DASHhas] = ACTIONS(968), - [anon_sym_starts_DASHwith] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(968), - [anon_sym_ends_DASHwith] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(968), - [anon_sym_EQ_EQ] = ACTIONS(968), - [anon_sym_BANG_EQ] = ACTIONS(968), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_EQ] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(968), - [aux_sym_cmd_identifier_token6] = ACTIONS(972), - [sym__newline] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_err_GT_PIPE] = ACTIONS(858), - [anon_sym_out_GT_PIPE] = ACTIONS(858), - [anon_sym_e_GT_PIPE] = ACTIONS(858), - [anon_sym_o_GT_PIPE] = ACTIONS(858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), - [anon_sym_RPAREN] = ACTIONS(858), - [anon_sym_GT2] = ACTIONS(858), - [anon_sym_DASH2] = ACTIONS(858), - [anon_sym_STAR2] = ACTIONS(858), - [anon_sym_and2] = ACTIONS(858), - [anon_sym_xor2] = ACTIONS(858), - [anon_sym_or2] = ACTIONS(858), - [anon_sym_not_DASHin2] = ACTIONS(858), - [anon_sym_has2] = ACTIONS(858), - [anon_sym_not_DASHhas2] = ACTIONS(858), - [anon_sym_starts_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), - [anon_sym_ends_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), - [anon_sym_EQ_EQ2] = ACTIONS(858), - [anon_sym_BANG_EQ2] = ACTIONS(858), - [anon_sym_LT2] = ACTIONS(858), - [anon_sym_LT_EQ2] = ACTIONS(858), - [anon_sym_GT_EQ2] = ACTIONS(858), - [anon_sym_EQ_TILDE2] = ACTIONS(858), - [anon_sym_BANG_TILDE2] = ACTIONS(858), - [anon_sym_like2] = ACTIONS(858), - [anon_sym_not_DASHlike2] = ACTIONS(858), - [anon_sym_STAR_STAR2] = ACTIONS(858), - [anon_sym_PLUS_PLUS2] = ACTIONS(858), - [anon_sym_SLASH2] = ACTIONS(858), - [anon_sym_mod2] = ACTIONS(858), - [anon_sym_SLASH_SLASH2] = ACTIONS(858), - [anon_sym_PLUS2] = ACTIONS(858), - [anon_sym_bit_DASHshl2] = ACTIONS(858), - [anon_sym_bit_DASHshr2] = ACTIONS(858), - [anon_sym_bit_DASHand2] = ACTIONS(858), - [anon_sym_bit_DASHxor2] = ACTIONS(858), - [anon_sym_bit_DASHor2] = ACTIONS(858), - [anon_sym_DOT_DOT2] = ACTIONS(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(974), - [sym_duration_unit] = ACTIONS(976), - [anon_sym_err_GT] = ACTIONS(858), - [anon_sym_out_GT] = ACTIONS(858), - [anon_sym_e_GT] = ACTIONS(858), - [anon_sym_o_GT] = ACTIONS(858), - [anon_sym_err_PLUSout_GT] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT] = ACTIONS(858), - [anon_sym_o_PLUSe_GT] = ACTIONS(858), - [anon_sym_e_PLUSo_GT] = ACTIONS(858), - [anon_sym_err_GT_GT] = ACTIONS(858), - [anon_sym_out_GT_GT] = ACTIONS(858), - [anon_sym_e_GT_GT] = ACTIONS(858), - [anon_sym_o_GT_GT] = ACTIONS(858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(858), + [STATE(132)] = { + [sym_comment] = STATE(132), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_mod] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(862), + [anon_sym_bit_DASHshl] = ACTIONS(862), + [anon_sym_bit_DASHshr] = ACTIONS(862), + [anon_sym_EQ_TILDE] = ACTIONS(862), + [anon_sym_BANG_TILDE] = ACTIONS(862), + [anon_sym_like] = ACTIONS(862), + [anon_sym_not_DASHlike] = ACTIONS(862), + [anon_sym_bit_DASHand] = ACTIONS(862), + [anon_sym_bit_DASHxor] = ACTIONS(862), + [anon_sym_bit_DASHor] = ACTIONS(862), + [anon_sym_and] = ACTIONS(862), + [anon_sym_xor] = ACTIONS(862), + [anon_sym_or] = ACTIONS(862), + [anon_sym_in2] = ACTIONS(862), + [anon_sym_not_DASHin] = ACTIONS(862), + [anon_sym_has] = ACTIONS(862), + [anon_sym_not_DASHhas] = ACTIONS(862), + [anon_sym_starts_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), + [anon_sym_ends_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_GT_EQ] = ACTIONS(862), + [aux_sym_cmd_identifier_token6] = ACTIONS(860), + [sym__newline] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_RPAREN] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(862), + [anon_sym_DOT_DOT_LT2] = ACTIONS(862), + [sym_filesize_unit] = ACTIONS(860), + [sym_duration_unit] = ACTIONS(862), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(128)] = { - [sym_comment] = STATE(128), - [anon_sym_in] = ACTIONS(858), - [anon_sym_STAR_STAR] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_mod] = ACTIONS(968), - [anon_sym_SLASH_SLASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_bit_DASHshl] = ACTIONS(968), - [anon_sym_bit_DASHshr] = ACTIONS(968), - [anon_sym_EQ_TILDE] = ACTIONS(968), - [anon_sym_BANG_TILDE] = ACTIONS(968), - [anon_sym_like] = ACTIONS(968), - [anon_sym_not_DASHlike] = ACTIONS(968), - [anon_sym_bit_DASHand] = ACTIONS(968), - [anon_sym_bit_DASHxor] = ACTIONS(968), - [anon_sym_bit_DASHor] = ACTIONS(968), - [anon_sym_and] = ACTIONS(968), - [anon_sym_xor] = ACTIONS(968), - [anon_sym_or] = ACTIONS(968), - [anon_sym_in2] = ACTIONS(968), - [anon_sym_not_DASHin] = ACTIONS(968), - [anon_sym_has] = ACTIONS(968), - [anon_sym_not_DASHhas] = ACTIONS(968), - [anon_sym_starts_DASHwith] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(968), - [anon_sym_ends_DASHwith] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(968), - [anon_sym_EQ_EQ] = ACTIONS(968), - [anon_sym_BANG_EQ] = ACTIONS(968), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_EQ] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(968), - [aux_sym_cmd_identifier_token6] = ACTIONS(972), - [sym__newline] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_err_GT_PIPE] = ACTIONS(858), - [anon_sym_out_GT_PIPE] = ACTIONS(858), - [anon_sym_e_GT_PIPE] = ACTIONS(858), - [anon_sym_o_GT_PIPE] = ACTIONS(858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), - [anon_sym_GT2] = ACTIONS(858), - [anon_sym_DASH2] = ACTIONS(858), - [anon_sym_RBRACE] = ACTIONS(858), - [anon_sym_STAR2] = ACTIONS(858), - [anon_sym_and2] = ACTIONS(858), - [anon_sym_xor2] = ACTIONS(858), - [anon_sym_or2] = ACTIONS(858), - [anon_sym_not_DASHin2] = ACTIONS(858), - [anon_sym_has2] = ACTIONS(858), - [anon_sym_not_DASHhas2] = ACTIONS(858), - [anon_sym_starts_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), - [anon_sym_ends_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), - [anon_sym_EQ_EQ2] = ACTIONS(858), - [anon_sym_BANG_EQ2] = ACTIONS(858), - [anon_sym_LT2] = ACTIONS(858), - [anon_sym_LT_EQ2] = ACTIONS(858), - [anon_sym_GT_EQ2] = ACTIONS(858), - [anon_sym_EQ_TILDE2] = ACTIONS(858), - [anon_sym_BANG_TILDE2] = ACTIONS(858), - [anon_sym_like2] = ACTIONS(858), - [anon_sym_not_DASHlike2] = ACTIONS(858), - [anon_sym_STAR_STAR2] = ACTIONS(858), - [anon_sym_PLUS_PLUS2] = ACTIONS(858), - [anon_sym_SLASH2] = ACTIONS(858), - [anon_sym_mod2] = ACTIONS(858), - [anon_sym_SLASH_SLASH2] = ACTIONS(858), - [anon_sym_PLUS2] = ACTIONS(858), - [anon_sym_bit_DASHshl2] = ACTIONS(858), - [anon_sym_bit_DASHshr2] = ACTIONS(858), - [anon_sym_bit_DASHand2] = ACTIONS(858), - [anon_sym_bit_DASHxor2] = ACTIONS(858), - [anon_sym_bit_DASHor2] = ACTIONS(858), - [anon_sym_DOT_DOT2] = ACTIONS(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(978), - [sym_duration_unit] = ACTIONS(980), - [anon_sym_err_GT] = ACTIONS(858), - [anon_sym_out_GT] = ACTIONS(858), - [anon_sym_e_GT] = ACTIONS(858), - [anon_sym_o_GT] = ACTIONS(858), - [anon_sym_err_PLUSout_GT] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT] = ACTIONS(858), - [anon_sym_o_PLUSe_GT] = ACTIONS(858), - [anon_sym_e_PLUSo_GT] = ACTIONS(858), - [anon_sym_err_GT_GT] = ACTIONS(858), - [anon_sym_out_GT_GT] = ACTIONS(858), - [anon_sym_e_GT_GT] = ACTIONS(858), - [anon_sym_o_GT_GT] = ACTIONS(858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(858), + [STATE(133)] = { + [sym_comment] = STATE(133), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(902), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(904), + [anon_sym_mod] = ACTIONS(902), + [anon_sym_SLASH_SLASH] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_bit_DASHshl] = ACTIONS(902), + [anon_sym_bit_DASHshr] = ACTIONS(902), + [anon_sym_EQ_TILDE] = ACTIONS(902), + [anon_sym_BANG_TILDE] = ACTIONS(902), + [anon_sym_like] = ACTIONS(902), + [anon_sym_not_DASHlike] = ACTIONS(902), + [anon_sym_bit_DASHand] = ACTIONS(902), + [anon_sym_bit_DASHxor] = ACTIONS(902), + [anon_sym_bit_DASHor] = ACTIONS(902), + [anon_sym_and] = ACTIONS(902), + [anon_sym_xor] = ACTIONS(902), + [anon_sym_or] = ACTIONS(902), + [anon_sym_in2] = ACTIONS(902), + [anon_sym_not_DASHin] = ACTIONS(902), + [anon_sym_has] = ACTIONS(902), + [anon_sym_not_DASHhas] = ACTIONS(902), + [anon_sym_starts_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(902), + [anon_sym_ends_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(904), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(904), + [anon_sym_GT_EQ] = ACTIONS(902), + [aux_sym_cmd_identifier_token6] = ACTIONS(906), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(980), + [sym_duration_unit] = ACTIONS(982), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(129)] = { - [sym_comment] = STATE(129), + [STATE(134)] = { + [sym_comment] = STATE(134), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -54451,7 +55287,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), @@ -54508,432 +55343,113 @@ 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(130)] = { - [sym_comment] = STATE(130), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [aux_sym__immediate_decimal_token5] = ACTIONS(982), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), - [anon_sym_err_GT] = ACTIONS(763), - [anon_sym_out_GT] = ACTIONS(763), - [anon_sym_e_GT] = ACTIONS(763), - [anon_sym_o_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT] = ACTIONS(763), - [anon_sym_err_GT_GT] = ACTIONS(763), - [anon_sym_out_GT_GT] = ACTIONS(763), - [anon_sym_e_GT_GT] = ACTIONS(763), - [anon_sym_o_GT_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(131)] = { - [sym_comment] = STATE(131), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_RPAREN] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), - [anon_sym_err_GT] = ACTIONS(763), - [anon_sym_out_GT] = ACTIONS(763), - [anon_sym_e_GT] = ACTIONS(763), - [anon_sym_o_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT] = ACTIONS(763), - [anon_sym_err_GT_GT] = ACTIONS(763), - [anon_sym_out_GT_GT] = ACTIONS(763), - [anon_sym_e_GT_GT] = ACTIONS(763), - [anon_sym_o_GT_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(132)] = { - [sym_comment] = STATE(132), - [anon_sym_in] = ACTIONS(789), - [anon_sym_STAR_STAR] = ACTIONS(791), - [anon_sym_PLUS_PLUS] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_mod] = ACTIONS(791), - [anon_sym_SLASH_SLASH] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_bit_DASHshl] = ACTIONS(791), - [anon_sym_bit_DASHshr] = ACTIONS(791), - [anon_sym_EQ_TILDE] = ACTIONS(791), - [anon_sym_BANG_TILDE] = ACTIONS(791), - [anon_sym_like] = ACTIONS(791), - [anon_sym_not_DASHlike] = ACTIONS(791), - [anon_sym_bit_DASHand] = ACTIONS(791), - [anon_sym_bit_DASHxor] = ACTIONS(791), - [anon_sym_bit_DASHor] = ACTIONS(791), - [anon_sym_and] = ACTIONS(791), - [anon_sym_xor] = ACTIONS(791), - [anon_sym_or] = ACTIONS(791), - [anon_sym_in2] = ACTIONS(791), - [anon_sym_not_DASHin] = ACTIONS(791), - [anon_sym_has] = ACTIONS(791), - [anon_sym_not_DASHhas] = ACTIONS(791), - [anon_sym_starts_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), - [anon_sym_ends_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), - [anon_sym_EQ_EQ] = ACTIONS(791), - [anon_sym_BANG_EQ] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(791), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_GT_EQ] = ACTIONS(791), - [aux_sym_cmd_identifier_token6] = ACTIONS(789), - [sym__newline] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(789), - [anon_sym_err_GT_PIPE] = ACTIONS(789), - [anon_sym_out_GT_PIPE] = ACTIONS(789), - [anon_sym_e_GT_PIPE] = ACTIONS(789), - [anon_sym_o_GT_PIPE] = ACTIONS(789), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), - [anon_sym_RPAREN] = ACTIONS(789), - [anon_sym_GT2] = ACTIONS(789), - [anon_sym_DASH2] = ACTIONS(789), - [anon_sym_STAR2] = ACTIONS(789), - [anon_sym_and2] = ACTIONS(789), - [anon_sym_xor2] = ACTIONS(789), - [anon_sym_or2] = ACTIONS(789), - [anon_sym_not_DASHin2] = ACTIONS(789), - [anon_sym_has2] = ACTIONS(789), - [anon_sym_not_DASHhas2] = ACTIONS(789), - [anon_sym_starts_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), - [anon_sym_ends_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), - [anon_sym_EQ_EQ2] = ACTIONS(789), - [anon_sym_BANG_EQ2] = ACTIONS(789), - [anon_sym_LT2] = ACTIONS(789), - [anon_sym_LT_EQ2] = ACTIONS(789), - [anon_sym_GT_EQ2] = ACTIONS(789), - [anon_sym_EQ_TILDE2] = ACTIONS(789), - [anon_sym_BANG_TILDE2] = ACTIONS(789), - [anon_sym_like2] = ACTIONS(789), - [anon_sym_not_DASHlike2] = ACTIONS(789), - [anon_sym_STAR_STAR2] = ACTIONS(789), - [anon_sym_PLUS_PLUS2] = ACTIONS(789), - [anon_sym_SLASH2] = ACTIONS(789), - [anon_sym_mod2] = ACTIONS(789), - [anon_sym_SLASH_SLASH2] = ACTIONS(789), - [anon_sym_PLUS2] = ACTIONS(789), - [anon_sym_bit_DASHshl2] = ACTIONS(789), - [anon_sym_bit_DASHshr2] = ACTIONS(789), - [anon_sym_bit_DASHand2] = ACTIONS(789), - [anon_sym_bit_DASHxor2] = ACTIONS(789), - [anon_sym_bit_DASHor2] = ACTIONS(789), - [anon_sym_DOT_DOT2] = ACTIONS(789), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), - [anon_sym_DOT_DOT_LT2] = ACTIONS(791), - [sym_filesize_unit] = ACTIONS(789), - [sym_duration_unit] = ACTIONS(791), - [anon_sym_err_GT] = ACTIONS(789), - [anon_sym_out_GT] = ACTIONS(789), - [anon_sym_e_GT] = ACTIONS(789), - [anon_sym_o_GT] = ACTIONS(789), - [anon_sym_err_PLUSout_GT] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT] = ACTIONS(789), - [anon_sym_o_PLUSe_GT] = ACTIONS(789), - [anon_sym_e_PLUSo_GT] = ACTIONS(789), - [anon_sym_err_GT_GT] = ACTIONS(789), - [anon_sym_out_GT_GT] = ACTIONS(789), - [anon_sym_e_GT_GT] = ACTIONS(789), - [anon_sym_o_GT_GT] = ACTIONS(789), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(133)] = { - [sym_comment] = STATE(133), - [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(880), - [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), + [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(134)] = { - [sym_comment] = STATE(134), + [STATE(136)] = { + [sym_comment] = STATE(136), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -55016,7 +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(962), + [aux_sym__immediate_decimal_token5] = ACTIONS(914), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -55037,533 +55553,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(135)] = { - [sym_comment] = STATE(135), - [anon_sym_in] = ACTIONS(789), - [anon_sym_STAR_STAR] = ACTIONS(791), - [anon_sym_PLUS_PLUS] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_mod] = ACTIONS(791), - [anon_sym_SLASH_SLASH] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_bit_DASHshl] = ACTIONS(791), - [anon_sym_bit_DASHshr] = ACTIONS(791), - [anon_sym_EQ_TILDE] = ACTIONS(791), - [anon_sym_BANG_TILDE] = ACTIONS(791), - [anon_sym_like] = ACTIONS(791), - [anon_sym_not_DASHlike] = ACTIONS(791), - [anon_sym_bit_DASHand] = ACTIONS(791), - [anon_sym_bit_DASHxor] = ACTIONS(791), - [anon_sym_bit_DASHor] = ACTIONS(791), - [anon_sym_and] = ACTIONS(791), - [anon_sym_xor] = ACTIONS(791), - [anon_sym_or] = ACTIONS(791), - [anon_sym_in2] = ACTIONS(791), - [anon_sym_not_DASHin] = ACTIONS(791), - [anon_sym_has] = ACTIONS(791), - [anon_sym_not_DASHhas] = ACTIONS(791), - [anon_sym_starts_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), - [anon_sym_ends_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), - [anon_sym_EQ_EQ] = ACTIONS(791), - [anon_sym_BANG_EQ] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(791), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_GT_EQ] = ACTIONS(791), - [aux_sym_cmd_identifier_token6] = ACTIONS(789), - [sym__newline] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(789), - [anon_sym_err_GT_PIPE] = ACTIONS(789), - [anon_sym_out_GT_PIPE] = ACTIONS(789), - [anon_sym_e_GT_PIPE] = ACTIONS(789), - [anon_sym_o_GT_PIPE] = ACTIONS(789), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), - [anon_sym_GT2] = ACTIONS(789), - [anon_sym_DASH2] = ACTIONS(789), - [anon_sym_STAR2] = ACTIONS(789), - [anon_sym_and2] = ACTIONS(789), - [anon_sym_xor2] = ACTIONS(789), - [anon_sym_or2] = ACTIONS(789), - [anon_sym_not_DASHin2] = ACTIONS(789), - [anon_sym_has2] = ACTIONS(789), - [anon_sym_not_DASHhas2] = ACTIONS(789), - [anon_sym_starts_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), - [anon_sym_ends_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), - [anon_sym_EQ_EQ2] = ACTIONS(789), - [anon_sym_BANG_EQ2] = ACTIONS(789), - [anon_sym_LT2] = ACTIONS(789), - [anon_sym_LT_EQ2] = ACTIONS(789), - [anon_sym_GT_EQ2] = ACTIONS(789), - [anon_sym_EQ_TILDE2] = ACTIONS(789), - [anon_sym_BANG_TILDE2] = ACTIONS(789), - [anon_sym_like2] = ACTIONS(789), - [anon_sym_not_DASHlike2] = ACTIONS(789), - [anon_sym_STAR_STAR2] = ACTIONS(789), - [anon_sym_PLUS_PLUS2] = ACTIONS(789), - [anon_sym_SLASH2] = ACTIONS(789), - [anon_sym_mod2] = ACTIONS(789), - [anon_sym_SLASH_SLASH2] = ACTIONS(789), - [anon_sym_PLUS2] = ACTIONS(789), - [anon_sym_bit_DASHshl2] = ACTIONS(789), - [anon_sym_bit_DASHshr2] = ACTIONS(789), - [anon_sym_bit_DASHand2] = ACTIONS(789), - [anon_sym_bit_DASHxor2] = ACTIONS(789), - [anon_sym_bit_DASHor2] = ACTIONS(789), - [anon_sym_DOT_DOT2] = ACTIONS(789), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), - [anon_sym_DOT_DOT_LT2] = ACTIONS(791), - [sym_filesize_unit] = ACTIONS(789), - [sym_duration_unit] = ACTIONS(791), - [anon_sym_err_GT] = ACTIONS(789), - [anon_sym_out_GT] = ACTIONS(789), - [anon_sym_e_GT] = ACTIONS(789), - [anon_sym_o_GT] = ACTIONS(789), - [anon_sym_err_PLUSout_GT] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT] = ACTIONS(789), - [anon_sym_o_PLUSe_GT] = ACTIONS(789), - [anon_sym_e_PLUSo_GT] = ACTIONS(789), - [anon_sym_err_GT_GT] = ACTIONS(789), - [anon_sym_out_GT_GT] = ACTIONS(789), - [anon_sym_e_GT_GT] = ACTIONS(789), - [anon_sym_o_GT_GT] = ACTIONS(789), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(136)] = { - [sym_comment] = STATE(136), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), - [anon_sym_err_GT] = ACTIONS(763), - [anon_sym_out_GT] = ACTIONS(763), - [anon_sym_e_GT] = ACTIONS(763), - [anon_sym_o_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT] = ACTIONS(763), - [anon_sym_err_GT_GT] = ACTIONS(763), - [anon_sym_out_GT_GT] = ACTIONS(763), - [anon_sym_e_GT_GT] = ACTIONS(763), - [anon_sym_o_GT_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(137)] = { [sym_comment] = STATE(137), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [aux_sym__immediate_decimal_token5] = ACTIONS(984), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), - [anon_sym_err_GT] = ACTIONS(763), - [anon_sym_out_GT] = ACTIONS(763), - [anon_sym_e_GT] = ACTIONS(763), - [anon_sym_o_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT] = ACTIONS(763), - [anon_sym_err_GT_GT] = ACTIONS(763), - [anon_sym_out_GT_GT] = ACTIONS(763), - [anon_sym_e_GT_GT] = ACTIONS(763), - [anon_sym_o_GT_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(771), + [anon_sym_out_GT_GT] = ACTIONS(771), + [anon_sym_e_GT_GT] = ACTIONS(771), + [anon_sym_o_GT_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, [STATE(138)] = { [sym_comment] = STATE(138), - [anon_sym_in] = ACTIONS(858), - [anon_sym_STAR_STAR] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_mod] = ACTIONS(968), - [anon_sym_SLASH_SLASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_bit_DASHshl] = ACTIONS(968), - [anon_sym_bit_DASHshr] = ACTIONS(968), - [anon_sym_EQ_TILDE] = ACTIONS(968), - [anon_sym_BANG_TILDE] = ACTIONS(968), - [anon_sym_like] = ACTIONS(968), - [anon_sym_not_DASHlike] = ACTIONS(968), - [anon_sym_bit_DASHand] = ACTIONS(968), - [anon_sym_bit_DASHxor] = ACTIONS(968), - [anon_sym_bit_DASHor] = ACTIONS(968), - [anon_sym_and] = ACTIONS(968), - [anon_sym_xor] = ACTIONS(968), - [anon_sym_or] = ACTIONS(968), - [anon_sym_in2] = ACTIONS(968), - [anon_sym_not_DASHin] = ACTIONS(968), - [anon_sym_has] = ACTIONS(968), - [anon_sym_not_DASHhas] = ACTIONS(968), - [anon_sym_starts_DASHwith] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(968), - [anon_sym_ends_DASHwith] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(968), - [anon_sym_EQ_EQ] = ACTIONS(968), - [anon_sym_BANG_EQ] = ACTIONS(968), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_EQ] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(968), - [aux_sym_cmd_identifier_token6] = ACTIONS(972), - [sym__newline] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_err_GT_PIPE] = ACTIONS(858), - [anon_sym_out_GT_PIPE] = ACTIONS(858), - [anon_sym_e_GT_PIPE] = ACTIONS(858), - [anon_sym_o_GT_PIPE] = ACTIONS(858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), - [anon_sym_GT2] = ACTIONS(858), - [anon_sym_DASH2] = ACTIONS(858), - [anon_sym_STAR2] = ACTIONS(858), - [anon_sym_and2] = ACTIONS(858), - [anon_sym_xor2] = ACTIONS(858), - [anon_sym_or2] = ACTIONS(858), - [anon_sym_not_DASHin2] = ACTIONS(858), - [anon_sym_has2] = ACTIONS(858), - [anon_sym_not_DASHhas2] = ACTIONS(858), - [anon_sym_starts_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), - [anon_sym_ends_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), - [anon_sym_EQ_EQ2] = ACTIONS(858), - [anon_sym_BANG_EQ2] = ACTIONS(858), - [anon_sym_LT2] = ACTIONS(858), - [anon_sym_LT_EQ2] = ACTIONS(858), - [anon_sym_GT_EQ2] = ACTIONS(858), - [anon_sym_EQ_TILDE2] = ACTIONS(858), - [anon_sym_BANG_TILDE2] = ACTIONS(858), - [anon_sym_like2] = ACTIONS(858), - [anon_sym_not_DASHlike2] = ACTIONS(858), - [anon_sym_STAR_STAR2] = ACTIONS(858), - [anon_sym_PLUS_PLUS2] = ACTIONS(858), - [anon_sym_SLASH2] = ACTIONS(858), - [anon_sym_mod2] = ACTIONS(858), - [anon_sym_SLASH_SLASH2] = ACTIONS(858), - [anon_sym_PLUS2] = ACTIONS(858), - [anon_sym_bit_DASHshl2] = ACTIONS(858), - [anon_sym_bit_DASHshr2] = ACTIONS(858), - [anon_sym_bit_DASHand2] = ACTIONS(858), - [anon_sym_bit_DASHxor2] = ACTIONS(858), - [anon_sym_bit_DASHor2] = ACTIONS(858), - [anon_sym_DOT_DOT2] = ACTIONS(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(986), - [sym_duration_unit] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(858), - [anon_sym_out_GT] = ACTIONS(858), - [anon_sym_e_GT] = ACTIONS(858), - [anon_sym_o_GT] = ACTIONS(858), - [anon_sym_err_PLUSout_GT] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT] = ACTIONS(858), - [anon_sym_o_PLUSe_GT] = ACTIONS(858), - [anon_sym_e_PLUSo_GT] = ACTIONS(858), - [anon_sym_err_GT_GT] = ACTIONS(858), - [anon_sym_out_GT_GT] = ACTIONS(858), - [anon_sym_e_GT_GT] = ACTIONS(858), - [anon_sym_o_GT_GT] = ACTIONS(858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(858), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(988), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(771), + [anon_sym_out_GT_GT] = ACTIONS(771), + [anon_sym_e_GT_GT] = ACTIONS(771), + [anon_sym_o_GT_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, [STATE(139)] = { [sym_comment] = STATE(139), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_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(140)] = { - [sym_comment] = STATE(140), + [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), @@ -55668,465 +55974,465 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(141)] = { [sym_comment] = STATE(141), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), - [anon_sym_err_GT] = ACTIONS(763), - [anon_sym_out_GT] = ACTIONS(763), - [anon_sym_e_GT] = ACTIONS(763), - [anon_sym_o_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT] = ACTIONS(763), - [anon_sym_err_GT_GT] = ACTIONS(763), - [anon_sym_out_GT_GT] = ACTIONS(763), - [anon_sym_e_GT_GT] = ACTIONS(763), - [anon_sym_o_GT_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(763), + [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(789), - [anon_sym_STAR_STAR] = ACTIONS(791), - [anon_sym_PLUS_PLUS] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_mod] = ACTIONS(791), - [anon_sym_SLASH_SLASH] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_bit_DASHshl] = ACTIONS(791), - [anon_sym_bit_DASHshr] = ACTIONS(791), - [anon_sym_EQ_TILDE] = ACTIONS(791), - [anon_sym_BANG_TILDE] = ACTIONS(791), - [anon_sym_like] = ACTIONS(791), - [anon_sym_not_DASHlike] = ACTIONS(791), - [anon_sym_bit_DASHand] = ACTIONS(791), - [anon_sym_bit_DASHxor] = ACTIONS(791), - [anon_sym_bit_DASHor] = ACTIONS(791), - [anon_sym_and] = ACTIONS(791), - [anon_sym_xor] = ACTIONS(791), - [anon_sym_or] = ACTIONS(791), - [anon_sym_in2] = ACTIONS(791), - [anon_sym_not_DASHin] = ACTIONS(791), - [anon_sym_has] = ACTIONS(791), - [anon_sym_not_DASHhas] = ACTIONS(791), - [anon_sym_starts_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), - [anon_sym_ends_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), - [anon_sym_EQ_EQ] = ACTIONS(791), - [anon_sym_BANG_EQ] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(791), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_GT_EQ] = ACTIONS(791), - [aux_sym_cmd_identifier_token6] = ACTIONS(789), - [sym__newline] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(789), - [anon_sym_err_GT_PIPE] = ACTIONS(789), - [anon_sym_out_GT_PIPE] = ACTIONS(789), - [anon_sym_e_GT_PIPE] = ACTIONS(789), - [anon_sym_o_GT_PIPE] = ACTIONS(789), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), - [anon_sym_GT2] = ACTIONS(789), - [anon_sym_DASH2] = ACTIONS(789), - [anon_sym_STAR2] = ACTIONS(789), - [anon_sym_and2] = ACTIONS(789), - [anon_sym_xor2] = ACTIONS(789), - [anon_sym_or2] = ACTIONS(789), - [anon_sym_not_DASHin2] = ACTIONS(789), - [anon_sym_has2] = ACTIONS(789), - [anon_sym_not_DASHhas2] = ACTIONS(789), - [anon_sym_starts_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), - [anon_sym_ends_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), - [anon_sym_EQ_EQ2] = ACTIONS(789), - [anon_sym_BANG_EQ2] = ACTIONS(789), - [anon_sym_LT2] = ACTIONS(789), - [anon_sym_LT_EQ2] = ACTIONS(789), - [anon_sym_GT_EQ2] = ACTIONS(789), - [anon_sym_EQ_TILDE2] = ACTIONS(789), - [anon_sym_BANG_TILDE2] = ACTIONS(789), - [anon_sym_like2] = ACTIONS(789), - [anon_sym_not_DASHlike2] = ACTIONS(789), - [anon_sym_STAR_STAR2] = ACTIONS(789), - [anon_sym_PLUS_PLUS2] = ACTIONS(789), - [anon_sym_SLASH2] = ACTIONS(789), - [anon_sym_mod2] = ACTIONS(789), - [anon_sym_SLASH_SLASH2] = ACTIONS(789), - [anon_sym_PLUS2] = ACTIONS(789), - [anon_sym_bit_DASHshl2] = ACTIONS(789), - [anon_sym_bit_DASHshr2] = ACTIONS(789), - [anon_sym_bit_DASHand2] = ACTIONS(789), - [anon_sym_bit_DASHxor2] = ACTIONS(789), - [anon_sym_bit_DASHor2] = ACTIONS(789), - [anon_sym_DOT_DOT2] = ACTIONS(789), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), - [anon_sym_DOT_DOT_LT2] = ACTIONS(791), - [sym_filesize_unit] = ACTIONS(789), - [sym_duration_unit] = ACTIONS(791), - [anon_sym_err_GT] = ACTIONS(789), - [anon_sym_out_GT] = ACTIONS(789), - [anon_sym_e_GT] = ACTIONS(789), - [anon_sym_o_GT] = ACTIONS(789), - [anon_sym_err_PLUSout_GT] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT] = ACTIONS(789), - [anon_sym_o_PLUSe_GT] = ACTIONS(789), - [anon_sym_e_PLUSo_GT] = ACTIONS(789), - [anon_sym_err_GT_GT] = ACTIONS(789), - [anon_sym_out_GT_GT] = ACTIONS(789), - [anon_sym_e_GT_GT] = ACTIONS(789), - [anon_sym_o_GT_GT] = ACTIONS(789), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(771), + [anon_sym_out_GT_GT] = ACTIONS(771), + [anon_sym_e_GT_GT] = ACTIONS(771), + [anon_sym_o_GT_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, [STATE(143)] = { [sym_comment] = STATE(143), - [anon_sym_in] = ACTIONS(858), - [anon_sym_STAR_STAR] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_mod] = ACTIONS(968), - [anon_sym_SLASH_SLASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_bit_DASHshl] = ACTIONS(968), - [anon_sym_bit_DASHshr] = ACTIONS(968), - [anon_sym_EQ_TILDE] = ACTIONS(968), - [anon_sym_BANG_TILDE] = ACTIONS(968), - [anon_sym_like] = ACTIONS(968), - [anon_sym_not_DASHlike] = ACTIONS(968), - [anon_sym_bit_DASHand] = ACTIONS(968), - [anon_sym_bit_DASHxor] = ACTIONS(968), - [anon_sym_bit_DASHor] = ACTIONS(968), - [anon_sym_and] = ACTIONS(968), - [anon_sym_xor] = ACTIONS(968), - [anon_sym_or] = ACTIONS(968), - [anon_sym_in2] = ACTIONS(968), - [anon_sym_not_DASHin] = ACTIONS(968), - [anon_sym_has] = ACTIONS(968), - [anon_sym_not_DASHhas] = ACTIONS(968), - [anon_sym_starts_DASHwith] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(968), - [anon_sym_ends_DASHwith] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(968), - [anon_sym_EQ_EQ] = ACTIONS(968), - [anon_sym_BANG_EQ] = ACTIONS(968), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_EQ] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(968), - [aux_sym_cmd_identifier_token6] = ACTIONS(972), - [sym__newline] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_err_GT_PIPE] = ACTIONS(858), - [anon_sym_out_GT_PIPE] = ACTIONS(858), - [anon_sym_e_GT_PIPE] = ACTIONS(858), - [anon_sym_o_GT_PIPE] = ACTIONS(858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), - [anon_sym_GT2] = ACTIONS(858), - [anon_sym_DASH2] = ACTIONS(858), - [anon_sym_STAR2] = ACTIONS(858), - [anon_sym_and2] = ACTIONS(858), - [anon_sym_xor2] = ACTIONS(858), - [anon_sym_or2] = ACTIONS(858), - [anon_sym_not_DASHin2] = ACTIONS(858), - [anon_sym_has2] = ACTIONS(858), - [anon_sym_not_DASHhas2] = ACTIONS(858), - [anon_sym_starts_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), - [anon_sym_ends_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), - [anon_sym_EQ_EQ2] = ACTIONS(858), - [anon_sym_BANG_EQ2] = ACTIONS(858), - [anon_sym_LT2] = ACTIONS(858), - [anon_sym_LT_EQ2] = ACTIONS(858), - [anon_sym_GT_EQ2] = ACTIONS(858), - [anon_sym_EQ_TILDE2] = ACTIONS(858), - [anon_sym_BANG_TILDE2] = ACTIONS(858), - [anon_sym_like2] = ACTIONS(858), - [anon_sym_not_DASHlike2] = ACTIONS(858), - [anon_sym_STAR_STAR2] = ACTIONS(858), - [anon_sym_PLUS_PLUS2] = ACTIONS(858), - [anon_sym_SLASH2] = ACTIONS(858), - [anon_sym_mod2] = ACTIONS(858), - [anon_sym_SLASH_SLASH2] = ACTIONS(858), - [anon_sym_PLUS2] = ACTIONS(858), - [anon_sym_bit_DASHshl2] = ACTIONS(858), - [anon_sym_bit_DASHshr2] = ACTIONS(858), - [anon_sym_bit_DASHand2] = ACTIONS(858), - [anon_sym_bit_DASHxor2] = ACTIONS(858), - [anon_sym_bit_DASHor2] = ACTIONS(858), - [anon_sym_DOT_DOT2] = ACTIONS(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(990), - [sym_duration_unit] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(858), - [anon_sym_out_GT] = ACTIONS(858), - [anon_sym_e_GT] = ACTIONS(858), - [anon_sym_o_GT] = ACTIONS(858), - [anon_sym_err_PLUSout_GT] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT] = ACTIONS(858), - [anon_sym_o_PLUSe_GT] = ACTIONS(858), - [anon_sym_e_PLUSo_GT] = ACTIONS(858), - [anon_sym_err_GT_GT] = ACTIONS(858), - [anon_sym_out_GT_GT] = ACTIONS(858), - [anon_sym_e_GT_GT] = ACTIONS(858), - [anon_sym_o_GT_GT] = ACTIONS(858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(858), + [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(4418), - [sym_cmd_identifier] = STATE(2876), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [sym_pipeline_parenthesized] = STATE(4751), + [sym_cmd_identifier] = STATE(3009), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), [sym_comment] = STATE(145), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [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(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -56152,7 +56458,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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -56181,53 +56487,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(146)] = { - [sym_pipeline_parenthesized] = STATE(4423), - [sym_cmd_identifier] = STATE(2876), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [sym_pipeline] = STATE(4608), + [sym_cmd_identifier] = STATE(2947), + [sym__ctrl_expression] = STATE(3379), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3501), + [sym_pipe_element] = STATE(3200), + [sym_where_command] = STATE(3379), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(924), + [sym_val_range] = STATE(1286), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1295), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(123), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3379), [sym_comment] = STATE(146), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(291), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(147)] = { + [sym_pipeline_parenthesized] = STATE(4750), + [sym_cmd_identifier] = STATE(3009), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(147), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -56239,7 +56646,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), @@ -56253,7 +56660,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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -56261,10 +56668,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), @@ -56281,155 +56688,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(147)] = { - [sym_comment] = STATE(147), - [anon_sym_in] = ACTIONS(1008), - [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(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_and2] = ACTIONS(1008), - [anon_sym_xor2] = ACTIONS(1008), - [anon_sym_or2] = ACTIONS(1008), - [anon_sym_not_DASHin2] = ACTIONS(1008), - [anon_sym_has2] = ACTIONS(1008), - [anon_sym_not_DASHhas2] = ACTIONS(1008), - [anon_sym_starts_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), - [anon_sym_ends_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), - [anon_sym_EQ_EQ2] = ACTIONS(1008), - [anon_sym_BANG_EQ2] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1008), - [anon_sym_GT_EQ2] = ACTIONS(1008), - [anon_sym_EQ_TILDE2] = ACTIONS(1008), - [anon_sym_BANG_TILDE2] = ACTIONS(1008), - [anon_sym_like2] = ACTIONS(1008), - [anon_sym_not_DASHlike2] = ACTIONS(1008), - [anon_sym_STAR_STAR2] = ACTIONS(1008), - [anon_sym_PLUS_PLUS2] = ACTIONS(1008), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1008), - [anon_sym_SLASH_SLASH2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1008), - [anon_sym_bit_DASHshr2] = ACTIONS(1008), - [anon_sym_bit_DASHand2] = ACTIONS(1008), - [anon_sym_bit_DASHxor2] = ACTIONS(1008), - [anon_sym_bit_DASHor2] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(148)] = { - [sym_pipeline_parenthesized] = STATE(4609), - [sym_cmd_identifier] = STATE(2876), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(138), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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(190), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [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(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -56441,7 +56747,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(1016), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), @@ -56455,7 +56761,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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -56463,10 +56769,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(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1022), + [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), @@ -56484,53 +56790,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(149)] = { - [sym_pipeline_parenthesized] = STATE(4606), - [sym_cmd_identifier] = STATE(2876), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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_parenthesized_repeat1] = STATE(189), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [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(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -56542,9 +56848,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(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), @@ -56556,18 +56862,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(1006), + [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(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), @@ -56580,58 +56886,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(150)] = { - [sym_pipeline_parenthesized] = STATE(4609), - [sym_cmd_identifier] = STATE(2876), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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_parenthesized_repeat1] = STATE(189), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [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(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -56643,9 +56949,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(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), @@ -56657,18 +56963,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(1006), + [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(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), @@ -56681,260 +56987,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(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), - [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), + [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(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(1018), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(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(152)] = { - [sym_pipeline] = STATE(4661), - [sym_cmd_identifier] = STATE(2923), - [sym__ctrl_expression] = STATE(3263), - [sym_ctrl_if] = STATE(3264), - [sym_ctrl_match] = STATE(3264), - [sym_ctrl_try] = STATE(3264), - [sym__stmt_let_shortcut] = STATE(3269), - [sym_pipe_element] = STATE(2993), - [sym_where_command] = STATE(3263), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1321), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1321), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(896), - [sym_val_range] = STATE(1321), - [sym__value] = STATE(1321), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1318), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3263), + [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(280), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1024), - [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(1026), - [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(153)] = { - [sym_pipeline] = STATE(4229), - [sym_cmd_identifier] = STATE(2748), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(138), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(153), - [aux_sym_pipeline_repeat1] = STATE(183), - [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(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -56946,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(1028), + [anon_sym_if] = ACTIONS(1018), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -56960,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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -56968,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(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1022), + [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), @@ -56988,54 +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(154)] = { - [sym_pipeline] = STATE(4340), - [sym_cmd_identifier] = STATE(2748), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(138), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(154), - [aux_sym_pipeline_repeat1] = STATE(183), - [aux_sym_pipe_element_repeat2] = STATE(292), + [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(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57047,7 +57252,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(1028), + [anon_sym_if] = ACTIONS(1018), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -57061,7 +57266,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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57069,10 +57274,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(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1022), + [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), @@ -57089,54 +57294,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(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(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(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(155)] = { - [sym_pipeline] = STATE(4229), - [sym_cmd_identifier] = STATE(2748), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57148,9 +57454,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(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), @@ -57162,18 +57468,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(1006), + [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(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), @@ -57186,260 +57492,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(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), - [anon_sym_in] = ACTIONS(1008), - [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(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_RPAREN] = ACTIONS(1008), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_and2] = ACTIONS(1008), - [anon_sym_xor2] = ACTIONS(1008), - [anon_sym_or2] = ACTIONS(1008), - [anon_sym_not_DASHin2] = ACTIONS(1008), - [anon_sym_has2] = ACTIONS(1008), - [anon_sym_not_DASHhas2] = ACTIONS(1008), - [anon_sym_starts_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), - [anon_sym_ends_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), - [anon_sym_EQ_EQ2] = ACTIONS(1008), - [anon_sym_BANG_EQ2] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1008), - [anon_sym_GT_EQ2] = ACTIONS(1008), - [anon_sym_EQ_TILDE2] = ACTIONS(1008), - [anon_sym_BANG_TILDE2] = ACTIONS(1008), - [anon_sym_like2] = ACTIONS(1008), - [anon_sym_not_DASHlike2] = ACTIONS(1008), - [anon_sym_STAR_STAR2] = ACTIONS(1008), - [anon_sym_PLUS_PLUS2] = ACTIONS(1008), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1008), - [anon_sym_SLASH_SLASH2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1008), - [anon_sym_bit_DASHshr2] = ACTIONS(1008), - [anon_sym_bit_DASHand2] = ACTIONS(1008), - [anon_sym_bit_DASHxor2] = ACTIONS(1008), - [anon_sym_bit_DASHor2] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(157)] = { - [sym_comment] = STATE(157), - [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(158)] = { - [sym_pipeline] = STATE(4242), - [sym_cmd_identifier] = STATE(2748), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(138), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(158), - [aux_sym_pipeline_repeat1] = STATE(183), - [aux_sym_pipe_element_repeat2] = STATE(292), + [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(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57451,7 +57555,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(1028), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -57465,7 +57569,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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57473,10 +57577,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(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1022), + [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), @@ -57493,54 +57597,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] = STATE(4340), - [sym_cmd_identifier] = STATE(2748), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(159), + [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(281), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57566,7 +57670,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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57594,54 +57698,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(160)] = { - [sym_pipeline] = STATE(4538), - [sym_cmd_identifier] = STATE(2923), - [sym__ctrl_expression] = STATE(3263), - [sym_ctrl_if] = STATE(3264), - [sym_ctrl_match] = STATE(3264), - [sym_ctrl_try] = STATE(3264), - [sym__stmt_let_shortcut] = STATE(3269), - [sym_pipe_element] = STATE(2993), - [sym_where_command] = STATE(3263), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1321), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1321), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(896), - [sym_val_range] = STATE(1321), - [sym__value] = STATE(1321), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1318), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3263), - [sym_comment] = STATE(160), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(280), + [STATE(158)] = { + [sym_comment] = STATE(158), + [anon_sym_in] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1020), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_has2] = ACTIONS(1020), + [anon_sym_not_DASHhas2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1020), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_like2] = ACTIONS(1020), + [anon_sym_not_DASHlike2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1020), + [anon_sym_SLASH2] = ACTIONS(1020), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1020), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1020), + [anon_sym_out_GT] = ACTIONS(1020), + [anon_sym_e_GT] = ACTIONS(1020), + [anon_sym_o_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT] = ACTIONS(1020), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(159)] = { + [sym_pipeline] = STATE(4539), + [sym_cmd_identifier] = STATE(2947), + [sym__ctrl_expression] = STATE(3379), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3501), + [sym_pipe_element] = STATE(3200), + [sym_where_command] = STATE(3379), + [sym__expression] = STATE(2294), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(924), + [sym_val_range] = STATE(1286), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1295), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(123), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3379), + [sym_comment] = STATE(159), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(291), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1006), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -57667,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(1026), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -57695,54 +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(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_pipeline] = STATE(4414), - [sym_cmd_identifier] = STATE(2748), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), [sym_comment] = STATE(161), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57754,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(269), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -57768,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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57776,10 +58183,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), @@ -57796,54 +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(162)] = { - [sym_pipeline] = STATE(4254), - [sym_cmd_identifier] = STATE(2748), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(162), + [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(281), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -57869,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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57897,155 +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(163)] = { - [sym_comment] = STATE(163), - [ts_builtin_sym_end] = ACTIONS(1030), - [anon_sym_in] = ACTIONS(1008), - [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(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_and2] = ACTIONS(1008), - [anon_sym_xor2] = ACTIONS(1008), - [anon_sym_or2] = ACTIONS(1008), - [anon_sym_not_DASHin2] = ACTIONS(1008), - [anon_sym_has2] = ACTIONS(1008), - [anon_sym_not_DASHhas2] = ACTIONS(1008), - [anon_sym_starts_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), - [anon_sym_ends_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), - [anon_sym_EQ_EQ2] = ACTIONS(1008), - [anon_sym_BANG_EQ2] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1008), - [anon_sym_GT_EQ2] = ACTIONS(1008), - [anon_sym_EQ_TILDE2] = ACTIONS(1008), - [anon_sym_BANG_TILDE2] = ACTIONS(1008), - [anon_sym_like2] = ACTIONS(1008), - [anon_sym_not_DASHlike2] = ACTIONS(1008), - [anon_sym_STAR_STAR2] = ACTIONS(1008), - [anon_sym_PLUS_PLUS2] = ACTIONS(1008), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1008), - [anon_sym_SLASH_SLASH2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1008), - [anon_sym_bit_DASHshr2] = ACTIONS(1008), - [anon_sym_bit_DASHand2] = ACTIONS(1008), - [anon_sym_bit_DASHxor2] = ACTIONS(1008), - [anon_sym_bit_DASHor2] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(164)] = { - [sym_pipeline_parenthesized] = STATE(4540), - [sym_cmd_identifier] = STATE(2876), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(138), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [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(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58057,9 +58363,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(1016), + [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), @@ -58071,18 +58377,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(1006), + [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(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1022), + [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), @@ -58095,361 +58401,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(165)] = { [sym_comment] = STATE(165), - [anon_sym_in] = ACTIONS(1008), - [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(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_and2] = ACTIONS(1008), - [anon_sym_xor2] = ACTIONS(1008), - [anon_sym_or2] = ACTIONS(1008), - [anon_sym_not_DASHin2] = ACTIONS(1008), - [anon_sym_has2] = ACTIONS(1008), - [anon_sym_not_DASHhas2] = ACTIONS(1008), - [anon_sym_starts_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), - [anon_sym_ends_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), - [anon_sym_EQ_EQ2] = ACTIONS(1008), - [anon_sym_BANG_EQ2] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1008), - [anon_sym_GT_EQ2] = ACTIONS(1008), - [anon_sym_EQ_TILDE2] = ACTIONS(1008), - [anon_sym_BANG_TILDE2] = ACTIONS(1008), - [anon_sym_like2] = ACTIONS(1008), - [anon_sym_not_DASHlike2] = ACTIONS(1008), - [anon_sym_STAR_STAR2] = ACTIONS(1008), - [anon_sym_PLUS_PLUS2] = ACTIONS(1008), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1008), - [anon_sym_SLASH_SLASH2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1008), - [anon_sym_bit_DASHshr2] = ACTIONS(1008), - [anon_sym_bit_DASHand2] = ACTIONS(1008), - [anon_sym_bit_DASHxor2] = ACTIONS(1008), - [anon_sym_bit_DASHor2] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [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), - [anon_sym_in] = ACTIONS(996), - [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(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(167)] = { - [sym_pipeline] = STATE(4662), - [sym_cmd_identifier] = STATE(2923), - [sym__ctrl_expression] = STATE(3263), - [sym_ctrl_if] = STATE(3264), - [sym_ctrl_match] = STATE(3264), - [sym_ctrl_try] = STATE(3264), - [sym__stmt_let_shortcut] = STATE(3269), - [sym_pipe_element] = STATE(2993), - [sym_where_command] = STATE(3263), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1321), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1321), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(896), - [sym_val_range] = STATE(1321), - [sym__value] = STATE(1321), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1318), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3263), - [sym_comment] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(280), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1024), - [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(1026), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(168)] = { - [sym_pipeline] = STATE(4414), - [sym_cmd_identifier] = STATE(2748), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(138), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(168), - [aux_sym_pipeline_repeat1] = STATE(183), + [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(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58461,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(1028), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58475,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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58483,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(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1022), + [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), @@ -58503,54 +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(169)] = { - [sym_pipeline] = STATE(4242), - [sym_cmd_identifier] = STATE(2748), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(169), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(284), + [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(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58562,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), @@ -58576,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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58604,54 +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(170)] = { - [sym_pipeline] = STATE(4254), - [sym_cmd_identifier] = STATE(2748), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(138), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(170), - [aux_sym_pipeline_repeat1] = STATE(183), + [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(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58663,7 +58767,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(1028), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58677,7 +58781,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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58685,10 +58789,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(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1022), + [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), @@ -58705,54 +58809,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] = STATE(4414), - [sym_cmd_identifier] = STATE(2748), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(171), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(284), + [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(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58764,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(457), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58778,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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58806,54 +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(172)] = { - [sym_pipeline_parenthesized] = STATE(4418), - [sym_cmd_identifier] = STATE(2876), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(138), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), - [sym_comment] = STATE(172), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [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(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -58865,9 +58969,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(1016), + [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), @@ -58879,18 +58983,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(1006), + [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(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1022), + [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), @@ -58903,58 +59007,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(173)] = { - [sym_pipeline] = STATE(4607), - [sym_cmd_identifier] = STATE(2923), - [sym__ctrl_expression] = STATE(3263), - [sym_ctrl_if] = STATE(3264), - [sym_ctrl_match] = STATE(3264), - [sym_ctrl_try] = STATE(3264), - [sym__stmt_let_shortcut] = STATE(3269), - [sym_pipe_element] = STATE(2993), - [sym_where_command] = STATE(3263), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1321), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1321), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(896), - [sym_val_range] = STATE(1321), - [sym__value] = STATE(1321), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1318), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3263), - [sym_comment] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(280), + [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(1024), + [anon_sym_let] = ACTIONS(1006), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -58980,7 +59185,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(1026), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -59008,256 +59213,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(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_pipeline_parenthesized] = STATE(4423), - [sym_cmd_identifier] = STATE(2876), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(138), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), [sym_comment] = STATE(174), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(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(1006), - [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(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1022), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(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] = STATE(4229), - [sym_cmd_identifier] = STATE(2748), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(284), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [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(176)] = { - [sym_pipeline_parenthesized] = STATE(4540), - [sym_cmd_identifier] = STATE(2876), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), - [sym_comment] = STATE(176), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [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(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59269,7 +59474,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), @@ -59283,7 +59488,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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59291,10 +59496,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), @@ -59311,54 +59516,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(177)] = { - [sym_pipeline] = STATE(4623), - [sym_cmd_identifier] = STATE(2923), - [sym__ctrl_expression] = STATE(3263), - [sym_ctrl_if] = STATE(3264), - [sym_ctrl_match] = STATE(3264), - [sym_ctrl_try] = STATE(3264), - [sym__stmt_let_shortcut] = STATE(3269), - [sym_pipe_element] = STATE(2993), - [sym_where_command] = STATE(3263), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1321), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1321), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(896), - [sym_val_range] = STATE(1321), - [sym__value] = STATE(1321), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1318), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3263), - [sym_comment] = STATE(177), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(280), + [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(1024), + [anon_sym_let] = ACTIONS(1006), [anon_sym_mut] = ACTIONS(39), [anon_sym_const] = ACTIONS(39), [aux_sym_cmd_identifier_token1] = ACTIONS(19), @@ -59384,7 +59589,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(1026), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -59412,54 +59617,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(178)] = { - [sym_pipeline] = STATE(4340), - [sym_cmd_identifier] = STATE(2748), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(178), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(284), + [STATE(177)] = { + [sym_pipeline_parenthesized] = STATE(4733), + [sym_cmd_identifier] = STATE(3009), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(177), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59471,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(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), @@ -59485,11 +59690,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(1006), + [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), @@ -59509,58 +59714,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(178)] = { + [sym_pipeline_parenthesized] = STATE(4732), + [sym_cmd_identifier] = STATE(3009), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3116), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(178), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(333), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1012), + [aux_sym__val_number_decimal_token2] = ACTIONS(1014), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(179)] = { - [sym_pipeline] = STATE(4254), - [sym_cmd_identifier] = STATE(2748), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(284), + [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(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59572,9 +59878,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), @@ -59586,11 +59892,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(1006), + [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), @@ -59610,58 +59916,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(180)] = { - [sym_pipeline_parenthesized] = STATE(4606), - [sym_cmd_identifier] = STATE(2876), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3022), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(138), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), + [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(190), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), + [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(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59673,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(1016), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), @@ -59687,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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59695,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(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1022), + [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), @@ -59716,53 +60022,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(181)] = { - [sym_pipeline] = STATE(4242), - [sym_cmd_identifier] = STATE(2748), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2860), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(281), + [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(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59774,7 +60080,107 @@ 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(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(182)] = { + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2919), + [sym_where_command] = STATE(3348), + [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_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(278), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -59788,7 +60194,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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59796,10 +60202,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), @@ -59816,50 +60222,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(182)] = { - [sym_cmd_identifier] = STATE(2876), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3285), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(143), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), - [sym_comment] = STATE(182), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [STATE(183)] = { + [sym_cmd_identifier] = STATE(3009), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3505), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(183), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(1038), [anon_sym_alias] = ACTIONS(1041), [anon_sym_let] = ACTIONS(1044), @@ -59916,53 +60322,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1134), }, - [STATE(183)] = { - [sym_cmd_identifier] = STATE(2748), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2928), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(138), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(183), - [aux_sym_pipeline_repeat1] = STATE(187), + [STATE(184)] = { + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2919), + [sym_where_command] = STATE(3348), + [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(292), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -59974,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(1028), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -59988,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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59996,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(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1022), + [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), @@ -60016,53 +60422,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(184)] = { - [sym_cmd_identifier] = STATE(2748), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2928), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(184), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(281), + [STATE(185)] = { + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(2919), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), + [sym_comment] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(285), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -60074,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), @@ -60088,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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -60096,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), @@ -60116,250 +60522,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(185)] = { - [sym_cmd_identifier] = STATE(2923), - [sym__ctrl_expression] = STATE(3263), - [sym_ctrl_if] = STATE(3264), - [sym_ctrl_match] = STATE(3264), - [sym_ctrl_try] = STATE(3264), - [sym__stmt_let_shortcut] = STATE(3269), - [sym_pipe_element] = STATE(2984), - [sym_where_command] = STATE(3263), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1321), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1321), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(896), - [sym_val_range] = STATE(1321), - [sym__value] = STATE(1321), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1318), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3263), - [sym_comment] = STATE(185), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(280), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(1024), - [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(1026), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, [STATE(186)] = { + [sym_cmd_identifier] = STATE(2812), + [sym__ctrl_expression] = STATE(3348), + [sym_ctrl_if] = STATE(3352), + [sym_ctrl_match] = STATE(3352), + [sym_ctrl_try] = STATE(3352), + [sym__stmt_let_shortcut] = STATE(3358), + [sym_pipe_element] = STATE(3428), + [sym_where_command] = STATE(3348), + [sym__expression] = STATE(2288), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4786), + [sym_command] = STATE(3348), [sym_comment] = STATE(186), - [anon_sym_in] = ACTIONS(1008), - [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(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_and2] = ACTIONS(1008), - [anon_sym_xor2] = ACTIONS(1008), - [anon_sym_or2] = ACTIONS(1008), - [anon_sym_not_DASHin2] = ACTIONS(1008), - [anon_sym_has2] = ACTIONS(1008), - [anon_sym_not_DASHhas2] = ACTIONS(1008), - [anon_sym_starts_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), - [anon_sym_ends_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), - [anon_sym_EQ_EQ2] = ACTIONS(1008), - [anon_sym_BANG_EQ2] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1008), - [anon_sym_GT_EQ2] = ACTIONS(1008), - [anon_sym_EQ_TILDE2] = ACTIONS(1008), - [anon_sym_BANG_TILDE2] = ACTIONS(1008), - [anon_sym_like2] = ACTIONS(1008), - [anon_sym_not_DASHlike2] = ACTIONS(1008), - [anon_sym_STAR_STAR2] = ACTIONS(1008), - [anon_sym_PLUS_PLUS2] = ACTIONS(1008), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1008), - [anon_sym_SLASH_SLASH2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1008), - [anon_sym_bit_DASHshr2] = ACTIONS(1008), - [anon_sym_bit_DASHand2] = ACTIONS(1008), - [anon_sym_bit_DASHxor2] = ACTIONS(1008), - [anon_sym_bit_DASHor2] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(187)] = { - [sym_cmd_identifier] = STATE(2748), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(3302), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(143), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), - [sym_comment] = STATE(187), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(290), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(282), [anon_sym_export] = ACTIONS(1137), [anon_sym_alias] = ACTIONS(1140), [anon_sym_let] = ACTIONS(1143), @@ -60416,153 +60622,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1233), }, - [STATE(188)] = { - [sym_comment] = STATE(188), - [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), + [STATE(187)] = { + [sym_comment] = STATE(187), + [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(189)] = { - [sym_cmd_identifier] = STATE(2876), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3095), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), - [sym_comment] = STATE(189), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(282), + [STATE(188)] = { + [sym_cmd_identifier] = STATE(3009), + [sym__ctrl_expression_parenthesized] = STATE(3436), + [sym_ctrl_if_parenthesized] = STATE(3367), + [sym_ctrl_match] = STATE(3367), + [sym_ctrl_try_parenthesized] = STATE(3367), + [sym__stmt_let_shortcut] = STATE(3368), + [sym_pipe_element_parenthesized] = STATE(3075), + [sym_where_command_parenthesized] = STATE(3436), + [sym__expression_parenthesized] = STATE(2290), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(124), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3373), + [sym_comment] = STATE(188), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(183), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -60588,7 +60794,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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -60616,153 +60822,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(189)] = { + [sym_cmd_identifier] = STATE(2947), + [sym__ctrl_expression] = STATE(3379), + [sym_ctrl_if] = STATE(3441), + [sym_ctrl_match] = STATE(3441), + [sym_ctrl_try] = STATE(3441), + [sym__stmt_let_shortcut] = STATE(3501), + [sym_pipe_element] = STATE(3062), + [sym_where_command] = STATE(3379), + [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(189), + [aux_sym_pipeline_repeat1] = STATE(186), + [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(190)] = { - [sym_cmd_identifier] = STATE(2876), - [sym__ctrl_expression_parenthesized] = STATE(3252), - [sym_ctrl_if_parenthesized] = STATE(3287), - [sym_ctrl_match] = STATE(3287), - [sym_ctrl_try_parenthesized] = STATE(3287), - [sym__stmt_let_shortcut] = STATE(3288), - [sym_pipe_element_parenthesized] = STATE(3095), - [sym_where_command_parenthesized] = STATE(3252), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(138), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3300), [sym_comment] = STATE(190), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(288), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(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(1006), - [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(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1022), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(191)] = { - [sym_cmd_identifier] = STATE(2748), - [sym__ctrl_expression] = STATE(3167), - [sym_ctrl_if] = STATE(3168), - [sym_ctrl_match] = STATE(3168), - [sym_ctrl_try] = STATE(3168), - [sym__stmt_let_shortcut] = STATE(3171), - [sym_pipe_element] = STATE(2928), - [sym_where_command] = STATE(3167), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3167), + [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_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(284), + [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(1004), + [anon_sym_let] = ACTIONS(1002), [anon_sym_mut] = ACTIONS(271), [anon_sym_const] = ACTIONS(271), [aux_sym_cmd_identifier_token1] = ACTIONS(251), @@ -60774,9 +61080,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(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), @@ -60788,18 +61094,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(1006), + [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(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), @@ -60812,246 +61118,246 @@ 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(192)] = { [sym_comment] = STATE(192), - [anon_sym_in] = ACTIONS(1008), - [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(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_and2] = ACTIONS(1008), - [anon_sym_xor2] = ACTIONS(1008), - [anon_sym_or2] = ACTIONS(1008), - [anon_sym_not_DASHin2] = ACTIONS(1008), - [anon_sym_has2] = ACTIONS(1008), - [anon_sym_not_DASHhas2] = ACTIONS(1008), - [anon_sym_starts_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), - [anon_sym_ends_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), - [anon_sym_EQ_EQ2] = ACTIONS(1008), - [anon_sym_BANG_EQ2] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1008), - [anon_sym_GT_EQ2] = ACTIONS(1008), - [anon_sym_EQ_TILDE2] = ACTIONS(1008), - [anon_sym_BANG_TILDE2] = ACTIONS(1008), - [anon_sym_like2] = ACTIONS(1008), - [anon_sym_not_DASHlike2] = ACTIONS(1008), - [anon_sym_STAR_STAR2] = ACTIONS(1008), - [anon_sym_PLUS_PLUS2] = ACTIONS(1008), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1008), - [anon_sym_SLASH_SLASH2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1008), - [anon_sym_bit_DASHshr2] = ACTIONS(1008), - [anon_sym_bit_DASHand2] = ACTIONS(1008), - [anon_sym_bit_DASHxor2] = ACTIONS(1008), - [anon_sym_bit_DASHor2] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [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_comment] = STATE(193), - [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_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(3775), - [sym__spread_parenthesized] = STATE(3096), - [sym_val_range] = STATE(3097), - [sym__val_range] = STATE(4622), - [sym__value] = STATE(3097), - [sym_val_nothing] = STATE(3058), - [sym_val_bool] = STATE(3946), - [sym__spread_variable] = STATE(3098), - [sym_val_variable] = STATE(3886), - [sym_val_cellpath] = STATE(3058), - [sym_val_number] = STATE(3058), - [sym__val_number_decimal] = STATE(3408), - [sym__val_number] = STATE(3061), - [sym_val_duration] = STATE(3058), - [sym_val_filesize] = STATE(3058), - [sym_val_binary] = STATE(3058), - [sym_val_string] = STATE(3058), - [sym__raw_str] = STATE(2455), - [sym__str_double_quotes] = STATE(2455), - [sym__str_single_quotes] = STATE(2455), - [sym__str_back_ticks] = STATE(2455), - [sym_val_interpolated] = STATE(3058), - [sym__inter_single_quotes] = STATE(3082), - [sym__inter_double_quotes] = STATE(3083), - [sym_val_list] = STATE(3058), - [sym__spread_list] = STATE(3096), - [sym_val_record] = STATE(3058), - [sym_val_table] = STATE(3058), - [sym_val_closure] = STATE(3058), - [sym__cmd_arg] = STATE(3099), - [sym_redirection] = STATE(3100), - [sym__flag] = STATE(3101), - [sym_short_flag] = STATE(3102), - [sym_long_flag] = STATE(3102), - [sym_unquoted] = STATE(2685), - [sym__unquoted_with_expr] = STATE(3104), - [sym__unquoted_anonymous_prefix] = STATE(4622), + [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(1236), [anon_sym_false] = ACTIONS(1236), @@ -61060,7 +61366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token4] = ACTIONS(1240), [aux_sym_cmd_identifier_token5] = ACTIONS(1240), [sym__newline] = ACTIONS(804), - [sym__space] = ACTIONS(874), + [sym__space] = ACTIONS(882), [anon_sym_SEMI] = ACTIONS(804), [anon_sym_LBRACK] = ACTIONS(806), [anon_sym_LPAREN] = ACTIONS(808), @@ -61111,41 +61417,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(856), }, [STATE(195)] = { - [sym_cmd_identifier] = STATE(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3261), - [sym_block] = STATE(3262), - [sym__expression_parenthesized] = STATE(3262), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3262), + [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), @@ -61161,7 +61467,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(271), [anon_sym_catch] = ACTIONS(271), @@ -61176,7 +61482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -61204,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(2863), - [aux_sym__repeat_newline] = STATE(202), - [sym_ctrl_if_parenthesized] = STATE(3372), - [sym_block] = STATE(3373), - [sym__expression_parenthesized] = STATE(3373), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3373), + [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), @@ -61269,17 +61575,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -61297,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3257), - [sym_block] = STATE(3258), - [sym__expression_parenthesized] = STATE(3258), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3258), + [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), @@ -61347,7 +61653,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(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -61362,17 +61668,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -61390,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(2863), - [aux_sym__repeat_newline] = STATE(204), - [sym_ctrl_if_parenthesized] = STATE(3257), - [sym_block] = STATE(3258), - [sym__expression_parenthesized] = STATE(3258), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3258), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(203), + [sym_ctrl_if_parenthesized] = STATE(3475), + [sym_block] = STATE(3484), + [sym__expression_parenthesized] = STATE(3484), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3484), [sym_comment] = STATE(198), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61440,7 +61746,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(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -61455,17 +61761,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -61483,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(2863), - [aux_sym__repeat_newline] = STATE(206), - [sym_ctrl_if_parenthesized] = STATE(3261), - [sym_block] = STATE(3262), - [sym__expression_parenthesized] = STATE(3262), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3262), + [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), @@ -61533,7 +61839,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(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -61548,17 +61854,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -61576,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3295), - [sym_block] = STATE(3306), - [sym__expression_parenthesized] = STATE(3306), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3306), + [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), @@ -61626,7 +61932,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(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -61641,17 +61947,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -61669,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(2863), - [aux_sym__repeat_newline] = STATE(208), - [sym_ctrl_if_parenthesized] = STATE(3295), - [sym_block] = STATE(3306), - [sym__expression_parenthesized] = STATE(3306), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3306), + [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), @@ -61719,7 +62025,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(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -61734,17 +62040,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -61762,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3381), - [sym_block] = STATE(3388), - [sym__expression_parenthesized] = STATE(3388), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3388), + [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), @@ -61812,7 +62118,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(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -61827,17 +62133,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -61855,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(2863), - [aux_sym__repeat_newline] = STATE(209), - [sym_ctrl_if_parenthesized] = STATE(3381), - [sym_block] = STATE(3388), - [sym__expression_parenthesized] = STATE(3388), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3388), + [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), @@ -61905,7 +62211,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(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -61920,17 +62226,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -61948,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3378), - [sym_block] = STATE(3278), - [sym__expression_parenthesized] = STATE(3278), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3278), + [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), @@ -61998,7 +62304,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(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62013,17 +62319,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -62041,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(2863), - [aux_sym__repeat_newline] = STATE(211), - [sym_ctrl_if_parenthesized] = STATE(3378), - [sym_block] = STATE(3278), - [sym__expression_parenthesized] = STATE(3278), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3278), + [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), @@ -62091,7 +62397,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(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62106,17 +62412,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -62134,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3318), - [sym_block] = STATE(3340), - [sym__expression_parenthesized] = STATE(3340), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3340), + [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), @@ -62184,7 +62490,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(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62199,17 +62505,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -62227,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(2863), - [aux_sym__repeat_newline] = STATE(212), - [sym_ctrl_if_parenthesized] = STATE(3318), - [sym_block] = STATE(3340), - [sym__expression_parenthesized] = STATE(3340), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3340), + [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), @@ -62277,7 +62583,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(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62292,17 +62598,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -62320,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3268), - [sym_block] = STATE(3275), - [sym__expression_parenthesized] = STATE(3275), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3275), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(214), + [sym_ctrl_if_parenthesized] = STATE(3489), + [sym_block] = STATE(3490), + [sym__expression_parenthesized] = STATE(3490), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3490), [sym_comment] = STATE(208), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62370,7 +62676,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(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62385,17 +62691,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -62413,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3279), - [sym_block] = STATE(3282), - [sym__expression_parenthesized] = STATE(3282), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3282), + [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), @@ -62463,7 +62769,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(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62478,17 +62784,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -62506,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(2863), - [aux_sym__repeat_newline] = STATE(213), - [sym_ctrl_if_parenthesized] = STATE(3279), - [sym_block] = STATE(3282), - [sym__expression_parenthesized] = STATE(3282), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3282), + [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), @@ -62556,7 +62862,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(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62571,17 +62877,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -62599,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3314), - [sym_block] = STATE(3254), - [sym__expression_parenthesized] = STATE(3254), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3254), + [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), @@ -62649,7 +62955,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(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62664,17 +62970,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -62692,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3259), - [sym_block] = STATE(3277), - [sym__expression_parenthesized] = STATE(3277), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3277), + [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), @@ -62742,7 +63048,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(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62757,17 +63063,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -62785,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3317), - [sym_block] = STATE(3319), - [sym__expression_parenthesized] = STATE(3319), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3319), + [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), @@ -62835,7 +63141,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(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62850,17 +63156,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -62878,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(2863), - [aux_sym__repeat_newline] = STATE(265), - [sym_ctrl_if_parenthesized] = STATE(3270), - [sym_block] = STATE(3272), - [sym__expression_parenthesized] = STATE(3272), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3272), + [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), @@ -62928,7 +63234,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(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62943,17 +63249,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -62971,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(2863), - [aux_sym__repeat_newline] = STATE(197), - [sym_ctrl_if_parenthesized] = STATE(3346), - [sym_block] = STATE(3349), - [sym__expression_parenthesized] = STATE(3349), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3349), + [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), @@ -63021,7 +63327,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(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63036,17 +63342,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -63064,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(2863), + [sym_cmd_identifier] = STATE(2932), [aux_sym__repeat_newline] = STATE(219), - [sym_ctrl_if_parenthesized] = STATE(3270), - [sym_block] = STATE(3272), - [sym__expression_parenthesized] = STATE(3272), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3272), + [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), @@ -63114,7 +63420,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(1272), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63129,17 +63435,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -63157,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(2863), - [aux_sym__repeat_newline] = STATE(222), - [sym_ctrl_if_parenthesized] = STATE(3346), - [sym_block] = STATE(3349), - [sym__expression_parenthesized] = STATE(3349), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3349), + [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), @@ -63207,7 +63513,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(1272), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63222,17 +63528,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -63250,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(2863), - [aux_sym__repeat_newline] = STATE(224), - [sym_ctrl_if_parenthesized] = STATE(3352), - [sym_block] = STATE(3371), - [sym__expression_parenthesized] = STATE(3371), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3371), + [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), @@ -63300,7 +63606,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(1272), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63315,17 +63621,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -63343,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3389), - [sym_block] = STATE(3265), - [sym__expression_parenthesized] = STATE(3265), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3265), + [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), @@ -63393,7 +63699,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(1272), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63408,17 +63714,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -63436,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(2863), - [aux_sym__repeat_newline] = STATE(226), - [sym_ctrl_if_parenthesized] = STATE(3389), - [sym_block] = STATE(3265), - [sym__expression_parenthesized] = STATE(3265), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3265), + [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), @@ -63486,7 +63792,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(1272), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63501,17 +63807,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -63529,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(2863), - [aux_sym__repeat_newline] = STATE(266), - [sym_ctrl_if_parenthesized] = STATE(3372), - [sym_block] = STATE(3373), - [sym__expression_parenthesized] = STATE(3373), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3373), + [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), @@ -63579,7 +63885,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(1272), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63594,17 +63900,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -63622,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3257), - [sym_block] = STATE(3258), - [sym__expression_parenthesized] = STATE(3258), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3258), + [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), @@ -63672,7 +63978,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(1272), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63687,17 +63993,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -63715,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(2863), - [aux_sym__repeat_newline] = STATE(230), - [sym_ctrl_if_parenthesized] = STATE(3257), - [sym_block] = STATE(3258), - [sym__expression_parenthesized] = STATE(3258), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3258), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(228), + [sym_ctrl_if_parenthesized] = STATE(3503), + [sym_block] = STATE(3504), + [sym__expression_parenthesized] = STATE(3504), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3504), [sym_comment] = STATE(223), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63765,7 +64071,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(1272), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63780,17 +64086,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -63808,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3261), - [sym_block] = STATE(3262), - [sym__expression_parenthesized] = STATE(3262), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3262), + [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), @@ -63858,7 +64164,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(1272), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63873,17 +64179,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -63901,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(2863), - [aux_sym__repeat_newline] = STATE(232), - [sym_ctrl_if_parenthesized] = STATE(3261), - [sym_block] = STATE(3262), - [sym__expression_parenthesized] = STATE(3262), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3262), + [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), @@ -63951,7 +64257,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(1272), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63966,17 +64272,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -63994,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3295), - [sym_block] = STATE(3306), - [sym__expression_parenthesized] = STATE(3306), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3306), + [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), @@ -64044,7 +64350,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(1272), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -64059,17 +64365,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -64087,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(2863), - [aux_sym__repeat_newline] = STATE(234), - [sym_ctrl_if_parenthesized] = STATE(3295), - [sym_block] = STATE(3306), - [sym__expression_parenthesized] = STATE(3306), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3306), + [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), @@ -64137,7 +64443,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(1272), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -64152,17 +64458,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -64180,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(2863), - [aux_sym__repeat_newline] = STATE(200), - [sym_ctrl_if_parenthesized] = STATE(3389), - [sym_block] = STATE(3265), - [sym__expression_parenthesized] = STATE(3265), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3265), + [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), @@ -64230,7 +64536,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(271), [anon_sym_catch] = ACTIONS(271), @@ -64245,7 +64551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -64273,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(2863), - [aux_sym__repeat_newline] = STATE(235), - [sym_ctrl_if_parenthesized] = STATE(3381), - [sym_block] = STATE(3388), - [sym__expression_parenthesized] = STATE(3388), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3388), + [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), @@ -64323,7 +64629,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(1272), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -64338,17 +64644,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -64366,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3378), - [sym_block] = STATE(3278), - [sym__expression_parenthesized] = STATE(3278), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3278), + [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), @@ -64416,7 +64722,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(1272), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -64431,17 +64737,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -64459,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(2863), - [aux_sym__repeat_newline] = STATE(237), - [sym_ctrl_if_parenthesized] = STATE(3378), - [sym_block] = STATE(3278), - [sym__expression_parenthesized] = STATE(3278), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3278), + [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), @@ -64509,7 +64815,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(1272), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -64524,17 +64830,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -64552,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3318), - [sym_block] = STATE(3340), - [sym__expression_parenthesized] = STATE(3340), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3340), + [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), @@ -64602,7 +64908,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(1272), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -64617,17 +64923,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -64645,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(2863), - [aux_sym__repeat_newline] = STATE(238), - [sym_ctrl_if_parenthesized] = STATE(3318), - [sym_block] = STATE(3340), - [sym__expression_parenthesized] = STATE(3340), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3340), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(239), + [sym_ctrl_if_parenthesized] = STATE(3438), + [sym_block] = STATE(3443), + [sym__expression_parenthesized] = STATE(3443), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__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), @@ -64695,7 +65001,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(1272), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -64710,17 +65016,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -64738,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3268), - [sym_block] = STATE(3275), - [sym__expression_parenthesized] = STATE(3275), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3275), + [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), @@ -64788,7 +65094,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(1272), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -64803,17 +65109,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -64831,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3279), - [sym_block] = STATE(3282), - [sym__expression_parenthesized] = STATE(3282), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3282), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(241), + [sym_ctrl_if_parenthesized] = STATE(3493), + [sym_block] = STATE(3495), + [sym__expression_parenthesized] = STATE(3495), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(315), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3495), [sym_comment] = STATE(235), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64881,7 +65187,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(1272), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -64896,17 +65202,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -64924,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(2863), - [aux_sym__repeat_newline] = STATE(239), - [sym_ctrl_if_parenthesized] = STATE(3279), - [sym_block] = STATE(3282), - [sym__expression_parenthesized] = STATE(3282), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3282), + [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), @@ -64974,7 +65280,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(1272), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -64989,17 +65295,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -65017,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3314), - [sym_block] = STATE(3254), - [sym__expression_parenthesized] = STATE(3254), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3254), + [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), @@ -65067,7 +65373,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(1272), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -65082,17 +65388,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -65110,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3259), - [sym_block] = STATE(3277), - [sym__expression_parenthesized] = STATE(3277), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3277), + [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), @@ -65160,7 +65466,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(1272), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -65175,17 +65481,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -65203,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3317), - [sym_block] = STATE(3319), - [sym__expression_parenthesized] = STATE(3319), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3319), + [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), @@ -65253,7 +65559,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(1272), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -65268,17 +65574,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -65296,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(2863), - [aux_sym__repeat_newline] = STATE(195), - [sym_ctrl_if_parenthesized] = STATE(3352), - [sym_block] = STATE(3371), - [sym__expression_parenthesized] = STATE(3371), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3371), + [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), @@ -65346,7 +65652,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(271), [anon_sym_catch] = ACTIONS(271), @@ -65361,7 +65667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1264), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -65389,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(2863), - [aux_sym__repeat_newline] = STATE(244), - [sym_ctrl_if_parenthesized] = STATE(3270), - [sym_block] = STATE(3272), - [sym__expression_parenthesized] = STATE(3272), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3272), + [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), @@ -65439,7 +65745,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(1016), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -65454,17 +65760,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -65482,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(2863), - [aux_sym__repeat_newline] = STATE(247), - [sym_ctrl_if_parenthesized] = STATE(3346), - [sym_block] = STATE(3349), - [sym__expression_parenthesized] = STATE(3349), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3349), + [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), @@ -65532,7 +65838,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(1016), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -65547,17 +65853,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -65575,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(2863), - [aux_sym__repeat_newline] = STATE(249), - [sym_ctrl_if_parenthesized] = STATE(3352), - [sym_block] = STATE(3371), - [sym__expression_parenthesized] = STATE(3371), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3371), + [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), @@ -65625,7 +65931,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(1016), + [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -65640,17 +65946,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -65668,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3389), - [sym_block] = STATE(3265), - [sym__expression_parenthesized] = STATE(3265), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3265), + [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), @@ -65718,7 +66024,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(1016), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -65733,17 +66039,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -65761,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(2863), + [sym_cmd_identifier] = STATE(2932), [aux_sym__repeat_newline] = STATE(251), - [sym_ctrl_if_parenthesized] = STATE(3389), - [sym_block] = STATE(3265), - [sym__expression_parenthesized] = STATE(3265), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3265), + [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), @@ -65811,7 +66117,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(1016), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -65826,17 +66132,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -65854,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(2863), - [aux_sym__repeat_newline] = STATE(253), - [sym_ctrl_if_parenthesized] = STATE(3372), - [sym_block] = STATE(3373), - [sym__expression_parenthesized] = STATE(3373), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3373), + [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), @@ -65904,7 +66210,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(1016), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -65919,17 +66225,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -65947,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3257), - [sym_block] = STATE(3258), - [sym__expression_parenthesized] = STATE(3258), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3258), + [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), @@ -65997,7 +66303,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(1016), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -66012,17 +66318,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -66040,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(2863), + [sym_cmd_identifier] = STATE(2932), [aux_sym__repeat_newline] = STATE(255), - [sym_ctrl_if_parenthesized] = STATE(3257), - [sym_block] = STATE(3258), - [sym__expression_parenthesized] = STATE(3258), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3258), + [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), @@ -66090,7 +66396,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(1016), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -66105,17 +66411,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -66133,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3261), - [sym_block] = STATE(3262), - [sym__expression_parenthesized] = STATE(3262), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3262), + [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), @@ -66183,7 +66489,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(1016), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -66198,17 +66504,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -66226,41 +66532,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(250)] = { - [sym_cmd_identifier] = STATE(2863), + [sym_cmd_identifier] = STATE(2932), [aux_sym__repeat_newline] = STATE(257), - [sym_ctrl_if_parenthesized] = STATE(3261), - [sym_block] = STATE(3262), - [sym__expression_parenthesized] = STATE(3262), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3262), + [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), @@ -66276,7 +66582,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(1016), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -66291,17 +66597,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -66319,41 +66625,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(251)] = { - [sym_cmd_identifier] = STATE(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3295), - [sym_block] = STATE(3306), - [sym__expression_parenthesized] = STATE(3306), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3306), + [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), @@ -66369,7 +66675,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(1016), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -66384,17 +66690,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -66412,41 +66718,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(252)] = { - [sym_cmd_identifier] = STATE(2863), + [sym_cmd_identifier] = STATE(2932), [aux_sym__repeat_newline] = STATE(259), - [sym_ctrl_if_parenthesized] = STATE(3295), - [sym_block] = STATE(3306), - [sym__expression_parenthesized] = STATE(3306), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3306), + [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), @@ -66462,7 +66768,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(1016), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -66477,17 +66783,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -66505,41 +66811,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(253)] = { - [sym_cmd_identifier] = STATE(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3381), - [sym_block] = STATE(3388), - [sym__expression_parenthesized] = STATE(3388), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3388), + [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), @@ -66555,7 +66861,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(1016), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -66570,17 +66876,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -66598,41 +66904,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(254)] = { - [sym_cmd_identifier] = STATE(2863), - [aux_sym__repeat_newline] = STATE(260), - [sym_ctrl_if_parenthesized] = STATE(3381), - [sym_block] = STATE(3388), - [sym__expression_parenthesized] = STATE(3388), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3388), + [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), @@ -66648,7 +66954,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(1016), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -66663,17 +66969,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -66691,41 +66997,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(255)] = { - [sym_cmd_identifier] = STATE(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3378), - [sym_block] = STATE(3278), - [sym__expression_parenthesized] = STATE(3278), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3278), + [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), @@ -66741,7 +67047,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(1016), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -66756,17 +67062,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -66784,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(2863), + [sym_cmd_identifier] = STATE(2932), [aux_sym__repeat_newline] = STATE(262), - [sym_ctrl_if_parenthesized] = STATE(3378), - [sym_block] = STATE(3278), - [sym__expression_parenthesized] = STATE(3278), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3278), + [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), @@ -66834,7 +67140,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(1016), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -66849,17 +67155,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -66877,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3318), - [sym_block] = STATE(3340), - [sym__expression_parenthesized] = STATE(3340), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3340), + [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), @@ -66927,7 +67233,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(1016), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -66942,17 +67248,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -66970,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(2863), - [aux_sym__repeat_newline] = STATE(263), - [sym_ctrl_if_parenthesized] = STATE(3318), - [sym_block] = STATE(3340), - [sym__expression_parenthesized] = STATE(3340), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3340), + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(264), + [sym_ctrl_if_parenthesized] = STATE(3493), + [sym_block] = STATE(3495), + [sym__expression_parenthesized] = STATE(3495), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3495), [sym_comment] = STATE(258), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67020,7 +67326,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(1016), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -67035,17 +67341,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -67063,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3268), - [sym_block] = STATE(3275), - [sym__expression_parenthesized] = STATE(3275), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3275), + [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), @@ -67113,7 +67419,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(1016), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -67128,17 +67434,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -67156,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3279), - [sym_block] = STATE(3282), - [sym__expression_parenthesized] = STATE(3282), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3282), + [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), @@ -67206,7 +67512,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(1016), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -67221,17 +67527,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -67249,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(2863), - [aux_sym__repeat_newline] = STATE(264), - [sym_ctrl_if_parenthesized] = STATE(3279), - [sym_block] = STATE(3282), - [sym__expression_parenthesized] = STATE(3282), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3282), + [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), @@ -67299,7 +67605,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(1016), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -67314,17 +67620,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -67342,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3314), - [sym_block] = STATE(3254), - [sym__expression_parenthesized] = STATE(3254), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3254), + [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), @@ -67392,285 +67698,6 @@ 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(1016), - [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(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(263)] = { - [sym_cmd_identifier] = STATE(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3259), - [sym_block] = STATE(3277), - [sym__expression_parenthesized] = STATE(3277), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3277), - [sym_comment] = STATE(263), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1016), - [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(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(264)] = { - [sym_cmd_identifier] = STATE(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3317), - [sym_block] = STATE(3319), - [sym__expression_parenthesized] = STATE(3319), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3319), - [sym_comment] = STATE(264), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1016), - [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(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1284), - [aux_sym__val_number_decimal_token4] = ACTIONS(1284), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(265)] = { - [sym_cmd_identifier] = STATE(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3389), - [sym_block] = STATE(3265), - [sym__expression_parenthesized] = STATE(3265), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3265), - [sym_comment] = STATE(265), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), @@ -67686,17 +67713,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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(263)] = { + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(196), + [sym_ctrl_if_parenthesized] = STATE(3516), + [sym_block] = STATE(3517), + [sym__expression_parenthesized] = STATE(3517), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3517), + [sym_comment] = STATE(263), + [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(264)] = { + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3380), + [sym_block] = STATE(3381), + [sym__expression_parenthesized] = STATE(3381), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3381), + [sym_comment] = STATE(264), + [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(265)] = { + [sym_cmd_identifier] = STATE(2932), + [aux_sym__repeat_newline] = STATE(1413), + [sym_ctrl_if_parenthesized] = STATE(3386), + [sym_block] = STATE(3404), + [sym__expression_parenthesized] = STATE(3404), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2163), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3404), + [sym_comment] = STATE(265), + [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), @@ -67714,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(2863), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3381), - [sym_block] = STATE(3388), - [sym__expression_parenthesized] = STATE(3388), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2134), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3388), + [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), @@ -67764,7 +68070,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(1272), + [anon_sym_if] = ACTIONS(1278), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -67779,17 +68085,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1262), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -67855,9 +68161,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), @@ -67900,6 +68206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(268)] = { [sym_comment] = STATE(268), + [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -67949,7 +68256,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), @@ -67992,6 +68298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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), @@ -68041,7 +68348,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), @@ -68084,7 +68390,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(270)] = { [sym_comment] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -68132,6 +68437,7 @@ 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), @@ -68176,99 +68482,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(271)] = { [sym_comment] = STATE(271), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_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] = ACTIONS(1302), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(1304), - [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), @@ -68316,6 +68529,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), @@ -68352,14 +68566,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token1] = ACTIONS(1306), - [aux_sym__immediate_decimal_token5] = ACTIONS(1308), + [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(273)] = { - [sym_comment] = STATE(273), + [STATE(272)] = { + [sym_comment] = STATE(272), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -68442,197 +68656,290 @@ 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_token5] = ACTIONS(1292), + [aux_sym__immediate_decimal_token5] = ACTIONS(1308), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(274)] = { - [sym_comment] = STATE(274), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_RPAREN] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [STATE(273)] = { + [sym_comment] = STATE(273), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), [aux_sym__immediate_decimal_token5] = ACTIONS(1310), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(274)] = { + [sym_cmd_identifier] = STATE(3009), + [sym__expression_parenthesized] = STATE(2291), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(135), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3387), + [sym_comment] = STATE(274), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1395), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1012), + [aux_sym__val_number_decimal_token2] = ACTIONS(1014), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(343), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, [STATE(275)] = { [sym_comment] = STATE(275), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [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(763), - [sym_duration_unit] = ACTIONS(765), + [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), @@ -68714,505 +69021,140 @@ 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(1314), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(1316), + [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(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token1] = ACTIONS(1318), - [aux_sym__immediate_decimal_token5] = ACTIONS(1320), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = 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_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(2863), - [sym_ctrl_if] = STATE(3247), - [sym_block] = STATE(3249), - [sym__expression] = STATE(3249), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2219), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(297), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3249), + [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), - [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(1006), - [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(1322), - [aux_sym__val_number_decimal_token2] = ACTIONS(1324), - [aux_sym__val_number_decimal_token3] = ACTIONS(1326), - [aux_sym__val_number_decimal_token4] = ACTIONS(1326), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(279)] = { - [sym_cmd_identifier] = STATE(2876), - [sym__expression_parenthesized] = STATE(2258), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(143), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3266), - [sym_comment] = STATE(279), - [aux_sym_pipe_element_parenthesized_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(1006), - [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(1328), - [aux_sym__val_number_decimal_token2] = ACTIONS(1330), - [aux_sym__val_number_decimal_token3] = ACTIONS(1332), - [aux_sym__val_number_decimal_token4] = ACTIONS(1332), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(280)] = { - [sym_cmd_identifier] = STATE(2923), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1321), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1321), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(896), - [sym_val_range] = STATE(1321), - [sym__value] = STATE(1321), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1318), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(117), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3305), - [sym_comment] = STATE(280), - [aux_sym_pipe_element_repeat2] = STATE(1391), - [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(1026), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(281)] = { - [sym_cmd_identifier] = STATE(2748), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(128), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3151), - [sym_comment] = STATE(281), - [aux_sym_pipe_element_repeat2] = STATE(1391), - [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(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(282)] = { - [sym_cmd_identifier] = STATE(2876), - [sym__expression_parenthesized] = STATE(2258), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3266), - [sym_comment] = STATE(282), - [aux_sym_pipe_element_parenthesized_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), @@ -69241,7 +69183,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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -69264,228 +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(283)] = { - [sym_comment] = STATE(283), - [ts_builtin_sym_end] = ACTIONS(765), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [aux_sym__immediate_decimal_token5] = ACTIONS(1334), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), + [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(284)] = { - [sym_cmd_identifier] = STATE(2748), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3151), - [sym_comment] = STATE(284), - [aux_sym_pipe_element_repeat2] = STATE(1391), - [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(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(285)] = { - [sym_cmd_identifier] = STATE(2863), - [sym_ctrl_if] = STATE(3247), - [sym_block] = STATE(3249), - [sym__expression] = STATE(3249), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2219), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(296), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3249), - [sym_comment] = STATE(285), + [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), @@ -69500,7 +69351,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(271), [anon_sym_catch] = ACTIONS(271), @@ -69514,17 +69365,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1260), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -69541,9 +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(286)] = { - [sym_comment] = STATE(286), - [ts_builtin_sym_end] = ACTIONS(749), + [STATE(281)] = { + [sym_comment] = STATE(281), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -69593,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), @@ -69627,138 +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_token5] = ACTIONS(1300), + [aux_sym__immediate_decimal_token5] = ACTIONS(1308), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(287)] = { - [sym_cmd_identifier] = STATE(3042), - [sym_ctrl_if] = STATE(3307), - [sym_block] = STATE(3308), - [sym__expression] = STATE(3308), - [sym_expr_unary] = STATE(1321), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1321), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(896), - [sym_val_range] = STATE(1321), - [sym__value] = STATE(1321), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1318), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(309), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_command] = STATE(3308), - [sym_comment] = STATE(287), - [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(1336), - [anon_sym_false] = ACTIONS(1336), - [anon_sym_null] = ACTIONS(1338), - [aux_sym_cmd_identifier_token3] = ACTIONS(1340), - [aux_sym_cmd_identifier_token4] = ACTIONS(1340), - [aux_sym_cmd_identifier_token5] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(1342), - [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(1344), - [aux_sym__val_number_decimal_token2] = ACTIONS(1346), - [aux_sym__val_number_decimal_token3] = ACTIONS(1348), - [aux_sym__val_number_decimal_token4] = ACTIONS(1348), - [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(288)] = { - [sym_cmd_identifier] = STATE(2876), - [sym__expression_parenthesized] = STATE(2258), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2114), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(138), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4458), - [sym__command_parenthesized] = STATE(3266), - [sym_comment] = STATE(288), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1392), + [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(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_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), @@ -69787,17 +69547,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(1006), + [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(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1022), + [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), @@ -69810,12 +69570,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(289)] = { - [sym_comment] = STATE(289), + [STATE(283)] = { + [sym_cmd_identifier] = STATE(2932), + [sym_ctrl_if] = STATE(3359), + [sym_block] = STATE(3220), + [sym__expression] = STATE(3220), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2249), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3220), + [sym_comment] = STATE(283), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [aux_sym_cmd_identifier_token3] = ACTIONS(1260), + [aux_sym_cmd_identifier_token4] = ACTIONS(1260), + [aux_sym_cmd_identifier_token5] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1280), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1284), + [aux_sym__val_number_decimal_token4] = ACTIONS(1284), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(284)] = { + [sym_comment] = STATE(284), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -69863,7 +69714,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), @@ -69898,49 +69748,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(1324), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(1304), + [aux_sym__immediate_decimal_token5] = ACTIONS(1326), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(290)] = { - [sym_cmd_identifier] = STATE(2748), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(143), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3151), - [sym_comment] = STATE(290), - [aux_sym_pipe_element_repeat2] = STATE(1391), + [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), @@ -69969,17 +69820,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(1006), + [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(1328), - [aux_sym__val_number_decimal_token2] = ACTIONS(1330), - [aux_sym__val_number_decimal_token3] = ACTIONS(1332), - [aux_sym__val_number_decimal_token4] = ACTIONS(1332), + [aux_sym__val_number_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), @@ -69996,42 +69847,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(291)] = { - [sym_cmd_identifier] = STATE(2863), - [sym_ctrl_if] = STATE(3247), - [sym_block] = STATE(3249), - [sym__expression] = STATE(3249), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2219), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(317), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3249), - [sym_comment] = STATE(291), + [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), @@ -70046,7 +69897,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(1350), + [anon_sym_if] = ACTIONS(1018), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -70060,17 +69911,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1260), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), + [aux_sym__val_number_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), @@ -70087,42 +69938,497 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token1] = ACTIONS(1328), + [aux_sym__immediate_decimal_token5] = ACTIONS(1330), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(288)] = { + [sym_cmd_identifier] = STATE(3009), + [sym__expression_parenthesized] = STATE(2291), + [sym_expr_unary] = STATE(1176), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1176), + [sym__expr_binary_expression_parenthesized] = STATE(2157), + [sym_expr_parenthesized] = STATE(777), + [sym_val_range] = STATE(1176), + [sym__value] = STATE(1176), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(141), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_env_var] = STATE(4730), + [sym__command_parenthesized] = STATE(3387), + [sym_comment] = STATE(288), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1395), + [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), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(343), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(290)] = { + [sym_cmd_identifier] = STATE(3046), + [sym_ctrl_if] = STATE(3444), + [sym_block] = STATE(3474), + [sym__expression] = STATE(3474), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(2251), + [sym_expr_parenthesized] = STATE(924), + [sym_val_range] = STATE(1286), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1295), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_command] = STATE(3474), + [sym_comment] = STATE(290), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(39), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(39), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(1332), + [anon_sym_false] = ACTIONS(1332), + [anon_sym_null] = ACTIONS(1334), + [aux_sym_cmd_identifier_token3] = ACTIONS(1336), + [aux_sym_cmd_identifier_token4] = ACTIONS(1336), + [aux_sym_cmd_identifier_token5] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_DOT_DOT] = ACTIONS(69), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(1340), + [aux_sym__val_number_decimal_token2] = ACTIONS(1342), + [aux_sym__val_number_decimal_token3] = ACTIONS(1344), + [aux_sym__val_number_decimal_token4] = ACTIONS(1344), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(291)] = { + [sym_cmd_identifier] = STATE(2947), + [sym__expression] = STATE(2292), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(2252), + [sym_expr_parenthesized] = STATE(924), + [sym_val_range] = STATE(1286), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1295), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(123), + [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(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), + [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(1008), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, [STATE(292)] = { - [sym_cmd_identifier] = STATE(2748), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(138), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_env_var] = STATE(4803), - [sym_command] = STATE(3151), + [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(1391), + [aux_sym_pipe_element_repeat2] = STATE(1400), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -70151,17 +70457,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(1006), + [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(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1022), + [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), @@ -70179,40 +70485,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(293)] = { - [sym_cmd_identifier] = STATE(2863), - [sym_ctrl_if] = STATE(3247), - [sym_block] = STATE(3249), - [sym__expression] = STATE(3249), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2219), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(314), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_command] = STATE(3249), + [sym_cmd_identifier] = STATE(2932), + [sym_ctrl_if] = STATE(3359), + [sym_block] = STATE(3220), + [sym__expression] = STATE(3220), + [sym_expr_unary] = STATE(947), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(947), + [sym__expr_binary_expression] = STATE(2249), + [sym_expr_parenthesized] = STATE(704), + [sym_val_range] = STATE(947), + [sym__value] = STATE(947), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(946), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(307), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_command] = STATE(3220), [sym_comment] = STATE(293), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -70228,7 +70534,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(1028), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -70242,17 +70548,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1260), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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_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), @@ -70271,405 +70577,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(294)] = { [sym_comment] = STATE(294), - [ts_builtin_sym_end] = ACTIONS(791), - [anon_sym_in] = ACTIONS(789), - [anon_sym_STAR_STAR] = ACTIONS(791), - [anon_sym_PLUS_PLUS] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_mod] = ACTIONS(791), - [anon_sym_SLASH_SLASH] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_bit_DASHshl] = ACTIONS(791), - [anon_sym_bit_DASHshr] = ACTIONS(791), - [anon_sym_EQ_TILDE] = ACTIONS(791), - [anon_sym_BANG_TILDE] = ACTIONS(791), - [anon_sym_like] = ACTIONS(791), - [anon_sym_not_DASHlike] = ACTIONS(791), - [anon_sym_bit_DASHand] = ACTIONS(791), - [anon_sym_bit_DASHxor] = ACTIONS(791), - [anon_sym_bit_DASHor] = ACTIONS(791), - [anon_sym_and] = ACTIONS(791), - [anon_sym_xor] = ACTIONS(791), - [anon_sym_or] = ACTIONS(791), - [anon_sym_in2] = ACTIONS(791), - [anon_sym_not_DASHin] = ACTIONS(791), - [anon_sym_has] = ACTIONS(791), - [anon_sym_not_DASHhas] = ACTIONS(791), - [anon_sym_starts_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), - [anon_sym_ends_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), - [anon_sym_EQ_EQ] = ACTIONS(791), - [anon_sym_BANG_EQ] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(791), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_GT_EQ] = ACTIONS(791), - [aux_sym_cmd_identifier_token6] = ACTIONS(789), - [sym__newline] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(789), - [anon_sym_err_GT_PIPE] = ACTIONS(789), - [anon_sym_out_GT_PIPE] = ACTIONS(789), - [anon_sym_e_GT_PIPE] = ACTIONS(789), - [anon_sym_o_GT_PIPE] = ACTIONS(789), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), - [anon_sym_GT2] = ACTIONS(789), - [anon_sym_DASH2] = ACTIONS(789), - [anon_sym_STAR2] = ACTIONS(789), - [anon_sym_and2] = ACTIONS(789), - [anon_sym_xor2] = ACTIONS(789), - [anon_sym_or2] = ACTIONS(789), - [anon_sym_not_DASHin2] = ACTIONS(789), - [anon_sym_has2] = ACTIONS(789), - [anon_sym_not_DASHhas2] = ACTIONS(789), - [anon_sym_starts_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), - [anon_sym_ends_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), - [anon_sym_EQ_EQ2] = ACTIONS(789), - [anon_sym_BANG_EQ2] = ACTIONS(789), - [anon_sym_LT2] = ACTIONS(789), - [anon_sym_LT_EQ2] = ACTIONS(789), - [anon_sym_GT_EQ2] = ACTIONS(789), - [anon_sym_EQ_TILDE2] = ACTIONS(789), - [anon_sym_BANG_TILDE2] = ACTIONS(789), - [anon_sym_like2] = ACTIONS(789), - [anon_sym_not_DASHlike2] = ACTIONS(789), - [anon_sym_STAR_STAR2] = ACTIONS(789), - [anon_sym_PLUS_PLUS2] = ACTIONS(789), - [anon_sym_SLASH2] = ACTIONS(789), - [anon_sym_mod2] = ACTIONS(789), - [anon_sym_SLASH_SLASH2] = ACTIONS(789), - [anon_sym_PLUS2] = ACTIONS(789), - [anon_sym_bit_DASHshl2] = ACTIONS(789), - [anon_sym_bit_DASHshr2] = ACTIONS(789), - [anon_sym_bit_DASHand2] = ACTIONS(789), - [anon_sym_bit_DASHxor2] = ACTIONS(789), - [anon_sym_bit_DASHor2] = ACTIONS(789), - [anon_sym_DOT_DOT2] = ACTIONS(789), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), - [anon_sym_DOT_DOT_LT2] = ACTIONS(791), - [sym_filesize_unit] = ACTIONS(789), - [sym_duration_unit] = ACTIONS(791), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(295)] = { - [sym_comment] = STATE(295), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [aux_sym__immediate_decimal_token5] = ACTIONS(1352), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(296)] = { - [sym_comment] = STATE(296), - [anon_sym_in] = ACTIONS(858), - [anon_sym_STAR_STAR] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_mod] = ACTIONS(968), - [anon_sym_SLASH_SLASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_bit_DASHshl] = ACTIONS(968), - [anon_sym_bit_DASHshr] = ACTIONS(968), - [anon_sym_EQ_TILDE] = ACTIONS(968), - [anon_sym_BANG_TILDE] = ACTIONS(968), - [anon_sym_like] = ACTIONS(968), - [anon_sym_not_DASHlike] = ACTIONS(968), - [anon_sym_bit_DASHand] = ACTIONS(968), - [anon_sym_bit_DASHxor] = ACTIONS(968), - [anon_sym_bit_DASHor] = ACTIONS(968), - [anon_sym_and] = ACTIONS(968), - [anon_sym_xor] = ACTIONS(968), - [anon_sym_or] = ACTIONS(968), - [anon_sym_in2] = ACTIONS(968), - [anon_sym_not_DASHin] = ACTIONS(968), - [anon_sym_has] = ACTIONS(968), - [anon_sym_not_DASHhas] = ACTIONS(968), - [anon_sym_starts_DASHwith] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(968), - [anon_sym_ends_DASHwith] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(968), - [anon_sym_EQ_EQ] = ACTIONS(968), - [anon_sym_BANG_EQ] = ACTIONS(968), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_EQ] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(968), - [aux_sym_cmd_identifier_token6] = ACTIONS(972), - [sym__newline] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_err_GT_PIPE] = ACTIONS(858), - [anon_sym_out_GT_PIPE] = ACTIONS(858), - [anon_sym_e_GT_PIPE] = ACTIONS(858), - [anon_sym_o_GT_PIPE] = ACTIONS(858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), - [anon_sym_RPAREN] = ACTIONS(858), - [anon_sym_GT2] = ACTIONS(858), - [anon_sym_DASH2] = ACTIONS(858), - [anon_sym_STAR2] = ACTIONS(858), - [anon_sym_and2] = ACTIONS(858), - [anon_sym_xor2] = ACTIONS(858), - [anon_sym_or2] = ACTIONS(858), - [anon_sym_not_DASHin2] = ACTIONS(858), - [anon_sym_has2] = ACTIONS(858), - [anon_sym_not_DASHhas2] = ACTIONS(858), - [anon_sym_starts_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), - [anon_sym_ends_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), - [anon_sym_EQ_EQ2] = ACTIONS(858), - [anon_sym_BANG_EQ2] = ACTIONS(858), - [anon_sym_LT2] = ACTIONS(858), - [anon_sym_LT_EQ2] = ACTIONS(858), - [anon_sym_GT_EQ2] = ACTIONS(858), - [anon_sym_EQ_TILDE2] = ACTIONS(858), - [anon_sym_BANG_TILDE2] = ACTIONS(858), - [anon_sym_like2] = ACTIONS(858), - [anon_sym_not_DASHlike2] = ACTIONS(858), - [anon_sym_STAR_STAR2] = ACTIONS(858), - [anon_sym_PLUS_PLUS2] = ACTIONS(858), - [anon_sym_SLASH2] = ACTIONS(858), - [anon_sym_mod2] = ACTIONS(858), - [anon_sym_SLASH_SLASH2] = ACTIONS(858), - [anon_sym_PLUS2] = ACTIONS(858), - [anon_sym_bit_DASHshl2] = ACTIONS(858), - [anon_sym_bit_DASHshr2] = ACTIONS(858), - [anon_sym_bit_DASHand2] = ACTIONS(858), - [anon_sym_bit_DASHxor2] = ACTIONS(858), - [anon_sym_bit_DASHor2] = ACTIONS(858), - [anon_sym_DOT_DOT2] = ACTIONS(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(1354), - [sym_duration_unit] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(297)] = { - [sym_comment] = STATE(297), - [anon_sym_in] = ACTIONS(858), - [anon_sym_STAR_STAR] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_mod] = ACTIONS(968), - [anon_sym_SLASH_SLASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_bit_DASHshl] = ACTIONS(968), - [anon_sym_bit_DASHshr] = ACTIONS(968), - [anon_sym_EQ_TILDE] = ACTIONS(968), - [anon_sym_BANG_TILDE] = ACTIONS(968), - [anon_sym_like] = ACTIONS(968), - [anon_sym_not_DASHlike] = ACTIONS(968), - [anon_sym_bit_DASHand] = ACTIONS(968), - [anon_sym_bit_DASHxor] = ACTIONS(968), - [anon_sym_bit_DASHor] = ACTIONS(968), - [anon_sym_and] = ACTIONS(968), - [anon_sym_xor] = ACTIONS(968), - [anon_sym_or] = ACTIONS(968), - [anon_sym_in2] = ACTIONS(968), - [anon_sym_not_DASHin] = ACTIONS(968), - [anon_sym_has] = ACTIONS(968), - [anon_sym_not_DASHhas] = ACTIONS(968), - [anon_sym_starts_DASHwith] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(968), - [anon_sym_ends_DASHwith] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(968), - [anon_sym_EQ_EQ] = ACTIONS(968), - [anon_sym_BANG_EQ] = ACTIONS(968), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_EQ] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(968), - [aux_sym_cmd_identifier_token6] = ACTIONS(972), - [sym__newline] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_err_GT_PIPE] = ACTIONS(858), - [anon_sym_out_GT_PIPE] = ACTIONS(858), - [anon_sym_e_GT_PIPE] = ACTIONS(858), - [anon_sym_o_GT_PIPE] = ACTIONS(858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), - [anon_sym_GT2] = ACTIONS(858), - [anon_sym_DASH2] = ACTIONS(858), - [anon_sym_RBRACE] = ACTIONS(858), - [anon_sym_STAR2] = ACTIONS(858), - [anon_sym_and2] = ACTIONS(858), - [anon_sym_xor2] = ACTIONS(858), - [anon_sym_or2] = ACTIONS(858), - [anon_sym_not_DASHin2] = ACTIONS(858), - [anon_sym_has2] = ACTIONS(858), - [anon_sym_not_DASHhas2] = ACTIONS(858), - [anon_sym_starts_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), - [anon_sym_ends_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), - [anon_sym_EQ_EQ2] = ACTIONS(858), - [anon_sym_BANG_EQ2] = ACTIONS(858), - [anon_sym_LT2] = ACTIONS(858), - [anon_sym_LT_EQ2] = ACTIONS(858), - [anon_sym_GT_EQ2] = ACTIONS(858), - [anon_sym_EQ_TILDE2] = ACTIONS(858), - [anon_sym_BANG_TILDE2] = ACTIONS(858), - [anon_sym_like2] = ACTIONS(858), - [anon_sym_not_DASHlike2] = ACTIONS(858), - [anon_sym_STAR_STAR2] = ACTIONS(858), - [anon_sym_PLUS_PLUS2] = ACTIONS(858), - [anon_sym_SLASH2] = ACTIONS(858), - [anon_sym_mod2] = ACTIONS(858), - [anon_sym_SLASH_SLASH2] = ACTIONS(858), - [anon_sym_PLUS2] = ACTIONS(858), - [anon_sym_bit_DASHshl2] = ACTIONS(858), - [anon_sym_bit_DASHshr2] = ACTIONS(858), - [anon_sym_bit_DASHand2] = ACTIONS(858), - [anon_sym_bit_DASHxor2] = ACTIONS(858), - [anon_sym_bit_DASHor2] = ACTIONS(858), - [anon_sym_DOT_DOT2] = ACTIONS(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(1358), - [sym_duration_unit] = ACTIONS(1360), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(298)] = { - [sym_comment] = STATE(298), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(1352), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1354), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(295)] = { + [sym_comment] = STATE(295), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_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(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_SEMI] = ACTIONS(739), [anon_sym_PIPE] = ACTIONS(739), [anon_sym_err_GT_PIPE] = ACTIONS(739), [anon_sym_out_GT_PIPE] = ACTIONS(739), @@ -70715,102 +70839,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token1] = ACTIONS(1356), + [aux_sym__immediate_decimal_token5] = ACTIONS(1358), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(299)] = { - [sym_comment] = STATE(299), - [ts_builtin_sym_end] = ACTIONS(765), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), + [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(300)] = { - [sym_comment] = STATE(300), + [STATE(298)] = { + [sym_comment] = STATE(298), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -70899,188 +71025,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(301)] = { - [sym_comment] = STATE(301), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_RPAREN] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(302)] = { - [sym_comment] = STATE(302), - [anon_sym_in] = ACTIONS(789), - [anon_sym_STAR_STAR] = ACTIONS(791), - [anon_sym_PLUS_PLUS] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_mod] = ACTIONS(791), - [anon_sym_SLASH_SLASH] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_bit_DASHshl] = ACTIONS(791), - [anon_sym_bit_DASHshr] = ACTIONS(791), - [anon_sym_EQ_TILDE] = ACTIONS(791), - [anon_sym_BANG_TILDE] = ACTIONS(791), - [anon_sym_like] = ACTIONS(791), - [anon_sym_not_DASHlike] = ACTIONS(791), - [anon_sym_bit_DASHand] = ACTIONS(791), - [anon_sym_bit_DASHxor] = ACTIONS(791), - [anon_sym_bit_DASHor] = ACTIONS(791), - [anon_sym_and] = ACTIONS(791), - [anon_sym_xor] = ACTIONS(791), - [anon_sym_or] = ACTIONS(791), - [anon_sym_in2] = ACTIONS(791), - [anon_sym_not_DASHin] = ACTIONS(791), - [anon_sym_has] = ACTIONS(791), - [anon_sym_not_DASHhas] = ACTIONS(791), - [anon_sym_starts_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), - [anon_sym_ends_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), - [anon_sym_EQ_EQ] = ACTIONS(791), - [anon_sym_BANG_EQ] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(791), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_GT_EQ] = ACTIONS(791), - [aux_sym_cmd_identifier_token6] = ACTIONS(789), - [sym__newline] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(789), - [anon_sym_err_GT_PIPE] = ACTIONS(789), - [anon_sym_out_GT_PIPE] = ACTIONS(789), - [anon_sym_e_GT_PIPE] = ACTIONS(789), - [anon_sym_o_GT_PIPE] = ACTIONS(789), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), - [anon_sym_RPAREN] = ACTIONS(789), - [anon_sym_GT2] = ACTIONS(789), - [anon_sym_DASH2] = ACTIONS(789), - [anon_sym_STAR2] = ACTIONS(789), - [anon_sym_and2] = ACTIONS(789), - [anon_sym_xor2] = ACTIONS(789), - [anon_sym_or2] = ACTIONS(789), - [anon_sym_not_DASHin2] = ACTIONS(789), - [anon_sym_has2] = ACTIONS(789), - [anon_sym_not_DASHhas2] = ACTIONS(789), - [anon_sym_starts_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), - [anon_sym_ends_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), - [anon_sym_EQ_EQ2] = ACTIONS(789), - [anon_sym_BANG_EQ2] = ACTIONS(789), - [anon_sym_LT2] = ACTIONS(789), - [anon_sym_LT_EQ2] = ACTIONS(789), - [anon_sym_GT_EQ2] = ACTIONS(789), - [anon_sym_EQ_TILDE2] = ACTIONS(789), - [anon_sym_BANG_TILDE2] = ACTIONS(789), - [anon_sym_like2] = ACTIONS(789), - [anon_sym_not_DASHlike2] = ACTIONS(789), - [anon_sym_STAR_STAR2] = ACTIONS(789), - [anon_sym_PLUS_PLUS2] = ACTIONS(789), - [anon_sym_SLASH2] = ACTIONS(789), - [anon_sym_mod2] = ACTIONS(789), - [anon_sym_SLASH_SLASH2] = ACTIONS(789), - [anon_sym_PLUS2] = ACTIONS(789), - [anon_sym_bit_DASHshl2] = ACTIONS(789), - [anon_sym_bit_DASHshr2] = ACTIONS(789), - [anon_sym_bit_DASHand2] = ACTIONS(789), - [anon_sym_bit_DASHxor2] = ACTIONS(789), - [anon_sym_bit_DASHor2] = ACTIONS(789), - [anon_sym_DOT_DOT2] = ACTIONS(789), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), - [anon_sym_DOT_DOT_LT2] = ACTIONS(791), - [sym_filesize_unit] = ACTIONS(789), - [sym_duration_unit] = ACTIONS(791), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(303)] = { - [sym_comment] = STATE(303), + [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), @@ -71130,7 +71077,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), @@ -71169,278 +71115,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(304)] = { - [sym_comment] = STATE(304), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), + [STATE(300)] = { + [sym_comment] = STATE(300), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(305)] = { - [sym_comment] = STATE(305), - [anon_sym_in] = ACTIONS(789), - [anon_sym_STAR_STAR] = ACTIONS(791), - [anon_sym_PLUS_PLUS] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_mod] = ACTIONS(791), - [anon_sym_SLASH_SLASH] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_bit_DASHshl] = ACTIONS(791), - [anon_sym_bit_DASHshr] = ACTIONS(791), - [anon_sym_EQ_TILDE] = ACTIONS(791), - [anon_sym_BANG_TILDE] = ACTIONS(791), - [anon_sym_like] = ACTIONS(791), - [anon_sym_not_DASHlike] = ACTIONS(791), - [anon_sym_bit_DASHand] = ACTIONS(791), - [anon_sym_bit_DASHxor] = ACTIONS(791), - [anon_sym_bit_DASHor] = ACTIONS(791), - [anon_sym_and] = ACTIONS(791), - [anon_sym_xor] = ACTIONS(791), - [anon_sym_or] = ACTIONS(791), - [anon_sym_in2] = ACTIONS(791), - [anon_sym_not_DASHin] = ACTIONS(791), - [anon_sym_has] = ACTIONS(791), - [anon_sym_not_DASHhas] = ACTIONS(791), - [anon_sym_starts_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), - [anon_sym_ends_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), - [anon_sym_EQ_EQ] = ACTIONS(791), - [anon_sym_BANG_EQ] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(791), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_GT_EQ] = ACTIONS(791), - [aux_sym_cmd_identifier_token6] = ACTIONS(789), - [sym__newline] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(789), - [anon_sym_err_GT_PIPE] = ACTIONS(789), - [anon_sym_out_GT_PIPE] = ACTIONS(789), - [anon_sym_e_GT_PIPE] = ACTIONS(789), - [anon_sym_o_GT_PIPE] = ACTIONS(789), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), - [anon_sym_GT2] = ACTIONS(789), - [anon_sym_DASH2] = ACTIONS(789), - [anon_sym_RBRACE] = ACTIONS(789), - [anon_sym_STAR2] = ACTIONS(789), - [anon_sym_and2] = ACTIONS(789), - [anon_sym_xor2] = ACTIONS(789), - [anon_sym_or2] = ACTIONS(789), - [anon_sym_not_DASHin2] = ACTIONS(789), - [anon_sym_has2] = ACTIONS(789), - [anon_sym_not_DASHhas2] = ACTIONS(789), - [anon_sym_starts_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), - [anon_sym_ends_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), - [anon_sym_EQ_EQ2] = ACTIONS(789), - [anon_sym_BANG_EQ2] = ACTIONS(789), - [anon_sym_LT2] = ACTIONS(789), - [anon_sym_LT_EQ2] = ACTIONS(789), - [anon_sym_GT_EQ2] = ACTIONS(789), - [anon_sym_EQ_TILDE2] = ACTIONS(789), - [anon_sym_BANG_TILDE2] = ACTIONS(789), - [anon_sym_like2] = ACTIONS(789), - [anon_sym_not_DASHlike2] = ACTIONS(789), - [anon_sym_STAR_STAR2] = ACTIONS(789), - [anon_sym_PLUS_PLUS2] = ACTIONS(789), - [anon_sym_SLASH2] = ACTIONS(789), - [anon_sym_mod2] = ACTIONS(789), - [anon_sym_SLASH_SLASH2] = ACTIONS(789), - [anon_sym_PLUS2] = ACTIONS(789), - [anon_sym_bit_DASHshl2] = ACTIONS(789), - [anon_sym_bit_DASHshr2] = ACTIONS(789), - [anon_sym_bit_DASHand2] = ACTIONS(789), - [anon_sym_bit_DASHxor2] = ACTIONS(789), - [anon_sym_bit_DASHor2] = ACTIONS(789), - [anon_sym_DOT_DOT2] = ACTIONS(789), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), - [anon_sym_DOT_DOT_LT2] = ACTIONS(791), - [sym_filesize_unit] = ACTIONS(789), - [sym_duration_unit] = ACTIONS(791), + [STATE(301)] = { + [sym_comment] = STATE(301), + [ts_builtin_sym_end] = ACTIONS(773), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(306)] = { - [sym_comment] = STATE(306), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(1364), - [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(307)] = { - [sym_comment] = STATE(307), + [STATE(303)] = { + [sym_comment] = STATE(303), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -71478,6 +71424,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), @@ -71489,6 +71436,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), @@ -71523,190 +71471,548 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token1] = ACTIONS(1366), - [aux_sym__immediate_decimal_token5] = ACTIONS(1368), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(304)] = { + [sym_comment] = STATE(304), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(1360), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(305)] = { + [sym_comment] = STATE(305), + [ts_builtin_sym_end] = ACTIONS(886), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(888), + [anon_sym_PLUS_PLUS] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(890), + [anon_sym_SLASH] = ACTIONS(890), + [anon_sym_mod] = ACTIONS(888), + [anon_sym_SLASH_SLASH] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(888), + [anon_sym_bit_DASHshl] = ACTIONS(888), + [anon_sym_bit_DASHshr] = ACTIONS(888), + [anon_sym_EQ_TILDE] = ACTIONS(888), + [anon_sym_BANG_TILDE] = ACTIONS(888), + [anon_sym_like] = ACTIONS(888), + [anon_sym_not_DASHlike] = ACTIONS(888), + [anon_sym_bit_DASHand] = ACTIONS(888), + [anon_sym_bit_DASHxor] = ACTIONS(888), + [anon_sym_bit_DASHor] = ACTIONS(888), + [anon_sym_and] = ACTIONS(888), + [anon_sym_xor] = ACTIONS(888), + [anon_sym_or] = ACTIONS(888), + [anon_sym_in2] = ACTIONS(888), + [anon_sym_not_DASHin] = ACTIONS(888), + [anon_sym_has] = ACTIONS(888), + [anon_sym_not_DASHhas] = ACTIONS(888), + [anon_sym_starts_DASHwith] = ACTIONS(888), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(888), + [anon_sym_ends_DASHwith] = ACTIONS(888), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(888), + [anon_sym_EQ_EQ] = ACTIONS(888), + [anon_sym_BANG_EQ] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_LT_EQ] = ACTIONS(888), + [anon_sym_GT] = ACTIONS(890), + [anon_sym_GT_EQ] = ACTIONS(888), + [aux_sym_cmd_identifier_token6] = ACTIONS(892), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(896), + [anon_sym_DOT_DOT_LT2] = ACTIONS(896), + [sym_filesize_unit] = ACTIONS(1362), + [sym_duration_unit] = ACTIONS(1364), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(306)] = { + [sym_comment] = STATE(306), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(902), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(904), + [anon_sym_mod] = ACTIONS(902), + [anon_sym_SLASH_SLASH] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_bit_DASHshl] = ACTIONS(902), + [anon_sym_bit_DASHshr] = ACTIONS(902), + [anon_sym_EQ_TILDE] = ACTIONS(902), + [anon_sym_BANG_TILDE] = ACTIONS(902), + [anon_sym_like] = ACTIONS(902), + [anon_sym_not_DASHlike] = ACTIONS(902), + [anon_sym_bit_DASHand] = ACTIONS(902), + [anon_sym_bit_DASHxor] = ACTIONS(902), + [anon_sym_bit_DASHor] = ACTIONS(902), + [anon_sym_and] = ACTIONS(902), + [anon_sym_xor] = ACTIONS(902), + [anon_sym_or] = ACTIONS(902), + [anon_sym_in2] = ACTIONS(902), + [anon_sym_not_DASHin] = ACTIONS(902), + [anon_sym_has] = ACTIONS(902), + [anon_sym_not_DASHhas] = ACTIONS(902), + [anon_sym_starts_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(902), + [anon_sym_ends_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(904), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(904), + [anon_sym_GT_EQ] = ACTIONS(902), + [aux_sym_cmd_identifier_token6] = ACTIONS(906), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_RPAREN] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(1366), + [sym_duration_unit] = ACTIONS(1368), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(307)] = { + [sym_comment] = STATE(307), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(902), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(904), + [anon_sym_mod] = ACTIONS(902), + [anon_sym_SLASH_SLASH] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_bit_DASHshl] = ACTIONS(902), + [anon_sym_bit_DASHshr] = ACTIONS(902), + [anon_sym_EQ_TILDE] = ACTIONS(902), + [anon_sym_BANG_TILDE] = ACTIONS(902), + [anon_sym_like] = ACTIONS(902), + [anon_sym_not_DASHlike] = ACTIONS(902), + [anon_sym_bit_DASHand] = ACTIONS(902), + [anon_sym_bit_DASHxor] = ACTIONS(902), + [anon_sym_bit_DASHor] = ACTIONS(902), + [anon_sym_and] = ACTIONS(902), + [anon_sym_xor] = ACTIONS(902), + [anon_sym_or] = ACTIONS(902), + [anon_sym_in2] = ACTIONS(902), + [anon_sym_not_DASHin] = ACTIONS(902), + [anon_sym_has] = ACTIONS(902), + [anon_sym_not_DASHhas] = ACTIONS(902), + [anon_sym_starts_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(902), + [anon_sym_ends_DASHwith] = ACTIONS(902), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(904), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(904), + [anon_sym_GT_EQ] = ACTIONS(902), + [aux_sym_cmd_identifier_token6] = ACTIONS(906), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(1370), + [sym_duration_unit] = ACTIONS(1372), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(308)] = { [sym_comment] = STATE(308), - [anon_sym_in] = ACTIONS(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(1316), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, [STATE(309)] = { [sym_comment] = STATE(309), - [ts_builtin_sym_end] = ACTIONS(884), - [anon_sym_in] = ACTIONS(858), - [anon_sym_STAR_STAR] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_mod] = ACTIONS(886), - [anon_sym_SLASH_SLASH] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_bit_DASHshl] = ACTIONS(886), - [anon_sym_bit_DASHshr] = ACTIONS(886), - [anon_sym_EQ_TILDE] = ACTIONS(886), - [anon_sym_BANG_TILDE] = ACTIONS(886), - [anon_sym_like] = ACTIONS(886), - [anon_sym_not_DASHlike] = ACTIONS(886), - [anon_sym_bit_DASHand] = ACTIONS(886), - [anon_sym_bit_DASHxor] = ACTIONS(886), - [anon_sym_bit_DASHor] = ACTIONS(886), - [anon_sym_and] = ACTIONS(886), - [anon_sym_xor] = ACTIONS(886), - [anon_sym_or] = ACTIONS(886), - [anon_sym_in2] = ACTIONS(886), - [anon_sym_not_DASHin] = ACTIONS(886), - [anon_sym_has] = ACTIONS(886), - [anon_sym_not_DASHhas] = ACTIONS(886), - [anon_sym_starts_DASHwith] = ACTIONS(886), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(886), - [anon_sym_ends_DASHwith] = ACTIONS(886), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(886), - [anon_sym_EQ_EQ] = ACTIONS(886), - [anon_sym_BANG_EQ] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_LT_EQ] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(888), - [anon_sym_GT_EQ] = ACTIONS(886), - [aux_sym_cmd_identifier_token6] = ACTIONS(890), - [sym__newline] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_err_GT_PIPE] = ACTIONS(858), - [anon_sym_out_GT_PIPE] = ACTIONS(858), - [anon_sym_e_GT_PIPE] = ACTIONS(858), - [anon_sym_o_GT_PIPE] = ACTIONS(858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), - [anon_sym_GT2] = ACTIONS(858), - [anon_sym_DASH2] = ACTIONS(858), - [anon_sym_STAR2] = ACTIONS(858), - [anon_sym_and2] = ACTIONS(858), - [anon_sym_xor2] = ACTIONS(858), - [anon_sym_or2] = ACTIONS(858), - [anon_sym_not_DASHin2] = ACTIONS(858), - [anon_sym_has2] = ACTIONS(858), - [anon_sym_not_DASHhas2] = ACTIONS(858), - [anon_sym_starts_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), - [anon_sym_ends_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), - [anon_sym_EQ_EQ2] = ACTIONS(858), - [anon_sym_BANG_EQ2] = ACTIONS(858), - [anon_sym_LT2] = ACTIONS(858), - [anon_sym_LT_EQ2] = ACTIONS(858), - [anon_sym_GT_EQ2] = ACTIONS(858), - [anon_sym_EQ_TILDE2] = ACTIONS(858), - [anon_sym_BANG_TILDE2] = ACTIONS(858), - [anon_sym_like2] = ACTIONS(858), - [anon_sym_not_DASHlike2] = ACTIONS(858), - [anon_sym_STAR_STAR2] = ACTIONS(858), - [anon_sym_PLUS_PLUS2] = ACTIONS(858), - [anon_sym_SLASH2] = ACTIONS(858), - [anon_sym_mod2] = ACTIONS(858), - [anon_sym_SLASH_SLASH2] = ACTIONS(858), - [anon_sym_PLUS2] = ACTIONS(858), - [anon_sym_bit_DASHshl2] = ACTIONS(858), - [anon_sym_bit_DASHshr2] = ACTIONS(858), - [anon_sym_bit_DASHand2] = ACTIONS(858), - [anon_sym_bit_DASHxor2] = ACTIONS(858), - [anon_sym_bit_DASHor2] = ACTIONS(858), - [anon_sym_DOT_DOT2] = ACTIONS(892), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(894), - [anon_sym_DOT_DOT_LT2] = ACTIONS(894), - [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_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)] = { @@ -71793,369 +72099,280 @@ 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(1364), + [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(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), [aux_sym__immediate_decimal_token5] = ACTIONS(1374), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, [STATE(312)] = { [sym_comment] = STATE(312), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), + [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(789), - [anon_sym_STAR_STAR] = ACTIONS(791), - [anon_sym_PLUS_PLUS] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_mod] = ACTIONS(791), - [anon_sym_SLASH_SLASH] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_bit_DASHshl] = ACTIONS(791), - [anon_sym_bit_DASHshr] = ACTIONS(791), - [anon_sym_EQ_TILDE] = ACTIONS(791), - [anon_sym_BANG_TILDE] = ACTIONS(791), - [anon_sym_like] = ACTIONS(791), - [anon_sym_not_DASHlike] = ACTIONS(791), - [anon_sym_bit_DASHand] = ACTIONS(791), - [anon_sym_bit_DASHxor] = ACTIONS(791), - [anon_sym_bit_DASHor] = ACTIONS(791), - [anon_sym_and] = ACTIONS(791), - [anon_sym_xor] = ACTIONS(791), - [anon_sym_or] = ACTIONS(791), - [anon_sym_in2] = ACTIONS(791), - [anon_sym_not_DASHin] = ACTIONS(791), - [anon_sym_has] = ACTIONS(791), - [anon_sym_not_DASHhas] = ACTIONS(791), - [anon_sym_starts_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), - [anon_sym_ends_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), - [anon_sym_EQ_EQ] = ACTIONS(791), - [anon_sym_BANG_EQ] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(791), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_GT_EQ] = ACTIONS(791), - [aux_sym_cmd_identifier_token6] = ACTIONS(789), - [sym__newline] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(789), - [anon_sym_err_GT_PIPE] = ACTIONS(789), - [anon_sym_out_GT_PIPE] = ACTIONS(789), - [anon_sym_e_GT_PIPE] = ACTIONS(789), - [anon_sym_o_GT_PIPE] = ACTIONS(789), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), - [anon_sym_GT2] = ACTIONS(789), - [anon_sym_DASH2] = ACTIONS(789), - [anon_sym_STAR2] = ACTIONS(789), - [anon_sym_and2] = ACTIONS(789), - [anon_sym_xor2] = ACTIONS(789), - [anon_sym_or2] = ACTIONS(789), - [anon_sym_not_DASHin2] = ACTIONS(789), - [anon_sym_has2] = ACTIONS(789), - [anon_sym_not_DASHhas2] = ACTIONS(789), - [anon_sym_starts_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), - [anon_sym_ends_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), - [anon_sym_EQ_EQ2] = ACTIONS(789), - [anon_sym_BANG_EQ2] = ACTIONS(789), - [anon_sym_LT2] = ACTIONS(789), - [anon_sym_LT_EQ2] = ACTIONS(789), - [anon_sym_GT_EQ2] = ACTIONS(789), - [anon_sym_EQ_TILDE2] = ACTIONS(789), - [anon_sym_BANG_TILDE2] = ACTIONS(789), - [anon_sym_like2] = ACTIONS(789), - [anon_sym_not_DASHlike2] = ACTIONS(789), - [anon_sym_STAR_STAR2] = ACTIONS(789), - [anon_sym_PLUS_PLUS2] = ACTIONS(789), - [anon_sym_SLASH2] = ACTIONS(789), - [anon_sym_mod2] = ACTIONS(789), - [anon_sym_SLASH_SLASH2] = ACTIONS(789), - [anon_sym_PLUS2] = ACTIONS(789), - [anon_sym_bit_DASHshl2] = ACTIONS(789), - [anon_sym_bit_DASHshr2] = ACTIONS(789), - [anon_sym_bit_DASHand2] = ACTIONS(789), - [anon_sym_bit_DASHxor2] = ACTIONS(789), - [anon_sym_bit_DASHor2] = ACTIONS(789), - [anon_sym_DOT_DOT2] = ACTIONS(789), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), - [anon_sym_DOT_DOT_LT2] = ACTIONS(791), - [sym_filesize_unit] = ACTIONS(789), - [sym_duration_unit] = ACTIONS(791), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, [STATE(314)] = { [sym_comment] = STATE(314), - [anon_sym_in] = ACTIONS(858), - [anon_sym_STAR_STAR] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_mod] = ACTIONS(968), - [anon_sym_SLASH_SLASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_bit_DASHshl] = ACTIONS(968), - [anon_sym_bit_DASHshr] = ACTIONS(968), - [anon_sym_EQ_TILDE] = ACTIONS(968), - [anon_sym_BANG_TILDE] = ACTIONS(968), - [anon_sym_like] = ACTIONS(968), - [anon_sym_not_DASHlike] = ACTIONS(968), - [anon_sym_bit_DASHand] = ACTIONS(968), - [anon_sym_bit_DASHxor] = ACTIONS(968), - [anon_sym_bit_DASHor] = ACTIONS(968), - [anon_sym_and] = ACTIONS(968), - [anon_sym_xor] = ACTIONS(968), - [anon_sym_or] = ACTIONS(968), - [anon_sym_in2] = ACTIONS(968), - [anon_sym_not_DASHin] = ACTIONS(968), - [anon_sym_has] = ACTIONS(968), - [anon_sym_not_DASHhas] = ACTIONS(968), - [anon_sym_starts_DASHwith] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(968), - [anon_sym_ends_DASHwith] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(968), - [anon_sym_EQ_EQ] = ACTIONS(968), - [anon_sym_BANG_EQ] = ACTIONS(968), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_EQ] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(968), - [aux_sym_cmd_identifier_token6] = ACTIONS(972), - [sym__newline] = ACTIONS(858), - [anon_sym_SEMI] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_err_GT_PIPE] = ACTIONS(858), - [anon_sym_out_GT_PIPE] = ACTIONS(858), - [anon_sym_e_GT_PIPE] = ACTIONS(858), - [anon_sym_o_GT_PIPE] = ACTIONS(858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), - [anon_sym_GT2] = ACTIONS(858), - [anon_sym_DASH2] = ACTIONS(858), - [anon_sym_STAR2] = ACTIONS(858), - [anon_sym_and2] = ACTIONS(858), - [anon_sym_xor2] = ACTIONS(858), - [anon_sym_or2] = ACTIONS(858), - [anon_sym_not_DASHin2] = ACTIONS(858), - [anon_sym_has2] = ACTIONS(858), - [anon_sym_not_DASHhas2] = ACTIONS(858), - [anon_sym_starts_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), - [anon_sym_ends_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), - [anon_sym_EQ_EQ2] = ACTIONS(858), - [anon_sym_BANG_EQ2] = ACTIONS(858), - [anon_sym_LT2] = ACTIONS(858), - [anon_sym_LT_EQ2] = ACTIONS(858), - [anon_sym_GT_EQ2] = ACTIONS(858), - [anon_sym_EQ_TILDE2] = ACTIONS(858), - [anon_sym_BANG_TILDE2] = ACTIONS(858), - [anon_sym_like2] = ACTIONS(858), - [anon_sym_not_DASHlike2] = ACTIONS(858), - [anon_sym_STAR_STAR2] = ACTIONS(858), - [anon_sym_PLUS_PLUS2] = ACTIONS(858), - [anon_sym_SLASH2] = ACTIONS(858), - [anon_sym_mod2] = ACTIONS(858), - [anon_sym_SLASH_SLASH2] = ACTIONS(858), - [anon_sym_PLUS2] = ACTIONS(858), - [anon_sym_bit_DASHshl2] = ACTIONS(858), - [anon_sym_bit_DASHshr2] = ACTIONS(858), - [anon_sym_bit_DASHand2] = ACTIONS(858), - [anon_sym_bit_DASHxor2] = ACTIONS(858), - [anon_sym_bit_DASHor2] = ACTIONS(858), - [anon_sym_DOT_DOT2] = ACTIONS(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(1376), - [sym_duration_unit] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(315)] = { - [sym_comment] = STATE(315), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -72243,8 +72460,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -72331,318 +72725,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(317)] = { - [sym_comment] = STATE(317), - [anon_sym_in] = ACTIONS(858), - [anon_sym_STAR_STAR] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_mod] = ACTIONS(968), - [anon_sym_SLASH_SLASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_bit_DASHshl] = ACTIONS(968), - [anon_sym_bit_DASHshr] = ACTIONS(968), - [anon_sym_EQ_TILDE] = ACTIONS(968), - [anon_sym_BANG_TILDE] = ACTIONS(968), - [anon_sym_like] = ACTIONS(968), - [anon_sym_not_DASHlike] = ACTIONS(968), - [anon_sym_bit_DASHand] = ACTIONS(968), - [anon_sym_bit_DASHxor] = ACTIONS(968), - [anon_sym_bit_DASHor] = ACTIONS(968), - [anon_sym_and] = ACTIONS(968), - [anon_sym_xor] = ACTIONS(968), - [anon_sym_or] = ACTIONS(968), - [anon_sym_in2] = ACTIONS(968), - [anon_sym_not_DASHin] = ACTIONS(968), - [anon_sym_has] = ACTIONS(968), - [anon_sym_not_DASHhas] = ACTIONS(968), - [anon_sym_starts_DASHwith] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(968), - [anon_sym_ends_DASHwith] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(968), - [anon_sym_EQ_EQ] = ACTIONS(968), - [anon_sym_BANG_EQ] = ACTIONS(968), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_EQ] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(968), - [aux_sym_cmd_identifier_token6] = ACTIONS(972), - [sym__newline] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(858), - [anon_sym_err_GT_PIPE] = ACTIONS(858), - [anon_sym_out_GT_PIPE] = ACTIONS(858), - [anon_sym_e_GT_PIPE] = ACTIONS(858), - [anon_sym_o_GT_PIPE] = ACTIONS(858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(858), - [anon_sym_GT2] = ACTIONS(858), - [anon_sym_DASH2] = ACTIONS(858), - [anon_sym_STAR2] = ACTIONS(858), - [anon_sym_and2] = ACTIONS(858), - [anon_sym_xor2] = ACTIONS(858), - [anon_sym_or2] = ACTIONS(858), - [anon_sym_not_DASHin2] = ACTIONS(858), - [anon_sym_has2] = ACTIONS(858), - [anon_sym_not_DASHhas2] = ACTIONS(858), - [anon_sym_starts_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), - [anon_sym_ends_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), - [anon_sym_EQ_EQ2] = ACTIONS(858), - [anon_sym_BANG_EQ2] = ACTIONS(858), - [anon_sym_LT2] = ACTIONS(858), - [anon_sym_LT_EQ2] = ACTIONS(858), - [anon_sym_GT_EQ2] = ACTIONS(858), - [anon_sym_EQ_TILDE2] = ACTIONS(858), - [anon_sym_BANG_TILDE2] = ACTIONS(858), - [anon_sym_like2] = ACTIONS(858), - [anon_sym_not_DASHlike2] = ACTIONS(858), - [anon_sym_STAR_STAR2] = ACTIONS(858), - [anon_sym_PLUS_PLUS2] = ACTIONS(858), - [anon_sym_SLASH2] = ACTIONS(858), - [anon_sym_mod2] = ACTIONS(858), - [anon_sym_SLASH_SLASH2] = ACTIONS(858), - [anon_sym_PLUS2] = ACTIONS(858), - [anon_sym_bit_DASHshl2] = ACTIONS(858), - [anon_sym_bit_DASHshr2] = ACTIONS(858), - [anon_sym_bit_DASHand2] = ACTIONS(858), - [anon_sym_bit_DASHxor2] = ACTIONS(858), - [anon_sym_bit_DASHor2] = ACTIONS(858), - [anon_sym_DOT_DOT2] = ACTIONS(866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(868), - [anon_sym_DOT_DOT_LT2] = ACTIONS(868), - [sym_filesize_unit] = ACTIONS(1380), - [sym_duration_unit] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(318)] = { [sym_comment] = STATE(318), - [anon_sym_in] = ACTIONS(789), - [anon_sym_STAR_STAR] = ACTIONS(791), - [anon_sym_PLUS_PLUS] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_mod] = ACTIONS(791), - [anon_sym_SLASH_SLASH] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_bit_DASHshl] = ACTIONS(791), - [anon_sym_bit_DASHshr] = ACTIONS(791), - [anon_sym_EQ_TILDE] = ACTIONS(791), - [anon_sym_BANG_TILDE] = ACTIONS(791), - [anon_sym_like] = ACTIONS(791), - [anon_sym_not_DASHlike] = ACTIONS(791), - [anon_sym_bit_DASHand] = ACTIONS(791), - [anon_sym_bit_DASHxor] = ACTIONS(791), - [anon_sym_bit_DASHor] = ACTIONS(791), - [anon_sym_and] = ACTIONS(791), - [anon_sym_xor] = ACTIONS(791), - [anon_sym_or] = ACTIONS(791), - [anon_sym_in2] = ACTIONS(791), - [anon_sym_not_DASHin] = ACTIONS(791), - [anon_sym_has] = ACTIONS(791), - [anon_sym_not_DASHhas] = ACTIONS(791), - [anon_sym_starts_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), - [anon_sym_ends_DASHwith] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), - [anon_sym_EQ_EQ] = ACTIONS(791), - [anon_sym_BANG_EQ] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(791), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_GT_EQ] = ACTIONS(791), - [aux_sym_cmd_identifier_token6] = ACTIONS(789), - [sym__newline] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(789), - [anon_sym_err_GT_PIPE] = ACTIONS(789), - [anon_sym_out_GT_PIPE] = ACTIONS(789), - [anon_sym_e_GT_PIPE] = ACTIONS(789), - [anon_sym_o_GT_PIPE] = ACTIONS(789), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), - [anon_sym_GT2] = ACTIONS(789), - [anon_sym_DASH2] = ACTIONS(789), - [anon_sym_STAR2] = ACTIONS(789), - [anon_sym_and2] = ACTIONS(789), - [anon_sym_xor2] = ACTIONS(789), - [anon_sym_or2] = ACTIONS(789), - [anon_sym_not_DASHin2] = ACTIONS(789), - [anon_sym_has2] = ACTIONS(789), - [anon_sym_not_DASHhas2] = ACTIONS(789), - [anon_sym_starts_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), - [anon_sym_ends_DASHwith2] = ACTIONS(789), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), - [anon_sym_EQ_EQ2] = ACTIONS(789), - [anon_sym_BANG_EQ2] = ACTIONS(789), - [anon_sym_LT2] = ACTIONS(789), - [anon_sym_LT_EQ2] = ACTIONS(789), - [anon_sym_GT_EQ2] = ACTIONS(789), - [anon_sym_EQ_TILDE2] = ACTIONS(789), - [anon_sym_BANG_TILDE2] = ACTIONS(789), - [anon_sym_like2] = ACTIONS(789), - [anon_sym_not_DASHlike2] = ACTIONS(789), - [anon_sym_STAR_STAR2] = ACTIONS(789), - [anon_sym_PLUS_PLUS2] = ACTIONS(789), - [anon_sym_SLASH2] = ACTIONS(789), - [anon_sym_mod2] = ACTIONS(789), - [anon_sym_SLASH_SLASH2] = ACTIONS(789), - [anon_sym_PLUS2] = ACTIONS(789), - [anon_sym_bit_DASHshl2] = ACTIONS(789), - [anon_sym_bit_DASHshr2] = ACTIONS(789), - [anon_sym_bit_DASHand2] = ACTIONS(789), - [anon_sym_bit_DASHxor2] = ACTIONS(789), - [anon_sym_bit_DASHor2] = ACTIONS(789), - [anon_sym_DOT_DOT2] = ACTIONS(789), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), - [anon_sym_DOT_DOT_LT2] = ACTIONS(791), - [sym_filesize_unit] = ACTIONS(789), - [sym_duration_unit] = ACTIONS(791), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, [STATE(319)] = { [sym_comment] = STATE(319), - [anon_sym_in] = ACTIONS(763), - [anon_sym_STAR_STAR] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_mod] = ACTIONS(765), - [anon_sym_SLASH_SLASH] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_bit_DASHshl] = ACTIONS(765), - [anon_sym_bit_DASHshr] = ACTIONS(765), - [anon_sym_EQ_TILDE] = ACTIONS(765), - [anon_sym_BANG_TILDE] = ACTIONS(765), - [anon_sym_like] = ACTIONS(765), - [anon_sym_not_DASHlike] = ACTIONS(765), - [anon_sym_bit_DASHand] = ACTIONS(765), - [anon_sym_bit_DASHxor] = ACTIONS(765), - [anon_sym_bit_DASHor] = ACTIONS(765), - [anon_sym_and] = ACTIONS(765), - [anon_sym_xor] = ACTIONS(765), - [anon_sym_or] = ACTIONS(765), - [anon_sym_in2] = ACTIONS(765), - [anon_sym_not_DASHin] = ACTIONS(765), - [anon_sym_has] = ACTIONS(765), - [anon_sym_not_DASHhas] = ACTIONS(765), - [anon_sym_starts_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(765), - [anon_sym_ends_DASHwith] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(765), - [anon_sym_BANG_EQ] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_LT_EQ] = ACTIONS(765), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_GT_EQ] = ACTIONS(765), - [aux_sym_cmd_identifier_token6] = ACTIONS(763), - [sym__newline] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_err_GT_PIPE] = ACTIONS(763), - [anon_sym_out_GT_PIPE] = ACTIONS(763), - [anon_sym_e_GT_PIPE] = ACTIONS(763), - [anon_sym_o_GT_PIPE] = ACTIONS(763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(763), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(763), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(763), - [anon_sym_xor2] = ACTIONS(763), - [anon_sym_or2] = ACTIONS(763), - [anon_sym_not_DASHin2] = ACTIONS(763), - [anon_sym_has2] = ACTIONS(763), - [anon_sym_not_DASHhas2] = ACTIONS(763), - [anon_sym_starts_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(763), - [anon_sym_ends_DASHwith2] = ACTIONS(763), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(763), - [anon_sym_EQ_EQ2] = ACTIONS(763), - [anon_sym_BANG_EQ2] = ACTIONS(763), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(763), - [anon_sym_GT_EQ2] = ACTIONS(763), - [anon_sym_EQ_TILDE2] = ACTIONS(763), - [anon_sym_BANG_TILDE2] = ACTIONS(763), - [anon_sym_like2] = ACTIONS(763), - [anon_sym_not_DASHlike2] = ACTIONS(763), - [anon_sym_STAR_STAR2] = ACTIONS(763), - [anon_sym_PLUS_PLUS2] = ACTIONS(763), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(763), - [anon_sym_SLASH_SLASH2] = ACTIONS(763), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(763), - [anon_sym_bit_DASHshr2] = ACTIONS(763), - [anon_sym_bit_DASHand2] = ACTIONS(763), - [anon_sym_bit_DASHxor2] = ACTIONS(763), - [anon_sym_bit_DASHor2] = ACTIONS(763), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), + [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(4342), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4441), - [sym__match_pattern_list_body] = STATE(4658), - [sym__match_pattern_list] = STATE(4454), - [sym__match_pattern_rest] = STATE(5063), - [sym__match_pattern_record] = STATE(4455), - [sym_expr_parenthesized] = STATE(3890), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4528), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4529), - [sym_val_bool] = STATE(4025), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3892), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4529), - [sym__val_number_decimal] = STATE(3427), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4529), - [sym_val_filesize] = STATE(4529), - [sym_val_binary] = STATE(4529), - [sym_val_string] = STATE(4529), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4491), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(5225), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym__table_head] = STATE(3723), - [sym_val_table] = STATE(4529), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(3893), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), + [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(370), - [aux_sym_parameter_repeat2] = STATE(4035), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1420), - [aux_sym_list_body_repeat1] = STATE(515), + [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), @@ -72683,53 +72989,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(321)] = { - [aux_sym__repeat_newline] = STATE(4342), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4441), - [sym__match_pattern_list_body] = STATE(4658), - [sym__match_pattern_list] = STATE(4454), - [sym__match_pattern_rest] = STATE(5063), - [sym__match_pattern_record] = STATE(4455), - [sym_expr_parenthesized] = STATE(3890), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4528), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4529), - [sym_val_bool] = STATE(4025), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3892), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4529), - [sym__val_number_decimal] = STATE(3427), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4529), - [sym_val_filesize] = STATE(4529), - [sym_val_binary] = STATE(4529), - [sym_val_string] = STATE(4529), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4491), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(5141), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym__table_head] = STATE(3723), - [sym_val_table] = STATE(4529), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(3893), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), + [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(370), - [aux_sym_parameter_repeat2] = STATE(4035), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1420), - [aux_sym_list_body_repeat1] = STATE(515), + [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), @@ -72770,53 +73076,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(322)] = { - [aux_sym__repeat_newline] = STATE(4342), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4441), - [sym__match_pattern_list_body] = STATE(4658), - [sym__match_pattern_list] = STATE(4454), - [sym__match_pattern_rest] = STATE(5063), - [sym__match_pattern_record] = STATE(4455), - [sym_expr_parenthesized] = STATE(3890), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4528), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4529), - [sym_val_bool] = STATE(4025), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3892), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4529), - [sym__val_number_decimal] = STATE(3427), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4529), - [sym_val_filesize] = STATE(4529), - [sym_val_binary] = STATE(4529), - [sym_val_string] = STATE(4529), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4491), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(5016), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym__table_head] = STATE(3723), - [sym_val_table] = STATE(4529), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(3893), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), + [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(370), - [aux_sym_parameter_repeat2] = STATE(4035), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1420), - [aux_sym_list_body_repeat1] = STATE(515), + [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), @@ -72858,851 +73164,1015 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(323)] = { [sym_comment] = STATE(323), - [anon_sym_in] = ACTIONS(1008), - [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(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_and2] = ACTIONS(1008), - [anon_sym_xor2] = ACTIONS(1008), - [anon_sym_or2] = ACTIONS(1008), - [anon_sym_not_DASHin2] = ACTIONS(1008), - [anon_sym_has2] = ACTIONS(1008), - [anon_sym_not_DASHhas2] = ACTIONS(1008), - [anon_sym_starts_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), - [anon_sym_ends_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), - [anon_sym_EQ_EQ2] = ACTIONS(1008), - [anon_sym_BANG_EQ2] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1008), - [anon_sym_GT_EQ2] = ACTIONS(1008), - [anon_sym_EQ_TILDE2] = ACTIONS(1008), - [anon_sym_BANG_TILDE2] = ACTIONS(1008), - [anon_sym_like2] = ACTIONS(1008), - [anon_sym_not_DASHlike2] = ACTIONS(1008), - [anon_sym_STAR_STAR2] = ACTIONS(1008), - [anon_sym_PLUS_PLUS2] = ACTIONS(1008), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1008), - [anon_sym_SLASH_SLASH2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1008), - [anon_sym_bit_DASHshr2] = ACTIONS(1008), - [anon_sym_bit_DASHand2] = ACTIONS(1008), - [anon_sym_bit_DASHxor2] = ACTIONS(1008), - [anon_sym_bit_DASHor2] = ACTIONS(1008), + [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(1008), - [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(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_RPAREN] = ACTIONS(1008), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_and2] = ACTIONS(1008), - [anon_sym_xor2] = ACTIONS(1008), - [anon_sym_or2] = ACTIONS(1008), - [anon_sym_not_DASHin2] = ACTIONS(1008), - [anon_sym_has2] = ACTIONS(1008), - [anon_sym_not_DASHhas2] = ACTIONS(1008), - [anon_sym_starts_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), - [anon_sym_ends_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), - [anon_sym_EQ_EQ2] = ACTIONS(1008), - [anon_sym_BANG_EQ2] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1008), - [anon_sym_GT_EQ2] = ACTIONS(1008), - [anon_sym_EQ_TILDE2] = ACTIONS(1008), - [anon_sym_BANG_TILDE2] = ACTIONS(1008), - [anon_sym_like2] = ACTIONS(1008), - [anon_sym_not_DASHlike2] = ACTIONS(1008), - [anon_sym_STAR_STAR2] = ACTIONS(1008), - [anon_sym_PLUS_PLUS2] = ACTIONS(1008), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1008), - [anon_sym_SLASH_SLASH2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1008), - [anon_sym_bit_DASHshr2] = ACTIONS(1008), - [anon_sym_bit_DASHand2] = ACTIONS(1008), - [anon_sym_bit_DASHxor2] = ACTIONS(1008), - [anon_sym_bit_DASHor2] = ACTIONS(1008), + [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), - [ts_builtin_sym_end] = ACTIONS(1030), - [anon_sym_in] = ACTIONS(1008), - [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(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_and2] = ACTIONS(1008), - [anon_sym_xor2] = ACTIONS(1008), - [anon_sym_or2] = ACTIONS(1008), - [anon_sym_not_DASHin2] = ACTIONS(1008), - [anon_sym_has2] = ACTIONS(1008), - [anon_sym_not_DASHhas2] = ACTIONS(1008), - [anon_sym_starts_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), - [anon_sym_ends_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), - [anon_sym_EQ_EQ2] = ACTIONS(1008), - [anon_sym_BANG_EQ2] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1008), - [anon_sym_GT_EQ2] = ACTIONS(1008), - [anon_sym_EQ_TILDE2] = ACTIONS(1008), - [anon_sym_BANG_TILDE2] = ACTIONS(1008), - [anon_sym_like2] = ACTIONS(1008), - [anon_sym_not_DASHlike2] = ACTIONS(1008), - [anon_sym_STAR_STAR2] = ACTIONS(1008), - [anon_sym_PLUS_PLUS2] = ACTIONS(1008), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1008), - [anon_sym_SLASH_SLASH2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1008), - [anon_sym_bit_DASHshr2] = ACTIONS(1008), - [anon_sym_bit_DASHand2] = ACTIONS(1008), - [anon_sym_bit_DASHxor2] = ACTIONS(1008), - [anon_sym_bit_DASHor2] = ACTIONS(1008), + [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(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(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(1008), - [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(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_and2] = ACTIONS(1008), - [anon_sym_xor2] = ACTIONS(1008), - [anon_sym_or2] = ACTIONS(1008), - [anon_sym_not_DASHin2] = ACTIONS(1008), - [anon_sym_has2] = ACTIONS(1008), - [anon_sym_not_DASHhas2] = ACTIONS(1008), - [anon_sym_starts_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), - [anon_sym_ends_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), - [anon_sym_EQ_EQ2] = ACTIONS(1008), - [anon_sym_BANG_EQ2] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1008), - [anon_sym_GT_EQ2] = ACTIONS(1008), - [anon_sym_EQ_TILDE2] = ACTIONS(1008), - [anon_sym_BANG_TILDE2] = ACTIONS(1008), - [anon_sym_like2] = ACTIONS(1008), - [anon_sym_not_DASHlike2] = ACTIONS(1008), - [anon_sym_STAR_STAR2] = ACTIONS(1008), - [anon_sym_PLUS_PLUS2] = ACTIONS(1008), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1008), - [anon_sym_SLASH_SLASH2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1008), - [anon_sym_bit_DASHshr2] = ACTIONS(1008), - [anon_sym_bit_DASHand2] = ACTIONS(1008), - [anon_sym_bit_DASHxor2] = ACTIONS(1008), - [anon_sym_bit_DASHor2] = ACTIONS(1008), + [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(1008), - [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(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_and2] = ACTIONS(1008), - [anon_sym_xor2] = ACTIONS(1008), - [anon_sym_or2] = ACTIONS(1008), - [anon_sym_not_DASHin2] = ACTIONS(1008), - [anon_sym_has2] = ACTIONS(1008), - [anon_sym_not_DASHhas2] = ACTIONS(1008), - [anon_sym_starts_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1008), - [anon_sym_ends_DASHwith2] = ACTIONS(1008), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1008), - [anon_sym_EQ_EQ2] = ACTIONS(1008), - [anon_sym_BANG_EQ2] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1008), - [anon_sym_GT_EQ2] = ACTIONS(1008), - [anon_sym_EQ_TILDE2] = ACTIONS(1008), - [anon_sym_BANG_TILDE2] = ACTIONS(1008), - [anon_sym_like2] = ACTIONS(1008), - [anon_sym_not_DASHlike2] = ACTIONS(1008), - [anon_sym_STAR_STAR2] = ACTIONS(1008), - [anon_sym_PLUS_PLUS2] = ACTIONS(1008), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1008), - [anon_sym_SLASH_SLASH2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1008), - [anon_sym_bit_DASHshr2] = ACTIONS(1008), - [anon_sym_bit_DASHand2] = ACTIONS(1008), - [anon_sym_bit_DASHxor2] = ACTIONS(1008), - [anon_sym_bit_DASHor2] = ACTIONS(1008), + [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(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(333)] = { - [sym__path_suffix] = STATE(390), + [sym_cell_path] = STATE(372), + [sym_path] = STATE(360), [sym_comment] = STATE(333), + [aux_sym__where_predicate_lhs_repeat1] = STATE(364), + [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [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(1448), + [anon_sym_PLUS_EQ] = ACTIONS(1448), + [anon_sym_DASH_EQ] = ACTIONS(1448), + [anon_sym_STAR_EQ] = ACTIONS(1448), + [anon_sym_SLASH_EQ] = ACTIONS(1448), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1448), + [anon_sym_in] = ACTIONS(1448), + [sym__newline] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_err_GT_PIPE] = ACTIONS(1448), + [anon_sym_out_GT_PIPE] = ACTIONS(1448), + [anon_sym_e_GT_PIPE] = ACTIONS(1448), + [anon_sym_o_GT_PIPE] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), + [anon_sym_RBRACK] = ACTIONS(1448), + [anon_sym_GT2] = ACTIONS(1448), + [anon_sym_DASH2] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_STAR2] = ACTIONS(1448), + [anon_sym_and2] = ACTIONS(1448), + [anon_sym_xor2] = ACTIONS(1448), + [anon_sym_or2] = ACTIONS(1448), + [anon_sym_not_DASHin2] = ACTIONS(1448), + [anon_sym_has2] = ACTIONS(1448), + [anon_sym_not_DASHhas2] = ACTIONS(1448), + [anon_sym_starts_DASHwith2] = ACTIONS(1448), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), + [anon_sym_ends_DASHwith2] = ACTIONS(1448), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), + [anon_sym_EQ_EQ2] = ACTIONS(1448), + [anon_sym_BANG_EQ2] = ACTIONS(1448), + [anon_sym_LT2] = ACTIONS(1448), + [anon_sym_LT_EQ2] = ACTIONS(1448), + [anon_sym_GT_EQ2] = ACTIONS(1448), + [anon_sym_EQ_TILDE2] = ACTIONS(1448), + [anon_sym_BANG_TILDE2] = ACTIONS(1448), + [anon_sym_like2] = ACTIONS(1448), + [anon_sym_not_DASHlike2] = ACTIONS(1448), + [anon_sym_STAR_STAR2] = ACTIONS(1448), + [anon_sym_PLUS_PLUS2] = ACTIONS(1448), + [anon_sym_SLASH2] = ACTIONS(1448), + [anon_sym_mod2] = ACTIONS(1448), + [anon_sym_SLASH_SLASH2] = ACTIONS(1448), + [anon_sym_PLUS2] = ACTIONS(1448), + [anon_sym_bit_DASHshl2] = ACTIONS(1448), + [anon_sym_bit_DASHshr2] = ACTIONS(1448), + [anon_sym_bit_DASHand2] = ACTIONS(1448), + [anon_sym_bit_DASHxor2] = ACTIONS(1448), + [anon_sym_bit_DASHor2] = ACTIONS(1448), + [anon_sym_DOT_DOT2] = ACTIONS(1448), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), + [sym__entry_separator] = ACTIONS(1450), + [anon_sym_COLON2] = ACTIONS(1448), + [anon_sym_QMARK2] = ACTIONS(1452), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1448), + [anon_sym_out_GT] = ACTIONS(1448), + [anon_sym_e_GT] = ACTIONS(1448), + [anon_sym_o_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT] = ACTIONS(1448), + [anon_sym_err_GT_GT] = ACTIONS(1448), + [anon_sym_out_GT_GT] = ACTIONS(1448), + [anon_sym_e_GT_GT] = ACTIONS(1448), + [anon_sym_o_GT_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(335)] = { + [sym_cell_path] = STATE(406), + [sym_path] = STATE(395), + [sym_comment] = STATE(335), + [aux_sym__where_predicate_lhs_repeat1] = STATE(342), [anon_sym_EQ] = ACTIONS(1442), [anon_sym_PLUS_EQ] = ACTIONS(1444), [anon_sym_DASH_EQ] = ACTIONS(1444), @@ -73760,9 +74230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), [anon_sym_COLON2] = ACTIONS(1444), - [anon_sym_QMARK2] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_DOT2] = ACTIONS(1442), + [anon_sym_DOT2] = ACTIONS(1454), [anon_sym_err_GT] = ACTIONS(1442), [anon_sym_out_GT] = ACTIONS(1442), [anon_sym_e_GT] = ACTIONS(1442), @@ -73781,89 +74249,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1444), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(334)] = { - [sym_cell_path] = STATE(411), - [sym_path] = STATE(396), - [sym_comment] = STATE(334), - [aux_sym__where_predicate_lhs_repeat1] = STATE(343), - [anon_sym_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1452), - [anon_sym_DASH_EQ] = ACTIONS(1452), - [anon_sym_STAR_EQ] = ACTIONS(1452), - [anon_sym_SLASH_EQ] = ACTIONS(1452), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1452), - [anon_sym_in] = ACTIONS(1452), - [sym__newline] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_err_GT_PIPE] = ACTIONS(1452), - [anon_sym_out_GT_PIPE] = ACTIONS(1452), - [anon_sym_e_GT_PIPE] = ACTIONS(1452), - [anon_sym_o_GT_PIPE] = ACTIONS(1452), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), - [anon_sym_RPAREN] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(1450), - [anon_sym_DASH2] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_STAR2] = ACTIONS(1450), - [anon_sym_and2] = ACTIONS(1452), - [anon_sym_xor2] = ACTIONS(1452), - [anon_sym_or2] = ACTIONS(1452), - [anon_sym_not_DASHin2] = ACTIONS(1452), - [anon_sym_has2] = ACTIONS(1452), - [anon_sym_not_DASHhas2] = ACTIONS(1452), - [anon_sym_starts_DASHwith2] = ACTIONS(1452), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), - [anon_sym_ends_DASHwith2] = ACTIONS(1452), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), - [anon_sym_EQ_EQ2] = ACTIONS(1452), - [anon_sym_BANG_EQ2] = ACTIONS(1452), - [anon_sym_LT2] = ACTIONS(1450), - [anon_sym_LT_EQ2] = ACTIONS(1452), - [anon_sym_GT_EQ2] = ACTIONS(1452), - [anon_sym_EQ_TILDE2] = ACTIONS(1452), - [anon_sym_BANG_TILDE2] = ACTIONS(1452), - [anon_sym_like2] = ACTIONS(1452), - [anon_sym_not_DASHlike2] = ACTIONS(1452), - [anon_sym_STAR_STAR2] = ACTIONS(1452), - [anon_sym_PLUS_PLUS2] = ACTIONS(1450), - [anon_sym_SLASH2] = ACTIONS(1450), - [anon_sym_mod2] = ACTIONS(1452), - [anon_sym_SLASH_SLASH2] = ACTIONS(1452), - [anon_sym_PLUS2] = ACTIONS(1450), - [anon_sym_bit_DASHshl2] = ACTIONS(1452), - [anon_sym_bit_DASHshr2] = ACTIONS(1452), - [anon_sym_bit_DASHand2] = ACTIONS(1452), - [anon_sym_bit_DASHxor2] = ACTIONS(1452), - [anon_sym_bit_DASHor2] = ACTIONS(1452), - [anon_sym_DOT_DOT2] = ACTIONS(1450), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), - [anon_sym_COLON2] = ACTIONS(1452), - [anon_sym_DOT2] = ACTIONS(1454), - [anon_sym_err_GT] = ACTIONS(1450), - [anon_sym_out_GT] = ACTIONS(1450), - [anon_sym_e_GT] = ACTIONS(1450), - [anon_sym_o_GT] = ACTIONS(1450), - [anon_sym_err_PLUSout_GT] = ACTIONS(1450), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), - [anon_sym_o_PLUSe_GT] = ACTIONS(1450), - [anon_sym_e_PLUSo_GT] = ACTIONS(1450), - [anon_sym_err_GT_GT] = ACTIONS(1452), - [anon_sym_out_GT_GT] = ACTIONS(1452), - [anon_sym_e_GT_GT] = ACTIONS(1452), - [anon_sym_o_GT_GT] = ACTIONS(1452), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), + [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(335)] = { - [sym_comment] = STATE(335), + [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), @@ -73882,11 +74351,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1456), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1456), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1456), - [anon_sym_RBRACK] = ACTIONS(1456), [anon_sym_GT2] = ACTIONS(1456), [anon_sym_DASH2] = ACTIONS(1456), [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1456), [anon_sym_STAR2] = ACTIONS(1456), [anon_sym_and2] = ACTIONS(1456), [anon_sym_xor2] = ACTIONS(1456), @@ -73923,7 +74390,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT2] = ACTIONS(1458), [sym__entry_separator] = ACTIONS(1458), [anon_sym_COLON2] = ACTIONS(1456), - [anon_sym_QMARK2] = ACTIONS(1460), + [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), @@ -73943,209 +74411,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1456), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(336)] = { - [sym__path_suffix] = STATE(351), - [sym_comment] = STATE(336), - [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_QMARK2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1442), - [anon_sym_err_GT] = ACTIONS(1442), - [anon_sym_out_GT] = ACTIONS(1442), - [anon_sym_e_GT] = ACTIONS(1442), - [anon_sym_o_GT] = ACTIONS(1442), - [anon_sym_err_PLUSout_GT] = ACTIONS(1442), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1442), - [anon_sym_o_PLUSe_GT] = ACTIONS(1442), - [anon_sym_e_PLUSo_GT] = ACTIONS(1442), - [anon_sym_err_GT_GT] = ACTIONS(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(337)] = { - [sym_cell_path] = STATE(373), - [sym_path] = STATE(349), - [sym_comment] = STATE(337), - [aux_sym__where_predicate_lhs_repeat1] = STATE(366), - [anon_sym_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1450), - [anon_sym_in] = ACTIONS(1450), - [sym__newline] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_err_GT_PIPE] = ACTIONS(1450), - [anon_sym_out_GT_PIPE] = ACTIONS(1450), - [anon_sym_e_GT_PIPE] = ACTIONS(1450), - [anon_sym_o_GT_PIPE] = ACTIONS(1450), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1450), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1450), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1450), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1450), - [anon_sym_GT2] = ACTIONS(1450), - [anon_sym_DASH2] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_STAR2] = ACTIONS(1450), - [anon_sym_and2] = ACTIONS(1450), - [anon_sym_xor2] = ACTIONS(1450), - [anon_sym_or2] = ACTIONS(1450), - [anon_sym_not_DASHin2] = ACTIONS(1450), - [anon_sym_has2] = ACTIONS(1450), - [anon_sym_not_DASHhas2] = ACTIONS(1450), - [anon_sym_starts_DASHwith2] = ACTIONS(1450), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1450), - [anon_sym_ends_DASHwith2] = ACTIONS(1450), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1450), - [anon_sym_EQ_EQ2] = ACTIONS(1450), - [anon_sym_BANG_EQ2] = ACTIONS(1450), - [anon_sym_LT2] = ACTIONS(1450), - [anon_sym_LT_EQ2] = ACTIONS(1450), - [anon_sym_GT_EQ2] = ACTIONS(1450), - [anon_sym_EQ_TILDE2] = ACTIONS(1450), - [anon_sym_BANG_TILDE2] = ACTIONS(1450), - [anon_sym_like2] = ACTIONS(1450), - [anon_sym_not_DASHlike2] = ACTIONS(1450), - [anon_sym_STAR_STAR2] = ACTIONS(1450), - [anon_sym_PLUS_PLUS2] = ACTIONS(1450), - [anon_sym_SLASH2] = ACTIONS(1450), - [anon_sym_mod2] = ACTIONS(1450), - [anon_sym_SLASH_SLASH2] = ACTIONS(1450), - [anon_sym_PLUS2] = ACTIONS(1450), - [anon_sym_bit_DASHshl2] = ACTIONS(1450), - [anon_sym_bit_DASHshr2] = ACTIONS(1450), - [anon_sym_bit_DASHand2] = ACTIONS(1450), - [anon_sym_bit_DASHxor2] = ACTIONS(1450), - [anon_sym_bit_DASHor2] = ACTIONS(1450), - [anon_sym_DOT_DOT2] = ACTIONS(1450), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), - [sym__entry_separator] = ACTIONS(1452), - [anon_sym_COLON2] = ACTIONS(1450), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1450), - [anon_sym_out_GT] = ACTIONS(1450), - [anon_sym_e_GT] = ACTIONS(1450), - [anon_sym_o_GT] = ACTIONS(1450), - [anon_sym_err_PLUSout_GT] = ACTIONS(1450), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), - [anon_sym_o_PLUSe_GT] = ACTIONS(1450), - [anon_sym_e_PLUSo_GT] = ACTIONS(1450), - [anon_sym_err_GT_GT] = ACTIONS(1450), - [anon_sym_out_GT_GT] = ACTIONS(1450), - [anon_sym_e_GT_GT] = ACTIONS(1450), - [anon_sym_o_GT_GT] = ACTIONS(1450), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1450), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1450), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1450), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(338)] = { - [aux_sym__repeat_newline] = STATE(4342), - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4491), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(4985), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym__table_head] = STATE(3694), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), + [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(459), - [aux_sym_parameter_repeat2] = STATE(4190), - [aux_sym_list_body_repeat1] = STATE(515), + [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), @@ -74205,9 +74511,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -74244,8 +74552,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), [sym__entry_separator] = ACTIONS(1498), [anon_sym_COLON2] = ACTIONS(1496), - [anon_sym_QMARK2] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1496), [anon_sym_DOT2] = ACTIONS(1496), [anon_sym_err_GT] = ACTIONS(1496), [anon_sym_out_GT] = ACTIONS(1496), @@ -74266,147 +74572,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [anon_sym_EQ] = ACTIONS(1500), - [anon_sym_PLUS_EQ] = ACTIONS(1500), - [anon_sym_DASH_EQ] = ACTIONS(1500), - [anon_sym_STAR_EQ] = ACTIONS(1500), - [anon_sym_SLASH_EQ] = ACTIONS(1500), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1500), - [anon_sym_in] = ACTIONS(1500), - [sym__newline] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1500), - [anon_sym_err_GT_PIPE] = ACTIONS(1500), - [anon_sym_out_GT_PIPE] = ACTIONS(1500), - [anon_sym_e_GT_PIPE] = ACTIONS(1500), - [anon_sym_o_GT_PIPE] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1500), - [anon_sym_GT2] = ACTIONS(1500), - [anon_sym_DASH2] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1500), - [anon_sym_STAR2] = ACTIONS(1500), - [anon_sym_and2] = ACTIONS(1500), - [anon_sym_xor2] = ACTIONS(1500), - [anon_sym_or2] = ACTIONS(1500), - [anon_sym_not_DASHin2] = ACTIONS(1500), - [anon_sym_has2] = ACTIONS(1500), - [anon_sym_not_DASHhas2] = ACTIONS(1500), - [anon_sym_starts_DASHwith2] = ACTIONS(1500), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1500), - [anon_sym_ends_DASHwith2] = ACTIONS(1500), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1500), - [anon_sym_EQ_EQ2] = ACTIONS(1500), - [anon_sym_BANG_EQ2] = ACTIONS(1500), - [anon_sym_LT2] = ACTIONS(1500), - [anon_sym_LT_EQ2] = ACTIONS(1500), - [anon_sym_GT_EQ2] = ACTIONS(1500), - [anon_sym_EQ_TILDE2] = ACTIONS(1500), - [anon_sym_BANG_TILDE2] = ACTIONS(1500), - [anon_sym_like2] = ACTIONS(1500), - [anon_sym_not_DASHlike2] = ACTIONS(1500), - [anon_sym_STAR_STAR2] = ACTIONS(1500), - [anon_sym_PLUS_PLUS2] = ACTIONS(1500), - [anon_sym_SLASH2] = ACTIONS(1500), - [anon_sym_mod2] = ACTIONS(1500), - [anon_sym_SLASH_SLASH2] = ACTIONS(1500), - [anon_sym_PLUS2] = ACTIONS(1500), - [anon_sym_bit_DASHshl2] = ACTIONS(1500), - [anon_sym_bit_DASHshr2] = ACTIONS(1500), - [anon_sym_bit_DASHand2] = ACTIONS(1500), - [anon_sym_bit_DASHxor2] = ACTIONS(1500), - [anon_sym_bit_DASHor2] = ACTIONS(1500), - [anon_sym_DOT_DOT2] = ACTIONS(1500), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), - [sym__entry_separator] = ACTIONS(1502), - [anon_sym_COLON2] = ACTIONS(1500), - [anon_sym_QMARK2] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_DOT2] = ACTIONS(1500), - [anon_sym_err_GT] = ACTIONS(1500), - [anon_sym_out_GT] = ACTIONS(1500), - [anon_sym_e_GT] = ACTIONS(1500), - [anon_sym_o_GT] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT] = ACTIONS(1500), - [anon_sym_err_GT_GT] = ACTIONS(1500), - [anon_sym_out_GT_GT] = ACTIONS(1500), - [anon_sym_e_GT_GT] = ACTIONS(1500), - [anon_sym_o_GT_GT] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(103), + [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(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_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(1504), + [anon_sym_RBRACE] = ACTIONS(1506), [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_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(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_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(1504), - [anon_sym_SLASH_SLASH2] = ACTIONS(1504), + [anon_sym_mod2] = ACTIONS(1506), + [anon_sym_SLASH_SLASH2] = ACTIONS(1506), [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_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), - [sym__entry_separator] = ACTIONS(1506), - [anon_sym_COLON2] = ACTIONS(1504), - [anon_sym_QMARK2] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DOT2] = ACTIONS(1504), + [anon_sym_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), @@ -74415,20 +74801,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), [anon_sym_o_PLUSe_GT] = ACTIONS(1504), [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(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), + [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(342)] = { - [sym_path] = STATE(396), - [sym_comment] = STATE(342), - [aux_sym__where_predicate_lhs_repeat1] = STATE(342), + [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), @@ -74505,88 +74891,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(343)] = { - [sym_path] = STATE(396), - [sym_comment] = STATE(343), - [aux_sym__where_predicate_lhs_repeat1] = STATE(342), - [anon_sym_EQ] = ACTIONS(1515), - [anon_sym_PLUS_EQ] = ACTIONS(1517), - [anon_sym_DASH_EQ] = ACTIONS(1517), - [anon_sym_STAR_EQ] = ACTIONS(1517), - [anon_sym_SLASH_EQ] = ACTIONS(1517), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1517), - [anon_sym_in] = ACTIONS(1517), - [sym__newline] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1517), - [anon_sym_PIPE] = ACTIONS(1517), - [anon_sym_err_GT_PIPE] = ACTIONS(1517), - [anon_sym_out_GT_PIPE] = ACTIONS(1517), - [anon_sym_e_GT_PIPE] = ACTIONS(1517), - [anon_sym_o_GT_PIPE] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1517), - [anon_sym_RPAREN] = ACTIONS(1517), - [anon_sym_GT2] = ACTIONS(1515), - [anon_sym_DASH2] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_STAR2] = ACTIONS(1515), - [anon_sym_and2] = ACTIONS(1517), - [anon_sym_xor2] = ACTIONS(1517), - [anon_sym_or2] = ACTIONS(1517), - [anon_sym_not_DASHin2] = ACTIONS(1517), - [anon_sym_has2] = ACTIONS(1517), - [anon_sym_not_DASHhas2] = ACTIONS(1517), - [anon_sym_starts_DASHwith2] = ACTIONS(1517), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1517), - [anon_sym_ends_DASHwith2] = ACTIONS(1517), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1517), - [anon_sym_EQ_EQ2] = ACTIONS(1517), - [anon_sym_BANG_EQ2] = ACTIONS(1517), - [anon_sym_LT2] = ACTIONS(1515), - [anon_sym_LT_EQ2] = ACTIONS(1517), - [anon_sym_GT_EQ2] = ACTIONS(1517), - [anon_sym_EQ_TILDE2] = ACTIONS(1517), - [anon_sym_BANG_TILDE2] = ACTIONS(1517), - [anon_sym_like2] = ACTIONS(1517), - [anon_sym_not_DASHlike2] = ACTIONS(1517), - [anon_sym_STAR_STAR2] = ACTIONS(1517), - [anon_sym_PLUS_PLUS2] = ACTIONS(1515), - [anon_sym_SLASH2] = ACTIONS(1515), - [anon_sym_mod2] = ACTIONS(1517), - [anon_sym_SLASH_SLASH2] = ACTIONS(1517), - [anon_sym_PLUS2] = ACTIONS(1515), - [anon_sym_bit_DASHshl2] = ACTIONS(1517), - [anon_sym_bit_DASHshr2] = ACTIONS(1517), - [anon_sym_bit_DASHand2] = ACTIONS(1517), - [anon_sym_bit_DASHxor2] = ACTIONS(1517), - [anon_sym_bit_DASHor2] = ACTIONS(1517), - [anon_sym_DOT_DOT2] = ACTIONS(1515), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1517), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1517), - [anon_sym_COLON2] = ACTIONS(1517), - [anon_sym_DOT2] = ACTIONS(1454), - [anon_sym_err_GT] = ACTIONS(1515), - [anon_sym_out_GT] = ACTIONS(1515), - [anon_sym_e_GT] = ACTIONS(1515), - [anon_sym_o_GT] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT] = ACTIONS(1515), - [anon_sym_err_GT_GT] = ACTIONS(1517), - [anon_sym_out_GT_GT] = ACTIONS(1517), - [anon_sym_e_GT_GT] = ACTIONS(1517), - [anon_sym_o_GT_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1517), - [anon_sym_POUND] = ACTIONS(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), @@ -74665,8 +75131,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(345)] = { - [sym_comment] = STATE(345), + [STATE(347)] = { + [sym_comment] = STATE(347), [anon_sym_EQ] = ACTIONS(1523), [anon_sym_PLUS_EQ] = ACTIONS(1525), [anon_sym_DASH_EQ] = ACTIONS(1525), @@ -74745,8 +75211,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1525), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(346)] = { - [sym_comment] = STATE(346), + [STATE(348)] = { + [sym_comment] = STATE(348), [anon_sym_EQ] = ACTIONS(1527), [anon_sym_PLUS_EQ] = ACTIONS(1529), [anon_sym_DASH_EQ] = ACTIONS(1529), @@ -74825,169 +75291,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1529), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(347)] = { - [aux_sym__repeat_newline] = STATE(4342), - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4491), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(5009), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym__table_head] = STATE(3673), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), - [sym_comment] = STATE(347), - [aux_sym__types_body_repeat1] = STATE(459), - [aux_sym_parameter_repeat2] = STATE(4190), - [aux_sym_list_body_repeat1] = STATE(515), - [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(1531), - [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(348)] = { - [sym_comment] = STATE(348), - [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_QMARK2] = ACTIONS(1498), - [anon_sym_BANG] = 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(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(349)] = { [sym_comment] = STATE(349), - [anon_sym_EQ] = 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), @@ -75005,12 +75311,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1533), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1533), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1533), - [anon_sym_RBRACK] = ACTIONS(1533), - [anon_sym_GT2] = ACTIONS(1533), - [anon_sym_DASH2] = ACTIONS(1533), + [anon_sym_RPAREN] = ACTIONS(1533), + [anon_sym_GT2] = ACTIONS(1531), + [anon_sym_DASH2] = ACTIONS(1531), [anon_sym_RBRACE] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1533), - [anon_sym_STAR2] = ACTIONS(1533), + [anon_sym_STAR2] = ACTIONS(1531), [anon_sym_and2] = ACTIONS(1533), [anon_sym_xor2] = ACTIONS(1533), [anon_sym_or2] = ACTIONS(1533), @@ -75023,7 +75328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1533), [anon_sym_EQ_EQ2] = ACTIONS(1533), [anon_sym_BANG_EQ2] = ACTIONS(1533), - [anon_sym_LT2] = ACTIONS(1533), + [anon_sym_LT2] = ACTIONS(1531), [anon_sym_LT_EQ2] = ACTIONS(1533), [anon_sym_GT_EQ2] = ACTIONS(1533), [anon_sym_EQ_TILDE2] = ACTIONS(1533), @@ -75031,30 +75336,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1533), [anon_sym_not_DASHlike2] = ACTIONS(1533), [anon_sym_STAR_STAR2] = ACTIONS(1533), - [anon_sym_PLUS_PLUS2] = ACTIONS(1533), - [anon_sym_SLASH2] = ACTIONS(1533), + [anon_sym_PLUS_PLUS2] = ACTIONS(1531), + [anon_sym_SLASH2] = ACTIONS(1531), [anon_sym_mod2] = ACTIONS(1533), [anon_sym_SLASH_SLASH2] = ACTIONS(1533), - [anon_sym_PLUS2] = 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(1533), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1535), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1535), - [sym__entry_separator] = ACTIONS(1535), + [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_DOT2] = ACTIONS(1533), - [anon_sym_err_GT] = ACTIONS(1533), - [anon_sym_out_GT] = ACTIONS(1533), - [anon_sym_e_GT] = ACTIONS(1533), - [anon_sym_o_GT] = ACTIONS(1533), - [anon_sym_err_PLUSout_GT] = ACTIONS(1533), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1533), - [anon_sym_o_PLUSe_GT] = ACTIONS(1533), - [anon_sym_e_PLUSo_GT] = ACTIONS(1533), + [anon_sym_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), @@ -75063,91 +75369,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1533), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1533), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1533), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(350)] = { [sym_comment] = STATE(350), - [anon_sym_EQ] = ACTIONS(1500), - [anon_sym_PLUS_EQ] = ACTIONS(1502), - [anon_sym_DASH_EQ] = ACTIONS(1502), - [anon_sym_STAR_EQ] = ACTIONS(1502), - [anon_sym_SLASH_EQ] = ACTIONS(1502), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1502), - [anon_sym_in] = ACTIONS(1502), - [sym__newline] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_err_GT_PIPE] = ACTIONS(1502), - [anon_sym_out_GT_PIPE] = ACTIONS(1502), - [anon_sym_e_GT_PIPE] = ACTIONS(1502), - [anon_sym_o_GT_PIPE] = ACTIONS(1502), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), - [anon_sym_RPAREN] = ACTIONS(1502), - [anon_sym_GT2] = ACTIONS(1500), - [anon_sym_DASH2] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_STAR2] = ACTIONS(1500), - [anon_sym_and2] = ACTIONS(1502), - [anon_sym_xor2] = ACTIONS(1502), - [anon_sym_or2] = ACTIONS(1502), - [anon_sym_not_DASHin2] = ACTIONS(1502), - [anon_sym_has2] = ACTIONS(1502), - [anon_sym_not_DASHhas2] = ACTIONS(1502), - [anon_sym_starts_DASHwith2] = ACTIONS(1502), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1502), - [anon_sym_ends_DASHwith2] = ACTIONS(1502), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1502), - [anon_sym_EQ_EQ2] = ACTIONS(1502), - [anon_sym_BANG_EQ2] = ACTIONS(1502), - [anon_sym_LT2] = ACTIONS(1500), - [anon_sym_LT_EQ2] = ACTIONS(1502), - [anon_sym_GT_EQ2] = ACTIONS(1502), - [anon_sym_EQ_TILDE2] = ACTIONS(1502), - [anon_sym_BANG_TILDE2] = ACTIONS(1502), - [anon_sym_like2] = ACTIONS(1502), - [anon_sym_not_DASHlike2] = ACTIONS(1502), - [anon_sym_STAR_STAR2] = ACTIONS(1502), - [anon_sym_PLUS_PLUS2] = ACTIONS(1500), - [anon_sym_SLASH2] = ACTIONS(1500), - [anon_sym_mod2] = ACTIONS(1502), - [anon_sym_SLASH_SLASH2] = ACTIONS(1502), - [anon_sym_PLUS2] = ACTIONS(1500), - [anon_sym_bit_DASHshl2] = ACTIONS(1502), - [anon_sym_bit_DASHshr2] = ACTIONS(1502), - [anon_sym_bit_DASHand2] = ACTIONS(1502), - [anon_sym_bit_DASHxor2] = ACTIONS(1502), - [anon_sym_bit_DASHor2] = ACTIONS(1502), - [anon_sym_DOT_DOT2] = ACTIONS(1500), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), - [anon_sym_COLON2] = ACTIONS(1502), - [anon_sym_QMARK2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_DOT2] = ACTIONS(1500), - [anon_sym_err_GT] = ACTIONS(1500), - [anon_sym_out_GT] = ACTIONS(1500), - [anon_sym_e_GT] = ACTIONS(1500), - [anon_sym_o_GT] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT] = ACTIONS(1500), - [anon_sym_err_GT_GT] = ACTIONS(1502), - [anon_sym_out_GT_GT] = ACTIONS(1502), - [anon_sym_e_GT_GT] = ACTIONS(1502), - [anon_sym_o_GT_GT] = ACTIONS(1502), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(351)] = { - [sym_comment] = STATE(351), - [anon_sym_EQ] = 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), @@ -75165,12 +75391,11 @@ 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_RBRACK] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1537), - [anon_sym_DASH2] = ACTIONS(1537), + [anon_sym_RPAREN] = ACTIONS(1537), + [anon_sym_GT2] = ACTIONS(1535), + [anon_sym_DASH2] = ACTIONS(1535), [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1537), + [anon_sym_STAR2] = ACTIONS(1535), [anon_sym_and2] = ACTIONS(1537), [anon_sym_xor2] = ACTIONS(1537), [anon_sym_or2] = ACTIONS(1537), @@ -75183,7 +75408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), [anon_sym_EQ_EQ2] = ACTIONS(1537), [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = 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), @@ -75191,30 +75416,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(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(1537), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1539), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1539), - [sym__entry_separator] = ACTIONS(1539), + [anon_sym_DOT_DOT2] = ACTIONS(1535), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), [anon_sym_COLON2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1537), - [anon_sym_out_GT] = ACTIONS(1537), - [anon_sym_e_GT] = ACTIONS(1537), - [anon_sym_o_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT] = 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), @@ -75223,11 +75449,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(103), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(352)] = { - [sym_comment] = STATE(352), - [anon_sym_EQ] = ACTIONS(1541), + [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), @@ -75245,12 +75471,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_RBRACK] = ACTIONS(1541), - [anon_sym_GT2] = ACTIONS(1541), - [anon_sym_DASH2] = ACTIONS(1541), + [anon_sym_RPAREN] = ACTIONS(1541), + [anon_sym_GT2] = ACTIONS(1539), + [anon_sym_DASH2] = ACTIONS(1539), [anon_sym_RBRACE] = ACTIONS(1541), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_STAR2] = ACTIONS(1541), + [anon_sym_STAR2] = ACTIONS(1539), [anon_sym_and2] = ACTIONS(1541), [anon_sym_xor2] = ACTIONS(1541), [anon_sym_or2] = ACTIONS(1541), @@ -75263,7 +75488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1541), [anon_sym_EQ_EQ2] = ACTIONS(1541), [anon_sym_BANG_EQ2] = ACTIONS(1541), - [anon_sym_LT2] = ACTIONS(1541), + [anon_sym_LT2] = ACTIONS(1539), [anon_sym_LT_EQ2] = ACTIONS(1541), [anon_sym_GT_EQ2] = ACTIONS(1541), [anon_sym_EQ_TILDE2] = ACTIONS(1541), @@ -75271,30 +75496,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1541), [anon_sym_not_DASHlike2] = ACTIONS(1541), [anon_sym_STAR_STAR2] = ACTIONS(1541), - [anon_sym_PLUS_PLUS2] = ACTIONS(1541), - [anon_sym_SLASH2] = ACTIONS(1541), + [anon_sym_PLUS_PLUS2] = ACTIONS(1539), + [anon_sym_SLASH2] = ACTIONS(1539), [anon_sym_mod2] = ACTIONS(1541), [anon_sym_SLASH_SLASH2] = ACTIONS(1541), - [anon_sym_PLUS2] = 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(1541), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1543), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1543), - [sym__entry_separator] = ACTIONS(1543), + [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_DOT2] = ACTIONS(1541), - [anon_sym_err_GT] = ACTIONS(1541), - [anon_sym_out_GT] = ACTIONS(1541), - [anon_sym_e_GT] = ACTIONS(1541), - [anon_sym_o_GT] = ACTIONS(1541), - [anon_sym_err_PLUSout_GT] = ACTIONS(1541), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1541), - [anon_sym_o_PLUSe_GT] = ACTIONS(1541), - [anon_sym_e_PLUSo_GT] = ACTIONS(1541), + [anon_sym_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), @@ -75303,129 +75529,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(103), - }, - [STATE(353)] = { - [aux_sym__repeat_newline] = STATE(4342), - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4491), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(4988), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym__table_head] = STATE(3737), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), - [sym_comment] = STATE(353), - [aux_sym__types_body_repeat1] = STATE(459), - [aux_sym_parameter_repeat2] = STATE(4190), - [aux_sym_list_body_repeat1] = STATE(515), - [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(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(354)] = { - [aux_sym__repeat_newline] = STATE(4342), - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4491), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(5141), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym__table_head] = STATE(3761), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), - [sym_comment] = STATE(354), - [aux_sym__types_body_repeat1] = STATE(459), - [aux_sym_parameter_repeat2] = STATE(4190), - [aux_sym_list_body_repeat1] = STATE(515), + [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), @@ -75434,7 +75580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1472), [sym__newline] = ACTIONS(1474), [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_RBRACK] = ACTIONS(1547), + [anon_sym_RBRACK] = ACTIONS(1543), [anon_sym_LPAREN] = ACTIONS(1396), [anon_sym_COMMA] = ACTIONS(1480), [anon_sym_DOLLAR] = ACTIONS(1400), @@ -75465,88 +75611,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(355)] = { - [sym_comment] = STATE(355), - [anon_sym_EQ] = ACTIONS(1504), - [anon_sym_PLUS_EQ] = ACTIONS(1506), - [anon_sym_DASH_EQ] = ACTIONS(1506), - [anon_sym_STAR_EQ] = ACTIONS(1506), - [anon_sym_SLASH_EQ] = ACTIONS(1506), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(1506), - [sym__newline] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_err_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_GT_PIPE] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_GT2] = ACTIONS(1504), - [anon_sym_DASH2] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_STAR2] = ACTIONS(1504), - [anon_sym_and2] = ACTIONS(1506), - [anon_sym_xor2] = ACTIONS(1506), - [anon_sym_or2] = ACTIONS(1506), - [anon_sym_not_DASHin2] = ACTIONS(1506), - [anon_sym_has2] = ACTIONS(1506), - [anon_sym_not_DASHhas2] = ACTIONS(1506), - [anon_sym_starts_DASHwith2] = ACTIONS(1506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1506), - [anon_sym_ends_DASHwith2] = ACTIONS(1506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1506), - [anon_sym_EQ_EQ2] = ACTIONS(1506), - [anon_sym_BANG_EQ2] = ACTIONS(1506), - [anon_sym_LT2] = ACTIONS(1504), - [anon_sym_LT_EQ2] = ACTIONS(1506), - [anon_sym_GT_EQ2] = ACTIONS(1506), - [anon_sym_EQ_TILDE2] = ACTIONS(1506), - [anon_sym_BANG_TILDE2] = ACTIONS(1506), - [anon_sym_like2] = ACTIONS(1506), - [anon_sym_not_DASHlike2] = ACTIONS(1506), - [anon_sym_STAR_STAR2] = ACTIONS(1506), - [anon_sym_PLUS_PLUS2] = ACTIONS(1504), - [anon_sym_SLASH2] = ACTIONS(1504), - [anon_sym_mod2] = ACTIONS(1506), - [anon_sym_SLASH_SLASH2] = ACTIONS(1506), - [anon_sym_PLUS2] = ACTIONS(1504), - [anon_sym_bit_DASHshl2] = ACTIONS(1506), - [anon_sym_bit_DASHshr2] = ACTIONS(1506), - [anon_sym_bit_DASHand2] = ACTIONS(1506), - [anon_sym_bit_DASHxor2] = ACTIONS(1506), - [anon_sym_bit_DASHor2] = ACTIONS(1506), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [anon_sym_COLON2] = ACTIONS(1506), - [anon_sym_QMARK2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DOT2] = ACTIONS(1504), - [anon_sym_err_GT] = ACTIONS(1504), - [anon_sym_out_GT] = ACTIONS(1504), - [anon_sym_e_GT] = ACTIONS(1504), - [anon_sym_o_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(356)] = { - [sym_comment] = STATE(356), + [STATE(353)] = { + [sym_comment] = STATE(353), [anon_sym_EQ] = ACTIONS(1519), [anon_sym_PLUS_EQ] = ACTIONS(1519), [anon_sym_DASH_EQ] = ACTIONS(1519), @@ -75625,8 +75691,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(357)] = { - [sym_comment] = STATE(357), + [STATE(354)] = { + [sym_comment] = STATE(354), [anon_sym_EQ] = ACTIONS(1523), [anon_sym_PLUS_EQ] = ACTIONS(1523), [anon_sym_DASH_EQ] = ACTIONS(1523), @@ -75705,8 +75771,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1523), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(358)] = { - [sym_comment] = STATE(358), + [STATE(355)] = { + [sym_comment] = STATE(355), [anon_sym_EQ] = ACTIONS(1527), [anon_sym_PLUS_EQ] = ACTIONS(1527), [anon_sym_DASH_EQ] = ACTIONS(1527), @@ -75785,47 +75851,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1527), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(359)] = { - [aux_sym__repeat_newline] = STATE(4342), - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4491), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(5225), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym__table_head] = STATE(3761), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), - [sym_comment] = STATE(359), - [aux_sym__types_body_repeat1] = STATE(459), - [aux_sym_parameter_repeat2] = STATE(4190), - [aux_sym_list_body_repeat1] = STATE(515), + [STATE(356)] = { + [sym_comment] = STATE(356), + [anon_sym_EQ] = ACTIONS(1531), + [anon_sym_PLUS_EQ] = ACTIONS(1531), + [anon_sym_DASH_EQ] = ACTIONS(1531), + [anon_sym_STAR_EQ] = ACTIONS(1531), + [anon_sym_SLASH_EQ] = ACTIONS(1531), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1531), + [anon_sym_in] = ACTIONS(1531), + [sym__newline] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1531), + [anon_sym_err_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_GT_PIPE] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1531), + [anon_sym_GT2] = ACTIONS(1531), + [anon_sym_DASH2] = ACTIONS(1531), + [anon_sym_RBRACE] = ACTIONS(1531), + [anon_sym_STAR2] = ACTIONS(1531), + [anon_sym_and2] = ACTIONS(1531), + [anon_sym_xor2] = ACTIONS(1531), + [anon_sym_or2] = ACTIONS(1531), + [anon_sym_not_DASHin2] = ACTIONS(1531), + [anon_sym_has2] = ACTIONS(1531), + [anon_sym_not_DASHhas2] = ACTIONS(1531), + [anon_sym_starts_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1531), + [anon_sym_ends_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1531), + [anon_sym_EQ_EQ2] = ACTIONS(1531), + [anon_sym_BANG_EQ2] = ACTIONS(1531), + [anon_sym_LT2] = ACTIONS(1531), + [anon_sym_LT_EQ2] = ACTIONS(1531), + [anon_sym_GT_EQ2] = ACTIONS(1531), + [anon_sym_EQ_TILDE2] = ACTIONS(1531), + [anon_sym_BANG_TILDE2] = ACTIONS(1531), + [anon_sym_like2] = ACTIONS(1531), + [anon_sym_not_DASHlike2] = ACTIONS(1531), + [anon_sym_STAR_STAR2] = ACTIONS(1531), + [anon_sym_PLUS_PLUS2] = ACTIONS(1531), + [anon_sym_SLASH2] = ACTIONS(1531), + [anon_sym_mod2] = ACTIONS(1531), + [anon_sym_SLASH_SLASH2] = ACTIONS(1531), + [anon_sym_PLUS2] = ACTIONS(1531), + [anon_sym_bit_DASHshl2] = ACTIONS(1531), + [anon_sym_bit_DASHshr2] = ACTIONS(1531), + [anon_sym_bit_DASHand2] = ACTIONS(1531), + [anon_sym_bit_DASHxor2] = ACTIONS(1531), + [anon_sym_bit_DASHor2] = ACTIONS(1531), + [anon_sym_DOT_DOT2] = ACTIONS(1531), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1533), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1533), + [sym__entry_separator] = ACTIONS(1533), + [anon_sym_COLON2] = ACTIONS(1531), + [anon_sym_QMARK2] = ACTIONS(1531), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_DOT2] = ACTIONS(1531), + [anon_sym_err_GT] = ACTIONS(1531), + [anon_sym_out_GT] = ACTIONS(1531), + [anon_sym_e_GT] = ACTIONS(1531), + [anon_sym_o_GT] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT] = ACTIONS(1531), + [anon_sym_err_GT_GT] = ACTIONS(1531), + [anon_sym_out_GT_GT] = ACTIONS(1531), + [anon_sym_e_GT_GT] = ACTIONS(1531), + [anon_sym_o_GT_GT] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1531), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(357)] = { + [sym_comment] = STATE(357), + [anon_sym_EQ] = ACTIONS(1535), + [anon_sym_PLUS_EQ] = ACTIONS(1535), + [anon_sym_DASH_EQ] = ACTIONS(1535), + [anon_sym_STAR_EQ] = ACTIONS(1535), + [anon_sym_SLASH_EQ] = ACTIONS(1535), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1535), + [anon_sym_in] = ACTIONS(1535), + [sym__newline] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_err_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_GT_PIPE] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), + [anon_sym_GT2] = ACTIONS(1535), + [anon_sym_DASH2] = ACTIONS(1535), + [anon_sym_RBRACE] = ACTIONS(1535), + [anon_sym_STAR2] = ACTIONS(1535), + [anon_sym_and2] = ACTIONS(1535), + [anon_sym_xor2] = ACTIONS(1535), + [anon_sym_or2] = ACTIONS(1535), + [anon_sym_not_DASHin2] = ACTIONS(1535), + [anon_sym_has2] = ACTIONS(1535), + [anon_sym_not_DASHhas2] = ACTIONS(1535), + [anon_sym_starts_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), + [anon_sym_ends_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), + [anon_sym_EQ_EQ2] = ACTIONS(1535), + [anon_sym_BANG_EQ2] = ACTIONS(1535), + [anon_sym_LT2] = ACTIONS(1535), + [anon_sym_LT_EQ2] = ACTIONS(1535), + [anon_sym_GT_EQ2] = ACTIONS(1535), + [anon_sym_EQ_TILDE2] = ACTIONS(1535), + [anon_sym_BANG_TILDE2] = ACTIONS(1535), + [anon_sym_like2] = ACTIONS(1535), + [anon_sym_not_DASHlike2] = ACTIONS(1535), + [anon_sym_STAR_STAR2] = ACTIONS(1535), + [anon_sym_PLUS_PLUS2] = ACTIONS(1535), + [anon_sym_SLASH2] = ACTIONS(1535), + [anon_sym_mod2] = ACTIONS(1535), + [anon_sym_SLASH_SLASH2] = ACTIONS(1535), + [anon_sym_PLUS2] = ACTIONS(1535), + [anon_sym_bit_DASHshl2] = ACTIONS(1535), + [anon_sym_bit_DASHshr2] = ACTIONS(1535), + [anon_sym_bit_DASHand2] = ACTIONS(1535), + [anon_sym_bit_DASHxor2] = ACTIONS(1535), + [anon_sym_bit_DASHor2] = ACTIONS(1535), + [anon_sym_DOT_DOT2] = ACTIONS(1535), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), + [sym__entry_separator] = ACTIONS(1537), + [anon_sym_COLON2] = ACTIONS(1535), + [anon_sym_QMARK2] = ACTIONS(1535), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_DOT2] = ACTIONS(1535), + [anon_sym_err_GT] = ACTIONS(1535), + [anon_sym_out_GT] = ACTIONS(1535), + [anon_sym_e_GT] = ACTIONS(1535), + [anon_sym_o_GT] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT] = ACTIONS(1535), + [anon_sym_err_GT_GT] = ACTIONS(1535), + [anon_sym_out_GT_GT] = ACTIONS(1535), + [anon_sym_e_GT_GT] = ACTIONS(1535), + [anon_sym_o_GT_GT] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(358)] = { + [aux_sym__repeat_newline] = STATE(4207), + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4771), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5203), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym__table_head] = STATE(3866), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), + [sym_comment] = STATE(358), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), [anon_sym_true] = ACTIONS(1468), [anon_sym_false] = ACTIONS(1468), [anon_sym_null] = ACTIONS(1470), @@ -75834,7 +76060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1472), [sym__newline] = ACTIONS(1474), [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_RBRACK] = ACTIONS(1549), + [anon_sym_RBRACK] = ACTIONS(1545), [anon_sym_LPAREN] = ACTIONS(1396), [anon_sym_COMMA] = ACTIONS(1480), [anon_sym_DOLLAR] = ACTIONS(1400), @@ -75865,127 +76091,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, + [STATE(359)] = { + [sym_comment] = STATE(359), + [anon_sym_EQ] = ACTIONS(1539), + [anon_sym_PLUS_EQ] = ACTIONS(1539), + [anon_sym_DASH_EQ] = ACTIONS(1539), + [anon_sym_STAR_EQ] = ACTIONS(1539), + [anon_sym_SLASH_EQ] = ACTIONS(1539), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1539), + [anon_sym_in] = ACTIONS(1539), + [sym__newline] = ACTIONS(1539), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_PIPE] = ACTIONS(1539), + [anon_sym_err_GT_PIPE] = ACTIONS(1539), + [anon_sym_out_GT_PIPE] = ACTIONS(1539), + [anon_sym_e_GT_PIPE] = ACTIONS(1539), + [anon_sym_o_GT_PIPE] = ACTIONS(1539), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1539), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1539), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1539), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1539), + [anon_sym_GT2] = ACTIONS(1539), + [anon_sym_DASH2] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_STAR2] = ACTIONS(1539), + [anon_sym_and2] = ACTIONS(1539), + [anon_sym_xor2] = ACTIONS(1539), + [anon_sym_or2] = ACTIONS(1539), + [anon_sym_not_DASHin2] = ACTIONS(1539), + [anon_sym_has2] = ACTIONS(1539), + [anon_sym_not_DASHhas2] = ACTIONS(1539), + [anon_sym_starts_DASHwith2] = ACTIONS(1539), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1539), + [anon_sym_ends_DASHwith2] = ACTIONS(1539), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1539), + [anon_sym_EQ_EQ2] = ACTIONS(1539), + [anon_sym_BANG_EQ2] = ACTIONS(1539), + [anon_sym_LT2] = ACTIONS(1539), + [anon_sym_LT_EQ2] = ACTIONS(1539), + [anon_sym_GT_EQ2] = ACTIONS(1539), + [anon_sym_EQ_TILDE2] = ACTIONS(1539), + [anon_sym_BANG_TILDE2] = ACTIONS(1539), + [anon_sym_like2] = ACTIONS(1539), + [anon_sym_not_DASHlike2] = ACTIONS(1539), + [anon_sym_STAR_STAR2] = ACTIONS(1539), + [anon_sym_PLUS_PLUS2] = ACTIONS(1539), + [anon_sym_SLASH2] = ACTIONS(1539), + [anon_sym_mod2] = ACTIONS(1539), + [anon_sym_SLASH_SLASH2] = ACTIONS(1539), + [anon_sym_PLUS2] = ACTIONS(1539), + [anon_sym_bit_DASHshl2] = ACTIONS(1539), + [anon_sym_bit_DASHshr2] = ACTIONS(1539), + [anon_sym_bit_DASHand2] = ACTIONS(1539), + [anon_sym_bit_DASHxor2] = ACTIONS(1539), + [anon_sym_bit_DASHor2] = ACTIONS(1539), + [anon_sym_DOT_DOT2] = ACTIONS(1539), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1541), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1541), + [sym__entry_separator] = ACTIONS(1541), + [anon_sym_COLON2] = ACTIONS(1539), + [anon_sym_QMARK2] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_DOT2] = ACTIONS(1539), + [anon_sym_err_GT] = ACTIONS(1539), + [anon_sym_out_GT] = ACTIONS(1539), + [anon_sym_e_GT] = ACTIONS(1539), + [anon_sym_o_GT] = ACTIONS(1539), + [anon_sym_err_PLUSout_GT] = ACTIONS(1539), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1539), + [anon_sym_o_PLUSe_GT] = ACTIONS(1539), + [anon_sym_e_PLUSo_GT] = ACTIONS(1539), + [anon_sym_err_GT_GT] = ACTIONS(1539), + [anon_sym_out_GT_GT] = ACTIONS(1539), + [anon_sym_e_GT_GT] = ACTIONS(1539), + [anon_sym_o_GT_GT] = ACTIONS(1539), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1539), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1539), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1539), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1539), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(360)] = { - [aux_sym__repeat_newline] = STATE(4342), - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4491), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(4948), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym__table_head] = STATE(3677), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), [sym_comment] = STATE(360), - [aux_sym__types_body_repeat1] = STATE(459), - [aux_sym_parameter_repeat2] = STATE(4190), - [aux_sym_list_body_repeat1] = STATE(515), - [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), + [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(4342), - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4491), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(5046), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym__table_head] = STATE(3773), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), + [aux_sym__repeat_newline] = STATE(4207), + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4771), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5353), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym__table_head] = STATE(3802), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(361), - [aux_sym__types_body_repeat1] = STATE(459), - [aux_sym_parameter_repeat2] = STATE(4190), - [aux_sym_list_body_repeat1] = STATE(515), + [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), @@ -75994,7 +76300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1472), [sym__newline] = ACTIONS(1474), [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_RBRACK] = ACTIONS(1553), + [anon_sym_RBRACK] = ACTIONS(1551), [anon_sym_LPAREN] = ACTIONS(1396), [anon_sym_COMMA] = ACTIONS(1480), [anon_sym_DOLLAR] = ACTIONS(1400), @@ -76026,46 +76332,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(362)] = { - [aux_sym__repeat_newline] = STATE(4342), - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4491), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(5139), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym__table_head] = STATE(3767), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), + [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(459), - [aux_sym_parameter_repeat2] = STATE(4190), - [aux_sym_list_body_repeat1] = STATE(515), + [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), @@ -76074,7 +76380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1472), [sym__newline] = ACTIONS(1474), [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_RBRACK] = ACTIONS(1555), + [anon_sym_RBRACK] = ACTIONS(1553), [anon_sym_LPAREN] = ACTIONS(1396), [anon_sym_COMMA] = ACTIONS(1480), [anon_sym_DOLLAR] = ACTIONS(1400), @@ -76106,46 +76412,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(363)] = { - [aux_sym__repeat_newline] = STATE(4342), - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4491), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(4849), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym__table_head] = STATE(3740), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), + [aux_sym__repeat_newline] = STATE(4207), + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4771), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5200), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym__table_head] = STATE(3815), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(363), - [aux_sym__types_body_repeat1] = STATE(459), - [aux_sym_parameter_repeat2] = STATE(4190), - [aux_sym_list_body_repeat1] = STATE(515), + [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), @@ -76154,7 +76460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1472), [sym__newline] = ACTIONS(1474), [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_RBRACK] = ACTIONS(1557), + [anon_sym_RBRACK] = ACTIONS(1555), [anon_sym_LPAREN] = ACTIONS(1396), [anon_sym_COMMA] = ACTIONS(1480), [anon_sym_DOLLAR] = ACTIONS(1400), @@ -76186,249 +76492,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(364)] = { - [aux_sym__repeat_newline] = STATE(4342), - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4491), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(4869), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym__table_head] = STATE(3696), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), + [sym_path] = STATE(360), [sym_comment] = STATE(364), - [aux_sym__types_body_repeat1] = STATE(459), - [aux_sym_parameter_repeat2] = STATE(4190), - [aux_sym_list_body_repeat1] = STATE(515), - [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(1559), - [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), + [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)] = { - [aux_sym__repeat_newline] = STATE(4342), - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4491), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(5097), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym__table_head] = STATE(3709), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), + [sym_path] = STATE(360), [sym_comment] = STATE(365), - [aux_sym__types_body_repeat1] = STATE(459), - [aux_sym_parameter_repeat2] = STATE(4190), - [aux_sym_list_body_repeat1] = STATE(515), - [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(1561), - [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(366)] = { - [sym_path] = STATE(349), - [sym_comment] = STATE(366), - [aux_sym__where_predicate_lhs_repeat1] = STATE(367), - [anon_sym_EQ] = ACTIONS(1515), - [anon_sym_PLUS_EQ] = ACTIONS(1515), - [anon_sym_DASH_EQ] = ACTIONS(1515), - [anon_sym_STAR_EQ] = ACTIONS(1515), - [anon_sym_SLASH_EQ] = ACTIONS(1515), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1515), - [anon_sym_in] = ACTIONS(1515), - [sym__newline] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_err_GT_PIPE] = ACTIONS(1515), - [anon_sym_out_GT_PIPE] = ACTIONS(1515), - [anon_sym_e_GT_PIPE] = ACTIONS(1515), - [anon_sym_o_GT_PIPE] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), - [anon_sym_GT2] = ACTIONS(1515), - [anon_sym_DASH2] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_STAR2] = ACTIONS(1515), - [anon_sym_and2] = ACTIONS(1515), - [anon_sym_xor2] = ACTIONS(1515), - [anon_sym_or2] = ACTIONS(1515), - [anon_sym_not_DASHin2] = ACTIONS(1515), - [anon_sym_has2] = ACTIONS(1515), - [anon_sym_not_DASHhas2] = ACTIONS(1515), - [anon_sym_starts_DASHwith2] = ACTIONS(1515), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1515), - [anon_sym_ends_DASHwith2] = ACTIONS(1515), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1515), - [anon_sym_EQ_EQ2] = ACTIONS(1515), - [anon_sym_BANG_EQ2] = ACTIONS(1515), - [anon_sym_LT2] = ACTIONS(1515), - [anon_sym_LT_EQ2] = ACTIONS(1515), - [anon_sym_GT_EQ2] = ACTIONS(1515), - [anon_sym_EQ_TILDE2] = ACTIONS(1515), - [anon_sym_BANG_TILDE2] = ACTIONS(1515), - [anon_sym_like2] = ACTIONS(1515), - [anon_sym_not_DASHlike2] = ACTIONS(1515), - [anon_sym_STAR_STAR2] = ACTIONS(1515), - [anon_sym_PLUS_PLUS2] = ACTIONS(1515), - [anon_sym_SLASH2] = ACTIONS(1515), - [anon_sym_mod2] = ACTIONS(1515), - [anon_sym_SLASH_SLASH2] = ACTIONS(1515), - [anon_sym_PLUS2] = ACTIONS(1515), - [anon_sym_bit_DASHshl2] = ACTIONS(1515), - [anon_sym_bit_DASHshr2] = ACTIONS(1515), - [anon_sym_bit_DASHand2] = ACTIONS(1515), - [anon_sym_bit_DASHxor2] = ACTIONS(1515), - [anon_sym_bit_DASHor2] = ACTIONS(1515), - [anon_sym_DOT_DOT2] = ACTIONS(1515), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1517), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1517), - [sym__entry_separator] = ACTIONS(1517), - [anon_sym_COLON2] = ACTIONS(1515), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1515), - [anon_sym_out_GT] = ACTIONS(1515), - [anon_sym_e_GT] = ACTIONS(1515), - [anon_sym_o_GT] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT] = ACTIONS(1515), - [anon_sym_err_GT_GT] = ACTIONS(1515), - [anon_sym_out_GT_GT] = ACTIONS(1515), - [anon_sym_e_GT_GT] = ACTIONS(1515), - [anon_sym_o_GT_GT] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(367)] = { - [sym_path] = STATE(349), - [sym_comment] = STATE(367), - [aux_sym__where_predicate_lhs_repeat1] = STATE(367), + [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), @@ -76486,7 +76632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT2] = ACTIONS(1510), [sym__entry_separator] = ACTIONS(1510), [anon_sym_COLON2] = ACTIONS(1508), - [anon_sym_DOT2] = ACTIONS(1563), + [anon_sym_DOT2] = ACTIONS(1557), [anon_sym_err_GT] = ACTIONS(1508), [anon_sym_out_GT] = ACTIONS(1508), [anon_sym_e_GT] = ACTIONS(1508), @@ -76505,233 +76651,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1508), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(368)] = { - [sym_comment] = STATE(368), - [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_BANG] = ACTIONS(1566), - [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(369)] = { - [sym_comment] = STATE(369), - [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_BANG] = ACTIONS(1460), - [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(370)] = { - [sym__match_pattern_expression] = STATE(4328), - [sym__match_pattern_value] = STATE(4441), - [sym__match_pattern_list] = STATE(4454), - [sym__match_pattern_record] = STATE(4455), - [sym_expr_parenthesized] = STATE(3890), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4528), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4529), - [sym_val_bool] = STATE(4025), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3892), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4529), - [sym__val_number_decimal] = STATE(3427), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4529), - [sym_val_filesize] = STATE(4529), - [sym_val_binary] = STATE(4529), - [sym_val_string] = STATE(4529), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4550), - [sym__spread_list] = STATE(4821), - [sym_val_entry] = STATE(4521), - [sym_val_record] = STATE(4550), - [sym_val_table] = STATE(4529), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(3813), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), - [sym_comment] = STATE(370), - [aux_sym__types_body_repeat1] = STATE(2120), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1415), - [aux_sym_list_body_repeat1] = STATE(508), - [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(1568), - [anon_sym_LBRACK] = ACTIONS(1570), + [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(1402), - [anon_sym_DOT_DOT] = ACTIONS(1572), + [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(1406), - [anon_sym_DOT_DOT_LT] = ACTIONS(1406), + [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(1408), - [aux_sym__val_number_decimal_token2] = ACTIONS(1410), - [aux_sym__val_number_decimal_token3] = ACTIONS(1412), - [aux_sym__val_number_decimal_token4] = ACTIONS(1412), + [aux_sym__val_number_decimal_token1] = ACTIONS(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(1420), + [sym_val_date] = ACTIONS(1494), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -76742,9 +76731,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(371)] = { - [sym__path_suffix] = STATE(419), - [sym_comment] = STATE(371), + [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), @@ -76800,9 +76871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1442), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), - [anon_sym_QMARK2] = ACTIONS(1574), - [anon_sym_BANG] = ACTIONS(1576), - [anon_sym_DOT2] = ACTIONS(1442), + [anon_sym_DOT2] = ACTIONS(1566), [anon_sym_err_GT] = ACTIONS(1442), [anon_sym_out_GT] = ACTIONS(1442), [anon_sym_e_GT] = ACTIONS(1442), @@ -76821,8 +76890,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1444), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(372)] = { - [sym_comment] = STATE(372), + [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), @@ -76841,10 +76912,8 @@ 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_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), @@ -76879,8 +76948,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1578), + [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), @@ -76900,8 +76969,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1458), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(373)] = { - [sym_comment] = STATE(373), + [STATE(370)] = { + [sym__match_pattern_expression] = STATE(4338), + [sym__match_pattern_value] = STATE(4736), + [sym__match_pattern_list] = STATE(4737), + [sym__match_pattern_record] = STATE(4742), + [sym_expr_parenthesized] = STATE(3970), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4670), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4671), + [sym_val_bool] = STATE(4060), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3972), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4671), + [sym__val_number_decimal] = STATE(3544), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4671), + [sym_val_filesize] = STATE(4671), + [sym_val_binary] = STATE(4671), + [sym_val_string] = STATE(4671), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_val_entry] = STATE(4777), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4671), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(3907), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), + [sym_comment] = STATE(370), + [aux_sym__types_body_repeat1] = STATE(2153), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1421), + [aux_sym_list_body_repeat1] = STATE(530), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [anon_sym_null] = ACTIONS(1386), + [aux_sym_cmd_identifier_token3] = ACTIONS(1388), + [aux_sym_cmd_identifier_token4] = ACTIONS(1388), + [aux_sym_cmd_identifier_token5] = ACTIONS(1388), + [sym__newline] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1574), + [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_comment] = STATE(371), + [anon_sym_EQ] = ACTIONS(1448), + [anon_sym_PLUS_EQ] = ACTIONS(1450), + [anon_sym_DASH_EQ] = ACTIONS(1450), + [anon_sym_STAR_EQ] = ACTIONS(1450), + [anon_sym_SLASH_EQ] = ACTIONS(1450), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1450), + [anon_sym_in] = ACTIONS(1450), + [sym__newline] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_err_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_GT_PIPE] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1450), + [anon_sym_RPAREN] = ACTIONS(1450), + [anon_sym_GT2] = ACTIONS(1448), + [anon_sym_DASH2] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1448), + [anon_sym_and2] = ACTIONS(1450), + [anon_sym_xor2] = ACTIONS(1450), + [anon_sym_or2] = ACTIONS(1450), + [anon_sym_not_DASHin2] = ACTIONS(1450), + [anon_sym_has2] = ACTIONS(1450), + [anon_sym_not_DASHhas2] = ACTIONS(1450), + [anon_sym_starts_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1450), + [anon_sym_ends_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1450), + [anon_sym_EQ_EQ2] = ACTIONS(1450), + [anon_sym_BANG_EQ2] = ACTIONS(1450), + [anon_sym_LT2] = ACTIONS(1448), + [anon_sym_LT_EQ2] = ACTIONS(1450), + [anon_sym_GT_EQ2] = ACTIONS(1450), + [anon_sym_EQ_TILDE2] = ACTIONS(1450), + [anon_sym_BANG_TILDE2] = ACTIONS(1450), + [anon_sym_like2] = ACTIONS(1450), + [anon_sym_not_DASHlike2] = ACTIONS(1450), + [anon_sym_STAR_STAR2] = ACTIONS(1450), + [anon_sym_PLUS_PLUS2] = ACTIONS(1448), + [anon_sym_SLASH2] = ACTIONS(1448), + [anon_sym_mod2] = ACTIONS(1450), + [anon_sym_SLASH_SLASH2] = ACTIONS(1450), + [anon_sym_PLUS2] = ACTIONS(1448), + [anon_sym_bit_DASHshl2] = ACTIONS(1450), + [anon_sym_bit_DASHshr2] = ACTIONS(1450), + [anon_sym_bit_DASHand2] = ACTIONS(1450), + [anon_sym_bit_DASHxor2] = ACTIONS(1450), + [anon_sym_bit_DASHor2] = ACTIONS(1450), + [anon_sym_DOT_DOT2] = ACTIONS(1448), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), + [anon_sym_COLON2] = ACTIONS(1450), + [anon_sym_QMARK2] = ACTIONS(1578), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1448), + [anon_sym_out_GT] = ACTIONS(1448), + [anon_sym_e_GT] = ACTIONS(1448), + [anon_sym_o_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT] = ACTIONS(1448), + [anon_sym_err_GT_GT] = ACTIONS(1450), + [anon_sym_out_GT_GT] = ACTIONS(1450), + [anon_sym_e_GT_GT] = ACTIONS(1450), + [anon_sym_o_GT_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(372)] = { + [sym_comment] = STATE(372), [anon_sym_EQ] = ACTIONS(1580), [anon_sym_PLUS_EQ] = ACTIONS(1580), [anon_sym_DASH_EQ] = ACTIONS(1580), @@ -76979,358 +77206,359 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1580), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(373)] = { + [sym_comment] = STATE(373), + [anon_sym_EQ] = ACTIONS(1448), + [anon_sym_PLUS_EQ] = ACTIONS(1448), + [anon_sym_DASH_EQ] = ACTIONS(1448), + [anon_sym_STAR_EQ] = ACTIONS(1448), + [anon_sym_SLASH_EQ] = ACTIONS(1448), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1448), + [anon_sym_in] = ACTIONS(1448), + [sym__newline] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_err_GT_PIPE] = ACTIONS(1448), + [anon_sym_out_GT_PIPE] = ACTIONS(1448), + [anon_sym_e_GT_PIPE] = ACTIONS(1448), + [anon_sym_o_GT_PIPE] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), + [anon_sym_GT2] = ACTIONS(1448), + [anon_sym_DASH2] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_STAR2] = ACTIONS(1448), + [anon_sym_and2] = ACTIONS(1448), + [anon_sym_xor2] = ACTIONS(1448), + [anon_sym_or2] = ACTIONS(1448), + [anon_sym_not_DASHin2] = ACTIONS(1448), + [anon_sym_has2] = ACTIONS(1448), + [anon_sym_not_DASHhas2] = ACTIONS(1448), + [anon_sym_starts_DASHwith2] = ACTIONS(1448), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), + [anon_sym_ends_DASHwith2] = ACTIONS(1448), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), + [anon_sym_EQ_EQ2] = ACTIONS(1448), + [anon_sym_BANG_EQ2] = ACTIONS(1448), + [anon_sym_LT2] = ACTIONS(1448), + [anon_sym_LT_EQ2] = ACTIONS(1448), + [anon_sym_GT_EQ2] = ACTIONS(1448), + [anon_sym_EQ_TILDE2] = ACTIONS(1448), + [anon_sym_BANG_TILDE2] = ACTIONS(1448), + [anon_sym_like2] = ACTIONS(1448), + [anon_sym_not_DASHlike2] = ACTIONS(1448), + [anon_sym_STAR_STAR2] = ACTIONS(1448), + [anon_sym_PLUS_PLUS2] = ACTIONS(1448), + [anon_sym_SLASH2] = ACTIONS(1448), + [anon_sym_mod2] = ACTIONS(1448), + [anon_sym_SLASH_SLASH2] = ACTIONS(1448), + [anon_sym_PLUS2] = ACTIONS(1448), + [anon_sym_bit_DASHshl2] = ACTIONS(1448), + [anon_sym_bit_DASHshr2] = ACTIONS(1448), + [anon_sym_bit_DASHand2] = ACTIONS(1448), + [anon_sym_bit_DASHxor2] = ACTIONS(1448), + [anon_sym_bit_DASHor2] = ACTIONS(1448), + [anon_sym_DOT_DOT2] = ACTIONS(1448), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), + [sym__entry_separator] = ACTIONS(1450), + [anon_sym_COLON2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1448), + [anon_sym_out_GT] = ACTIONS(1448), + [anon_sym_e_GT] = ACTIONS(1448), + [anon_sym_o_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT] = ACTIONS(1448), + [anon_sym_err_GT_GT] = ACTIONS(1448), + [anon_sym_out_GT_GT] = ACTIONS(1448), + [anon_sym_e_GT_GT] = ACTIONS(1448), + [anon_sym_o_GT_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(374)] = { - [sym_cell_path] = STATE(443), - [sym_path] = STATE(425), [sym_comment] = STATE(374), - [aux_sym__where_predicate_lhs_repeat1] = STATE(377), - [ts_builtin_sym_end] = ACTIONS(1452), - [anon_sym_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1452), - [anon_sym_DASH_EQ] = ACTIONS(1452), - [anon_sym_STAR_EQ] = ACTIONS(1452), - [anon_sym_SLASH_EQ] = ACTIONS(1452), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1452), - [anon_sym_in] = ACTIONS(1452), - [sym__newline] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_err_GT_PIPE] = ACTIONS(1452), - [anon_sym_out_GT_PIPE] = ACTIONS(1452), - [anon_sym_e_GT_PIPE] = ACTIONS(1452), - [anon_sym_o_GT_PIPE] = ACTIONS(1452), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(1450), - [anon_sym_DASH2] = ACTIONS(1450), - [anon_sym_STAR2] = ACTIONS(1450), - [anon_sym_and2] = ACTIONS(1452), - [anon_sym_xor2] = ACTIONS(1452), - [anon_sym_or2] = ACTIONS(1452), - [anon_sym_not_DASHin2] = ACTIONS(1452), - [anon_sym_has2] = ACTIONS(1452), - [anon_sym_not_DASHhas2] = ACTIONS(1452), - [anon_sym_starts_DASHwith2] = ACTIONS(1452), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), - [anon_sym_ends_DASHwith2] = ACTIONS(1452), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), - [anon_sym_EQ_EQ2] = ACTIONS(1452), - [anon_sym_BANG_EQ2] = ACTIONS(1452), - [anon_sym_LT2] = ACTIONS(1450), - [anon_sym_LT_EQ2] = ACTIONS(1452), - [anon_sym_GT_EQ2] = ACTIONS(1452), - [anon_sym_EQ_TILDE2] = ACTIONS(1452), - [anon_sym_BANG_TILDE2] = ACTIONS(1452), - [anon_sym_like2] = ACTIONS(1452), - [anon_sym_not_DASHlike2] = ACTIONS(1452), - [anon_sym_STAR_STAR2] = ACTIONS(1452), - [anon_sym_PLUS_PLUS2] = ACTIONS(1450), - [anon_sym_SLASH2] = ACTIONS(1450), - [anon_sym_mod2] = ACTIONS(1452), - [anon_sym_SLASH_SLASH2] = ACTIONS(1452), - [anon_sym_PLUS2] = ACTIONS(1450), - [anon_sym_bit_DASHshl2] = ACTIONS(1452), - [anon_sym_bit_DASHshr2] = ACTIONS(1452), - [anon_sym_bit_DASHand2] = ACTIONS(1452), - [anon_sym_bit_DASHxor2] = ACTIONS(1452), - [anon_sym_bit_DASHor2] = ACTIONS(1452), - [anon_sym_DOT_DOT2] = ACTIONS(1450), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), - [anon_sym_DOT2] = ACTIONS(1584), - [anon_sym_err_GT] = ACTIONS(1450), - [anon_sym_out_GT] = ACTIONS(1450), - [anon_sym_e_GT] = ACTIONS(1450), - [anon_sym_o_GT] = ACTIONS(1450), - [anon_sym_err_PLUSout_GT] = ACTIONS(1450), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), - [anon_sym_o_PLUSe_GT] = ACTIONS(1450), - [anon_sym_e_PLUSo_GT] = ACTIONS(1450), - [anon_sym_err_GT_GT] = ACTIONS(1452), - [anon_sym_out_GT_GT] = ACTIONS(1452), - [anon_sym_e_GT_GT] = ACTIONS(1452), - [anon_sym_o_GT_GT] = ACTIONS(1452), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), + [anon_sym_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(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), + [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_comment] = STATE(376), - [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_QMARK2] = ACTIONS(1498), - [anon_sym_BANG] = 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(1498), - [anon_sym_out_GT_GT] = ACTIONS(1498), - [anon_sym_e_GT_GT] = ACTIONS(1498), - [anon_sym_o_GT_GT] = ACTIONS(1498), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [ts_builtin_sym_end] = ACTIONS(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_path] = STATE(425), + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5353), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(377), - [aux_sym__where_predicate_lhs_repeat1] = STATE(383), - [ts_builtin_sym_end] = ACTIONS(1517), - [anon_sym_EQ] = ACTIONS(1515), - [anon_sym_PLUS_EQ] = ACTIONS(1517), - [anon_sym_DASH_EQ] = ACTIONS(1517), - [anon_sym_STAR_EQ] = ACTIONS(1517), - [anon_sym_SLASH_EQ] = ACTIONS(1517), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1517), - [anon_sym_in] = ACTIONS(1517), - [sym__newline] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1517), - [anon_sym_PIPE] = ACTIONS(1517), - [anon_sym_err_GT_PIPE] = ACTIONS(1517), - [anon_sym_out_GT_PIPE] = ACTIONS(1517), - [anon_sym_e_GT_PIPE] = ACTIONS(1517), - [anon_sym_o_GT_PIPE] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1517), - [anon_sym_GT2] = ACTIONS(1515), - [anon_sym_DASH2] = ACTIONS(1515), - [anon_sym_STAR2] = ACTIONS(1515), - [anon_sym_and2] = ACTIONS(1517), - [anon_sym_xor2] = ACTIONS(1517), - [anon_sym_or2] = ACTIONS(1517), - [anon_sym_not_DASHin2] = ACTIONS(1517), - [anon_sym_has2] = ACTIONS(1517), - [anon_sym_not_DASHhas2] = ACTIONS(1517), - [anon_sym_starts_DASHwith2] = ACTIONS(1517), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1517), - [anon_sym_ends_DASHwith2] = ACTIONS(1517), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1517), - [anon_sym_EQ_EQ2] = ACTIONS(1517), - [anon_sym_BANG_EQ2] = ACTIONS(1517), - [anon_sym_LT2] = ACTIONS(1515), - [anon_sym_LT_EQ2] = ACTIONS(1517), - [anon_sym_GT_EQ2] = ACTIONS(1517), - [anon_sym_EQ_TILDE2] = ACTIONS(1517), - [anon_sym_BANG_TILDE2] = ACTIONS(1517), - [anon_sym_like2] = ACTIONS(1517), - [anon_sym_not_DASHlike2] = ACTIONS(1517), - [anon_sym_STAR_STAR2] = ACTIONS(1517), - [anon_sym_PLUS_PLUS2] = ACTIONS(1515), - [anon_sym_SLASH2] = ACTIONS(1515), - [anon_sym_mod2] = ACTIONS(1517), - [anon_sym_SLASH_SLASH2] = ACTIONS(1517), - [anon_sym_PLUS2] = ACTIONS(1515), - [anon_sym_bit_DASHshl2] = ACTIONS(1517), - [anon_sym_bit_DASHshr2] = ACTIONS(1517), - [anon_sym_bit_DASHand2] = ACTIONS(1517), - [anon_sym_bit_DASHxor2] = ACTIONS(1517), - [anon_sym_bit_DASHor2] = ACTIONS(1517), - [anon_sym_DOT_DOT2] = ACTIONS(1515), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1517), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1517), - [anon_sym_DOT2] = ACTIONS(1584), - [anon_sym_err_GT] = ACTIONS(1515), - [anon_sym_out_GT] = ACTIONS(1515), - [anon_sym_e_GT] = ACTIONS(1515), - [anon_sym_o_GT] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT] = ACTIONS(1515), - [anon_sym_err_GT_GT] = ACTIONS(1517), - [anon_sym_out_GT_GT] = ACTIONS(1517), - [anon_sym_e_GT_GT] = ACTIONS(1517), - [anon_sym_o_GT_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1517), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(378)] = { - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4550), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(4942), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), - [sym_comment] = STATE(378), - [aux_sym__types_body_repeat1] = STATE(459), - [aux_sym_parameter_repeat2] = STATE(4190), - [aux_sym_list_body_repeat1] = STATE(515), + [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), @@ -77339,7 +77567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1472), [sym__newline] = ACTIONS(1586), [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1590), + [anon_sym_RBRACK] = ACTIONS(1551), [anon_sym_LPAREN] = ACTIONS(1396), [anon_sym_COMMA] = ACTIONS(1480), [anon_sym_DOLLAR] = ACTIONS(1400), @@ -77370,23 +77598,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(379)] = { - [sym_comment] = STATE(379), - [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), + [STATE(378)] = { + [sym_comment] = STATE(378), + [ts_builtin_sym_end] = ACTIONS(1537), + [anon_sym_EQ] = ACTIONS(1535), + [anon_sym_PLUS_EQ] = ACTIONS(1537), + [anon_sym_DASH_EQ] = ACTIONS(1537), + [anon_sym_STAR_EQ] = ACTIONS(1537), + [anon_sym_SLASH_EQ] = ACTIONS(1537), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1537), + [anon_sym_in] = ACTIONS(1537), + [sym__newline] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_err_GT_PIPE] = ACTIONS(1537), + [anon_sym_out_GT_PIPE] = ACTIONS(1537), + [anon_sym_e_GT_PIPE] = ACTIONS(1537), + [anon_sym_o_GT_PIPE] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), + [anon_sym_GT2] = ACTIONS(1535), + [anon_sym_DASH2] = ACTIONS(1535), + [anon_sym_STAR2] = ACTIONS(1535), + [anon_sym_and2] = ACTIONS(1537), + [anon_sym_xor2] = ACTIONS(1537), + [anon_sym_or2] = ACTIONS(1537), + [anon_sym_not_DASHin2] = ACTIONS(1537), + [anon_sym_has2] = ACTIONS(1537), + [anon_sym_not_DASHhas2] = ACTIONS(1537), + [anon_sym_starts_DASHwith2] = ACTIONS(1537), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), + [anon_sym_ends_DASHwith2] = ACTIONS(1537), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), + [anon_sym_EQ_EQ2] = ACTIONS(1537), + [anon_sym_BANG_EQ2] = ACTIONS(1537), + [anon_sym_LT2] = ACTIONS(1535), + [anon_sym_LT_EQ2] = ACTIONS(1537), + [anon_sym_GT_EQ2] = ACTIONS(1537), + [anon_sym_EQ_TILDE2] = ACTIONS(1537), + [anon_sym_BANG_TILDE2] = ACTIONS(1537), + [anon_sym_like2] = ACTIONS(1537), + [anon_sym_not_DASHlike2] = ACTIONS(1537), + [anon_sym_STAR_STAR2] = ACTIONS(1537), + [anon_sym_PLUS_PLUS2] = ACTIONS(1535), + [anon_sym_SLASH2] = ACTIONS(1535), + [anon_sym_mod2] = ACTIONS(1537), + [anon_sym_SLASH_SLASH2] = ACTIONS(1537), + [anon_sym_PLUS2] = ACTIONS(1535), + [anon_sym_bit_DASHshl2] = ACTIONS(1537), + [anon_sym_bit_DASHshr2] = ACTIONS(1537), + [anon_sym_bit_DASHand2] = ACTIONS(1537), + [anon_sym_bit_DASHxor2] = ACTIONS(1537), + [anon_sym_bit_DASHor2] = ACTIONS(1537), + [anon_sym_DOT_DOT2] = ACTIONS(1535), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), + [anon_sym_QMARK2] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_DOT2] = ACTIONS(1535), + [anon_sym_err_GT] = ACTIONS(1535), + [anon_sym_out_GT] = ACTIONS(1535), + [anon_sym_e_GT] = ACTIONS(1535), + [anon_sym_o_GT] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT] = ACTIONS(1535), + [anon_sym_err_GT_GT] = ACTIONS(1537), + [anon_sym_out_GT_GT] = ACTIONS(1537), + [anon_sym_e_GT_GT] = ACTIONS(1537), + [anon_sym_o_GT_GT] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(379)] = { + [sym_comment] = STATE(379), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_PLUS_EQ] = ACTIONS(1498), + [anon_sym_DASH_EQ] = ACTIONS(1498), + [anon_sym_STAR_EQ] = ACTIONS(1498), + [anon_sym_SLASH_EQ] = ACTIONS(1498), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1498), + [anon_sym_in] = ACTIONS(1498), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_RPAREN] = ACTIONS(1498), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_and2] = ACTIONS(1498), + [anon_sym_xor2] = ACTIONS(1498), + [anon_sym_or2] = ACTIONS(1498), + [anon_sym_not_DASHin2] = ACTIONS(1498), + [anon_sym_has2] = ACTIONS(1498), + [anon_sym_not_DASHhas2] = ACTIONS(1498), + [anon_sym_starts_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1498), + [anon_sym_ends_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1498), + [anon_sym_EQ_EQ2] = ACTIONS(1498), + [anon_sym_BANG_EQ2] = ACTIONS(1498), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1498), + [anon_sym_GT_EQ2] = ACTIONS(1498), + [anon_sym_EQ_TILDE2] = ACTIONS(1498), + [anon_sym_BANG_TILDE2] = ACTIONS(1498), + [anon_sym_like2] = ACTIONS(1498), + [anon_sym_not_DASHlike2] = ACTIONS(1498), + [anon_sym_STAR_STAR2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS2] = ACTIONS(1496), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1498), + [anon_sym_SLASH_SLASH2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1498), + [anon_sym_bit_DASHshr2] = ACTIONS(1498), + [anon_sym_bit_DASHand2] = ACTIONS(1498), + [anon_sym_bit_DASHxor2] = ACTIONS(1498), + [anon_sym_bit_DASHor2] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_COLON2] = ACTIONS(1498), + [anon_sym_DOT2] = ACTIONS(1496), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [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), @@ -77427,9 +77813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1504), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [anon_sym_QMARK2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DOT2] = ACTIONS(1504), + [anon_sym_DOT2] = ACTIONS(1566), [anon_sym_err_GT] = ACTIONS(1504), [anon_sym_out_GT] = ACTIONS(1504), [anon_sym_e_GT] = ACTIONS(1504), @@ -77448,45 +77832,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(380)] = { - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4550), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(5249), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), - [sym_comment] = STATE(380), - [aux_sym__types_body_repeat1] = STATE(459), - [aux_sym_parameter_repeat2] = STATE(4190), - [aux_sym_list_body_repeat1] = STATE(515), + [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), @@ -77526,45 +77910,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(381)] = { - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4550), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(4849), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), - [sym_comment] = STATE(381), - [aux_sym__types_body_repeat1] = STATE(459), - [aux_sym_parameter_repeat2] = STATE(4190), - [aux_sym_list_body_repeat1] = STATE(515), + [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), @@ -77573,7 +77957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1472), [sym__newline] = ACTIONS(1586), [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1557), + [anon_sym_RBRACK] = ACTIONS(1515), [anon_sym_LPAREN] = ACTIONS(1396), [anon_sym_COMMA] = ACTIONS(1480), [anon_sym_DOLLAR] = ACTIONS(1400), @@ -77604,45 +77988,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(382)] = { - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4550), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(5016), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), - [sym_comment] = STATE(382), - [aux_sym__types_body_repeat1] = STATE(459), - [aux_sym_parameter_repeat2] = STATE(4190), - [aux_sym_list_body_repeat1] = STATE(515), + [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), @@ -77682,435 +78066,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(383)] = { - [sym_path] = STATE(425), - [sym_comment] = STATE(383), - [aux_sym__where_predicate_lhs_repeat1] = STATE(383), - [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(1596), - [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(384)] = { [sym_comment] = STATE(384), - [ts_builtin_sym_end] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1500), - [anon_sym_PLUS_EQ] = ACTIONS(1502), - [anon_sym_DASH_EQ] = ACTIONS(1502), - [anon_sym_STAR_EQ] = ACTIONS(1502), - [anon_sym_SLASH_EQ] = ACTIONS(1502), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1502), - [anon_sym_in] = ACTIONS(1502), - [sym__newline] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_err_GT_PIPE] = ACTIONS(1502), - [anon_sym_out_GT_PIPE] = ACTIONS(1502), - [anon_sym_e_GT_PIPE] = ACTIONS(1502), - [anon_sym_o_GT_PIPE] = ACTIONS(1502), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), - [anon_sym_GT2] = ACTIONS(1500), - [anon_sym_DASH2] = ACTIONS(1500), - [anon_sym_STAR2] = ACTIONS(1500), - [anon_sym_and2] = ACTIONS(1502), - [anon_sym_xor2] = ACTIONS(1502), - [anon_sym_or2] = ACTIONS(1502), - [anon_sym_not_DASHin2] = ACTIONS(1502), - [anon_sym_has2] = ACTIONS(1502), - [anon_sym_not_DASHhas2] = ACTIONS(1502), - [anon_sym_starts_DASHwith2] = ACTIONS(1502), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1502), - [anon_sym_ends_DASHwith2] = ACTIONS(1502), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1502), - [anon_sym_EQ_EQ2] = ACTIONS(1502), - [anon_sym_BANG_EQ2] = ACTIONS(1502), - [anon_sym_LT2] = ACTIONS(1500), - [anon_sym_LT_EQ2] = ACTIONS(1502), - [anon_sym_GT_EQ2] = ACTIONS(1502), - [anon_sym_EQ_TILDE2] = ACTIONS(1502), - [anon_sym_BANG_TILDE2] = ACTIONS(1502), - [anon_sym_like2] = ACTIONS(1502), - [anon_sym_not_DASHlike2] = ACTIONS(1502), - [anon_sym_STAR_STAR2] = ACTIONS(1502), - [anon_sym_PLUS_PLUS2] = ACTIONS(1500), - [anon_sym_SLASH2] = ACTIONS(1500), - [anon_sym_mod2] = ACTIONS(1502), - [anon_sym_SLASH_SLASH2] = ACTIONS(1502), - [anon_sym_PLUS2] = ACTIONS(1500), - [anon_sym_bit_DASHshl2] = ACTIONS(1502), - [anon_sym_bit_DASHshr2] = ACTIONS(1502), - [anon_sym_bit_DASHand2] = ACTIONS(1502), - [anon_sym_bit_DASHxor2] = ACTIONS(1502), - [anon_sym_bit_DASHor2] = ACTIONS(1502), - [anon_sym_DOT_DOT2] = ACTIONS(1500), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), - [anon_sym_QMARK2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_DOT2] = ACTIONS(1500), - [anon_sym_err_GT] = ACTIONS(1500), - [anon_sym_out_GT] = ACTIONS(1500), - [anon_sym_e_GT] = ACTIONS(1500), - [anon_sym_o_GT] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT] = ACTIONS(1500), - [anon_sym_err_GT_GT] = ACTIONS(1502), - [anon_sym_out_GT_GT] = ACTIONS(1502), - [anon_sym_e_GT_GT] = ACTIONS(1502), - [anon_sym_o_GT_GT] = ACTIONS(1502), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), + [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_immediate] = STATE(690), - [sym__immediate_decimal] = STATE(672), - [sym_val_variable] = STATE(690), + [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), - [anon_sym_in] = ACTIONS(1599), - [sym__newline] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_err_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_GT_PIPE] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_GT2] = ACTIONS(1603), - [anon_sym_DASH2] = ACTIONS(1603), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_STAR2] = ACTIONS(1603), - [anon_sym_and2] = ACTIONS(1599), - [anon_sym_xor2] = ACTIONS(1599), - [anon_sym_or2] = ACTIONS(1599), - [anon_sym_not_DASHin2] = ACTIONS(1599), - [anon_sym_has2] = ACTIONS(1599), - [anon_sym_not_DASHhas2] = ACTIONS(1599), - [anon_sym_starts_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), - [anon_sym_ends_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), - [anon_sym_EQ_EQ2] = ACTIONS(1599), - [anon_sym_BANG_EQ2] = ACTIONS(1599), - [anon_sym_LT2] = ACTIONS(1603), - [anon_sym_LT_EQ2] = ACTIONS(1599), - [anon_sym_GT_EQ2] = ACTIONS(1599), - [anon_sym_EQ_TILDE2] = ACTIONS(1599), - [anon_sym_BANG_TILDE2] = ACTIONS(1599), - [anon_sym_like2] = ACTIONS(1599), - [anon_sym_not_DASHlike2] = ACTIONS(1599), - [anon_sym_LPAREN2] = ACTIONS(1605), - [anon_sym_STAR_STAR2] = ACTIONS(1599), - [anon_sym_PLUS_PLUS2] = ACTIONS(1599), - [anon_sym_SLASH2] = ACTIONS(1603), - [anon_sym_mod2] = ACTIONS(1599), - [anon_sym_SLASH_SLASH2] = ACTIONS(1599), - [anon_sym_PLUS2] = ACTIONS(1603), - [anon_sym_bit_DASHshl2] = ACTIONS(1599), - [anon_sym_bit_DASHshr2] = ACTIONS(1599), - [anon_sym_bit_DASHand2] = ACTIONS(1599), - [anon_sym_bit_DASHxor2] = ACTIONS(1599), - [anon_sym_bit_DASHor2] = ACTIONS(1599), - [anon_sym_DOT] = ACTIONS(1607), - [aux_sym__immediate_decimal_token1] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token3] = ACTIONS(1611), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [anon_sym_err_GT] = ACTIONS(1603), - [anon_sym_out_GT] = ACTIONS(1603), - [anon_sym_e_GT] = ACTIONS(1603), - [anon_sym_o_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT] = ACTIONS(1603), - [anon_sym_err_GT_GT] = ACTIONS(1599), - [anon_sym_out_GT_GT] = ACTIONS(1599), - [anon_sym_e_GT_GT] = ACTIONS(1599), - [anon_sym_o_GT_GT] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), + [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__expr_parenthesized_immediate] = STATE(690), - [sym__immediate_decimal] = STATE(511), - [sym_val_variable] = STATE(690), [sym_comment] = STATE(386), - [anon_sym_in] = ACTIONS(1599), - [sym__newline] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_err_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_GT_PIPE] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_GT2] = ACTIONS(1603), - [anon_sym_DASH2] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_STAR2] = ACTIONS(1603), - [anon_sym_and2] = ACTIONS(1599), - [anon_sym_xor2] = ACTIONS(1599), - [anon_sym_or2] = ACTIONS(1599), - [anon_sym_not_DASHin2] = ACTIONS(1599), - [anon_sym_has2] = ACTIONS(1599), - [anon_sym_not_DASHhas2] = ACTIONS(1599), - [anon_sym_starts_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), - [anon_sym_ends_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), - [anon_sym_EQ_EQ2] = ACTIONS(1599), - [anon_sym_BANG_EQ2] = ACTIONS(1599), - [anon_sym_LT2] = ACTIONS(1603), - [anon_sym_LT_EQ2] = ACTIONS(1599), - [anon_sym_GT_EQ2] = ACTIONS(1599), - [anon_sym_EQ_TILDE2] = ACTIONS(1599), - [anon_sym_BANG_TILDE2] = ACTIONS(1599), - [anon_sym_like2] = ACTIONS(1599), - [anon_sym_not_DASHlike2] = ACTIONS(1599), - [anon_sym_LPAREN2] = ACTIONS(1605), - [anon_sym_STAR_STAR2] = ACTIONS(1599), - [anon_sym_PLUS_PLUS2] = ACTIONS(1599), - [anon_sym_SLASH2] = ACTIONS(1603), - [anon_sym_mod2] = ACTIONS(1599), - [anon_sym_SLASH_SLASH2] = ACTIONS(1599), - [anon_sym_PLUS2] = ACTIONS(1603), - [anon_sym_bit_DASHshl2] = ACTIONS(1599), - [anon_sym_bit_DASHshr2] = ACTIONS(1599), - [anon_sym_bit_DASHand2] = ACTIONS(1599), - [anon_sym_bit_DASHxor2] = ACTIONS(1599), - [anon_sym_bit_DASHor2] = ACTIONS(1599), - [anon_sym_DOT] = ACTIONS(1613), - [aux_sym__immediate_decimal_token1] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token3] = ACTIONS(1611), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [anon_sym_err_GT] = ACTIONS(1603), - [anon_sym_out_GT] = ACTIONS(1603), - [anon_sym_e_GT] = ACTIONS(1603), - [anon_sym_o_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT] = ACTIONS(1603), - [anon_sym_err_GT_GT] = ACTIONS(1599), - [anon_sym_out_GT_GT] = ACTIONS(1599), - [anon_sym_e_GT_GT] = ACTIONS(1599), - [anon_sym_o_GT_GT] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), - [sym__unquoted_pattern] = ACTIONS(1615), + [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_EQ] = ACTIONS(1541), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1543), - [anon_sym_in] = ACTIONS(1543), - [sym__newline] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_PIPE] = ACTIONS(1543), - [anon_sym_err_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_GT_PIPE] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1543), - [anon_sym_RPAREN] = ACTIONS(1543), - [anon_sym_GT2] = ACTIONS(1541), - [anon_sym_DASH2] = ACTIONS(1541), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_STAR2] = ACTIONS(1541), - [anon_sym_and2] = ACTIONS(1543), - [anon_sym_xor2] = ACTIONS(1543), - [anon_sym_or2] = ACTIONS(1543), - [anon_sym_not_DASHin2] = ACTIONS(1543), - [anon_sym_has2] = ACTIONS(1543), - [anon_sym_not_DASHhas2] = ACTIONS(1543), - [anon_sym_starts_DASHwith2] = ACTIONS(1543), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1543), - [anon_sym_ends_DASHwith2] = ACTIONS(1543), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1543), - [anon_sym_EQ_EQ2] = ACTIONS(1543), - [anon_sym_BANG_EQ2] = ACTIONS(1543), - [anon_sym_LT2] = ACTIONS(1541), - [anon_sym_LT_EQ2] = ACTIONS(1543), - [anon_sym_GT_EQ2] = ACTIONS(1543), - [anon_sym_EQ_TILDE2] = ACTIONS(1543), - [anon_sym_BANG_TILDE2] = ACTIONS(1543), - [anon_sym_like2] = ACTIONS(1543), - [anon_sym_not_DASHlike2] = ACTIONS(1543), - [anon_sym_STAR_STAR2] = ACTIONS(1543), - [anon_sym_PLUS_PLUS2] = ACTIONS(1541), - [anon_sym_SLASH2] = ACTIONS(1541), - [anon_sym_mod2] = ACTIONS(1543), - [anon_sym_SLASH_SLASH2] = ACTIONS(1543), - [anon_sym_PLUS2] = ACTIONS(1541), - [anon_sym_bit_DASHshl2] = ACTIONS(1543), - [anon_sym_bit_DASHshr2] = ACTIONS(1543), - [anon_sym_bit_DASHand2] = ACTIONS(1543), - [anon_sym_bit_DASHxor2] = ACTIONS(1543), - [anon_sym_bit_DASHor2] = ACTIONS(1543), - [anon_sym_DOT_DOT2] = ACTIONS(1541), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1543), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1543), - [anon_sym_COLON2] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1541), - [anon_sym_err_GT] = ACTIONS(1541), - [anon_sym_out_GT] = ACTIONS(1541), - [anon_sym_e_GT] = ACTIONS(1541), - [anon_sym_o_GT] = ACTIONS(1541), - [anon_sym_err_PLUSout_GT] = ACTIONS(1541), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1541), - [anon_sym_o_PLUSe_GT] = ACTIONS(1541), - [anon_sym_e_PLUSo_GT] = ACTIONS(1541), - [anon_sym_err_GT_GT] = ACTIONS(1543), - [anon_sym_out_GT_GT] = ACTIONS(1543), - [anon_sym_e_GT_GT] = ACTIONS(1543), - [anon_sym_o_GT_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1543), + [anon_sym_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(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4550), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(4869), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), + [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(459), - [aux_sym_parameter_repeat2] = STATE(4190), - [aux_sym_list_body_repeat1] = STATE(515), + [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), @@ -78119,7 +78425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1472), [sym__newline] = ACTIONS(1586), [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1559), + [anon_sym_RBRACK] = ACTIONS(1560), [anon_sym_LPAREN] = ACTIONS(1396), [anon_sym_COMMA] = ACTIONS(1480), [anon_sym_DOLLAR] = ACTIONS(1400), @@ -78151,200 +78457,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(389)] = { - [sym__expr_parenthesized_immediate] = STATE(688), - [sym__immediate_decimal] = STATE(689), - [sym_val_variable] = STATE(688), [sym_comment] = STATE(389), - [anon_sym_in] = ACTIONS(1617), - [sym__newline] = ACTIONS(1617), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_err_GT_PIPE] = ACTIONS(1617), - [anon_sym_out_GT_PIPE] = ACTIONS(1617), - [anon_sym_e_GT_PIPE] = ACTIONS(1617), - [anon_sym_o_GT_PIPE] = ACTIONS(1617), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1617), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1617), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1617), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1617), - [anon_sym_RPAREN] = ACTIONS(1617), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_RBRACE] = ACTIONS(1617), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1617), - [anon_sym_xor2] = ACTIONS(1617), - [anon_sym_or2] = ACTIONS(1617), - [anon_sym_not_DASHin2] = ACTIONS(1617), - [anon_sym_has2] = ACTIONS(1617), - [anon_sym_not_DASHhas2] = ACTIONS(1617), - [anon_sym_starts_DASHwith2] = ACTIONS(1617), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1617), - [anon_sym_ends_DASHwith2] = ACTIONS(1617), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1617), - [anon_sym_EQ_EQ2] = ACTIONS(1617), - [anon_sym_BANG_EQ2] = ACTIONS(1617), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1617), - [anon_sym_GT_EQ2] = ACTIONS(1617), - [anon_sym_EQ_TILDE2] = ACTIONS(1617), - [anon_sym_BANG_TILDE2] = ACTIONS(1617), - [anon_sym_like2] = ACTIONS(1617), - [anon_sym_not_DASHlike2] = ACTIONS(1617), - [anon_sym_LPAREN2] = ACTIONS(1605), - [anon_sym_STAR_STAR2] = ACTIONS(1617), - [anon_sym_PLUS_PLUS2] = ACTIONS(1617), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1617), - [anon_sym_SLASH_SLASH2] = ACTIONS(1617), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1617), - [anon_sym_bit_DASHshr2] = ACTIONS(1617), - [anon_sym_bit_DASHand2] = ACTIONS(1617), - [anon_sym_bit_DASHxor2] = ACTIONS(1617), - [anon_sym_bit_DASHor2] = ACTIONS(1617), - [anon_sym_DOT] = ACTIONS(1621), - [aux_sym__immediate_decimal_token1] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token3] = ACTIONS(1611), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [anon_sym_err_GT] = ACTIONS(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(1617), - [anon_sym_out_GT_GT] = ACTIONS(1617), - [anon_sym_e_GT_GT] = ACTIONS(1617), - [anon_sym_o_GT_GT] = ACTIONS(1617), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1617), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1617), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1617), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1617), + [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), - [anon_sym_EQ] = ACTIONS(1537), - [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_RPAREN] = ACTIONS(1539), - [anon_sym_GT2] = ACTIONS(1537), - [anon_sym_DASH2] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_STAR2] = ACTIONS(1537), - [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(1537), - [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(1537), - [anon_sym_SLASH2] = ACTIONS(1537), - [anon_sym_mod2] = ACTIONS(1539), - [anon_sym_SLASH_SLASH2] = ACTIONS(1539), - [anon_sym_PLUS2] = ACTIONS(1537), - [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(1537), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1539), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1539), - [anon_sym_COLON2] = ACTIONS(1539), - [anon_sym_DOT2] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1537), - [anon_sym_out_GT] = ACTIONS(1537), - [anon_sym_e_GT] = ACTIONS(1537), - [anon_sym_o_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT] = ACTIONS(1537), - [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(3), - }, - [STATE(391)] = { - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4550), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(4883), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), - [sym_comment] = STATE(391), - [aux_sym__types_body_repeat1] = STATE(459), - [aux_sym_parameter_repeat2] = STATE(4190), - [aux_sym_list_body_repeat1] = STATE(515), + [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), @@ -78353,7 +78581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1472), [sym__newline] = ACTIONS(1586), [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1623), + [anon_sym_RBRACK] = ACTIONS(1553), [anon_sym_LPAREN] = ACTIONS(1396), [anon_sym_COMMA] = ACTIONS(1480), [anon_sym_DOLLAR] = ACTIONS(1400), @@ -78384,86 +78612,398 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, + [STATE(391)] = { + [sym_comment] = STATE(391), + [aux_sym__types_body_repeat2] = STATE(1470), + [anon_sym_EQ] = ACTIONS(1612), + [anon_sym_PLUS_EQ] = ACTIONS(1612), + [anon_sym_DASH_EQ] = ACTIONS(1612), + [anon_sym_STAR_EQ] = ACTIONS(1612), + [anon_sym_SLASH_EQ] = ACTIONS(1612), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1612), + [anon_sym_in] = ACTIONS(1614), + [sym__newline] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_PIPE] = ACTIONS(1614), + [anon_sym_err_GT_PIPE] = ACTIONS(1614), + [anon_sym_out_GT_PIPE] = ACTIONS(1614), + [anon_sym_e_GT_PIPE] = ACTIONS(1614), + [anon_sym_o_GT_PIPE] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1614), + [anon_sym_GT2] = ACTIONS(1614), + [anon_sym_DASH2] = ACTIONS(1614), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_STAR2] = ACTIONS(1614), + [anon_sym_and2] = ACTIONS(1614), + [anon_sym_xor2] = ACTIONS(1614), + [anon_sym_or2] = ACTIONS(1614), + [anon_sym_not_DASHin2] = ACTIONS(1614), + [anon_sym_has2] = ACTIONS(1614), + [anon_sym_not_DASHhas2] = ACTIONS(1614), + [anon_sym_starts_DASHwith2] = ACTIONS(1614), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1614), + [anon_sym_ends_DASHwith2] = ACTIONS(1614), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1614), + [anon_sym_EQ_EQ2] = ACTIONS(1614), + [anon_sym_BANG_EQ2] = ACTIONS(1614), + [anon_sym_LT2] = ACTIONS(1614), + [anon_sym_LT_EQ2] = ACTIONS(1614), + [anon_sym_GT_EQ2] = ACTIONS(1614), + [anon_sym_EQ_TILDE2] = ACTIONS(1614), + [anon_sym_BANG_TILDE2] = ACTIONS(1614), + [anon_sym_like2] = ACTIONS(1614), + [anon_sym_not_DASHlike2] = ACTIONS(1614), + [anon_sym_STAR_STAR2] = ACTIONS(1614), + [anon_sym_PLUS_PLUS2] = ACTIONS(1614), + [anon_sym_SLASH2] = ACTIONS(1614), + [anon_sym_mod2] = ACTIONS(1614), + [anon_sym_SLASH_SLASH2] = ACTIONS(1614), + [anon_sym_PLUS2] = ACTIONS(1614), + [anon_sym_bit_DASHshl2] = ACTIONS(1614), + [anon_sym_bit_DASHshr2] = ACTIONS(1614), + [anon_sym_bit_DASHand2] = ACTIONS(1614), + [anon_sym_bit_DASHxor2] = ACTIONS(1614), + [anon_sym_bit_DASHor2] = ACTIONS(1614), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [sym__entry_separator] = ACTIONS(1622), + [anon_sym_COLON2] = ACTIONS(1624), + [anon_sym_err_GT] = ACTIONS(1614), + [anon_sym_out_GT] = ACTIONS(1614), + [anon_sym_e_GT] = ACTIONS(1614), + [anon_sym_o_GT] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT] = ACTIONS(1614), + [anon_sym_err_GT_GT] = ACTIONS(1614), + [anon_sym_out_GT_GT] = ACTIONS(1614), + [anon_sym_e_GT_GT] = ACTIONS(1614), + [anon_sym_o_GT_GT] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(392)] = { + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5242), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), [sym_comment] = STATE(392), - [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), + [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), + [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), + [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), + [anon_sym_EQ] = ACTIONS(1547), + [anon_sym_PLUS_EQ] = ACTIONS(1549), + [anon_sym_DASH_EQ] = ACTIONS(1549), + [anon_sym_STAR_EQ] = ACTIONS(1549), + [anon_sym_SLASH_EQ] = ACTIONS(1549), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1549), + [anon_sym_in] = ACTIONS(1549), + [sym__newline] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_err_GT_PIPE] = ACTIONS(1549), + [anon_sym_out_GT_PIPE] = ACTIONS(1549), + [anon_sym_e_GT_PIPE] = ACTIONS(1549), + [anon_sym_o_GT_PIPE] = ACTIONS(1549), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1549), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1549), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1549), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1549), + [anon_sym_RPAREN] = ACTIONS(1549), + [anon_sym_GT2] = ACTIONS(1547), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_STAR2] = ACTIONS(1547), + [anon_sym_and2] = ACTIONS(1549), + [anon_sym_xor2] = ACTIONS(1549), + [anon_sym_or2] = ACTIONS(1549), + [anon_sym_not_DASHin2] = ACTIONS(1549), + [anon_sym_has2] = ACTIONS(1549), + [anon_sym_not_DASHhas2] = ACTIONS(1549), + [anon_sym_starts_DASHwith2] = ACTIONS(1549), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1549), + [anon_sym_ends_DASHwith2] = ACTIONS(1549), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1549), + [anon_sym_EQ_EQ2] = ACTIONS(1549), + [anon_sym_BANG_EQ2] = ACTIONS(1549), + [anon_sym_LT2] = ACTIONS(1547), + [anon_sym_LT_EQ2] = ACTIONS(1549), + [anon_sym_GT_EQ2] = ACTIONS(1549), + [anon_sym_EQ_TILDE2] = ACTIONS(1549), + [anon_sym_BANG_TILDE2] = ACTIONS(1549), + [anon_sym_like2] = ACTIONS(1549), + [anon_sym_not_DASHlike2] = ACTIONS(1549), + [anon_sym_STAR_STAR2] = ACTIONS(1549), + [anon_sym_PLUS_PLUS2] = ACTIONS(1547), + [anon_sym_SLASH2] = ACTIONS(1547), + [anon_sym_mod2] = ACTIONS(1549), + [anon_sym_SLASH_SLASH2] = ACTIONS(1549), + [anon_sym_PLUS2] = ACTIONS(1547), + [anon_sym_bit_DASHshl2] = ACTIONS(1549), + [anon_sym_bit_DASHshr2] = ACTIONS(1549), + [anon_sym_bit_DASHand2] = ACTIONS(1549), + [anon_sym_bit_DASHxor2] = ACTIONS(1549), + [anon_sym_bit_DASHor2] = ACTIONS(1549), + [anon_sym_DOT_DOT2] = ACTIONS(1547), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1549), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1549), + [anon_sym_COLON2] = ACTIONS(1549), + [anon_sym_DOT2] = ACTIONS(1547), + [anon_sym_err_GT] = ACTIONS(1547), + [anon_sym_out_GT] = ACTIONS(1547), + [anon_sym_e_GT] = ACTIONS(1547), + [anon_sym_o_GT] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT] = ACTIONS(1547), + [anon_sym_err_GT_GT] = ACTIONS(1549), + [anon_sym_out_GT_GT] = ACTIONS(1549), + [anon_sym_e_GT_GT] = ACTIONS(1549), + [anon_sym_o_GT_GT] = ACTIONS(1549), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1549), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1549), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1549), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1549), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(396)] = { + [sym_comment] = STATE(396), [ts_builtin_sym_end] = ACTIONS(1521), [anon_sym_EQ] = ACTIONS(1519), [anon_sym_PLUS_EQ] = ACTIONS(1521), @@ -78540,123 +79080,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(394)] = { - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4550), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(5018), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), - [sym_comment] = STATE(394), - [aux_sym__types_body_repeat1] = STATE(459), - [aux_sym_parameter_repeat2] = STATE(4190), - [aux_sym_list_body_repeat1] = STATE(515), - [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(1625), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [STATE(397)] = { + [sym_path] = STATE(424), + [sym_comment] = STATE(397), + [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), - [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(395)] = { - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4550), - [sym__spread_list] = STATE(4821), - [sym_list_body] = STATE(5225), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4550), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), - [sym_comment] = STATE(395), - [aux_sym__types_body_repeat1] = STATE(459), - [aux_sym_parameter_repeat2] = STATE(4190), - [aux_sym_list_body_repeat1] = STATE(515), + [STATE(398)] = { + [sym__expr_parenthesized_immediate] = STATE(688), + [sym__immediate_decimal] = STATE(528), + [sym_val_variable] = STATE(688), + [sym_comment] = STATE(398), + [anon_sym_in] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_GT2] = ACTIONS(1602), + [anon_sym_DASH2] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_STAR2] = ACTIONS(1602), + [anon_sym_and2] = ACTIONS(1598), + [anon_sym_xor2] = ACTIONS(1598), + [anon_sym_or2] = ACTIONS(1598), + [anon_sym_not_DASHin2] = ACTIONS(1598), + [anon_sym_has2] = ACTIONS(1598), + [anon_sym_not_DASHhas2] = ACTIONS(1598), + [anon_sym_starts_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1598), + [anon_sym_ends_DASHwith2] = ACTIONS(1598), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1598), + [anon_sym_EQ_EQ2] = ACTIONS(1598), + [anon_sym_BANG_EQ2] = ACTIONS(1598), + [anon_sym_LT2] = ACTIONS(1602), + [anon_sym_LT_EQ2] = ACTIONS(1598), + [anon_sym_GT_EQ2] = ACTIONS(1598), + [anon_sym_EQ_TILDE2] = ACTIONS(1598), + [anon_sym_BANG_TILDE2] = ACTIONS(1598), + [anon_sym_like2] = ACTIONS(1598), + [anon_sym_not_DASHlike2] = ACTIONS(1598), + [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_STAR_STAR2] = ACTIONS(1598), + [anon_sym_PLUS_PLUS2] = ACTIONS(1598), + [anon_sym_SLASH2] = ACTIONS(1602), + [anon_sym_mod2] = ACTIONS(1598), + [anon_sym_SLASH_SLASH2] = ACTIONS(1598), + [anon_sym_PLUS2] = ACTIONS(1602), + [anon_sym_bit_DASHshl2] = ACTIONS(1598), + [anon_sym_bit_DASHshr2] = ACTIONS(1598), + [anon_sym_bit_DASHand2] = ACTIONS(1598), + [anon_sym_bit_DASHxor2] = ACTIONS(1598), + [anon_sym_bit_DASHor2] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(1608), + [aux_sym__immediate_decimal_token2] = ACTIONS(1608), + [aux_sym__immediate_decimal_token3] = ACTIONS(1610), + [aux_sym__immediate_decimal_token4] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1602), + [anon_sym_out_GT] = ACTIONS(1602), + [anon_sym_e_GT] = ACTIONS(1602), + [anon_sym_o_GT] = ACTIONS(1602), + [anon_sym_err_PLUSout_GT] = ACTIONS(1602), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), + [anon_sym_o_PLUSe_GT] = ACTIONS(1602), + [anon_sym_e_PLUSo_GT] = ACTIONS(1602), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [sym__unquoted_pattern] = ACTIONS(1635), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(399)] = { + [sym_expr_parenthesized] = STATE(4132), + [sym__spread_parenthesized] = STATE(4915), + [sym_val_range] = STATE(4939), + [sym__val_range] = STATE(4693), + [sym__value] = STATE(4939), + [sym_val_nothing] = STATE(4538), + [sym_val_bool] = STATE(4320), + [sym__spread_variable] = STATE(4943), + [sym_val_variable] = STATE(3965), + [sym_val_cellpath] = STATE(4538), + [sym_val_number] = STATE(4538), + [sym__val_number_decimal] = STATE(3621), + [sym__val_number] = STATE(4386), + [sym_val_duration] = STATE(4538), + [sym_val_filesize] = STATE(4538), + [sym_val_binary] = STATE(4538), + [sym_val_string] = STATE(4538), + [sym__raw_str] = STATE(3665), + [sym__str_double_quotes] = STATE(3665), + [sym__str_single_quotes] = STATE(3665), + [sym__str_back_ticks] = STATE(3665), + [sym_val_interpolated] = STATE(4538), + [sym__inter_single_quotes] = STATE(4680), + [sym__inter_double_quotes] = STATE(4683), + [sym_val_list] = STATE(4538), + [sym__spread_list] = STATE(4915), + [sym_list_body] = STATE(5252), + [sym_val_entry] = STATE(4524), + [sym_val_record] = STATE(4538), + [sym_val_table] = STATE(4538), + [sym_val_closure] = STATE(4538), + [sym__unquoted_in_list] = STATE(4401), + [sym__unquoted_in_list_with_expr] = STATE(4939), + [sym__unquoted_anonymous_prefix] = STATE(4693), + [sym_comment] = STATE(399), + [aux_sym__types_body_repeat1] = STATE(465), + [aux_sym_parameter_repeat2] = STATE(4405), + [aux_sym_list_body_repeat1] = STATE(599), [anon_sym_true] = ACTIONS(1468), [anon_sym_false] = ACTIONS(1468), [anon_sym_null] = ACTIONS(1470), @@ -78665,7 +79283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1472), [sym__newline] = ACTIONS(1586), [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1549), + [anon_sym_RBRACK] = ACTIONS(1637), [anon_sym_LPAREN] = ACTIONS(1396), [anon_sym_COMMA] = ACTIONS(1480), [anon_sym_DOLLAR] = ACTIONS(1400), @@ -78696,1165 +79314,472 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(396)] = { - [sym_comment] = STATE(396), - [anon_sym_EQ] = ACTIONS(1533), - [anon_sym_PLUS_EQ] = ACTIONS(1535), - [anon_sym_DASH_EQ] = ACTIONS(1535), - [anon_sym_STAR_EQ] = ACTIONS(1535), - [anon_sym_SLASH_EQ] = ACTIONS(1535), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [sym__newline] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_PIPE] = ACTIONS(1535), - [anon_sym_err_GT_PIPE] = ACTIONS(1535), - [anon_sym_out_GT_PIPE] = ACTIONS(1535), - [anon_sym_e_GT_PIPE] = ACTIONS(1535), - [anon_sym_o_GT_PIPE] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), - [anon_sym_RPAREN] = ACTIONS(1535), - [anon_sym_GT2] = ACTIONS(1533), - [anon_sym_DASH2] = ACTIONS(1533), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_STAR2] = ACTIONS(1533), - [anon_sym_and2] = ACTIONS(1535), - [anon_sym_xor2] = ACTIONS(1535), - [anon_sym_or2] = ACTIONS(1535), - [anon_sym_not_DASHin2] = ACTIONS(1535), - [anon_sym_has2] = ACTIONS(1535), - [anon_sym_not_DASHhas2] = ACTIONS(1535), - [anon_sym_starts_DASHwith2] = ACTIONS(1535), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), - [anon_sym_ends_DASHwith2] = ACTIONS(1535), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), - [anon_sym_EQ_EQ2] = ACTIONS(1535), - [anon_sym_BANG_EQ2] = ACTIONS(1535), - [anon_sym_LT2] = ACTIONS(1533), - [anon_sym_LT_EQ2] = ACTIONS(1535), - [anon_sym_GT_EQ2] = ACTIONS(1535), - [anon_sym_EQ_TILDE2] = ACTIONS(1535), - [anon_sym_BANG_TILDE2] = ACTIONS(1535), - [anon_sym_like2] = ACTIONS(1535), - [anon_sym_not_DASHlike2] = ACTIONS(1535), - [anon_sym_STAR_STAR2] = ACTIONS(1535), - [anon_sym_PLUS_PLUS2] = ACTIONS(1533), - [anon_sym_SLASH2] = ACTIONS(1533), - [anon_sym_mod2] = ACTIONS(1535), - [anon_sym_SLASH_SLASH2] = ACTIONS(1535), - [anon_sym_PLUS2] = ACTIONS(1533), - [anon_sym_bit_DASHshl2] = ACTIONS(1535), - [anon_sym_bit_DASHshr2] = ACTIONS(1535), - [anon_sym_bit_DASHand2] = ACTIONS(1535), - [anon_sym_bit_DASHxor2] = ACTIONS(1535), - [anon_sym_bit_DASHor2] = ACTIONS(1535), - [anon_sym_DOT_DOT2] = ACTIONS(1533), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1535), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1535), - [anon_sym_COLON2] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1533), - [anon_sym_err_GT] = ACTIONS(1533), - [anon_sym_out_GT] = ACTIONS(1533), - [anon_sym_e_GT] = ACTIONS(1533), - [anon_sym_o_GT] = ACTIONS(1533), - [anon_sym_err_PLUSout_GT] = ACTIONS(1533), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1533), - [anon_sym_o_PLUSe_GT] = ACTIONS(1533), - [anon_sym_e_PLUSo_GT] = ACTIONS(1533), - [anon_sym_err_GT_GT] = ACTIONS(1535), - [anon_sym_out_GT_GT] = ACTIONS(1535), - [anon_sym_e_GT_GT] = ACTIONS(1535), - [anon_sym_o_GT_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), + [STATE(400)] = { + [sym__expr_parenthesized_immediate] = STATE(686), + [sym__immediate_decimal] = STATE(687), + [sym_val_variable] = STATE(686), + [sym_comment] = STATE(400), + [anon_sym_in] = ACTIONS(1639), + [sym__newline] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_err_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_GT_PIPE] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), + [anon_sym_RPAREN] = ACTIONS(1639), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_GT2] = ACTIONS(1641), + [anon_sym_DASH2] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_STAR2] = ACTIONS(1641), + [anon_sym_and2] = ACTIONS(1639), + [anon_sym_xor2] = ACTIONS(1639), + [anon_sym_or2] = ACTIONS(1639), + [anon_sym_not_DASHin2] = ACTIONS(1639), + [anon_sym_has2] = ACTIONS(1639), + [anon_sym_not_DASHhas2] = ACTIONS(1639), + [anon_sym_starts_DASHwith2] = ACTIONS(1639), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1639), + [anon_sym_ends_DASHwith2] = ACTIONS(1639), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1639), + [anon_sym_EQ_EQ2] = ACTIONS(1639), + [anon_sym_BANG_EQ2] = ACTIONS(1639), + [anon_sym_LT2] = ACTIONS(1641), + [anon_sym_LT_EQ2] = ACTIONS(1639), + [anon_sym_GT_EQ2] = ACTIONS(1639), + [anon_sym_EQ_TILDE2] = ACTIONS(1639), + [anon_sym_BANG_TILDE2] = ACTIONS(1639), + [anon_sym_like2] = ACTIONS(1639), + [anon_sym_not_DASHlike2] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_STAR_STAR2] = ACTIONS(1639), + [anon_sym_PLUS_PLUS2] = ACTIONS(1639), + [anon_sym_SLASH2] = ACTIONS(1641), + [anon_sym_mod2] = ACTIONS(1639), + [anon_sym_SLASH_SLASH2] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1641), + [anon_sym_bit_DASHshl2] = ACTIONS(1639), + [anon_sym_bit_DASHshr2] = ACTIONS(1639), + [anon_sym_bit_DASHand2] = ACTIONS(1639), + [anon_sym_bit_DASHxor2] = ACTIONS(1639), + [anon_sym_bit_DASHor2] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(1643), + [aux_sym__immediate_decimal_token1] = ACTIONS(1608), + [aux_sym__immediate_decimal_token2] = ACTIONS(1608), + [aux_sym__immediate_decimal_token3] = ACTIONS(1610), + [aux_sym__immediate_decimal_token4] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1641), + [anon_sym_out_GT] = ACTIONS(1641), + [anon_sym_e_GT] = ACTIONS(1641), + [anon_sym_o_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT] = ACTIONS(1641), + [anon_sym_err_GT_GT] = ACTIONS(1639), + [anon_sym_out_GT_GT] = ACTIONS(1639), + [anon_sym_e_GT_GT] = ACTIONS(1639), + [anon_sym_o_GT_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(397)] = { - [sym_comment] = STATE(397), - [aux_sym__types_body_repeat2] = STATE(1460), - [anon_sym_EQ] = ACTIONS(1627), - [anon_sym_PLUS_EQ] = ACTIONS(1627), - [anon_sym_DASH_EQ] = ACTIONS(1627), - [anon_sym_STAR_EQ] = ACTIONS(1627), - [anon_sym_SLASH_EQ] = ACTIONS(1627), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1627), - [anon_sym_in] = ACTIONS(1629), - [sym__newline] = ACTIONS(1629), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(1629), - [anon_sym_err_GT_PIPE] = ACTIONS(1629), - [anon_sym_out_GT_PIPE] = ACTIONS(1629), - [anon_sym_e_GT_PIPE] = ACTIONS(1629), - [anon_sym_o_GT_PIPE] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1629), - [anon_sym_GT2] = ACTIONS(1629), - [anon_sym_DASH2] = ACTIONS(1629), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_STAR2] = ACTIONS(1629), - [anon_sym_and2] = ACTIONS(1629), - [anon_sym_xor2] = ACTIONS(1629), - [anon_sym_or2] = ACTIONS(1629), - [anon_sym_not_DASHin2] = ACTIONS(1629), - [anon_sym_has2] = ACTIONS(1629), - [anon_sym_not_DASHhas2] = ACTIONS(1629), - [anon_sym_starts_DASHwith2] = ACTIONS(1629), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1629), - [anon_sym_ends_DASHwith2] = ACTIONS(1629), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1629), - [anon_sym_EQ_EQ2] = ACTIONS(1629), - [anon_sym_BANG_EQ2] = ACTIONS(1629), - [anon_sym_LT2] = ACTIONS(1629), - [anon_sym_LT_EQ2] = ACTIONS(1629), - [anon_sym_GT_EQ2] = ACTIONS(1629), - [anon_sym_EQ_TILDE2] = ACTIONS(1629), - [anon_sym_BANG_TILDE2] = ACTIONS(1629), - [anon_sym_like2] = ACTIONS(1629), - [anon_sym_not_DASHlike2] = ACTIONS(1629), - [anon_sym_STAR_STAR2] = ACTIONS(1629), - [anon_sym_PLUS_PLUS2] = ACTIONS(1629), - [anon_sym_SLASH2] = ACTIONS(1629), - [anon_sym_mod2] = ACTIONS(1629), - [anon_sym_SLASH_SLASH2] = ACTIONS(1629), - [anon_sym_PLUS2] = ACTIONS(1629), - [anon_sym_bit_DASHshl2] = ACTIONS(1629), - [anon_sym_bit_DASHshr2] = ACTIONS(1629), - [anon_sym_bit_DASHand2] = ACTIONS(1629), - [anon_sym_bit_DASHxor2] = ACTIONS(1629), - [anon_sym_bit_DASHor2] = ACTIONS(1629), - [anon_sym_DOT_DOT2] = ACTIONS(1633), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), - [sym__entry_separator] = ACTIONS(1637), - [anon_sym_COLON2] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1629), - [anon_sym_out_GT] = ACTIONS(1629), - [anon_sym_e_GT] = ACTIONS(1629), - [anon_sym_o_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT] = ACTIONS(1629), - [anon_sym_err_GT_GT] = ACTIONS(1629), - [anon_sym_out_GT_GT] = ACTIONS(1629), - [anon_sym_e_GT_GT] = ACTIONS(1629), - [anon_sym_o_GT_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1629), - [anon_sym_POUND] = ACTIONS(103), + [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(398)] = { - [sym_comment] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(1458), - [anon_sym_EQ] = ACTIONS(1456), - [anon_sym_PLUS_EQ] = ACTIONS(1458), - [anon_sym_DASH_EQ] = ACTIONS(1458), - [anon_sym_STAR_EQ] = ACTIONS(1458), - [anon_sym_SLASH_EQ] = ACTIONS(1458), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1458), - [anon_sym_in] = ACTIONS(1458), - [sym__newline] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_err_GT_PIPE] = ACTIONS(1458), - [anon_sym_out_GT_PIPE] = ACTIONS(1458), - [anon_sym_e_GT_PIPE] = ACTIONS(1458), - [anon_sym_o_GT_PIPE] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1458), - [anon_sym_GT2] = ACTIONS(1456), - [anon_sym_DASH2] = ACTIONS(1456), - [anon_sym_STAR2] = ACTIONS(1456), - [anon_sym_and2] = ACTIONS(1458), - [anon_sym_xor2] = ACTIONS(1458), - [anon_sym_or2] = ACTIONS(1458), - [anon_sym_not_DASHin2] = ACTIONS(1458), - [anon_sym_has2] = ACTIONS(1458), - [anon_sym_not_DASHhas2] = ACTIONS(1458), - [anon_sym_starts_DASHwith2] = ACTIONS(1458), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1458), - [anon_sym_ends_DASHwith2] = ACTIONS(1458), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1458), - [anon_sym_EQ_EQ2] = ACTIONS(1458), - [anon_sym_BANG_EQ2] = ACTIONS(1458), - [anon_sym_LT2] = ACTIONS(1456), - [anon_sym_LT_EQ2] = ACTIONS(1458), - [anon_sym_GT_EQ2] = ACTIONS(1458), - [anon_sym_EQ_TILDE2] = ACTIONS(1458), - [anon_sym_BANG_TILDE2] = ACTIONS(1458), - [anon_sym_like2] = ACTIONS(1458), - [anon_sym_not_DASHlike2] = ACTIONS(1458), - [anon_sym_STAR_STAR2] = ACTIONS(1458), - [anon_sym_PLUS_PLUS2] = ACTIONS(1456), - [anon_sym_SLASH2] = ACTIONS(1456), - [anon_sym_mod2] = ACTIONS(1458), - [anon_sym_SLASH_SLASH2] = ACTIONS(1458), - [anon_sym_PLUS2] = ACTIONS(1456), - [anon_sym_bit_DASHshl2] = ACTIONS(1458), - [anon_sym_bit_DASHshr2] = ACTIONS(1458), - [anon_sym_bit_DASHand2] = ACTIONS(1458), - [anon_sym_bit_DASHxor2] = ACTIONS(1458), - [anon_sym_bit_DASHor2] = ACTIONS(1458), - [anon_sym_DOT_DOT2] = ACTIONS(1456), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1458), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1641), - [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(399)] = { - [sym__path_suffix] = STATE(448), - [sym_comment] = STATE(399), - [anon_sym_in] = ACTIONS(1444), - [sym__newline] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_err_GT_PIPE] = ACTIONS(1444), - [anon_sym_out_GT_PIPE] = ACTIONS(1444), - [anon_sym_e_GT_PIPE] = ACTIONS(1444), - [anon_sym_o_GT_PIPE] = ACTIONS(1444), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1444), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1444), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1444), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1444), - [anon_sym_RPAREN] = ACTIONS(1444), - [anon_sym_GT2] = ACTIONS(1442), - [anon_sym_DASH2] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_RBRACE] = ACTIONS(1444), - [anon_sym_EQ_GT] = ACTIONS(1444), - [anon_sym_STAR2] = ACTIONS(1442), - [anon_sym_and2] = ACTIONS(1444), - [anon_sym_xor2] = ACTIONS(1444), - [anon_sym_or2] = ACTIONS(1444), - [anon_sym_not_DASHin2] = ACTIONS(1444), - [anon_sym_has2] = ACTIONS(1444), - [anon_sym_not_DASHhas2] = ACTIONS(1444), - [anon_sym_starts_DASHwith2] = ACTIONS(1444), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1444), - [anon_sym_ends_DASHwith2] = ACTIONS(1444), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1444), - [anon_sym_EQ_EQ2] = ACTIONS(1444), - [anon_sym_BANG_EQ2] = ACTIONS(1444), - [anon_sym_LT2] = ACTIONS(1442), - [anon_sym_LT_EQ2] = ACTIONS(1444), - [anon_sym_GT_EQ2] = ACTIONS(1444), - [anon_sym_EQ_TILDE2] = ACTIONS(1444), - [anon_sym_BANG_TILDE2] = ACTIONS(1444), - [anon_sym_like2] = ACTIONS(1444), - [anon_sym_not_DASHlike2] = ACTIONS(1444), - [anon_sym_STAR_STAR2] = ACTIONS(1444), - [anon_sym_PLUS_PLUS2] = ACTIONS(1444), - [anon_sym_SLASH2] = ACTIONS(1442), - [anon_sym_mod2] = ACTIONS(1444), - [anon_sym_SLASH_SLASH2] = ACTIONS(1444), - [anon_sym_PLUS2] = ACTIONS(1442), - [anon_sym_bit_DASHshl2] = ACTIONS(1444), - [anon_sym_bit_DASHshr2] = ACTIONS(1444), - [anon_sym_bit_DASHand2] = ACTIONS(1444), - [anon_sym_bit_DASHxor2] = ACTIONS(1444), - [anon_sym_bit_DASHor2] = ACTIONS(1444), - [anon_sym_DOT_DOT2] = ACTIONS(1442), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), - [anon_sym_COLON2] = ACTIONS(1444), - [anon_sym_QMARK2] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_DOT2] = ACTIONS(1442), - [anon_sym_err_GT] = ACTIONS(1442), - [anon_sym_out_GT] = ACTIONS(1442), - [anon_sym_e_GT] = ACTIONS(1442), - [anon_sym_o_GT] = ACTIONS(1442), - [anon_sym_err_PLUSout_GT] = ACTIONS(1442), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1442), - [anon_sym_o_PLUSe_GT] = ACTIONS(1442), - [anon_sym_e_PLUSo_GT] = ACTIONS(1442), - [anon_sym_err_GT_GT] = ACTIONS(1444), - [anon_sym_out_GT_GT] = ACTIONS(1444), - [anon_sym_e_GT_GT] = ACTIONS(1444), - [anon_sym_o_GT_GT] = ACTIONS(1444), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1444), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1444), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1444), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1444), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(400)] = { - [sym__expr_parenthesized_immediate] = STATE(780), - [sym__immediate_decimal] = STATE(961), - [sym_val_variable] = STATE(780), - [sym_comment] = STATE(400), - [anon_sym_in] = ACTIONS(1599), - [sym__newline] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_err_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_GT_PIPE] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_GT2] = ACTIONS(1603), - [anon_sym_DASH2] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_STAR2] = ACTIONS(1603), - [anon_sym_and2] = ACTIONS(1599), - [anon_sym_xor2] = ACTIONS(1599), - [anon_sym_or2] = ACTIONS(1599), - [anon_sym_not_DASHin2] = ACTIONS(1599), - [anon_sym_has2] = ACTIONS(1599), - [anon_sym_not_DASHhas2] = ACTIONS(1599), - [anon_sym_starts_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), - [anon_sym_ends_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), - [anon_sym_EQ_EQ2] = ACTIONS(1599), - [anon_sym_BANG_EQ2] = ACTIONS(1599), - [anon_sym_LT2] = ACTIONS(1603), - [anon_sym_LT_EQ2] = ACTIONS(1599), - [anon_sym_GT_EQ2] = ACTIONS(1599), - [anon_sym_EQ_TILDE2] = ACTIONS(1599), - [anon_sym_BANG_TILDE2] = ACTIONS(1599), - [anon_sym_like2] = ACTIONS(1599), - [anon_sym_not_DASHlike2] = ACTIONS(1599), - [anon_sym_LPAREN2] = ACTIONS(1605), - [anon_sym_STAR_STAR2] = ACTIONS(1599), - [anon_sym_PLUS_PLUS2] = ACTIONS(1599), - [anon_sym_SLASH2] = ACTIONS(1603), - [anon_sym_mod2] = ACTIONS(1599), - [anon_sym_SLASH_SLASH2] = ACTIONS(1599), - [anon_sym_PLUS2] = ACTIONS(1603), - [anon_sym_bit_DASHshl2] = ACTIONS(1599), - [anon_sym_bit_DASHshr2] = ACTIONS(1599), - [anon_sym_bit_DASHand2] = ACTIONS(1599), - [anon_sym_bit_DASHxor2] = ACTIONS(1599), - [anon_sym_bit_DASHor2] = ACTIONS(1599), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1649), - [aux_sym__immediate_decimal_token4] = ACTIONS(1649), - [anon_sym_err_GT] = ACTIONS(1603), - [anon_sym_out_GT] = ACTIONS(1603), - [anon_sym_e_GT] = ACTIONS(1603), - [anon_sym_o_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT] = ACTIONS(1603), - [anon_sym_err_GT_GT] = ACTIONS(1599), - [anon_sym_out_GT_GT] = ACTIONS(1599), - [anon_sym_e_GT_GT] = ACTIONS(1599), - [anon_sym_o_GT_GT] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(401)] = { - [sym__expr_parenthesized_immediate] = STATE(958), - [sym__immediate_decimal] = STATE(675), - [sym_val_variable] = STATE(958), - [sym_comment] = STATE(401), - [ts_builtin_sym_end] = ACTIONS(1599), - [anon_sym_in] = ACTIONS(1599), - [sym__newline] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_err_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_GT_PIPE] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_GT2] = ACTIONS(1603), - [anon_sym_DASH2] = ACTIONS(1603), - [anon_sym_STAR2] = ACTIONS(1603), - [anon_sym_and2] = ACTIONS(1599), - [anon_sym_xor2] = ACTIONS(1599), - [anon_sym_or2] = ACTIONS(1599), - [anon_sym_not_DASHin2] = ACTIONS(1599), - [anon_sym_has2] = ACTIONS(1599), - [anon_sym_not_DASHhas2] = ACTIONS(1599), - [anon_sym_starts_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), - [anon_sym_ends_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), - [anon_sym_EQ_EQ2] = ACTIONS(1599), - [anon_sym_BANG_EQ2] = ACTIONS(1599), - [anon_sym_LT2] = ACTIONS(1603), - [anon_sym_LT_EQ2] = ACTIONS(1599), - [anon_sym_GT_EQ2] = ACTIONS(1599), - [anon_sym_EQ_TILDE2] = ACTIONS(1599), - [anon_sym_BANG_TILDE2] = ACTIONS(1599), - [anon_sym_like2] = ACTIONS(1599), - [anon_sym_not_DASHlike2] = ACTIONS(1599), - [anon_sym_LPAREN2] = ACTIONS(1653), - [anon_sym_STAR_STAR2] = ACTIONS(1599), - [anon_sym_PLUS_PLUS2] = ACTIONS(1599), - [anon_sym_SLASH2] = ACTIONS(1603), - [anon_sym_mod2] = ACTIONS(1599), - [anon_sym_SLASH_SLASH2] = ACTIONS(1599), - [anon_sym_PLUS2] = ACTIONS(1603), - [anon_sym_bit_DASHshl2] = ACTIONS(1599), - [anon_sym_bit_DASHshr2] = ACTIONS(1599), - [anon_sym_bit_DASHand2] = ACTIONS(1599), - [anon_sym_bit_DASHxor2] = ACTIONS(1599), - [anon_sym_bit_DASHor2] = ACTIONS(1599), - [anon_sym_DOT] = ACTIONS(1655), - [aux_sym__immediate_decimal_token1] = ACTIONS(1657), - [aux_sym__immediate_decimal_token2] = ACTIONS(1657), - [aux_sym__immediate_decimal_token3] = ACTIONS(1659), - [aux_sym__immediate_decimal_token4] = ACTIONS(1659), - [anon_sym_err_GT] = ACTIONS(1603), - [anon_sym_out_GT] = ACTIONS(1603), - [anon_sym_e_GT] = ACTIONS(1603), - [anon_sym_o_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT] = ACTIONS(1603), - [anon_sym_err_GT_GT] = ACTIONS(1599), - [anon_sym_out_GT_GT] = ACTIONS(1599), - [anon_sym_e_GT_GT] = ACTIONS(1599), - [anon_sym_o_GT_GT] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(402)] = { - [sym__expr_parenthesized_immediate] = STATE(717), - [sym__immediate_decimal] = STATE(718), - [sym_val_variable] = STATE(717), - [sym_comment] = STATE(402), - [anon_sym_in] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_RPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_GT2] = ACTIONS(1663), - [anon_sym_DASH2] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1663), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_has2] = ACTIONS(1661), - [anon_sym_not_DASHhas2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1663), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_like2] = ACTIONS(1661), - [anon_sym_not_DASHlike2] = ACTIONS(1661), - [anon_sym_LPAREN2] = ACTIONS(1605), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1663), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1663), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [aux_sym__immediate_decimal_token1] = ACTIONS(1665), - [aux_sym__immediate_decimal_token2] = ACTIONS(1665), - [aux_sym__immediate_decimal_token3] = ACTIONS(1611), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [anon_sym_err_GT] = ACTIONS(1663), - [anon_sym_out_GT] = ACTIONS(1663), - [anon_sym_e_GT] = ACTIONS(1663), - [anon_sym_o_GT] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT] = ACTIONS(1663), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [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), - [ts_builtin_sym_end] = ACTIONS(1458), - [anon_sym_EQ] = ACTIONS(1456), - [anon_sym_PLUS_EQ] = ACTIONS(1458), - [anon_sym_DASH_EQ] = ACTIONS(1458), - [anon_sym_STAR_EQ] = ACTIONS(1458), - [anon_sym_SLASH_EQ] = ACTIONS(1458), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1458), - [anon_sym_in] = ACTIONS(1458), - [sym__newline] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_err_GT_PIPE] = ACTIONS(1458), - [anon_sym_out_GT_PIPE] = ACTIONS(1458), - [anon_sym_e_GT_PIPE] = ACTIONS(1458), - [anon_sym_o_GT_PIPE] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1458), - [anon_sym_GT2] = ACTIONS(1456), - [anon_sym_DASH2] = ACTIONS(1456), - [anon_sym_STAR2] = ACTIONS(1456), - [anon_sym_and2] = ACTIONS(1458), - [anon_sym_xor2] = ACTIONS(1458), - [anon_sym_or2] = ACTIONS(1458), - [anon_sym_not_DASHin2] = ACTIONS(1458), - [anon_sym_has2] = ACTIONS(1458), - [anon_sym_not_DASHhas2] = ACTIONS(1458), - [anon_sym_starts_DASHwith2] = ACTIONS(1458), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1458), - [anon_sym_ends_DASHwith2] = ACTIONS(1458), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1458), - [anon_sym_EQ_EQ2] = ACTIONS(1458), - [anon_sym_BANG_EQ2] = ACTIONS(1458), - [anon_sym_LT2] = ACTIONS(1456), - [anon_sym_LT_EQ2] = ACTIONS(1458), - [anon_sym_GT_EQ2] = ACTIONS(1458), - [anon_sym_EQ_TILDE2] = ACTIONS(1458), - [anon_sym_BANG_TILDE2] = ACTIONS(1458), - [anon_sym_like2] = ACTIONS(1458), - [anon_sym_not_DASHlike2] = ACTIONS(1458), - [anon_sym_STAR_STAR2] = ACTIONS(1458), - [anon_sym_PLUS_PLUS2] = ACTIONS(1456), - [anon_sym_SLASH2] = ACTIONS(1456), - [anon_sym_mod2] = ACTIONS(1458), - [anon_sym_SLASH_SLASH2] = ACTIONS(1458), - [anon_sym_PLUS2] = ACTIONS(1456), - [anon_sym_bit_DASHshl2] = ACTIONS(1458), - [anon_sym_bit_DASHshr2] = ACTIONS(1458), - [anon_sym_bit_DASHand2] = ACTIONS(1458), - [anon_sym_bit_DASHxor2] = ACTIONS(1458), - [anon_sym_bit_DASHor2] = ACTIONS(1458), - [anon_sym_DOT_DOT2] = ACTIONS(1456), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1458), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1458), - [anon_sym_QMARK2] = ACTIONS(1667), - [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_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__expr_parenthesized_immediate] = STATE(722), - [sym__immediate_decimal] = STATE(723), - [sym_val_variable] = STATE(722), + [sym_cell_path] = STATE(471), + [sym_path] = STATE(458), [sym_comment] = STATE(404), - [anon_sym_in] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_GT2] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1671), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1671), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_has2] = ACTIONS(1669), - [anon_sym_not_DASHhas2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1671), - [anon_sym_LT_EQ2] = ACTIONS(1669), - [anon_sym_GT_EQ2] = ACTIONS(1669), - [anon_sym_EQ_TILDE2] = ACTIONS(1669), - [anon_sym_BANG_TILDE2] = ACTIONS(1669), - [anon_sym_like2] = ACTIONS(1669), - [anon_sym_not_DASHlike2] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1605), - [anon_sym_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1671), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1671), - [anon_sym_bit_DASHshl2] = ACTIONS(1669), - [anon_sym_bit_DASHshr2] = ACTIONS(1669), - [anon_sym_bit_DASHand2] = ACTIONS(1669), - [anon_sym_bit_DASHxor2] = ACTIONS(1669), - [anon_sym_bit_DASHor2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token1] = ACTIONS(1665), - [aux_sym__immediate_decimal_token2] = ACTIONS(1665), - [aux_sym__immediate_decimal_token3] = ACTIONS(1611), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [anon_sym_err_GT] = ACTIONS(1671), - [anon_sym_out_GT] = ACTIONS(1671), - [anon_sym_e_GT] = ACTIONS(1671), - [anon_sym_o_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT] = ACTIONS(1671), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [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__expr_parenthesized_immediate] = STATE(724), - [sym__immediate_decimal] = STATE(725), - [sym_val_variable] = STATE(724), [sym_comment] = STATE(405), - [anon_sym_in] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_RPAREN] = ACTIONS(1673), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_GT2] = ACTIONS(1675), - [anon_sym_DASH2] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1675), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_has2] = ACTIONS(1673), - [anon_sym_not_DASHhas2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1675), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_like2] = ACTIONS(1673), - [anon_sym_not_DASHlike2] = ACTIONS(1673), - [anon_sym_LPAREN2] = ACTIONS(1605), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1675), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1675), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [aux_sym__immediate_decimal_token1] = ACTIONS(1665), - [aux_sym__immediate_decimal_token2] = ACTIONS(1665), - [aux_sym__immediate_decimal_token3] = ACTIONS(1611), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [anon_sym_err_GT] = ACTIONS(1675), - [anon_sym_out_GT] = ACTIONS(1675), - [anon_sym_e_GT] = ACTIONS(1675), - [anon_sym_o_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT] = ACTIONS(1675), - [anon_sym_err_GT_GT] = ACTIONS(1673), - [anon_sym_out_GT_GT] = ACTIONS(1673), - [anon_sym_e_GT_GT] = ACTIONS(1673), - [anon_sym_o_GT_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), + [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__expr_parenthesized_immediate] = STATE(726), - [sym__immediate_decimal] = STATE(953), - [sym_val_variable] = STATE(726), [sym_comment] = STATE(406), - [anon_sym_in] = ACTIONS(1677), - [sym__newline] = ACTIONS(1677), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_err_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_GT_PIPE] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_GT2] = ACTIONS(1679), - [anon_sym_DASH2] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_RBRACE] = ACTIONS(1677), - [anon_sym_STAR2] = ACTIONS(1679), - [anon_sym_and2] = ACTIONS(1677), - [anon_sym_xor2] = ACTIONS(1677), - [anon_sym_or2] = ACTIONS(1677), - [anon_sym_not_DASHin2] = ACTIONS(1677), - [anon_sym_has2] = ACTIONS(1677), - [anon_sym_not_DASHhas2] = ACTIONS(1677), - [anon_sym_starts_DASHwith2] = ACTIONS(1677), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1677), - [anon_sym_ends_DASHwith2] = ACTIONS(1677), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1677), - [anon_sym_EQ_EQ2] = ACTIONS(1677), - [anon_sym_BANG_EQ2] = ACTIONS(1677), - [anon_sym_LT2] = ACTIONS(1679), - [anon_sym_LT_EQ2] = ACTIONS(1677), - [anon_sym_GT_EQ2] = ACTIONS(1677), - [anon_sym_EQ_TILDE2] = ACTIONS(1677), - [anon_sym_BANG_TILDE2] = ACTIONS(1677), - [anon_sym_like2] = ACTIONS(1677), - [anon_sym_not_DASHlike2] = ACTIONS(1677), - [anon_sym_LPAREN2] = ACTIONS(1605), - [anon_sym_STAR_STAR2] = ACTIONS(1677), - [anon_sym_PLUS_PLUS2] = ACTIONS(1677), - [anon_sym_SLASH2] = ACTIONS(1679), - [anon_sym_mod2] = ACTIONS(1677), - [anon_sym_SLASH_SLASH2] = ACTIONS(1677), - [anon_sym_PLUS2] = ACTIONS(1679), - [anon_sym_bit_DASHshl2] = ACTIONS(1677), - [anon_sym_bit_DASHshr2] = ACTIONS(1677), - [anon_sym_bit_DASHand2] = ACTIONS(1677), - [anon_sym_bit_DASHxor2] = ACTIONS(1677), - [anon_sym_bit_DASHor2] = ACTIONS(1677), - [aux_sym__immediate_decimal_token1] = ACTIONS(1665), - [aux_sym__immediate_decimal_token2] = ACTIONS(1665), - [aux_sym__immediate_decimal_token3] = ACTIONS(1611), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [anon_sym_err_GT] = ACTIONS(1679), - [anon_sym_out_GT] = ACTIONS(1679), - [anon_sym_e_GT] = ACTIONS(1679), - [anon_sym_o_GT] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT] = ACTIONS(1679), - [anon_sym_err_GT_GT] = ACTIONS(1677), - [anon_sym_out_GT_GT] = ACTIONS(1677), - [anon_sym_e_GT_GT] = ACTIONS(1677), - [anon_sym_o_GT_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(407)] = { - [sym_cell_path] = STATE(470), - [sym_path] = STATE(454), - [sym_comment] = STATE(407), - [aux_sym__where_predicate_lhs_repeat1] = STATE(429), - [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_GT2] = ACTIONS(1683), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1681), - [anon_sym_EQ_GT] = 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_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), - [anon_sym_DOT_DOT2] = ACTIONS(1683), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1681), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1681), - [anon_sym_COLON2] = ACTIONS(1681), - [anon_sym_DOT2] = ACTIONS(1685), - [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(408)] = { - [sym_cell_path] = STATE(475), - [sym_path] = STATE(454), - [sym_comment] = STATE(408), - [aux_sym__where_predicate_lhs_repeat1] = STATE(429), - [anon_sym_in] = ACTIONS(1687), - [sym__newline] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_err_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_GT_PIPE] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), - [anon_sym_RPAREN] = ACTIONS(1687), - [anon_sym_GT2] = ACTIONS(1689), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_EQ_GT] = ACTIONS(1687), - [anon_sym_STAR2] = ACTIONS(1689), - [anon_sym_and2] = ACTIONS(1687), - [anon_sym_xor2] = ACTIONS(1687), - [anon_sym_or2] = ACTIONS(1687), - [anon_sym_not_DASHin2] = ACTIONS(1687), - [anon_sym_has2] = ACTIONS(1687), - [anon_sym_not_DASHhas2] = ACTIONS(1687), - [anon_sym_starts_DASHwith2] = ACTIONS(1687), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1687), - [anon_sym_ends_DASHwith2] = ACTIONS(1687), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1687), - [anon_sym_EQ_EQ2] = ACTIONS(1687), - [anon_sym_BANG_EQ2] = ACTIONS(1687), - [anon_sym_LT2] = ACTIONS(1689), - [anon_sym_LT_EQ2] = ACTIONS(1687), - [anon_sym_GT_EQ2] = ACTIONS(1687), - [anon_sym_EQ_TILDE2] = ACTIONS(1687), - [anon_sym_BANG_TILDE2] = ACTIONS(1687), - [anon_sym_like2] = ACTIONS(1687), - [anon_sym_not_DASHlike2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1687), - [anon_sym_PLUS_PLUS2] = ACTIONS(1687), - [anon_sym_SLASH2] = ACTIONS(1689), - [anon_sym_mod2] = ACTIONS(1687), - [anon_sym_SLASH_SLASH2] = ACTIONS(1687), - [anon_sym_PLUS2] = ACTIONS(1689), - [anon_sym_bit_DASHshl2] = ACTIONS(1687), - [anon_sym_bit_DASHshr2] = ACTIONS(1687), - [anon_sym_bit_DASHand2] = ACTIONS(1687), - [anon_sym_bit_DASHxor2] = ACTIONS(1687), - [anon_sym_bit_DASHor2] = ACTIONS(1687), - [anon_sym_DOT_DOT2] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), - [anon_sym_COLON2] = ACTIONS(1687), - [anon_sym_DOT2] = ACTIONS(1685), - [anon_sym_err_GT] = ACTIONS(1689), - [anon_sym_out_GT] = ACTIONS(1689), - [anon_sym_e_GT] = ACTIONS(1689), - [anon_sym_o_GT] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT] = ACTIONS(1689), - [anon_sym_err_GT_GT] = ACTIONS(1687), - [anon_sym_out_GT_GT] = ACTIONS(1687), - [anon_sym_e_GT_GT] = ACTIONS(1687), - [anon_sym_o_GT_GT] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(409)] = { - [sym__expr_parenthesized_immediate] = STATE(726), - [sym__immediate_decimal] = STATE(925), - [sym_val_variable] = STATE(726), - [sym_comment] = STATE(409), - [anon_sym_in] = ACTIONS(1677), - [sym__newline] = ACTIONS(1677), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_err_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_GT_PIPE] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_GT2] = ACTIONS(1679), - [anon_sym_DASH2] = ACTIONS(1679), - [anon_sym_RBRACE] = ACTIONS(1677), - [anon_sym_STAR2] = ACTIONS(1679), - [anon_sym_and2] = ACTIONS(1677), - [anon_sym_xor2] = ACTIONS(1677), - [anon_sym_or2] = ACTIONS(1677), - [anon_sym_not_DASHin2] = ACTIONS(1677), - [anon_sym_has2] = ACTIONS(1677), - [anon_sym_not_DASHhas2] = ACTIONS(1677), - [anon_sym_starts_DASHwith2] = ACTIONS(1677), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1677), - [anon_sym_ends_DASHwith2] = ACTIONS(1677), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1677), - [anon_sym_EQ_EQ2] = ACTIONS(1677), - [anon_sym_BANG_EQ2] = ACTIONS(1677), - [anon_sym_LT2] = ACTIONS(1679), - [anon_sym_LT_EQ2] = ACTIONS(1677), - [anon_sym_GT_EQ2] = ACTIONS(1677), - [anon_sym_EQ_TILDE2] = ACTIONS(1677), - [anon_sym_BANG_TILDE2] = ACTIONS(1677), - [anon_sym_like2] = ACTIONS(1677), - [anon_sym_not_DASHlike2] = ACTIONS(1677), - [anon_sym_LPAREN2] = ACTIONS(1605), - [anon_sym_STAR_STAR2] = ACTIONS(1677), - [anon_sym_PLUS_PLUS2] = ACTIONS(1677), - [anon_sym_SLASH2] = ACTIONS(1679), - [anon_sym_mod2] = ACTIONS(1677), - [anon_sym_SLASH_SLASH2] = ACTIONS(1677), - [anon_sym_PLUS2] = ACTIONS(1679), - [anon_sym_bit_DASHshl2] = ACTIONS(1677), - [anon_sym_bit_DASHshr2] = ACTIONS(1677), - [anon_sym_bit_DASHand2] = ACTIONS(1677), - [anon_sym_bit_DASHxor2] = ACTIONS(1677), - [anon_sym_bit_DASHor2] = ACTIONS(1677), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1649), - [aux_sym__immediate_decimal_token4] = ACTIONS(1649), - [anon_sym_err_GT] = ACTIONS(1679), - [anon_sym_out_GT] = ACTIONS(1679), - [anon_sym_e_GT] = ACTIONS(1679), - [anon_sym_o_GT] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT] = ACTIONS(1679), - [anon_sym_err_GT_GT] = ACTIONS(1677), - [anon_sym_out_GT_GT] = ACTIONS(1677), - [anon_sym_e_GT_GT] = ACTIONS(1677), - [anon_sym_o_GT_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), - [sym__unquoted_pattern] = ACTIONS(1691), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(410)] = { - [sym__expr_parenthesized_immediate] = STATE(780), - [sym__immediate_decimal] = STATE(926), - [sym_val_variable] = STATE(780), - [sym_comment] = STATE(410), - [anon_sym_in] = ACTIONS(1599), - [sym__newline] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_err_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_GT_PIPE] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_GT2] = ACTIONS(1603), - [anon_sym_DASH2] = ACTIONS(1603), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_STAR2] = ACTIONS(1603), - [anon_sym_and2] = ACTIONS(1599), - [anon_sym_xor2] = ACTIONS(1599), - [anon_sym_or2] = ACTIONS(1599), - [anon_sym_not_DASHin2] = ACTIONS(1599), - [anon_sym_has2] = ACTIONS(1599), - [anon_sym_not_DASHhas2] = ACTIONS(1599), - [anon_sym_starts_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), - [anon_sym_ends_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), - [anon_sym_EQ_EQ2] = ACTIONS(1599), - [anon_sym_BANG_EQ2] = ACTIONS(1599), - [anon_sym_LT2] = ACTIONS(1603), - [anon_sym_LT_EQ2] = ACTIONS(1599), - [anon_sym_GT_EQ2] = ACTIONS(1599), - [anon_sym_EQ_TILDE2] = ACTIONS(1599), - [anon_sym_BANG_TILDE2] = ACTIONS(1599), - [anon_sym_like2] = ACTIONS(1599), - [anon_sym_not_DASHlike2] = ACTIONS(1599), - [anon_sym_LPAREN2] = ACTIONS(1605), - [anon_sym_STAR_STAR2] = ACTIONS(1599), - [anon_sym_PLUS_PLUS2] = ACTIONS(1599), - [anon_sym_SLASH2] = ACTIONS(1603), - [anon_sym_mod2] = ACTIONS(1599), - [anon_sym_SLASH_SLASH2] = ACTIONS(1599), - [anon_sym_PLUS2] = ACTIONS(1603), - [anon_sym_bit_DASHshl2] = ACTIONS(1599), - [anon_sym_bit_DASHshr2] = ACTIONS(1599), - [anon_sym_bit_DASHand2] = ACTIONS(1599), - [anon_sym_bit_DASHxor2] = ACTIONS(1599), - [anon_sym_bit_DASHor2] = ACTIONS(1599), - [aux_sym__immediate_decimal_token1] = ACTIONS(1665), - [aux_sym__immediate_decimal_token2] = ACTIONS(1665), - [aux_sym__immediate_decimal_token3] = ACTIONS(1611), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [anon_sym_err_GT] = ACTIONS(1603), - [anon_sym_out_GT] = ACTIONS(1603), - [anon_sym_e_GT] = ACTIONS(1603), - [anon_sym_o_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT] = ACTIONS(1603), - [anon_sym_err_GT_GT] = ACTIONS(1599), - [anon_sym_out_GT_GT] = ACTIONS(1599), - [anon_sym_e_GT_GT] = ACTIONS(1599), - [anon_sym_o_GT_GT] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(411)] = { - [sym_comment] = STATE(411), [anon_sym_EQ] = ACTIONS(1580), [anon_sym_PLUS_EQ] = ACTIONS(1582), [anon_sym_DASH_EQ] = ACTIONS(1582), @@ -79930,86 +79855,163 @@ 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(412)] = { - [sym__expr_parenthesized_immediate] = STATE(776), - [sym__immediate_decimal] = STATE(777), - [sym_val_variable] = STATE(776), - [sym_comment] = STATE(412), - [anon_sym_in] = ACTIONS(1617), - [sym__newline] = ACTIONS(1617), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_err_GT_PIPE] = ACTIONS(1617), - [anon_sym_out_GT_PIPE] = ACTIONS(1617), - [anon_sym_e_GT_PIPE] = ACTIONS(1617), - [anon_sym_o_GT_PIPE] = ACTIONS(1617), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1617), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1617), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1617), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1617), - [anon_sym_RPAREN] = ACTIONS(1617), - [anon_sym_DOLLAR] = ACTIONS(1601), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_RBRACE] = ACTIONS(1617), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1617), - [anon_sym_xor2] = ACTIONS(1617), - [anon_sym_or2] = ACTIONS(1617), - [anon_sym_not_DASHin2] = ACTIONS(1617), - [anon_sym_has2] = ACTIONS(1617), - [anon_sym_not_DASHhas2] = ACTIONS(1617), - [anon_sym_starts_DASHwith2] = ACTIONS(1617), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1617), - [anon_sym_ends_DASHwith2] = ACTIONS(1617), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1617), - [anon_sym_EQ_EQ2] = ACTIONS(1617), - [anon_sym_BANG_EQ2] = ACTIONS(1617), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1617), - [anon_sym_GT_EQ2] = ACTIONS(1617), - [anon_sym_EQ_TILDE2] = ACTIONS(1617), - [anon_sym_BANG_TILDE2] = ACTIONS(1617), - [anon_sym_like2] = ACTIONS(1617), - [anon_sym_not_DASHlike2] = ACTIONS(1617), - [anon_sym_LPAREN2] = ACTIONS(1605), - [anon_sym_STAR_STAR2] = ACTIONS(1617), - [anon_sym_PLUS_PLUS2] = ACTIONS(1617), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1617), - [anon_sym_SLASH_SLASH2] = ACTIONS(1617), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1617), - [anon_sym_bit_DASHshr2] = ACTIONS(1617), - [anon_sym_bit_DASHand2] = ACTIONS(1617), - [anon_sym_bit_DASHxor2] = ACTIONS(1617), - [anon_sym_bit_DASHor2] = ACTIONS(1617), - [aux_sym__immediate_decimal_token1] = ACTIONS(1665), - [aux_sym__immediate_decimal_token2] = ACTIONS(1665), - [aux_sym__immediate_decimal_token3] = ACTIONS(1611), - [aux_sym__immediate_decimal_token4] = ACTIONS(1611), - [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(1617), - [anon_sym_out_GT_GT] = ACTIONS(1617), - [anon_sym_e_GT_GT] = ACTIONS(1617), - [anon_sym_o_GT_GT] = ACTIONS(1617), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1617), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1617), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1617), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1617), + [STATE(407)] = { + [sym__expr_parenthesized_immediate] = STATE(746), + [sym__immediate_decimal] = STATE(747), + [sym_val_variable] = STATE(746), + [sym_comment] = STATE(407), + [anon_sym_in] = ACTIONS(1663), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_RPAREN] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_GT2] = ACTIONS(1665), + [anon_sym_DASH2] = ACTIONS(1665), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_STAR2] = ACTIONS(1665), + [anon_sym_and2] = ACTIONS(1663), + [anon_sym_xor2] = ACTIONS(1663), + [anon_sym_or2] = ACTIONS(1663), + [anon_sym_not_DASHin2] = ACTIONS(1663), + [anon_sym_has2] = ACTIONS(1663), + [anon_sym_not_DASHhas2] = ACTIONS(1663), + [anon_sym_starts_DASHwith2] = ACTIONS(1663), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1663), + [anon_sym_ends_DASHwith2] = ACTIONS(1663), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1663), + [anon_sym_EQ_EQ2] = ACTIONS(1663), + [anon_sym_BANG_EQ2] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1665), + [anon_sym_LT_EQ2] = ACTIONS(1663), + [anon_sym_GT_EQ2] = ACTIONS(1663), + [anon_sym_EQ_TILDE2] = ACTIONS(1663), + [anon_sym_BANG_TILDE2] = ACTIONS(1663), + [anon_sym_like2] = ACTIONS(1663), + [anon_sym_not_DASHlike2] = ACTIONS(1663), + [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_STAR_STAR2] = ACTIONS(1663), + [anon_sym_PLUS_PLUS2] = ACTIONS(1663), + [anon_sym_SLASH2] = ACTIONS(1665), + [anon_sym_mod2] = ACTIONS(1663), + [anon_sym_SLASH_SLASH2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1665), + [anon_sym_bit_DASHshl2] = ACTIONS(1663), + [anon_sym_bit_DASHshr2] = ACTIONS(1663), + [anon_sym_bit_DASHand2] = ACTIONS(1663), + [anon_sym_bit_DASHxor2] = ACTIONS(1663), + [anon_sym_bit_DASHor2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(1655), + [aux_sym__immediate_decimal_token2] = ACTIONS(1655), + [aux_sym__immediate_decimal_token3] = ACTIONS(1610), + [aux_sym__immediate_decimal_token4] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1665), + [anon_sym_out_GT] = ACTIONS(1665), + [anon_sym_e_GT] = ACTIONS(1665), + [anon_sym_o_GT] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT] = ACTIONS(1665), + [anon_sym_err_GT_GT] = ACTIONS(1663), + [anon_sym_out_GT_GT] = ACTIONS(1663), + [anon_sym_e_GT_GT] = ACTIONS(1663), + [anon_sym_o_GT_GT] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(413)] = { - [sym_comment] = STATE(413), - [anon_sym_if] = ACTIONS(1458), + [STATE(408)] = { + [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), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_err_GT_PIPE] = ACTIONS(1667), + [anon_sym_out_GT_PIPE] = ACTIONS(1667), + [anon_sym_e_GT_PIPE] = ACTIONS(1667), + [anon_sym_o_GT_PIPE] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), + [anon_sym_RPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1667), + [anon_sym_xor2] = ACTIONS(1667), + [anon_sym_or2] = ACTIONS(1667), + [anon_sym_not_DASHin2] = ACTIONS(1667), + [anon_sym_has2] = ACTIONS(1667), + [anon_sym_not_DASHhas2] = ACTIONS(1667), + [anon_sym_starts_DASHwith2] = ACTIONS(1667), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1667), + [anon_sym_ends_DASHwith2] = ACTIONS(1667), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1667), + [anon_sym_EQ_EQ2] = ACTIONS(1667), + [anon_sym_BANG_EQ2] = ACTIONS(1667), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1667), + [anon_sym_GT_EQ2] = ACTIONS(1667), + [anon_sym_EQ_TILDE2] = ACTIONS(1667), + [anon_sym_BANG_TILDE2] = ACTIONS(1667), + [anon_sym_like2] = ACTIONS(1667), + [anon_sym_not_DASHlike2] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_STAR_STAR2] = ACTIONS(1667), + [anon_sym_PLUS_PLUS2] = ACTIONS(1667), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1667), + [anon_sym_SLASH_SLASH2] = ACTIONS(1667), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1667), + [anon_sym_bit_DASHshr2] = ACTIONS(1667), + [anon_sym_bit_DASHand2] = ACTIONS(1667), + [anon_sym_bit_DASHxor2] = ACTIONS(1667), + [anon_sym_bit_DASHor2] = ACTIONS(1667), + [aux_sym__immediate_decimal_token1] = ACTIONS(1655), + [aux_sym__immediate_decimal_token2] = ACTIONS(1655), + [aux_sym__immediate_decimal_token3] = ACTIONS(1610), + [aux_sym__immediate_decimal_token4] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1667), + [anon_sym_out_GT_GT] = ACTIONS(1667), + [anon_sym_e_GT_GT] = ACTIONS(1667), + [anon_sym_o_GT_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(409)] = { + [sym__path_suffix] = STATE(444), + [sym_comment] = STATE(409), [anon_sym_in] = ACTIONS(1458), [sym__newline] = ACTIONS(1458), [anon_sym_SEMI] = ACTIONS(1458), @@ -80063,7 +80065,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(1458), [anon_sym_DOT_DOT_LT2] = ACTIONS(1458), [anon_sym_COLON2] = ACTIONS(1458), - [anon_sym_QMARK2] = ACTIONS(1693), + [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), @@ -80083,312 +80086,927 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1458), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(410)] = { + [sym__expr_parenthesized_immediate] = STATE(748), + [sym__immediate_decimal] = STATE(961), + [sym_val_variable] = STATE(748), + [sym_comment] = STATE(410), + [anon_sym_in] = ACTIONS(1651), + [sym__newline] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_err_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_GT_PIPE] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), + [anon_sym_RPAREN] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1651), + [anon_sym_xor2] = ACTIONS(1651), + [anon_sym_or2] = ACTIONS(1651), + [anon_sym_not_DASHin2] = ACTIONS(1651), + [anon_sym_has2] = ACTIONS(1651), + [anon_sym_not_DASHhas2] = ACTIONS(1651), + [anon_sym_starts_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1651), + [anon_sym_ends_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1651), + [anon_sym_EQ_EQ2] = ACTIONS(1651), + [anon_sym_BANG_EQ2] = ACTIONS(1651), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1651), + [anon_sym_GT_EQ2] = ACTIONS(1651), + [anon_sym_EQ_TILDE2] = ACTIONS(1651), + [anon_sym_BANG_TILDE2] = ACTIONS(1651), + [anon_sym_like2] = ACTIONS(1651), + [anon_sym_not_DASHlike2] = ACTIONS(1651), + [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_STAR_STAR2] = ACTIONS(1651), + [anon_sym_PLUS_PLUS2] = ACTIONS(1651), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1651), + [anon_sym_SLASH_SLASH2] = ACTIONS(1651), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1651), + [anon_sym_bit_DASHshr2] = ACTIONS(1651), + [anon_sym_bit_DASHand2] = ACTIONS(1651), + [anon_sym_bit_DASHxor2] = ACTIONS(1651), + [anon_sym_bit_DASHor2] = ACTIONS(1651), + [aux_sym__immediate_decimal_token1] = ACTIONS(1675), + [aux_sym__immediate_decimal_token2] = ACTIONS(1675), + [aux_sym__immediate_decimal_token3] = ACTIONS(1677), + [aux_sym__immediate_decimal_token4] = ACTIONS(1677), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1651), + [anon_sym_out_GT_GT] = ACTIONS(1651), + [anon_sym_e_GT_GT] = ACTIONS(1651), + [anon_sym_o_GT_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), + [sym__unquoted_pattern] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(411)] = { + [sym__expr_parenthesized_immediate] = STATE(728), + [sym__immediate_decimal] = STATE(729), + [sym_val_variable] = STATE(728), + [sym_comment] = STATE(411), + [anon_sym_in] = ACTIONS(1639), + [sym__newline] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_err_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_GT_PIPE] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), + [anon_sym_RPAREN] = ACTIONS(1639), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_GT2] = ACTIONS(1641), + [anon_sym_DASH2] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_STAR2] = ACTIONS(1641), + [anon_sym_and2] = ACTIONS(1639), + [anon_sym_xor2] = ACTIONS(1639), + [anon_sym_or2] = ACTIONS(1639), + [anon_sym_not_DASHin2] = ACTIONS(1639), + [anon_sym_has2] = ACTIONS(1639), + [anon_sym_not_DASHhas2] = ACTIONS(1639), + [anon_sym_starts_DASHwith2] = ACTIONS(1639), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1639), + [anon_sym_ends_DASHwith2] = ACTIONS(1639), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1639), + [anon_sym_EQ_EQ2] = ACTIONS(1639), + [anon_sym_BANG_EQ2] = ACTIONS(1639), + [anon_sym_LT2] = ACTIONS(1641), + [anon_sym_LT_EQ2] = ACTIONS(1639), + [anon_sym_GT_EQ2] = ACTIONS(1639), + [anon_sym_EQ_TILDE2] = ACTIONS(1639), + [anon_sym_BANG_TILDE2] = ACTIONS(1639), + [anon_sym_like2] = ACTIONS(1639), + [anon_sym_not_DASHlike2] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_STAR_STAR2] = ACTIONS(1639), + [anon_sym_PLUS_PLUS2] = ACTIONS(1639), + [anon_sym_SLASH2] = ACTIONS(1641), + [anon_sym_mod2] = ACTIONS(1639), + [anon_sym_SLASH_SLASH2] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1641), + [anon_sym_bit_DASHshl2] = ACTIONS(1639), + [anon_sym_bit_DASHshr2] = ACTIONS(1639), + [anon_sym_bit_DASHand2] = ACTIONS(1639), + [anon_sym_bit_DASHxor2] = ACTIONS(1639), + [anon_sym_bit_DASHor2] = ACTIONS(1639), + [aux_sym__immediate_decimal_token1] = ACTIONS(1655), + [aux_sym__immediate_decimal_token2] = ACTIONS(1655), + [aux_sym__immediate_decimal_token3] = ACTIONS(1610), + [aux_sym__immediate_decimal_token4] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1641), + [anon_sym_out_GT] = ACTIONS(1641), + [anon_sym_e_GT] = ACTIONS(1641), + [anon_sym_o_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT] = ACTIONS(1641), + [anon_sym_err_GT_GT] = ACTIONS(1639), + [anon_sym_out_GT_GT] = ACTIONS(1639), + [anon_sym_e_GT_GT] = ACTIONS(1639), + [anon_sym_o_GT_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(412)] = { + [sym__expr_parenthesized_immediate] = STATE(744), + [sym__immediate_decimal] = STATE(745), + [sym_val_variable] = STATE(744), + [sym_comment] = STATE(412), + [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(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_path] = STATE(454), + [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(414), - [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(1695), - [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_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(1502), - [sym__newline] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_err_GT_PIPE] = ACTIONS(1502), - [anon_sym_out_GT_PIPE] = ACTIONS(1502), - [anon_sym_e_GT_PIPE] = ACTIONS(1502), - [anon_sym_o_GT_PIPE] = ACTIONS(1502), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), - [anon_sym_RPAREN] = ACTIONS(1502), - [anon_sym_GT2] = ACTIONS(1500), - [anon_sym_DASH2] = ACTIONS(1502), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_EQ_GT] = ACTIONS(1502), - [anon_sym_STAR2] = ACTIONS(1500), - [anon_sym_and2] = ACTIONS(1502), - [anon_sym_xor2] = ACTIONS(1502), - [anon_sym_or2] = ACTIONS(1502), - [anon_sym_not_DASHin2] = ACTIONS(1502), - [anon_sym_has2] = ACTIONS(1502), - [anon_sym_not_DASHhas2] = ACTIONS(1502), - [anon_sym_starts_DASHwith2] = ACTIONS(1502), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1502), - [anon_sym_ends_DASHwith2] = ACTIONS(1502), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1502), - [anon_sym_EQ_EQ2] = ACTIONS(1502), - [anon_sym_BANG_EQ2] = ACTIONS(1502), - [anon_sym_LT2] = ACTIONS(1500), - [anon_sym_LT_EQ2] = ACTIONS(1502), - [anon_sym_GT_EQ2] = ACTIONS(1502), - [anon_sym_EQ_TILDE2] = ACTIONS(1502), - [anon_sym_BANG_TILDE2] = ACTIONS(1502), - [anon_sym_like2] = ACTIONS(1502), - [anon_sym_not_DASHlike2] = ACTIONS(1502), - [anon_sym_STAR_STAR2] = ACTIONS(1502), - [anon_sym_PLUS_PLUS2] = ACTIONS(1502), - [anon_sym_SLASH2] = ACTIONS(1500), - [anon_sym_mod2] = ACTIONS(1502), - [anon_sym_SLASH_SLASH2] = ACTIONS(1502), - [anon_sym_PLUS2] = ACTIONS(1500), - [anon_sym_bit_DASHshl2] = ACTIONS(1502), - [anon_sym_bit_DASHshr2] = ACTIONS(1502), - [anon_sym_bit_DASHand2] = ACTIONS(1502), - [anon_sym_bit_DASHxor2] = ACTIONS(1502), - [anon_sym_bit_DASHor2] = ACTIONS(1502), - [anon_sym_DOT_DOT2] = ACTIONS(1500), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), - [anon_sym_COLON2] = ACTIONS(1502), - [anon_sym_QMARK2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_DOT2] = ACTIONS(1500), - [anon_sym_err_GT] = ACTIONS(1500), - [anon_sym_out_GT] = ACTIONS(1500), - [anon_sym_e_GT] = ACTIONS(1500), - [anon_sym_o_GT] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT] = ACTIONS(1500), - [anon_sym_err_GT_GT] = ACTIONS(1502), - [anon_sym_out_GT_GT] = ACTIONS(1502), - [anon_sym_e_GT_GT] = ACTIONS(1502), - [anon_sym_o_GT_GT] = ACTIONS(1502), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), + [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(730), + [sym__immediate_decimal] = STATE(904), + [sym_val_variable] = STATE(730), [sym_comment] = STATE(416), - [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_QMARK2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DOT2] = ACTIONS(1504), - [anon_sym_err_GT] = ACTIONS(1504), - [anon_sym_out_GT] = ACTIONS(1504), - [anon_sym_e_GT] = ACTIONS(1504), - [anon_sym_o_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), + [anon_sym_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__expr_parenthesized_immediate] = STATE(949), - [sym__immediate_decimal] = STATE(955), - [sym_val_variable] = STATE(949), [sym_comment] = STATE(417), - [ts_builtin_sym_end] = ACTIONS(1617), - [anon_sym_in] = ACTIONS(1617), - [sym__newline] = ACTIONS(1617), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_err_GT_PIPE] = ACTIONS(1617), - [anon_sym_out_GT_PIPE] = ACTIONS(1617), - [anon_sym_e_GT_PIPE] = ACTIONS(1617), - [anon_sym_o_GT_PIPE] = ACTIONS(1617), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1617), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1617), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1617), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1617), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1617), - [anon_sym_xor2] = ACTIONS(1617), - [anon_sym_or2] = ACTIONS(1617), - [anon_sym_not_DASHin2] = ACTIONS(1617), - [anon_sym_has2] = ACTIONS(1617), - [anon_sym_not_DASHhas2] = ACTIONS(1617), - [anon_sym_starts_DASHwith2] = ACTIONS(1617), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1617), - [anon_sym_ends_DASHwith2] = ACTIONS(1617), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1617), - [anon_sym_EQ_EQ2] = ACTIONS(1617), - [anon_sym_BANG_EQ2] = ACTIONS(1617), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1617), - [anon_sym_GT_EQ2] = ACTIONS(1617), - [anon_sym_EQ_TILDE2] = ACTIONS(1617), - [anon_sym_BANG_TILDE2] = ACTIONS(1617), - [anon_sym_like2] = ACTIONS(1617), - [anon_sym_not_DASHlike2] = ACTIONS(1617), - [anon_sym_LPAREN2] = ACTIONS(1653), - [anon_sym_STAR_STAR2] = ACTIONS(1617), - [anon_sym_PLUS_PLUS2] = ACTIONS(1617), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1617), - [anon_sym_SLASH_SLASH2] = ACTIONS(1617), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1617), - [anon_sym_bit_DASHshr2] = ACTIONS(1617), - [anon_sym_bit_DASHand2] = ACTIONS(1617), - [anon_sym_bit_DASHxor2] = ACTIONS(1617), - [anon_sym_bit_DASHor2] = ACTIONS(1617), - [anon_sym_DOT] = ACTIONS(1698), - [aux_sym__immediate_decimal_token1] = ACTIONS(1657), - [aux_sym__immediate_decimal_token2] = ACTIONS(1657), - [aux_sym__immediate_decimal_token3] = ACTIONS(1659), - [aux_sym__immediate_decimal_token4] = ACTIONS(1659), - [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(1617), - [anon_sym_out_GT_GT] = ACTIONS(1617), - [anon_sym_e_GT_GT] = ACTIONS(1617), - [anon_sym_o_GT_GT] = ACTIONS(1617), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1617), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1617), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1617), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1617), + [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(1279), + [sym__immediate_decimal] = STATE(1083), + [sym_val_variable] = STATE(1279), [sym_comment] = STATE(418), + [ts_builtin_sym_end] = ACTIONS(1651), + [anon_sym_in] = ACTIONS(1651), + [sym__newline] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_err_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_GT_PIPE] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1651), + [anon_sym_xor2] = ACTIONS(1651), + [anon_sym_or2] = ACTIONS(1651), + [anon_sym_not_DASHin2] = ACTIONS(1651), + [anon_sym_has2] = ACTIONS(1651), + [anon_sym_not_DASHhas2] = ACTIONS(1651), + [anon_sym_starts_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1651), + [anon_sym_ends_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1651), + [anon_sym_EQ_EQ2] = ACTIONS(1651), + [anon_sym_BANG_EQ2] = ACTIONS(1651), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1651), + [anon_sym_GT_EQ2] = ACTIONS(1651), + [anon_sym_EQ_TILDE2] = ACTIONS(1651), + [anon_sym_BANG_TILDE2] = ACTIONS(1651), + [anon_sym_like2] = ACTIONS(1651), + [anon_sym_not_DASHlike2] = ACTIONS(1651), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1651), + [anon_sym_PLUS_PLUS2] = ACTIONS(1651), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1651), + [anon_sym_SLASH_SLASH2] = ACTIONS(1651), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1651), + [anon_sym_bit_DASHshr2] = ACTIONS(1651), + [anon_sym_bit_DASHand2] = ACTIONS(1651), + [anon_sym_bit_DASHxor2] = ACTIONS(1651), + [anon_sym_bit_DASHor2] = ACTIONS(1651), + [aux_sym__immediate_decimal_token1] = ACTIONS(1697), + [aux_sym__immediate_decimal_token2] = ACTIONS(1697), + [aux_sym__immediate_decimal_token3] = ACTIONS(1699), + [aux_sym__immediate_decimal_token4] = ACTIONS(1699), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1651), + [anon_sym_out_GT_GT] = ACTIONS(1651), + [anon_sym_e_GT_GT] = ACTIONS(1651), + [anon_sym_o_GT_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), + [sym__unquoted_pattern] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(419)] = { + [sym__expr_parenthesized_immediate] = STATE(920), + [sym__immediate_decimal] = STATE(923), + [sym_val_variable] = STATE(920), + [sym_comment] = STATE(419), + [ts_builtin_sym_end] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [sym__newline] = ACTIONS(1639), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_err_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_GT_PIPE] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1641), + [anon_sym_DASH2] = ACTIONS(1641), + [anon_sym_STAR2] = ACTIONS(1641), + [anon_sym_and2] = ACTIONS(1639), + [anon_sym_xor2] = ACTIONS(1639), + [anon_sym_or2] = ACTIONS(1639), + [anon_sym_not_DASHin2] = ACTIONS(1639), + [anon_sym_has2] = ACTIONS(1639), + [anon_sym_not_DASHhas2] = ACTIONS(1639), + [anon_sym_starts_DASHwith2] = ACTIONS(1639), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1639), + [anon_sym_ends_DASHwith2] = ACTIONS(1639), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1639), + [anon_sym_EQ_EQ2] = ACTIONS(1639), + [anon_sym_BANG_EQ2] = ACTIONS(1639), + [anon_sym_LT2] = ACTIONS(1641), + [anon_sym_LT_EQ2] = ACTIONS(1639), + [anon_sym_GT_EQ2] = ACTIONS(1639), + [anon_sym_EQ_TILDE2] = ACTIONS(1639), + [anon_sym_BANG_TILDE2] = ACTIONS(1639), + [anon_sym_like2] = ACTIONS(1639), + [anon_sym_not_DASHlike2] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1639), + [anon_sym_PLUS_PLUS2] = ACTIONS(1639), + [anon_sym_SLASH2] = ACTIONS(1641), + [anon_sym_mod2] = ACTIONS(1639), + [anon_sym_SLASH_SLASH2] = ACTIONS(1639), + [anon_sym_PLUS2] = ACTIONS(1641), + [anon_sym_bit_DASHshl2] = ACTIONS(1639), + [anon_sym_bit_DASHshr2] = ACTIONS(1639), + [anon_sym_bit_DASHand2] = ACTIONS(1639), + [anon_sym_bit_DASHxor2] = ACTIONS(1639), + [anon_sym_bit_DASHor2] = ACTIONS(1639), + [anon_sym_DOT] = ACTIONS(1701), + [aux_sym__immediate_decimal_token1] = ACTIONS(1691), + [aux_sym__immediate_decimal_token2] = ACTIONS(1691), + [aux_sym__immediate_decimal_token3] = ACTIONS(1693), + [aux_sym__immediate_decimal_token4] = ACTIONS(1693), + [anon_sym_err_GT] = ACTIONS(1641), + [anon_sym_out_GT] = ACTIONS(1641), + [anon_sym_e_GT] = ACTIONS(1641), + [anon_sym_o_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT] = ACTIONS(1641), + [anon_sym_err_GT_GT] = ACTIONS(1639), + [anon_sym_out_GT_GT] = ACTIONS(1639), + [anon_sym_e_GT_GT] = ACTIONS(1639), + [anon_sym_o_GT_GT] = ACTIONS(1639), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(420)] = { + [sym_cell_path] = STATE(496), + [sym_path] = STATE(458), + [sym_comment] = STATE(420), + [aux_sym__where_predicate_lhs_repeat1] = STATE(427), + [anon_sym_in] = ACTIONS(1444), + [sym__newline] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_err_GT_PIPE] = ACTIONS(1444), + [anon_sym_out_GT_PIPE] = ACTIONS(1444), + [anon_sym_e_GT_PIPE] = ACTIONS(1444), + [anon_sym_o_GT_PIPE] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1444), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_GT2] = ACTIONS(1442), + [anon_sym_DASH2] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_EQ_GT] = ACTIONS(1444), + [anon_sym_STAR2] = ACTIONS(1442), + [anon_sym_and2] = ACTIONS(1444), + [anon_sym_xor2] = ACTIONS(1444), + [anon_sym_or2] = ACTIONS(1444), + [anon_sym_not_DASHin2] = ACTIONS(1444), + [anon_sym_has2] = ACTIONS(1444), + [anon_sym_not_DASHhas2] = ACTIONS(1444), + [anon_sym_starts_DASHwith2] = ACTIONS(1444), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1444), + [anon_sym_ends_DASHwith2] = ACTIONS(1444), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1444), + [anon_sym_EQ_EQ2] = ACTIONS(1444), + [anon_sym_BANG_EQ2] = ACTIONS(1444), + [anon_sym_LT2] = ACTIONS(1442), + [anon_sym_LT_EQ2] = ACTIONS(1444), + [anon_sym_GT_EQ2] = ACTIONS(1444), + [anon_sym_EQ_TILDE2] = ACTIONS(1444), + [anon_sym_BANG_TILDE2] = ACTIONS(1444), + [anon_sym_like2] = ACTIONS(1444), + [anon_sym_not_DASHlike2] = ACTIONS(1444), + [anon_sym_STAR_STAR2] = ACTIONS(1444), + [anon_sym_PLUS_PLUS2] = ACTIONS(1444), + [anon_sym_SLASH2] = ACTIONS(1442), + [anon_sym_mod2] = ACTIONS(1444), + [anon_sym_SLASH_SLASH2] = ACTIONS(1444), + [anon_sym_PLUS2] = ACTIONS(1442), + [anon_sym_bit_DASHshl2] = ACTIONS(1444), + [anon_sym_bit_DASHshr2] = ACTIONS(1444), + [anon_sym_bit_DASHand2] = ACTIONS(1444), + [anon_sym_bit_DASHxor2] = ACTIONS(1444), + [anon_sym_bit_DASHor2] = ACTIONS(1444), + [anon_sym_DOT_DOT2] = ACTIONS(1442), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), + [anon_sym_DOT2] = ACTIONS(1649), + [anon_sym_err_GT] = ACTIONS(1442), + [anon_sym_out_GT] = ACTIONS(1442), + [anon_sym_e_GT] = ACTIONS(1442), + [anon_sym_o_GT] = ACTIONS(1442), + [anon_sym_err_PLUSout_GT] = ACTIONS(1442), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1442), + [anon_sym_o_PLUSe_GT] = ACTIONS(1442), + [anon_sym_e_PLUSo_GT] = ACTIONS(1442), + [anon_sym_err_GT_GT] = ACTIONS(1444), + [anon_sym_out_GT_GT] = ACTIONS(1444), + [anon_sym_e_GT_GT] = ACTIONS(1444), + [anon_sym_o_GT_GT] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(421)] = { + [sym_comment] = STATE(421), + [anon_sym_in] = ACTIONS(1525), + [sym__newline] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_err_GT_PIPE] = ACTIONS(1525), + [anon_sym_out_GT_PIPE] = ACTIONS(1525), + [anon_sym_e_GT_PIPE] = ACTIONS(1525), + [anon_sym_o_GT_PIPE] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1525), + [anon_sym_RPAREN] = ACTIONS(1525), + [anon_sym_GT2] = ACTIONS(1523), + [anon_sym_DASH2] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1525), + [anon_sym_EQ_GT] = ACTIONS(1525), + [anon_sym_STAR2] = ACTIONS(1523), + [anon_sym_and2] = ACTIONS(1525), + [anon_sym_xor2] = ACTIONS(1525), + [anon_sym_or2] = ACTIONS(1525), + [anon_sym_not_DASHin2] = ACTIONS(1525), + [anon_sym_has2] = ACTIONS(1525), + [anon_sym_not_DASHhas2] = ACTIONS(1525), + [anon_sym_starts_DASHwith2] = ACTIONS(1525), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1525), + [anon_sym_ends_DASHwith2] = ACTIONS(1525), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1525), + [anon_sym_EQ_EQ2] = ACTIONS(1525), + [anon_sym_BANG_EQ2] = ACTIONS(1525), + [anon_sym_LT2] = ACTIONS(1523), + [anon_sym_LT_EQ2] = ACTIONS(1525), + [anon_sym_GT_EQ2] = ACTIONS(1525), + [anon_sym_EQ_TILDE2] = ACTIONS(1525), + [anon_sym_BANG_TILDE2] = ACTIONS(1525), + [anon_sym_like2] = ACTIONS(1525), + [anon_sym_not_DASHlike2] = ACTIONS(1525), + [anon_sym_STAR_STAR2] = ACTIONS(1525), + [anon_sym_PLUS_PLUS2] = ACTIONS(1525), + [anon_sym_SLASH2] = ACTIONS(1523), + [anon_sym_mod2] = ACTIONS(1525), + [anon_sym_SLASH_SLASH2] = ACTIONS(1525), + [anon_sym_PLUS2] = ACTIONS(1523), + [anon_sym_bit_DASHshl2] = ACTIONS(1525), + [anon_sym_bit_DASHshr2] = ACTIONS(1525), + [anon_sym_bit_DASHand2] = ACTIONS(1525), + [anon_sym_bit_DASHxor2] = ACTIONS(1525), + [anon_sym_bit_DASHor2] = ACTIONS(1525), + [anon_sym_DOT_DOT2] = ACTIONS(1523), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1525), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1525), + [anon_sym_COLON2] = ACTIONS(1525), + [anon_sym_QMARK2] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_DOT2] = ACTIONS(1523), + [anon_sym_err_GT] = ACTIONS(1523), + [anon_sym_out_GT] = ACTIONS(1523), + [anon_sym_e_GT] = ACTIONS(1523), + [anon_sym_o_GT] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT] = ACTIONS(1523), + [anon_sym_err_GT_GT] = ACTIONS(1525), + [anon_sym_out_GT_GT] = ACTIONS(1525), + [anon_sym_e_GT_GT] = ACTIONS(1525), + [anon_sym_o_GT_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(422)] = { + [sym_comment] = STATE(422), [anon_sym_in] = ACTIONS(749), [sym__newline] = ACTIONS(749), [anon_sym_SEMI] = ACTIONS(749), @@ -80438,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(1700), + [anon_sym_DOT] = ACTIONS(1703), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(1702), + [aux_sym__immediate_decimal_token5] = ACTIONS(1705), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -80463,84 +81081,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(419)] = { - [sym_comment] = STATE(419), - [ts_builtin_sym_end] = ACTIONS(1539), - [anon_sym_EQ] = ACTIONS(1537), - [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(1537), - [anon_sym_DASH2] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1537), - [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(1537), - [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(1537), - [anon_sym_SLASH2] = ACTIONS(1537), - [anon_sym_mod2] = ACTIONS(1539), - [anon_sym_SLASH_SLASH2] = ACTIONS(1539), - [anon_sym_PLUS2] = ACTIONS(1537), - [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(1537), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1539), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1539), - [anon_sym_DOT2] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1537), - [anon_sym_out_GT] = ACTIONS(1537), - [anon_sym_e_GT] = ACTIONS(1537), - [anon_sym_o_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT] = ACTIONS(1537), - [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(3), - }, - [STATE(420)] = { - [sym_comment] = STATE(420), + [STATE(423)] = { + [sym_comment] = STATE(423), [anon_sym_in] = ACTIONS(741), [sym__newline] = ACTIONS(741), [anon_sym_SEMI] = ACTIONS(741), @@ -80592,8 +81134,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token1] = ACTIONS(1704), - [aux_sym__immediate_decimal_token5] = ACTIONS(1706), + [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), @@ -80615,236 +81157,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(421)] = { - [sym_comment] = STATE(421), - [ts_builtin_sym_end] = ACTIONS(1543), - [anon_sym_EQ] = ACTIONS(1541), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1543), - [anon_sym_in] = ACTIONS(1543), - [sym__newline] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_PIPE] = ACTIONS(1543), - [anon_sym_err_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_GT_PIPE] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1543), - [anon_sym_GT2] = ACTIONS(1541), - [anon_sym_DASH2] = ACTIONS(1541), - [anon_sym_STAR2] = ACTIONS(1541), - [anon_sym_and2] = ACTIONS(1543), - [anon_sym_xor2] = ACTIONS(1543), - [anon_sym_or2] = ACTIONS(1543), - [anon_sym_not_DASHin2] = ACTIONS(1543), - [anon_sym_has2] = ACTIONS(1543), - [anon_sym_not_DASHhas2] = ACTIONS(1543), - [anon_sym_starts_DASHwith2] = ACTIONS(1543), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1543), - [anon_sym_ends_DASHwith2] = ACTIONS(1543), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1543), - [anon_sym_EQ_EQ2] = ACTIONS(1543), - [anon_sym_BANG_EQ2] = ACTIONS(1543), - [anon_sym_LT2] = ACTIONS(1541), - [anon_sym_LT_EQ2] = ACTIONS(1543), - [anon_sym_GT_EQ2] = ACTIONS(1543), - [anon_sym_EQ_TILDE2] = ACTIONS(1543), - [anon_sym_BANG_TILDE2] = ACTIONS(1543), - [anon_sym_like2] = ACTIONS(1543), - [anon_sym_not_DASHlike2] = ACTIONS(1543), - [anon_sym_STAR_STAR2] = ACTIONS(1543), - [anon_sym_PLUS_PLUS2] = ACTIONS(1541), - [anon_sym_SLASH2] = ACTIONS(1541), - [anon_sym_mod2] = ACTIONS(1543), - [anon_sym_SLASH_SLASH2] = ACTIONS(1543), - [anon_sym_PLUS2] = ACTIONS(1541), - [anon_sym_bit_DASHshl2] = ACTIONS(1543), - [anon_sym_bit_DASHshr2] = ACTIONS(1543), - [anon_sym_bit_DASHand2] = ACTIONS(1543), - [anon_sym_bit_DASHxor2] = ACTIONS(1543), - [anon_sym_bit_DASHor2] = ACTIONS(1543), - [anon_sym_DOT_DOT2] = ACTIONS(1541), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1543), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1541), - [anon_sym_err_GT] = ACTIONS(1541), - [anon_sym_out_GT] = ACTIONS(1541), - [anon_sym_e_GT] = ACTIONS(1541), - [anon_sym_o_GT] = ACTIONS(1541), - [anon_sym_err_PLUSout_GT] = ACTIONS(1541), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1541), - [anon_sym_o_PLUSe_GT] = ACTIONS(1541), - [anon_sym_e_PLUSo_GT] = ACTIONS(1541), - [anon_sym_err_GT_GT] = ACTIONS(1543), - [anon_sym_out_GT_GT] = ACTIONS(1543), - [anon_sym_e_GT_GT] = ACTIONS(1543), - [anon_sym_o_GT_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(422)] = { - [sym__expr_parenthesized_immediate] = STATE(1302), - [sym__immediate_decimal] = STATE(994), - [sym_val_variable] = STATE(1302), - [sym_comment] = STATE(422), - [ts_builtin_sym_end] = ACTIONS(1677), - [anon_sym_in] = ACTIONS(1677), - [sym__newline] = ACTIONS(1677), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_err_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_GT_PIPE] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_GT2] = ACTIONS(1679), - [anon_sym_DASH2] = ACTIONS(1679), - [anon_sym_STAR2] = ACTIONS(1679), - [anon_sym_and2] = ACTIONS(1677), - [anon_sym_xor2] = ACTIONS(1677), - [anon_sym_or2] = ACTIONS(1677), - [anon_sym_not_DASHin2] = ACTIONS(1677), - [anon_sym_has2] = ACTIONS(1677), - [anon_sym_not_DASHhas2] = ACTIONS(1677), - [anon_sym_starts_DASHwith2] = ACTIONS(1677), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1677), - [anon_sym_ends_DASHwith2] = ACTIONS(1677), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1677), - [anon_sym_EQ_EQ2] = ACTIONS(1677), - [anon_sym_BANG_EQ2] = ACTIONS(1677), - [anon_sym_LT2] = ACTIONS(1679), - [anon_sym_LT_EQ2] = ACTIONS(1677), - [anon_sym_GT_EQ2] = ACTIONS(1677), - [anon_sym_EQ_TILDE2] = ACTIONS(1677), - [anon_sym_BANG_TILDE2] = ACTIONS(1677), - [anon_sym_like2] = ACTIONS(1677), - [anon_sym_not_DASHlike2] = ACTIONS(1677), - [anon_sym_LPAREN2] = ACTIONS(1653), - [anon_sym_STAR_STAR2] = ACTIONS(1677), - [anon_sym_PLUS_PLUS2] = ACTIONS(1677), - [anon_sym_SLASH2] = ACTIONS(1679), - [anon_sym_mod2] = ACTIONS(1677), - [anon_sym_SLASH_SLASH2] = ACTIONS(1677), - [anon_sym_PLUS2] = ACTIONS(1679), - [anon_sym_bit_DASHshl2] = ACTIONS(1677), - [anon_sym_bit_DASHshr2] = ACTIONS(1677), - [anon_sym_bit_DASHand2] = ACTIONS(1677), - [anon_sym_bit_DASHxor2] = ACTIONS(1677), - [anon_sym_bit_DASHor2] = ACTIONS(1677), - [aux_sym__immediate_decimal_token1] = ACTIONS(1708), - [aux_sym__immediate_decimal_token2] = ACTIONS(1708), - [aux_sym__immediate_decimal_token3] = ACTIONS(1710), - [aux_sym__immediate_decimal_token4] = ACTIONS(1710), - [anon_sym_err_GT] = ACTIONS(1679), - [anon_sym_out_GT] = ACTIONS(1679), - [anon_sym_e_GT] = ACTIONS(1679), - [anon_sym_o_GT] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT] = ACTIONS(1679), - [anon_sym_err_GT_GT] = ACTIONS(1677), - [anon_sym_out_GT_GT] = ACTIONS(1677), - [anon_sym_e_GT_GT] = ACTIONS(1677), - [anon_sym_o_GT_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), - [sym__unquoted_pattern] = ACTIONS(1691), + [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(423)] = { - [sym__expr_parenthesized_immediate] = STATE(958), - [sym__immediate_decimal] = STATE(959), - [sym_val_variable] = STATE(958), - [sym_comment] = STATE(423), - [ts_builtin_sym_end] = ACTIONS(1599), - [anon_sym_in] = ACTIONS(1599), - [sym__newline] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_err_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_GT_PIPE] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_GT2] = ACTIONS(1603), - [anon_sym_DASH2] = ACTIONS(1603), - [anon_sym_STAR2] = ACTIONS(1603), - [anon_sym_and2] = ACTIONS(1599), - [anon_sym_xor2] = ACTIONS(1599), - [anon_sym_or2] = ACTIONS(1599), - [anon_sym_not_DASHin2] = ACTIONS(1599), - [anon_sym_has2] = ACTIONS(1599), - [anon_sym_not_DASHhas2] = ACTIONS(1599), - [anon_sym_starts_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), - [anon_sym_ends_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), - [anon_sym_EQ_EQ2] = ACTIONS(1599), - [anon_sym_BANG_EQ2] = ACTIONS(1599), - [anon_sym_LT2] = ACTIONS(1603), - [anon_sym_LT_EQ2] = ACTIONS(1599), - [anon_sym_GT_EQ2] = ACTIONS(1599), - [anon_sym_EQ_TILDE2] = ACTIONS(1599), - [anon_sym_BANG_TILDE2] = ACTIONS(1599), - [anon_sym_like2] = ACTIONS(1599), - [anon_sym_not_DASHlike2] = ACTIONS(1599), - [anon_sym_LPAREN2] = ACTIONS(1653), - [anon_sym_STAR_STAR2] = ACTIONS(1599), - [anon_sym_PLUS_PLUS2] = ACTIONS(1599), - [anon_sym_SLASH2] = ACTIONS(1603), - [anon_sym_mod2] = ACTIONS(1599), - [anon_sym_SLASH_SLASH2] = ACTIONS(1599), - [anon_sym_PLUS2] = ACTIONS(1603), - [anon_sym_bit_DASHshl2] = ACTIONS(1599), - [anon_sym_bit_DASHshr2] = ACTIONS(1599), - [anon_sym_bit_DASHand2] = ACTIONS(1599), - [anon_sym_bit_DASHxor2] = ACTIONS(1599), - [anon_sym_bit_DASHor2] = ACTIONS(1599), - [anon_sym_DOT] = ACTIONS(1712), - [aux_sym__immediate_decimal_token1] = ACTIONS(1657), - [aux_sym__immediate_decimal_token2] = ACTIONS(1657), - [aux_sym__immediate_decimal_token3] = ACTIONS(1659), - [aux_sym__immediate_decimal_token4] = ACTIONS(1659), - [anon_sym_err_GT] = ACTIONS(1603), - [anon_sym_out_GT] = ACTIONS(1603), - [anon_sym_e_GT] = ACTIONS(1603), - [anon_sym_o_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT] = ACTIONS(1603), - [anon_sym_err_GT_GT] = ACTIONS(1599), - [anon_sym_out_GT_GT] = ACTIONS(1599), - [anon_sym_e_GT_GT] = ACTIONS(1599), - [anon_sym_o_GT_GT] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), + [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(424)] = { - [sym_comment] = STATE(424), + [STATE(426)] = { + [sym_comment] = STATE(426), [anon_sym_in] = ACTIONS(1521), [sym__newline] = ACTIONS(1521), [anon_sym_SEMI] = ACTIONS(1521), @@ -80919,464 +81385,699 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(425)] = { - [sym_comment] = STATE(425), - [ts_builtin_sym_end] = ACTIONS(1535), - [anon_sym_EQ] = ACTIONS(1533), - [anon_sym_PLUS_EQ] = ACTIONS(1535), - [anon_sym_DASH_EQ] = ACTIONS(1535), - [anon_sym_STAR_EQ] = ACTIONS(1535), - [anon_sym_SLASH_EQ] = ACTIONS(1535), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [sym__newline] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_PIPE] = ACTIONS(1535), - [anon_sym_err_GT_PIPE] = ACTIONS(1535), - [anon_sym_out_GT_PIPE] = ACTIONS(1535), - [anon_sym_e_GT_PIPE] = ACTIONS(1535), - [anon_sym_o_GT_PIPE] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), - [anon_sym_GT2] = ACTIONS(1533), - [anon_sym_DASH2] = ACTIONS(1533), - [anon_sym_STAR2] = ACTIONS(1533), - [anon_sym_and2] = ACTIONS(1535), - [anon_sym_xor2] = ACTIONS(1535), - [anon_sym_or2] = ACTIONS(1535), - [anon_sym_not_DASHin2] = ACTIONS(1535), - [anon_sym_has2] = ACTIONS(1535), - [anon_sym_not_DASHhas2] = ACTIONS(1535), - [anon_sym_starts_DASHwith2] = ACTIONS(1535), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), - [anon_sym_ends_DASHwith2] = ACTIONS(1535), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), - [anon_sym_EQ_EQ2] = ACTIONS(1535), - [anon_sym_BANG_EQ2] = ACTIONS(1535), - [anon_sym_LT2] = ACTIONS(1533), - [anon_sym_LT_EQ2] = ACTIONS(1535), - [anon_sym_GT_EQ2] = ACTIONS(1535), - [anon_sym_EQ_TILDE2] = ACTIONS(1535), - [anon_sym_BANG_TILDE2] = ACTIONS(1535), - [anon_sym_like2] = ACTIONS(1535), - [anon_sym_not_DASHlike2] = ACTIONS(1535), - [anon_sym_STAR_STAR2] = ACTIONS(1535), - [anon_sym_PLUS_PLUS2] = ACTIONS(1533), - [anon_sym_SLASH2] = ACTIONS(1533), - [anon_sym_mod2] = ACTIONS(1535), - [anon_sym_SLASH_SLASH2] = ACTIONS(1535), - [anon_sym_PLUS2] = ACTIONS(1533), - [anon_sym_bit_DASHshl2] = ACTIONS(1535), - [anon_sym_bit_DASHshr2] = ACTIONS(1535), - [anon_sym_bit_DASHand2] = ACTIONS(1535), - [anon_sym_bit_DASHxor2] = ACTIONS(1535), - [anon_sym_bit_DASHor2] = ACTIONS(1535), - [anon_sym_DOT_DOT2] = ACTIONS(1533), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1535), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1533), - [anon_sym_err_GT] = ACTIONS(1533), - [anon_sym_out_GT] = ACTIONS(1533), - [anon_sym_e_GT] = ACTIONS(1533), - [anon_sym_o_GT] = ACTIONS(1533), - [anon_sym_err_PLUSout_GT] = ACTIONS(1533), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1533), - [anon_sym_o_PLUSe_GT] = ACTIONS(1533), - [anon_sym_e_PLUSo_GT] = ACTIONS(1533), - [anon_sym_err_GT_GT] = ACTIONS(1535), - [anon_sym_out_GT_GT] = ACTIONS(1535), - [anon_sym_e_GT_GT] = ACTIONS(1535), - [anon_sym_o_GT_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(426)] = { - [sym_cell_path] = STATE(478), - [sym_path] = STATE(454), - [sym_comment] = STATE(426), - [aux_sym__where_predicate_lhs_repeat1] = STATE(429), - [anon_sym_in] = ACTIONS(1452), - [sym__newline] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_err_GT_PIPE] = ACTIONS(1452), - [anon_sym_out_GT_PIPE] = ACTIONS(1452), - [anon_sym_e_GT_PIPE] = ACTIONS(1452), - [anon_sym_o_GT_PIPE] = ACTIONS(1452), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), - [anon_sym_RPAREN] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(1450), - [anon_sym_DASH2] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_STAR2] = ACTIONS(1450), - [anon_sym_and2] = ACTIONS(1452), - [anon_sym_xor2] = ACTIONS(1452), - [anon_sym_or2] = ACTIONS(1452), - [anon_sym_not_DASHin2] = ACTIONS(1452), - [anon_sym_has2] = ACTIONS(1452), - [anon_sym_not_DASHhas2] = ACTIONS(1452), - [anon_sym_starts_DASHwith2] = ACTIONS(1452), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), - [anon_sym_ends_DASHwith2] = ACTIONS(1452), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), - [anon_sym_EQ_EQ2] = ACTIONS(1452), - [anon_sym_BANG_EQ2] = ACTIONS(1452), - [anon_sym_LT2] = ACTIONS(1450), - [anon_sym_LT_EQ2] = ACTIONS(1452), - [anon_sym_GT_EQ2] = ACTIONS(1452), - [anon_sym_EQ_TILDE2] = ACTIONS(1452), - [anon_sym_BANG_TILDE2] = ACTIONS(1452), - [anon_sym_like2] = ACTIONS(1452), - [anon_sym_not_DASHlike2] = ACTIONS(1452), - [anon_sym_STAR_STAR2] = ACTIONS(1452), - [anon_sym_PLUS_PLUS2] = ACTIONS(1452), - [anon_sym_SLASH2] = ACTIONS(1450), - [anon_sym_mod2] = ACTIONS(1452), - [anon_sym_SLASH_SLASH2] = ACTIONS(1452), - [anon_sym_PLUS2] = ACTIONS(1450), - [anon_sym_bit_DASHshl2] = ACTIONS(1452), - [anon_sym_bit_DASHshr2] = ACTIONS(1452), - [anon_sym_bit_DASHand2] = ACTIONS(1452), - [anon_sym_bit_DASHxor2] = ACTIONS(1452), - [anon_sym_bit_DASHor2] = ACTIONS(1452), - [anon_sym_DOT_DOT2] = ACTIONS(1450), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), - [anon_sym_DOT2] = ACTIONS(1685), - [anon_sym_err_GT] = ACTIONS(1450), - [anon_sym_out_GT] = ACTIONS(1450), - [anon_sym_e_GT] = ACTIONS(1450), - [anon_sym_o_GT] = ACTIONS(1450), - [anon_sym_err_PLUSout_GT] = ACTIONS(1450), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), - [anon_sym_o_PLUSe_GT] = ACTIONS(1450), - [anon_sym_e_PLUSo_GT] = ACTIONS(1450), - [anon_sym_err_GT_GT] = ACTIONS(1452), - [anon_sym_out_GT_GT] = ACTIONS(1452), - [anon_sym_e_GT_GT] = ACTIONS(1452), - [anon_sym_o_GT_GT] = ACTIONS(1452), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(427)] = { + [sym_path] = STATE(458), [sym_comment] = STATE(427), - [anon_sym_EQ] = ACTIONS(1627), - [anon_sym_PLUS_EQ] = ACTIONS(1714), - [anon_sym_DASH_EQ] = ACTIONS(1714), - [anon_sym_STAR_EQ] = ACTIONS(1714), - [anon_sym_SLASH_EQ] = ACTIONS(1714), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1716), - [sym__newline] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_err_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_GT_PIPE] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), - [anon_sym_GT2] = ACTIONS(1629), - [anon_sym_DASH2] = ACTIONS(1629), - [anon_sym_RBRACE] = ACTIONS(1716), - [anon_sym_STAR2] = ACTIONS(1629), - [anon_sym_and2] = ACTIONS(1716), - [anon_sym_xor2] = ACTIONS(1716), - [anon_sym_or2] = ACTIONS(1716), - [anon_sym_not_DASHin2] = ACTIONS(1716), - [anon_sym_has2] = ACTIONS(1716), - [anon_sym_not_DASHhas2] = ACTIONS(1716), - [anon_sym_starts_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), - [anon_sym_ends_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), - [anon_sym_EQ_EQ2] = ACTIONS(1716), - [anon_sym_BANG_EQ2] = ACTIONS(1716), - [anon_sym_LT2] = ACTIONS(1629), - [anon_sym_LT_EQ2] = ACTIONS(1716), - [anon_sym_GT_EQ2] = ACTIONS(1716), - [anon_sym_EQ_TILDE2] = ACTIONS(1716), - [anon_sym_BANG_TILDE2] = ACTIONS(1716), - [anon_sym_like2] = ACTIONS(1716), - [anon_sym_not_DASHlike2] = ACTIONS(1716), - [anon_sym_STAR_STAR2] = ACTIONS(1716), - [anon_sym_PLUS_PLUS2] = ACTIONS(1629), - [anon_sym_SLASH2] = ACTIONS(1629), - [anon_sym_mod2] = ACTIONS(1716), - [anon_sym_SLASH_SLASH2] = ACTIONS(1716), - [anon_sym_PLUS2] = ACTIONS(1629), - [anon_sym_bit_DASHshl2] = ACTIONS(1716), - [anon_sym_bit_DASHshr2] = ACTIONS(1716), - [anon_sym_bit_DASHand2] = ACTIONS(1716), - [anon_sym_bit_DASHxor2] = ACTIONS(1716), - [anon_sym_bit_DASHor2] = ACTIONS(1716), - [anon_sym_DOT_DOT2] = ACTIONS(1633), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), - [anon_sym_COLON2] = ACTIONS(1718), - [anon_sym_err_GT] = ACTIONS(1629), - [anon_sym_out_GT] = ACTIONS(1629), - [anon_sym_e_GT] = ACTIONS(1629), - [anon_sym_o_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT] = ACTIONS(1629), - [anon_sym_err_GT_GT] = ACTIONS(1716), - [anon_sym_out_GT_GT] = ACTIONS(1716), - [anon_sym_e_GT_GT] = ACTIONS(1716), - [anon_sym_o_GT_GT] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), + [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(428)] = { [sym_comment] = STATE(428), - [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), + [ts_builtin_sym_end] = ACTIONS(1582), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_PLUS_EQ] = ACTIONS(1582), + [anon_sym_DASH_EQ] = ACTIONS(1582), + [anon_sym_STAR_EQ] = ACTIONS(1582), + [anon_sym_SLASH_EQ] = ACTIONS(1582), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1582), + [anon_sym_in] = ACTIONS(1582), + [sym__newline] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_err_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_GT_PIPE] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), + [anon_sym_COLON] = ACTIONS(1582), + [anon_sym_GT2] = ACTIONS(1580), + [anon_sym_DASH2] = ACTIONS(1580), + [anon_sym_STAR2] = ACTIONS(1580), + [anon_sym_and2] = ACTIONS(1582), + [anon_sym_xor2] = ACTIONS(1582), + [anon_sym_or2] = ACTIONS(1582), + [anon_sym_not_DASHin2] = ACTIONS(1582), + [anon_sym_has2] = ACTIONS(1582), + [anon_sym_not_DASHhas2] = ACTIONS(1582), + [anon_sym_starts_DASHwith2] = ACTIONS(1582), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), + [anon_sym_ends_DASHwith2] = ACTIONS(1582), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), + [anon_sym_EQ_EQ2] = ACTIONS(1582), + [anon_sym_BANG_EQ2] = ACTIONS(1582), + [anon_sym_LT2] = ACTIONS(1580), + [anon_sym_LT_EQ2] = ACTIONS(1582), + [anon_sym_GT_EQ2] = ACTIONS(1582), + [anon_sym_EQ_TILDE2] = ACTIONS(1582), + [anon_sym_BANG_TILDE2] = ACTIONS(1582), + [anon_sym_like2] = ACTIONS(1582), + [anon_sym_not_DASHlike2] = ACTIONS(1582), + [anon_sym_STAR_STAR2] = ACTIONS(1582), + [anon_sym_PLUS_PLUS2] = ACTIONS(1580), + [anon_sym_SLASH2] = ACTIONS(1580), + [anon_sym_mod2] = ACTIONS(1582), + [anon_sym_SLASH_SLASH2] = ACTIONS(1582), + [anon_sym_PLUS2] = ACTIONS(1580), + [anon_sym_bit_DASHshl2] = ACTIONS(1582), + [anon_sym_bit_DASHshr2] = ACTIONS(1582), + [anon_sym_bit_DASHand2] = ACTIONS(1582), + [anon_sym_bit_DASHxor2] = ACTIONS(1582), + [anon_sym_bit_DASHor2] = ACTIONS(1582), + [anon_sym_DOT_DOT2] = ACTIONS(1580), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1582), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1582), + [anon_sym_err_GT] = ACTIONS(1580), + [anon_sym_out_GT] = ACTIONS(1580), + [anon_sym_e_GT] = ACTIONS(1580), + [anon_sym_o_GT] = ACTIONS(1580), + [anon_sym_err_PLUSout_GT] = ACTIONS(1580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), + [anon_sym_o_PLUSe_GT] = ACTIONS(1580), + [anon_sym_e_PLUSo_GT] = ACTIONS(1580), + [anon_sym_err_GT_GT] = ACTIONS(1582), + [anon_sym_out_GT_GT] = ACTIONS(1582), + [anon_sym_e_GT_GT] = ACTIONS(1582), + [anon_sym_o_GT_GT] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), [anon_sym_POUND] = ACTIONS(3), }, [STATE(429)] = { - [sym_path] = STATE(454), [sym_comment] = STATE(429), - [aux_sym__where_predicate_lhs_repeat1] = STATE(414), - [anon_sym_in] = ACTIONS(1517), - [sym__newline] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1517), - [anon_sym_PIPE] = ACTIONS(1517), - [anon_sym_err_GT_PIPE] = ACTIONS(1517), - [anon_sym_out_GT_PIPE] = ACTIONS(1517), - [anon_sym_e_GT_PIPE] = ACTIONS(1517), - [anon_sym_o_GT_PIPE] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1517), - [anon_sym_RPAREN] = ACTIONS(1517), - [anon_sym_GT2] = ACTIONS(1515), - [anon_sym_DASH2] = ACTIONS(1517), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_EQ_GT] = ACTIONS(1517), - [anon_sym_STAR2] = ACTIONS(1515), - [anon_sym_and2] = ACTIONS(1517), - [anon_sym_xor2] = ACTIONS(1517), - [anon_sym_or2] = ACTIONS(1517), - [anon_sym_not_DASHin2] = ACTIONS(1517), - [anon_sym_has2] = ACTIONS(1517), - [anon_sym_not_DASHhas2] = ACTIONS(1517), - [anon_sym_starts_DASHwith2] = ACTIONS(1517), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1517), - [anon_sym_ends_DASHwith2] = ACTIONS(1517), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1517), - [anon_sym_EQ_EQ2] = ACTIONS(1517), - [anon_sym_BANG_EQ2] = ACTIONS(1517), - [anon_sym_LT2] = ACTIONS(1515), - [anon_sym_LT_EQ2] = ACTIONS(1517), - [anon_sym_GT_EQ2] = ACTIONS(1517), - [anon_sym_EQ_TILDE2] = ACTIONS(1517), - [anon_sym_BANG_TILDE2] = ACTIONS(1517), - [anon_sym_like2] = ACTIONS(1517), - [anon_sym_not_DASHlike2] = ACTIONS(1517), - [anon_sym_STAR_STAR2] = ACTIONS(1517), - [anon_sym_PLUS_PLUS2] = ACTIONS(1517), - [anon_sym_SLASH2] = ACTIONS(1515), - [anon_sym_mod2] = ACTIONS(1517), - [anon_sym_SLASH_SLASH2] = ACTIONS(1517), - [anon_sym_PLUS2] = ACTIONS(1515), - [anon_sym_bit_DASHshl2] = ACTIONS(1517), - [anon_sym_bit_DASHshr2] = ACTIONS(1517), - [anon_sym_bit_DASHand2] = ACTIONS(1517), - [anon_sym_bit_DASHxor2] = ACTIONS(1517), - [anon_sym_bit_DASHor2] = ACTIONS(1517), - [anon_sym_DOT_DOT2] = ACTIONS(1515), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1517), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1517), - [anon_sym_COLON2] = ACTIONS(1517), - [anon_sym_DOT2] = ACTIONS(1685), - [anon_sym_err_GT] = ACTIONS(1515), - [anon_sym_out_GT] = ACTIONS(1515), - [anon_sym_e_GT] = ACTIONS(1515), - [anon_sym_o_GT] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT] = ACTIONS(1515), - [anon_sym_err_GT_GT] = ACTIONS(1517), - [anon_sym_out_GT_GT] = ACTIONS(1517), - [anon_sym_e_GT_GT] = ACTIONS(1517), - [anon_sym_o_GT_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1517), + [anon_sym_in] = ACTIONS(1533), + [sym__newline] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_err_GT_PIPE] = ACTIONS(1533), + [anon_sym_out_GT_PIPE] = ACTIONS(1533), + [anon_sym_e_GT_PIPE] = ACTIONS(1533), + [anon_sym_o_GT_PIPE] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1533), + [anon_sym_RPAREN] = ACTIONS(1533), + [anon_sym_GT2] = ACTIONS(1531), + [anon_sym_DASH2] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_EQ_GT] = ACTIONS(1533), + [anon_sym_STAR2] = ACTIONS(1531), + [anon_sym_and2] = ACTIONS(1533), + [anon_sym_xor2] = ACTIONS(1533), + [anon_sym_or2] = ACTIONS(1533), + [anon_sym_not_DASHin2] = ACTIONS(1533), + [anon_sym_has2] = ACTIONS(1533), + [anon_sym_not_DASHhas2] = ACTIONS(1533), + [anon_sym_starts_DASHwith2] = ACTIONS(1533), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1533), + [anon_sym_ends_DASHwith2] = ACTIONS(1533), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1533), + [anon_sym_EQ_EQ2] = ACTIONS(1533), + [anon_sym_BANG_EQ2] = ACTIONS(1533), + [anon_sym_LT2] = ACTIONS(1531), + [anon_sym_LT_EQ2] = ACTIONS(1533), + [anon_sym_GT_EQ2] = ACTIONS(1533), + [anon_sym_EQ_TILDE2] = ACTIONS(1533), + [anon_sym_BANG_TILDE2] = ACTIONS(1533), + [anon_sym_like2] = ACTIONS(1533), + [anon_sym_not_DASHlike2] = ACTIONS(1533), + [anon_sym_STAR_STAR2] = ACTIONS(1533), + [anon_sym_PLUS_PLUS2] = ACTIONS(1533), + [anon_sym_SLASH2] = ACTIONS(1531), + [anon_sym_mod2] = ACTIONS(1533), + [anon_sym_SLASH_SLASH2] = ACTIONS(1533), + [anon_sym_PLUS2] = ACTIONS(1531), + [anon_sym_bit_DASHshl2] = ACTIONS(1533), + [anon_sym_bit_DASHshr2] = ACTIONS(1533), + [anon_sym_bit_DASHand2] = ACTIONS(1533), + [anon_sym_bit_DASHxor2] = ACTIONS(1533), + [anon_sym_bit_DASHor2] = ACTIONS(1533), + [anon_sym_DOT_DOT2] = ACTIONS(1531), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1533), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1533), + [anon_sym_COLON2] = ACTIONS(1533), + [anon_sym_QMARK2] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_DOT2] = ACTIONS(1531), + [anon_sym_err_GT] = ACTIONS(1531), + [anon_sym_out_GT] = ACTIONS(1531), + [anon_sym_e_GT] = ACTIONS(1531), + [anon_sym_o_GT] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT] = ACTIONS(1531), + [anon_sym_err_GT_GT] = ACTIONS(1533), + [anon_sym_out_GT_GT] = ACTIONS(1533), + [anon_sym_e_GT_GT] = ACTIONS(1533), + [anon_sym_o_GT_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1533), [anon_sym_POUND] = ACTIONS(3), }, [STATE(430)] = { - [sym__expr_parenthesized_immediate] = STATE(1294), - [sym__immediate_decimal] = STATE(989), - [sym_val_variable] = STATE(1294), [sym_comment] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(1599), - [anon_sym_in] = ACTIONS(1599), - [sym__newline] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_err_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_GT_PIPE] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_GT2] = ACTIONS(1603), - [anon_sym_DASH2] = ACTIONS(1603), - [anon_sym_STAR2] = ACTIONS(1603), - [anon_sym_and2] = ACTIONS(1599), - [anon_sym_xor2] = ACTIONS(1599), - [anon_sym_or2] = ACTIONS(1599), - [anon_sym_not_DASHin2] = ACTIONS(1599), - [anon_sym_has2] = ACTIONS(1599), - [anon_sym_not_DASHhas2] = ACTIONS(1599), - [anon_sym_starts_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), - [anon_sym_ends_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), - [anon_sym_EQ_EQ2] = ACTIONS(1599), - [anon_sym_BANG_EQ2] = ACTIONS(1599), - [anon_sym_LT2] = ACTIONS(1603), - [anon_sym_LT_EQ2] = ACTIONS(1599), - [anon_sym_GT_EQ2] = ACTIONS(1599), - [anon_sym_EQ_TILDE2] = ACTIONS(1599), - [anon_sym_BANG_TILDE2] = ACTIONS(1599), - [anon_sym_like2] = ACTIONS(1599), - [anon_sym_not_DASHlike2] = ACTIONS(1599), - [anon_sym_LPAREN2] = ACTIONS(1653), - [anon_sym_STAR_STAR2] = ACTIONS(1599), - [anon_sym_PLUS_PLUS2] = ACTIONS(1599), - [anon_sym_SLASH2] = ACTIONS(1603), - [anon_sym_mod2] = ACTIONS(1599), - [anon_sym_SLASH_SLASH2] = ACTIONS(1599), - [anon_sym_PLUS2] = ACTIONS(1603), - [anon_sym_bit_DASHshl2] = ACTIONS(1599), - [anon_sym_bit_DASHshr2] = ACTIONS(1599), - [anon_sym_bit_DASHand2] = ACTIONS(1599), - [anon_sym_bit_DASHxor2] = ACTIONS(1599), - [anon_sym_bit_DASHor2] = ACTIONS(1599), - [aux_sym__immediate_decimal_token1] = ACTIONS(1708), - [aux_sym__immediate_decimal_token2] = ACTIONS(1708), - [aux_sym__immediate_decimal_token3] = ACTIONS(1710), - [aux_sym__immediate_decimal_token4] = ACTIONS(1710), - [anon_sym_err_GT] = ACTIONS(1603), - [anon_sym_out_GT] = ACTIONS(1603), - [anon_sym_e_GT] = ACTIONS(1603), - [anon_sym_o_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT] = ACTIONS(1603), - [anon_sym_err_GT_GT] = ACTIONS(1599), - [anon_sym_out_GT_GT] = ACTIONS(1599), - [anon_sym_e_GT_GT] = ACTIONS(1599), - [anon_sym_o_GT_GT] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), - [sym__unquoted_pattern] = ACTIONS(1615), + [anon_sym_in] = ACTIONS(1537), + [sym__newline] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_err_GT_PIPE] = ACTIONS(1537), + [anon_sym_out_GT_PIPE] = ACTIONS(1537), + [anon_sym_e_GT_PIPE] = ACTIONS(1537), + [anon_sym_o_GT_PIPE] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), + [anon_sym_RPAREN] = ACTIONS(1537), + [anon_sym_GT2] = ACTIONS(1535), + [anon_sym_DASH2] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_RBRACE] = ACTIONS(1537), + [anon_sym_EQ_GT] = ACTIONS(1537), + [anon_sym_STAR2] = ACTIONS(1535), + [anon_sym_and2] = ACTIONS(1537), + [anon_sym_xor2] = ACTIONS(1537), + [anon_sym_or2] = ACTIONS(1537), + [anon_sym_not_DASHin2] = ACTIONS(1537), + [anon_sym_has2] = ACTIONS(1537), + [anon_sym_not_DASHhas2] = ACTIONS(1537), + [anon_sym_starts_DASHwith2] = ACTIONS(1537), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), + [anon_sym_ends_DASHwith2] = ACTIONS(1537), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), + [anon_sym_EQ_EQ2] = ACTIONS(1537), + [anon_sym_BANG_EQ2] = ACTIONS(1537), + [anon_sym_LT2] = ACTIONS(1535), + [anon_sym_LT_EQ2] = ACTIONS(1537), + [anon_sym_GT_EQ2] = ACTIONS(1537), + [anon_sym_EQ_TILDE2] = ACTIONS(1537), + [anon_sym_BANG_TILDE2] = ACTIONS(1537), + [anon_sym_like2] = ACTIONS(1537), + [anon_sym_not_DASHlike2] = ACTIONS(1537), + [anon_sym_STAR_STAR2] = ACTIONS(1537), + [anon_sym_PLUS_PLUS2] = ACTIONS(1537), + [anon_sym_SLASH2] = ACTIONS(1535), + [anon_sym_mod2] = ACTIONS(1537), + [anon_sym_SLASH_SLASH2] = ACTIONS(1537), + [anon_sym_PLUS2] = ACTIONS(1535), + [anon_sym_bit_DASHshl2] = ACTIONS(1537), + [anon_sym_bit_DASHshr2] = ACTIONS(1537), + [anon_sym_bit_DASHand2] = ACTIONS(1537), + [anon_sym_bit_DASHxor2] = ACTIONS(1537), + [anon_sym_bit_DASHor2] = ACTIONS(1537), + [anon_sym_DOT_DOT2] = ACTIONS(1535), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), + [anon_sym_COLON2] = ACTIONS(1537), + [anon_sym_QMARK2] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_DOT2] = ACTIONS(1535), + [anon_sym_err_GT] = ACTIONS(1535), + [anon_sym_out_GT] = ACTIONS(1535), + [anon_sym_e_GT] = ACTIONS(1535), + [anon_sym_o_GT] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT] = ACTIONS(1535), + [anon_sym_err_GT_GT] = ACTIONS(1537), + [anon_sym_out_GT_GT] = ACTIONS(1537), + [anon_sym_e_GT_GT] = ACTIONS(1537), + [anon_sym_o_GT_GT] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), [anon_sym_POUND] = ACTIONS(3), }, [STATE(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(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(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(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(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(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), @@ -81389,12 +82090,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DASH2] = ACTIONS(1496), [anon_sym_STAR2] = ACTIONS(1496), [anon_sym_and2] = ACTIONS(1498), [anon_sym_xor2] = ACTIONS(1498), @@ -81416,7 +82113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_PLUS_PLUS2] = ACTIONS(1496), [anon_sym_SLASH2] = ACTIONS(1496), [anon_sym_mod2] = ACTIONS(1498), [anon_sym_SLASH_SLASH2] = ACTIONS(1498), @@ -81429,9 +82126,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_QMARK2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1496), [anon_sym_DOT2] = ACTIONS(1496), [anon_sym_err_GT] = ACTIONS(1496), [anon_sym_out_GT] = ACTIONS(1496), @@ -81451,309 +82145,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(432)] = { - [sym_comment] = STATE(432), - [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(433)] = { - [sym_comment] = STATE(433), - [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(1716), - [sym__newline] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_err_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_GT_PIPE] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), - [anon_sym_RPAREN] = ACTIONS(1716), - [anon_sym_GT2] = ACTIONS(1629), - [anon_sym_DASH2] = ACTIONS(1629), - [anon_sym_STAR2] = ACTIONS(1629), - [anon_sym_and2] = ACTIONS(1716), - [anon_sym_xor2] = ACTIONS(1716), - [anon_sym_or2] = ACTIONS(1716), - [anon_sym_not_DASHin2] = ACTIONS(1716), - [anon_sym_has2] = ACTIONS(1716), - [anon_sym_not_DASHhas2] = ACTIONS(1716), - [anon_sym_starts_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), - [anon_sym_ends_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), - [anon_sym_EQ_EQ2] = ACTIONS(1716), - [anon_sym_BANG_EQ2] = ACTIONS(1716), - [anon_sym_LT2] = ACTIONS(1629), - [anon_sym_LT_EQ2] = ACTIONS(1716), - [anon_sym_GT_EQ2] = ACTIONS(1716), - [anon_sym_EQ_TILDE2] = ACTIONS(1716), - [anon_sym_BANG_TILDE2] = ACTIONS(1716), - [anon_sym_like2] = ACTIONS(1716), - [anon_sym_not_DASHlike2] = ACTIONS(1716), - [anon_sym_STAR_STAR2] = ACTIONS(1716), - [anon_sym_PLUS_PLUS2] = ACTIONS(1629), - [anon_sym_SLASH2] = ACTIONS(1629), - [anon_sym_mod2] = ACTIONS(1716), - [anon_sym_SLASH_SLASH2] = ACTIONS(1716), - [anon_sym_PLUS2] = ACTIONS(1629), - [anon_sym_bit_DASHshl2] = ACTIONS(1716), - [anon_sym_bit_DASHshr2] = ACTIONS(1716), - [anon_sym_bit_DASHand2] = ACTIONS(1716), - [anon_sym_bit_DASHxor2] = ACTIONS(1716), - [anon_sym_bit_DASHor2] = ACTIONS(1716), - [anon_sym_DOT_DOT2] = ACTIONS(1633), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), - [anon_sym_err_GT] = ACTIONS(1629), - [anon_sym_out_GT] = ACTIONS(1629), - [anon_sym_e_GT] = ACTIONS(1629), - [anon_sym_o_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT] = ACTIONS(1629), - [anon_sym_err_GT_GT] = ACTIONS(1716), - [anon_sym_out_GT_GT] = ACTIONS(1716), - [anon_sym_e_GT_GT] = ACTIONS(1716), - [anon_sym_o_GT_GT] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), + [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(434)] = { - [sym_comment] = STATE(434), - [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(1724), - [aux_sym__immediate_decimal_token5] = ACTIONS(1726), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(741), - [anon_sym_out_GT_GT] = ACTIONS(741), - [anon_sym_e_GT_GT] = ACTIONS(741), - [anon_sym_o_GT_GT] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), - [sym__unquoted_pattern] = ACTIONS(739), + [STATE(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(435)] = { - [sym_comment] = STATE(435), - [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_BANG] = ACTIONS(1728), - [anon_sym_DOT2] = ACTIONS(1456), - [anon_sym_err_GT] = ACTIONS(1456), - [anon_sym_out_GT] = ACTIONS(1456), - [anon_sym_e_GT] = ACTIONS(1456), - [anon_sym_o_GT] = ACTIONS(1456), - [anon_sym_err_PLUSout_GT] = ACTIONS(1456), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1456), - [anon_sym_o_PLUSe_GT] = ACTIONS(1456), - [anon_sym_e_PLUSo_GT] = ACTIONS(1456), - [anon_sym_err_GT_GT] = ACTIONS(1458), - [anon_sym_out_GT_GT] = ACTIONS(1458), - [anon_sym_e_GT_GT] = ACTIONS(1458), - [anon_sym_o_GT_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1458), + [STATE(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(436)] = { - [sym_comment] = STATE(436), + [STATE(440)] = { + [sym_comment] = STATE(440), + [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(749), [sym__newline] = ACTIONS(749), [anon_sym_SEMI] = ACTIONS(749), @@ -81766,10 +82386,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), @@ -81803,9 +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_token5] = ACTIONS(1702), + [aux_sym__immediate_decimal_token5] = ACTIONS(1742), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -81827,984 +82446,608 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(437)] = { - [sym__expr_parenthesized_immediate] = STATE(1300), - [sym__immediate_decimal] = STATE(1301), - [sym_val_variable] = STATE(1300), - [sym_comment] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(1673), - [anon_sym_in] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_GT2] = ACTIONS(1675), - [anon_sym_DASH2] = ACTIONS(1675), - [anon_sym_STAR2] = ACTIONS(1675), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_has2] = ACTIONS(1673), - [anon_sym_not_DASHhas2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1675), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_like2] = ACTIONS(1673), - [anon_sym_not_DASHlike2] = ACTIONS(1673), - [anon_sym_LPAREN2] = ACTIONS(1653), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1675), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1675), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [aux_sym__immediate_decimal_token1] = ACTIONS(1730), - [aux_sym__immediate_decimal_token2] = ACTIONS(1730), - [aux_sym__immediate_decimal_token3] = ACTIONS(1659), - [aux_sym__immediate_decimal_token4] = ACTIONS(1659), - [anon_sym_err_GT] = ACTIONS(1675), - [anon_sym_out_GT] = ACTIONS(1675), - [anon_sym_e_GT] = ACTIONS(1675), - [anon_sym_o_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT] = ACTIONS(1675), - [anon_sym_err_GT_GT] = ACTIONS(1673), - [anon_sym_out_GT_GT] = ACTIONS(1673), - [anon_sym_e_GT_GT] = ACTIONS(1673), - [anon_sym_o_GT_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(438)] = { - [sym__expr_parenthesized_immediate] = STATE(1302), - [sym__immediate_decimal] = STATE(1303), - [sym_val_variable] = STATE(1302), - [sym_comment] = STATE(438), - [ts_builtin_sym_end] = ACTIONS(1677), - [anon_sym_in] = ACTIONS(1677), - [sym__newline] = ACTIONS(1677), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_err_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_GT_PIPE] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_GT2] = ACTIONS(1679), - [anon_sym_DASH2] = ACTIONS(1679), - [anon_sym_STAR2] = ACTIONS(1679), - [anon_sym_and2] = ACTIONS(1677), - [anon_sym_xor2] = ACTIONS(1677), - [anon_sym_or2] = ACTIONS(1677), - [anon_sym_not_DASHin2] = ACTIONS(1677), - [anon_sym_has2] = ACTIONS(1677), - [anon_sym_not_DASHhas2] = ACTIONS(1677), - [anon_sym_starts_DASHwith2] = ACTIONS(1677), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1677), - [anon_sym_ends_DASHwith2] = ACTIONS(1677), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1677), - [anon_sym_EQ_EQ2] = ACTIONS(1677), - [anon_sym_BANG_EQ2] = ACTIONS(1677), - [anon_sym_LT2] = ACTIONS(1679), - [anon_sym_LT_EQ2] = ACTIONS(1677), - [anon_sym_GT_EQ2] = ACTIONS(1677), - [anon_sym_EQ_TILDE2] = ACTIONS(1677), - [anon_sym_BANG_TILDE2] = ACTIONS(1677), - [anon_sym_like2] = ACTIONS(1677), - [anon_sym_not_DASHlike2] = ACTIONS(1677), - [anon_sym_LPAREN2] = ACTIONS(1653), - [anon_sym_STAR_STAR2] = ACTIONS(1677), - [anon_sym_PLUS_PLUS2] = ACTIONS(1677), - [anon_sym_SLASH2] = ACTIONS(1679), - [anon_sym_mod2] = ACTIONS(1677), - [anon_sym_SLASH_SLASH2] = ACTIONS(1677), - [anon_sym_PLUS2] = ACTIONS(1679), - [anon_sym_bit_DASHshl2] = ACTIONS(1677), - [anon_sym_bit_DASHshr2] = ACTIONS(1677), - [anon_sym_bit_DASHand2] = ACTIONS(1677), - [anon_sym_bit_DASHxor2] = ACTIONS(1677), - [anon_sym_bit_DASHor2] = ACTIONS(1677), - [aux_sym__immediate_decimal_token1] = ACTIONS(1730), - [aux_sym__immediate_decimal_token2] = ACTIONS(1730), - [aux_sym__immediate_decimal_token3] = ACTIONS(1659), - [aux_sym__immediate_decimal_token4] = ACTIONS(1659), - [anon_sym_err_GT] = ACTIONS(1679), - [anon_sym_out_GT] = ACTIONS(1679), - [anon_sym_e_GT] = ACTIONS(1679), - [anon_sym_o_GT] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT] = ACTIONS(1679), - [anon_sym_err_GT_GT] = ACTIONS(1677), - [anon_sym_out_GT_GT] = ACTIONS(1677), - [anon_sym_e_GT_GT] = ACTIONS(1677), - [anon_sym_o_GT_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(439)] = { - [sym_comment] = STATE(439), - [anon_sym_in] = ACTIONS(765), - [sym__newline] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_err_GT_PIPE] = ACTIONS(765), - [anon_sym_out_GT_PIPE] = ACTIONS(765), - [anon_sym_e_GT_PIPE] = ACTIONS(765), - [anon_sym_o_GT_PIPE] = ACTIONS(765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(765), - [anon_sym_RBRACE] = ACTIONS(765), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(765), - [anon_sym_xor2] = ACTIONS(765), - [anon_sym_or2] = ACTIONS(765), - [anon_sym_not_DASHin2] = ACTIONS(765), - [anon_sym_has2] = ACTIONS(765), - [anon_sym_not_DASHhas2] = ACTIONS(765), - [anon_sym_starts_DASHwith2] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(765), - [anon_sym_ends_DASHwith2] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(765), - [anon_sym_EQ_EQ2] = ACTIONS(765), - [anon_sym_BANG_EQ2] = ACTIONS(765), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(765), - [anon_sym_GT_EQ2] = ACTIONS(765), - [anon_sym_EQ_TILDE2] = ACTIONS(765), - [anon_sym_BANG_TILDE2] = ACTIONS(765), - [anon_sym_like2] = ACTIONS(765), - [anon_sym_not_DASHlike2] = ACTIONS(765), - [anon_sym_LPAREN2] = ACTIONS(765), - [anon_sym_STAR_STAR2] = ACTIONS(765), - [anon_sym_PLUS_PLUS2] = ACTIONS(765), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(765), - [anon_sym_SLASH_SLASH2] = ACTIONS(765), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(765), - [anon_sym_bit_DASHshr2] = ACTIONS(765), - [anon_sym_bit_DASHand2] = ACTIONS(765), - [anon_sym_bit_DASHxor2] = ACTIONS(765), - [anon_sym_bit_DASHor2] = ACTIONS(765), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [aux_sym__immediate_decimal_token5] = ACTIONS(1732), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), - [anon_sym_err_GT] = ACTIONS(763), - [anon_sym_out_GT] = ACTIONS(763), - [anon_sym_e_GT] = ACTIONS(763), - [anon_sym_o_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT] = ACTIONS(763), - [anon_sym_err_GT_GT] = ACTIONS(765), - [anon_sym_out_GT_GT] = ACTIONS(765), - [anon_sym_e_GT_GT] = ACTIONS(765), - [anon_sym_o_GT_GT] = ACTIONS(765), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(765), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(765), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(765), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(765), - [sym__unquoted_pattern] = ACTIONS(763), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(440)] = { - [sym_comment] = STATE(440), - [ts_builtin_sym_end] = ACTIONS(1716), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1716), - [sym__newline] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_err_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_GT_PIPE] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), - [anon_sym_GT2] = ACTIONS(1629), - [anon_sym_DASH2] = ACTIONS(1629), - [anon_sym_STAR2] = ACTIONS(1629), - [anon_sym_and2] = ACTIONS(1716), - [anon_sym_xor2] = ACTIONS(1716), - [anon_sym_or2] = ACTIONS(1716), - [anon_sym_not_DASHin2] = ACTIONS(1716), - [anon_sym_has2] = ACTIONS(1716), - [anon_sym_not_DASHhas2] = ACTIONS(1716), - [anon_sym_starts_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), - [anon_sym_ends_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), - [anon_sym_EQ_EQ2] = ACTIONS(1716), - [anon_sym_BANG_EQ2] = ACTIONS(1716), - [anon_sym_LT2] = ACTIONS(1629), - [anon_sym_LT_EQ2] = ACTIONS(1716), - [anon_sym_GT_EQ2] = ACTIONS(1716), - [anon_sym_EQ_TILDE2] = ACTIONS(1716), - [anon_sym_BANG_TILDE2] = ACTIONS(1716), - [anon_sym_like2] = ACTIONS(1716), - [anon_sym_not_DASHlike2] = ACTIONS(1716), - [anon_sym_STAR_STAR2] = ACTIONS(1716), - [anon_sym_PLUS_PLUS2] = ACTIONS(1629), - [anon_sym_SLASH2] = ACTIONS(1629), - [anon_sym_mod2] = ACTIONS(1716), - [anon_sym_SLASH_SLASH2] = ACTIONS(1716), - [anon_sym_PLUS2] = ACTIONS(1629), - [anon_sym_bit_DASHshl2] = ACTIONS(1716), - [anon_sym_bit_DASHshr2] = ACTIONS(1716), - [anon_sym_bit_DASHand2] = ACTIONS(1716), - [anon_sym_bit_DASHxor2] = ACTIONS(1716), - [anon_sym_bit_DASHor2] = ACTIONS(1716), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), - [anon_sym_err_GT] = ACTIONS(1629), - [anon_sym_out_GT] = ACTIONS(1629), - [anon_sym_e_GT] = ACTIONS(1629), - [anon_sym_o_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT] = ACTIONS(1629), - [anon_sym_err_GT_GT] = ACTIONS(1716), - [anon_sym_out_GT_GT] = ACTIONS(1716), - [anon_sym_e_GT_GT] = ACTIONS(1716), - [anon_sym_o_GT_GT] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(441)] = { [sym_comment] = STATE(441), - [anon_sym_EQ] = ACTIONS(1742), - [anon_sym_PLUS_EQ] = ACTIONS(1744), - [anon_sym_DASH_EQ] = ACTIONS(1744), - [anon_sym_STAR_EQ] = ACTIONS(1744), - [anon_sym_SLASH_EQ] = ACTIONS(1744), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1744), - [anon_sym_in] = ACTIONS(1716), - [sym__newline] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_err_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_GT_PIPE] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), - [anon_sym_RPAREN] = ACTIONS(1716), - [anon_sym_GT2] = ACTIONS(1629), - [anon_sym_DASH2] = ACTIONS(1629), - [anon_sym_STAR2] = ACTIONS(1629), - [anon_sym_and2] = ACTIONS(1716), - [anon_sym_xor2] = ACTIONS(1716), - [anon_sym_or2] = ACTIONS(1716), - [anon_sym_not_DASHin2] = ACTIONS(1716), - [anon_sym_has2] = ACTIONS(1716), - [anon_sym_not_DASHhas2] = ACTIONS(1716), - [anon_sym_starts_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), - [anon_sym_ends_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), - [anon_sym_EQ_EQ2] = ACTIONS(1716), - [anon_sym_BANG_EQ2] = ACTIONS(1716), - [anon_sym_LT2] = ACTIONS(1629), - [anon_sym_LT_EQ2] = ACTIONS(1716), - [anon_sym_GT_EQ2] = ACTIONS(1716), - [anon_sym_EQ_TILDE2] = ACTIONS(1716), - [anon_sym_BANG_TILDE2] = ACTIONS(1716), - [anon_sym_like2] = ACTIONS(1716), - [anon_sym_not_DASHlike2] = ACTIONS(1716), - [anon_sym_STAR_STAR2] = ACTIONS(1716), - [anon_sym_PLUS_PLUS2] = ACTIONS(1629), - [anon_sym_SLASH2] = ACTIONS(1629), - [anon_sym_mod2] = ACTIONS(1716), - [anon_sym_SLASH_SLASH2] = ACTIONS(1716), - [anon_sym_PLUS2] = ACTIONS(1629), - [anon_sym_bit_DASHshl2] = ACTIONS(1716), - [anon_sym_bit_DASHshr2] = ACTIONS(1716), - [anon_sym_bit_DASHand2] = ACTIONS(1716), - [anon_sym_bit_DASHxor2] = ACTIONS(1716), - [anon_sym_bit_DASHor2] = ACTIONS(1716), - [anon_sym_DOT_DOT2] = ACTIONS(1633), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), - [anon_sym_err_GT] = ACTIONS(1629), - [anon_sym_out_GT] = ACTIONS(1629), - [anon_sym_e_GT] = ACTIONS(1629), - [anon_sym_o_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT] = ACTIONS(1629), - [anon_sym_err_GT_GT] = ACTIONS(1716), - [anon_sym_out_GT_GT] = ACTIONS(1716), - [anon_sym_e_GT_GT] = ACTIONS(1716), - [anon_sym_o_GT_GT] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), + [anon_sym_in] = ACTIONS(1744), + [sym__newline] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_err_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_GT_PIPE] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), + [anon_sym_RPAREN] = ACTIONS(1744), + [anon_sym_GT2] = ACTIONS(1746), + [anon_sym_DASH2] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(1744), + [anon_sym_STAR2] = ACTIONS(1746), + [anon_sym_and2] = ACTIONS(1744), + [anon_sym_xor2] = ACTIONS(1744), + [anon_sym_or2] = ACTIONS(1744), + [anon_sym_not_DASHin2] = ACTIONS(1744), + [anon_sym_has2] = ACTIONS(1744), + [anon_sym_not_DASHhas2] = ACTIONS(1744), + [anon_sym_starts_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), + [anon_sym_ends_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), + [anon_sym_EQ_EQ2] = ACTIONS(1744), + [anon_sym_BANG_EQ2] = ACTIONS(1744), + [anon_sym_LT2] = ACTIONS(1746), + [anon_sym_LT_EQ2] = ACTIONS(1744), + [anon_sym_GT_EQ2] = ACTIONS(1744), + [anon_sym_EQ_TILDE2] = ACTIONS(1744), + [anon_sym_BANG_TILDE2] = ACTIONS(1744), + [anon_sym_like2] = ACTIONS(1744), + [anon_sym_not_DASHlike2] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1744), + [anon_sym_STAR_STAR2] = ACTIONS(1744), + [anon_sym_PLUS_PLUS2] = ACTIONS(1744), + [anon_sym_SLASH2] = ACTIONS(1746), + [anon_sym_mod2] = ACTIONS(1744), + [anon_sym_SLASH_SLASH2] = ACTIONS(1744), + [anon_sym_PLUS2] = ACTIONS(1746), + [anon_sym_bit_DASHshl2] = ACTIONS(1744), + [anon_sym_bit_DASHshr2] = ACTIONS(1744), + [anon_sym_bit_DASHand2] = ACTIONS(1744), + [anon_sym_bit_DASHxor2] = ACTIONS(1744), + [anon_sym_bit_DASHor2] = ACTIONS(1744), + [anon_sym_DOT_DOT2] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1748), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1744), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1744), + [aux_sym__immediate_decimal_token5] = ACTIONS(1750), + [anon_sym_err_GT] = ACTIONS(1746), + [anon_sym_out_GT] = ACTIONS(1746), + [anon_sym_e_GT] = ACTIONS(1746), + [anon_sym_o_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT] = ACTIONS(1746), + [anon_sym_err_GT_GT] = ACTIONS(1744), + [anon_sym_out_GT_GT] = ACTIONS(1744), + [anon_sym_e_GT_GT] = ACTIONS(1744), + [anon_sym_o_GT_GT] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), + [sym__unquoted_pattern] = ACTIONS(1746), [anon_sym_POUND] = ACTIONS(3), }, [STATE(442)] = { [sym_comment] = STATE(442), - [anon_sym_in] = ACTIONS(1746), - [sym__newline] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_err_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_GT_PIPE] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_GT2] = ACTIONS(1748), - [anon_sym_DASH2] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_STAR2] = ACTIONS(1748), - [anon_sym_and2] = ACTIONS(1746), - [anon_sym_xor2] = ACTIONS(1746), - [anon_sym_or2] = ACTIONS(1746), - [anon_sym_not_DASHin2] = ACTIONS(1746), - [anon_sym_has2] = ACTIONS(1746), - [anon_sym_not_DASHhas2] = ACTIONS(1746), - [anon_sym_starts_DASHwith2] = ACTIONS(1746), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1746), - [anon_sym_ends_DASHwith2] = ACTIONS(1746), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1746), - [anon_sym_EQ_EQ2] = ACTIONS(1746), - [anon_sym_BANG_EQ2] = ACTIONS(1746), - [anon_sym_LT2] = ACTIONS(1748), - [anon_sym_LT_EQ2] = ACTIONS(1746), - [anon_sym_GT_EQ2] = ACTIONS(1746), - [anon_sym_EQ_TILDE2] = ACTIONS(1746), - [anon_sym_BANG_TILDE2] = ACTIONS(1746), - [anon_sym_like2] = ACTIONS(1746), - [anon_sym_not_DASHlike2] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1746), - [anon_sym_STAR_STAR2] = ACTIONS(1746), - [anon_sym_PLUS_PLUS2] = ACTIONS(1746), - [anon_sym_SLASH2] = ACTIONS(1748), - [anon_sym_mod2] = ACTIONS(1746), - [anon_sym_SLASH_SLASH2] = ACTIONS(1746), - [anon_sym_PLUS2] = ACTIONS(1748), - [anon_sym_bit_DASHshl2] = ACTIONS(1746), - [anon_sym_bit_DASHshr2] = ACTIONS(1746), - [anon_sym_bit_DASHand2] = ACTIONS(1746), - [anon_sym_bit_DASHxor2] = ACTIONS(1746), - [anon_sym_bit_DASHor2] = ACTIONS(1746), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1746), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1746), - [aux_sym__immediate_decimal_token1] = ACTIONS(1750), - [aux_sym__immediate_decimal_token5] = ACTIONS(1752), - [anon_sym_err_GT] = ACTIONS(1748), - [anon_sym_out_GT] = ACTIONS(1748), - [anon_sym_e_GT] = ACTIONS(1748), - [anon_sym_o_GT] = ACTIONS(1748), - [anon_sym_err_PLUSout_GT] = ACTIONS(1748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1748), - [anon_sym_o_PLUSe_GT] = ACTIONS(1748), - [anon_sym_e_PLUSo_GT] = ACTIONS(1748), - [anon_sym_err_GT_GT] = ACTIONS(1746), - [anon_sym_out_GT_GT] = ACTIONS(1746), - [anon_sym_e_GT_GT] = ACTIONS(1746), - [anon_sym_o_GT_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), - [sym__unquoted_pattern] = ACTIONS(1748), + [anon_sym_in] = ACTIONS(1450), + [sym__newline] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_err_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_GT_PIPE] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1450), + [anon_sym_RPAREN] = ACTIONS(1450), + [anon_sym_GT2] = ACTIONS(1448), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_EQ_GT] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1448), + [anon_sym_and2] = ACTIONS(1450), + [anon_sym_xor2] = ACTIONS(1450), + [anon_sym_or2] = ACTIONS(1450), + [anon_sym_not_DASHin2] = ACTIONS(1450), + [anon_sym_has2] = ACTIONS(1450), + [anon_sym_not_DASHhas2] = ACTIONS(1450), + [anon_sym_starts_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1450), + [anon_sym_ends_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1450), + [anon_sym_EQ_EQ2] = ACTIONS(1450), + [anon_sym_BANG_EQ2] = ACTIONS(1450), + [anon_sym_LT2] = ACTIONS(1448), + [anon_sym_LT_EQ2] = ACTIONS(1450), + [anon_sym_GT_EQ2] = ACTIONS(1450), + [anon_sym_EQ_TILDE2] = ACTIONS(1450), + [anon_sym_BANG_TILDE2] = ACTIONS(1450), + [anon_sym_like2] = ACTIONS(1450), + [anon_sym_not_DASHlike2] = ACTIONS(1450), + [anon_sym_STAR_STAR2] = ACTIONS(1450), + [anon_sym_PLUS_PLUS2] = ACTIONS(1450), + [anon_sym_SLASH2] = ACTIONS(1448), + [anon_sym_mod2] = ACTIONS(1450), + [anon_sym_SLASH_SLASH2] = ACTIONS(1450), + [anon_sym_PLUS2] = ACTIONS(1448), + [anon_sym_bit_DASHshl2] = ACTIONS(1450), + [anon_sym_bit_DASHshr2] = ACTIONS(1450), + [anon_sym_bit_DASHand2] = ACTIONS(1450), + [anon_sym_bit_DASHxor2] = ACTIONS(1450), + [anon_sym_bit_DASHor2] = ACTIONS(1450), + [anon_sym_DOT_DOT2] = ACTIONS(1448), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1450), + [anon_sym_COLON2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1448), + [anon_sym_out_GT] = ACTIONS(1448), + [anon_sym_e_GT] = ACTIONS(1448), + [anon_sym_o_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT] = ACTIONS(1448), + [anon_sym_err_GT_GT] = ACTIONS(1450), + [anon_sym_out_GT_GT] = ACTIONS(1450), + [anon_sym_e_GT_GT] = ACTIONS(1450), + [anon_sym_o_GT_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1450), [anon_sym_POUND] = ACTIONS(3), }, [STATE(443)] = { [sym_comment] = STATE(443), - [ts_builtin_sym_end] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1580), - [anon_sym_PLUS_EQ] = ACTIONS(1582), - [anon_sym_DASH_EQ] = ACTIONS(1582), - [anon_sym_STAR_EQ] = ACTIONS(1582), - [anon_sym_SLASH_EQ] = ACTIONS(1582), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1582), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_GT2] = ACTIONS(1580), - [anon_sym_DASH2] = ACTIONS(1580), - [anon_sym_STAR2] = ACTIONS(1580), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1580), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1580), - [anon_sym_SLASH2] = ACTIONS(1580), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1580), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [anon_sym_DOT_DOT2] = ACTIONS(1580), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1582), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1582), - [anon_sym_err_GT] = ACTIONS(1580), - [anon_sym_out_GT] = ACTIONS(1580), - [anon_sym_e_GT] = ACTIONS(1580), - [anon_sym_o_GT] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT] = ACTIONS(1580), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [ts_builtin_sym_end] = ACTIONS(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(444)] = { [sym_comment] = STATE(444), - [anon_sym_in] = ACTIONS(1754), - [sym__newline] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_err_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_GT_PIPE] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_GT2] = ACTIONS(1756), - [anon_sym_DASH2] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_STAR2] = ACTIONS(1756), - [anon_sym_and2] = ACTIONS(1754), - [anon_sym_xor2] = ACTIONS(1754), - [anon_sym_or2] = ACTIONS(1754), - [anon_sym_not_DASHin2] = ACTIONS(1754), - [anon_sym_has2] = ACTIONS(1754), - [anon_sym_not_DASHhas2] = ACTIONS(1754), - [anon_sym_starts_DASHwith2] = ACTIONS(1754), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1754), - [anon_sym_ends_DASHwith2] = ACTIONS(1754), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1754), - [anon_sym_EQ_EQ2] = ACTIONS(1754), - [anon_sym_BANG_EQ2] = ACTIONS(1754), - [anon_sym_LT2] = ACTIONS(1756), - [anon_sym_LT_EQ2] = ACTIONS(1754), - [anon_sym_GT_EQ2] = ACTIONS(1754), - [anon_sym_EQ_TILDE2] = ACTIONS(1754), - [anon_sym_BANG_TILDE2] = ACTIONS(1754), - [anon_sym_like2] = ACTIONS(1754), - [anon_sym_not_DASHlike2] = ACTIONS(1754), - [anon_sym_LPAREN2] = ACTIONS(1754), - [anon_sym_STAR_STAR2] = ACTIONS(1754), - [anon_sym_PLUS_PLUS2] = ACTIONS(1754), - [anon_sym_SLASH2] = ACTIONS(1756), - [anon_sym_mod2] = ACTIONS(1754), - [anon_sym_SLASH_SLASH2] = ACTIONS(1754), - [anon_sym_PLUS2] = ACTIONS(1756), - [anon_sym_bit_DASHshl2] = ACTIONS(1754), - [anon_sym_bit_DASHshr2] = ACTIONS(1754), - [anon_sym_bit_DASHand2] = ACTIONS(1754), - [anon_sym_bit_DASHxor2] = ACTIONS(1754), - [anon_sym_bit_DASHor2] = ACTIONS(1754), - [anon_sym_DOT_DOT2] = ACTIONS(1756), - [anon_sym_DOT] = ACTIONS(1758), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1754), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1754), - [aux_sym__immediate_decimal_token5] = ACTIONS(1760), - [anon_sym_err_GT] = ACTIONS(1756), - [anon_sym_out_GT] = ACTIONS(1756), - [anon_sym_e_GT] = ACTIONS(1756), - [anon_sym_o_GT] = ACTIONS(1756), - [anon_sym_err_PLUSout_GT] = ACTIONS(1756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), - [anon_sym_o_PLUSe_GT] = ACTIONS(1756), - [anon_sym_e_PLUSo_GT] = ACTIONS(1756), - [anon_sym_err_GT_GT] = ACTIONS(1754), - [anon_sym_out_GT_GT] = ACTIONS(1754), - [anon_sym_e_GT_GT] = ACTIONS(1754), - [anon_sym_o_GT_GT] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), - [sym__unquoted_pattern] = ACTIONS(1756), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_in] = ACTIONS(1564), + [sym__newline] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_err_GT_PIPE] = ACTIONS(1564), + [anon_sym_out_GT_PIPE] = ACTIONS(1564), + [anon_sym_e_GT_PIPE] = ACTIONS(1564), + [anon_sym_o_GT_PIPE] = ACTIONS(1564), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1564), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1564), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1564), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(1564), + [anon_sym_GT2] = ACTIONS(1562), + [anon_sym_DASH2] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_EQ_GT] = ACTIONS(1564), + [anon_sym_STAR2] = ACTIONS(1562), + [anon_sym_and2] = ACTIONS(1564), + [anon_sym_xor2] = ACTIONS(1564), + [anon_sym_or2] = ACTIONS(1564), + [anon_sym_not_DASHin2] = ACTIONS(1564), + [anon_sym_has2] = ACTIONS(1564), + [anon_sym_not_DASHhas2] = ACTIONS(1564), + [anon_sym_starts_DASHwith2] = ACTIONS(1564), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1564), + [anon_sym_ends_DASHwith2] = ACTIONS(1564), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1564), + [anon_sym_EQ_EQ2] = ACTIONS(1564), + [anon_sym_BANG_EQ2] = ACTIONS(1564), + [anon_sym_LT2] = ACTIONS(1562), + [anon_sym_LT_EQ2] = ACTIONS(1564), + [anon_sym_GT_EQ2] = ACTIONS(1564), + [anon_sym_EQ_TILDE2] = ACTIONS(1564), + [anon_sym_BANG_TILDE2] = ACTIONS(1564), + [anon_sym_like2] = ACTIONS(1564), + [anon_sym_not_DASHlike2] = ACTIONS(1564), + [anon_sym_STAR_STAR2] = ACTIONS(1564), + [anon_sym_PLUS_PLUS2] = ACTIONS(1564), + [anon_sym_SLASH2] = ACTIONS(1562), + [anon_sym_mod2] = ACTIONS(1564), + [anon_sym_SLASH_SLASH2] = ACTIONS(1564), + [anon_sym_PLUS2] = ACTIONS(1562), + [anon_sym_bit_DASHshl2] = ACTIONS(1564), + [anon_sym_bit_DASHshr2] = ACTIONS(1564), + [anon_sym_bit_DASHand2] = ACTIONS(1564), + [anon_sym_bit_DASHxor2] = ACTIONS(1564), + [anon_sym_bit_DASHor2] = ACTIONS(1564), + [anon_sym_DOT_DOT2] = ACTIONS(1562), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1564), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1564), + [anon_sym_COLON2] = ACTIONS(1564), + [anon_sym_DOT2] = ACTIONS(1562), + [anon_sym_err_GT] = ACTIONS(1562), + [anon_sym_out_GT] = ACTIONS(1562), + [anon_sym_e_GT] = ACTIONS(1562), + [anon_sym_o_GT] = ACTIONS(1562), + [anon_sym_err_PLUSout_GT] = ACTIONS(1562), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1562), + [anon_sym_o_PLUSe_GT] = ACTIONS(1562), + [anon_sym_e_PLUSo_GT] = ACTIONS(1562), + [anon_sym_err_GT_GT] = ACTIONS(1564), + [anon_sym_out_GT_GT] = ACTIONS(1564), + [anon_sym_e_GT_GT] = ACTIONS(1564), + [anon_sym_o_GT_GT] = ACTIONS(1564), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1564), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1564), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1564), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1564), [anon_sym_POUND] = ACTIONS(3), }, [STATE(445)] = { + [sym__expr_parenthesized_immediate] = STATE(1315), + [sym__immediate_decimal] = STATE(1340), + [sym_val_variable] = STATE(1315), [sym_comment] = STATE(445), - [anon_sym_EQ] = ACTIONS(1627), - [anon_sym_PLUS_EQ] = ACTIONS(1714), - [anon_sym_DASH_EQ] = ACTIONS(1714), - [anon_sym_STAR_EQ] = ACTIONS(1714), - [anon_sym_SLASH_EQ] = ACTIONS(1714), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1716), - [sym__newline] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_err_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_GT_PIPE] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), - [anon_sym_GT2] = ACTIONS(1629), - [anon_sym_DASH2] = ACTIONS(1629), - [anon_sym_RBRACE] = ACTIONS(1716), - [anon_sym_STAR2] = ACTIONS(1629), - [anon_sym_and2] = ACTIONS(1716), - [anon_sym_xor2] = ACTIONS(1716), - [anon_sym_or2] = ACTIONS(1716), - [anon_sym_not_DASHin2] = ACTIONS(1716), - [anon_sym_has2] = ACTIONS(1716), - [anon_sym_not_DASHhas2] = ACTIONS(1716), - [anon_sym_starts_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), - [anon_sym_ends_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), - [anon_sym_EQ_EQ2] = ACTIONS(1716), - [anon_sym_BANG_EQ2] = ACTIONS(1716), - [anon_sym_LT2] = ACTIONS(1629), - [anon_sym_LT_EQ2] = ACTIONS(1716), - [anon_sym_GT_EQ2] = ACTIONS(1716), - [anon_sym_EQ_TILDE2] = ACTIONS(1716), - [anon_sym_BANG_TILDE2] = ACTIONS(1716), - [anon_sym_like2] = ACTIONS(1716), - [anon_sym_not_DASHlike2] = ACTIONS(1716), - [anon_sym_STAR_STAR2] = ACTIONS(1716), - [anon_sym_PLUS_PLUS2] = ACTIONS(1629), - [anon_sym_SLASH2] = ACTIONS(1629), - [anon_sym_mod2] = ACTIONS(1716), - [anon_sym_SLASH_SLASH2] = ACTIONS(1716), - [anon_sym_PLUS2] = ACTIONS(1629), - [anon_sym_bit_DASHshl2] = ACTIONS(1716), - [anon_sym_bit_DASHshr2] = ACTIONS(1716), - [anon_sym_bit_DASHand2] = ACTIONS(1716), - [anon_sym_bit_DASHxor2] = ACTIONS(1716), - [anon_sym_bit_DASHor2] = ACTIONS(1716), - [anon_sym_DOT_DOT2] = ACTIONS(1633), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), - [anon_sym_err_GT] = ACTIONS(1629), - [anon_sym_out_GT] = ACTIONS(1629), - [anon_sym_e_GT] = ACTIONS(1629), - [anon_sym_o_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT] = ACTIONS(1629), - [anon_sym_err_GT_GT] = ACTIONS(1716), - [anon_sym_out_GT_GT] = ACTIONS(1716), - [anon_sym_e_GT_GT] = ACTIONS(1716), - [anon_sym_o_GT_GT] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), + [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(446)] = { - [sym__expr_parenthesized_immediate] = STATE(1290), - [sym__immediate_decimal] = STATE(1291), - [sym_val_variable] = STATE(1290), [sym_comment] = STATE(446), - [ts_builtin_sym_end] = ACTIONS(1617), - [anon_sym_in] = ACTIONS(1617), - [sym__newline] = ACTIONS(1617), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_err_GT_PIPE] = ACTIONS(1617), - [anon_sym_out_GT_PIPE] = ACTIONS(1617), - [anon_sym_e_GT_PIPE] = ACTIONS(1617), - [anon_sym_o_GT_PIPE] = ACTIONS(1617), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1617), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1617), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1617), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1617), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1617), - [anon_sym_xor2] = ACTIONS(1617), - [anon_sym_or2] = ACTIONS(1617), - [anon_sym_not_DASHin2] = ACTIONS(1617), - [anon_sym_has2] = ACTIONS(1617), - [anon_sym_not_DASHhas2] = ACTIONS(1617), - [anon_sym_starts_DASHwith2] = ACTIONS(1617), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1617), - [anon_sym_ends_DASHwith2] = ACTIONS(1617), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1617), - [anon_sym_EQ_EQ2] = ACTIONS(1617), - [anon_sym_BANG_EQ2] = ACTIONS(1617), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1617), - [anon_sym_GT_EQ2] = ACTIONS(1617), - [anon_sym_EQ_TILDE2] = ACTIONS(1617), - [anon_sym_BANG_TILDE2] = ACTIONS(1617), - [anon_sym_like2] = ACTIONS(1617), - [anon_sym_not_DASHlike2] = ACTIONS(1617), - [anon_sym_LPAREN2] = ACTIONS(1653), - [anon_sym_STAR_STAR2] = ACTIONS(1617), - [anon_sym_PLUS_PLUS2] = ACTIONS(1617), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1617), - [anon_sym_SLASH_SLASH2] = ACTIONS(1617), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1617), - [anon_sym_bit_DASHshr2] = ACTIONS(1617), - [anon_sym_bit_DASHand2] = ACTIONS(1617), - [anon_sym_bit_DASHxor2] = ACTIONS(1617), - [anon_sym_bit_DASHor2] = ACTIONS(1617), - [aux_sym__immediate_decimal_token1] = ACTIONS(1730), - [aux_sym__immediate_decimal_token2] = ACTIONS(1730), - [aux_sym__immediate_decimal_token3] = ACTIONS(1659), - [aux_sym__immediate_decimal_token4] = ACTIONS(1659), - [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(1617), - [anon_sym_out_GT_GT] = ACTIONS(1617), - [anon_sym_e_GT_GT] = ACTIONS(1617), - [anon_sym_o_GT_GT] = ACTIONS(1617), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1617), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1617), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1617), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1617), + [anon_sym_in] = ACTIONS(773), + [sym__newline] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_err_GT_PIPE] = ACTIONS(773), + [anon_sym_out_GT_PIPE] = ACTIONS(773), + [anon_sym_e_GT_PIPE] = ACTIONS(773), + [anon_sym_o_GT_PIPE] = ACTIONS(773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(773), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(773), + [anon_sym_xor2] = ACTIONS(773), + [anon_sym_or2] = ACTIONS(773), + [anon_sym_not_DASHin2] = ACTIONS(773), + [anon_sym_has2] = ACTIONS(773), + [anon_sym_not_DASHhas2] = ACTIONS(773), + [anon_sym_starts_DASHwith2] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), + [anon_sym_ends_DASHwith2] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), + [anon_sym_EQ_EQ2] = ACTIONS(773), + [anon_sym_BANG_EQ2] = ACTIONS(773), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(773), + [anon_sym_GT_EQ2] = ACTIONS(773), + [anon_sym_EQ_TILDE2] = ACTIONS(773), + [anon_sym_BANG_TILDE2] = ACTIONS(773), + [anon_sym_like2] = ACTIONS(773), + [anon_sym_not_DASHlike2] = ACTIONS(773), + [anon_sym_LPAREN2] = ACTIONS(773), + [anon_sym_STAR_STAR2] = ACTIONS(773), + [anon_sym_PLUS_PLUS2] = ACTIONS(773), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(773), + [anon_sym_SLASH_SLASH2] = ACTIONS(773), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(773), + [anon_sym_bit_DASHshr2] = ACTIONS(773), + [anon_sym_bit_DASHand2] = ACTIONS(773), + [anon_sym_bit_DASHxor2] = ACTIONS(773), + [anon_sym_bit_DASHor2] = ACTIONS(773), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(773), + [anon_sym_out_GT_GT] = ACTIONS(773), + [anon_sym_e_GT_GT] = ACTIONS(773), + [anon_sym_o_GT_GT] = ACTIONS(773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), + [sym__unquoted_pattern] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(3), }, [STATE(447)] = { - [sym__expr_parenthesized_immediate] = STATE(1296), - [sym__immediate_decimal] = STATE(1297), - [sym_val_variable] = STATE(1296), [sym_comment] = STATE(447), - [ts_builtin_sym_end] = ACTIONS(1661), - [anon_sym_in] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_GT2] = ACTIONS(1663), - [anon_sym_DASH2] = ACTIONS(1663), - [anon_sym_STAR2] = ACTIONS(1663), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_has2] = ACTIONS(1661), - [anon_sym_not_DASHhas2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1663), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_like2] = ACTIONS(1661), - [anon_sym_not_DASHlike2] = ACTIONS(1661), - [anon_sym_LPAREN2] = ACTIONS(1653), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1663), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1663), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [aux_sym__immediate_decimal_token1] = ACTIONS(1730), - [aux_sym__immediate_decimal_token2] = ACTIONS(1730), - [aux_sym__immediate_decimal_token3] = ACTIONS(1659), - [aux_sym__immediate_decimal_token4] = ACTIONS(1659), - [anon_sym_err_GT] = ACTIONS(1663), - [anon_sym_out_GT] = ACTIONS(1663), - [anon_sym_e_GT] = ACTIONS(1663), - [anon_sym_o_GT] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT] = ACTIONS(1663), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [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(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_RPAREN] = ACTIONS(1539), - [anon_sym_GT2] = ACTIONS(1537), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_EQ_GT] = ACTIONS(1539), - [anon_sym_STAR2] = ACTIONS(1537), - [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(1537), - [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(1537), - [anon_sym_mod2] = ACTIONS(1539), - [anon_sym_SLASH_SLASH2] = ACTIONS(1539), - [anon_sym_PLUS2] = ACTIONS(1537), - [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(1537), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1539), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1539), - [anon_sym_COLON2] = ACTIONS(1539), - [anon_sym_DOT2] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1537), - [anon_sym_out_GT] = ACTIONS(1537), - [anon_sym_e_GT] = ACTIONS(1537), - [anon_sym_o_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT] = ACTIONS(1537), - [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_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__expr_parenthesized_immediate] = STATE(1298), - [sym__immediate_decimal] = STATE(1299), - [sym_val_variable] = STATE(1298), [sym_comment] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_GT2] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1671), - [anon_sym_STAR2] = ACTIONS(1671), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_has2] = ACTIONS(1669), - [anon_sym_not_DASHhas2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1671), - [anon_sym_LT_EQ2] = ACTIONS(1669), - [anon_sym_GT_EQ2] = ACTIONS(1669), - [anon_sym_EQ_TILDE2] = ACTIONS(1669), - [anon_sym_BANG_TILDE2] = ACTIONS(1669), - [anon_sym_like2] = ACTIONS(1669), - [anon_sym_not_DASHlike2] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1653), - [anon_sym_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1671), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1671), - [anon_sym_bit_DASHshl2] = ACTIONS(1669), - [anon_sym_bit_DASHshr2] = ACTIONS(1669), - [anon_sym_bit_DASHand2] = ACTIONS(1669), - [anon_sym_bit_DASHxor2] = ACTIONS(1669), - [anon_sym_bit_DASHor2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token1] = ACTIONS(1730), - [aux_sym__immediate_decimal_token2] = ACTIONS(1730), - [aux_sym__immediate_decimal_token3] = ACTIONS(1659), - [aux_sym__immediate_decimal_token4] = ACTIONS(1659), - [anon_sym_err_GT] = ACTIONS(1671), - [anon_sym_out_GT] = ACTIONS(1671), - [anon_sym_e_GT] = ACTIONS(1671), - [anon_sym_o_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT] = ACTIONS(1671), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(450)] = { - [sym_comment] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(749), [sym__newline] = ACTIONS(749), [anon_sym_SEMI] = ACTIONS(749), @@ -82817,8 +83060,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(749), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(749), + [anon_sym_RBRACE] = ACTIONS(749), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(749), [anon_sym_xor2] = ACTIONS(749), @@ -82852,10 +83097,9 @@ 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(1762), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token5] = ACTIONS(1764), + [aux_sym__immediate_decimal_token5] = ACTIONS(1705), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -82877,478 +83121,705 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__expr_parenthesized_immediate] = STATE(4712), [sym_comment] = STATE(451), - [anon_sym_in] = ACTIONS(884), - [sym__newline] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_err_GT_PIPE] = ACTIONS(884), - [anon_sym_out_GT_PIPE] = ACTIONS(884), - [anon_sym_e_GT_PIPE] = ACTIONS(884), - [anon_sym_o_GT_PIPE] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(884), - [anon_sym_GT2] = ACTIONS(858), - [anon_sym_DASH2] = ACTIONS(884), - [anon_sym_RBRACE] = ACTIONS(884), - [anon_sym_STAR2] = ACTIONS(858), - [anon_sym_and2] = ACTIONS(884), - [anon_sym_xor2] = ACTIONS(884), - [anon_sym_or2] = ACTIONS(884), - [anon_sym_not_DASHin2] = ACTIONS(884), - [anon_sym_has2] = ACTIONS(884), - [anon_sym_not_DASHhas2] = ACTIONS(884), - [anon_sym_starts_DASHwith2] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(884), - [anon_sym_ends_DASHwith2] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(884), - [anon_sym_EQ_EQ2] = ACTIONS(884), - [anon_sym_BANG_EQ2] = ACTIONS(884), - [anon_sym_LT2] = ACTIONS(858), - [anon_sym_LT_EQ2] = ACTIONS(884), - [anon_sym_GT_EQ2] = ACTIONS(884), - [anon_sym_EQ_TILDE2] = ACTIONS(884), - [anon_sym_BANG_TILDE2] = ACTIONS(884), - [anon_sym_like2] = ACTIONS(884), - [anon_sym_not_DASHlike2] = ACTIONS(884), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(884), - [anon_sym_PLUS_PLUS2] = ACTIONS(884), - [anon_sym_SLASH2] = ACTIONS(858), - [anon_sym_mod2] = ACTIONS(884), - [anon_sym_SLASH_SLASH2] = ACTIONS(884), - [anon_sym_PLUS2] = ACTIONS(858), - [anon_sym_bit_DASHshl2] = ACTIONS(884), - [anon_sym_bit_DASHshr2] = ACTIONS(884), - [anon_sym_bit_DASHand2] = ACTIONS(884), - [anon_sym_bit_DASHxor2] = ACTIONS(884), - [anon_sym_bit_DASHor2] = ACTIONS(884), - [anon_sym_DOT_DOT2] = ACTIONS(1768), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1770), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1770), - [sym_filesize_unit] = ACTIONS(1772), - [sym_duration_unit] = ACTIONS(1774), - [anon_sym_err_GT] = ACTIONS(858), - [anon_sym_out_GT] = ACTIONS(858), - [anon_sym_e_GT] = ACTIONS(858), - [anon_sym_o_GT] = ACTIONS(858), - [anon_sym_err_PLUSout_GT] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT] = ACTIONS(858), - [anon_sym_o_PLUSe_GT] = ACTIONS(858), - [anon_sym_e_PLUSo_GT] = ACTIONS(858), - [anon_sym_err_GT_GT] = ACTIONS(884), - [anon_sym_out_GT_GT] = ACTIONS(884), - [anon_sym_e_GT_GT] = ACTIONS(884), - [anon_sym_o_GT_GT] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), - [sym__unquoted_pattern] = ACTIONS(1776), + [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), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_in] = ACTIONS(1543), - [sym__newline] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_PIPE] = ACTIONS(1543), - [anon_sym_err_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_GT_PIPE] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1543), - [anon_sym_RPAREN] = ACTIONS(1543), - [anon_sym_GT2] = ACTIONS(1541), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_EQ_GT] = ACTIONS(1543), - [anon_sym_STAR2] = ACTIONS(1541), - [anon_sym_and2] = ACTIONS(1543), - [anon_sym_xor2] = ACTIONS(1543), - [anon_sym_or2] = ACTIONS(1543), - [anon_sym_not_DASHin2] = ACTIONS(1543), - [anon_sym_has2] = ACTIONS(1543), - [anon_sym_not_DASHhas2] = ACTIONS(1543), - [anon_sym_starts_DASHwith2] = ACTIONS(1543), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1543), - [anon_sym_ends_DASHwith2] = ACTIONS(1543), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1543), - [anon_sym_EQ_EQ2] = ACTIONS(1543), - [anon_sym_BANG_EQ2] = ACTIONS(1543), - [anon_sym_LT2] = ACTIONS(1541), - [anon_sym_LT_EQ2] = ACTIONS(1543), - [anon_sym_GT_EQ2] = ACTIONS(1543), - [anon_sym_EQ_TILDE2] = ACTIONS(1543), - [anon_sym_BANG_TILDE2] = ACTIONS(1543), - [anon_sym_like2] = ACTIONS(1543), - [anon_sym_not_DASHlike2] = ACTIONS(1543), - [anon_sym_STAR_STAR2] = ACTIONS(1543), - [anon_sym_PLUS_PLUS2] = ACTIONS(1543), - [anon_sym_SLASH2] = ACTIONS(1541), - [anon_sym_mod2] = ACTIONS(1543), - [anon_sym_SLASH_SLASH2] = ACTIONS(1543), - [anon_sym_PLUS2] = ACTIONS(1541), - [anon_sym_bit_DASHshl2] = ACTIONS(1543), - [anon_sym_bit_DASHshr2] = ACTIONS(1543), - [anon_sym_bit_DASHand2] = ACTIONS(1543), - [anon_sym_bit_DASHxor2] = ACTIONS(1543), - [anon_sym_bit_DASHor2] = ACTIONS(1543), - [anon_sym_DOT_DOT2] = ACTIONS(1541), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1543), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1543), - [anon_sym_COLON2] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1541), - [anon_sym_err_GT] = ACTIONS(1541), - [anon_sym_out_GT] = ACTIONS(1541), - [anon_sym_e_GT] = ACTIONS(1541), - [anon_sym_o_GT] = ACTIONS(1541), - [anon_sym_err_PLUSout_GT] = ACTIONS(1541), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1541), - [anon_sym_o_PLUSe_GT] = ACTIONS(1541), - [anon_sym_e_PLUSo_GT] = ACTIONS(1541), - [anon_sym_err_GT_GT] = ACTIONS(1543), - [anon_sym_out_GT_GT] = ACTIONS(1543), - [anon_sym_e_GT_GT] = ACTIONS(1543), - [anon_sym_o_GT_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(453)] = { - [sym__expr_parenthesized_immediate] = STATE(1294), - [sym__immediate_decimal] = STATE(1305), - [sym_val_variable] = STATE(1294), - [sym_comment] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(1599), - [anon_sym_in] = ACTIONS(1599), - [sym__newline] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1599), - [anon_sym_err_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_GT_PIPE] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_GT2] = ACTIONS(1603), - [anon_sym_DASH2] = ACTIONS(1603), - [anon_sym_STAR2] = ACTIONS(1603), - [anon_sym_and2] = ACTIONS(1599), - [anon_sym_xor2] = ACTIONS(1599), - [anon_sym_or2] = ACTIONS(1599), - [anon_sym_not_DASHin2] = ACTIONS(1599), - [anon_sym_has2] = ACTIONS(1599), - [anon_sym_not_DASHhas2] = ACTIONS(1599), - [anon_sym_starts_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1599), - [anon_sym_ends_DASHwith2] = ACTIONS(1599), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1599), - [anon_sym_EQ_EQ2] = ACTIONS(1599), - [anon_sym_BANG_EQ2] = ACTIONS(1599), - [anon_sym_LT2] = ACTIONS(1603), - [anon_sym_LT_EQ2] = ACTIONS(1599), - [anon_sym_GT_EQ2] = ACTIONS(1599), - [anon_sym_EQ_TILDE2] = ACTIONS(1599), - [anon_sym_BANG_TILDE2] = ACTIONS(1599), - [anon_sym_like2] = ACTIONS(1599), - [anon_sym_not_DASHlike2] = ACTIONS(1599), - [anon_sym_LPAREN2] = ACTIONS(1653), - [anon_sym_STAR_STAR2] = ACTIONS(1599), - [anon_sym_PLUS_PLUS2] = ACTIONS(1599), - [anon_sym_SLASH2] = ACTIONS(1603), - [anon_sym_mod2] = ACTIONS(1599), - [anon_sym_SLASH_SLASH2] = ACTIONS(1599), - [anon_sym_PLUS2] = ACTIONS(1603), - [anon_sym_bit_DASHshl2] = ACTIONS(1599), - [anon_sym_bit_DASHshr2] = ACTIONS(1599), - [anon_sym_bit_DASHand2] = ACTIONS(1599), - [anon_sym_bit_DASHxor2] = ACTIONS(1599), - [anon_sym_bit_DASHor2] = ACTIONS(1599), - [aux_sym__immediate_decimal_token1] = ACTIONS(1730), - [aux_sym__immediate_decimal_token2] = ACTIONS(1730), - [aux_sym__immediate_decimal_token3] = ACTIONS(1659), - [aux_sym__immediate_decimal_token4] = ACTIONS(1659), - [anon_sym_err_GT] = ACTIONS(1603), - [anon_sym_out_GT] = ACTIONS(1603), - [anon_sym_e_GT] = ACTIONS(1603), - [anon_sym_o_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT] = ACTIONS(1603), - [anon_sym_err_GT_GT] = ACTIONS(1599), - [anon_sym_out_GT_GT] = ACTIONS(1599), - [anon_sym_e_GT_GT] = ACTIONS(1599), - [anon_sym_o_GT_GT] = ACTIONS(1599), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(454)] = { - [sym_comment] = STATE(454), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [sym__newline] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_PIPE] = ACTIONS(1535), - [anon_sym_err_GT_PIPE] = ACTIONS(1535), - [anon_sym_out_GT_PIPE] = ACTIONS(1535), - [anon_sym_e_GT_PIPE] = ACTIONS(1535), - [anon_sym_o_GT_PIPE] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), - [anon_sym_RPAREN] = ACTIONS(1535), - [anon_sym_GT2] = ACTIONS(1533), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_EQ_GT] = ACTIONS(1535), - [anon_sym_STAR2] = ACTIONS(1533), - [anon_sym_and2] = ACTIONS(1535), - [anon_sym_xor2] = ACTIONS(1535), - [anon_sym_or2] = ACTIONS(1535), - [anon_sym_not_DASHin2] = ACTIONS(1535), - [anon_sym_has2] = ACTIONS(1535), - [anon_sym_not_DASHhas2] = ACTIONS(1535), - [anon_sym_starts_DASHwith2] = ACTIONS(1535), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), - [anon_sym_ends_DASHwith2] = ACTIONS(1535), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), - [anon_sym_EQ_EQ2] = ACTIONS(1535), - [anon_sym_BANG_EQ2] = ACTIONS(1535), - [anon_sym_LT2] = ACTIONS(1533), - [anon_sym_LT_EQ2] = ACTIONS(1535), - [anon_sym_GT_EQ2] = ACTIONS(1535), - [anon_sym_EQ_TILDE2] = ACTIONS(1535), - [anon_sym_BANG_TILDE2] = ACTIONS(1535), - [anon_sym_like2] = ACTIONS(1535), - [anon_sym_not_DASHlike2] = ACTIONS(1535), - [anon_sym_STAR_STAR2] = ACTIONS(1535), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1533), - [anon_sym_mod2] = ACTIONS(1535), - [anon_sym_SLASH_SLASH2] = ACTIONS(1535), - [anon_sym_PLUS2] = ACTIONS(1533), - [anon_sym_bit_DASHshl2] = ACTIONS(1535), - [anon_sym_bit_DASHshr2] = ACTIONS(1535), - [anon_sym_bit_DASHand2] = ACTIONS(1535), - [anon_sym_bit_DASHxor2] = ACTIONS(1535), - [anon_sym_bit_DASHor2] = ACTIONS(1535), - [anon_sym_DOT_DOT2] = ACTIONS(1533), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1535), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1535), - [anon_sym_COLON2] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1533), - [anon_sym_err_GT] = ACTIONS(1533), - [anon_sym_out_GT] = ACTIONS(1533), - [anon_sym_e_GT] = ACTIONS(1533), - [anon_sym_o_GT] = ACTIONS(1533), - [anon_sym_err_PLUSout_GT] = ACTIONS(1533), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1533), - [anon_sym_o_PLUSe_GT] = ACTIONS(1533), - [anon_sym_e_PLUSo_GT] = ACTIONS(1533), - [anon_sym_err_GT_GT] = ACTIONS(1535), - [anon_sym_out_GT_GT] = ACTIONS(1535), - [anon_sym_e_GT_GT] = ACTIONS(1535), - [anon_sym_o_GT_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(3), + [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), - [anon_sym_in] = ACTIONS(1754), - [sym__newline] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_err_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_GT_PIPE] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_GT2] = ACTIONS(1756), - [anon_sym_DASH2] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_STAR2] = ACTIONS(1756), - [anon_sym_and2] = ACTIONS(1754), - [anon_sym_xor2] = ACTIONS(1754), - [anon_sym_or2] = ACTIONS(1754), - [anon_sym_not_DASHin2] = ACTIONS(1754), - [anon_sym_has2] = ACTIONS(1754), - [anon_sym_not_DASHhas2] = ACTIONS(1754), - [anon_sym_starts_DASHwith2] = ACTIONS(1754), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1754), - [anon_sym_ends_DASHwith2] = ACTIONS(1754), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1754), - [anon_sym_EQ_EQ2] = ACTIONS(1754), - [anon_sym_BANG_EQ2] = ACTIONS(1754), - [anon_sym_LT2] = ACTIONS(1756), - [anon_sym_LT_EQ2] = ACTIONS(1754), - [anon_sym_GT_EQ2] = ACTIONS(1754), - [anon_sym_EQ_TILDE2] = ACTIONS(1754), - [anon_sym_BANG_TILDE2] = ACTIONS(1754), - [anon_sym_like2] = ACTIONS(1754), - [anon_sym_not_DASHlike2] = ACTIONS(1754), - [anon_sym_LPAREN2] = ACTIONS(1754), - [anon_sym_STAR_STAR2] = ACTIONS(1754), - [anon_sym_PLUS_PLUS2] = ACTIONS(1754), - [anon_sym_SLASH2] = ACTIONS(1756), - [anon_sym_mod2] = ACTIONS(1754), - [anon_sym_SLASH_SLASH2] = ACTIONS(1754), - [anon_sym_PLUS2] = ACTIONS(1756), - [anon_sym_bit_DASHshl2] = ACTIONS(1754), - [anon_sym_bit_DASHshr2] = ACTIONS(1754), - [anon_sym_bit_DASHand2] = ACTIONS(1754), - [anon_sym_bit_DASHxor2] = ACTIONS(1754), - [anon_sym_bit_DASHor2] = ACTIONS(1754), - [anon_sym_DOT_DOT2] = ACTIONS(1756), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1754), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1754), - [aux_sym__immediate_decimal_token5] = ACTIONS(1760), - [anon_sym_err_GT] = ACTIONS(1756), - [anon_sym_out_GT] = ACTIONS(1756), - [anon_sym_e_GT] = ACTIONS(1756), - [anon_sym_o_GT] = ACTIONS(1756), - [anon_sym_err_PLUSout_GT] = ACTIONS(1756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), - [anon_sym_o_PLUSe_GT] = ACTIONS(1756), - [anon_sym_e_PLUSo_GT] = ACTIONS(1756), - [anon_sym_err_GT_GT] = ACTIONS(1754), - [anon_sym_out_GT_GT] = ACTIONS(1754), - [anon_sym_e_GT_GT] = ACTIONS(1754), - [anon_sym_o_GT_GT] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), - [sym__unquoted_pattern] = ACTIONS(1756), + [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_cmd_identifier] = STATE(4141), - [sym__match_pattern_record_body] = STATE(5250), - [sym_expr_parenthesized] = STATE(5138), - [sym__spread_parenthesized] = STATE(4677), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(4143), - [sym_val_number] = STATE(5138), - [sym__val_number_decimal] = STATE(1947), - [sym__val_number] = STATE(700), - [sym_val_string] = STATE(5138), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_interpolated] = STATE(5138), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym__spread_record] = STATE(4677), - [sym_record_entry] = STATE(4657), - [sym__record_key] = STATE(4944), + [sym__expr_parenthesized_immediate] = STATE(1279), + [sym__immediate_decimal] = STATE(1282), + [sym_val_variable] = STATE(1279), [sym_comment] = STATE(456), - [aux_sym__types_body_repeat1] = STATE(529), - [aux_sym__match_pattern_record_body_repeat1] = STATE(785), - [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(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1780), - [aux_sym_cmd_identifier_token4] = ACTIONS(1780), - [aux_sym_cmd_identifier_token5] = ACTIONS(1780), - [sym__newline] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1786), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), - [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(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [ts_builtin_sym_end] = ACTIONS(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), - [sym_raw_string_begin] = ACTIONS(1802), }, [STATE(457)] = { - [sym_cmd_identifier] = STATE(4141), - [sym_expr_parenthesized] = STATE(5138), - [sym__spread_parenthesized] = STATE(4677), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(5138), - [sym_val_number] = STATE(5138), - [sym__val_number_decimal] = STATE(1947), - [sym__val_number] = STATE(700), - [sym_val_string] = STATE(5138), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_interpolated] = STATE(5138), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym__spread_record] = STATE(4677), - [sym_record_body] = STATE(5145), - [sym_record_entry] = STATE(4651), - [sym__record_key] = STATE(4944), + [sym__expr_parenthesized_immediate] = STATE(1299), + [sym__immediate_decimal] = STATE(1312), + [sym_val_variable] = STATE(1299), [sym_comment] = STATE(457), - [aux_sym__types_body_repeat1] = STATE(642), - [aux_sym_record_body_repeat1] = STATE(850), + [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), @@ -83369,60 +83840,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1780), - [aux_sym_cmd_identifier_token4] = ACTIONS(1780), - [aux_sym_cmd_identifier_token5] = ACTIONS(1780), - [sym__newline] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1804), + [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(1806), + [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(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [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(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), + [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(1802), + [sym_raw_string_begin] = ACTIONS(1806), }, - [STATE(458)] = { - [sym_cmd_identifier] = STATE(4141), - [sym_expr_parenthesized] = STATE(5138), - [sym__spread_parenthesized] = STATE(4677), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(5138), - [sym_val_number] = STATE(5138), - [sym__val_number_decimal] = STATE(1947), - [sym__val_number] = STATE(700), - [sym_val_string] = STATE(5138), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_interpolated] = STATE(5138), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym__spread_record] = STATE(4677), - [sym_record_body] = STATE(5216), - [sym_record_entry] = STATE(4651), - [sym__record_key] = STATE(4944), - [sym_comment] = STATE(458), - [aux_sym__types_body_repeat1] = STATE(642), - [aux_sym_record_body_repeat1] = STATE(850), + [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), @@ -83443,112 +83914,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1780), - [aux_sym_cmd_identifier_token4] = ACTIONS(1780), - [aux_sym_cmd_identifier_token5] = ACTIONS(1780), - [sym__newline] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1804), + [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(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [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(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), + [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(1802), - }, - [STATE(459)] = { - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4550), - [sym__spread_list] = STATE(4821), - [sym_val_entry] = STATE(4521), - [sym_val_record] = STATE(4550), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), - [sym_comment] = STATE(459), - [aux_sym__types_body_repeat1] = STATE(2120), - [aux_sym_list_body_repeat1] = STATE(508), - [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(1568), - [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), + [sym_raw_string_begin] = ACTIONS(1806), }, - [STATE(460)] = { - [sym_comment] = STATE(460), + [STATE(461)] = { + [sym_comment] = STATE(461), [anon_sym_in] = ACTIONS(741), [sym__newline] = ACTIONS(741), [anon_sym_SEMI] = ACTIONS(741), @@ -83621,30 +84018,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(461)] = { - [sym_cmd_identifier] = STATE(4141), - [sym__match_pattern_record_body] = STATE(5069), - [sym_expr_parenthesized] = STATE(5138), - [sym__spread_parenthesized] = STATE(4677), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(4143), - [sym_val_number] = STATE(5138), - [sym__val_number_decimal] = STATE(1947), - [sym__val_number] = STATE(700), - [sym_val_string] = STATE(5138), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_interpolated] = STATE(5138), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym__spread_record] = STATE(4677), - [sym_record_entry] = STATE(4657), - [sym__record_key] = STATE(4944), - [sym_comment] = STATE(461), - [aux_sym__types_body_repeat1] = STATE(529), - [aux_sym__match_pattern_record_body_repeat1] = STATE(785), + [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), @@ -83665,134 +84062,356 @@ 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(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1780), - [aux_sym_cmd_identifier_token4] = ACTIONS(1780), - [aux_sym_cmd_identifier_token5] = ACTIONS(1780), - [sym__newline] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1786), + [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(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [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(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), + [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(1802), - }, - [STATE(462)] = { - [sym_comment] = STATE(462), - [anon_sym_in] = ACTIONS(1812), - [sym__newline] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_err_GT_PIPE] = ACTIONS(1812), - [anon_sym_out_GT_PIPE] = ACTIONS(1812), - [anon_sym_e_GT_PIPE] = ACTIONS(1812), - [anon_sym_o_GT_PIPE] = ACTIONS(1812), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1812), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1812), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1812), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_GT2] = ACTIONS(1814), - [anon_sym_DASH2] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1812), - [anon_sym_STAR2] = ACTIONS(1814), - [anon_sym_and2] = ACTIONS(1812), - [anon_sym_xor2] = ACTIONS(1812), - [anon_sym_or2] = ACTIONS(1812), - [anon_sym_not_DASHin2] = ACTIONS(1812), - [anon_sym_has2] = ACTIONS(1812), - [anon_sym_not_DASHhas2] = ACTIONS(1812), - [anon_sym_starts_DASHwith2] = ACTIONS(1812), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1812), - [anon_sym_ends_DASHwith2] = ACTIONS(1812), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1812), - [anon_sym_EQ_EQ2] = ACTIONS(1812), - [anon_sym_BANG_EQ2] = ACTIONS(1812), - [anon_sym_LT2] = ACTIONS(1814), - [anon_sym_LT_EQ2] = ACTIONS(1812), - [anon_sym_GT_EQ2] = ACTIONS(1812), - [anon_sym_EQ_TILDE2] = ACTIONS(1812), - [anon_sym_BANG_TILDE2] = ACTIONS(1812), - [anon_sym_like2] = ACTIONS(1812), - [anon_sym_not_DASHlike2] = ACTIONS(1812), - [anon_sym_LPAREN2] = ACTIONS(1812), - [anon_sym_STAR_STAR2] = ACTIONS(1812), - [anon_sym_PLUS_PLUS2] = ACTIONS(1812), - [anon_sym_SLASH2] = ACTIONS(1814), - [anon_sym_mod2] = ACTIONS(1812), - [anon_sym_SLASH_SLASH2] = ACTIONS(1812), - [anon_sym_PLUS2] = ACTIONS(1814), - [anon_sym_bit_DASHshl2] = ACTIONS(1812), - [anon_sym_bit_DASHshr2] = ACTIONS(1812), - [anon_sym_bit_DASHand2] = ACTIONS(1812), - [anon_sym_bit_DASHxor2] = ACTIONS(1812), - [anon_sym_bit_DASHor2] = ACTIONS(1812), - [anon_sym_DOT_DOT2] = ACTIONS(1814), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1812), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1812), - [aux_sym__immediate_decimal_token5] = ACTIONS(1816), - [anon_sym_err_GT] = ACTIONS(1814), - [anon_sym_out_GT] = ACTIONS(1814), - [anon_sym_e_GT] = ACTIONS(1814), - [anon_sym_o_GT] = ACTIONS(1814), - [anon_sym_err_PLUSout_GT] = ACTIONS(1814), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1814), - [anon_sym_o_PLUSe_GT] = ACTIONS(1814), - [anon_sym_e_PLUSo_GT] = ACTIONS(1814), - [anon_sym_err_GT_GT] = ACTIONS(1812), - [anon_sym_out_GT_GT] = ACTIONS(1812), - [anon_sym_e_GT_GT] = ACTIONS(1812), - [anon_sym_o_GT_GT] = ACTIONS(1812), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1812), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1812), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1812), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1812), - [sym__unquoted_pattern] = ACTIONS(1814), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), }, [STATE(463)] = { - [sym_cmd_identifier] = STATE(4141), - [sym_expr_parenthesized] = STATE(5138), - [sym__spread_parenthesized] = STATE(4677), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(5138), - [sym_val_number] = STATE(5138), - [sym__val_number_decimal] = STATE(1947), - [sym__val_number] = STATE(700), - [sym_val_string] = STATE(5138), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_interpolated] = STATE(5138), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym__spread_record] = STATE(4677), - [sym_record_body] = STATE(4852), - [sym_record_entry] = STATE(4651), - [sym__record_key] = STATE(4944), + [sym__expr_parenthesized_immediate] = STATE(4881), [sym_comment] = STATE(463), - [aux_sym__types_body_repeat1] = STATE(642), - [aux_sym_record_body_repeat1] = STATE(850), + [ts_builtin_sym_end] = ACTIONS(886), + [anon_sym_in] = ACTIONS(886), + [sym__newline] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(886), + [anon_sym_err_GT_PIPE] = ACTIONS(886), + [anon_sym_out_GT_PIPE] = ACTIONS(886), + [anon_sym_e_GT_PIPE] = ACTIONS(886), + [anon_sym_o_GT_PIPE] = ACTIONS(886), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(886), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(886), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(886), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(886), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(886), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(886), + [anon_sym_xor2] = ACTIONS(886), + [anon_sym_or2] = ACTIONS(886), + [anon_sym_not_DASHin2] = ACTIONS(886), + [anon_sym_has2] = ACTIONS(886), + [anon_sym_not_DASHhas2] = ACTIONS(886), + [anon_sym_starts_DASHwith2] = ACTIONS(886), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(886), + [anon_sym_ends_DASHwith2] = ACTIONS(886), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(886), + [anon_sym_EQ_EQ2] = ACTIONS(886), + [anon_sym_BANG_EQ2] = ACTIONS(886), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(886), + [anon_sym_GT_EQ2] = ACTIONS(886), + [anon_sym_EQ_TILDE2] = ACTIONS(886), + [anon_sym_BANG_TILDE2] = ACTIONS(886), + [anon_sym_like2] = ACTIONS(886), + [anon_sym_not_DASHlike2] = ACTIONS(886), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(886), + [anon_sym_PLUS_PLUS2] = ACTIONS(886), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(886), + [anon_sym_SLASH_SLASH2] = ACTIONS(886), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(886), + [anon_sym_bit_DASHshr2] = ACTIONS(886), + [anon_sym_bit_DASHand2] = ACTIONS(886), + [anon_sym_bit_DASHxor2] = ACTIONS(886), + [anon_sym_bit_DASHor2] = ACTIONS(886), + [anon_sym_DOT_DOT2] = ACTIONS(1812), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1814), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1814), + [sym_filesize_unit] = ACTIONS(1816), + [sym_duration_unit] = ACTIONS(1818), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(886), + [anon_sym_out_GT_GT] = ACTIONS(886), + [anon_sym_e_GT_GT] = ACTIONS(886), + [anon_sym_o_GT_GT] = ACTIONS(886), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(886), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(886), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(886), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(886), + [sym__unquoted_pattern] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(464)] = { + [sym_comment] = STATE(464), + [anon_sym_in] = ACTIONS(1744), + [sym__newline] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_err_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_GT_PIPE] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), + [anon_sym_RPAREN] = ACTIONS(1744), + [anon_sym_GT2] = ACTIONS(1746), + [anon_sym_DASH2] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(1744), + [anon_sym_STAR2] = ACTIONS(1746), + [anon_sym_and2] = ACTIONS(1744), + [anon_sym_xor2] = ACTIONS(1744), + [anon_sym_or2] = ACTIONS(1744), + [anon_sym_not_DASHin2] = ACTIONS(1744), + [anon_sym_has2] = ACTIONS(1744), + [anon_sym_not_DASHhas2] = ACTIONS(1744), + [anon_sym_starts_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), + [anon_sym_ends_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), + [anon_sym_EQ_EQ2] = ACTIONS(1744), + [anon_sym_BANG_EQ2] = ACTIONS(1744), + [anon_sym_LT2] = ACTIONS(1746), + [anon_sym_LT_EQ2] = ACTIONS(1744), + [anon_sym_GT_EQ2] = ACTIONS(1744), + [anon_sym_EQ_TILDE2] = ACTIONS(1744), + [anon_sym_BANG_TILDE2] = ACTIONS(1744), + [anon_sym_like2] = ACTIONS(1744), + [anon_sym_not_DASHlike2] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1744), + [anon_sym_STAR_STAR2] = ACTIONS(1744), + [anon_sym_PLUS_PLUS2] = ACTIONS(1744), + [anon_sym_SLASH2] = ACTIONS(1746), + [anon_sym_mod2] = ACTIONS(1744), + [anon_sym_SLASH_SLASH2] = ACTIONS(1744), + [anon_sym_PLUS2] = ACTIONS(1746), + [anon_sym_bit_DASHshl2] = ACTIONS(1744), + [anon_sym_bit_DASHshr2] = ACTIONS(1744), + [anon_sym_bit_DASHand2] = ACTIONS(1744), + [anon_sym_bit_DASHxor2] = ACTIONS(1744), + [anon_sym_bit_DASHor2] = ACTIONS(1744), + [anon_sym_DOT_DOT2] = ACTIONS(1746), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1744), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1744), + [aux_sym__immediate_decimal_token5] = ACTIONS(1750), + [anon_sym_err_GT] = ACTIONS(1746), + [anon_sym_out_GT] = ACTIONS(1746), + [anon_sym_e_GT] = ACTIONS(1746), + [anon_sym_o_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT] = ACTIONS(1746), + [anon_sym_err_GT_GT] = ACTIONS(1744), + [anon_sym_out_GT_GT] = ACTIONS(1744), + [anon_sym_e_GT_GT] = ACTIONS(1744), + [anon_sym_o_GT_GT] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), + [sym__unquoted_pattern] = ACTIONS(1746), + [anon_sym_POUND] = ACTIONS(3), + }, + [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), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_err_GT_PIPE] = ACTIONS(773), + [anon_sym_out_GT_PIPE] = ACTIONS(773), + [anon_sym_e_GT_PIPE] = ACTIONS(773), + [anon_sym_o_GT_PIPE] = ACTIONS(773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(773), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(773), + [anon_sym_xor2] = ACTIONS(773), + [anon_sym_or2] = ACTIONS(773), + [anon_sym_not_DASHin2] = ACTIONS(773), + [anon_sym_has2] = ACTIONS(773), + [anon_sym_not_DASHhas2] = ACTIONS(773), + [anon_sym_starts_DASHwith2] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), + [anon_sym_ends_DASHwith2] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), + [anon_sym_EQ_EQ2] = ACTIONS(773), + [anon_sym_BANG_EQ2] = ACTIONS(773), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(773), + [anon_sym_GT_EQ2] = ACTIONS(773), + [anon_sym_EQ_TILDE2] = ACTIONS(773), + [anon_sym_BANG_TILDE2] = ACTIONS(773), + [anon_sym_like2] = ACTIONS(773), + [anon_sym_not_DASHlike2] = ACTIONS(773), + [anon_sym_LPAREN2] = ACTIONS(773), + [anon_sym_STAR_STAR2] = ACTIONS(773), + [anon_sym_PLUS_PLUS2] = ACTIONS(773), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(773), + [anon_sym_SLASH_SLASH2] = ACTIONS(773), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(773), + [anon_sym_bit_DASHshr2] = ACTIONS(773), + [anon_sym_bit_DASHand2] = ACTIONS(773), + [anon_sym_bit_DASHxor2] = ACTIONS(773), + [anon_sym_bit_DASHor2] = ACTIONS(773), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(773), + [anon_sym_out_GT_GT] = ACTIONS(773), + [anon_sym_e_GT_GT] = ACTIONS(773), + [anon_sym_o_GT_GT] = ACTIONS(773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), + [sym__unquoted_pattern] = ACTIONS(771), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(467)] = { + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(5339), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(5088), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(467), + [aux_sym__types_body_repeat1] = STATE(584), + [aux_sym_record_body_repeat1] = STATE(813), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83813,334 +84432,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(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1780), - [aux_sym_cmd_identifier_token4] = ACTIONS(1780), - [aux_sym_cmd_identifier_token5] = ACTIONS(1780), - [sym__newline] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1804), + [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(1818), + [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(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [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(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), + [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(1802), - }, - [STATE(464)] = { - [sym__expr_parenthesized_immediate] = STATE(4762), - [sym_comment] = STATE(464), - [ts_builtin_sym_end] = ACTIONS(884), - [anon_sym_in] = ACTIONS(884), - [sym__newline] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_err_GT_PIPE] = ACTIONS(884), - [anon_sym_out_GT_PIPE] = ACTIONS(884), - [anon_sym_e_GT_PIPE] = ACTIONS(884), - [anon_sym_o_GT_PIPE] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), - [anon_sym_GT2] = ACTIONS(858), - [anon_sym_DASH2] = ACTIONS(884), - [anon_sym_STAR2] = ACTIONS(858), - [anon_sym_and2] = ACTIONS(884), - [anon_sym_xor2] = ACTIONS(884), - [anon_sym_or2] = ACTIONS(884), - [anon_sym_not_DASHin2] = ACTIONS(884), - [anon_sym_has2] = ACTIONS(884), - [anon_sym_not_DASHhas2] = ACTIONS(884), - [anon_sym_starts_DASHwith2] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(884), - [anon_sym_ends_DASHwith2] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(884), - [anon_sym_EQ_EQ2] = ACTIONS(884), - [anon_sym_BANG_EQ2] = ACTIONS(884), - [anon_sym_LT2] = ACTIONS(858), - [anon_sym_LT_EQ2] = ACTIONS(884), - [anon_sym_GT_EQ2] = ACTIONS(884), - [anon_sym_EQ_TILDE2] = ACTIONS(884), - [anon_sym_BANG_TILDE2] = ACTIONS(884), - [anon_sym_like2] = ACTIONS(884), - [anon_sym_not_DASHlike2] = ACTIONS(884), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(884), - [anon_sym_PLUS_PLUS2] = ACTIONS(884), - [anon_sym_SLASH2] = ACTIONS(858), - [anon_sym_mod2] = ACTIONS(884), - [anon_sym_SLASH_SLASH2] = ACTIONS(884), - [anon_sym_PLUS2] = ACTIONS(858), - [anon_sym_bit_DASHshl2] = ACTIONS(884), - [anon_sym_bit_DASHshr2] = ACTIONS(884), - [anon_sym_bit_DASHand2] = ACTIONS(884), - [anon_sym_bit_DASHxor2] = ACTIONS(884), - [anon_sym_bit_DASHor2] = ACTIONS(884), - [anon_sym_DOT_DOT2] = ACTIONS(1820), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), - [sym_filesize_unit] = ACTIONS(1824), - [sym_duration_unit] = ACTIONS(1826), - [anon_sym_err_GT] = ACTIONS(858), - [anon_sym_out_GT] = ACTIONS(858), - [anon_sym_e_GT] = ACTIONS(858), - [anon_sym_o_GT] = ACTIONS(858), - [anon_sym_err_PLUSout_GT] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT] = ACTIONS(858), - [anon_sym_o_PLUSe_GT] = ACTIONS(858), - [anon_sym_e_PLUSo_GT] = ACTIONS(858), - [anon_sym_err_GT_GT] = ACTIONS(884), - [anon_sym_out_GT_GT] = ACTIONS(884), - [anon_sym_e_GT_GT] = ACTIONS(884), - [anon_sym_o_GT_GT] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), - [sym__unquoted_pattern] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(465)] = { - [sym_comment] = STATE(465), - [ts_builtin_sym_end] = ACTIONS(765), - [anon_sym_in] = ACTIONS(765), - [sym__newline] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_err_GT_PIPE] = ACTIONS(765), - [anon_sym_out_GT_PIPE] = ACTIONS(765), - [anon_sym_e_GT_PIPE] = ACTIONS(765), - [anon_sym_o_GT_PIPE] = ACTIONS(765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(765), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(765), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(765), - [anon_sym_xor2] = ACTIONS(765), - [anon_sym_or2] = ACTIONS(765), - [anon_sym_not_DASHin2] = ACTIONS(765), - [anon_sym_has2] = ACTIONS(765), - [anon_sym_not_DASHhas2] = ACTIONS(765), - [anon_sym_starts_DASHwith2] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(765), - [anon_sym_ends_DASHwith2] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(765), - [anon_sym_EQ_EQ2] = ACTIONS(765), - [anon_sym_BANG_EQ2] = ACTIONS(765), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(765), - [anon_sym_GT_EQ2] = ACTIONS(765), - [anon_sym_EQ_TILDE2] = ACTIONS(765), - [anon_sym_BANG_TILDE2] = ACTIONS(765), - [anon_sym_like2] = ACTIONS(765), - [anon_sym_not_DASHlike2] = ACTIONS(765), - [anon_sym_LPAREN2] = ACTIONS(765), - [anon_sym_STAR_STAR2] = ACTIONS(765), - [anon_sym_PLUS_PLUS2] = ACTIONS(765), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(765), - [anon_sym_SLASH_SLASH2] = ACTIONS(765), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(765), - [anon_sym_bit_DASHshr2] = ACTIONS(765), - [anon_sym_bit_DASHand2] = ACTIONS(765), - [anon_sym_bit_DASHxor2] = ACTIONS(765), - [anon_sym_bit_DASHor2] = ACTIONS(765), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [aux_sym__immediate_decimal_token5] = ACTIONS(1830), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), - [anon_sym_err_GT] = ACTIONS(763), - [anon_sym_out_GT] = ACTIONS(763), - [anon_sym_e_GT] = ACTIONS(763), - [anon_sym_o_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT] = ACTIONS(763), - [anon_sym_err_GT_GT] = ACTIONS(765), - [anon_sym_out_GT_GT] = ACTIONS(765), - [anon_sym_e_GT_GT] = ACTIONS(765), - [anon_sym_o_GT_GT] = ACTIONS(765), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(765), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(765), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(765), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(765), - [sym__unquoted_pattern] = ACTIONS(763), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(466)] = { - [sym_comment] = STATE(466), - [anon_sym_in] = ACTIONS(765), - [sym__newline] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_err_GT_PIPE] = ACTIONS(765), - [anon_sym_out_GT_PIPE] = ACTIONS(765), - [anon_sym_e_GT_PIPE] = ACTIONS(765), - [anon_sym_o_GT_PIPE] = ACTIONS(765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(765), - [anon_sym_RBRACE] = ACTIONS(765), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(765), - [anon_sym_xor2] = ACTIONS(765), - [anon_sym_or2] = ACTIONS(765), - [anon_sym_not_DASHin2] = ACTIONS(765), - [anon_sym_has2] = ACTIONS(765), - [anon_sym_not_DASHhas2] = ACTIONS(765), - [anon_sym_starts_DASHwith2] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(765), - [anon_sym_ends_DASHwith2] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(765), - [anon_sym_EQ_EQ2] = ACTIONS(765), - [anon_sym_BANG_EQ2] = ACTIONS(765), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(765), - [anon_sym_GT_EQ2] = ACTIONS(765), - [anon_sym_EQ_TILDE2] = ACTIONS(765), - [anon_sym_BANG_TILDE2] = ACTIONS(765), - [anon_sym_like2] = ACTIONS(765), - [anon_sym_not_DASHlike2] = ACTIONS(765), - [anon_sym_LPAREN2] = ACTIONS(765), - [anon_sym_STAR_STAR2] = ACTIONS(765), - [anon_sym_PLUS_PLUS2] = ACTIONS(765), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(765), - [anon_sym_SLASH_SLASH2] = ACTIONS(765), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(765), - [anon_sym_bit_DASHshr2] = ACTIONS(765), - [anon_sym_bit_DASHand2] = ACTIONS(765), - [anon_sym_bit_DASHxor2] = ACTIONS(765), - [anon_sym_bit_DASHor2] = ACTIONS(765), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), - [anon_sym_err_GT] = ACTIONS(763), - [anon_sym_out_GT] = ACTIONS(763), - [anon_sym_e_GT] = ACTIONS(763), - [anon_sym_o_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT] = ACTIONS(763), - [anon_sym_err_GT_GT] = ACTIONS(765), - [anon_sym_out_GT_GT] = ACTIONS(765), - [anon_sym_e_GT_GT] = ACTIONS(765), - [anon_sym_o_GT_GT] = ACTIONS(765), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(765), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(765), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(765), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(765), - [sym__unquoted_pattern] = ACTIONS(763), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(467)] = { - [sym_comment] = STATE(467), - [anon_sym_in] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(789), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(789), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(789), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_LPAREN2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(789), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(789), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(789), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), - [anon_sym_DOT_DOT_LT2] = ACTIONS(791), - [sym_filesize_unit] = ACTIONS(789), - [sym_duration_unit] = ACTIONS(791), - [anon_sym_err_GT] = ACTIONS(789), - [anon_sym_out_GT] = ACTIONS(789), - [anon_sym_e_GT] = ACTIONS(789), - [anon_sym_o_GT] = ACTIONS(789), - [anon_sym_err_PLUSout_GT] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT] = ACTIONS(789), - [anon_sym_o_PLUSe_GT] = ACTIONS(789), - [anon_sym_e_PLUSo_GT] = ACTIONS(789), - [anon_sym_err_GT_GT] = ACTIONS(791), - [anon_sym_out_GT_GT] = ACTIONS(791), - [anon_sym_e_GT_GT] = ACTIONS(791), - [anon_sym_o_GT_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), - [sym__unquoted_pattern] = ACTIONS(789), - [anon_sym_POUND] = ACTIONS(3), + [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), @@ -84191,7 +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(1764), + [aux_sym__immediate_decimal_token5] = ACTIONS(1742), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -84213,30 +84610,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(469)] = { - [sym_cmd_identifier] = STATE(4141), - [sym_expr_parenthesized] = STATE(5138), - [sym__spread_parenthesized] = STATE(4677), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(5138), - [sym_val_number] = STATE(5138), - [sym__val_number_decimal] = STATE(1947), - [sym__val_number] = STATE(700), - [sym_val_string] = STATE(5138), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_interpolated] = STATE(5138), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym__spread_record] = STATE(4677), - [sym_record_body] = STATE(5060), - [sym_record_entry] = STATE(4651), - [sym__record_key] = STATE(4944), - [sym_comment] = STATE(469), - [aux_sym__types_body_repeat1] = STATE(642), - [aux_sym_record_body_repeat1] = STATE(850), + [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), @@ -84257,208 +84654,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1780), - [aux_sym_cmd_identifier_token4] = ACTIONS(1780), - [aux_sym_cmd_identifier_token5] = ACTIONS(1780), - [sym__newline] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1804), + [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_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(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [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(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), + [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(1802), - }, - [STATE(470)] = { - [sym_comment] = STATE(470), - [anon_sym_if] = ACTIONS(1687), - [anon_sym_in] = ACTIONS(1687), - [sym__newline] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_err_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_GT_PIPE] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), - [anon_sym_RPAREN] = ACTIONS(1687), - [anon_sym_GT2] = ACTIONS(1689), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_EQ_GT] = ACTIONS(1687), - [anon_sym_STAR2] = ACTIONS(1689), - [anon_sym_and2] = ACTIONS(1687), - [anon_sym_xor2] = ACTIONS(1687), - [anon_sym_or2] = ACTIONS(1687), - [anon_sym_not_DASHin2] = ACTIONS(1687), - [anon_sym_has2] = ACTIONS(1687), - [anon_sym_not_DASHhas2] = ACTIONS(1687), - [anon_sym_starts_DASHwith2] = ACTIONS(1687), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1687), - [anon_sym_ends_DASHwith2] = ACTIONS(1687), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1687), - [anon_sym_EQ_EQ2] = ACTIONS(1687), - [anon_sym_BANG_EQ2] = ACTIONS(1687), - [anon_sym_LT2] = ACTIONS(1689), - [anon_sym_LT_EQ2] = ACTIONS(1687), - [anon_sym_GT_EQ2] = ACTIONS(1687), - [anon_sym_EQ_TILDE2] = ACTIONS(1687), - [anon_sym_BANG_TILDE2] = ACTIONS(1687), - [anon_sym_like2] = ACTIONS(1687), - [anon_sym_not_DASHlike2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1687), - [anon_sym_PLUS_PLUS2] = ACTIONS(1687), - [anon_sym_SLASH2] = ACTIONS(1689), - [anon_sym_mod2] = ACTIONS(1687), - [anon_sym_SLASH_SLASH2] = ACTIONS(1687), - [anon_sym_PLUS2] = ACTIONS(1689), - [anon_sym_bit_DASHshl2] = ACTIONS(1687), - [anon_sym_bit_DASHshr2] = ACTIONS(1687), - [anon_sym_bit_DASHand2] = ACTIONS(1687), - [anon_sym_bit_DASHxor2] = ACTIONS(1687), - [anon_sym_bit_DASHor2] = ACTIONS(1687), - [anon_sym_DOT_DOT2] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), - [anon_sym_COLON2] = ACTIONS(1687), - [anon_sym_err_GT] = ACTIONS(1689), - [anon_sym_out_GT] = ACTIONS(1689), - [anon_sym_e_GT] = ACTIONS(1689), - [anon_sym_o_GT] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT] = ACTIONS(1689), - [anon_sym_err_GT_GT] = ACTIONS(1687), - [anon_sym_out_GT_GT] = ACTIONS(1687), - [anon_sym_e_GT_GT] = ACTIONS(1687), - [anon_sym_o_GT_GT] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), }, [STATE(471)] = { [sym_comment] = STATE(471), - [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(1716), - [sym__newline] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_err_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_GT_PIPE] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), - [anon_sym_GT2] = ACTIONS(1629), - [anon_sym_DASH2] = ACTIONS(1629), - [anon_sym_STAR2] = ACTIONS(1629), - [anon_sym_and2] = ACTIONS(1716), - [anon_sym_xor2] = ACTIONS(1716), - [anon_sym_or2] = ACTIONS(1716), - [anon_sym_not_DASHin2] = ACTIONS(1716), - [anon_sym_has2] = ACTIONS(1716), - [anon_sym_not_DASHhas2] = ACTIONS(1716), - [anon_sym_starts_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), - [anon_sym_ends_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), - [anon_sym_EQ_EQ2] = ACTIONS(1716), - [anon_sym_BANG_EQ2] = ACTIONS(1716), - [anon_sym_LT2] = ACTIONS(1629), - [anon_sym_LT_EQ2] = ACTIONS(1716), - [anon_sym_GT_EQ2] = ACTIONS(1716), - [anon_sym_EQ_TILDE2] = ACTIONS(1716), - [anon_sym_BANG_TILDE2] = ACTIONS(1716), - [anon_sym_like2] = ACTIONS(1716), - [anon_sym_not_DASHlike2] = ACTIONS(1716), - [anon_sym_STAR_STAR2] = ACTIONS(1716), - [anon_sym_PLUS_PLUS2] = ACTIONS(1629), - [anon_sym_SLASH2] = ACTIONS(1629), - [anon_sym_mod2] = ACTIONS(1716), - [anon_sym_SLASH_SLASH2] = ACTIONS(1716), - [anon_sym_PLUS2] = ACTIONS(1629), - [anon_sym_bit_DASHshl2] = ACTIONS(1716), - [anon_sym_bit_DASHshr2] = ACTIONS(1716), - [anon_sym_bit_DASHand2] = ACTIONS(1716), - [anon_sym_bit_DASHxor2] = ACTIONS(1716), - [anon_sym_bit_DASHor2] = ACTIONS(1716), - [anon_sym_DOT_DOT2] = ACTIONS(1633), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), - [anon_sym_err_GT] = ACTIONS(1629), - [anon_sym_out_GT] = ACTIONS(1629), - [anon_sym_e_GT] = ACTIONS(1629), - [anon_sym_o_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT] = ACTIONS(1629), - [anon_sym_err_GT_GT] = ACTIONS(1716), - [anon_sym_out_GT_GT] = ACTIONS(1716), - [anon_sym_e_GT_GT] = ACTIONS(1716), - [anon_sym_o_GT_GT] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), + [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(4141), - [sym_expr_parenthesized] = STATE(5138), - [sym__spread_parenthesized] = STATE(4677), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(5138), - [sym_val_number] = STATE(5138), - [sym__val_number_decimal] = STATE(1947), - [sym__val_number] = STATE(700), - [sym_val_string] = STATE(5138), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_interpolated] = STATE(5138), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym__spread_record] = STATE(4677), - [sym_record_body] = STATE(5210), - [sym_record_entry] = STATE(4651), - [sym__record_key] = STATE(4944), + [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(642), - [aux_sym_record_body_repeat1] = STATE(850), + [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), @@ -84479,60 +84802,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1780), - [aux_sym_cmd_identifier_token4] = ACTIONS(1780), - [aux_sym_cmd_identifier_token5] = ACTIONS(1780), - [sym__newline] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1804), + [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(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [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(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), + [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(1802), + [sym_raw_string_begin] = ACTIONS(1806), }, [STATE(473)] = { - [sym_cmd_identifier] = STATE(4141), - [sym__match_pattern_record_body] = STATE(5088), - [sym_expr_parenthesized] = STATE(5138), - [sym__spread_parenthesized] = STATE(4677), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(4143), - [sym_val_number] = STATE(5138), - [sym__val_number_decimal] = STATE(1947), - [sym__val_number] = STATE(700), - [sym_val_string] = STATE(5138), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_interpolated] = STATE(5138), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym__spread_record] = STATE(4677), - [sym_record_entry] = STATE(4657), - [sym__record_key] = STATE(4944), + [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(529), - [aux_sym__match_pattern_record_body_repeat1] = STATE(785), + [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), @@ -84553,481 +84876,854 @@ 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(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1780), - [aux_sym_cmd_identifier_token4] = ACTIONS(1780), - [aux_sym_cmd_identifier_token5] = ACTIONS(1780), - [sym__newline] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1786), + [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(1840), + [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(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [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(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), + [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(1802), + [sym_raw_string_begin] = ACTIONS(1806), }, [STATE(474)] = { [sym_comment] = STATE(474), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_PLUS_EQ] = ACTIONS(1844), - [anon_sym_DASH_EQ] = ACTIONS(1844), - [anon_sym_STAR_EQ] = ACTIONS(1844), - [anon_sym_SLASH_EQ] = ACTIONS(1844), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1844), - [anon_sym_in] = ACTIONS(1716), - [sym__newline] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_err_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_GT_PIPE] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), - [anon_sym_GT2] = ACTIONS(1629), - [anon_sym_DASH2] = ACTIONS(1629), - [anon_sym_STAR2] = ACTIONS(1629), - [anon_sym_and2] = ACTIONS(1716), - [anon_sym_xor2] = ACTIONS(1716), - [anon_sym_or2] = ACTIONS(1716), - [anon_sym_not_DASHin2] = ACTIONS(1716), - [anon_sym_has2] = ACTIONS(1716), - [anon_sym_not_DASHhas2] = ACTIONS(1716), - [anon_sym_starts_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), - [anon_sym_ends_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), - [anon_sym_EQ_EQ2] = ACTIONS(1716), - [anon_sym_BANG_EQ2] = ACTIONS(1716), - [anon_sym_LT2] = ACTIONS(1629), - [anon_sym_LT_EQ2] = ACTIONS(1716), - [anon_sym_GT_EQ2] = ACTIONS(1716), - [anon_sym_EQ_TILDE2] = ACTIONS(1716), - [anon_sym_BANG_TILDE2] = ACTIONS(1716), - [anon_sym_like2] = ACTIONS(1716), - [anon_sym_not_DASHlike2] = ACTIONS(1716), - [anon_sym_STAR_STAR2] = ACTIONS(1716), - [anon_sym_PLUS_PLUS2] = ACTIONS(1629), - [anon_sym_SLASH2] = ACTIONS(1629), - [anon_sym_mod2] = ACTIONS(1716), - [anon_sym_SLASH_SLASH2] = ACTIONS(1716), - [anon_sym_PLUS2] = ACTIONS(1629), - [anon_sym_bit_DASHshl2] = ACTIONS(1716), - [anon_sym_bit_DASHshr2] = ACTIONS(1716), - [anon_sym_bit_DASHand2] = ACTIONS(1716), - [anon_sym_bit_DASHxor2] = ACTIONS(1716), - [anon_sym_bit_DASHor2] = ACTIONS(1716), - [anon_sym_DOT_DOT2] = ACTIONS(1633), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), - [anon_sym_err_GT] = ACTIONS(1629), - [anon_sym_out_GT] = ACTIONS(1629), - [anon_sym_e_GT] = ACTIONS(1629), - [anon_sym_o_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT] = ACTIONS(1629), - [anon_sym_err_GT_GT] = ACTIONS(1716), - [anon_sym_out_GT_GT] = ACTIONS(1716), - [anon_sym_e_GT_GT] = ACTIONS(1716), - [anon_sym_o_GT_GT] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), + [ts_builtin_sym_end] = ACTIONS(773), + [anon_sym_in] = ACTIONS(773), + [sym__newline] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_err_GT_PIPE] = ACTIONS(773), + [anon_sym_out_GT_PIPE] = ACTIONS(773), + [anon_sym_e_GT_PIPE] = ACTIONS(773), + [anon_sym_o_GT_PIPE] = ACTIONS(773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(773), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(773), + [anon_sym_xor2] = ACTIONS(773), + [anon_sym_or2] = ACTIONS(773), + [anon_sym_not_DASHin2] = ACTIONS(773), + [anon_sym_has2] = ACTIONS(773), + [anon_sym_not_DASHhas2] = ACTIONS(773), + [anon_sym_starts_DASHwith2] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), + [anon_sym_ends_DASHwith2] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), + [anon_sym_EQ_EQ2] = ACTIONS(773), + [anon_sym_BANG_EQ2] = ACTIONS(773), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(773), + [anon_sym_GT_EQ2] = ACTIONS(773), + [anon_sym_EQ_TILDE2] = ACTIONS(773), + [anon_sym_BANG_TILDE2] = ACTIONS(773), + [anon_sym_like2] = ACTIONS(773), + [anon_sym_not_DASHlike2] = ACTIONS(773), + [anon_sym_LPAREN2] = ACTIONS(773), + [anon_sym_STAR_STAR2] = ACTIONS(773), + [anon_sym_PLUS_PLUS2] = ACTIONS(773), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(773), + [anon_sym_SLASH_SLASH2] = ACTIONS(773), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(773), + [anon_sym_bit_DASHshr2] = ACTIONS(773), + [anon_sym_bit_DASHand2] = ACTIONS(773), + [anon_sym_bit_DASHxor2] = ACTIONS(773), + [anon_sym_bit_DASHor2] = ACTIONS(773), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(1830), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(773), + [anon_sym_out_GT_GT] = ACTIONS(773), + [anon_sym_e_GT_GT] = ACTIONS(773), + [anon_sym_o_GT_GT] = ACTIONS(773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), + [sym__unquoted_pattern] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(3), }, [STATE(475)] = { + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(5339), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_body] = STATE(5216), + [sym_record_entry] = STATE(4687), + [sym__record_key] = STATE(5341), [sym_comment] = STATE(475), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [sym__newline] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_err_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_GT_PIPE] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_GT2] = ACTIONS(1848), - [anon_sym_DASH2] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_EQ_GT] = ACTIONS(1846), - [anon_sym_STAR2] = ACTIONS(1848), - [anon_sym_and2] = ACTIONS(1846), - [anon_sym_xor2] = ACTIONS(1846), - [anon_sym_or2] = ACTIONS(1846), - [anon_sym_not_DASHin2] = ACTIONS(1846), - [anon_sym_has2] = ACTIONS(1846), - [anon_sym_not_DASHhas2] = ACTIONS(1846), - [anon_sym_starts_DASHwith2] = ACTIONS(1846), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), - [anon_sym_ends_DASHwith2] = ACTIONS(1846), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), - [anon_sym_EQ_EQ2] = ACTIONS(1846), - [anon_sym_BANG_EQ2] = ACTIONS(1846), - [anon_sym_LT2] = ACTIONS(1848), - [anon_sym_LT_EQ2] = ACTIONS(1846), - [anon_sym_GT_EQ2] = ACTIONS(1846), - [anon_sym_EQ_TILDE2] = ACTIONS(1846), - [anon_sym_BANG_TILDE2] = ACTIONS(1846), - [anon_sym_like2] = ACTIONS(1846), - [anon_sym_not_DASHlike2] = ACTIONS(1846), - [anon_sym_STAR_STAR2] = ACTIONS(1846), - [anon_sym_PLUS_PLUS2] = ACTIONS(1846), - [anon_sym_SLASH2] = ACTIONS(1848), - [anon_sym_mod2] = ACTIONS(1846), - [anon_sym_SLASH_SLASH2] = ACTIONS(1846), - [anon_sym_PLUS2] = ACTIONS(1848), - [anon_sym_bit_DASHshl2] = ACTIONS(1846), - [anon_sym_bit_DASHshr2] = ACTIONS(1846), - [anon_sym_bit_DASHand2] = ACTIONS(1846), - [anon_sym_bit_DASHxor2] = ACTIONS(1846), - [anon_sym_bit_DASHor2] = ACTIONS(1846), - [anon_sym_DOT_DOT2] = ACTIONS(1848), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1846), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1846), - [anon_sym_COLON2] = ACTIONS(1846), - [anon_sym_err_GT] = ACTIONS(1848), - [anon_sym_out_GT] = ACTIONS(1848), - [anon_sym_e_GT] = ACTIONS(1848), - [anon_sym_o_GT] = ACTIONS(1848), - [anon_sym_err_PLUSout_GT] = ACTIONS(1848), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), - [anon_sym_o_PLUSe_GT] = ACTIONS(1848), - [anon_sym_e_PLUSo_GT] = ACTIONS(1848), - [anon_sym_err_GT_GT] = ACTIONS(1846), - [anon_sym_out_GT_GT] = ACTIONS(1846), - [anon_sym_e_GT_GT] = ACTIONS(1846), - [anon_sym_o_GT_GT] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), + [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(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), - [anon_sym_if] = 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_RPAREN] = ACTIONS(1850), - [anon_sym_GT2] = ACTIONS(1852), - [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(1852), - [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(1852), - [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(1852), - [anon_sym_mod2] = ACTIONS(1850), - [anon_sym_SLASH_SLASH2] = ACTIONS(1850), - [anon_sym_PLUS2] = ACTIONS(1852), - [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_DOT_DOT2] = ACTIONS(1852), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1850), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1850), - [anon_sym_err_GT] = ACTIONS(1852), - [anon_sym_out_GT] = ACTIONS(1852), - [anon_sym_e_GT] = ACTIONS(1852), - [anon_sym_o_GT] = ACTIONS(1852), - [anon_sym_err_PLUSout_GT] = ACTIONS(1852), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1852), - [anon_sym_o_PLUSe_GT] = ACTIONS(1852), - [anon_sym_e_PLUSo_GT] = ACTIONS(1852), - [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), + [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(477)] = { - [sym_cell_path] = STATE(916), - [sym_path] = STATE(791), + [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__where_predicate_lhs_repeat1] = STATE(532), - [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_GT2] = ACTIONS(1683), - [anon_sym_DASH2] = 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_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), - [anon_sym_DOT_DOT2] = ACTIONS(1683), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1681), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1681), - [anon_sym_DOT2] = ACTIONS(1854), - [anon_sym_err_GT] = ACTIONS(1683), - [anon_sym_out_GT] = ACTIONS(1683), - [anon_sym_e_GT] = ACTIONS(1683), - [anon_sym_o_GT] = ACTIONS(1683), - [anon_sym_err_PLUSout_GT] = ACTIONS(1683), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1683), - [anon_sym_o_PLUSe_GT] = ACTIONS(1683), - [anon_sym_e_PLUSo_GT] = ACTIONS(1683), - [anon_sym_err_GT_GT] = ACTIONS(1681), - [anon_sym_out_GT_GT] = ACTIONS(1681), - [anon_sym_e_GT_GT] = ACTIONS(1681), - [anon_sym_o_GT_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), + [aux_sym__types_body_repeat1] = STATE(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_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_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_cell_path] = STATE(940), - [sym_path] = STATE(454), + [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__where_predicate_lhs_repeat1] = STATE(429), - [anon_sym_in] = ACTIONS(1856), - [sym__newline] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_PIPE] = ACTIONS(1856), - [anon_sym_err_GT_PIPE] = ACTIONS(1856), - [anon_sym_out_GT_PIPE] = ACTIONS(1856), - [anon_sym_e_GT_PIPE] = ACTIONS(1856), - [anon_sym_o_GT_PIPE] = ACTIONS(1856), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), - [anon_sym_RPAREN] = ACTIONS(1856), - [anon_sym_GT2] = ACTIONS(1858), - [anon_sym_DASH2] = ACTIONS(1856), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(1856), - [anon_sym_EQ_GT] = ACTIONS(1856), - [anon_sym_STAR2] = ACTIONS(1858), - [anon_sym_and2] = ACTIONS(1856), - [anon_sym_xor2] = ACTIONS(1856), - [anon_sym_or2] = ACTIONS(1856), - [anon_sym_not_DASHin2] = ACTIONS(1856), - [anon_sym_has2] = ACTIONS(1856), - [anon_sym_not_DASHhas2] = ACTIONS(1856), - [anon_sym_starts_DASHwith2] = ACTIONS(1856), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), - [anon_sym_ends_DASHwith2] = ACTIONS(1856), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), - [anon_sym_EQ_EQ2] = ACTIONS(1856), - [anon_sym_BANG_EQ2] = ACTIONS(1856), - [anon_sym_LT2] = ACTIONS(1858), - [anon_sym_LT_EQ2] = ACTIONS(1856), - [anon_sym_GT_EQ2] = ACTIONS(1856), - [anon_sym_EQ_TILDE2] = ACTIONS(1856), - [anon_sym_BANG_TILDE2] = ACTIONS(1856), - [anon_sym_like2] = ACTIONS(1856), - [anon_sym_not_DASHlike2] = ACTIONS(1856), - [anon_sym_STAR_STAR2] = ACTIONS(1856), - [anon_sym_PLUS_PLUS2] = ACTIONS(1856), - [anon_sym_SLASH2] = ACTIONS(1858), - [anon_sym_mod2] = ACTIONS(1856), - [anon_sym_SLASH_SLASH2] = ACTIONS(1856), - [anon_sym_PLUS2] = ACTIONS(1858), - [anon_sym_bit_DASHshl2] = ACTIONS(1856), - [anon_sym_bit_DASHshr2] = ACTIONS(1856), - [anon_sym_bit_DASHand2] = ACTIONS(1856), - [anon_sym_bit_DASHxor2] = ACTIONS(1856), - [anon_sym_bit_DASHor2] = ACTIONS(1856), - [anon_sym_DOT2] = ACTIONS(1860), - [anon_sym_err_GT] = ACTIONS(1858), - [anon_sym_out_GT] = ACTIONS(1858), - [anon_sym_e_GT] = ACTIONS(1858), - [anon_sym_o_GT] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT] = ACTIONS(1858), - [anon_sym_err_GT_GT] = ACTIONS(1856), - [anon_sym_out_GT_GT] = ACTIONS(1856), - [anon_sym_e_GT_GT] = ACTIONS(1856), - [anon_sym_o_GT_GT] = ACTIONS(1856), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), + [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_cell_path] = STATE(901), - [sym_path] = STATE(454), + [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__where_predicate_lhs_repeat1] = STATE(429), + [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), + [anon_sym_PIPE] = ACTIONS(1858), + [anon_sym_err_GT_PIPE] = ACTIONS(1858), + [anon_sym_out_GT_PIPE] = ACTIONS(1858), + [anon_sym_e_GT_PIPE] = ACTIONS(1858), + [anon_sym_o_GT_PIPE] = ACTIONS(1858), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1858), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), + [anon_sym_RPAREN] = ACTIONS(1858), + [anon_sym_GT2] = ACTIONS(1860), + [anon_sym_DASH2] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1858), + [anon_sym_EQ_GT] = ACTIONS(1858), + [anon_sym_STAR2] = ACTIONS(1860), + [anon_sym_and2] = ACTIONS(1858), + [anon_sym_xor2] = ACTIONS(1858), + [anon_sym_or2] = ACTIONS(1858), + [anon_sym_not_DASHin2] = ACTIONS(1858), + [anon_sym_has2] = ACTIONS(1858), + [anon_sym_not_DASHhas2] = ACTIONS(1858), + [anon_sym_starts_DASHwith2] = ACTIONS(1858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1858), + [anon_sym_ends_DASHwith2] = ACTIONS(1858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1858), + [anon_sym_EQ_EQ2] = ACTIONS(1858), + [anon_sym_BANG_EQ2] = ACTIONS(1858), + [anon_sym_LT2] = ACTIONS(1860), + [anon_sym_LT_EQ2] = ACTIONS(1858), + [anon_sym_GT_EQ2] = ACTIONS(1858), + [anon_sym_EQ_TILDE2] = ACTIONS(1858), + [anon_sym_BANG_TILDE2] = ACTIONS(1858), + [anon_sym_like2] = ACTIONS(1858), + [anon_sym_not_DASHlike2] = ACTIONS(1858), + [anon_sym_STAR_STAR2] = ACTIONS(1858), + [anon_sym_PLUS_PLUS2] = ACTIONS(1858), + [anon_sym_SLASH2] = ACTIONS(1860), + [anon_sym_mod2] = ACTIONS(1858), + [anon_sym_SLASH_SLASH2] = ACTIONS(1858), + [anon_sym_PLUS2] = ACTIONS(1860), + [anon_sym_bit_DASHshl2] = ACTIONS(1858), + [anon_sym_bit_DASHshr2] = ACTIONS(1858), + [anon_sym_bit_DASHand2] = ACTIONS(1858), + [anon_sym_bit_DASHxor2] = ACTIONS(1858), + [anon_sym_bit_DASHor2] = ACTIONS(1858), + [anon_sym_DOT_DOT2] = ACTIONS(1860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1858), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1858), + [anon_sym_COLON2] = ACTIONS(1858), + [anon_sym_err_GT] = ACTIONS(1860), + [anon_sym_out_GT] = ACTIONS(1860), + [anon_sym_e_GT] = ACTIONS(1860), + [anon_sym_o_GT] = ACTIONS(1860), + [anon_sym_err_PLUSout_GT] = ACTIONS(1860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1860), + [anon_sym_o_PLUSe_GT] = ACTIONS(1860), + [anon_sym_e_PLUSo_GT] = ACTIONS(1860), + [anon_sym_err_GT_GT] = ACTIONS(1858), + [anon_sym_out_GT_GT] = ACTIONS(1858), + [anon_sym_e_GT_GT] = ACTIONS(1858), + [anon_sym_o_GT_GT] = ACTIONS(1858), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1858), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1858), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1858), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(484)] = { + [sym_comment] = STATE(484), + [ts_builtin_sym_end] = ACTIONS(1537), + [anon_sym_in] = ACTIONS(1537), + [sym__newline] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_err_GT_PIPE] = ACTIONS(1537), + [anon_sym_out_GT_PIPE] = ACTIONS(1537), + [anon_sym_e_GT_PIPE] = ACTIONS(1537), + [anon_sym_o_GT_PIPE] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), + [anon_sym_GT2] = ACTIONS(1535), + [anon_sym_DASH2] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_STAR2] = ACTIONS(1535), + [anon_sym_and2] = ACTIONS(1537), + [anon_sym_xor2] = ACTIONS(1537), + [anon_sym_or2] = ACTIONS(1537), + [anon_sym_not_DASHin2] = ACTIONS(1537), + [anon_sym_has2] = ACTIONS(1537), + [anon_sym_not_DASHhas2] = ACTIONS(1537), + [anon_sym_starts_DASHwith2] = ACTIONS(1537), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), + [anon_sym_ends_DASHwith2] = ACTIONS(1537), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), + [anon_sym_EQ_EQ2] = ACTIONS(1537), + [anon_sym_BANG_EQ2] = ACTIONS(1537), + [anon_sym_LT2] = ACTIONS(1535), + [anon_sym_LT_EQ2] = ACTIONS(1537), + [anon_sym_GT_EQ2] = ACTIONS(1537), + [anon_sym_EQ_TILDE2] = ACTIONS(1537), + [anon_sym_BANG_TILDE2] = ACTIONS(1537), + [anon_sym_like2] = ACTIONS(1537), + [anon_sym_not_DASHlike2] = ACTIONS(1537), + [anon_sym_STAR_STAR2] = ACTIONS(1537), + [anon_sym_PLUS_PLUS2] = ACTIONS(1537), + [anon_sym_SLASH2] = ACTIONS(1535), + [anon_sym_mod2] = ACTIONS(1537), + [anon_sym_SLASH_SLASH2] = ACTIONS(1537), + [anon_sym_PLUS2] = ACTIONS(1535), + [anon_sym_bit_DASHshl2] = ACTIONS(1537), + [anon_sym_bit_DASHshr2] = ACTIONS(1537), + [anon_sym_bit_DASHand2] = ACTIONS(1537), + [anon_sym_bit_DASHxor2] = ACTIONS(1537), + [anon_sym_bit_DASHor2] = ACTIONS(1537), + [anon_sym_DOT_DOT2] = ACTIONS(1535), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), + [anon_sym_QMARK2] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_DOT2] = ACTIONS(1535), + [anon_sym_err_GT] = ACTIONS(1535), + [anon_sym_out_GT] = ACTIONS(1535), + [anon_sym_e_GT] = ACTIONS(1535), + [anon_sym_o_GT] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT] = ACTIONS(1535), + [anon_sym_err_GT_GT] = ACTIONS(1537), + [anon_sym_out_GT_GT] = ACTIONS(1537), + [anon_sym_e_GT_GT] = ACTIONS(1537), + [anon_sym_o_GT_GT] = ACTIONS(1537), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [anon_sym_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), @@ -85041,12 +85737,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1865), + [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(1865), + [anon_sym_STAR2] = ACTIONS(1864), [anon_sym_and2] = ACTIONS(1862), [anon_sym_xor2] = ACTIONS(1862), [anon_sym_or2] = ACTIONS(1862), @@ -85059,7 +85755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1862), [anon_sym_EQ_EQ2] = ACTIONS(1862), [anon_sym_BANG_EQ2] = ACTIONS(1862), - [anon_sym_LT2] = ACTIONS(1865), + [anon_sym_LT2] = ACTIONS(1864), [anon_sym_LT_EQ2] = ACTIONS(1862), [anon_sym_GT_EQ2] = ACTIONS(1862), [anon_sym_EQ_TILDE2] = ACTIONS(1862), @@ -85068,24 +85764,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHlike2] = ACTIONS(1862), [anon_sym_STAR_STAR2] = ACTIONS(1862), [anon_sym_PLUS_PLUS2] = ACTIONS(1862), - [anon_sym_SLASH2] = ACTIONS(1865), + [anon_sym_SLASH2] = ACTIONS(1864), [anon_sym_mod2] = ACTIONS(1862), [anon_sym_SLASH_SLASH2] = ACTIONS(1862), - [anon_sym_PLUS2] = ACTIONS(1865), + [anon_sym_PLUS2] = ACTIONS(1864), [anon_sym_bit_DASHshl2] = ACTIONS(1862), [anon_sym_bit_DASHshr2] = ACTIONS(1862), [anon_sym_bit_DASHand2] = ACTIONS(1862), [anon_sym_bit_DASHxor2] = ACTIONS(1862), [anon_sym_bit_DASHor2] = ACTIONS(1862), - [anon_sym_DOT2] = ACTIONS(1860), - [anon_sym_err_GT] = ACTIONS(1865), - [anon_sym_out_GT] = ACTIONS(1865), - [anon_sym_e_GT] = ACTIONS(1865), - [anon_sym_o_GT] = ACTIONS(1865), - [anon_sym_err_PLUSout_GT] = ACTIONS(1865), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1865), - [anon_sym_o_PLUSe_GT] = ACTIONS(1865), - [anon_sym_e_PLUSo_GT] = ACTIONS(1865), + [anon_sym_DOT2] = ACTIONS(1866), + [anon_sym_err_GT] = ACTIONS(1864), + [anon_sym_out_GT] = ACTIONS(1864), + [anon_sym_e_GT] = ACTIONS(1864), + [anon_sym_o_GT] = ACTIONS(1864), + [anon_sym_err_PLUSout_GT] = ACTIONS(1864), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1864), + [anon_sym_o_PLUSe_GT] = ACTIONS(1864), + [anon_sym_e_PLUSo_GT] = ACTIONS(1864), [anon_sym_err_GT_GT] = ACTIONS(1862), [anon_sym_out_GT_GT] = ACTIONS(1862), [anon_sym_e_GT_GT] = ACTIONS(1862), @@ -85096,9 +85792,11 @@ 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(481)] = { - [sym__path_suffix] = STATE(894), - [sym_comment] = STATE(481), + [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), @@ -85148,9 +85846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1442), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1444), [anon_sym_DOT_DOT_LT2] = ACTIONS(1444), - [anon_sym_QMARK2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_DOT2] = ACTIONS(1442), + [anon_sym_DOT2] = ACTIONS(1868), [anon_sym_err_GT] = ACTIONS(1442), [anon_sym_out_GT] = ACTIONS(1442), [anon_sym_e_GT] = ACTIONS(1442), @@ -85169,522 +85865,595 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1444), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(482)] = { - [sym_comment] = STATE(482), - [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), + [STATE(487)] = { + [sym_comment] = STATE(487), + [ts_builtin_sym_end] = ACTIONS(1541), + [anon_sym_in] = ACTIONS(1541), + [sym__newline] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1541), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_err_GT_PIPE] = ACTIONS(1541), + [anon_sym_out_GT_PIPE] = ACTIONS(1541), + [anon_sym_e_GT_PIPE] = ACTIONS(1541), + [anon_sym_o_GT_PIPE] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1541), + [anon_sym_GT2] = ACTIONS(1539), + [anon_sym_DASH2] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_STAR2] = ACTIONS(1539), + [anon_sym_and2] = ACTIONS(1541), + [anon_sym_xor2] = ACTIONS(1541), + [anon_sym_or2] = ACTIONS(1541), + [anon_sym_not_DASHin2] = ACTIONS(1541), + [anon_sym_has2] = ACTIONS(1541), + [anon_sym_not_DASHhas2] = ACTIONS(1541), + [anon_sym_starts_DASHwith2] = ACTIONS(1541), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1541), + [anon_sym_ends_DASHwith2] = ACTIONS(1541), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1541), + [anon_sym_EQ_EQ2] = ACTIONS(1541), + [anon_sym_BANG_EQ2] = ACTIONS(1541), + [anon_sym_LT2] = ACTIONS(1539), + [anon_sym_LT_EQ2] = ACTIONS(1541), + [anon_sym_GT_EQ2] = ACTIONS(1541), + [anon_sym_EQ_TILDE2] = ACTIONS(1541), + [anon_sym_BANG_TILDE2] = ACTIONS(1541), + [anon_sym_like2] = ACTIONS(1541), + [anon_sym_not_DASHlike2] = ACTIONS(1541), + [anon_sym_STAR_STAR2] = ACTIONS(1541), + [anon_sym_PLUS_PLUS2] = ACTIONS(1541), + [anon_sym_SLASH2] = ACTIONS(1539), + [anon_sym_mod2] = ACTIONS(1541), + [anon_sym_SLASH_SLASH2] = ACTIONS(1541), + [anon_sym_PLUS2] = ACTIONS(1539), + [anon_sym_bit_DASHshl2] = ACTIONS(1541), + [anon_sym_bit_DASHshr2] = ACTIONS(1541), + [anon_sym_bit_DASHand2] = ACTIONS(1541), + [anon_sym_bit_DASHxor2] = ACTIONS(1541), + [anon_sym_bit_DASHor2] = ACTIONS(1541), + [anon_sym_DOT_DOT2] = ACTIONS(1539), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1541), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1541), + [anon_sym_QMARK2] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_DOT2] = ACTIONS(1539), + [anon_sym_err_GT] = ACTIONS(1539), + [anon_sym_out_GT] = ACTIONS(1539), + [anon_sym_e_GT] = ACTIONS(1539), + [anon_sym_o_GT] = ACTIONS(1539), + [anon_sym_err_PLUSout_GT] = ACTIONS(1539), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1539), + [anon_sym_o_PLUSe_GT] = ACTIONS(1539), + [anon_sym_e_PLUSo_GT] = ACTIONS(1539), + [anon_sym_err_GT_GT] = ACTIONS(1541), + [anon_sym_out_GT_GT] = ACTIONS(1541), + [anon_sym_e_GT_GT] = ACTIONS(1541), + [anon_sym_o_GT_GT] = ACTIONS(1541), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1541), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1541), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1541), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1541), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(483)] = { - [sym_comment] = STATE(483), - [ts_builtin_sym_end] = ACTIONS(765), - [anon_sym_in] = ACTIONS(765), - [sym__newline] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_err_GT_PIPE] = ACTIONS(765), - [anon_sym_out_GT_PIPE] = ACTIONS(765), - [anon_sym_e_GT_PIPE] = ACTIONS(765), - [anon_sym_o_GT_PIPE] = ACTIONS(765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(765), - [anon_sym_GT2] = ACTIONS(763), - [anon_sym_DASH2] = ACTIONS(765), - [anon_sym_STAR2] = ACTIONS(763), - [anon_sym_and2] = ACTIONS(765), - [anon_sym_xor2] = ACTIONS(765), - [anon_sym_or2] = ACTIONS(765), - [anon_sym_not_DASHin2] = ACTIONS(765), - [anon_sym_has2] = ACTIONS(765), - [anon_sym_not_DASHhas2] = ACTIONS(765), - [anon_sym_starts_DASHwith2] = ACTIONS(765), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(765), - [anon_sym_ends_DASHwith2] = ACTIONS(765), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(765), - [anon_sym_EQ_EQ2] = ACTIONS(765), - [anon_sym_BANG_EQ2] = ACTIONS(765), - [anon_sym_LT2] = ACTIONS(763), - [anon_sym_LT_EQ2] = ACTIONS(765), - [anon_sym_GT_EQ2] = ACTIONS(765), - [anon_sym_EQ_TILDE2] = ACTIONS(765), - [anon_sym_BANG_TILDE2] = ACTIONS(765), - [anon_sym_like2] = ACTIONS(765), - [anon_sym_not_DASHlike2] = ACTIONS(765), - [anon_sym_LPAREN2] = ACTIONS(765), - [anon_sym_STAR_STAR2] = ACTIONS(765), - [anon_sym_PLUS_PLUS2] = ACTIONS(765), - [anon_sym_SLASH2] = ACTIONS(763), - [anon_sym_mod2] = ACTIONS(765), - [anon_sym_SLASH_SLASH2] = ACTIONS(765), - [anon_sym_PLUS2] = ACTIONS(763), - [anon_sym_bit_DASHshl2] = ACTIONS(765), - [anon_sym_bit_DASHshr2] = ACTIONS(765), - [anon_sym_bit_DASHand2] = ACTIONS(765), - [anon_sym_bit_DASHxor2] = ACTIONS(765), - [anon_sym_bit_DASHor2] = ACTIONS(765), - [anon_sym_DOT_DOT2] = ACTIONS(763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(765), - [sym_filesize_unit] = ACTIONS(763), - [sym_duration_unit] = ACTIONS(765), - [anon_sym_err_GT] = ACTIONS(763), - [anon_sym_out_GT] = ACTIONS(763), - [anon_sym_e_GT] = ACTIONS(763), - [anon_sym_o_GT] = ACTIONS(763), - [anon_sym_err_PLUSout_GT] = ACTIONS(763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(763), - [anon_sym_o_PLUSe_GT] = ACTIONS(763), - [anon_sym_e_PLUSo_GT] = ACTIONS(763), - [anon_sym_err_GT_GT] = ACTIONS(765), - [anon_sym_out_GT_GT] = ACTIONS(765), - [anon_sym_e_GT_GT] = ACTIONS(765), - [anon_sym_o_GT_GT] = ACTIONS(765), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(765), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(765), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(765), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(765), - [sym__unquoted_pattern] = ACTIONS(763), + [STATE(488)] = { + [sym_comment] = STATE(488), + [anon_sym_in] = ACTIONS(1870), + [sym__newline] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_err_GT_PIPE] = ACTIONS(1870), + [anon_sym_out_GT_PIPE] = ACTIONS(1870), + [anon_sym_e_GT_PIPE] = ACTIONS(1870), + [anon_sym_o_GT_PIPE] = ACTIONS(1870), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), + [anon_sym_RPAREN] = ACTIONS(1870), + [anon_sym_GT2] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1870), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_STAR2] = ACTIONS(1872), + [anon_sym_and2] = ACTIONS(1870), + [anon_sym_xor2] = ACTIONS(1870), + [anon_sym_or2] = ACTIONS(1870), + [anon_sym_not_DASHin2] = ACTIONS(1870), + [anon_sym_has2] = ACTIONS(1870), + [anon_sym_not_DASHhas2] = ACTIONS(1870), + [anon_sym_starts_DASHwith2] = ACTIONS(1870), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), + [anon_sym_ends_DASHwith2] = ACTIONS(1870), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), + [anon_sym_EQ_EQ2] = ACTIONS(1870), + [anon_sym_BANG_EQ2] = ACTIONS(1870), + [anon_sym_LT2] = ACTIONS(1872), + [anon_sym_LT_EQ2] = ACTIONS(1870), + [anon_sym_GT_EQ2] = ACTIONS(1870), + [anon_sym_EQ_TILDE2] = ACTIONS(1870), + [anon_sym_BANG_TILDE2] = ACTIONS(1870), + [anon_sym_like2] = ACTIONS(1870), + [anon_sym_not_DASHlike2] = ACTIONS(1870), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_STAR_STAR2] = ACTIONS(1870), + [anon_sym_PLUS_PLUS2] = ACTIONS(1870), + [anon_sym_SLASH2] = ACTIONS(1872), + [anon_sym_mod2] = ACTIONS(1870), + [anon_sym_SLASH_SLASH2] = ACTIONS(1870), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_bit_DASHshl2] = ACTIONS(1870), + [anon_sym_bit_DASHshr2] = ACTIONS(1870), + [anon_sym_bit_DASHand2] = ACTIONS(1870), + [anon_sym_bit_DASHxor2] = ACTIONS(1870), + [anon_sym_bit_DASHor2] = ACTIONS(1870), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1870), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1870), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1870), + [anon_sym_out_GT_GT] = ACTIONS(1870), + [anon_sym_e_GT_GT] = ACTIONS(1870), + [anon_sym_o_GT_GT] = ACTIONS(1870), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), + [sym__unquoted_pattern] = ACTIONS(1872), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(484)] = { - [sym_cell_path] = STATE(869), - [sym_path] = STATE(454), - [sym_comment] = STATE(484), - [aux_sym__where_predicate_lhs_repeat1] = STATE(429), - [anon_sym_in] = ACTIONS(1872), - [sym__newline] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1872), - [anon_sym_PIPE] = ACTIONS(1872), - [anon_sym_err_GT_PIPE] = ACTIONS(1872), - [anon_sym_out_GT_PIPE] = ACTIONS(1872), - [anon_sym_e_GT_PIPE] = ACTIONS(1872), - [anon_sym_o_GT_PIPE] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1872), - [anon_sym_RPAREN] = ACTIONS(1872), - [anon_sym_GT2] = ACTIONS(1874), - [anon_sym_DASH2] = ACTIONS(1872), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_RBRACE] = ACTIONS(1872), - [anon_sym_EQ_GT] = ACTIONS(1872), - [anon_sym_STAR2] = ACTIONS(1874), - [anon_sym_and2] = ACTIONS(1872), - [anon_sym_xor2] = ACTIONS(1872), - [anon_sym_or2] = ACTIONS(1872), - [anon_sym_not_DASHin2] = ACTIONS(1872), - [anon_sym_has2] = ACTIONS(1872), - [anon_sym_not_DASHhas2] = ACTIONS(1872), - [anon_sym_starts_DASHwith2] = ACTIONS(1872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1872), - [anon_sym_ends_DASHwith2] = ACTIONS(1872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1872), - [anon_sym_EQ_EQ2] = ACTIONS(1872), - [anon_sym_BANG_EQ2] = ACTIONS(1872), - [anon_sym_LT2] = ACTIONS(1874), - [anon_sym_LT_EQ2] = ACTIONS(1872), - [anon_sym_GT_EQ2] = ACTIONS(1872), - [anon_sym_EQ_TILDE2] = ACTIONS(1872), - [anon_sym_BANG_TILDE2] = ACTIONS(1872), - [anon_sym_like2] = ACTIONS(1872), - [anon_sym_not_DASHlike2] = ACTIONS(1872), - [anon_sym_STAR_STAR2] = ACTIONS(1872), - [anon_sym_PLUS_PLUS2] = ACTIONS(1872), - [anon_sym_SLASH2] = ACTIONS(1874), - [anon_sym_mod2] = ACTIONS(1872), - [anon_sym_SLASH_SLASH2] = ACTIONS(1872), - [anon_sym_PLUS2] = ACTIONS(1874), - [anon_sym_bit_DASHshl2] = ACTIONS(1872), - [anon_sym_bit_DASHshr2] = ACTIONS(1872), - [anon_sym_bit_DASHand2] = ACTIONS(1872), - [anon_sym_bit_DASHxor2] = ACTIONS(1872), - [anon_sym_bit_DASHor2] = ACTIONS(1872), - [anon_sym_DOT2] = ACTIONS(1860), - [anon_sym_err_GT] = ACTIONS(1874), - [anon_sym_out_GT] = ACTIONS(1874), - [anon_sym_e_GT] = ACTIONS(1874), - [anon_sym_o_GT] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT] = ACTIONS(1874), - [anon_sym_err_GT_GT] = ACTIONS(1872), - [anon_sym_out_GT_GT] = ACTIONS(1872), - [anon_sym_e_GT_GT] = ACTIONS(1872), - [anon_sym_o_GT_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1872), + [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(485)] = { - [sym_comment] = STATE(485), - [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), + [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(486)] = { - [sym_comment] = STATE(486), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_in] = ACTIONS(1876), - [sym__newline] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_err_GT_PIPE] = ACTIONS(1876), - [anon_sym_out_GT_PIPE] = ACTIONS(1876), - [anon_sym_e_GT_PIPE] = ACTIONS(1876), - [anon_sym_o_GT_PIPE] = ACTIONS(1876), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1876), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1876), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1876), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1876), - [anon_sym_RPAREN] = ACTIONS(1876), - [anon_sym_GT2] = ACTIONS(1878), - [anon_sym_DASH2] = ACTIONS(1876), - [anon_sym_LBRACE] = ACTIONS(1876), - [anon_sym_RBRACE] = ACTIONS(1876), - [anon_sym_EQ_GT] = ACTIONS(1876), - [anon_sym_STAR2] = ACTIONS(1878), - [anon_sym_and2] = ACTIONS(1876), - [anon_sym_xor2] = ACTIONS(1876), - [anon_sym_or2] = ACTIONS(1876), - [anon_sym_not_DASHin2] = ACTIONS(1876), - [anon_sym_has2] = ACTIONS(1876), - [anon_sym_not_DASHhas2] = ACTIONS(1876), - [anon_sym_starts_DASHwith2] = ACTIONS(1876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1876), - [anon_sym_ends_DASHwith2] = ACTIONS(1876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1876), - [anon_sym_EQ_EQ2] = ACTIONS(1876), - [anon_sym_BANG_EQ2] = ACTIONS(1876), - [anon_sym_LT2] = ACTIONS(1878), - [anon_sym_LT_EQ2] = ACTIONS(1876), - [anon_sym_GT_EQ2] = ACTIONS(1876), - [anon_sym_EQ_TILDE2] = ACTIONS(1876), - [anon_sym_BANG_TILDE2] = ACTIONS(1876), - [anon_sym_like2] = ACTIONS(1876), - [anon_sym_not_DASHlike2] = ACTIONS(1876), - [anon_sym_STAR_STAR2] = ACTIONS(1876), - [anon_sym_PLUS_PLUS2] = ACTIONS(1876), - [anon_sym_SLASH2] = ACTIONS(1878), - [anon_sym_mod2] = ACTIONS(1876), - [anon_sym_SLASH_SLASH2] = ACTIONS(1876), - [anon_sym_PLUS2] = ACTIONS(1878), - [anon_sym_bit_DASHshl2] = ACTIONS(1876), - [anon_sym_bit_DASHshr2] = ACTIONS(1876), - [anon_sym_bit_DASHand2] = ACTIONS(1876), - [anon_sym_bit_DASHxor2] = ACTIONS(1876), - [anon_sym_bit_DASHor2] = ACTIONS(1876), - [anon_sym_DOT_DOT2] = ACTIONS(1878), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1876), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1876), - [anon_sym_err_GT] = ACTIONS(1878), - [anon_sym_out_GT] = ACTIONS(1878), - [anon_sym_e_GT] = ACTIONS(1878), - [anon_sym_o_GT] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT] = ACTIONS(1878), - [anon_sym_err_GT_GT] = ACTIONS(1876), - [anon_sym_out_GT_GT] = ACTIONS(1876), - [anon_sym_e_GT_GT] = ACTIONS(1876), - [anon_sym_o_GT_GT] = ACTIONS(1876), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1876), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1876), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1876), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1876), + [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), + [anon_sym_PIPE] = ACTIONS(1878), + [anon_sym_err_GT_PIPE] = ACTIONS(1878), + [anon_sym_out_GT_PIPE] = ACTIONS(1878), + [anon_sym_e_GT_PIPE] = ACTIONS(1878), + [anon_sym_o_GT_PIPE] = ACTIONS(1878), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1878), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1878), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1878), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1878), + [anon_sym_RPAREN] = ACTIONS(1878), + [anon_sym_GT2] = ACTIONS(1880), + [anon_sym_DASH2] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_EQ_GT] = ACTIONS(1878), + [anon_sym_STAR2] = ACTIONS(1880), + [anon_sym_and2] = ACTIONS(1878), + [anon_sym_xor2] = ACTIONS(1878), + [anon_sym_or2] = ACTIONS(1878), + [anon_sym_not_DASHin2] = ACTIONS(1878), + [anon_sym_has2] = ACTIONS(1878), + [anon_sym_not_DASHhas2] = ACTIONS(1878), + [anon_sym_starts_DASHwith2] = ACTIONS(1878), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1878), + [anon_sym_ends_DASHwith2] = ACTIONS(1878), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1878), + [anon_sym_EQ_EQ2] = ACTIONS(1878), + [anon_sym_BANG_EQ2] = ACTIONS(1878), + [anon_sym_LT2] = ACTIONS(1880), + [anon_sym_LT_EQ2] = ACTIONS(1878), + [anon_sym_GT_EQ2] = ACTIONS(1878), + [anon_sym_EQ_TILDE2] = ACTIONS(1878), + [anon_sym_BANG_TILDE2] = ACTIONS(1878), + [anon_sym_like2] = ACTIONS(1878), + [anon_sym_not_DASHlike2] = ACTIONS(1878), + [anon_sym_STAR_STAR2] = ACTIONS(1878), + [anon_sym_PLUS_PLUS2] = ACTIONS(1878), + [anon_sym_SLASH2] = ACTIONS(1880), + [anon_sym_mod2] = ACTIONS(1878), + [anon_sym_SLASH_SLASH2] = ACTIONS(1878), + [anon_sym_PLUS2] = ACTIONS(1880), + [anon_sym_bit_DASHshl2] = ACTIONS(1878), + [anon_sym_bit_DASHshr2] = ACTIONS(1878), + [anon_sym_bit_DASHand2] = ACTIONS(1878), + [anon_sym_bit_DASHxor2] = ACTIONS(1878), + [anon_sym_bit_DASHor2] = ACTIONS(1878), + [anon_sym_DOT_DOT2] = ACTIONS(1880), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1878), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1878), + [anon_sym_err_GT] = ACTIONS(1880), + [anon_sym_out_GT] = ACTIONS(1880), + [anon_sym_e_GT] = ACTIONS(1880), + [anon_sym_o_GT] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT] = ACTIONS(1880), + [anon_sym_err_GT_GT] = ACTIONS(1878), + [anon_sym_out_GT_GT] = ACTIONS(1878), + [anon_sym_e_GT_GT] = ACTIONS(1878), + [anon_sym_o_GT_GT] = ACTIONS(1878), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1878), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1878), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1878), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1878), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(487)] = { - [sym_cell_path] = STATE(784), - [sym_path] = STATE(454), - [sym_comment] = STATE(487), - [aux_sym__where_predicate_lhs_repeat1] = STATE(429), - [anon_sym_in] = ACTIONS(1880), - [sym__newline] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1880), - [anon_sym_err_GT_PIPE] = ACTIONS(1880), - [anon_sym_out_GT_PIPE] = ACTIONS(1880), - [anon_sym_e_GT_PIPE] = ACTIONS(1880), - [anon_sym_o_GT_PIPE] = ACTIONS(1880), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1880), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1880), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1880), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1880), - [anon_sym_RPAREN] = ACTIONS(1880), - [anon_sym_GT2] = ACTIONS(1882), - [anon_sym_DASH2] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(1880), - [anon_sym_RBRACE] = ACTIONS(1880), - [anon_sym_EQ_GT] = ACTIONS(1880), - [anon_sym_STAR2] = ACTIONS(1882), - [anon_sym_and2] = ACTIONS(1880), - [anon_sym_xor2] = ACTIONS(1880), - [anon_sym_or2] = ACTIONS(1880), - [anon_sym_not_DASHin2] = ACTIONS(1880), - [anon_sym_has2] = ACTIONS(1880), - [anon_sym_not_DASHhas2] = ACTIONS(1880), - [anon_sym_starts_DASHwith2] = ACTIONS(1880), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1880), - [anon_sym_ends_DASHwith2] = ACTIONS(1880), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1880), - [anon_sym_EQ_EQ2] = ACTIONS(1880), - [anon_sym_BANG_EQ2] = ACTIONS(1880), - [anon_sym_LT2] = ACTIONS(1882), - [anon_sym_LT_EQ2] = ACTIONS(1880), - [anon_sym_GT_EQ2] = ACTIONS(1880), - [anon_sym_EQ_TILDE2] = ACTIONS(1880), - [anon_sym_BANG_TILDE2] = ACTIONS(1880), - [anon_sym_like2] = ACTIONS(1880), - [anon_sym_not_DASHlike2] = ACTIONS(1880), - [anon_sym_STAR_STAR2] = ACTIONS(1880), - [anon_sym_PLUS_PLUS2] = ACTIONS(1880), - [anon_sym_SLASH2] = ACTIONS(1882), - [anon_sym_mod2] = ACTIONS(1880), - [anon_sym_SLASH_SLASH2] = ACTIONS(1880), - [anon_sym_PLUS2] = ACTIONS(1882), - [anon_sym_bit_DASHshl2] = ACTIONS(1880), - [anon_sym_bit_DASHshr2] = ACTIONS(1880), - [anon_sym_bit_DASHand2] = ACTIONS(1880), - [anon_sym_bit_DASHxor2] = ACTIONS(1880), - [anon_sym_bit_DASHor2] = ACTIONS(1880), - [anon_sym_DOT2] = ACTIONS(1860), - [anon_sym_err_GT] = ACTIONS(1882), - [anon_sym_out_GT] = ACTIONS(1882), - [anon_sym_e_GT] = ACTIONS(1882), - [anon_sym_o_GT] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT] = ACTIONS(1882), - [anon_sym_err_GT_GT] = ACTIONS(1880), - [anon_sym_out_GT_GT] = ACTIONS(1880), - [anon_sym_e_GT_GT] = ACTIONS(1880), - [anon_sym_o_GT_GT] = ACTIONS(1880), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1880), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1880), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1880), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1880), + [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(488)] = { - [sym_comment] = STATE(488), - [ts_builtin_sym_end] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1754), - [sym__newline] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_err_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_GT_PIPE] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), - [anon_sym_GT2] = ACTIONS(1756), - [anon_sym_DASH2] = ACTIONS(1754), - [anon_sym_STAR2] = ACTIONS(1756), - [anon_sym_and2] = ACTIONS(1754), - [anon_sym_xor2] = ACTIONS(1754), - [anon_sym_or2] = ACTIONS(1754), - [anon_sym_not_DASHin2] = ACTIONS(1754), - [anon_sym_has2] = ACTIONS(1754), - [anon_sym_not_DASHhas2] = ACTIONS(1754), - [anon_sym_starts_DASHwith2] = ACTIONS(1754), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1754), - [anon_sym_ends_DASHwith2] = ACTIONS(1754), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1754), - [anon_sym_EQ_EQ2] = ACTIONS(1754), - [anon_sym_BANG_EQ2] = ACTIONS(1754), - [anon_sym_LT2] = ACTIONS(1756), - [anon_sym_LT_EQ2] = ACTIONS(1754), - [anon_sym_GT_EQ2] = ACTIONS(1754), - [anon_sym_EQ_TILDE2] = ACTIONS(1754), - [anon_sym_BANG_TILDE2] = ACTIONS(1754), - [anon_sym_like2] = ACTIONS(1754), - [anon_sym_not_DASHlike2] = ACTIONS(1754), - [anon_sym_LPAREN2] = ACTIONS(1754), - [anon_sym_STAR_STAR2] = ACTIONS(1754), - [anon_sym_PLUS_PLUS2] = ACTIONS(1754), - [anon_sym_SLASH2] = ACTIONS(1756), - [anon_sym_mod2] = ACTIONS(1754), - [anon_sym_SLASH_SLASH2] = ACTIONS(1754), - [anon_sym_PLUS2] = ACTIONS(1756), - [anon_sym_bit_DASHshl2] = ACTIONS(1754), - [anon_sym_bit_DASHshr2] = ACTIONS(1754), - [anon_sym_bit_DASHand2] = ACTIONS(1754), - [anon_sym_bit_DASHxor2] = ACTIONS(1754), - [anon_sym_bit_DASHor2] = ACTIONS(1754), - [anon_sym_DOT_DOT2] = ACTIONS(1756), - [anon_sym_DOT] = ACTIONS(1884), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1754), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1754), - [aux_sym__immediate_decimal_token5] = ACTIONS(1886), - [anon_sym_err_GT] = ACTIONS(1756), - [anon_sym_out_GT] = ACTIONS(1756), - [anon_sym_e_GT] = ACTIONS(1756), - [anon_sym_o_GT] = ACTIONS(1756), - [anon_sym_err_PLUSout_GT] = ACTIONS(1756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), - [anon_sym_o_PLUSe_GT] = ACTIONS(1756), - [anon_sym_e_PLUSo_GT] = ACTIONS(1756), - [anon_sym_err_GT_GT] = ACTIONS(1754), - [anon_sym_out_GT_GT] = ACTIONS(1754), - [anon_sym_e_GT_GT] = ACTIONS(1754), - [anon_sym_o_GT_GT] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), - [sym__unquoted_pattern] = ACTIONS(1756), + [STATE(493)] = { + [sym_cell_path] = STATE(932), + [sym_path] = STATE(458), + [sym_comment] = STATE(493), + [aux_sym__where_predicate_lhs_repeat1] = STATE(427), + [anon_sym_in] = ACTIONS(1882), + [sym__newline] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_err_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_GT_PIPE] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_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(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(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), + [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(489)] = { - [sym_cell_path] = STATE(930), - [sym_path] = STATE(454), - [sym_comment] = STATE(489), - [aux_sym__where_predicate_lhs_repeat1] = STATE(429), + [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), @@ -85734,7 +86503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1888), [anon_sym_bit_DASHxor2] = ACTIONS(1888), [anon_sym_bit_DASHor2] = ACTIONS(1888), - [anon_sym_DOT2] = ACTIONS(1860), + [anon_sym_DOT2] = ACTIONS(1866), [anon_sym_err_GT] = ACTIONS(1890), [anon_sym_out_GT] = ACTIONS(1890), [anon_sym_e_GT] = ACTIONS(1890), @@ -85753,378 +86522,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1888), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(490)] = { - [sym_comment] = STATE(490), - [anon_sym_in] = ACTIONS(1746), - [sym__newline] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_err_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_GT_PIPE] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_GT2] = ACTIONS(1748), - [anon_sym_DASH2] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_STAR2] = ACTIONS(1748), - [anon_sym_and2] = ACTIONS(1746), - [anon_sym_xor2] = ACTIONS(1746), - [anon_sym_or2] = ACTIONS(1746), - [anon_sym_not_DASHin2] = ACTIONS(1746), - [anon_sym_has2] = ACTIONS(1746), - [anon_sym_not_DASHhas2] = ACTIONS(1746), - [anon_sym_starts_DASHwith2] = ACTIONS(1746), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1746), - [anon_sym_ends_DASHwith2] = ACTIONS(1746), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1746), - [anon_sym_EQ_EQ2] = ACTIONS(1746), - [anon_sym_BANG_EQ2] = ACTIONS(1746), - [anon_sym_LT2] = ACTIONS(1748), - [anon_sym_LT_EQ2] = ACTIONS(1746), - [anon_sym_GT_EQ2] = ACTIONS(1746), - [anon_sym_EQ_TILDE2] = ACTIONS(1746), - [anon_sym_BANG_TILDE2] = ACTIONS(1746), - [anon_sym_like2] = ACTIONS(1746), - [anon_sym_not_DASHlike2] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1746), - [anon_sym_STAR_STAR2] = ACTIONS(1746), - [anon_sym_PLUS_PLUS2] = ACTIONS(1746), - [anon_sym_SLASH2] = ACTIONS(1748), - [anon_sym_mod2] = ACTIONS(1746), - [anon_sym_SLASH_SLASH2] = ACTIONS(1746), - [anon_sym_PLUS2] = ACTIONS(1748), - [anon_sym_bit_DASHshl2] = ACTIONS(1746), - [anon_sym_bit_DASHshr2] = ACTIONS(1746), - [anon_sym_bit_DASHand2] = ACTIONS(1746), - [anon_sym_bit_DASHxor2] = ACTIONS(1746), - [anon_sym_bit_DASHor2] = ACTIONS(1746), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1746), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1746), - [anon_sym_err_GT] = ACTIONS(1748), - [anon_sym_out_GT] = ACTIONS(1748), - [anon_sym_e_GT] = ACTIONS(1748), - [anon_sym_o_GT] = ACTIONS(1748), - [anon_sym_err_PLUSout_GT] = ACTIONS(1748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1748), - [anon_sym_o_PLUSe_GT] = ACTIONS(1748), - [anon_sym_e_PLUSo_GT] = ACTIONS(1748), - [anon_sym_err_GT_GT] = ACTIONS(1746), - [anon_sym_out_GT_GT] = ACTIONS(1746), - [anon_sym_e_GT_GT] = ACTIONS(1746), - [anon_sym_o_GT_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), - [sym__unquoted_pattern] = ACTIONS(1748), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(491)] = { - [sym_cmd_identifier] = STATE(4141), - [sym_expr_parenthesized] = STATE(5138), - [sym__spread_parenthesized] = STATE(4677), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(4334), - [sym_val_number] = STATE(5138), - [sym__val_number_decimal] = STATE(1947), - [sym__val_number] = STATE(700), - [sym_val_string] = STATE(5138), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_interpolated] = STATE(5138), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym__spread_record] = STATE(4677), - [sym_record_entry] = STATE(4530), - [sym__record_key] = STATE(4944), - [sym_comment] = STATE(491), - [aux_sym__types_body_repeat1] = STATE(1494), - [aux_sym__match_pattern_record_body_repeat1] = STATE(889), - [aux_sym_record_body_repeat1] = STATE(871), - [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(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1780), - [aux_sym_cmd_identifier_token4] = ACTIONS(1780), - [aux_sym_cmd_identifier_token5] = ACTIONS(1780), - [sym__newline] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1786), - [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(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), - [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(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), - [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(1802), - }, - [STATE(492)] = { - [sym_comment] = STATE(492), - [anon_sym_in] = ACTIONS(1812), - [sym__newline] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_err_GT_PIPE] = ACTIONS(1812), - [anon_sym_out_GT_PIPE] = ACTIONS(1812), - [anon_sym_e_GT_PIPE] = ACTIONS(1812), - [anon_sym_o_GT_PIPE] = ACTIONS(1812), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1812), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1812), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1812), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_GT2] = ACTIONS(1814), - [anon_sym_DASH2] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1812), - [anon_sym_STAR2] = ACTIONS(1814), - [anon_sym_and2] = ACTIONS(1812), - [anon_sym_xor2] = ACTIONS(1812), - [anon_sym_or2] = ACTIONS(1812), - [anon_sym_not_DASHin2] = ACTIONS(1812), - [anon_sym_has2] = ACTIONS(1812), - [anon_sym_not_DASHhas2] = ACTIONS(1812), - [anon_sym_starts_DASHwith2] = ACTIONS(1812), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1812), - [anon_sym_ends_DASHwith2] = ACTIONS(1812), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1812), - [anon_sym_EQ_EQ2] = ACTIONS(1812), - [anon_sym_BANG_EQ2] = ACTIONS(1812), - [anon_sym_LT2] = ACTIONS(1814), - [anon_sym_LT_EQ2] = ACTIONS(1812), - [anon_sym_GT_EQ2] = ACTIONS(1812), - [anon_sym_EQ_TILDE2] = ACTIONS(1812), - [anon_sym_BANG_TILDE2] = ACTIONS(1812), - [anon_sym_like2] = ACTIONS(1812), - [anon_sym_not_DASHlike2] = ACTIONS(1812), - [anon_sym_LPAREN2] = ACTIONS(1812), - [anon_sym_STAR_STAR2] = ACTIONS(1812), - [anon_sym_PLUS_PLUS2] = ACTIONS(1812), - [anon_sym_SLASH2] = ACTIONS(1814), - [anon_sym_mod2] = ACTIONS(1812), - [anon_sym_SLASH_SLASH2] = ACTIONS(1812), - [anon_sym_PLUS2] = ACTIONS(1814), - [anon_sym_bit_DASHshl2] = ACTIONS(1812), - [anon_sym_bit_DASHshr2] = ACTIONS(1812), - [anon_sym_bit_DASHand2] = ACTIONS(1812), - [anon_sym_bit_DASHxor2] = ACTIONS(1812), - [anon_sym_bit_DASHor2] = ACTIONS(1812), - [anon_sym_DOT_DOT2] = ACTIONS(1814), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1812), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1812), - [anon_sym_err_GT] = ACTIONS(1814), - [anon_sym_out_GT] = ACTIONS(1814), - [anon_sym_e_GT] = ACTIONS(1814), - [anon_sym_o_GT] = ACTIONS(1814), - [anon_sym_err_PLUSout_GT] = ACTIONS(1814), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1814), - [anon_sym_o_PLUSe_GT] = ACTIONS(1814), - [anon_sym_e_PLUSo_GT] = ACTIONS(1814), - [anon_sym_err_GT_GT] = ACTIONS(1812), - [anon_sym_out_GT_GT] = ACTIONS(1812), - [anon_sym_e_GT_GT] = ACTIONS(1812), - [anon_sym_o_GT_GT] = ACTIONS(1812), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1812), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1812), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1812), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1812), - [sym__unquoted_pattern] = ACTIONS(1814), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(493)] = { - [sym_comment] = STATE(493), - [ts_builtin_sym_end] = ACTIONS(791), - [anon_sym_in] = ACTIONS(791), - [sym__newline] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_GT2] = ACTIONS(789), - [anon_sym_DASH2] = ACTIONS(791), - [anon_sym_STAR2] = ACTIONS(789), - [anon_sym_and2] = ACTIONS(791), - [anon_sym_xor2] = ACTIONS(791), - [anon_sym_or2] = ACTIONS(791), - [anon_sym_not_DASHin2] = ACTIONS(791), - [anon_sym_has2] = ACTIONS(791), - [anon_sym_not_DASHhas2] = ACTIONS(791), - [anon_sym_starts_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), - [anon_sym_ends_DASHwith2] = ACTIONS(791), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), - [anon_sym_EQ_EQ2] = ACTIONS(791), - [anon_sym_BANG_EQ2] = ACTIONS(791), - [anon_sym_LT2] = ACTIONS(789), - [anon_sym_LT_EQ2] = ACTIONS(791), - [anon_sym_GT_EQ2] = ACTIONS(791), - [anon_sym_EQ_TILDE2] = ACTIONS(791), - [anon_sym_BANG_TILDE2] = ACTIONS(791), - [anon_sym_like2] = ACTIONS(791), - [anon_sym_not_DASHlike2] = ACTIONS(791), - [anon_sym_LPAREN2] = ACTIONS(791), - [anon_sym_STAR_STAR2] = ACTIONS(791), - [anon_sym_PLUS_PLUS2] = ACTIONS(791), - [anon_sym_SLASH2] = ACTIONS(789), - [anon_sym_mod2] = ACTIONS(791), - [anon_sym_SLASH_SLASH2] = ACTIONS(791), - [anon_sym_PLUS2] = ACTIONS(789), - [anon_sym_bit_DASHshl2] = ACTIONS(791), - [anon_sym_bit_DASHshr2] = ACTIONS(791), - [anon_sym_bit_DASHand2] = ACTIONS(791), - [anon_sym_bit_DASHxor2] = ACTIONS(791), - [anon_sym_bit_DASHor2] = ACTIONS(791), - [anon_sym_DOT_DOT2] = ACTIONS(789), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), - [anon_sym_DOT_DOT_LT2] = ACTIONS(791), - [sym_filesize_unit] = ACTIONS(789), - [sym_duration_unit] = ACTIONS(791), - [anon_sym_err_GT] = ACTIONS(789), - [anon_sym_out_GT] = ACTIONS(789), - [anon_sym_e_GT] = ACTIONS(789), - [anon_sym_o_GT] = ACTIONS(789), - [anon_sym_err_PLUSout_GT] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT] = ACTIONS(789), - [anon_sym_o_PLUSe_GT] = ACTIONS(789), - [anon_sym_e_PLUSo_GT] = ACTIONS(789), - [anon_sym_err_GT_GT] = ACTIONS(791), - [anon_sym_out_GT_GT] = ACTIONS(791), - [anon_sym_e_GT_GT] = ACTIONS(791), - [anon_sym_o_GT_GT] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), - [sym__unquoted_pattern] = ACTIONS(789), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(494)] = { - [sym_cell_path] = STATE(910), - [sym_path] = STATE(791), - [sym_comment] = STATE(494), - [aux_sym__where_predicate_lhs_repeat1] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(1452), - [anon_sym_in] = ACTIONS(1452), - [sym__newline] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_err_GT_PIPE] = ACTIONS(1452), - [anon_sym_out_GT_PIPE] = ACTIONS(1452), - [anon_sym_e_GT_PIPE] = ACTIONS(1452), - [anon_sym_o_GT_PIPE] = ACTIONS(1452), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), - [anon_sym_GT2] = ACTIONS(1450), - [anon_sym_DASH2] = ACTIONS(1452), - [anon_sym_STAR2] = ACTIONS(1450), - [anon_sym_and2] = ACTIONS(1452), - [anon_sym_xor2] = ACTIONS(1452), - [anon_sym_or2] = ACTIONS(1452), - [anon_sym_not_DASHin2] = ACTIONS(1452), - [anon_sym_has2] = ACTIONS(1452), - [anon_sym_not_DASHhas2] = ACTIONS(1452), - [anon_sym_starts_DASHwith2] = ACTIONS(1452), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), - [anon_sym_ends_DASHwith2] = ACTIONS(1452), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), - [anon_sym_EQ_EQ2] = ACTIONS(1452), - [anon_sym_BANG_EQ2] = ACTIONS(1452), - [anon_sym_LT2] = ACTIONS(1450), - [anon_sym_LT_EQ2] = ACTIONS(1452), - [anon_sym_GT_EQ2] = ACTIONS(1452), - [anon_sym_EQ_TILDE2] = ACTIONS(1452), - [anon_sym_BANG_TILDE2] = ACTIONS(1452), - [anon_sym_like2] = ACTIONS(1452), - [anon_sym_not_DASHlike2] = ACTIONS(1452), - [anon_sym_STAR_STAR2] = ACTIONS(1452), - [anon_sym_PLUS_PLUS2] = ACTIONS(1452), - [anon_sym_SLASH2] = ACTIONS(1450), - [anon_sym_mod2] = ACTIONS(1452), - [anon_sym_SLASH_SLASH2] = ACTIONS(1452), - [anon_sym_PLUS2] = ACTIONS(1450), - [anon_sym_bit_DASHshl2] = ACTIONS(1452), - [anon_sym_bit_DASHshr2] = ACTIONS(1452), - [anon_sym_bit_DASHand2] = ACTIONS(1452), - [anon_sym_bit_DASHxor2] = ACTIONS(1452), - [anon_sym_bit_DASHor2] = ACTIONS(1452), - [anon_sym_DOT_DOT2] = ACTIONS(1450), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), - [anon_sym_DOT2] = ACTIONS(1854), - [anon_sym_err_GT] = ACTIONS(1450), - [anon_sym_out_GT] = ACTIONS(1450), - [anon_sym_e_GT] = ACTIONS(1450), - [anon_sym_o_GT] = ACTIONS(1450), - [anon_sym_err_PLUSout_GT] = ACTIONS(1450), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), - [anon_sym_o_PLUSe_GT] = ACTIONS(1450), - [anon_sym_e_PLUSo_GT] = ACTIONS(1450), - [anon_sym_err_GT_GT] = ACTIONS(1452), - [anon_sym_out_GT_GT] = ACTIONS(1452), - [anon_sym_e_GT_GT] = ACTIONS(1452), - [anon_sym_o_GT_GT] = ACTIONS(1452), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(495)] = { - [sym_cell_path] = STATE(938), - [sym_path] = STATE(454), - [sym_comment] = STATE(495), - [aux_sym__where_predicate_lhs_repeat1] = STATE(429), - [anon_sym_in] = ACTIONS(1892), - [sym__newline] = ACTIONS(1892), + [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(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), @@ -86172,7 +86720,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1892), [anon_sym_bit_DASHxor2] = ACTIONS(1892), [anon_sym_bit_DASHor2] = ACTIONS(1892), - [anon_sym_DOT2] = ACTIONS(1860), + [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), @@ -86191,227 +86741,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(496)] = { - [sym_comment] = STATE(496), - [ts_builtin_sym_end] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [sym__newline] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_err_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_GT_PIPE] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1746), - [anon_sym_GT2] = ACTIONS(1748), - [anon_sym_DASH2] = ACTIONS(1746), - [anon_sym_STAR2] = ACTIONS(1748), - [anon_sym_and2] = ACTIONS(1746), - [anon_sym_xor2] = ACTIONS(1746), - [anon_sym_or2] = ACTIONS(1746), - [anon_sym_not_DASHin2] = ACTIONS(1746), - [anon_sym_has2] = ACTIONS(1746), - [anon_sym_not_DASHhas2] = ACTIONS(1746), - [anon_sym_starts_DASHwith2] = ACTIONS(1746), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1746), - [anon_sym_ends_DASHwith2] = ACTIONS(1746), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1746), - [anon_sym_EQ_EQ2] = ACTIONS(1746), - [anon_sym_BANG_EQ2] = ACTIONS(1746), - [anon_sym_LT2] = ACTIONS(1748), - [anon_sym_LT_EQ2] = ACTIONS(1746), - [anon_sym_GT_EQ2] = ACTIONS(1746), - [anon_sym_EQ_TILDE2] = ACTIONS(1746), - [anon_sym_BANG_TILDE2] = ACTIONS(1746), - [anon_sym_like2] = ACTIONS(1746), - [anon_sym_not_DASHlike2] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1746), - [anon_sym_STAR_STAR2] = ACTIONS(1746), - [anon_sym_PLUS_PLUS2] = ACTIONS(1746), - [anon_sym_SLASH2] = ACTIONS(1748), - [anon_sym_mod2] = ACTIONS(1746), - [anon_sym_SLASH_SLASH2] = ACTIONS(1746), - [anon_sym_PLUS2] = ACTIONS(1748), - [anon_sym_bit_DASHshl2] = ACTIONS(1746), - [anon_sym_bit_DASHshr2] = ACTIONS(1746), - [anon_sym_bit_DASHand2] = ACTIONS(1746), - [anon_sym_bit_DASHxor2] = ACTIONS(1746), - [anon_sym_bit_DASHor2] = ACTIONS(1746), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1746), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1746), - [aux_sym__immediate_decimal_token1] = ACTIONS(1896), - [aux_sym__immediate_decimal_token5] = ACTIONS(1898), - [anon_sym_err_GT] = ACTIONS(1748), - [anon_sym_out_GT] = ACTIONS(1748), - [anon_sym_e_GT] = ACTIONS(1748), - [anon_sym_o_GT] = ACTIONS(1748), - [anon_sym_err_PLUSout_GT] = ACTIONS(1748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1748), - [anon_sym_o_PLUSe_GT] = ACTIONS(1748), - [anon_sym_e_PLUSo_GT] = ACTIONS(1748), - [anon_sym_err_GT_GT] = ACTIONS(1746), - [anon_sym_out_GT_GT] = ACTIONS(1746), - [anon_sym_e_GT_GT] = ACTIONS(1746), - [anon_sym_o_GT_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), - [sym__unquoted_pattern] = ACTIONS(1748), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(497)] = { - [sym_comment] = STATE(497), - [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_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_LPAREN2] = 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_DOT_DOT2] = ACTIONS(1902), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1900), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1900), - [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), - [sym__unquoted_pattern] = ACTIONS(1902), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(498)] = { - [sym_cell_path] = STATE(957), - [sym_path] = STATE(791), - [sym_comment] = STATE(498), - [aux_sym__where_predicate_lhs_repeat1] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(1687), - [anon_sym_in] = ACTIONS(1687), - [sym__newline] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_err_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_GT_PIPE] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), - [anon_sym_GT2] = ACTIONS(1689), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_STAR2] = ACTIONS(1689), - [anon_sym_and2] = ACTIONS(1687), - [anon_sym_xor2] = ACTIONS(1687), - [anon_sym_or2] = ACTIONS(1687), - [anon_sym_not_DASHin2] = ACTIONS(1687), - [anon_sym_has2] = ACTIONS(1687), - [anon_sym_not_DASHhas2] = ACTIONS(1687), - [anon_sym_starts_DASHwith2] = ACTIONS(1687), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1687), - [anon_sym_ends_DASHwith2] = ACTIONS(1687), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1687), - [anon_sym_EQ_EQ2] = ACTIONS(1687), - [anon_sym_BANG_EQ2] = ACTIONS(1687), - [anon_sym_LT2] = ACTIONS(1689), - [anon_sym_LT_EQ2] = ACTIONS(1687), - [anon_sym_GT_EQ2] = ACTIONS(1687), - [anon_sym_EQ_TILDE2] = ACTIONS(1687), - [anon_sym_BANG_TILDE2] = ACTIONS(1687), - [anon_sym_like2] = ACTIONS(1687), - [anon_sym_not_DASHlike2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1687), - [anon_sym_PLUS_PLUS2] = ACTIONS(1687), - [anon_sym_SLASH2] = ACTIONS(1689), - [anon_sym_mod2] = ACTIONS(1687), - [anon_sym_SLASH_SLASH2] = ACTIONS(1687), - [anon_sym_PLUS2] = ACTIONS(1689), - [anon_sym_bit_DASHshl2] = ACTIONS(1687), - [anon_sym_bit_DASHshr2] = ACTIONS(1687), - [anon_sym_bit_DASHand2] = ACTIONS(1687), - [anon_sym_bit_DASHxor2] = ACTIONS(1687), - [anon_sym_bit_DASHor2] = ACTIONS(1687), - [anon_sym_DOT_DOT2] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), - [anon_sym_DOT2] = ACTIONS(1854), - [anon_sym_err_GT] = ACTIONS(1689), - [anon_sym_out_GT] = ACTIONS(1689), - [anon_sym_e_GT] = ACTIONS(1689), - [anon_sym_o_GT] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT] = ACTIONS(1689), - [anon_sym_err_GT_GT] = ACTIONS(1687), - [anon_sym_out_GT_GT] = ACTIONS(1687), - [anon_sym_e_GT_GT] = ACTIONS(1687), - [anon_sym_o_GT_GT] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(499)] = { [sym_comment] = STATE(499), + [ts_builtin_sym_end] = ACTIONS(773), + [anon_sym_in] = ACTIONS(773), + [sym__newline] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_err_GT_PIPE] = ACTIONS(773), + [anon_sym_out_GT_PIPE] = ACTIONS(773), + [anon_sym_e_GT_PIPE] = ACTIONS(773), + [anon_sym_o_GT_PIPE] = ACTIONS(773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(773), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(773), + [anon_sym_xor2] = ACTIONS(773), + [anon_sym_or2] = ACTIONS(773), + [anon_sym_not_DASHin2] = ACTIONS(773), + [anon_sym_has2] = ACTIONS(773), + [anon_sym_not_DASHhas2] = ACTIONS(773), + [anon_sym_starts_DASHwith2] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), + [anon_sym_ends_DASHwith2] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), + [anon_sym_EQ_EQ2] = ACTIONS(773), + [anon_sym_BANG_EQ2] = ACTIONS(773), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(773), + [anon_sym_GT_EQ2] = ACTIONS(773), + [anon_sym_EQ_TILDE2] = ACTIONS(773), + [anon_sym_BANG_TILDE2] = ACTIONS(773), + [anon_sym_like2] = ACTIONS(773), + [anon_sym_not_DASHlike2] = ACTIONS(773), + [anon_sym_LPAREN2] = ACTIONS(773), + [anon_sym_STAR_STAR2] = ACTIONS(773), + [anon_sym_PLUS_PLUS2] = ACTIONS(773), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(773), + [anon_sym_SLASH_SLASH2] = ACTIONS(773), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(773), + [anon_sym_bit_DASHshr2] = ACTIONS(773), + [anon_sym_bit_DASHand2] = ACTIONS(773), + [anon_sym_bit_DASHxor2] = ACTIONS(773), + [anon_sym_bit_DASHor2] = ACTIONS(773), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(773), + [anon_sym_out_GT_GT] = ACTIONS(773), + [anon_sym_e_GT_GT] = ACTIONS(773), + [anon_sym_o_GT_GT] = ACTIONS(773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), + [sym__unquoted_pattern] = ACTIONS(771), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(500)] = { + [sym_comment] = STATE(500), [ts_builtin_sym_end] = ACTIONS(1529), [anon_sym_in] = ACTIONS(1529), [sym__newline] = ACTIONS(1529), @@ -86483,2121 +86887,2056 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1529), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(500)] = { - [sym_comment] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1502), - [anon_sym_in] = ACTIONS(1502), - [sym__newline] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_err_GT_PIPE] = ACTIONS(1502), - [anon_sym_out_GT_PIPE] = ACTIONS(1502), - [anon_sym_e_GT_PIPE] = ACTIONS(1502), - [anon_sym_o_GT_PIPE] = ACTIONS(1502), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1502), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1502), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1502), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1502), - [anon_sym_GT2] = ACTIONS(1500), - [anon_sym_DASH2] = ACTIONS(1502), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_STAR2] = ACTIONS(1500), - [anon_sym_and2] = ACTIONS(1502), - [anon_sym_xor2] = ACTIONS(1502), - [anon_sym_or2] = ACTIONS(1502), - [anon_sym_not_DASHin2] = ACTIONS(1502), - [anon_sym_has2] = ACTIONS(1502), - [anon_sym_not_DASHhas2] = ACTIONS(1502), - [anon_sym_starts_DASHwith2] = ACTIONS(1502), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1502), - [anon_sym_ends_DASHwith2] = ACTIONS(1502), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1502), - [anon_sym_EQ_EQ2] = ACTIONS(1502), - [anon_sym_BANG_EQ2] = ACTIONS(1502), - [anon_sym_LT2] = ACTIONS(1500), - [anon_sym_LT_EQ2] = ACTIONS(1502), - [anon_sym_GT_EQ2] = ACTIONS(1502), - [anon_sym_EQ_TILDE2] = ACTIONS(1502), - [anon_sym_BANG_TILDE2] = ACTIONS(1502), - [anon_sym_like2] = ACTIONS(1502), - [anon_sym_not_DASHlike2] = ACTIONS(1502), - [anon_sym_STAR_STAR2] = ACTIONS(1502), - [anon_sym_PLUS_PLUS2] = ACTIONS(1502), - [anon_sym_SLASH2] = ACTIONS(1500), - [anon_sym_mod2] = ACTIONS(1502), - [anon_sym_SLASH_SLASH2] = ACTIONS(1502), - [anon_sym_PLUS2] = ACTIONS(1500), - [anon_sym_bit_DASHshl2] = ACTIONS(1502), - [anon_sym_bit_DASHshr2] = ACTIONS(1502), - [anon_sym_bit_DASHand2] = ACTIONS(1502), - [anon_sym_bit_DASHxor2] = ACTIONS(1502), - [anon_sym_bit_DASHor2] = ACTIONS(1502), - [anon_sym_DOT_DOT2] = ACTIONS(1500), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1502), - [anon_sym_QMARK2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_DOT2] = ACTIONS(1500), - [anon_sym_err_GT] = ACTIONS(1500), - [anon_sym_out_GT] = ACTIONS(1500), - [anon_sym_e_GT] = ACTIONS(1500), - [anon_sym_o_GT] = ACTIONS(1500), - [anon_sym_err_PLUSout_GT] = ACTIONS(1500), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1500), - [anon_sym_o_PLUSe_GT] = ACTIONS(1500), - [anon_sym_e_PLUSo_GT] = ACTIONS(1500), - [anon_sym_err_GT_GT] = ACTIONS(1502), - [anon_sym_out_GT_GT] = ACTIONS(1502), - [anon_sym_e_GT_GT] = ACTIONS(1502), - [anon_sym_o_GT_GT] = ACTIONS(1502), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1502), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1502), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1502), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1502), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(501)] = { [sym_comment] = STATE(501), - [ts_builtin_sym_end] = ACTIONS(1498), - [anon_sym_in] = ACTIONS(1498), - [sym__newline] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_err_GT_PIPE] = ACTIONS(1498), - [anon_sym_out_GT_PIPE] = ACTIONS(1498), - [anon_sym_e_GT_PIPE] = ACTIONS(1498), - [anon_sym_o_GT_PIPE] = ACTIONS(1498), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), - [anon_sym_GT2] = ACTIONS(1496), - [anon_sym_DASH2] = ACTIONS(1498), - [anon_sym_LBRACE] = 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_QMARK2] = ACTIONS(1498), - [anon_sym_BANG] = 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(1498), - [anon_sym_out_GT_GT] = ACTIONS(1498), - [anon_sym_e_GT_GT] = ACTIONS(1498), - [anon_sym_o_GT_GT] = ACTIONS(1498), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [ts_builtin_sym_end] = ACTIONS(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(1506), - [anon_sym_in] = ACTIONS(1506), - [sym__newline] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_err_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_GT_PIPE] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), - [anon_sym_GT2] = ACTIONS(1504), - [anon_sym_DASH2] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_STAR2] = ACTIONS(1504), - [anon_sym_and2] = ACTIONS(1506), - [anon_sym_xor2] = ACTIONS(1506), - [anon_sym_or2] = ACTIONS(1506), - [anon_sym_not_DASHin2] = ACTIONS(1506), - [anon_sym_has2] = ACTIONS(1506), - [anon_sym_not_DASHhas2] = ACTIONS(1506), - [anon_sym_starts_DASHwith2] = ACTIONS(1506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1506), - [anon_sym_ends_DASHwith2] = ACTIONS(1506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1506), - [anon_sym_EQ_EQ2] = ACTIONS(1506), - [anon_sym_BANG_EQ2] = ACTIONS(1506), - [anon_sym_LT2] = ACTIONS(1504), - [anon_sym_LT_EQ2] = ACTIONS(1506), - [anon_sym_GT_EQ2] = ACTIONS(1506), - [anon_sym_EQ_TILDE2] = ACTIONS(1506), - [anon_sym_BANG_TILDE2] = ACTIONS(1506), - [anon_sym_like2] = ACTIONS(1506), - [anon_sym_not_DASHlike2] = ACTIONS(1506), - [anon_sym_STAR_STAR2] = ACTIONS(1506), - [anon_sym_PLUS_PLUS2] = ACTIONS(1506), - [anon_sym_SLASH2] = ACTIONS(1504), - [anon_sym_mod2] = ACTIONS(1506), - [anon_sym_SLASH_SLASH2] = ACTIONS(1506), - [anon_sym_PLUS2] = ACTIONS(1504), - [anon_sym_bit_DASHshl2] = ACTIONS(1506), - [anon_sym_bit_DASHshr2] = ACTIONS(1506), - [anon_sym_bit_DASHand2] = ACTIONS(1506), - [anon_sym_bit_DASHxor2] = ACTIONS(1506), - [anon_sym_bit_DASHor2] = ACTIONS(1506), - [anon_sym_DOT_DOT2] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1506), - [anon_sym_QMARK2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DOT2] = ACTIONS(1504), - [anon_sym_err_GT] = ACTIONS(1504), - [anon_sym_out_GT] = ACTIONS(1504), - [anon_sym_e_GT] = ACTIONS(1504), - [anon_sym_o_GT] = ACTIONS(1504), - [anon_sym_err_PLUSout_GT] = ACTIONS(1504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1504), - [anon_sym_o_PLUSe_GT] = ACTIONS(1504), - [anon_sym_e_PLUSo_GT] = ACTIONS(1504), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), + [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), - [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), + [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)] = { - [aux_sym__repeat_newline] = STATE(512), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1135), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(504), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1922), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(505)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1136), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(764), - [sym__unquoted_with_expr] = STATE(1062), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_cell_path] = STATE(939), + [sym_path] = STATE(458), [sym_comment] = STATE(505), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1922), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(506)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1064), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(768), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(506), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1922), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(507)] = { - [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(507), - [anon_sym_else] = ACTIONS(1926), - [anon_sym_catch] = ACTIONS(1926), - [anon_sym_in] = ACTIONS(1926), - [sym__newline] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_PIPE] = ACTIONS(1926), - [anon_sym_err_GT_PIPE] = ACTIONS(1926), - [anon_sym_out_GT_PIPE] = ACTIONS(1926), - [anon_sym_e_GT_PIPE] = ACTIONS(1926), - [anon_sym_o_GT_PIPE] = ACTIONS(1926), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1926), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1926), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1926), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1926), - [anon_sym_COLON] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1926), - [anon_sym_GT2] = ACTIONS(1931), - [anon_sym_DASH2] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_STAR2] = ACTIONS(1931), - [anon_sym_and2] = ACTIONS(1926), - [anon_sym_xor2] = ACTIONS(1926), - [anon_sym_or2] = ACTIONS(1926), - [anon_sym_not_DASHin2] = ACTIONS(1926), - [anon_sym_has2] = ACTIONS(1926), - [anon_sym_not_DASHhas2] = ACTIONS(1926), - [anon_sym_starts_DASHwith2] = ACTIONS(1926), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1926), - [anon_sym_ends_DASHwith2] = ACTIONS(1926), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1926), - [anon_sym_EQ_EQ2] = ACTIONS(1926), - [anon_sym_BANG_EQ2] = ACTIONS(1926), - [anon_sym_LT2] = ACTIONS(1931), - [anon_sym_LT_EQ2] = ACTIONS(1926), - [anon_sym_GT_EQ2] = ACTIONS(1926), - [anon_sym_EQ_TILDE2] = ACTIONS(1926), - [anon_sym_BANG_TILDE2] = ACTIONS(1926), - [anon_sym_like2] = ACTIONS(1926), - [anon_sym_not_DASHlike2] = ACTIONS(1926), - [anon_sym_STAR_STAR2] = ACTIONS(1926), - [anon_sym_PLUS_PLUS2] = ACTIONS(1926), - [anon_sym_SLASH2] = ACTIONS(1931), - [anon_sym_mod2] = ACTIONS(1926), - [anon_sym_SLASH_SLASH2] = ACTIONS(1926), - [anon_sym_PLUS2] = ACTIONS(1931), - [anon_sym_bit_DASHshl2] = ACTIONS(1926), - [anon_sym_bit_DASHshr2] = ACTIONS(1926), - [anon_sym_bit_DASHand2] = ACTIONS(1926), - [anon_sym_bit_DASHxor2] = ACTIONS(1926), - [anon_sym_bit_DASHor2] = ACTIONS(1926), - [anon_sym_err_GT] = ACTIONS(1931), - [anon_sym_out_GT] = ACTIONS(1931), - [anon_sym_e_GT] = ACTIONS(1931), - [anon_sym_o_GT] = ACTIONS(1931), - [anon_sym_err_PLUSout_GT] = ACTIONS(1931), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1931), - [anon_sym_o_PLUSe_GT] = ACTIONS(1931), - [anon_sym_e_PLUSo_GT] = ACTIONS(1931), - [anon_sym_err_GT_GT] = ACTIONS(1926), - [anon_sym_out_GT_GT] = ACTIONS(1926), - [anon_sym_e_GT_GT] = ACTIONS(1926), - [anon_sym_o_GT_GT] = ACTIONS(1926), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1926), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1926), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1926), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1926), + [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_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4550), - [sym__spread_list] = STATE(4821), - [sym_val_entry] = STATE(4619), - [sym_val_record] = STATE(4550), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), [sym_comment] = STATE(508), - [aux_sym_list_body_repeat1] = STATE(509), - [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), + [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), - [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(509)] = { - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4550), - [sym__spread_list] = STATE(4821), - [sym_val_entry] = STATE(4781), - [sym_val_record] = STATE(4550), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), + [sym_cell_path] = STATE(906), + [sym_path] = STATE(458), [sym_comment] = STATE(509), - [aux_sym_list_body_repeat1] = STATE(509), - [anon_sym_true] = ACTIONS(1933), - [anon_sym_false] = ACTIONS(1933), - [anon_sym_null] = ACTIONS(1936), - [aux_sym_cmd_identifier_token3] = ACTIONS(1939), - [aux_sym_cmd_identifier_token4] = ACTIONS(1939), - [aux_sym_cmd_identifier_token5] = ACTIONS(1939), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1948), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_DOT_DOT] = ACTIONS(1954), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1960), - [anon_sym_DOT_DOT_LT] = ACTIONS(1960), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1966), - [aux_sym__val_number_decimal_token2] = ACTIONS(1969), - [aux_sym__val_number_decimal_token3] = ACTIONS(1972), - [aux_sym__val_number_decimal_token4] = ACTIONS(1972), - [aux_sym__val_number_token1] = ACTIONS(1975), - [aux_sym__val_number_token2] = ACTIONS(1975), - [aux_sym__val_number_token3] = ACTIONS(1975), - [anon_sym_0b] = ACTIONS(1978), - [anon_sym_0o] = ACTIONS(1981), - [anon_sym_0x] = ACTIONS(1981), - [sym_val_date] = ACTIONS(1984), - [anon_sym_DQUOTE] = ACTIONS(1987), - [anon_sym_SQUOTE] = ACTIONS(1990), - [anon_sym_BQUOTE] = ACTIONS(1993), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2002), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2005), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2008), + [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(2011), - [sym__newline] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_err_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_GT_PIPE] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), - [anon_sym_RPAREN] = ACTIONS(2011), - [anon_sym_GT2] = ACTIONS(2013), - [anon_sym_DASH2] = ACTIONS(2011), - [anon_sym_RBRACE] = ACTIONS(2011), - [anon_sym_STAR2] = ACTIONS(2013), - [anon_sym_and2] = ACTIONS(2011), - [anon_sym_xor2] = ACTIONS(2011), - [anon_sym_or2] = ACTIONS(2011), - [anon_sym_not_DASHin2] = ACTIONS(2011), - [anon_sym_has2] = ACTIONS(2011), - [anon_sym_not_DASHhas2] = ACTIONS(2011), - [anon_sym_starts_DASHwith2] = ACTIONS(2011), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), - [anon_sym_ends_DASHwith2] = ACTIONS(2011), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), - [anon_sym_EQ_EQ2] = ACTIONS(2011), - [anon_sym_BANG_EQ2] = ACTIONS(2011), - [anon_sym_LT2] = ACTIONS(2013), - [anon_sym_LT_EQ2] = ACTIONS(2011), - [anon_sym_GT_EQ2] = ACTIONS(2011), - [anon_sym_EQ_TILDE2] = ACTIONS(2011), - [anon_sym_BANG_TILDE2] = ACTIONS(2011), - [anon_sym_like2] = ACTIONS(2011), - [anon_sym_not_DASHlike2] = ACTIONS(2011), - [anon_sym_LPAREN2] = ACTIONS(2015), - [anon_sym_STAR_STAR2] = ACTIONS(2011), - [anon_sym_PLUS_PLUS2] = ACTIONS(2011), - [anon_sym_SLASH2] = ACTIONS(2013), - [anon_sym_mod2] = ACTIONS(2011), - [anon_sym_SLASH_SLASH2] = ACTIONS(2011), - [anon_sym_PLUS2] = ACTIONS(2013), - [anon_sym_bit_DASHshl2] = ACTIONS(2011), - [anon_sym_bit_DASHshr2] = ACTIONS(2011), - [anon_sym_bit_DASHand2] = ACTIONS(2011), - [anon_sym_bit_DASHxor2] = ACTIONS(2011), - [anon_sym_bit_DASHor2] = ACTIONS(2011), - [anon_sym_DOT_DOT2] = ACTIONS(2017), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2019), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2019), - [anon_sym_err_GT] = ACTIONS(2013), - [anon_sym_out_GT] = ACTIONS(2013), - [anon_sym_e_GT] = ACTIONS(2013), - [anon_sym_o_GT] = ACTIONS(2013), - [anon_sym_err_PLUSout_GT] = ACTIONS(2013), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), - [anon_sym_o_PLUSe_GT] = ACTIONS(2013), - [anon_sym_e_PLUSo_GT] = ACTIONS(2013), - [anon_sym_err_GT_GT] = ACTIONS(2011), - [anon_sym_out_GT_GT] = ACTIONS(2011), - [anon_sym_e_GT_GT] = ACTIONS(2011), - [anon_sym_o_GT_GT] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), - [sym__unquoted_pattern] = ACTIONS(1615), + [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), - [anon_sym_in] = ACTIONS(2021), - [sym__newline] = ACTIONS(2021), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_err_GT_PIPE] = ACTIONS(2021), - [anon_sym_out_GT_PIPE] = ACTIONS(2021), - [anon_sym_e_GT_PIPE] = ACTIONS(2021), - [anon_sym_o_GT_PIPE] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2021), - [anon_sym_GT2] = ACTIONS(2023), - [anon_sym_DASH2] = ACTIONS(2021), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_STAR2] = ACTIONS(2023), - [anon_sym_and2] = ACTIONS(2021), - [anon_sym_xor2] = ACTIONS(2021), - [anon_sym_or2] = ACTIONS(2021), - [anon_sym_not_DASHin2] = ACTIONS(2021), - [anon_sym_has2] = ACTIONS(2021), - [anon_sym_not_DASHhas2] = ACTIONS(2021), - [anon_sym_starts_DASHwith2] = ACTIONS(2021), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2021), - [anon_sym_ends_DASHwith2] = ACTIONS(2021), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2021), - [anon_sym_EQ_EQ2] = ACTIONS(2021), - [anon_sym_BANG_EQ2] = ACTIONS(2021), - [anon_sym_LT2] = ACTIONS(2023), - [anon_sym_LT_EQ2] = ACTIONS(2021), - [anon_sym_GT_EQ2] = ACTIONS(2021), - [anon_sym_EQ_TILDE2] = ACTIONS(2021), - [anon_sym_BANG_TILDE2] = ACTIONS(2021), - [anon_sym_like2] = ACTIONS(2021), - [anon_sym_not_DASHlike2] = ACTIONS(2021), - [anon_sym_LPAREN2] = ACTIONS(2025), - [anon_sym_STAR_STAR2] = ACTIONS(2021), - [anon_sym_PLUS_PLUS2] = ACTIONS(2021), - [anon_sym_SLASH2] = ACTIONS(2023), - [anon_sym_mod2] = ACTIONS(2021), - [anon_sym_SLASH_SLASH2] = ACTIONS(2021), - [anon_sym_PLUS2] = ACTIONS(2023), - [anon_sym_bit_DASHshl2] = ACTIONS(2021), - [anon_sym_bit_DASHshr2] = ACTIONS(2021), - [anon_sym_bit_DASHand2] = ACTIONS(2021), - [anon_sym_bit_DASHxor2] = ACTIONS(2021), - [anon_sym_bit_DASHor2] = ACTIONS(2021), - [anon_sym_DOT_DOT2] = ACTIONS(2027), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2029), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2029), - [anon_sym_err_GT] = ACTIONS(2023), - [anon_sym_out_GT] = ACTIONS(2023), - [anon_sym_e_GT] = ACTIONS(2023), - [anon_sym_o_GT] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT] = ACTIONS(2023), - [anon_sym_err_GT_GT] = ACTIONS(2021), - [anon_sym_out_GT_GT] = ACTIONS(2021), - [anon_sym_e_GT_GT] = ACTIONS(2021), - [anon_sym_o_GT_GT] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2021), - [sym__unquoted_pattern] = ACTIONS(2031), + [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), + [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(512)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1145), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(513)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1149), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1071), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(514)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1153), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(796), - [sym__unquoted_with_expr] = STATE(1074), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(515)] = { - [sym_expr_parenthesized] = STATE(4067), - [sym__spread_parenthesized] = STATE(4821), - [sym_val_range] = STATE(4824), - [sym__val_range] = STATE(4635), - [sym__value] = STATE(4824), - [sym_val_nothing] = STATE(4550), - [sym_val_bool] = STATE(4304), - [sym__spread_variable] = STATE(4834), - [sym_val_variable] = STATE(3884), - [sym_val_cellpath] = STATE(4550), - [sym_val_number] = STATE(4550), - [sym__val_number_decimal] = STATE(3476), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4550), - [sym_val_filesize] = STATE(4550), - [sym_val_binary] = STATE(4550), - [sym_val_string] = STATE(4550), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_interpolated] = STATE(4550), - [sym__inter_single_quotes] = STATE(4537), - [sym__inter_double_quotes] = STATE(4539), - [sym_val_list] = STATE(4550), - [sym__spread_list] = STATE(4821), - [sym_val_entry] = STATE(4541), - [sym_val_record] = STATE(4550), - [sym_val_table] = STATE(4550), - [sym_val_closure] = STATE(4550), - [sym__unquoted_in_list] = STATE(4220), - [sym__unquoted_in_list_with_expr] = STATE(4824), - [sym__unquoted_anonymous_prefix] = STATE(4635), + [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), - [aux_sym_list_body_repeat1] = STATE(509), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1470), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT] = ACTIONS(1486), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), - [aux_sym__val_number_token1] = ACTIONS(1414), - [aux_sym__val_number_token2] = ACTIONS(1414), - [aux_sym__val_number_token3] = ACTIONS(1414), - [anon_sym_0b] = ACTIONS(1416), - [anon_sym_0o] = ACTIONS(1418), - [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1430), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1432), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(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(1436), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(516)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1160), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(517)] = { - [aux_sym__repeat_newline] = STATE(643), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1262), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(852), - [sym__unquoted_with_expr] = STATE(1101), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(518)] = { - [aux_sym__repeat_newline] = STATE(644), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1205), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1102), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(519)] = { - [aux_sym__repeat_newline] = STATE(645), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1207), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(520)] = { - [aux_sym__repeat_newline] = STATE(646), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1211), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1104), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(521)] = { - [aux_sym__repeat_newline] = STATE(648), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1213), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(522)] = { - [aux_sym__repeat_newline] = STATE(649), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1215), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1106), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(523)] = { - [aux_sym__repeat_newline] = STATE(650), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1218), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1107), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(524)] = { - [aux_sym__repeat_newline] = STATE(651), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1221), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(866), - [sym__unquoted_with_expr] = STATE(1109), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(525)] = { - [aux_sym__repeat_newline] = STATE(652), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1110), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(868), - [sym__unquoted_with_expr] = STATE(1111), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(526)] = { - [aux_sym__repeat_newline] = STATE(653), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1225), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(870), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(526), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1922), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(527)] = { - [aux_sym__repeat_newline] = STATE(654), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1230), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(872), - [sym__unquoted_with_expr] = STATE(1116), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(527), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1922), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(528)] = { - [aux_sym__repeat_newline] = STATE(655), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1233), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(875), - [sym__unquoted_with_expr] = STATE(1117), - [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(528), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1922), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(529)] = { - [sym_cmd_identifier] = STATE(4141), - [sym_expr_parenthesized] = STATE(5138), - [sym__spread_parenthesized] = STATE(4677), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(4334), - [sym_val_number] = STATE(5138), - [sym__val_number_decimal] = STATE(1947), - [sym__val_number] = STATE(700), - [sym_val_string] = STATE(5138), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_interpolated] = STATE(5138), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym__spread_record] = STATE(4677), - [sym_record_entry] = STATE(4415), - [sym__record_key] = STATE(4944), + [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(1494), - [aux_sym__match_pattern_record_body_repeat1] = STATE(889), + [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), @@ -88618,11256 +88957,11265 @@ 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(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1780), - [aux_sym_cmd_identifier_token4] = ACTIONS(1780), - [aux_sym_cmd_identifier_token5] = ACTIONS(1780), - [sym__newline] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1786), + [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(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [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(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), + [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(1802), + [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), - [ts_builtin_sym_end] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1754), - [sym__newline] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_err_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_GT_PIPE] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), - [anon_sym_GT2] = ACTIONS(1756), - [anon_sym_DASH2] = ACTIONS(1754), - [anon_sym_STAR2] = ACTIONS(1756), - [anon_sym_and2] = ACTIONS(1754), - [anon_sym_xor2] = ACTIONS(1754), - [anon_sym_or2] = ACTIONS(1754), - [anon_sym_not_DASHin2] = ACTIONS(1754), - [anon_sym_has2] = ACTIONS(1754), - [anon_sym_not_DASHhas2] = ACTIONS(1754), - [anon_sym_starts_DASHwith2] = ACTIONS(1754), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1754), - [anon_sym_ends_DASHwith2] = ACTIONS(1754), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1754), - [anon_sym_EQ_EQ2] = ACTIONS(1754), - [anon_sym_BANG_EQ2] = ACTIONS(1754), - [anon_sym_LT2] = ACTIONS(1756), - [anon_sym_LT_EQ2] = ACTIONS(1754), - [anon_sym_GT_EQ2] = ACTIONS(1754), - [anon_sym_EQ_TILDE2] = ACTIONS(1754), - [anon_sym_BANG_TILDE2] = ACTIONS(1754), - [anon_sym_like2] = ACTIONS(1754), - [anon_sym_not_DASHlike2] = ACTIONS(1754), - [anon_sym_LPAREN2] = ACTIONS(1754), - [anon_sym_STAR_STAR2] = ACTIONS(1754), - [anon_sym_PLUS_PLUS2] = ACTIONS(1754), - [anon_sym_SLASH2] = ACTIONS(1756), - [anon_sym_mod2] = ACTIONS(1754), - [anon_sym_SLASH_SLASH2] = ACTIONS(1754), - [anon_sym_PLUS2] = ACTIONS(1756), - [anon_sym_bit_DASHshl2] = ACTIONS(1754), - [anon_sym_bit_DASHshr2] = ACTIONS(1754), - [anon_sym_bit_DASHand2] = ACTIONS(1754), - [anon_sym_bit_DASHxor2] = ACTIONS(1754), - [anon_sym_bit_DASHor2] = ACTIONS(1754), - [anon_sym_DOT_DOT2] = ACTIONS(1756), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1754), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1754), - [aux_sym__immediate_decimal_token5] = ACTIONS(1886), - [anon_sym_err_GT] = ACTIONS(1756), - [anon_sym_out_GT] = ACTIONS(1756), - [anon_sym_e_GT] = ACTIONS(1756), - [anon_sym_o_GT] = ACTIONS(1756), - [anon_sym_err_PLUSout_GT] = ACTIONS(1756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), - [anon_sym_o_PLUSe_GT] = ACTIONS(1756), - [anon_sym_e_PLUSo_GT] = ACTIONS(1756), - [anon_sym_err_GT_GT] = ACTIONS(1754), - [anon_sym_out_GT_GT] = ACTIONS(1754), - [anon_sym_e_GT_GT] = ACTIONS(1754), - [anon_sym_o_GT_GT] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), - [sym__unquoted_pattern] = ACTIONS(1756), + [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(656), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1235), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(876), + [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(4488), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(531), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(532)] = { - [sym_path] = STATE(791), + [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__where_predicate_lhs_repeat1] = STATE(533), - [ts_builtin_sym_end] = ACTIONS(1517), - [anon_sym_in] = ACTIONS(1517), - [sym__newline] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1517), - [anon_sym_PIPE] = ACTIONS(1517), - [anon_sym_err_GT_PIPE] = ACTIONS(1517), - [anon_sym_out_GT_PIPE] = ACTIONS(1517), - [anon_sym_e_GT_PIPE] = ACTIONS(1517), - [anon_sym_o_GT_PIPE] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1517), - [anon_sym_GT2] = ACTIONS(1515), - [anon_sym_DASH2] = ACTIONS(1517), - [anon_sym_STAR2] = ACTIONS(1515), - [anon_sym_and2] = ACTIONS(1517), - [anon_sym_xor2] = ACTIONS(1517), - [anon_sym_or2] = ACTIONS(1517), - [anon_sym_not_DASHin2] = ACTIONS(1517), - [anon_sym_has2] = ACTIONS(1517), - [anon_sym_not_DASHhas2] = ACTIONS(1517), - [anon_sym_starts_DASHwith2] = ACTIONS(1517), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1517), - [anon_sym_ends_DASHwith2] = ACTIONS(1517), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1517), - [anon_sym_EQ_EQ2] = ACTIONS(1517), - [anon_sym_BANG_EQ2] = ACTIONS(1517), - [anon_sym_LT2] = ACTIONS(1515), - [anon_sym_LT_EQ2] = ACTIONS(1517), - [anon_sym_GT_EQ2] = ACTIONS(1517), - [anon_sym_EQ_TILDE2] = ACTIONS(1517), - [anon_sym_BANG_TILDE2] = ACTIONS(1517), - [anon_sym_like2] = ACTIONS(1517), - [anon_sym_not_DASHlike2] = ACTIONS(1517), - [anon_sym_STAR_STAR2] = ACTIONS(1517), - [anon_sym_PLUS_PLUS2] = ACTIONS(1517), - [anon_sym_SLASH2] = ACTIONS(1515), - [anon_sym_mod2] = ACTIONS(1517), - [anon_sym_SLASH_SLASH2] = ACTIONS(1517), - [anon_sym_PLUS2] = ACTIONS(1515), - [anon_sym_bit_DASHshl2] = ACTIONS(1517), - [anon_sym_bit_DASHshr2] = ACTIONS(1517), - [anon_sym_bit_DASHand2] = ACTIONS(1517), - [anon_sym_bit_DASHxor2] = ACTIONS(1517), - [anon_sym_bit_DASHor2] = ACTIONS(1517), - [anon_sym_DOT_DOT2] = ACTIONS(1515), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1517), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1517), - [anon_sym_DOT2] = ACTIONS(1854), - [anon_sym_err_GT] = ACTIONS(1515), - [anon_sym_out_GT] = ACTIONS(1515), - [anon_sym_e_GT] = ACTIONS(1515), - [anon_sym_o_GT] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT] = ACTIONS(1515), - [anon_sym_err_GT_GT] = ACTIONS(1517), - [anon_sym_out_GT_GT] = ACTIONS(1517), - [anon_sym_e_GT_GT] = ACTIONS(1517), - [anon_sym_o_GT_GT] = ACTIONS(1517), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1517), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1517), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1517), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1517), - [anon_sym_POUND] = ACTIONS(3), + [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)] = { - [sym_path] = STATE(791), + [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), - [aux_sym__where_predicate_lhs_repeat1] = STATE(533), - [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(2033), - [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(534)] = { - [aux_sym__repeat_newline] = STATE(547), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2003), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(852), - [sym__unquoted_with_expr] = STATE(1101), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(534), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(535)] = { - [aux_sym__repeat_newline] = STATE(548), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2004), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1102), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(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(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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(536)] = { - [aux_sym__repeat_newline] = STATE(549), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2006), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(537)] = { - [aux_sym__repeat_newline] = STATE(550), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2008), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1104), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(538)] = { - [aux_sym__repeat_newline] = STATE(551), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2009), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(539)] = { - [aux_sym__repeat_newline] = STATE(552), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2010), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1106), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(540)] = { - [aux_sym__repeat_newline] = STATE(553), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2011), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1107), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(541)] = { - [aux_sym__repeat_newline] = STATE(554), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2012), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(866), - [sym__unquoted_with_expr] = STATE(1109), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(542)] = { - [aux_sym__repeat_newline] = STATE(555), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1110), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(868), - [sym__unquoted_with_expr] = STATE(1111), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(543)] = { - [aux_sym__repeat_newline] = STATE(556), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2013), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(870), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(544)] = { - [aux_sym__repeat_newline] = STATE(557), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2014), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(872), - [sym__unquoted_with_expr] = STATE(1116), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(545)] = { - [aux_sym__repeat_newline] = STATE(558), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2015), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(875), - [sym__unquoted_with_expr] = STATE(1117), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(546)] = { - [aux_sym__repeat_newline] = STATE(559), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2016), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(876), - [sym__unquoted_with_expr] = STATE(1118), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(547)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2018), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(811), - [sym__unquoted_with_expr] = STATE(1124), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(548)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2020), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(812), - [sym__unquoted_with_expr] = STATE(1127), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(549)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1967), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(813), - [sym__unquoted_with_expr] = STATE(966), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(550)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2023), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(814), - [sym__unquoted_with_expr] = STATE(968), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(551)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2025), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(815), - [sym__unquoted_with_expr] = STATE(971), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(552)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2027), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(816), - [sym__unquoted_with_expr] = STATE(977), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(553)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2029), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(818), - [sym__unquoted_with_expr] = STATE(981), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(554)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2031), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(819), - [sym__unquoted_with_expr] = STATE(985), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(555)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(988), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(820), - [sym__unquoted_with_expr] = STATE(990), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(556)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2033), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(821), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(557)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2035), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(822), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(558)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2037), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(823), - [sym__unquoted_with_expr] = STATE(999), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(559)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2039), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1001), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(560)] = { - [aux_sym__repeat_newline] = STATE(573), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2041), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(826), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(561)] = { - [aux_sym__repeat_newline] = STATE(574), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2042), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1004), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(562)] = { - [aux_sym__repeat_newline] = STATE(575), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2043), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(830), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(563)] = { - [aux_sym__repeat_newline] = STATE(576), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2044), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(564)] = { - [aux_sym__repeat_newline] = STATE(577), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2045), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(883), - [sym__unquoted_with_expr] = STATE(1009), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(565)] = { - [aux_sym__repeat_newline] = STATE(578), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2046), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(886), - [sym__unquoted_with_expr] = STATE(1012), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(566)] = { - [aux_sym__repeat_newline] = STATE(579), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2110), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(892), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(567)] = { - [aux_sym__repeat_newline] = STATE(580), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2047), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(786), - [sym__unquoted_with_expr] = STATE(1016), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(568)] = { - [aux_sym__repeat_newline] = STATE(581), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1017), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(773), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(569)] = { - [aux_sym__repeat_newline] = STATE(582), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2048), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [aux_sym__repeat_newline] = STATE(585), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1605), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(810), + [sym__unquoted_with_expr] = STATE(1015), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(569), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(570)] = { - [aux_sym__repeat_newline] = STATE(583), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2049), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1023), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [aux_sym__repeat_newline] = STATE(586), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1606), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(811), + [sym__unquoted_with_expr] = STATE(1016), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(570), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(571)] = { - [aux_sym__repeat_newline] = STATE(584), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2050), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(779), - [sym__unquoted_with_expr] = STATE(1026), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [aux_sym__repeat_newline] = STATE(587), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1517), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(812), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(571), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(572)] = { - [aux_sym__repeat_newline] = STATE(585), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2051), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1028), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(573)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2064), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(799), - [sym__unquoted_with_expr] = STATE(1047), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(574)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2066), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1049), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(575)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2068), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1052), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(576)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2070), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(730), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(577)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2072), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(731), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(578)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2074), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(762), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(579)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2076), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(763), - [sym__unquoted_with_expr] = STATE(1060), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(580)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2078), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(764), - [sym__unquoted_with_expr] = STATE(1062), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(581)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1064), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(768), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(582)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2080), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(583)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2082), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1071), - [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(583), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2052), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2084), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(796), - [sym__unquoted_with_expr] = STATE(1074), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), - [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(1924), + [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(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(2086), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(586)] = { + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1633), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(854), + [sym__unquoted_with_expr] = STATE(1063), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(1812), - [anon_sym_in] = ACTIONS(1812), - [sym__newline] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_err_GT_PIPE] = ACTIONS(1812), - [anon_sym_out_GT_PIPE] = ACTIONS(1812), - [anon_sym_e_GT_PIPE] = ACTIONS(1812), - [anon_sym_o_GT_PIPE] = ACTIONS(1812), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1812), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1812), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1812), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1812), - [anon_sym_GT2] = ACTIONS(1814), - [anon_sym_DASH2] = ACTIONS(1812), - [anon_sym_STAR2] = ACTIONS(1814), - [anon_sym_and2] = ACTIONS(1812), - [anon_sym_xor2] = ACTIONS(1812), - [anon_sym_or2] = ACTIONS(1812), - [anon_sym_not_DASHin2] = ACTIONS(1812), - [anon_sym_has2] = ACTIONS(1812), - [anon_sym_not_DASHhas2] = ACTIONS(1812), - [anon_sym_starts_DASHwith2] = ACTIONS(1812), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1812), - [anon_sym_ends_DASHwith2] = ACTIONS(1812), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1812), - [anon_sym_EQ_EQ2] = ACTIONS(1812), - [anon_sym_BANG_EQ2] = ACTIONS(1812), - [anon_sym_LT2] = ACTIONS(1814), - [anon_sym_LT_EQ2] = ACTIONS(1812), - [anon_sym_GT_EQ2] = ACTIONS(1812), - [anon_sym_EQ_TILDE2] = ACTIONS(1812), - [anon_sym_BANG_TILDE2] = ACTIONS(1812), - [anon_sym_like2] = ACTIONS(1812), - [anon_sym_not_DASHlike2] = ACTIONS(1812), - [anon_sym_LPAREN2] = ACTIONS(1812), - [anon_sym_STAR_STAR2] = ACTIONS(1812), - [anon_sym_PLUS_PLUS2] = ACTIONS(1812), - [anon_sym_SLASH2] = ACTIONS(1814), - [anon_sym_mod2] = ACTIONS(1812), - [anon_sym_SLASH_SLASH2] = ACTIONS(1812), - [anon_sym_PLUS2] = ACTIONS(1814), - [anon_sym_bit_DASHshl2] = ACTIONS(1812), - [anon_sym_bit_DASHshr2] = ACTIONS(1812), - [anon_sym_bit_DASHand2] = ACTIONS(1812), - [anon_sym_bit_DASHxor2] = ACTIONS(1812), - [anon_sym_bit_DASHor2] = ACTIONS(1812), - [anon_sym_DOT_DOT2] = ACTIONS(1814), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1812), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1812), - [aux_sym__immediate_decimal_token5] = ACTIONS(2054), - [anon_sym_err_GT] = ACTIONS(1814), - [anon_sym_out_GT] = ACTIONS(1814), - [anon_sym_e_GT] = ACTIONS(1814), - [anon_sym_o_GT] = ACTIONS(1814), - [anon_sym_err_PLUSout_GT] = ACTIONS(1814), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1814), - [anon_sym_o_PLUSe_GT] = ACTIONS(1814), - [anon_sym_e_PLUSo_GT] = ACTIONS(1814), - [anon_sym_err_GT_GT] = ACTIONS(1812), - [anon_sym_out_GT_GT] = ACTIONS(1812), - [anon_sym_e_GT_GT] = ACTIONS(1812), - [anon_sym_o_GT_GT] = ACTIONS(1812), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1812), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1812), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1812), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1812), - [sym__unquoted_pattern] = ACTIONS(1814), + [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(587)] = { - [aux_sym__repeat_newline] = STATE(600), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1674), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1102), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(588)] = { - [aux_sym__repeat_newline] = STATE(601), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1511), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(589)] = { - [aux_sym__repeat_newline] = STATE(602), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1513), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1104), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(590)] = { - [aux_sym__repeat_newline] = STATE(603), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1514), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(591)] = { - [aux_sym__repeat_newline] = STATE(604), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1515), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1106), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(592)] = { - [aux_sym__repeat_newline] = STATE(605), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1516), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1107), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(593)] = { - [aux_sym__repeat_newline] = STATE(606), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1517), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(866), - [sym__unquoted_with_expr] = STATE(1109), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(594)] = { - [aux_sym__repeat_newline] = STATE(607), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1110), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(868), - [sym__unquoted_with_expr] = STATE(1111), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(595)] = { - [aux_sym__repeat_newline] = STATE(608), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1518), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(870), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(596)] = { - [aux_sym__repeat_newline] = STATE(609), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1519), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(872), - [sym__unquoted_with_expr] = STATE(1116), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(597)] = { - [aux_sym__repeat_newline] = STATE(610), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1520), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(875), - [sym__unquoted_with_expr] = STATE(1117), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(598)] = { - [aux_sym__repeat_newline] = STATE(611), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1522), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(876), - [sym__unquoted_with_expr] = STATE(1118), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(599)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1526), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(811), - [sym__unquoted_with_expr] = STATE(1124), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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(211), + [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(600)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1528), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(812), - [sym__unquoted_with_expr] = STATE(1127), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(601)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1530), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(813), - [sym__unquoted_with_expr] = STATE(966), - [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(601), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1532), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(814), - [sym__unquoted_with_expr] = STATE(968), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(603)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1534), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(815), - [sym__unquoted_with_expr] = STATE(971), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(604)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1536), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(816), - [sym__unquoted_with_expr] = STATE(977), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(605)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1538), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(818), - [sym__unquoted_with_expr] = STATE(981), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(606)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1540), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(819), - [sym__unquoted_with_expr] = STATE(985), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_path] = STATE(720), [sym_comment] = STATE(606), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(988), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(820), - [sym__unquoted_with_expr] = STATE(990), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(608)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1542), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(821), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1171), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(797), + [sym__unquoted_with_expr] = STATE(986), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(608), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(609)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1544), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(822), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(610)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1546), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(823), - [sym__unquoted_with_expr] = STATE(999), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(611)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1548), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1001), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(612)] = { - [aux_sym__repeat_newline] = STATE(625), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1550), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(826), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(613)] = { - [aux_sym__repeat_newline] = STATE(626), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1551), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1004), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(614)] = { - [aux_sym__repeat_newline] = STATE(627), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1552), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(830), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(615)] = { - [aux_sym__repeat_newline] = STATE(628), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1553), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(616)] = { - [aux_sym__repeat_newline] = STATE(629), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1554), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(883), - [sym__unquoted_with_expr] = STATE(1009), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(617)] = { - [aux_sym__repeat_newline] = STATE(630), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1555), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(886), - [sym__unquoted_with_expr] = STATE(1012), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(618)] = { - [aux_sym__repeat_newline] = STATE(631), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1556), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(892), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(619)] = { - [aux_sym__repeat_newline] = STATE(632), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1557), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(786), - [sym__unquoted_with_expr] = STATE(1016), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(620)] = { - [aux_sym__repeat_newline] = STATE(633), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1017), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(773), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(621)] = { - [aux_sym__repeat_newline] = STATE(634), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1558), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(622)] = { - [aux_sym__repeat_newline] = STATE(635), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1559), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1023), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_path] = STATE(720), [sym_comment] = STATE(622), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(623)] = { - [aux_sym__repeat_newline] = STATE(636), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1560), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(779), - [sym__unquoted_with_expr] = STATE(1026), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(624)] = { - [aux_sym__repeat_newline] = STATE(637), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1562), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1028), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(625)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1578), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(799), - [sym__unquoted_with_expr] = STATE(1047), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(626)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1580), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1049), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(627)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1582), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1052), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(628)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1584), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(730), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [aux_sym__repeat_newline] = STATE(2193), + [sym_expr_unary] = STATE(1158), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary_parenthesized] = STATE(1158), + [sym__expr_binary_expression_parenthesized] = STATE(1240), + [sym_expr_parenthesized] = STATE(771), + [sym_val_range] = STATE(1158), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(1158), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(805), + [sym__unquoted_with_expr] = STATE(1000), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(628), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(629)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1586), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(731), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(630)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1588), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(762), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(631)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1590), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(763), - [sym__unquoted_with_expr] = STATE(1060), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(632)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1592), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(764), - [sym__unquoted_with_expr] = STATE(1062), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(633)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1064), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(768), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(634)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1594), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(635)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1596), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(770), + [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(4488), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(635), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(636)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1598), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(796), - [sym__unquoted_with_expr] = STATE(1074), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(637)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1600), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(638)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1212), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(799), - [sym__unquoted_with_expr] = STATE(1047), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(639)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1220), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1049), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(640)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1226), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1052), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(641)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1234), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(730), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(642)] = { - [sym_cmd_identifier] = STATE(4141), - [sym_expr_parenthesized] = STATE(5138), - [sym__spread_parenthesized] = STATE(4677), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(5138), - [sym_val_number] = STATE(5138), - [sym__val_number_decimal] = STATE(1947), - [sym__val_number] = STATE(700), - [sym_val_string] = STATE(5138), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_interpolated] = STATE(5138), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym__spread_record] = STATE(4677), - [sym_record_entry] = STATE(4466), - [sym__record_key] = STATE(4944), + [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), - [aux_sym__types_body_repeat1] = STATE(1494), - [aux_sym_record_body_repeat1] = STATE(871), - [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(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1780), - [aux_sym_cmd_identifier_token4] = ACTIONS(1780), - [aux_sym_cmd_identifier_token5] = ACTIONS(1780), - [sym__newline] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1804), - [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(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [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(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), + [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(1802), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(643)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1249), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(811), - [sym__unquoted_with_expr] = STATE(1124), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(644)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1254), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(812), - [sym__unquoted_with_expr] = STATE(1127), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(645)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1261), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(813), - [sym__unquoted_with_expr] = STATE(966), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(646)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1165), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(814), - [sym__unquoted_with_expr] = STATE(968), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(647)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1242), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(731), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(648)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1195), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(815), - [sym__unquoted_with_expr] = STATE(971), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(649)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1250), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(816), - [sym__unquoted_with_expr] = STATE(977), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(650)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1150), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(818), - [sym__unquoted_with_expr] = STATE(981), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(651)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1193), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(819), - [sym__unquoted_with_expr] = STATE(985), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(652)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(988), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(820), - [sym__unquoted_with_expr] = STATE(990), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(653)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1253), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(821), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(654)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1142), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(822), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(655)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1154), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(823), - [sym__unquoted_with_expr] = STATE(999), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(656)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1163), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1001), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(657)] = { - [aux_sym__repeat_newline] = STATE(638), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1177), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(826), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(658)] = { - [aux_sym__repeat_newline] = STATE(639), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1183), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1004), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(659)] = { - [aux_sym__repeat_newline] = STATE(640), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1191), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(830), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(660)] = { - [aux_sym__repeat_newline] = STATE(641), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1200), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(661)] = { - [aux_sym__repeat_newline] = STATE(647), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1209), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(883), - [sym__unquoted_with_expr] = STATE(1009), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(662)] = { - [aux_sym__repeat_newline] = STATE(666), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1219), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(886), - [sym__unquoted_with_expr] = STATE(1012), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(663)] = { - [aux_sym__repeat_newline] = STATE(670), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1228), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(892), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(664)] = { - [aux_sym__repeat_newline] = STATE(505), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1243), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(786), - [sym__unquoted_with_expr] = STATE(1016), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(665)] = { - [aux_sym__repeat_newline] = STATE(506), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1017), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(773), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(666)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1252), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(762), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(667)] = { - [aux_sym__repeat_newline] = STATE(513), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1141), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1023), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(668)] = { - [aux_sym__repeat_newline] = STATE(514), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1143), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(779), - [sym__unquoted_with_expr] = STATE(1026), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(669)] = { [aux_sym__repeat_newline] = STATE(516), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1152), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), + [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(1028), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym__unquoted_with_expr] = STATE(1033), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(669), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(670)] = { - [aux_sym__repeat_newline] = STATE(2208), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1202), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(763), - [sym__unquoted_with_expr] = STATE(1060), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(671)] = { - [aux_sym__repeat_newline] = STATE(599), - [sym_expr_unary] = STATE(1131), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1131), - [sym__expr_binary_expression_parenthesized] = STATE(1671), - [sym_expr_parenthesized] = STATE(851), - [sym_val_range] = STATE(1131), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(1131), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(852), - [sym__unquoted_with_expr] = STATE(1101), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [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(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [sym__newline] = ACTIONS(1910), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [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(2021), - [sym__newline] = ACTIONS(2021), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_err_GT_PIPE] = ACTIONS(2021), - [anon_sym_out_GT_PIPE] = ACTIONS(2021), - [anon_sym_e_GT_PIPE] = ACTIONS(2021), - [anon_sym_o_GT_PIPE] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2021), - [anon_sym_GT2] = ACTIONS(2023), - [anon_sym_DASH2] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2021), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_STAR2] = ACTIONS(2023), - [anon_sym_and2] = ACTIONS(2021), - [anon_sym_xor2] = ACTIONS(2021), - [anon_sym_or2] = ACTIONS(2021), - [anon_sym_not_DASHin2] = ACTIONS(2021), - [anon_sym_has2] = ACTIONS(2021), - [anon_sym_not_DASHhas2] = ACTIONS(2021), - [anon_sym_starts_DASHwith2] = ACTIONS(2021), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2021), - [anon_sym_ends_DASHwith2] = ACTIONS(2021), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2021), - [anon_sym_EQ_EQ2] = ACTIONS(2021), - [anon_sym_BANG_EQ2] = ACTIONS(2021), - [anon_sym_LT2] = ACTIONS(2023), - [anon_sym_LT_EQ2] = ACTIONS(2021), - [anon_sym_GT_EQ2] = ACTIONS(2021), - [anon_sym_EQ_TILDE2] = ACTIONS(2021), - [anon_sym_BANG_TILDE2] = ACTIONS(2021), - [anon_sym_like2] = ACTIONS(2021), - [anon_sym_not_DASHlike2] = ACTIONS(2021), - [anon_sym_STAR_STAR2] = ACTIONS(2021), - [anon_sym_PLUS_PLUS2] = ACTIONS(2021), - [anon_sym_SLASH2] = ACTIONS(2023), - [anon_sym_mod2] = ACTIONS(2021), - [anon_sym_SLASH_SLASH2] = ACTIONS(2021), - [anon_sym_PLUS2] = ACTIONS(2023), - [anon_sym_bit_DASHshl2] = ACTIONS(2021), - [anon_sym_bit_DASHshr2] = ACTIONS(2021), - [anon_sym_bit_DASHand2] = ACTIONS(2021), - [anon_sym_bit_DASHxor2] = ACTIONS(2021), - [anon_sym_bit_DASHor2] = ACTIONS(2021), - [anon_sym_DOT_DOT2] = ACTIONS(2074), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2076), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2076), - [anon_sym_err_GT] = ACTIONS(2023), - [anon_sym_out_GT] = ACTIONS(2023), - [anon_sym_e_GT] = ACTIONS(2023), - [anon_sym_o_GT] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT] = ACTIONS(2023), - [anon_sym_err_GT_GT] = ACTIONS(2021), - [anon_sym_out_GT_GT] = ACTIONS(2021), - [anon_sym_e_GT_GT] = ACTIONS(2021), - [anon_sym_o_GT_GT] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2021), + [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(2011), - [anon_sym_in] = ACTIONS(2011), - [sym__newline] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_err_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_GT_PIPE] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), - [anon_sym_GT2] = ACTIONS(2013), - [anon_sym_DASH2] = ACTIONS(2011), - [anon_sym_STAR2] = ACTIONS(2013), - [anon_sym_and2] = ACTIONS(2011), - [anon_sym_xor2] = ACTIONS(2011), - [anon_sym_or2] = ACTIONS(2011), - [anon_sym_not_DASHin2] = ACTIONS(2011), - [anon_sym_has2] = ACTIONS(2011), - [anon_sym_not_DASHhas2] = ACTIONS(2011), - [anon_sym_starts_DASHwith2] = ACTIONS(2011), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), - [anon_sym_ends_DASHwith2] = ACTIONS(2011), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), - [anon_sym_EQ_EQ2] = ACTIONS(2011), - [anon_sym_BANG_EQ2] = ACTIONS(2011), - [anon_sym_LT2] = ACTIONS(2013), - [anon_sym_LT_EQ2] = ACTIONS(2011), - [anon_sym_GT_EQ2] = ACTIONS(2011), - [anon_sym_EQ_TILDE2] = ACTIONS(2011), - [anon_sym_BANG_TILDE2] = ACTIONS(2011), - [anon_sym_like2] = ACTIONS(2011), - [anon_sym_not_DASHlike2] = ACTIONS(2011), - [anon_sym_LPAREN2] = ACTIONS(2015), - [anon_sym_STAR_STAR2] = ACTIONS(2011), - [anon_sym_PLUS_PLUS2] = ACTIONS(2011), - [anon_sym_SLASH2] = ACTIONS(2013), - [anon_sym_mod2] = ACTIONS(2011), - [anon_sym_SLASH_SLASH2] = ACTIONS(2011), - [anon_sym_PLUS2] = ACTIONS(2013), - [anon_sym_bit_DASHshl2] = ACTIONS(2011), - [anon_sym_bit_DASHshr2] = ACTIONS(2011), - [anon_sym_bit_DASHand2] = ACTIONS(2011), - [anon_sym_bit_DASHxor2] = ACTIONS(2011), - [anon_sym_bit_DASHor2] = ACTIONS(2011), - [anon_sym_DOT_DOT2] = ACTIONS(2078), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2080), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2080), - [anon_sym_err_GT] = ACTIONS(2013), - [anon_sym_out_GT] = ACTIONS(2013), - [anon_sym_e_GT] = ACTIONS(2013), - [anon_sym_o_GT] = ACTIONS(2013), - [anon_sym_err_PLUSout_GT] = ACTIONS(2013), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), - [anon_sym_o_PLUSe_GT] = ACTIONS(2013), - [anon_sym_e_PLUSo_GT] = ACTIONS(2013), - [anon_sym_err_GT_GT] = ACTIONS(2011), - [anon_sym_out_GT_GT] = ACTIONS(2011), - [anon_sym_e_GT_GT] = ACTIONS(2011), - [anon_sym_o_GT_GT] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), - [sym__unquoted_pattern] = ACTIONS(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(674)] = { - [sym__expr_parenthesized_immediate] = STATE(4713), [sym_comment] = STATE(674), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [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), - [ts_builtin_sym_end] = ACTIONS(2021), - [anon_sym_in] = ACTIONS(2021), - [sym__newline] = ACTIONS(2021), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_err_GT_PIPE] = ACTIONS(2021), - [anon_sym_out_GT_PIPE] = ACTIONS(2021), - [anon_sym_e_GT_PIPE] = ACTIONS(2021), - [anon_sym_o_GT_PIPE] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2021), - [anon_sym_GT2] = ACTIONS(2023), - [anon_sym_DASH2] = ACTIONS(2021), - [anon_sym_STAR2] = ACTIONS(2023), - [anon_sym_and2] = ACTIONS(2021), - [anon_sym_xor2] = ACTIONS(2021), - [anon_sym_or2] = ACTIONS(2021), - [anon_sym_not_DASHin2] = ACTIONS(2021), - [anon_sym_has2] = ACTIONS(2021), - [anon_sym_not_DASHhas2] = ACTIONS(2021), - [anon_sym_starts_DASHwith2] = ACTIONS(2021), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2021), - [anon_sym_ends_DASHwith2] = ACTIONS(2021), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2021), - [anon_sym_EQ_EQ2] = ACTIONS(2021), - [anon_sym_BANG_EQ2] = ACTIONS(2021), - [anon_sym_LT2] = ACTIONS(2023), - [anon_sym_LT_EQ2] = ACTIONS(2021), - [anon_sym_GT_EQ2] = ACTIONS(2021), - [anon_sym_EQ_TILDE2] = ACTIONS(2021), - [anon_sym_BANG_TILDE2] = ACTIONS(2021), - [anon_sym_like2] = ACTIONS(2021), - [anon_sym_not_DASHlike2] = ACTIONS(2021), - [anon_sym_LPAREN2] = ACTIONS(2025), - [anon_sym_STAR_STAR2] = ACTIONS(2021), - [anon_sym_PLUS_PLUS2] = ACTIONS(2021), - [anon_sym_SLASH2] = ACTIONS(2023), - [anon_sym_mod2] = ACTIONS(2021), - [anon_sym_SLASH_SLASH2] = ACTIONS(2021), - [anon_sym_PLUS2] = ACTIONS(2023), - [anon_sym_bit_DASHshl2] = ACTIONS(2021), - [anon_sym_bit_DASHshr2] = ACTIONS(2021), - [anon_sym_bit_DASHand2] = ACTIONS(2021), - [anon_sym_bit_DASHxor2] = ACTIONS(2021), - [anon_sym_bit_DASHor2] = ACTIONS(2021), - [anon_sym_DOT_DOT2] = ACTIONS(2086), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2088), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2023), - [anon_sym_out_GT] = ACTIONS(2023), - [anon_sym_e_GT] = ACTIONS(2023), - [anon_sym_o_GT] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT] = ACTIONS(2023), - [anon_sym_err_GT_GT] = ACTIONS(2021), - [anon_sym_out_GT_GT] = ACTIONS(2021), - [anon_sym_e_GT_GT] = ACTIONS(2021), - [anon_sym_o_GT_GT] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2021), - [sym__unquoted_pattern] = ACTIONS(2031), + [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)] = { - [sym__expr_parenthesized_immediate] = STATE(4713), + [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_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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(4713), + [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(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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)] = { - [sym__expr_parenthesized_immediate] = STATE(4713), + [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), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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)] = { + [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_if] = ACTIONS(884), - [anon_sym_in] = ACTIONS(884), - [sym__newline] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_err_GT_PIPE] = ACTIONS(884), - [anon_sym_out_GT_PIPE] = ACTIONS(884), - [anon_sym_e_GT_PIPE] = ACTIONS(884), - [anon_sym_o_GT_PIPE] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(884), - [anon_sym_GT2] = ACTIONS(858), - [anon_sym_DASH2] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(884), - [anon_sym_RBRACE] = ACTIONS(884), - [anon_sym_EQ_GT] = ACTIONS(884), - [anon_sym_STAR2] = ACTIONS(858), - [anon_sym_and2] = ACTIONS(884), - [anon_sym_xor2] = ACTIONS(884), - [anon_sym_or2] = ACTIONS(884), - [anon_sym_not_DASHin2] = ACTIONS(884), - [anon_sym_has2] = ACTIONS(884), - [anon_sym_not_DASHhas2] = ACTIONS(884), - [anon_sym_starts_DASHwith2] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(884), - [anon_sym_ends_DASHwith2] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(884), - [anon_sym_EQ_EQ2] = ACTIONS(884), - [anon_sym_BANG_EQ2] = ACTIONS(884), - [anon_sym_LT2] = ACTIONS(858), - [anon_sym_LT_EQ2] = ACTIONS(884), - [anon_sym_GT_EQ2] = ACTIONS(884), - [anon_sym_EQ_TILDE2] = ACTIONS(884), - [anon_sym_BANG_TILDE2] = ACTIONS(884), - [anon_sym_like2] = ACTIONS(884), - [anon_sym_not_DASHlike2] = ACTIONS(884), - [anon_sym_STAR_STAR2] = ACTIONS(884), - [anon_sym_PLUS_PLUS2] = ACTIONS(884), - [anon_sym_SLASH2] = ACTIONS(858), - [anon_sym_mod2] = ACTIONS(884), - [anon_sym_SLASH_SLASH2] = ACTIONS(884), - [anon_sym_PLUS2] = ACTIONS(858), - [anon_sym_bit_DASHshl2] = ACTIONS(884), - [anon_sym_bit_DASHshr2] = ACTIONS(884), - [anon_sym_bit_DASHand2] = ACTIONS(884), - [anon_sym_bit_DASHxor2] = ACTIONS(884), - [anon_sym_bit_DASHor2] = ACTIONS(884), - [anon_sym_COLON2] = ACTIONS(884), - [anon_sym_err_GT] = ACTIONS(858), - [anon_sym_out_GT] = ACTIONS(858), - [anon_sym_e_GT] = ACTIONS(858), - [anon_sym_o_GT] = ACTIONS(858), - [anon_sym_err_PLUSout_GT] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT] = ACTIONS(858), - [anon_sym_o_PLUSe_GT] = ACTIONS(858), - [anon_sym_e_PLUSo_GT] = ACTIONS(858), - [anon_sym_err_GT_GT] = ACTIONS(884), - [anon_sym_out_GT_GT] = ACTIONS(884), - [anon_sym_e_GT_GT] = ACTIONS(884), - [anon_sym_o_GT_GT] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), + [anon_sym_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), - [anon_sym_if] = ACTIONS(2090), - [anon_sym_in] = ACTIONS(2090), - [sym__newline] = ACTIONS(2090), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2090), - [anon_sym_err_GT_PIPE] = ACTIONS(2090), - [anon_sym_out_GT_PIPE] = ACTIONS(2090), - [anon_sym_e_GT_PIPE] = ACTIONS(2090), - [anon_sym_o_GT_PIPE] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), - [anon_sym_RPAREN] = ACTIONS(2090), - [anon_sym_GT2] = ACTIONS(2092), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_EQ_GT] = ACTIONS(2090), - [anon_sym_STAR2] = ACTIONS(2092), - [anon_sym_and2] = ACTIONS(2090), - [anon_sym_xor2] = ACTIONS(2090), - [anon_sym_or2] = ACTIONS(2090), - [anon_sym_not_DASHin2] = ACTIONS(2090), - [anon_sym_has2] = ACTIONS(2090), - [anon_sym_not_DASHhas2] = ACTIONS(2090), - [anon_sym_starts_DASHwith2] = ACTIONS(2090), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), - [anon_sym_ends_DASHwith2] = ACTIONS(2090), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), - [anon_sym_EQ_EQ2] = ACTIONS(2090), - [anon_sym_BANG_EQ2] = ACTIONS(2090), - [anon_sym_LT2] = ACTIONS(2092), - [anon_sym_LT_EQ2] = ACTIONS(2090), - [anon_sym_GT_EQ2] = ACTIONS(2090), - [anon_sym_EQ_TILDE2] = ACTIONS(2090), - [anon_sym_BANG_TILDE2] = ACTIONS(2090), - [anon_sym_like2] = ACTIONS(2090), - [anon_sym_not_DASHlike2] = ACTIONS(2090), - [anon_sym_STAR_STAR2] = ACTIONS(2090), - [anon_sym_PLUS_PLUS2] = ACTIONS(2090), - [anon_sym_SLASH2] = ACTIONS(2092), - [anon_sym_mod2] = ACTIONS(2090), - [anon_sym_SLASH_SLASH2] = ACTIONS(2090), - [anon_sym_PLUS2] = ACTIONS(2092), - [anon_sym_bit_DASHshl2] = ACTIONS(2090), - [anon_sym_bit_DASHshr2] = ACTIONS(2090), - [anon_sym_bit_DASHand2] = ACTIONS(2090), - [anon_sym_bit_DASHxor2] = ACTIONS(2090), - [anon_sym_bit_DASHor2] = ACTIONS(2090), - [anon_sym_LBRACK2] = ACTIONS(2094), - [anon_sym_err_GT] = ACTIONS(2092), - [anon_sym_out_GT] = ACTIONS(2092), - [anon_sym_e_GT] = ACTIONS(2092), - [anon_sym_o_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT] = ACTIONS(2092), - [anon_sym_err_GT_GT] = ACTIONS(2090), - [anon_sym_out_GT_GT] = ACTIONS(2090), - [anon_sym_e_GT_GT] = ACTIONS(2090), - [anon_sym_o_GT_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), + [anon_sym_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_comment] = STATE(681), - [anon_sym_in] = ACTIONS(1754), - [sym__newline] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_err_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_GT_PIPE] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_GT2] = ACTIONS(1756), - [anon_sym_DASH2] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_STAR2] = ACTIONS(1756), - [anon_sym_and2] = ACTIONS(1754), - [anon_sym_xor2] = ACTIONS(1754), - [anon_sym_or2] = ACTIONS(1754), - [anon_sym_not_DASHin2] = ACTIONS(1754), - [anon_sym_has2] = ACTIONS(1754), - [anon_sym_not_DASHhas2] = ACTIONS(1754), - [anon_sym_starts_DASHwith2] = ACTIONS(1754), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1754), - [anon_sym_ends_DASHwith2] = ACTIONS(1754), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1754), - [anon_sym_EQ_EQ2] = ACTIONS(1754), - [anon_sym_BANG_EQ2] = ACTIONS(1754), - [anon_sym_LT2] = ACTIONS(1756), - [anon_sym_LT_EQ2] = ACTIONS(1754), - [anon_sym_GT_EQ2] = ACTIONS(1754), - [anon_sym_EQ_TILDE2] = ACTIONS(1754), - [anon_sym_BANG_TILDE2] = ACTIONS(1754), - [anon_sym_like2] = ACTIONS(1754), - [anon_sym_not_DASHlike2] = ACTIONS(1754), - [anon_sym_LPAREN2] = ACTIONS(1754), - [anon_sym_STAR_STAR2] = ACTIONS(1754), - [anon_sym_PLUS_PLUS2] = ACTIONS(1754), - [anon_sym_SLASH2] = ACTIONS(1756), - [anon_sym_mod2] = ACTIONS(1754), - [anon_sym_SLASH_SLASH2] = ACTIONS(1754), - [anon_sym_PLUS2] = ACTIONS(1756), - [anon_sym_bit_DASHshl2] = ACTIONS(1754), - [anon_sym_bit_DASHshr2] = ACTIONS(1754), - [anon_sym_bit_DASHand2] = ACTIONS(1754), - [anon_sym_bit_DASHxor2] = ACTIONS(1754), - [anon_sym_bit_DASHor2] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(2096), - [aux_sym__immediate_decimal_token5] = ACTIONS(2098), - [anon_sym_err_GT] = ACTIONS(1756), - [anon_sym_out_GT] = ACTIONS(1756), - [anon_sym_e_GT] = ACTIONS(1756), - [anon_sym_o_GT] = ACTIONS(1756), - [anon_sym_err_PLUSout_GT] = ACTIONS(1756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), - [anon_sym_o_PLUSe_GT] = ACTIONS(1756), - [anon_sym_e_PLUSo_GT] = ACTIONS(1756), - [anon_sym_err_GT_GT] = ACTIONS(1754), - [anon_sym_out_GT_GT] = ACTIONS(1754), - [anon_sym_e_GT_GT] = ACTIONS(1754), - [anon_sym_o_GT_GT] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), - [sym__unquoted_pattern] = ACTIONS(1756), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [sym__newline] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_err_GT_PIPE] = ACTIONS(2088), + [anon_sym_out_GT_PIPE] = ACTIONS(2088), + [anon_sym_e_GT_PIPE] = ACTIONS(2088), + [anon_sym_o_GT_PIPE] = ACTIONS(2088), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), + [anon_sym_RPAREN] = ACTIONS(2088), + [anon_sym_GT2] = ACTIONS(2090), + [anon_sym_DASH2] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2088), + [anon_sym_RBRACE] = ACTIONS(2088), + [anon_sym_EQ_GT] = ACTIONS(2088), + [anon_sym_STAR2] = ACTIONS(2090), + [anon_sym_and2] = ACTIONS(2088), + [anon_sym_xor2] = ACTIONS(2088), + [anon_sym_or2] = ACTIONS(2088), + [anon_sym_not_DASHin2] = ACTIONS(2088), + [anon_sym_has2] = ACTIONS(2088), + [anon_sym_not_DASHhas2] = ACTIONS(2088), + [anon_sym_starts_DASHwith2] = ACTIONS(2088), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), + [anon_sym_ends_DASHwith2] = ACTIONS(2088), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), + [anon_sym_EQ_EQ2] = ACTIONS(2088), + [anon_sym_BANG_EQ2] = ACTIONS(2088), + [anon_sym_LT2] = ACTIONS(2090), + [anon_sym_LT_EQ2] = ACTIONS(2088), + [anon_sym_GT_EQ2] = ACTIONS(2088), + [anon_sym_EQ_TILDE2] = ACTIONS(2088), + [anon_sym_BANG_TILDE2] = ACTIONS(2088), + [anon_sym_like2] = ACTIONS(2088), + [anon_sym_not_DASHlike2] = ACTIONS(2088), + [anon_sym_STAR_STAR2] = ACTIONS(2088), + [anon_sym_PLUS_PLUS2] = ACTIONS(2088), + [anon_sym_SLASH2] = ACTIONS(2090), + [anon_sym_mod2] = ACTIONS(2088), + [anon_sym_SLASH_SLASH2] = ACTIONS(2088), + [anon_sym_PLUS2] = ACTIONS(2090), + [anon_sym_bit_DASHshl2] = ACTIONS(2088), + [anon_sym_bit_DASHshr2] = ACTIONS(2088), + [anon_sym_bit_DASHand2] = ACTIONS(2088), + [anon_sym_bit_DASHxor2] = ACTIONS(2088), + [anon_sym_bit_DASHor2] = ACTIONS(2088), + [anon_sym_LBRACK2] = ACTIONS(2092), + [anon_sym_err_GT] = ACTIONS(2090), + [anon_sym_out_GT] = ACTIONS(2090), + [anon_sym_e_GT] = ACTIONS(2090), + [anon_sym_o_GT] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT] = ACTIONS(2090), + [anon_sym_err_GT_GT] = ACTIONS(2088), + [anon_sym_out_GT_GT] = ACTIONS(2088), + [anon_sym_e_GT_GT] = ACTIONS(2088), + [anon_sym_o_GT_GT] = ACTIONS(2088), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), [anon_sym_POUND] = ACTIONS(3), }, [STATE(682)] = { - [sym__expr_parenthesized_immediate] = STATE(4713), [sym_comment] = STATE(682), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [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(4713), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(683), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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(4713), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(684), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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(4713), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(685), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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(2100), + [anon_sym_in] = ACTIONS(2102), [sym__newline] = ACTIONS(2102), [anon_sym_SEMI] = ACTIONS(2102), [anon_sym_PIPE] = ACTIONS(2102), @@ -99881,51 +100229,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2102), [anon_sym_RPAREN] = ACTIONS(2102), [anon_sym_GT2] = ACTIONS(2104), - [anon_sym_DASH2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2102), [anon_sym_LBRACE] = ACTIONS(2102), [anon_sym_RBRACE] = ACTIONS(2102), [anon_sym_STAR2] = ACTIONS(2104), - [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_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(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_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(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2102), + [anon_sym_SLASH_SLASH2] = ACTIONS(2102), [anon_sym_PLUS2] = ACTIONS(2104), - [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(1633), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), - [anon_sym_err_GT] = ACTIONS(2106), - [anon_sym_out_GT] = ACTIONS(2106), - [anon_sym_e_GT] = ACTIONS(2106), - [anon_sym_o_GT] = ACTIONS(2106), - [anon_sym_err_PLUSout_GT] = ACTIONS(2106), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), - [anon_sym_o_PLUSe_GT] = ACTIONS(2106), - [anon_sym_e_PLUSo_GT] = ACTIONS(2106), + [anon_sym_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), @@ -99937,7946 +100285,7187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(687)] = { - [sym__expr_parenthesized_immediate] = STATE(4713), [sym_comment] = STATE(687), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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(2108), - [sym__newline] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2108), - [anon_sym_PIPE] = ACTIONS(2108), - [anon_sym_err_GT_PIPE] = ACTIONS(2108), - [anon_sym_out_GT_PIPE] = ACTIONS(2108), - [anon_sym_e_GT_PIPE] = ACTIONS(2108), - [anon_sym_o_GT_PIPE] = ACTIONS(2108), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2108), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2108), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2108), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2108), - [anon_sym_RPAREN] = ACTIONS(2108), - [anon_sym_GT2] = ACTIONS(2110), - [anon_sym_DASH2] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_RBRACE] = ACTIONS(2108), - [anon_sym_STAR2] = ACTIONS(2110), - [anon_sym_and2] = ACTIONS(2108), - [anon_sym_xor2] = ACTIONS(2108), - [anon_sym_or2] = ACTIONS(2108), - [anon_sym_not_DASHin2] = ACTIONS(2108), - [anon_sym_has2] = ACTIONS(2108), - [anon_sym_not_DASHhas2] = ACTIONS(2108), - [anon_sym_starts_DASHwith2] = ACTIONS(2108), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2108), - [anon_sym_ends_DASHwith2] = ACTIONS(2108), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2108), - [anon_sym_EQ_EQ2] = ACTIONS(2108), - [anon_sym_BANG_EQ2] = ACTIONS(2108), - [anon_sym_LT2] = ACTIONS(2110), - [anon_sym_LT_EQ2] = ACTIONS(2108), - [anon_sym_GT_EQ2] = ACTIONS(2108), - [anon_sym_EQ_TILDE2] = ACTIONS(2108), - [anon_sym_BANG_TILDE2] = ACTIONS(2108), - [anon_sym_like2] = ACTIONS(2108), - [anon_sym_not_DASHlike2] = ACTIONS(2108), - [anon_sym_STAR_STAR2] = ACTIONS(2108), - [anon_sym_PLUS_PLUS2] = ACTIONS(2108), - [anon_sym_SLASH2] = ACTIONS(2110), - [anon_sym_mod2] = ACTIONS(2108), - [anon_sym_SLASH_SLASH2] = ACTIONS(2108), - [anon_sym_PLUS2] = ACTIONS(2110), - [anon_sym_bit_DASHshl2] = ACTIONS(2108), - [anon_sym_bit_DASHshr2] = ACTIONS(2108), - [anon_sym_bit_DASHand2] = ACTIONS(2108), - [anon_sym_bit_DASHxor2] = ACTIONS(2108), - [anon_sym_bit_DASHor2] = ACTIONS(2108), - [anon_sym_DOT_DOT2] = ACTIONS(2112), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2114), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2114), - [anon_sym_err_GT] = ACTIONS(2110), - [anon_sym_out_GT] = ACTIONS(2110), - [anon_sym_e_GT] = ACTIONS(2110), - [anon_sym_o_GT] = ACTIONS(2110), - [anon_sym_err_PLUSout_GT] = ACTIONS(2110), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2110), - [anon_sym_o_PLUSe_GT] = ACTIONS(2110), - [anon_sym_e_PLUSo_GT] = ACTIONS(2110), - [anon_sym_err_GT_GT] = ACTIONS(2108), - [anon_sym_out_GT_GT] = ACTIONS(2108), - [anon_sym_e_GT_GT] = ACTIONS(2108), - [anon_sym_o_GT_GT] = ACTIONS(2108), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2108), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2108), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2108), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2108), + [anon_sym_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), - [anon_sym_in] = ACTIONS(2116), - [sym__newline] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_PIPE] = ACTIONS(2116), - [anon_sym_err_GT_PIPE] = ACTIONS(2116), - [anon_sym_out_GT_PIPE] = ACTIONS(2116), - [anon_sym_e_GT_PIPE] = ACTIONS(2116), - [anon_sym_o_GT_PIPE] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2116), - [anon_sym_RPAREN] = ACTIONS(2116), - [anon_sym_GT2] = ACTIONS(2118), - [anon_sym_DASH2] = ACTIONS(2116), - [anon_sym_LBRACE] = ACTIONS(2116), - [anon_sym_RBRACE] = ACTIONS(2116), - [anon_sym_STAR2] = ACTIONS(2118), - [anon_sym_and2] = ACTIONS(2116), - [anon_sym_xor2] = ACTIONS(2116), - [anon_sym_or2] = ACTIONS(2116), - [anon_sym_not_DASHin2] = ACTIONS(2116), - [anon_sym_has2] = ACTIONS(2116), - [anon_sym_not_DASHhas2] = ACTIONS(2116), - [anon_sym_starts_DASHwith2] = ACTIONS(2116), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2116), - [anon_sym_ends_DASHwith2] = ACTIONS(2116), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2116), - [anon_sym_EQ_EQ2] = ACTIONS(2116), - [anon_sym_BANG_EQ2] = ACTIONS(2116), - [anon_sym_LT2] = ACTIONS(2118), - [anon_sym_LT_EQ2] = ACTIONS(2116), - [anon_sym_GT_EQ2] = ACTIONS(2116), - [anon_sym_EQ_TILDE2] = ACTIONS(2116), - [anon_sym_BANG_TILDE2] = ACTIONS(2116), - [anon_sym_like2] = ACTIONS(2116), - [anon_sym_not_DASHlike2] = ACTIONS(2116), - [anon_sym_STAR_STAR2] = ACTIONS(2116), - [anon_sym_PLUS_PLUS2] = ACTIONS(2116), - [anon_sym_SLASH2] = ACTIONS(2118), - [anon_sym_mod2] = ACTIONS(2116), - [anon_sym_SLASH_SLASH2] = ACTIONS(2116), - [anon_sym_PLUS2] = ACTIONS(2118), - [anon_sym_bit_DASHshl2] = ACTIONS(2116), - [anon_sym_bit_DASHshr2] = ACTIONS(2116), - [anon_sym_bit_DASHand2] = ACTIONS(2116), - [anon_sym_bit_DASHxor2] = ACTIONS(2116), - [anon_sym_bit_DASHor2] = ACTIONS(2116), - [anon_sym_DOT_DOT2] = ACTIONS(2120), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2122), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2122), - [anon_sym_err_GT] = ACTIONS(2118), - [anon_sym_out_GT] = ACTIONS(2118), - [anon_sym_e_GT] = ACTIONS(2118), - [anon_sym_o_GT] = ACTIONS(2118), - [anon_sym_err_PLUSout_GT] = ACTIONS(2118), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2118), - [anon_sym_o_PLUSe_GT] = ACTIONS(2118), - [anon_sym_e_PLUSo_GT] = ACTIONS(2118), - [anon_sym_err_GT_GT] = ACTIONS(2116), - [anon_sym_out_GT_GT] = ACTIONS(2116), - [anon_sym_e_GT_GT] = ACTIONS(2116), - [anon_sym_o_GT_GT] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2116), + [ts_builtin_sym_end] = ACTIONS(1870), + [anon_sym_in] = ACTIONS(1870), + [sym__newline] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_err_GT_PIPE] = ACTIONS(1870), + [anon_sym_out_GT_PIPE] = ACTIONS(1870), + [anon_sym_e_GT_PIPE] = ACTIONS(1870), + [anon_sym_o_GT_PIPE] = ACTIONS(1870), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), + [anon_sym_GT2] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1870), + [anon_sym_STAR2] = ACTIONS(1872), + [anon_sym_and2] = ACTIONS(1870), + [anon_sym_xor2] = ACTIONS(1870), + [anon_sym_or2] = ACTIONS(1870), + [anon_sym_not_DASHin2] = ACTIONS(1870), + [anon_sym_has2] = ACTIONS(1870), + [anon_sym_not_DASHhas2] = ACTIONS(1870), + [anon_sym_starts_DASHwith2] = ACTIONS(1870), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), + [anon_sym_ends_DASHwith2] = ACTIONS(1870), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), + [anon_sym_EQ_EQ2] = ACTIONS(1870), + [anon_sym_BANG_EQ2] = ACTIONS(1870), + [anon_sym_LT2] = ACTIONS(1872), + [anon_sym_LT_EQ2] = ACTIONS(1870), + [anon_sym_GT_EQ2] = ACTIONS(1870), + [anon_sym_EQ_TILDE2] = ACTIONS(1870), + [anon_sym_BANG_TILDE2] = ACTIONS(1870), + [anon_sym_like2] = ACTIONS(1870), + [anon_sym_not_DASHlike2] = ACTIONS(1870), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_STAR_STAR2] = ACTIONS(1870), + [anon_sym_PLUS_PLUS2] = ACTIONS(1870), + [anon_sym_SLASH2] = ACTIONS(1872), + [anon_sym_mod2] = ACTIONS(1870), + [anon_sym_SLASH_SLASH2] = ACTIONS(1870), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_bit_DASHshl2] = ACTIONS(1870), + [anon_sym_bit_DASHshr2] = ACTIONS(1870), + [anon_sym_bit_DASHand2] = ACTIONS(1870), + [anon_sym_bit_DASHxor2] = ACTIONS(1870), + [anon_sym_bit_DASHor2] = ACTIONS(1870), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1870), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1870), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1870), + [anon_sym_out_GT_GT] = ACTIONS(1870), + [anon_sym_e_GT_GT] = ACTIONS(1870), + [anon_sym_o_GT_GT] = ACTIONS(1870), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), + [sym__unquoted_pattern] = ACTIONS(1872), [anon_sym_POUND] = ACTIONS(3), }, [STATE(690)] = { [sym_comment] = STATE(690), - [anon_sym_in] = ACTIONS(2124), - [sym__newline] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_PIPE] = ACTIONS(2124), - [anon_sym_err_GT_PIPE] = ACTIONS(2124), - [anon_sym_out_GT_PIPE] = ACTIONS(2124), - [anon_sym_e_GT_PIPE] = ACTIONS(2124), - [anon_sym_o_GT_PIPE] = ACTIONS(2124), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2124), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2124), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2124), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2124), - [anon_sym_RPAREN] = ACTIONS(2124), - [anon_sym_GT2] = ACTIONS(2126), - [anon_sym_DASH2] = ACTIONS(2124), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2124), - [anon_sym_STAR2] = ACTIONS(2126), - [anon_sym_and2] = ACTIONS(2124), - [anon_sym_xor2] = ACTIONS(2124), - [anon_sym_or2] = ACTIONS(2124), - [anon_sym_not_DASHin2] = ACTIONS(2124), - [anon_sym_has2] = ACTIONS(2124), - [anon_sym_not_DASHhas2] = ACTIONS(2124), - [anon_sym_starts_DASHwith2] = ACTIONS(2124), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2124), - [anon_sym_ends_DASHwith2] = ACTIONS(2124), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2124), - [anon_sym_EQ_EQ2] = ACTIONS(2124), - [anon_sym_BANG_EQ2] = ACTIONS(2124), - [anon_sym_LT2] = ACTIONS(2126), - [anon_sym_LT_EQ2] = ACTIONS(2124), - [anon_sym_GT_EQ2] = ACTIONS(2124), - [anon_sym_EQ_TILDE2] = ACTIONS(2124), - [anon_sym_BANG_TILDE2] = ACTIONS(2124), - [anon_sym_like2] = ACTIONS(2124), - [anon_sym_not_DASHlike2] = ACTIONS(2124), - [anon_sym_STAR_STAR2] = ACTIONS(2124), - [anon_sym_PLUS_PLUS2] = ACTIONS(2124), - [anon_sym_SLASH2] = ACTIONS(2126), - [anon_sym_mod2] = ACTIONS(2124), - [anon_sym_SLASH_SLASH2] = ACTIONS(2124), - [anon_sym_PLUS2] = ACTIONS(2126), - [anon_sym_bit_DASHshl2] = ACTIONS(2124), - [anon_sym_bit_DASHshr2] = ACTIONS(2124), - [anon_sym_bit_DASHand2] = ACTIONS(2124), - [anon_sym_bit_DASHxor2] = ACTIONS(2124), - [anon_sym_bit_DASHor2] = ACTIONS(2124), - [anon_sym_DOT_DOT2] = ACTIONS(2128), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2130), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2130), - [anon_sym_err_GT] = ACTIONS(2126), - [anon_sym_out_GT] = ACTIONS(2126), - [anon_sym_e_GT] = ACTIONS(2126), - [anon_sym_o_GT] = ACTIONS(2126), - [anon_sym_err_PLUSout_GT] = ACTIONS(2126), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2126), - [anon_sym_o_PLUSe_GT] = ACTIONS(2126), - [anon_sym_e_PLUSo_GT] = ACTIONS(2126), - [anon_sym_err_GT_GT] = ACTIONS(2124), - [anon_sym_out_GT_GT] = ACTIONS(2124), - [anon_sym_e_GT_GT] = ACTIONS(2124), - [anon_sym_o_GT_GT] = ACTIONS(2124), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2124), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2124), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2124), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2124), + [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(4713), + [sym__expr_parenthesized_immediate] = STATE(5171), [sym_comment] = STATE(691), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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), - [ts_builtin_sym_end] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [sym__newline] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_err_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_GT_PIPE] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1746), - [anon_sym_GT2] = ACTIONS(1748), - [anon_sym_DASH2] = ACTIONS(1746), - [anon_sym_STAR2] = ACTIONS(1748), - [anon_sym_and2] = ACTIONS(1746), - [anon_sym_xor2] = ACTIONS(1746), - [anon_sym_or2] = ACTIONS(1746), - [anon_sym_not_DASHin2] = ACTIONS(1746), - [anon_sym_has2] = ACTIONS(1746), - [anon_sym_not_DASHhas2] = ACTIONS(1746), - [anon_sym_starts_DASHwith2] = ACTIONS(1746), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1746), - [anon_sym_ends_DASHwith2] = ACTIONS(1746), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1746), - [anon_sym_EQ_EQ2] = ACTIONS(1746), - [anon_sym_BANG_EQ2] = ACTIONS(1746), - [anon_sym_LT2] = ACTIONS(1748), - [anon_sym_LT_EQ2] = ACTIONS(1746), - [anon_sym_GT_EQ2] = ACTIONS(1746), - [anon_sym_EQ_TILDE2] = ACTIONS(1746), - [anon_sym_BANG_TILDE2] = ACTIONS(1746), - [anon_sym_like2] = ACTIONS(1746), - [anon_sym_not_DASHlike2] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1746), - [anon_sym_STAR_STAR2] = ACTIONS(1746), - [anon_sym_PLUS_PLUS2] = ACTIONS(1746), - [anon_sym_SLASH2] = ACTIONS(1748), - [anon_sym_mod2] = ACTIONS(1746), - [anon_sym_SLASH_SLASH2] = ACTIONS(1746), - [anon_sym_PLUS2] = ACTIONS(1748), - [anon_sym_bit_DASHshl2] = ACTIONS(1746), - [anon_sym_bit_DASHshr2] = ACTIONS(1746), - [anon_sym_bit_DASHand2] = ACTIONS(1746), - [anon_sym_bit_DASHxor2] = ACTIONS(1746), - [anon_sym_bit_DASHor2] = ACTIONS(1746), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1746), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1746), - [anon_sym_err_GT] = ACTIONS(1748), - [anon_sym_out_GT] = ACTIONS(1748), - [anon_sym_e_GT] = ACTIONS(1748), - [anon_sym_o_GT] = ACTIONS(1748), - [anon_sym_err_PLUSout_GT] = ACTIONS(1748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1748), - [anon_sym_o_PLUSe_GT] = ACTIONS(1748), - [anon_sym_e_PLUSo_GT] = ACTIONS(1748), - [anon_sym_err_GT_GT] = ACTIONS(1746), - [anon_sym_out_GT_GT] = ACTIONS(1746), - [anon_sym_e_GT_GT] = ACTIONS(1746), - [anon_sym_o_GT_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), - [sym__unquoted_pattern] = ACTIONS(1748), + [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__expr_parenthesized_immediate] = STATE(5092), [sym_comment] = STATE(693), - [anon_sym_in] = ACTIONS(2132), - [sym__newline] = ACTIONS(2132), - [anon_sym_SEMI] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2132), - [anon_sym_err_GT_PIPE] = ACTIONS(2132), - [anon_sym_out_GT_PIPE] = ACTIONS(2132), - [anon_sym_e_GT_PIPE] = ACTIONS(2132), - [anon_sym_o_GT_PIPE] = ACTIONS(2132), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2132), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2132), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2132), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2132), - [anon_sym_RPAREN] = ACTIONS(2132), - [anon_sym_GT2] = ACTIONS(2134), - [anon_sym_DASH2] = ACTIONS(2132), - [anon_sym_LBRACE] = ACTIONS(2132), - [anon_sym_RBRACE] = ACTIONS(2132), - [anon_sym_EQ_GT] = ACTIONS(2132), - [anon_sym_STAR2] = ACTIONS(2134), - [anon_sym_and2] = ACTIONS(2132), - [anon_sym_xor2] = ACTIONS(2132), - [anon_sym_or2] = ACTIONS(2132), - [anon_sym_not_DASHin2] = ACTIONS(2132), - [anon_sym_has2] = ACTIONS(2132), - [anon_sym_not_DASHhas2] = ACTIONS(2132), - [anon_sym_starts_DASHwith2] = ACTIONS(2132), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2132), - [anon_sym_ends_DASHwith2] = ACTIONS(2132), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2132), - [anon_sym_EQ_EQ2] = ACTIONS(2132), - [anon_sym_BANG_EQ2] = ACTIONS(2132), - [anon_sym_LT2] = ACTIONS(2134), - [anon_sym_LT_EQ2] = ACTIONS(2132), - [anon_sym_GT_EQ2] = ACTIONS(2132), - [anon_sym_EQ_TILDE2] = ACTIONS(2132), - [anon_sym_BANG_TILDE2] = ACTIONS(2132), - [anon_sym_like2] = ACTIONS(2132), - [anon_sym_not_DASHlike2] = ACTIONS(2132), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2132), - [anon_sym_PLUS_PLUS2] = ACTIONS(2132), - [anon_sym_SLASH2] = ACTIONS(2134), - [anon_sym_mod2] = ACTIONS(2132), - [anon_sym_SLASH_SLASH2] = ACTIONS(2132), - [anon_sym_PLUS2] = ACTIONS(2134), - [anon_sym_bit_DASHshl2] = ACTIONS(2132), - [anon_sym_bit_DASHshr2] = ACTIONS(2132), - [anon_sym_bit_DASHand2] = ACTIONS(2132), - [anon_sym_bit_DASHxor2] = ACTIONS(2132), - [anon_sym_bit_DASHor2] = ACTIONS(2132), - [anon_sym_err_GT] = ACTIONS(2134), - [anon_sym_out_GT] = ACTIONS(2134), - [anon_sym_e_GT] = ACTIONS(2134), - [anon_sym_o_GT] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT] = ACTIONS(2134), - [anon_sym_err_GT_GT] = ACTIONS(2132), - [anon_sym_out_GT_GT] = ACTIONS(2132), - [anon_sym_e_GT_GT] = ACTIONS(2132), - [anon_sym_o_GT_GT] = ACTIONS(2132), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2132), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2132), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2132), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2132), + [anon_sym_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__expr_parenthesized_immediate] = STATE(5092), [sym_comment] = STATE(694), - [anon_sym_in] = ACTIONS(2136), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_EQ_GT] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2136), - [anon_sym_xor2] = ACTIONS(2136), - [anon_sym_or2] = ACTIONS(2136), - [anon_sym_not_DASHin2] = ACTIONS(2136), - [anon_sym_has2] = ACTIONS(2136), - [anon_sym_not_DASHhas2] = ACTIONS(2136), - [anon_sym_starts_DASHwith2] = ACTIONS(2136), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2136), - [anon_sym_ends_DASHwith2] = ACTIONS(2136), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2136), - [anon_sym_EQ_EQ2] = ACTIONS(2136), - [anon_sym_BANG_EQ2] = ACTIONS(2136), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2136), - [anon_sym_GT_EQ2] = ACTIONS(2136), - [anon_sym_EQ_TILDE2] = ACTIONS(2136), - [anon_sym_BANG_TILDE2] = ACTIONS(2136), - [anon_sym_like2] = ACTIONS(2136), - [anon_sym_not_DASHlike2] = ACTIONS(2136), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2136), - [anon_sym_PLUS_PLUS2] = ACTIONS(2136), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2136), - [anon_sym_SLASH_SLASH2] = ACTIONS(2136), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2136), - [anon_sym_bit_DASHshr2] = ACTIONS(2136), - [anon_sym_bit_DASHand2] = ACTIONS(2136), - [anon_sym_bit_DASHxor2] = ACTIONS(2136), - [anon_sym_bit_DASHor2] = ACTIONS(2136), - [anon_sym_err_GT] = ACTIONS(2138), - [anon_sym_out_GT] = ACTIONS(2138), - [anon_sym_e_GT] = ACTIONS(2138), - [anon_sym_o_GT] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT] = ACTIONS(2138), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [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(2140), - [anon_sym_in] = ACTIONS(2140), - [sym__newline] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_err_GT_PIPE] = ACTIONS(2140), - [anon_sym_out_GT_PIPE] = ACTIONS(2140), - [anon_sym_e_GT_PIPE] = ACTIONS(2140), - [anon_sym_o_GT_PIPE] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_GT2] = ACTIONS(2142), - [anon_sym_DASH2] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_EQ_GT] = ACTIONS(2140), - [anon_sym_STAR2] = ACTIONS(2142), - [anon_sym_and2] = ACTIONS(2140), - [anon_sym_xor2] = ACTIONS(2140), - [anon_sym_or2] = ACTIONS(2140), - [anon_sym_not_DASHin2] = ACTIONS(2140), - [anon_sym_has2] = ACTIONS(2140), - [anon_sym_not_DASHhas2] = ACTIONS(2140), - [anon_sym_starts_DASHwith2] = ACTIONS(2140), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2140), - [anon_sym_ends_DASHwith2] = ACTIONS(2140), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2140), - [anon_sym_EQ_EQ2] = ACTIONS(2140), - [anon_sym_BANG_EQ2] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LT_EQ2] = ACTIONS(2140), - [anon_sym_GT_EQ2] = ACTIONS(2140), - [anon_sym_EQ_TILDE2] = ACTIONS(2140), - [anon_sym_BANG_TILDE2] = ACTIONS(2140), - [anon_sym_like2] = ACTIONS(2140), - [anon_sym_not_DASHlike2] = ACTIONS(2140), - [anon_sym_LPAREN2] = ACTIONS(2140), - [anon_sym_STAR_STAR2] = ACTIONS(2140), - [anon_sym_PLUS_PLUS2] = ACTIONS(2140), - [anon_sym_SLASH2] = ACTIONS(2142), - [anon_sym_mod2] = ACTIONS(2140), - [anon_sym_SLASH_SLASH2] = ACTIONS(2140), - [anon_sym_PLUS2] = ACTIONS(2142), - [anon_sym_bit_DASHshl2] = ACTIONS(2140), - [anon_sym_bit_DASHshr2] = ACTIONS(2140), - [anon_sym_bit_DASHand2] = ACTIONS(2140), - [anon_sym_bit_DASHxor2] = ACTIONS(2140), - [anon_sym_bit_DASHor2] = ACTIONS(2140), - [anon_sym_err_GT] = ACTIONS(2142), - [anon_sym_out_GT] = ACTIONS(2142), - [anon_sym_e_GT] = ACTIONS(2142), - [anon_sym_o_GT] = ACTIONS(2142), - [anon_sym_err_PLUSout_GT] = ACTIONS(2142), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2142), - [anon_sym_o_PLUSe_GT] = ACTIONS(2142), - [anon_sym_e_PLUSo_GT] = ACTIONS(2142), - [anon_sym_err_GT_GT] = ACTIONS(2140), - [anon_sym_out_GT_GT] = ACTIONS(2140), - [anon_sym_e_GT_GT] = ACTIONS(2140), - [anon_sym_o_GT_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2140), + [anon_sym_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_else] = ACTIONS(2144), - [anon_sym_catch] = 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_COLON] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_RPAREN] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2146), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_LBRACE] = 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_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_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_if] = ACTIONS(2148), - [anon_sym_in] = ACTIONS(2148), - [sym__newline] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_PIPE] = ACTIONS(2148), - [anon_sym_err_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_GT_PIPE] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2148), - [anon_sym_RPAREN] = ACTIONS(2148), - [anon_sym_GT2] = ACTIONS(2150), - [anon_sym_DASH2] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2148), - [anon_sym_EQ_GT] = ACTIONS(2148), - [anon_sym_STAR2] = ACTIONS(2150), - [anon_sym_and2] = ACTIONS(2148), - [anon_sym_xor2] = ACTIONS(2148), - [anon_sym_or2] = ACTIONS(2148), - [anon_sym_not_DASHin2] = ACTIONS(2148), - [anon_sym_has2] = ACTIONS(2148), - [anon_sym_not_DASHhas2] = ACTIONS(2148), - [anon_sym_starts_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2148), - [anon_sym_ends_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2148), - [anon_sym_EQ_EQ2] = ACTIONS(2148), - [anon_sym_BANG_EQ2] = ACTIONS(2148), - [anon_sym_LT2] = ACTIONS(2150), - [anon_sym_LT_EQ2] = ACTIONS(2148), - [anon_sym_GT_EQ2] = ACTIONS(2148), - [anon_sym_EQ_TILDE2] = ACTIONS(2148), - [anon_sym_BANG_TILDE2] = ACTIONS(2148), - [anon_sym_like2] = ACTIONS(2148), - [anon_sym_not_DASHlike2] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(2148), - [anon_sym_STAR_STAR2] = ACTIONS(2148), - [anon_sym_PLUS_PLUS2] = ACTIONS(2148), - [anon_sym_SLASH2] = ACTIONS(2150), - [anon_sym_mod2] = ACTIONS(2148), - [anon_sym_SLASH_SLASH2] = ACTIONS(2148), - [anon_sym_PLUS2] = ACTIONS(2150), - [anon_sym_bit_DASHshl2] = ACTIONS(2148), - [anon_sym_bit_DASHshr2] = ACTIONS(2148), - [anon_sym_bit_DASHand2] = ACTIONS(2148), - [anon_sym_bit_DASHxor2] = ACTIONS(2148), - [anon_sym_bit_DASHor2] = ACTIONS(2148), - [anon_sym_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(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(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(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), - [ts_builtin_sym_end] = ACTIONS(1812), - [anon_sym_in] = ACTIONS(1812), - [sym__newline] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_err_GT_PIPE] = ACTIONS(1812), - [anon_sym_out_GT_PIPE] = ACTIONS(1812), - [anon_sym_e_GT_PIPE] = ACTIONS(1812), - [anon_sym_o_GT_PIPE] = ACTIONS(1812), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1812), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1812), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1812), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1812), - [anon_sym_GT2] = ACTIONS(1814), - [anon_sym_DASH2] = ACTIONS(1812), - [anon_sym_STAR2] = ACTIONS(1814), - [anon_sym_and2] = ACTIONS(1812), - [anon_sym_xor2] = ACTIONS(1812), - [anon_sym_or2] = ACTIONS(1812), - [anon_sym_not_DASHin2] = ACTIONS(1812), - [anon_sym_has2] = ACTIONS(1812), - [anon_sym_not_DASHhas2] = ACTIONS(1812), - [anon_sym_starts_DASHwith2] = ACTIONS(1812), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1812), - [anon_sym_ends_DASHwith2] = ACTIONS(1812), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1812), - [anon_sym_EQ_EQ2] = ACTIONS(1812), - [anon_sym_BANG_EQ2] = ACTIONS(1812), - [anon_sym_LT2] = ACTIONS(1814), - [anon_sym_LT_EQ2] = ACTIONS(1812), - [anon_sym_GT_EQ2] = ACTIONS(1812), - [anon_sym_EQ_TILDE2] = ACTIONS(1812), - [anon_sym_BANG_TILDE2] = ACTIONS(1812), - [anon_sym_like2] = ACTIONS(1812), - [anon_sym_not_DASHlike2] = ACTIONS(1812), - [anon_sym_LPAREN2] = ACTIONS(1812), - [anon_sym_STAR_STAR2] = ACTIONS(1812), - [anon_sym_PLUS_PLUS2] = ACTIONS(1812), - [anon_sym_SLASH2] = ACTIONS(1814), - [anon_sym_mod2] = ACTIONS(1812), - [anon_sym_SLASH_SLASH2] = ACTIONS(1812), - [anon_sym_PLUS2] = ACTIONS(1814), - [anon_sym_bit_DASHshl2] = ACTIONS(1812), - [anon_sym_bit_DASHshr2] = ACTIONS(1812), - [anon_sym_bit_DASHand2] = ACTIONS(1812), - [anon_sym_bit_DASHxor2] = ACTIONS(1812), - [anon_sym_bit_DASHor2] = ACTIONS(1812), - [anon_sym_DOT_DOT2] = ACTIONS(1814), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1812), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1812), - [anon_sym_err_GT] = ACTIONS(1814), - [anon_sym_out_GT] = ACTIONS(1814), - [anon_sym_e_GT] = ACTIONS(1814), - [anon_sym_o_GT] = ACTIONS(1814), - [anon_sym_err_PLUSout_GT] = ACTIONS(1814), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1814), - [anon_sym_o_PLUSe_GT] = ACTIONS(1814), - [anon_sym_e_PLUSo_GT] = ACTIONS(1814), - [anon_sym_err_GT_GT] = ACTIONS(1812), - [anon_sym_out_GT_GT] = ACTIONS(1812), - [anon_sym_e_GT_GT] = ACTIONS(1812), - [anon_sym_o_GT_GT] = ACTIONS(1812), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1812), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1812), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1812), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1812), - [sym__unquoted_pattern] = ACTIONS(1814), + [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_if] = ACTIONS(2160), - [anon_sym_in] = ACTIONS(2160), - [sym__newline] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_PIPE] = ACTIONS(2160), - [anon_sym_err_GT_PIPE] = ACTIONS(2160), - [anon_sym_out_GT_PIPE] = ACTIONS(2160), - [anon_sym_e_GT_PIPE] = ACTIONS(2160), - [anon_sym_o_GT_PIPE] = ACTIONS(2160), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2160), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2160), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2160), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_GT2] = ACTIONS(2162), - [anon_sym_DASH2] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_EQ_GT] = ACTIONS(2160), - [anon_sym_STAR2] = ACTIONS(2162), - [anon_sym_and2] = ACTIONS(2160), - [anon_sym_xor2] = ACTIONS(2160), - [anon_sym_or2] = ACTIONS(2160), - [anon_sym_not_DASHin2] = ACTIONS(2160), - [anon_sym_has2] = ACTIONS(2160), - [anon_sym_not_DASHhas2] = ACTIONS(2160), - [anon_sym_starts_DASHwith2] = ACTIONS(2160), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2160), - [anon_sym_ends_DASHwith2] = ACTIONS(2160), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2160), - [anon_sym_EQ_EQ2] = ACTIONS(2160), - [anon_sym_BANG_EQ2] = ACTIONS(2160), - [anon_sym_LT2] = ACTIONS(2162), - [anon_sym_LT_EQ2] = ACTIONS(2160), - [anon_sym_GT_EQ2] = ACTIONS(2160), - [anon_sym_EQ_TILDE2] = ACTIONS(2160), - [anon_sym_BANG_TILDE2] = ACTIONS(2160), - [anon_sym_like2] = ACTIONS(2160), - [anon_sym_not_DASHlike2] = ACTIONS(2160), - [anon_sym_STAR_STAR2] = ACTIONS(2160), - [anon_sym_PLUS_PLUS2] = ACTIONS(2160), - [anon_sym_SLASH2] = ACTIONS(2162), - [anon_sym_mod2] = ACTIONS(2160), - [anon_sym_SLASH_SLASH2] = ACTIONS(2160), - [anon_sym_PLUS2] = ACTIONS(2162), - [anon_sym_bit_DASHshl2] = ACTIONS(2160), - [anon_sym_bit_DASHshr2] = ACTIONS(2160), - [anon_sym_bit_DASHand2] = ACTIONS(2160), - [anon_sym_bit_DASHxor2] = ACTIONS(2160), - [anon_sym_bit_DASHor2] = ACTIONS(2160), - [anon_sym_COLON2] = ACTIONS(2160), - [anon_sym_err_GT] = ACTIONS(2162), - [anon_sym_out_GT] = ACTIONS(2162), - [anon_sym_e_GT] = ACTIONS(2162), - [anon_sym_o_GT] = ACTIONS(2162), - [anon_sym_err_PLUSout_GT] = ACTIONS(2162), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2162), - [anon_sym_o_PLUSe_GT] = ACTIONS(2162), - [anon_sym_e_PLUSo_GT] = ACTIONS(2162), - [anon_sym_err_GT_GT] = ACTIONS(2160), - [anon_sym_out_GT_GT] = ACTIONS(2160), - [anon_sym_e_GT_GT] = ACTIONS(2160), - [anon_sym_o_GT_GT] = ACTIONS(2160), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2160), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2160), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2160), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2160), + [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(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_LPAREN2] = 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_DOT_DOT2] = ACTIONS(1902), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1900), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1900), - [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), - [sym__unquoted_pattern] = ACTIONS(1902), + [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_comment] = STATE(702), - [anon_sym_in] = ACTIONS(1716), - [sym__newline] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_err_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_GT_PIPE] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), - [anon_sym_RPAREN] = ACTIONS(1716), - [anon_sym_GT2] = ACTIONS(1629), - [anon_sym_DASH2] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1716), - [anon_sym_RBRACE] = ACTIONS(1716), - [anon_sym_STAR2] = ACTIONS(1629), - [anon_sym_and2] = ACTIONS(1716), - [anon_sym_xor2] = ACTIONS(1716), - [anon_sym_or2] = ACTIONS(1716), - [anon_sym_not_DASHin2] = ACTIONS(1716), - [anon_sym_has2] = ACTIONS(1716), - [anon_sym_not_DASHhas2] = ACTIONS(1716), - [anon_sym_starts_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), - [anon_sym_ends_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), - [anon_sym_EQ_EQ2] = ACTIONS(1716), - [anon_sym_BANG_EQ2] = ACTIONS(1716), - [anon_sym_LT2] = ACTIONS(1629), - [anon_sym_LT_EQ2] = ACTIONS(1716), - [anon_sym_GT_EQ2] = ACTIONS(1716), - [anon_sym_EQ_TILDE2] = ACTIONS(1716), - [anon_sym_BANG_TILDE2] = ACTIONS(1716), - [anon_sym_like2] = ACTIONS(1716), - [anon_sym_not_DASHlike2] = ACTIONS(1716), - [anon_sym_STAR_STAR2] = ACTIONS(1716), - [anon_sym_PLUS_PLUS2] = ACTIONS(1716), - [anon_sym_SLASH2] = ACTIONS(1629), - [anon_sym_mod2] = ACTIONS(1716), - [anon_sym_SLASH_SLASH2] = ACTIONS(1716), - [anon_sym_PLUS2] = ACTIONS(1629), - [anon_sym_bit_DASHshl2] = ACTIONS(1716), - [anon_sym_bit_DASHshr2] = ACTIONS(1716), - [anon_sym_bit_DASHand2] = ACTIONS(1716), - [anon_sym_bit_DASHxor2] = ACTIONS(1716), - [anon_sym_bit_DASHor2] = ACTIONS(1716), - [anon_sym_DOT_DOT2] = ACTIONS(1633), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), - [anon_sym_err_GT] = ACTIONS(1629), - [anon_sym_out_GT] = ACTIONS(1629), - [anon_sym_e_GT] = ACTIONS(1629), - [anon_sym_o_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT] = ACTIONS(1629), - [anon_sym_err_GT_GT] = ACTIONS(1716), - [anon_sym_out_GT_GT] = ACTIONS(1716), - [anon_sym_e_GT_GT] = ACTIONS(1716), - [anon_sym_o_GT_GT] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), + [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_comment] = STATE(703), - [anon_sym_in] = ACTIONS(2011), - [sym__newline] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_err_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_GT_PIPE] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), - [anon_sym_RPAREN] = ACTIONS(2011), - [anon_sym_GT2] = ACTIONS(2013), - [anon_sym_DASH2] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_RBRACE] = ACTIONS(2011), - [anon_sym_STAR2] = ACTIONS(2013), - [anon_sym_and2] = ACTIONS(2011), - [anon_sym_xor2] = ACTIONS(2011), - [anon_sym_or2] = ACTIONS(2011), - [anon_sym_not_DASHin2] = ACTIONS(2011), - [anon_sym_has2] = ACTIONS(2011), - [anon_sym_not_DASHhas2] = ACTIONS(2011), - [anon_sym_starts_DASHwith2] = ACTIONS(2011), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), - [anon_sym_ends_DASHwith2] = ACTIONS(2011), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), - [anon_sym_EQ_EQ2] = ACTIONS(2011), - [anon_sym_BANG_EQ2] = ACTIONS(2011), - [anon_sym_LT2] = ACTIONS(2013), - [anon_sym_LT_EQ2] = ACTIONS(2011), - [anon_sym_GT_EQ2] = ACTIONS(2011), - [anon_sym_EQ_TILDE2] = ACTIONS(2011), - [anon_sym_BANG_TILDE2] = ACTIONS(2011), - [anon_sym_like2] = ACTIONS(2011), - [anon_sym_not_DASHlike2] = ACTIONS(2011), - [anon_sym_STAR_STAR2] = ACTIONS(2011), - [anon_sym_PLUS_PLUS2] = ACTIONS(2011), - [anon_sym_SLASH2] = ACTIONS(2013), - [anon_sym_mod2] = ACTIONS(2011), - [anon_sym_SLASH_SLASH2] = ACTIONS(2011), - [anon_sym_PLUS2] = ACTIONS(2013), - [anon_sym_bit_DASHshl2] = ACTIONS(2011), - [anon_sym_bit_DASHshr2] = ACTIONS(2011), - [anon_sym_bit_DASHand2] = ACTIONS(2011), - [anon_sym_bit_DASHxor2] = ACTIONS(2011), - [anon_sym_bit_DASHor2] = ACTIONS(2011), - [anon_sym_DOT_DOT2] = ACTIONS(2164), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2166), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2166), - [anon_sym_err_GT] = ACTIONS(2013), - [anon_sym_out_GT] = ACTIONS(2013), - [anon_sym_e_GT] = ACTIONS(2013), - [anon_sym_o_GT] = ACTIONS(2013), - [anon_sym_err_PLUSout_GT] = ACTIONS(2013), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), - [anon_sym_o_PLUSe_GT] = ACTIONS(2013), - [anon_sym_e_PLUSo_GT] = ACTIONS(2013), - [anon_sym_err_GT_GT] = ACTIONS(2011), - [anon_sym_out_GT_GT] = ACTIONS(2011), - [anon_sym_e_GT_GT] = ACTIONS(2011), - [anon_sym_o_GT_GT] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [anon_sym_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), - [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_BANG] = ACTIONS(2168), - [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_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), - [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(2170), - [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_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), - [anon_sym_in] = ACTIONS(1746), - [sym__newline] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_err_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_GT_PIPE] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_GT2] = ACTIONS(1748), - [anon_sym_DASH2] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_STAR2] = ACTIONS(1748), - [anon_sym_and2] = ACTIONS(1746), - [anon_sym_xor2] = ACTIONS(1746), - [anon_sym_or2] = ACTIONS(1746), - [anon_sym_not_DASHin2] = ACTIONS(1746), - [anon_sym_has2] = ACTIONS(1746), - [anon_sym_not_DASHhas2] = ACTIONS(1746), - [anon_sym_starts_DASHwith2] = ACTIONS(1746), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1746), - [anon_sym_ends_DASHwith2] = ACTIONS(1746), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1746), - [anon_sym_EQ_EQ2] = ACTIONS(1746), - [anon_sym_BANG_EQ2] = ACTIONS(1746), - [anon_sym_LT2] = ACTIONS(1748), - [anon_sym_LT_EQ2] = ACTIONS(1746), - [anon_sym_GT_EQ2] = ACTIONS(1746), - [anon_sym_EQ_TILDE2] = ACTIONS(1746), - [anon_sym_BANG_TILDE2] = ACTIONS(1746), - [anon_sym_like2] = ACTIONS(1746), - [anon_sym_not_DASHlike2] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1746), - [anon_sym_STAR_STAR2] = ACTIONS(1746), - [anon_sym_PLUS_PLUS2] = ACTIONS(1746), - [anon_sym_SLASH2] = ACTIONS(1748), - [anon_sym_mod2] = ACTIONS(1746), - [anon_sym_SLASH_SLASH2] = ACTIONS(1746), - [anon_sym_PLUS2] = ACTIONS(1748), - [anon_sym_bit_DASHshl2] = ACTIONS(1746), - [anon_sym_bit_DASHshr2] = ACTIONS(1746), - [anon_sym_bit_DASHand2] = ACTIONS(1746), - [anon_sym_bit_DASHxor2] = ACTIONS(1746), - [anon_sym_bit_DASHor2] = ACTIONS(1746), - [aux_sym__immediate_decimal_token1] = ACTIONS(2172), - [aux_sym__immediate_decimal_token5] = ACTIONS(2174), - [anon_sym_err_GT] = ACTIONS(1748), - [anon_sym_out_GT] = ACTIONS(1748), - [anon_sym_e_GT] = ACTIONS(1748), - [anon_sym_o_GT] = ACTIONS(1748), - [anon_sym_err_PLUSout_GT] = ACTIONS(1748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1748), - [anon_sym_o_PLUSe_GT] = ACTIONS(1748), - [anon_sym_e_PLUSo_GT] = ACTIONS(1748), - [anon_sym_err_GT_GT] = ACTIONS(1746), - [anon_sym_out_GT_GT] = ACTIONS(1746), - [anon_sym_e_GT_GT] = ACTIONS(1746), - [anon_sym_o_GT_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), - [sym__unquoted_pattern] = ACTIONS(1748), + [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_comment] = STATE(707), - [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(2104), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2104), - [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(2104), - [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(2104), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2104), - [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(1633), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), - [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(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_in] = ACTIONS(2170), + [sym__newline] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_PIPE] = ACTIONS(2170), + [anon_sym_err_GT_PIPE] = ACTIONS(2170), + [anon_sym_out_GT_PIPE] = ACTIONS(2170), + [anon_sym_e_GT_PIPE] = ACTIONS(2170), + [anon_sym_o_GT_PIPE] = ACTIONS(2170), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2170), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2170), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2170), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2170), + [anon_sym_RPAREN] = ACTIONS(2170), + [anon_sym_GT2] = ACTIONS(2172), + [anon_sym_DASH2] = ACTIONS(2170), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_EQ_GT] = ACTIONS(2170), + [anon_sym_STAR2] = ACTIONS(2172), + [anon_sym_and2] = ACTIONS(2170), + [anon_sym_xor2] = ACTIONS(2170), + [anon_sym_or2] = ACTIONS(2170), + [anon_sym_not_DASHin2] = ACTIONS(2170), + [anon_sym_has2] = ACTIONS(2170), + [anon_sym_not_DASHhas2] = ACTIONS(2170), + [anon_sym_starts_DASHwith2] = ACTIONS(2170), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2170), + [anon_sym_ends_DASHwith2] = ACTIONS(2170), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2170), + [anon_sym_EQ_EQ2] = ACTIONS(2170), + [anon_sym_BANG_EQ2] = ACTIONS(2170), + [anon_sym_LT2] = ACTIONS(2172), + [anon_sym_LT_EQ2] = ACTIONS(2170), + [anon_sym_GT_EQ2] = ACTIONS(2170), + [anon_sym_EQ_TILDE2] = ACTIONS(2170), + [anon_sym_BANG_TILDE2] = ACTIONS(2170), + [anon_sym_like2] = ACTIONS(2170), + [anon_sym_not_DASHlike2] = ACTIONS(2170), + [anon_sym_STAR_STAR2] = ACTIONS(2170), + [anon_sym_PLUS_PLUS2] = ACTIONS(2170), + [anon_sym_SLASH2] = ACTIONS(2172), + [anon_sym_mod2] = ACTIONS(2170), + [anon_sym_SLASH_SLASH2] = ACTIONS(2170), + [anon_sym_PLUS2] = ACTIONS(2172), + [anon_sym_bit_DASHshl2] = ACTIONS(2170), + [anon_sym_bit_DASHshr2] = ACTIONS(2170), + [anon_sym_bit_DASHand2] = ACTIONS(2170), + [anon_sym_bit_DASHxor2] = ACTIONS(2170), + [anon_sym_bit_DASHor2] = ACTIONS(2170), + [anon_sym_COLON2] = ACTIONS(2170), + [anon_sym_err_GT] = ACTIONS(2172), + [anon_sym_out_GT] = ACTIONS(2172), + [anon_sym_e_GT] = ACTIONS(2172), + [anon_sym_o_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT] = ACTIONS(2172), + [anon_sym_err_GT_GT] = ACTIONS(2170), + [anon_sym_out_GT_GT] = ACTIONS(2170), + [anon_sym_e_GT_GT] = ACTIONS(2170), + [anon_sym_o_GT_GT] = ACTIONS(2170), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2170), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2170), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2170), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2170), [anon_sym_POUND] = ACTIONS(3), }, [STATE(708)] = { - [sym__expr_parenthesized_immediate] = STATE(4713), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(708), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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(5092), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(709), - [anon_sym_in] = ACTIONS(2176), - [sym__newline] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_PIPE] = ACTIONS(2176), - [anon_sym_err_GT_PIPE] = ACTIONS(2176), - [anon_sym_out_GT_PIPE] = ACTIONS(2176), - [anon_sym_e_GT_PIPE] = ACTIONS(2176), - [anon_sym_o_GT_PIPE] = ACTIONS(2176), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2176), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2176), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2176), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2176), - [anon_sym_RPAREN] = ACTIONS(2176), - [anon_sym_GT2] = ACTIONS(2178), - [anon_sym_DASH2] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_EQ_GT] = ACTIONS(2176), - [anon_sym_STAR2] = ACTIONS(2178), - [anon_sym_and2] = ACTIONS(2176), - [anon_sym_xor2] = ACTIONS(2176), - [anon_sym_or2] = ACTIONS(2176), - [anon_sym_not_DASHin2] = ACTIONS(2176), - [anon_sym_has2] = ACTIONS(2176), - [anon_sym_not_DASHhas2] = ACTIONS(2176), - [anon_sym_starts_DASHwith2] = ACTIONS(2176), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2176), - [anon_sym_ends_DASHwith2] = ACTIONS(2176), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2176), - [anon_sym_EQ_EQ2] = ACTIONS(2176), - [anon_sym_BANG_EQ2] = ACTIONS(2176), - [anon_sym_LT2] = ACTIONS(2178), - [anon_sym_LT_EQ2] = ACTIONS(2176), - [anon_sym_GT_EQ2] = ACTIONS(2176), - [anon_sym_EQ_TILDE2] = ACTIONS(2176), - [anon_sym_BANG_TILDE2] = ACTIONS(2176), - [anon_sym_like2] = ACTIONS(2176), - [anon_sym_not_DASHlike2] = ACTIONS(2176), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2176), - [anon_sym_PLUS_PLUS2] = ACTIONS(2176), - [anon_sym_SLASH2] = ACTIONS(2178), - [anon_sym_mod2] = ACTIONS(2176), - [anon_sym_SLASH_SLASH2] = ACTIONS(2176), - [anon_sym_PLUS2] = ACTIONS(2178), - [anon_sym_bit_DASHshl2] = ACTIONS(2176), - [anon_sym_bit_DASHshr2] = ACTIONS(2176), - [anon_sym_bit_DASHand2] = ACTIONS(2176), - [anon_sym_bit_DASHxor2] = ACTIONS(2176), - [anon_sym_bit_DASHor2] = ACTIONS(2176), - [anon_sym_err_GT] = ACTIONS(2178), - [anon_sym_out_GT] = ACTIONS(2178), - [anon_sym_e_GT] = ACTIONS(2178), - [anon_sym_o_GT] = ACTIONS(2178), - [anon_sym_err_PLUSout_GT] = ACTIONS(2178), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2178), - [anon_sym_o_PLUSe_GT] = ACTIONS(2178), - [anon_sym_e_PLUSo_GT] = ACTIONS(2178), - [anon_sym_err_GT_GT] = ACTIONS(2176), - [anon_sym_out_GT_GT] = ACTIONS(2176), - [anon_sym_e_GT_GT] = ACTIONS(2176), - [anon_sym_o_GT_GT] = ACTIONS(2176), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2176), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2176), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2176), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2176), + [anon_sym_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(4713), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(710), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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(4713), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(711), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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__expr_parenthesized_immediate] = STATE(5092), [sym_comment] = STATE(712), - [anon_sym_in] = ACTIONS(2180), - [sym__newline] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_PIPE] = ACTIONS(2180), - [anon_sym_err_GT_PIPE] = ACTIONS(2180), - [anon_sym_out_GT_PIPE] = ACTIONS(2180), - [anon_sym_e_GT_PIPE] = ACTIONS(2180), - [anon_sym_o_GT_PIPE] = ACTIONS(2180), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2180), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2180), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2180), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2180), - [anon_sym_RPAREN] = ACTIONS(2180), - [anon_sym_GT2] = ACTIONS(2182), - [anon_sym_DASH2] = ACTIONS(2180), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_RBRACE] = ACTIONS(2180), - [anon_sym_EQ_GT] = ACTIONS(2180), - [anon_sym_STAR2] = ACTIONS(2182), - [anon_sym_and2] = ACTIONS(2180), - [anon_sym_xor2] = ACTIONS(2180), - [anon_sym_or2] = ACTIONS(2180), - [anon_sym_not_DASHin2] = ACTIONS(2180), - [anon_sym_has2] = ACTIONS(2180), - [anon_sym_not_DASHhas2] = ACTIONS(2180), - [anon_sym_starts_DASHwith2] = ACTIONS(2180), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2180), - [anon_sym_ends_DASHwith2] = ACTIONS(2180), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2180), - [anon_sym_EQ_EQ2] = ACTIONS(2180), - [anon_sym_BANG_EQ2] = ACTIONS(2180), - [anon_sym_LT2] = ACTIONS(2182), - [anon_sym_LT_EQ2] = ACTIONS(2180), - [anon_sym_GT_EQ2] = ACTIONS(2180), - [anon_sym_EQ_TILDE2] = ACTIONS(2180), - [anon_sym_BANG_TILDE2] = ACTIONS(2180), - [anon_sym_like2] = ACTIONS(2180), - [anon_sym_not_DASHlike2] = ACTIONS(2180), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2180), - [anon_sym_PLUS_PLUS2] = ACTIONS(2180), - [anon_sym_SLASH2] = ACTIONS(2182), - [anon_sym_mod2] = ACTIONS(2180), - [anon_sym_SLASH_SLASH2] = ACTIONS(2180), - [anon_sym_PLUS2] = ACTIONS(2182), - [anon_sym_bit_DASHshl2] = ACTIONS(2180), - [anon_sym_bit_DASHshr2] = ACTIONS(2180), - [anon_sym_bit_DASHand2] = ACTIONS(2180), - [anon_sym_bit_DASHxor2] = ACTIONS(2180), - [anon_sym_bit_DASHor2] = ACTIONS(2180), - [anon_sym_err_GT] = ACTIONS(2182), - [anon_sym_out_GT] = ACTIONS(2182), - [anon_sym_e_GT] = ACTIONS(2182), - [anon_sym_o_GT] = ACTIONS(2182), - [anon_sym_err_PLUSout_GT] = ACTIONS(2182), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2182), - [anon_sym_o_PLUSe_GT] = ACTIONS(2182), - [anon_sym_e_PLUSo_GT] = ACTIONS(2182), - [anon_sym_err_GT_GT] = ACTIONS(2180), - [anon_sym_out_GT_GT] = ACTIONS(2180), - [anon_sym_e_GT_GT] = ACTIONS(2180), - [anon_sym_o_GT_GT] = ACTIONS(2180), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2180), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2180), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2180), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2180), + [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(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2176), - [sym_expr_parenthesized] = STATE(1955), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1976), - [sym_val_variable] = STATE(1958), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(912), - [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(713), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [anon_sym_null] = ACTIONS(2186), - [aux_sym_cmd_identifier_token3] = ACTIONS(2188), - [aux_sym_cmd_identifier_token4] = ACTIONS(2188), - [aux_sym_cmd_identifier_token5] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2190), - [aux_sym_expr_unary_token1] = ACTIONS(2192), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), - [anon_sym_DOT_DOT_LT] = ACTIONS(2194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2198), - [aux_sym__val_number_decimal_token3] = ACTIONS(2200), - [aux_sym__val_number_decimal_token4] = ACTIONS(2200), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2202), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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(211), }, [STATE(714)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2155), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(899), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(714), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2052), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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_comment] = STATE(715), - [anon_sym_in] = ACTIONS(1812), - [sym__newline] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_err_GT_PIPE] = ACTIONS(1812), - [anon_sym_out_GT_PIPE] = ACTIONS(1812), - [anon_sym_e_GT_PIPE] = ACTIONS(1812), - [anon_sym_o_GT_PIPE] = ACTIONS(1812), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1812), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1812), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1812), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_GT2] = ACTIONS(1814), - [anon_sym_DASH2] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1812), - [anon_sym_STAR2] = ACTIONS(1814), - [anon_sym_and2] = ACTIONS(1812), - [anon_sym_xor2] = ACTIONS(1812), - [anon_sym_or2] = ACTIONS(1812), - [anon_sym_not_DASHin2] = ACTIONS(1812), - [anon_sym_has2] = ACTIONS(1812), - [anon_sym_not_DASHhas2] = ACTIONS(1812), - [anon_sym_starts_DASHwith2] = ACTIONS(1812), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1812), - [anon_sym_ends_DASHwith2] = ACTIONS(1812), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1812), - [anon_sym_EQ_EQ2] = ACTIONS(1812), - [anon_sym_BANG_EQ2] = ACTIONS(1812), - [anon_sym_LT2] = ACTIONS(1814), - [anon_sym_LT_EQ2] = ACTIONS(1812), - [anon_sym_GT_EQ2] = ACTIONS(1812), - [anon_sym_EQ_TILDE2] = ACTIONS(1812), - [anon_sym_BANG_TILDE2] = ACTIONS(1812), - [anon_sym_like2] = ACTIONS(1812), - [anon_sym_not_DASHlike2] = ACTIONS(1812), - [anon_sym_LPAREN2] = ACTIONS(1812), - [anon_sym_STAR_STAR2] = ACTIONS(1812), - [anon_sym_PLUS_PLUS2] = ACTIONS(1812), - [anon_sym_SLASH2] = ACTIONS(1814), - [anon_sym_mod2] = ACTIONS(1812), - [anon_sym_SLASH_SLASH2] = ACTIONS(1812), - [anon_sym_PLUS2] = ACTIONS(1814), - [anon_sym_bit_DASHshl2] = ACTIONS(1812), - [anon_sym_bit_DASHshr2] = ACTIONS(1812), - [anon_sym_bit_DASHand2] = ACTIONS(1812), - [anon_sym_bit_DASHxor2] = ACTIONS(1812), - [anon_sym_bit_DASHor2] = ACTIONS(1812), - [aux_sym__immediate_decimal_token5] = ACTIONS(2204), - [anon_sym_err_GT] = ACTIONS(1814), - [anon_sym_out_GT] = ACTIONS(1814), - [anon_sym_e_GT] = ACTIONS(1814), - [anon_sym_o_GT] = ACTIONS(1814), - [anon_sym_err_PLUSout_GT] = ACTIONS(1814), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1814), - [anon_sym_o_PLUSe_GT] = ACTIONS(1814), - [anon_sym_e_PLUSo_GT] = ACTIONS(1814), - [anon_sym_err_GT_GT] = ACTIONS(1812), - [anon_sym_out_GT_GT] = ACTIONS(1812), - [anon_sym_e_GT_GT] = ACTIONS(1812), - [anon_sym_o_GT_GT] = ACTIONS(1812), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1812), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1812), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1812), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1812), - [sym__unquoted_pattern] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_in] = ACTIONS(2174), + [sym__newline] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_PIPE] = ACTIONS(2174), + [anon_sym_err_GT_PIPE] = ACTIONS(2174), + [anon_sym_out_GT_PIPE] = ACTIONS(2174), + [anon_sym_e_GT_PIPE] = ACTIONS(2174), + [anon_sym_o_GT_PIPE] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2174), + [anon_sym_RPAREN] = ACTIONS(2174), + [anon_sym_GT2] = ACTIONS(2176), + [anon_sym_DASH2] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_EQ_GT] = ACTIONS(2174), + [anon_sym_STAR2] = ACTIONS(2176), + [anon_sym_and2] = ACTIONS(2174), + [anon_sym_xor2] = ACTIONS(2174), + [anon_sym_or2] = ACTIONS(2174), + [anon_sym_not_DASHin2] = ACTIONS(2174), + [anon_sym_has2] = ACTIONS(2174), + [anon_sym_not_DASHhas2] = ACTIONS(2174), + [anon_sym_starts_DASHwith2] = ACTIONS(2174), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2174), + [anon_sym_ends_DASHwith2] = ACTIONS(2174), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2174), + [anon_sym_EQ_EQ2] = ACTIONS(2174), + [anon_sym_BANG_EQ2] = ACTIONS(2174), + [anon_sym_LT2] = ACTIONS(2176), + [anon_sym_LT_EQ2] = ACTIONS(2174), + [anon_sym_GT_EQ2] = ACTIONS(2174), + [anon_sym_EQ_TILDE2] = ACTIONS(2174), + [anon_sym_BANG_TILDE2] = ACTIONS(2174), + [anon_sym_like2] = ACTIONS(2174), + [anon_sym_not_DASHlike2] = ACTIONS(2174), + [anon_sym_LPAREN2] = ACTIONS(2174), + [anon_sym_STAR_STAR2] = ACTIONS(2174), + [anon_sym_PLUS_PLUS2] = ACTIONS(2174), + [anon_sym_SLASH2] = ACTIONS(2176), + [anon_sym_mod2] = ACTIONS(2174), + [anon_sym_SLASH_SLASH2] = ACTIONS(2174), + [anon_sym_PLUS2] = ACTIONS(2176), + [anon_sym_bit_DASHshl2] = ACTIONS(2174), + [anon_sym_bit_DASHshr2] = ACTIONS(2174), + [anon_sym_bit_DASHand2] = ACTIONS(2174), + [anon_sym_bit_DASHxor2] = ACTIONS(2174), + [anon_sym_bit_DASHor2] = ACTIONS(2174), + [anon_sym_err_GT] = ACTIONS(2176), + [anon_sym_out_GT] = ACTIONS(2176), + [anon_sym_e_GT] = ACTIONS(2176), + [anon_sym_o_GT] = ACTIONS(2176), + [anon_sym_err_PLUSout_GT] = ACTIONS(2176), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2176), + [anon_sym_o_PLUSe_GT] = ACTIONS(2176), + [anon_sym_e_PLUSo_GT] = ACTIONS(2176), + [anon_sym_err_GT_GT] = ACTIONS(2174), + [anon_sym_out_GT_GT] = ACTIONS(2174), + [anon_sym_e_GT_GT] = ACTIONS(2174), + [anon_sym_o_GT_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2174), [anon_sym_POUND] = ACTIONS(3), }, [STATE(716)] = { [sym_comment] = STATE(716), - [ts_builtin_sym_end] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [sym__newline] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_err_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_GT_PIPE] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1746), - [anon_sym_GT2] = ACTIONS(1748), - [anon_sym_DASH2] = ACTIONS(1746), - [anon_sym_STAR2] = ACTIONS(1748), - [anon_sym_and2] = ACTIONS(1746), - [anon_sym_xor2] = ACTIONS(1746), - [anon_sym_or2] = ACTIONS(1746), - [anon_sym_not_DASHin2] = ACTIONS(1746), - [anon_sym_has2] = ACTIONS(1746), - [anon_sym_not_DASHhas2] = ACTIONS(1746), - [anon_sym_starts_DASHwith2] = ACTIONS(1746), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1746), - [anon_sym_ends_DASHwith2] = ACTIONS(1746), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1746), - [anon_sym_EQ_EQ2] = ACTIONS(1746), - [anon_sym_BANG_EQ2] = ACTIONS(1746), - [anon_sym_LT2] = ACTIONS(1748), - [anon_sym_LT_EQ2] = ACTIONS(1746), - [anon_sym_GT_EQ2] = ACTIONS(1746), - [anon_sym_EQ_TILDE2] = ACTIONS(1746), - [anon_sym_BANG_TILDE2] = ACTIONS(1746), - [anon_sym_like2] = ACTIONS(1746), - [anon_sym_not_DASHlike2] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1746), - [anon_sym_STAR_STAR2] = ACTIONS(1746), - [anon_sym_PLUS_PLUS2] = ACTIONS(1746), - [anon_sym_SLASH2] = ACTIONS(1748), - [anon_sym_mod2] = ACTIONS(1746), - [anon_sym_SLASH_SLASH2] = ACTIONS(1746), - [anon_sym_PLUS2] = ACTIONS(1748), - [anon_sym_bit_DASHshl2] = ACTIONS(1746), - [anon_sym_bit_DASHshr2] = ACTIONS(1746), - [anon_sym_bit_DASHand2] = ACTIONS(1746), - [anon_sym_bit_DASHxor2] = ACTIONS(1746), - [anon_sym_bit_DASHor2] = ACTIONS(1746), - [aux_sym__immediate_decimal_token1] = ACTIONS(2206), - [aux_sym__immediate_decimal_token5] = ACTIONS(2208), - [anon_sym_err_GT] = ACTIONS(1748), - [anon_sym_out_GT] = ACTIONS(1748), - [anon_sym_e_GT] = ACTIONS(1748), - [anon_sym_o_GT] = ACTIONS(1748), - [anon_sym_err_PLUSout_GT] = ACTIONS(1748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1748), - [anon_sym_o_PLUSe_GT] = ACTIONS(1748), - [anon_sym_e_PLUSo_GT] = ACTIONS(1748), - [anon_sym_err_GT_GT] = ACTIONS(1746), - [anon_sym_out_GT_GT] = ACTIONS(1746), - [anon_sym_e_GT_GT] = ACTIONS(1746), - [anon_sym_o_GT_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), - [sym__unquoted_pattern] = ACTIONS(1748), + [ts_builtin_sym_end] = ACTIONS(1852), + [anon_sym_in] = ACTIONS(1852), + [sym__newline] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_err_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_GT_PIPE] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1852), + [anon_sym_GT2] = ACTIONS(1854), + [anon_sym_DASH2] = ACTIONS(1852), + [anon_sym_STAR2] = ACTIONS(1854), + [anon_sym_and2] = ACTIONS(1852), + [anon_sym_xor2] = ACTIONS(1852), + [anon_sym_or2] = ACTIONS(1852), + [anon_sym_not_DASHin2] = ACTIONS(1852), + [anon_sym_has2] = ACTIONS(1852), + [anon_sym_not_DASHhas2] = ACTIONS(1852), + [anon_sym_starts_DASHwith2] = ACTIONS(1852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1852), + [anon_sym_ends_DASHwith2] = ACTIONS(1852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1852), + [anon_sym_EQ_EQ2] = ACTIONS(1852), + [anon_sym_BANG_EQ2] = ACTIONS(1852), + [anon_sym_LT2] = ACTIONS(1854), + [anon_sym_LT_EQ2] = ACTIONS(1852), + [anon_sym_GT_EQ2] = ACTIONS(1852), + [anon_sym_EQ_TILDE2] = ACTIONS(1852), + [anon_sym_BANG_TILDE2] = ACTIONS(1852), + [anon_sym_like2] = ACTIONS(1852), + [anon_sym_not_DASHlike2] = ACTIONS(1852), + [anon_sym_LPAREN2] = ACTIONS(1852), + [anon_sym_STAR_STAR2] = ACTIONS(1852), + [anon_sym_PLUS_PLUS2] = ACTIONS(1852), + [anon_sym_SLASH2] = ACTIONS(1854), + [anon_sym_mod2] = ACTIONS(1852), + [anon_sym_SLASH_SLASH2] = ACTIONS(1852), + [anon_sym_PLUS2] = ACTIONS(1854), + [anon_sym_bit_DASHshl2] = ACTIONS(1852), + [anon_sym_bit_DASHshr2] = ACTIONS(1852), + [anon_sym_bit_DASHand2] = ACTIONS(1852), + [anon_sym_bit_DASHxor2] = ACTIONS(1852), + [anon_sym_bit_DASHor2] = ACTIONS(1852), + [anon_sym_DOT_DOT2] = ACTIONS(1854), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1852), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1852), + [anon_sym_err_GT] = ACTIONS(1854), + [anon_sym_out_GT] = ACTIONS(1854), + [anon_sym_e_GT] = ACTIONS(1854), + [anon_sym_o_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT] = ACTIONS(1854), + [anon_sym_err_GT_GT] = ACTIONS(1852), + [anon_sym_out_GT_GT] = ACTIONS(1852), + [anon_sym_e_GT_GT] = ACTIONS(1852), + [anon_sym_o_GT_GT] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1852), + [sym__unquoted_pattern] = ACTIONS(1854), [anon_sym_POUND] = ACTIONS(3), }, [STATE(717)] = { + [sym__expr_parenthesized_immediate] = STATE(5171), [sym_comment] = STATE(717), - [anon_sym_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_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), - [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), + [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_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2156), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(684), - [sym__unquoted_with_expr] = STATE(905), - [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(719), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2052), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(720)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2157), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(685), - [sym__unquoted_with_expr] = STATE(908), - [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(720), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(721)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2158), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(912), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(721), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [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), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(722)] = { - [sym_comment] = STATE(722), - [anon_sym_if] = ACTIONS(2218), - [anon_sym_in] = ACTIONS(2218), - [sym__newline] = ACTIONS(2218), - [anon_sym_SEMI] = ACTIONS(2218), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_err_GT_PIPE] = ACTIONS(2218), - [anon_sym_out_GT_PIPE] = ACTIONS(2218), - [anon_sym_e_GT_PIPE] = ACTIONS(2218), - [anon_sym_o_GT_PIPE] = ACTIONS(2218), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), - [anon_sym_RPAREN] = ACTIONS(2218), - [anon_sym_GT2] = ACTIONS(2220), - [anon_sym_DASH2] = ACTIONS(2218), - [anon_sym_LBRACE] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_EQ_GT] = ACTIONS(2218), - [anon_sym_STAR2] = ACTIONS(2220), - [anon_sym_and2] = ACTIONS(2218), - [anon_sym_xor2] = ACTIONS(2218), - [anon_sym_or2] = ACTIONS(2218), - [anon_sym_not_DASHin2] = ACTIONS(2218), - [anon_sym_has2] = ACTIONS(2218), - [anon_sym_not_DASHhas2] = ACTIONS(2218), - [anon_sym_starts_DASHwith2] = ACTIONS(2218), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), - [anon_sym_ends_DASHwith2] = ACTIONS(2218), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), - [anon_sym_EQ_EQ2] = ACTIONS(2218), - [anon_sym_BANG_EQ2] = ACTIONS(2218), - [anon_sym_LT2] = ACTIONS(2220), - [anon_sym_LT_EQ2] = ACTIONS(2218), - [anon_sym_GT_EQ2] = ACTIONS(2218), - [anon_sym_EQ_TILDE2] = ACTIONS(2218), - [anon_sym_BANG_TILDE2] = ACTIONS(2218), - [anon_sym_like2] = ACTIONS(2218), - [anon_sym_not_DASHlike2] = ACTIONS(2218), - [anon_sym_STAR_STAR2] = ACTIONS(2218), - [anon_sym_PLUS_PLUS2] = ACTIONS(2218), - [anon_sym_SLASH2] = ACTIONS(2220), - [anon_sym_mod2] = ACTIONS(2218), - [anon_sym_SLASH_SLASH2] = ACTIONS(2218), - [anon_sym_PLUS2] = ACTIONS(2220), - [anon_sym_bit_DASHshl2] = ACTIONS(2218), - [anon_sym_bit_DASHshr2] = ACTIONS(2218), - [anon_sym_bit_DASHand2] = ACTIONS(2218), - [anon_sym_bit_DASHxor2] = ACTIONS(2218), - [anon_sym_bit_DASHor2] = ACTIONS(2218), - [anon_sym_err_GT] = ACTIONS(2220), - [anon_sym_out_GT] = ACTIONS(2220), - [anon_sym_e_GT] = ACTIONS(2220), - [anon_sym_o_GT] = ACTIONS(2220), - [anon_sym_err_PLUSout_GT] = ACTIONS(2220), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), - [anon_sym_o_PLUSe_GT] = ACTIONS(2220), - [anon_sym_e_PLUSo_GT] = ACTIONS(2220), - [anon_sym_err_GT_GT] = ACTIONS(2218), - [anon_sym_out_GT_GT] = ACTIONS(2218), - [anon_sym_e_GT_GT] = ACTIONS(2218), - [anon_sym_o_GT_GT] = ACTIONS(2218), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), + [STATE(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(723)] = { - [sym_comment] = STATE(723), - [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), + [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(724)] = { - [sym_comment] = STATE(724), - [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), + [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(725)] = { - [sym_comment] = STATE(725), - [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), + [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(726)] = { - [sym_comment] = STATE(726), - [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), + [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(727)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1283), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1025), - [sym__unquoted_with_expr] = STATE(1285), - [sym__unquoted_anonymous_prefix] = STATE(4525), - [sym_comment] = STATE(727), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2240), - [aux_sym_cmd_identifier_token3] = ACTIONS(2242), - [aux_sym_cmd_identifier_token4] = ACTIONS(2242), - [aux_sym_cmd_identifier_token5] = ACTIONS(2242), + [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(732)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1349), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(463), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1136), + [sym__unquoted_with_expr] = STATE(1351), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_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(1026), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2244), + [anon_sym_DOT_DOT] = ACTIONS(2214), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), - [anon_sym_DOT_DOT_LT] = ACTIONS(2246), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2250), - [aux_sym__val_number_decimal_token3] = ACTIONS(2252), - [aux_sym__val_number_decimal_token4] = ACTIONS(2252), + [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(2254), + [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(2256), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(728)] = { - [sym_comment] = STATE(728), - [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_POUND] = ACTIONS(3), - }, - [STATE(729)] = { - [sym_comment] = STATE(729), - [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_POUND] = ACTIONS(3), - }, - [STATE(730)] = { - [aux_sym__repeat_newline] = STATE(1083), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(730), - [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_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_LPAREN2] = ACTIONS(1766), - [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_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(731)] = { - [aux_sym__repeat_newline] = STATE(1084), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(731), - [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_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_LPAREN2] = ACTIONS(1766), - [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_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(732)] = { - [sym_comment] = STATE(732), - [anon_sym_in] = ACTIONS(2266), - [sym__newline] = ACTIONS(2266), - [anon_sym_SEMI] = ACTIONS(2266), - [anon_sym_PIPE] = ACTIONS(2266), - [anon_sym_err_GT_PIPE] = ACTIONS(2266), - [anon_sym_out_GT_PIPE] = ACTIONS(2266), - [anon_sym_e_GT_PIPE] = ACTIONS(2266), - [anon_sym_o_GT_PIPE] = ACTIONS(2266), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2266), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2266), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2266), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2266), - [anon_sym_RPAREN] = ACTIONS(2266), - [anon_sym_GT2] = ACTIONS(2268), - [anon_sym_DASH2] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(2266), - [anon_sym_RBRACE] = ACTIONS(2266), - [anon_sym_EQ_GT] = ACTIONS(2266), - [anon_sym_STAR2] = ACTIONS(2268), - [anon_sym_and2] = ACTIONS(2266), - [anon_sym_xor2] = ACTIONS(2266), - [anon_sym_or2] = ACTIONS(2266), - [anon_sym_not_DASHin2] = ACTIONS(2266), - [anon_sym_has2] = ACTIONS(2266), - [anon_sym_not_DASHhas2] = ACTIONS(2266), - [anon_sym_starts_DASHwith2] = ACTIONS(2266), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2266), - [anon_sym_ends_DASHwith2] = ACTIONS(2266), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2266), - [anon_sym_EQ_EQ2] = ACTIONS(2266), - [anon_sym_BANG_EQ2] = ACTIONS(2266), - [anon_sym_LT2] = ACTIONS(2268), - [anon_sym_LT_EQ2] = ACTIONS(2266), - [anon_sym_GT_EQ2] = ACTIONS(2266), - [anon_sym_EQ_TILDE2] = ACTIONS(2266), - [anon_sym_BANG_TILDE2] = ACTIONS(2266), - [anon_sym_like2] = ACTIONS(2266), - [anon_sym_not_DASHlike2] = ACTIONS(2266), - [anon_sym_STAR_STAR2] = ACTIONS(2266), - [anon_sym_PLUS_PLUS2] = ACTIONS(2266), - [anon_sym_SLASH2] = ACTIONS(2268), - [anon_sym_mod2] = ACTIONS(2266), - [anon_sym_SLASH_SLASH2] = ACTIONS(2266), - [anon_sym_PLUS2] = ACTIONS(2268), - [anon_sym_bit_DASHshl2] = ACTIONS(2266), - [anon_sym_bit_DASHshr2] = ACTIONS(2266), - [anon_sym_bit_DASHand2] = ACTIONS(2266), - [anon_sym_bit_DASHxor2] = ACTIONS(2266), - [anon_sym_bit_DASHor2] = ACTIONS(2266), - [anon_sym_COLON2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(2268), - [anon_sym_out_GT] = ACTIONS(2268), - [anon_sym_e_GT] = ACTIONS(2268), - [anon_sym_o_GT] = ACTIONS(2268), - [anon_sym_err_PLUSout_GT] = ACTIONS(2268), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2268), - [anon_sym_o_PLUSe_GT] = ACTIONS(2268), - [anon_sym_e_PLUSo_GT] = ACTIONS(2268), - [anon_sym_err_GT_GT] = ACTIONS(2266), - [anon_sym_out_GT_GT] = ACTIONS(2266), - [anon_sym_e_GT_GT] = ACTIONS(2266), - [anon_sym_o_GT_GT] = ACTIONS(2266), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2266), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2266), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2266), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2266), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(733)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1287), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(463), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1030), + [sym__unquoted_with_expr] = STATE(1344), + [sym__unquoted_anonymous_prefix] = STATE(4744), [sym_comment] = STATE(733), - [anon_sym_in] = ACTIONS(2270), - [sym__newline] = ACTIONS(2270), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_err_GT_PIPE] = ACTIONS(2270), - [anon_sym_out_GT_PIPE] = ACTIONS(2270), - [anon_sym_e_GT_PIPE] = ACTIONS(2270), - [anon_sym_o_GT_PIPE] = ACTIONS(2270), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2270), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2270), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2270), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2270), - [anon_sym_RPAREN] = ACTIONS(2270), - [anon_sym_GT2] = ACTIONS(2272), - [anon_sym_DASH2] = ACTIONS(2270), - [anon_sym_LBRACE] = ACTIONS(2270), - [anon_sym_RBRACE] = ACTIONS(2270), - [anon_sym_EQ_GT] = ACTIONS(2270), - [anon_sym_STAR2] = ACTIONS(2272), - [anon_sym_and2] = ACTIONS(2270), - [anon_sym_xor2] = ACTIONS(2270), - [anon_sym_or2] = ACTIONS(2270), - [anon_sym_not_DASHin2] = ACTIONS(2270), - [anon_sym_has2] = ACTIONS(2270), - [anon_sym_not_DASHhas2] = ACTIONS(2270), - [anon_sym_starts_DASHwith2] = ACTIONS(2270), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2270), - [anon_sym_ends_DASHwith2] = ACTIONS(2270), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2270), - [anon_sym_EQ_EQ2] = ACTIONS(2270), - [anon_sym_BANG_EQ2] = ACTIONS(2270), - [anon_sym_LT2] = ACTIONS(2272), - [anon_sym_LT_EQ2] = ACTIONS(2270), - [anon_sym_GT_EQ2] = ACTIONS(2270), - [anon_sym_EQ_TILDE2] = ACTIONS(2270), - [anon_sym_BANG_TILDE2] = ACTIONS(2270), - [anon_sym_like2] = ACTIONS(2270), - [anon_sym_not_DASHlike2] = ACTIONS(2270), - [anon_sym_STAR_STAR2] = ACTIONS(2270), - [anon_sym_PLUS_PLUS2] = ACTIONS(2270), - [anon_sym_SLASH2] = ACTIONS(2272), - [anon_sym_mod2] = ACTIONS(2270), - [anon_sym_SLASH_SLASH2] = ACTIONS(2270), - [anon_sym_PLUS2] = ACTIONS(2272), - [anon_sym_bit_DASHshl2] = ACTIONS(2270), - [anon_sym_bit_DASHshr2] = ACTIONS(2270), - [anon_sym_bit_DASHand2] = ACTIONS(2270), - [anon_sym_bit_DASHxor2] = ACTIONS(2270), - [anon_sym_bit_DASHor2] = ACTIONS(2270), - [anon_sym_COLON2] = ACTIONS(2270), - [anon_sym_err_GT] = ACTIONS(2272), - [anon_sym_out_GT] = ACTIONS(2272), - [anon_sym_e_GT] = ACTIONS(2272), - [anon_sym_o_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT] = ACTIONS(2272), - [anon_sym_err_GT_GT] = ACTIONS(2270), - [anon_sym_out_GT_GT] = ACTIONS(2270), - [anon_sym_e_GT_GT] = ACTIONS(2270), - [anon_sym_o_GT_GT] = ACTIONS(2270), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2270), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2270), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2270), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2270), + [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(734)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1286), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1029), - [sym__unquoted_with_expr] = STATE(1304), - [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1294), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(463), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(981), + [sym__unquoted_with_expr] = STATE(1314), + [sym__unquoted_anonymous_prefix] = STATE(4744), [sym_comment] = STATE(734), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2240), - [aux_sym_cmd_identifier_token3] = ACTIONS(2242), - [aux_sym_cmd_identifier_token4] = ACTIONS(2242), - [aux_sym_cmd_identifier_token5] = ACTIONS(2242), + [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(1026), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2244), + [anon_sym_DOT_DOT] = ACTIONS(2214), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), - [anon_sym_DOT_DOT_LT] = ACTIONS(2246), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2250), - [aux_sym__val_number_decimal_token3] = ACTIONS(2252), - [aux_sym__val_number_decimal_token4] = ACTIONS(2252), + [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(2254), + [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(2256), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, [STATE(735)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1173), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(928), - [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(735), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1922), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(736)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1192), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(710), - [sym__unquoted_with_expr] = STATE(946), - [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(736), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1922), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(737)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1214), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(962), - [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(737), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1922), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(738)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1222), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(691), - [sym__unquoted_with_expr] = STATE(907), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1281), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(463), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1006), + [sym__unquoted_with_expr] = STATE(1292), + [sym__unquoted_anonymous_prefix] = STATE(4744), [sym_comment] = STATE(738), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1922), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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(211), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(739)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1224), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(674), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(739), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1922), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(740)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1227), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(676), - [sym__unquoted_with_expr] = STATE(920), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1291), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(463), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1108), + [sym__unquoted_with_expr] = STATE(1305), + [sym__unquoted_anonymous_prefix] = STATE(4744), [sym_comment] = STATE(740), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1922), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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(211), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(741)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1231), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(924), - [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(741), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [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(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_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_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_comment] = STATE(745), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_in] = ACTIONS(2260), + [sym__newline] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2260), + [anon_sym_err_GT_PIPE] = ACTIONS(2260), + [anon_sym_out_GT_PIPE] = ACTIONS(2260), + [anon_sym_e_GT_PIPE] = ACTIONS(2260), + [anon_sym_o_GT_PIPE] = ACTIONS(2260), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2260), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2260), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2260), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2260), + [anon_sym_RPAREN] = ACTIONS(2260), + [anon_sym_GT2] = ACTIONS(2262), + [anon_sym_DASH2] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_EQ_GT] = ACTIONS(2260), + [anon_sym_STAR2] = ACTIONS(2262), + [anon_sym_and2] = ACTIONS(2260), + [anon_sym_xor2] = ACTIONS(2260), + [anon_sym_or2] = ACTIONS(2260), + [anon_sym_not_DASHin2] = ACTIONS(2260), + [anon_sym_has2] = ACTIONS(2260), + [anon_sym_not_DASHhas2] = ACTIONS(2260), + [anon_sym_starts_DASHwith2] = ACTIONS(2260), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2260), + [anon_sym_ends_DASHwith2] = ACTIONS(2260), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2260), + [anon_sym_EQ_EQ2] = ACTIONS(2260), + [anon_sym_BANG_EQ2] = ACTIONS(2260), + [anon_sym_LT2] = ACTIONS(2262), + [anon_sym_LT_EQ2] = ACTIONS(2260), + [anon_sym_GT_EQ2] = ACTIONS(2260), + [anon_sym_EQ_TILDE2] = ACTIONS(2260), + [anon_sym_BANG_TILDE2] = ACTIONS(2260), + [anon_sym_like2] = ACTIONS(2260), + [anon_sym_not_DASHlike2] = ACTIONS(2260), + [anon_sym_STAR_STAR2] = ACTIONS(2260), + [anon_sym_PLUS_PLUS2] = ACTIONS(2260), + [anon_sym_SLASH2] = ACTIONS(2262), + [anon_sym_mod2] = ACTIONS(2260), + [anon_sym_SLASH_SLASH2] = ACTIONS(2260), + [anon_sym_PLUS2] = ACTIONS(2262), + [anon_sym_bit_DASHshl2] = ACTIONS(2260), + [anon_sym_bit_DASHshr2] = ACTIONS(2260), + [anon_sym_bit_DASHand2] = ACTIONS(2260), + [anon_sym_bit_DASHxor2] = ACTIONS(2260), + [anon_sym_bit_DASHor2] = ACTIONS(2260), + [anon_sym_err_GT] = ACTIONS(2262), + [anon_sym_out_GT] = ACTIONS(2262), + [anon_sym_e_GT] = ACTIONS(2262), + [anon_sym_o_GT] = ACTIONS(2262), + [anon_sym_err_PLUSout_GT] = ACTIONS(2262), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2262), + [anon_sym_o_PLUSe_GT] = ACTIONS(2262), + [anon_sym_e_PLUSo_GT] = ACTIONS(2262), + [anon_sym_err_GT_GT] = ACTIONS(2260), + [anon_sym_out_GT_GT] = ACTIONS(2260), + [anon_sym_e_GT_GT] = ACTIONS(2260), + [anon_sym_o_GT_GT] = ACTIONS(2260), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2260), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2260), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2260), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2260), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(746)] = { + [sym_comment] = STATE(746), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_in] = ACTIONS(2264), + [sym__newline] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym_PIPE] = ACTIONS(2264), + [anon_sym_err_GT_PIPE] = ACTIONS(2264), + [anon_sym_out_GT_PIPE] = ACTIONS(2264), + [anon_sym_e_GT_PIPE] = ACTIONS(2264), + [anon_sym_o_GT_PIPE] = ACTIONS(2264), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2264), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2264), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2264), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2264), + [anon_sym_RPAREN] = ACTIONS(2264), + [anon_sym_GT2] = ACTIONS(2266), + [anon_sym_DASH2] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2264), + [anon_sym_RBRACE] = ACTIONS(2264), + [anon_sym_EQ_GT] = ACTIONS(2264), + [anon_sym_STAR2] = ACTIONS(2266), + [anon_sym_and2] = ACTIONS(2264), + [anon_sym_xor2] = ACTIONS(2264), + [anon_sym_or2] = ACTIONS(2264), + [anon_sym_not_DASHin2] = ACTIONS(2264), + [anon_sym_has2] = ACTIONS(2264), + [anon_sym_not_DASHhas2] = ACTIONS(2264), + [anon_sym_starts_DASHwith2] = ACTIONS(2264), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2264), + [anon_sym_ends_DASHwith2] = ACTIONS(2264), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2264), + [anon_sym_EQ_EQ2] = ACTIONS(2264), + [anon_sym_BANG_EQ2] = ACTIONS(2264), + [anon_sym_LT2] = ACTIONS(2266), + [anon_sym_LT_EQ2] = ACTIONS(2264), + [anon_sym_GT_EQ2] = ACTIONS(2264), + [anon_sym_EQ_TILDE2] = ACTIONS(2264), + [anon_sym_BANG_TILDE2] = ACTIONS(2264), + [anon_sym_like2] = ACTIONS(2264), + [anon_sym_not_DASHlike2] = ACTIONS(2264), + [anon_sym_STAR_STAR2] = ACTIONS(2264), + [anon_sym_PLUS_PLUS2] = ACTIONS(2264), + [anon_sym_SLASH2] = ACTIONS(2266), + [anon_sym_mod2] = ACTIONS(2264), + [anon_sym_SLASH_SLASH2] = ACTIONS(2264), + [anon_sym_PLUS2] = ACTIONS(2266), + [anon_sym_bit_DASHshl2] = ACTIONS(2264), + [anon_sym_bit_DASHshr2] = ACTIONS(2264), + [anon_sym_bit_DASHand2] = ACTIONS(2264), + [anon_sym_bit_DASHxor2] = ACTIONS(2264), + [anon_sym_bit_DASHor2] = ACTIONS(2264), + [anon_sym_err_GT] = ACTIONS(2266), + [anon_sym_out_GT] = ACTIONS(2266), + [anon_sym_e_GT] = ACTIONS(2266), + [anon_sym_o_GT] = ACTIONS(2266), + [anon_sym_err_PLUSout_GT] = ACTIONS(2266), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2266), + [anon_sym_o_PLUSe_GT] = ACTIONS(2266), + [anon_sym_e_PLUSo_GT] = ACTIONS(2266), + [anon_sym_err_GT_GT] = ACTIONS(2264), + [anon_sym_out_GT_GT] = ACTIONS(2264), + [anon_sym_e_GT_GT] = ACTIONS(2264), + [anon_sym_o_GT_GT] = ACTIONS(2264), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2264), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2264), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2264), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2264), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(747)] = { + [sym_comment] = STATE(747), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_in] = ACTIONS(2268), + [sym__newline] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2268), + [anon_sym_err_GT_PIPE] = ACTIONS(2268), + [anon_sym_out_GT_PIPE] = ACTIONS(2268), + [anon_sym_e_GT_PIPE] = ACTIONS(2268), + [anon_sym_o_GT_PIPE] = ACTIONS(2268), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2268), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2268), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2268), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2268), + [anon_sym_RPAREN] = ACTIONS(2268), + [anon_sym_GT2] = ACTIONS(2270), + [anon_sym_DASH2] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_EQ_GT] = ACTIONS(2268), + [anon_sym_STAR2] = ACTIONS(2270), + [anon_sym_and2] = ACTIONS(2268), + [anon_sym_xor2] = ACTIONS(2268), + [anon_sym_or2] = ACTIONS(2268), + [anon_sym_not_DASHin2] = ACTIONS(2268), + [anon_sym_has2] = ACTIONS(2268), + [anon_sym_not_DASHhas2] = ACTIONS(2268), + [anon_sym_starts_DASHwith2] = ACTIONS(2268), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2268), + [anon_sym_ends_DASHwith2] = ACTIONS(2268), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2268), + [anon_sym_EQ_EQ2] = ACTIONS(2268), + [anon_sym_BANG_EQ2] = ACTIONS(2268), + [anon_sym_LT2] = ACTIONS(2270), + [anon_sym_LT_EQ2] = ACTIONS(2268), + [anon_sym_GT_EQ2] = ACTIONS(2268), + [anon_sym_EQ_TILDE2] = ACTIONS(2268), + [anon_sym_BANG_TILDE2] = ACTIONS(2268), + [anon_sym_like2] = ACTIONS(2268), + [anon_sym_not_DASHlike2] = ACTIONS(2268), + [anon_sym_STAR_STAR2] = ACTIONS(2268), + [anon_sym_PLUS_PLUS2] = ACTIONS(2268), + [anon_sym_SLASH2] = ACTIONS(2270), + [anon_sym_mod2] = ACTIONS(2268), + [anon_sym_SLASH_SLASH2] = ACTIONS(2268), + [anon_sym_PLUS2] = ACTIONS(2270), + [anon_sym_bit_DASHshl2] = ACTIONS(2268), + [anon_sym_bit_DASHshr2] = ACTIONS(2268), + [anon_sym_bit_DASHand2] = ACTIONS(2268), + [anon_sym_bit_DASHxor2] = ACTIONS(2268), + [anon_sym_bit_DASHor2] = ACTIONS(2268), + [anon_sym_err_GT] = ACTIONS(2270), + [anon_sym_out_GT] = ACTIONS(2270), + [anon_sym_e_GT] = ACTIONS(2270), + [anon_sym_o_GT] = ACTIONS(2270), + [anon_sym_err_PLUSout_GT] = ACTIONS(2270), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2270), + [anon_sym_o_PLUSe_GT] = ACTIONS(2270), + [anon_sym_e_PLUSo_GT] = ACTIONS(2270), + [anon_sym_err_GT_GT] = ACTIONS(2268), + [anon_sym_out_GT_GT] = ACTIONS(2268), + [anon_sym_e_GT_GT] = ACTIONS(2268), + [anon_sym_o_GT_GT] = ACTIONS(2268), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2268), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2268), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2268), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2268), + [anon_sym_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), + }, + [STATE(749)] = { + [sym_comment] = STATE(749), + [anon_sym_in] = ACTIONS(2276), + [sym__newline] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_PIPE] = ACTIONS(2276), + [anon_sym_err_GT_PIPE] = ACTIONS(2276), + [anon_sym_out_GT_PIPE] = ACTIONS(2276), + [anon_sym_e_GT_PIPE] = ACTIONS(2276), + [anon_sym_o_GT_PIPE] = ACTIONS(2276), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2276), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2276), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2276), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2276), + [anon_sym_RPAREN] = ACTIONS(2276), + [anon_sym_GT2] = ACTIONS(2278), + [anon_sym_DASH2] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_EQ_GT] = ACTIONS(2276), + [anon_sym_STAR2] = ACTIONS(2278), + [anon_sym_and2] = ACTIONS(2276), + [anon_sym_xor2] = ACTIONS(2276), + [anon_sym_or2] = ACTIONS(2276), + [anon_sym_not_DASHin2] = ACTIONS(2276), + [anon_sym_has2] = ACTIONS(2276), + [anon_sym_not_DASHhas2] = ACTIONS(2276), + [anon_sym_starts_DASHwith2] = ACTIONS(2276), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), + [anon_sym_ends_DASHwith2] = ACTIONS(2276), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), + [anon_sym_EQ_EQ2] = ACTIONS(2276), + [anon_sym_BANG_EQ2] = ACTIONS(2276), + [anon_sym_LT2] = ACTIONS(2278), + [anon_sym_LT_EQ2] = ACTIONS(2276), + [anon_sym_GT_EQ2] = ACTIONS(2276), + [anon_sym_EQ_TILDE2] = ACTIONS(2276), + [anon_sym_BANG_TILDE2] = ACTIONS(2276), + [anon_sym_like2] = ACTIONS(2276), + [anon_sym_not_DASHlike2] = ACTIONS(2276), + [anon_sym_STAR_STAR2] = ACTIONS(2276), + [anon_sym_PLUS_PLUS2] = ACTIONS(2276), + [anon_sym_SLASH2] = ACTIONS(2278), + [anon_sym_mod2] = ACTIONS(2276), + [anon_sym_SLASH_SLASH2] = ACTIONS(2276), + [anon_sym_PLUS2] = ACTIONS(2278), + [anon_sym_bit_DASHshl2] = ACTIONS(2276), + [anon_sym_bit_DASHshr2] = ACTIONS(2276), + [anon_sym_bit_DASHand2] = ACTIONS(2276), + [anon_sym_bit_DASHxor2] = ACTIONS(2276), + [anon_sym_bit_DASHor2] = ACTIONS(2276), + [anon_sym_COLON2] = ACTIONS(2276), + [anon_sym_err_GT] = ACTIONS(2278), + [anon_sym_out_GT] = ACTIONS(2278), + [anon_sym_e_GT] = ACTIONS(2278), + [anon_sym_o_GT] = ACTIONS(2278), + [anon_sym_err_PLUSout_GT] = ACTIONS(2278), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2278), + [anon_sym_o_PLUSe_GT] = ACTIONS(2278), + [anon_sym_e_PLUSo_GT] = ACTIONS(2278), + [anon_sym_err_GT_GT] = ACTIONS(2276), + [anon_sym_out_GT_GT] = ACTIONS(2276), + [anon_sym_e_GT_GT] = ACTIONS(2276), + [anon_sym_o_GT_GT] = ACTIONS(2276), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2276), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2276), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2276), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2276), + [anon_sym_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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(742)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1241), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(678), - [sym__unquoted_with_expr] = STATE(929), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(742), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(743)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(927), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(897), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(743), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(744)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1255), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(899), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(744), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(745)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1203), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(684), - [sym__unquoted_with_expr] = STATE(905), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(745), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(746)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1146), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(685), - [sym__unquoted_with_expr] = STATE(908), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(746), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [STATE(760)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1150), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(942), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(438), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(697), + [sym__unquoted_with_expr] = STATE(910), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(747)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1155), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(935), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(451), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(912), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(747), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token3] = ACTIONS(1908), - [aux_sym_cmd_identifier_token4] = ACTIONS(1908), - [aux_sym_cmd_identifier_token5] = ACTIONS(1908), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1944), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1916), - [aux_sym__val_number_decimal_token2] = ACTIONS(1918), - [aux_sym__val_number_decimal_token3] = ACTIONS(1920), - [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [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(1922), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(748)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2165), - [sym_expr_parenthesized] = STATE(1955), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1976), - [sym_val_variable] = STATE(1958), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), + [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(928), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(748), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [anon_sym_null] = ACTIONS(2186), - [aux_sym_cmd_identifier_token3] = ACTIONS(2188), - [aux_sym_cmd_identifier_token4] = ACTIONS(2188), - [aux_sym_cmd_identifier_token5] = ACTIONS(2188), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2190), - [aux_sym_expr_unary_token1] = ACTIONS(2192), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), - [anon_sym_DOT_DOT_LT] = ACTIONS(2194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2198), - [aux_sym__val_number_decimal_token3] = ACTIONS(2200), - [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [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(2202), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(749)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2166), - [sym_expr_parenthesized] = STATE(1955), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1976), - [sym_val_variable] = STATE(1958), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(710), - [sym__unquoted_with_expr] = STATE(946), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(749), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [anon_sym_null] = ACTIONS(2186), - [aux_sym_cmd_identifier_token3] = ACTIONS(2188), - [aux_sym_cmd_identifier_token4] = ACTIONS(2188), - [aux_sym_cmd_identifier_token5] = ACTIONS(2188), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2190), - [aux_sym_expr_unary_token1] = ACTIONS(2192), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), - [anon_sym_DOT_DOT_LT] = ACTIONS(2194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2198), - [aux_sym__val_number_decimal_token3] = ACTIONS(2200), - [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [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(2202), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(750)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2167), - [sym_expr_parenthesized] = STATE(1955), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1976), - [sym_val_variable] = STATE(1958), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(962), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(750), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [anon_sym_null] = ACTIONS(2186), - [aux_sym_cmd_identifier_token3] = ACTIONS(2188), - [aux_sym_cmd_identifier_token4] = ACTIONS(2188), - [aux_sym_cmd_identifier_token5] = ACTIONS(2188), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2190), - [aux_sym_expr_unary_token1] = ACTIONS(2192), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), - [anon_sym_DOT_DOT_LT] = ACTIONS(2194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2198), - [aux_sym__val_number_decimal_token3] = ACTIONS(2200), - [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [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(2202), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(751)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2168), - [sym_expr_parenthesized] = STATE(1955), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1976), - [sym_val_variable] = STATE(1958), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(691), - [sym__unquoted_with_expr] = STATE(907), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(751), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [anon_sym_null] = ACTIONS(2186), - [aux_sym_cmd_identifier_token3] = ACTIONS(2188), - [aux_sym_cmd_identifier_token4] = ACTIONS(2188), - [aux_sym_cmd_identifier_token5] = ACTIONS(2188), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2190), - [aux_sym_expr_unary_token1] = ACTIONS(2192), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), - [anon_sym_DOT_DOT_LT] = ACTIONS(2194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2198), - [aux_sym__val_number_decimal_token3] = ACTIONS(2200), - [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [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(2202), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(752)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2169), - [sym_expr_parenthesized] = STATE(1955), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1976), - [sym_val_variable] = STATE(1958), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(674), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(752), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [anon_sym_null] = ACTIONS(2186), - [aux_sym_cmd_identifier_token3] = ACTIONS(2188), - [aux_sym_cmd_identifier_token4] = ACTIONS(2188), - [aux_sym_cmd_identifier_token5] = ACTIONS(2188), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2190), - [aux_sym_expr_unary_token1] = ACTIONS(2192), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), - [anon_sym_DOT_DOT_LT] = ACTIONS(2194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2198), - [aux_sym__val_number_decimal_token3] = ACTIONS(2200), - [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [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(2202), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(753)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2170), - [sym_expr_parenthesized] = STATE(1955), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1976), - [sym_val_variable] = STATE(1958), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(676), - [sym__unquoted_with_expr] = STATE(920), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(753), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [anon_sym_null] = ACTIONS(2186), - [aux_sym_cmd_identifier_token3] = ACTIONS(2188), - [aux_sym_cmd_identifier_token4] = ACTIONS(2188), - [aux_sym_cmd_identifier_token5] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2190), - [aux_sym_expr_unary_token1] = ACTIONS(2192), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), - [anon_sym_DOT_DOT_LT] = ACTIONS(2194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2198), - [aux_sym__val_number_decimal_token3] = ACTIONS(2200), - [aux_sym__val_number_decimal_token4] = ACTIONS(2200), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2202), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(754)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2171), - [sym_expr_parenthesized] = STATE(1955), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1976), - [sym_val_variable] = STATE(1958), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(924), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(754), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [anon_sym_null] = ACTIONS(2186), - [aux_sym_cmd_identifier_token3] = ACTIONS(2188), - [aux_sym_cmd_identifier_token4] = ACTIONS(2188), - [aux_sym_cmd_identifier_token5] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2190), - [aux_sym_expr_unary_token1] = ACTIONS(2192), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), - [anon_sym_DOT_DOT_LT] = ACTIONS(2194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2198), - [aux_sym__val_number_decimal_token3] = ACTIONS(2200), - [aux_sym__val_number_decimal_token4] = ACTIONS(2200), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2202), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(755)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2172), - [sym_expr_parenthesized] = STATE(1955), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1976), - [sym_val_variable] = STATE(1958), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(678), - [sym__unquoted_with_expr] = STATE(929), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(755), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [anon_sym_null] = ACTIONS(2186), - [aux_sym_cmd_identifier_token3] = ACTIONS(2188), - [aux_sym_cmd_identifier_token4] = ACTIONS(2188), - [aux_sym_cmd_identifier_token5] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2190), - [aux_sym_expr_unary_token1] = ACTIONS(2192), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), - [anon_sym_DOT_DOT_LT] = ACTIONS(2194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2198), - [aux_sym__val_number_decimal_token3] = ACTIONS(2200), - [aux_sym__val_number_decimal_token4] = ACTIONS(2200), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2202), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(756)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(927), - [sym_expr_parenthesized] = STATE(1955), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1976), - [sym_val_variable] = STATE(1958), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(897), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(756), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [anon_sym_null] = ACTIONS(2186), - [aux_sym_cmd_identifier_token3] = ACTIONS(2188), - [aux_sym_cmd_identifier_token4] = ACTIONS(2188), - [aux_sym_cmd_identifier_token5] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2190), - [aux_sym_expr_unary_token1] = ACTIONS(2192), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), - [anon_sym_DOT_DOT_LT] = ACTIONS(2194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2198), - [aux_sym__val_number_decimal_token3] = ACTIONS(2200), - [aux_sym__val_number_decimal_token4] = ACTIONS(2200), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2202), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(757)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2173), - [sym_expr_parenthesized] = STATE(1955), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1976), - [sym_val_variable] = STATE(1958), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(899), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(757), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [anon_sym_null] = ACTIONS(2186), - [aux_sym_cmd_identifier_token3] = ACTIONS(2188), - [aux_sym_cmd_identifier_token4] = ACTIONS(2188), - [aux_sym_cmd_identifier_token5] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2190), - [aux_sym_expr_unary_token1] = ACTIONS(2192), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), - [anon_sym_DOT_DOT_LT] = ACTIONS(2194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2198), - [aux_sym__val_number_decimal_token3] = ACTIONS(2200), - [aux_sym__val_number_decimal_token4] = ACTIONS(2200), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2202), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(758)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2174), - [sym_expr_parenthesized] = STATE(1955), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1976), - [sym_val_variable] = STATE(1958), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(684), - [sym__unquoted_with_expr] = STATE(905), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(758), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [anon_sym_null] = ACTIONS(2186), - [aux_sym_cmd_identifier_token3] = ACTIONS(2188), - [aux_sym_cmd_identifier_token4] = ACTIONS(2188), - [aux_sym_cmd_identifier_token5] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2190), - [aux_sym_expr_unary_token1] = ACTIONS(2192), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), - [anon_sym_DOT_DOT_LT] = ACTIONS(2194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2198), - [aux_sym__val_number_decimal_token3] = ACTIONS(2200), - [aux_sym__val_number_decimal_token4] = ACTIONS(2200), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2202), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(759)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2175), - [sym_expr_parenthesized] = STATE(1955), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1976), - [sym_val_variable] = STATE(1958), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(685), - [sym__unquoted_with_expr] = STATE(908), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(759), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [anon_sym_null] = ACTIONS(2186), - [aux_sym_cmd_identifier_token3] = ACTIONS(2188), - [aux_sym_cmd_identifier_token4] = ACTIONS(2188), - [aux_sym_cmd_identifier_token5] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2190), - [aux_sym_expr_unary_token1] = ACTIONS(2192), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), - [anon_sym_DOT_DOT_LT] = ACTIONS(2194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2196), - [aux_sym__val_number_decimal_token2] = ACTIONS(2198), - [aux_sym__val_number_decimal_token3] = ACTIONS(2200), - [aux_sym__val_number_decimal_token4] = ACTIONS(2200), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2202), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(760)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1309), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1030), - [sym__unquoted_with_expr] = STATE(1310), - [sym__unquoted_anonymous_prefix] = STATE(4525), - [sym_comment] = STATE(760), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2240), - [aux_sym_cmd_identifier_token3] = ACTIONS(2242), - [aux_sym_cmd_identifier_token4] = ACTIONS(2242), - [aux_sym_cmd_identifier_token5] = ACTIONS(2242), + [STATE(767)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1289), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(463), + [sym__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(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(1026), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2244), + [anon_sym_DOT_DOT] = ACTIONS(2214), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), - [anon_sym_DOT_DOT_LT] = ACTIONS(2246), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2250), - [aux_sym__val_number_decimal_token3] = ACTIONS(2252), - [aux_sym__val_number_decimal_token4] = ACTIONS(2252), + [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(2254), + [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(2256), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(761)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1311), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1031), - [sym__unquoted_with_expr] = STATE(1312), - [sym__unquoted_anonymous_prefix] = STATE(4525), - [sym_comment] = STATE(761), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2240), - [aux_sym_cmd_identifier_token3] = ACTIONS(2242), - [aux_sym_cmd_identifier_token4] = ACTIONS(2242), - [aux_sym_cmd_identifier_token5] = ACTIONS(2242), + [STATE(768)] = { + [sym_comment] = STATE(768), + [anon_sym_in] = ACTIONS(2290), + [sym__newline] = ACTIONS(2290), + [anon_sym_SEMI] = ACTIONS(2290), + [anon_sym_PIPE] = ACTIONS(2290), + [anon_sym_err_GT_PIPE] = ACTIONS(2290), + [anon_sym_out_GT_PIPE] = ACTIONS(2290), + [anon_sym_e_GT_PIPE] = ACTIONS(2290), + [anon_sym_o_GT_PIPE] = ACTIONS(2290), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2290), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2290), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2290), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2290), + [anon_sym_RPAREN] = ACTIONS(2290), + [anon_sym_GT2] = ACTIONS(2292), + [anon_sym_DASH2] = ACTIONS(2290), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_RBRACE] = ACTIONS(2290), + [anon_sym_EQ_GT] = ACTIONS(2290), + [anon_sym_STAR2] = ACTIONS(2292), + [anon_sym_and2] = ACTIONS(2290), + [anon_sym_xor2] = ACTIONS(2290), + [anon_sym_or2] = ACTIONS(2290), + [anon_sym_not_DASHin2] = ACTIONS(2290), + [anon_sym_has2] = ACTIONS(2290), + [anon_sym_not_DASHhas2] = ACTIONS(2290), + [anon_sym_starts_DASHwith2] = ACTIONS(2290), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2290), + [anon_sym_ends_DASHwith2] = ACTIONS(2290), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2290), + [anon_sym_EQ_EQ2] = ACTIONS(2290), + [anon_sym_BANG_EQ2] = ACTIONS(2290), + [anon_sym_LT2] = ACTIONS(2292), + [anon_sym_LT_EQ2] = ACTIONS(2290), + [anon_sym_GT_EQ2] = ACTIONS(2290), + [anon_sym_EQ_TILDE2] = ACTIONS(2290), + [anon_sym_BANG_TILDE2] = ACTIONS(2290), + [anon_sym_like2] = ACTIONS(2290), + [anon_sym_not_DASHlike2] = ACTIONS(2290), + [anon_sym_STAR_STAR2] = ACTIONS(2290), + [anon_sym_PLUS_PLUS2] = ACTIONS(2290), + [anon_sym_SLASH2] = ACTIONS(2292), + [anon_sym_mod2] = ACTIONS(2290), + [anon_sym_SLASH_SLASH2] = ACTIONS(2290), + [anon_sym_PLUS2] = ACTIONS(2292), + [anon_sym_bit_DASHshl2] = ACTIONS(2290), + [anon_sym_bit_DASHshr2] = ACTIONS(2290), + [anon_sym_bit_DASHand2] = ACTIONS(2290), + [anon_sym_bit_DASHxor2] = ACTIONS(2290), + [anon_sym_bit_DASHor2] = ACTIONS(2290), + [anon_sym_COLON2] = ACTIONS(2290), + [anon_sym_err_GT] = ACTIONS(2292), + [anon_sym_out_GT] = ACTIONS(2292), + [anon_sym_e_GT] = ACTIONS(2292), + [anon_sym_o_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT] = ACTIONS(2292), + [anon_sym_err_GT_GT] = ACTIONS(2290), + [anon_sym_out_GT_GT] = ACTIONS(2290), + [anon_sym_e_GT_GT] = ACTIONS(2290), + [anon_sym_o_GT_GT] = ACTIONS(2290), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2290), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2290), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2290), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2290), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(769)] = { + [sym_comment] = STATE(769), + [anon_sym_in] = ACTIONS(2294), + [sym__newline] = ACTIONS(2294), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_err_GT_PIPE] = ACTIONS(2294), + [anon_sym_out_GT_PIPE] = ACTIONS(2294), + [anon_sym_e_GT_PIPE] = ACTIONS(2294), + [anon_sym_o_GT_PIPE] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2294), + [anon_sym_RPAREN] = ACTIONS(2294), + [anon_sym_GT2] = ACTIONS(2296), + [anon_sym_DASH2] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_EQ_GT] = ACTIONS(2294), + [anon_sym_STAR2] = ACTIONS(2296), + [anon_sym_and2] = ACTIONS(2294), + [anon_sym_xor2] = ACTIONS(2294), + [anon_sym_or2] = ACTIONS(2294), + [anon_sym_not_DASHin2] = ACTIONS(2294), + [anon_sym_has2] = ACTIONS(2294), + [anon_sym_not_DASHhas2] = ACTIONS(2294), + [anon_sym_starts_DASHwith2] = ACTIONS(2294), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2294), + [anon_sym_ends_DASHwith2] = ACTIONS(2294), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2294), + [anon_sym_EQ_EQ2] = ACTIONS(2294), + [anon_sym_BANG_EQ2] = ACTIONS(2294), + [anon_sym_LT2] = ACTIONS(2296), + [anon_sym_LT_EQ2] = ACTIONS(2294), + [anon_sym_GT_EQ2] = ACTIONS(2294), + [anon_sym_EQ_TILDE2] = ACTIONS(2294), + [anon_sym_BANG_TILDE2] = ACTIONS(2294), + [anon_sym_like2] = ACTIONS(2294), + [anon_sym_not_DASHlike2] = ACTIONS(2294), + [anon_sym_STAR_STAR2] = ACTIONS(2294), + [anon_sym_PLUS_PLUS2] = ACTIONS(2294), + [anon_sym_SLASH2] = ACTIONS(2296), + [anon_sym_mod2] = ACTIONS(2294), + [anon_sym_SLASH_SLASH2] = ACTIONS(2294), + [anon_sym_PLUS2] = ACTIONS(2296), + [anon_sym_bit_DASHshl2] = ACTIONS(2294), + [anon_sym_bit_DASHshr2] = ACTIONS(2294), + [anon_sym_bit_DASHand2] = ACTIONS(2294), + [anon_sym_bit_DASHxor2] = ACTIONS(2294), + [anon_sym_bit_DASHor2] = ACTIONS(2294), + [anon_sym_COLON2] = ACTIONS(2294), + [anon_sym_err_GT] = ACTIONS(2296), + [anon_sym_out_GT] = ACTIONS(2296), + [anon_sym_e_GT] = ACTIONS(2296), + [anon_sym_o_GT] = ACTIONS(2296), + [anon_sym_err_PLUSout_GT] = ACTIONS(2296), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2296), + [anon_sym_o_PLUSe_GT] = ACTIONS(2296), + [anon_sym_e_PLUSo_GT] = ACTIONS(2296), + [anon_sym_err_GT_GT] = ACTIONS(2294), + [anon_sym_out_GT_GT] = ACTIONS(2294), + [anon_sym_e_GT_GT] = ACTIONS(2294), + [anon_sym_o_GT_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(770)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1280), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(463), + [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(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(1026), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2244), + [anon_sym_DOT_DOT] = ACTIONS(2214), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), - [anon_sym_DOT_DOT_LT] = ACTIONS(2246), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2250), - [aux_sym__val_number_decimal_token3] = ACTIONS(2252), - [aux_sym__val_number_decimal_token4] = ACTIONS(2252), + [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(2254), + [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(2256), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(762)] = { - [aux_sym__repeat_newline] = STATE(1085), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(762), - [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_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_LPAREN2] = ACTIONS(1766), - [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_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(763)] = { - [aux_sym__repeat_newline] = STATE(1086), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(763), - [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_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_LPAREN2] = ACTIONS(1766), - [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_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(764)] = { - [aux_sym__repeat_newline] = STATE(1087), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(764), - [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_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_LPAREN2] = ACTIONS(1766), - [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_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(765)] = { - [aux_sym__repeat_newline] = STATE(3418), - [aux_sym__pipe_separator] = STATE(765), - [sym_comment] = STATE(765), - [anon_sym_export] = ACTIONS(2274), - [anon_sym_alias] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2276), - [anon_sym_mut] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [aux_sym_cmd_identifier_token1] = ACTIONS(2274), - [anon_sym_def] = ACTIONS(2276), - [anon_sym_use] = ACTIONS(2276), - [anon_sym_export_DASHenv] = ACTIONS(2276), - [anon_sym_extern] = ACTIONS(2276), - [anon_sym_module] = ACTIONS(2276), - [anon_sym_for] = ACTIONS(2276), - [anon_sym_loop] = ACTIONS(2276), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_else] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2276), - [anon_sym_catch] = ACTIONS(2276), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_in] = ACTIONS(2274), - [anon_sym_true] = ACTIONS(2276), - [anon_sym_false] = ACTIONS(2276), - [anon_sym_null] = ACTIONS(2276), - [aux_sym_cmd_identifier_token3] = ACTIONS(2276), - [aux_sym_cmd_identifier_token4] = ACTIONS(2276), - [aux_sym_cmd_identifier_token5] = ACTIONS(2276), - [sym__newline] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2281), - [anon_sym_err_GT_PIPE] = ACTIONS(2281), - [anon_sym_out_GT_PIPE] = ACTIONS(2281), - [anon_sym_e_GT_PIPE] = ACTIONS(2281), - [anon_sym_o_GT_PIPE] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2276), - [anon_sym_DOLLAR] = ACTIONS(2274), - [anon_sym_DASH2] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_DOT_DOT] = ACTIONS(2274), - [anon_sym_where] = ACTIONS(2276), - [aux_sym_expr_unary_token1] = ACTIONS(2276), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2276), - [anon_sym_DOT_DOT_LT] = ACTIONS(2276), - [aux_sym__val_number_decimal_token1] = ACTIONS(2274), - [aux_sym__val_number_decimal_token2] = ACTIONS(2276), - [aux_sym__val_number_decimal_token3] = ACTIONS(2276), - [aux_sym__val_number_decimal_token4] = ACTIONS(2276), - [aux_sym__val_number_token1] = ACTIONS(2276), - [aux_sym__val_number_token2] = ACTIONS(2276), - [aux_sym__val_number_token3] = ACTIONS(2276), - [anon_sym_0b] = ACTIONS(2274), - [anon_sym_0o] = ACTIONS(2274), - [anon_sym_0x] = ACTIONS(2274), - [sym_val_date] = ACTIONS(2276), - [anon_sym_DQUOTE] = ACTIONS(2276), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_BQUOTE] = ACTIONS(2276), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2276), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2276), - [anon_sym_CARET] = ACTIONS(2276), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2276), - }, - [STATE(766)] = { - [sym_comment] = STATE(766), - [anon_sym_in] = ACTIONS(2284), - [sym__newline] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2284), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_err_GT_PIPE] = ACTIONS(2284), - [anon_sym_out_GT_PIPE] = ACTIONS(2284), - [anon_sym_e_GT_PIPE] = ACTIONS(2284), - [anon_sym_o_GT_PIPE] = ACTIONS(2284), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2284), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2284), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2284), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2284), - [anon_sym_RPAREN] = ACTIONS(2284), - [anon_sym_GT2] = ACTIONS(2286), - [anon_sym_DASH2] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_RBRACE] = ACTIONS(2284), - [anon_sym_EQ_GT] = ACTIONS(2284), - [anon_sym_STAR2] = ACTIONS(2286), - [anon_sym_and2] = ACTIONS(2284), - [anon_sym_xor2] = ACTIONS(2284), - [anon_sym_or2] = ACTIONS(2284), - [anon_sym_not_DASHin2] = ACTIONS(2284), - [anon_sym_has2] = ACTIONS(2284), - [anon_sym_not_DASHhas2] = ACTIONS(2284), - [anon_sym_starts_DASHwith2] = ACTIONS(2284), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2284), - [anon_sym_ends_DASHwith2] = ACTIONS(2284), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2284), - [anon_sym_EQ_EQ2] = ACTIONS(2284), - [anon_sym_BANG_EQ2] = ACTIONS(2284), - [anon_sym_LT2] = ACTIONS(2286), - [anon_sym_LT_EQ2] = ACTIONS(2284), - [anon_sym_GT_EQ2] = ACTIONS(2284), - [anon_sym_EQ_TILDE2] = ACTIONS(2284), - [anon_sym_BANG_TILDE2] = ACTIONS(2284), - [anon_sym_like2] = ACTIONS(2284), - [anon_sym_not_DASHlike2] = ACTIONS(2284), - [anon_sym_STAR_STAR2] = ACTIONS(2284), - [anon_sym_PLUS_PLUS2] = ACTIONS(2284), - [anon_sym_SLASH2] = ACTIONS(2286), - [anon_sym_mod2] = ACTIONS(2284), - [anon_sym_SLASH_SLASH2] = ACTIONS(2284), - [anon_sym_PLUS2] = ACTIONS(2286), - [anon_sym_bit_DASHshl2] = ACTIONS(2284), - [anon_sym_bit_DASHshr2] = ACTIONS(2284), - [anon_sym_bit_DASHand2] = ACTIONS(2284), - [anon_sym_bit_DASHxor2] = ACTIONS(2284), - [anon_sym_bit_DASHor2] = ACTIONS(2284), - [anon_sym_COLON2] = ACTIONS(2284), - [anon_sym_err_GT] = ACTIONS(2286), - [anon_sym_out_GT] = ACTIONS(2286), - [anon_sym_e_GT] = ACTIONS(2286), - [anon_sym_o_GT] = ACTIONS(2286), - [anon_sym_err_PLUSout_GT] = ACTIONS(2286), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2286), - [anon_sym_o_PLUSe_GT] = ACTIONS(2286), - [anon_sym_e_PLUSo_GT] = ACTIONS(2286), - [anon_sym_err_GT_GT] = ACTIONS(2284), - [anon_sym_out_GT_GT] = ACTIONS(2284), - [anon_sym_e_GT_GT] = ACTIONS(2284), - [anon_sym_o_GT_GT] = ACTIONS(2284), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2284), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2284), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2284), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2284), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(767)] = { - [sym_comment] = STATE(767), - [anon_sym_in] = ACTIONS(2288), - [sym__newline] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_err_GT_PIPE] = ACTIONS(2288), - [anon_sym_out_GT_PIPE] = ACTIONS(2288), - [anon_sym_e_GT_PIPE] = ACTIONS(2288), - [anon_sym_o_GT_PIPE] = ACTIONS(2288), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2288), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2288), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2288), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2288), - [anon_sym_RPAREN] = ACTIONS(2288), - [anon_sym_GT2] = ACTIONS(2290), - [anon_sym_DASH2] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_EQ_GT] = ACTIONS(2288), - [anon_sym_STAR2] = ACTIONS(2290), - [anon_sym_and2] = ACTIONS(2288), - [anon_sym_xor2] = ACTIONS(2288), - [anon_sym_or2] = ACTIONS(2288), - [anon_sym_not_DASHin2] = ACTIONS(2288), - [anon_sym_has2] = ACTIONS(2288), - [anon_sym_not_DASHhas2] = ACTIONS(2288), - [anon_sym_starts_DASHwith2] = ACTIONS(2288), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2288), - [anon_sym_ends_DASHwith2] = ACTIONS(2288), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2288), - [anon_sym_EQ_EQ2] = ACTIONS(2288), - [anon_sym_BANG_EQ2] = ACTIONS(2288), - [anon_sym_LT2] = ACTIONS(2290), - [anon_sym_LT_EQ2] = ACTIONS(2288), - [anon_sym_GT_EQ2] = ACTIONS(2288), - [anon_sym_EQ_TILDE2] = ACTIONS(2288), - [anon_sym_BANG_TILDE2] = ACTIONS(2288), - [anon_sym_like2] = ACTIONS(2288), - [anon_sym_not_DASHlike2] = ACTIONS(2288), - [anon_sym_STAR_STAR2] = ACTIONS(2288), - [anon_sym_PLUS_PLUS2] = ACTIONS(2288), - [anon_sym_SLASH2] = ACTIONS(2290), - [anon_sym_mod2] = ACTIONS(2288), - [anon_sym_SLASH_SLASH2] = ACTIONS(2288), - [anon_sym_PLUS2] = ACTIONS(2290), - [anon_sym_bit_DASHshl2] = ACTIONS(2288), - [anon_sym_bit_DASHshr2] = ACTIONS(2288), - [anon_sym_bit_DASHand2] = ACTIONS(2288), - [anon_sym_bit_DASHxor2] = ACTIONS(2288), - [anon_sym_bit_DASHor2] = ACTIONS(2288), - [anon_sym_COLON2] = ACTIONS(2288), - [anon_sym_err_GT] = ACTIONS(2290), - [anon_sym_out_GT] = ACTIONS(2290), - [anon_sym_e_GT] = ACTIONS(2290), - [anon_sym_o_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT] = ACTIONS(2290), - [anon_sym_err_GT_GT] = ACTIONS(2288), - [anon_sym_out_GT_GT] = ACTIONS(2288), - [anon_sym_e_GT_GT] = ACTIONS(2288), - [anon_sym_o_GT_GT] = ACTIONS(2288), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2288), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2288), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2288), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2288), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(768)] = { - [aux_sym__repeat_newline] = STATE(1089), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(768), - [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_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_LPAREN2] = ACTIONS(1766), - [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_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(769)] = { - [aux_sym__repeat_newline] = STATE(1090), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(769), - [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_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_LPAREN2] = ACTIONS(1766), - [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_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(770)] = { - [aux_sym__repeat_newline] = STATE(1091), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(770), - [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_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_LPAREN2] = ACTIONS(1766), - [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_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(771)] = { [sym_comment] = STATE(771), - [anon_sym_in] = ACTIONS(2100), - [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(2100), - [anon_sym_RBRACE] = ACTIONS(2102), - [anon_sym_STAR2] = ACTIONS(2104), - [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(2104), - [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(2104), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2104), - [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(1633), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), - [anon_sym_COLON2] = ACTIONS(1718), - [anon_sym_err_GT] = ACTIONS(2106), - [anon_sym_out_GT] = ACTIONS(2106), - [anon_sym_e_GT] = ACTIONS(2106), - [anon_sym_o_GT] = ACTIONS(2106), - [anon_sym_err_PLUSout_GT] = ACTIONS(2106), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), - [anon_sym_o_PLUSe_GT] = ACTIONS(2106), - [anon_sym_e_PLUSo_GT] = ACTIONS(2106), - [anon_sym_err_GT_GT] = ACTIONS(2102), - [anon_sym_out_GT_GT] = ACTIONS(2102), - [anon_sym_e_GT_GT] = ACTIONS(2102), - [anon_sym_o_GT_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2102), + [anon_sym_in] = ACTIONS(2298), + [sym__newline] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_PIPE] = ACTIONS(2298), + [anon_sym_err_GT_PIPE] = ACTIONS(2298), + [anon_sym_out_GT_PIPE] = ACTIONS(2298), + [anon_sym_e_GT_PIPE] = ACTIONS(2298), + [anon_sym_o_GT_PIPE] = ACTIONS(2298), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2298), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2298), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2298), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2298), + [anon_sym_RPAREN] = ACTIONS(2298), + [anon_sym_GT2] = ACTIONS(2300), + [anon_sym_DASH2] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_STAR2] = ACTIONS(2300), + [anon_sym_and2] = ACTIONS(2298), + [anon_sym_xor2] = ACTIONS(2298), + [anon_sym_or2] = ACTIONS(2298), + [anon_sym_not_DASHin2] = ACTIONS(2298), + [anon_sym_has2] = ACTIONS(2298), + [anon_sym_not_DASHhas2] = ACTIONS(2298), + [anon_sym_starts_DASHwith2] = ACTIONS(2298), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2298), + [anon_sym_ends_DASHwith2] = ACTIONS(2298), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2298), + [anon_sym_EQ_EQ2] = ACTIONS(2298), + [anon_sym_BANG_EQ2] = ACTIONS(2298), + [anon_sym_LT2] = ACTIONS(2300), + [anon_sym_LT_EQ2] = ACTIONS(2298), + [anon_sym_GT_EQ2] = ACTIONS(2298), + [anon_sym_EQ_TILDE2] = ACTIONS(2298), + [anon_sym_BANG_TILDE2] = ACTIONS(2298), + [anon_sym_like2] = ACTIONS(2298), + [anon_sym_not_DASHlike2] = ACTIONS(2298), + [anon_sym_STAR_STAR2] = ACTIONS(2298), + [anon_sym_PLUS_PLUS2] = ACTIONS(2298), + [anon_sym_SLASH2] = ACTIONS(2300), + [anon_sym_mod2] = ACTIONS(2298), + [anon_sym_SLASH_SLASH2] = ACTIONS(2298), + [anon_sym_PLUS2] = ACTIONS(2300), + [anon_sym_bit_DASHshl2] = ACTIONS(2298), + [anon_sym_bit_DASHshr2] = ACTIONS(2298), + [anon_sym_bit_DASHand2] = ACTIONS(2298), + [anon_sym_bit_DASHxor2] = ACTIONS(2298), + [anon_sym_bit_DASHor2] = ACTIONS(2298), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(2300), + [anon_sym_out_GT] = ACTIONS(2300), + [anon_sym_e_GT] = ACTIONS(2300), + [anon_sym_o_GT] = ACTIONS(2300), + [anon_sym_err_PLUSout_GT] = ACTIONS(2300), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2300), + [anon_sym_o_PLUSe_GT] = ACTIONS(2300), + [anon_sym_e_PLUSo_GT] = ACTIONS(2300), + [anon_sym_err_GT_GT] = ACTIONS(2298), + [anon_sym_out_GT_GT] = ACTIONS(2298), + [anon_sym_e_GT_GT] = ACTIONS(2298), + [anon_sym_o_GT_GT] = ACTIONS(2298), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2298), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2298), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2298), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2298), [anon_sym_POUND] = ACTIONS(3), }, [STATE(772)] = { - [aux_sym__repeat_newline] = STATE(1070), - [sym__expr_parenthesized_immediate] = STATE(4713), + [aux_sym__repeat_newline] = STATE(985), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(772), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(773)] = { - [aux_sym__repeat_newline] = STATE(1068), - [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1321), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(463), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1019), + [sym__unquoted_with_expr] = STATE(1297), + [sym__unquoted_anonymous_prefix] = STATE(4744), [sym_comment] = STATE(773), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [anon_sym_true] = ACTIONS(2208), + [anon_sym_false] = ACTIONS(2208), + [anon_sym_null] = ACTIONS(2210), + [aux_sym_cmd_identifier_token3] = ACTIONS(2212), + [aux_sym_cmd_identifier_token4] = ACTIONS(2212), + [aux_sym_cmd_identifier_token5] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2214), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), + [anon_sym_DOT_DOT_LT] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2224), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(774)] = { - [aux_sym__repeat_newline] = STATE(1072), - [sym__expr_parenthesized_immediate] = STATE(4713), + [aux_sym__repeat_newline] = STATE(987), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(774), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(775)] = { + [aux_sym__repeat_newline] = STATE(989), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(775), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_in] = ACTIONS(2296), - [sym__newline] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2296), - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_err_GT_PIPE] = ACTIONS(2296), - [anon_sym_out_GT_PIPE] = ACTIONS(2296), - [anon_sym_e_GT_PIPE] = ACTIONS(2296), - [anon_sym_o_GT_PIPE] = ACTIONS(2296), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2296), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2296), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2296), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2296), - [anon_sym_RPAREN] = ACTIONS(2296), - [anon_sym_GT2] = ACTIONS(2298), - [anon_sym_DASH2] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2296), - [anon_sym_RBRACE] = ACTIONS(2296), - [anon_sym_EQ_GT] = ACTIONS(2296), - [anon_sym_STAR2] = ACTIONS(2298), - [anon_sym_and2] = ACTIONS(2296), - [anon_sym_xor2] = ACTIONS(2296), - [anon_sym_or2] = ACTIONS(2296), - [anon_sym_not_DASHin2] = ACTIONS(2296), - [anon_sym_has2] = ACTIONS(2296), - [anon_sym_not_DASHhas2] = ACTIONS(2296), - [anon_sym_starts_DASHwith2] = ACTIONS(2296), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2296), - [anon_sym_ends_DASHwith2] = ACTIONS(2296), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2296), - [anon_sym_EQ_EQ2] = ACTIONS(2296), - [anon_sym_BANG_EQ2] = ACTIONS(2296), - [anon_sym_LT2] = ACTIONS(2298), - [anon_sym_LT_EQ2] = ACTIONS(2296), - [anon_sym_GT_EQ2] = ACTIONS(2296), - [anon_sym_EQ_TILDE2] = ACTIONS(2296), - [anon_sym_BANG_TILDE2] = ACTIONS(2296), - [anon_sym_like2] = ACTIONS(2296), - [anon_sym_not_DASHlike2] = ACTIONS(2296), - [anon_sym_STAR_STAR2] = ACTIONS(2296), - [anon_sym_PLUS_PLUS2] = ACTIONS(2296), - [anon_sym_SLASH2] = ACTIONS(2298), - [anon_sym_mod2] = ACTIONS(2296), - [anon_sym_SLASH_SLASH2] = ACTIONS(2296), - [anon_sym_PLUS2] = ACTIONS(2298), - [anon_sym_bit_DASHshl2] = ACTIONS(2296), - [anon_sym_bit_DASHshr2] = ACTIONS(2296), - [anon_sym_bit_DASHand2] = ACTIONS(2296), - [anon_sym_bit_DASHxor2] = ACTIONS(2296), - [anon_sym_bit_DASHor2] = ACTIONS(2296), - [anon_sym_err_GT] = ACTIONS(2298), - [anon_sym_out_GT] = ACTIONS(2298), - [anon_sym_e_GT] = ACTIONS(2298), - [anon_sym_o_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT] = ACTIONS(2298), - [anon_sym_err_GT_GT] = ACTIONS(2296), - [anon_sym_out_GT_GT] = ACTIONS(2296), - [anon_sym_e_GT_GT] = ACTIONS(2296), - [anon_sym_o_GT_GT] = ACTIONS(2296), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2296), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2296), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2296), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2296), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(776)] = { + [aux_sym__repeat_newline] = STATE(993), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(776), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_in] = ACTIONS(2108), - [sym__newline] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2108), - [anon_sym_PIPE] = ACTIONS(2108), - [anon_sym_err_GT_PIPE] = ACTIONS(2108), - [anon_sym_out_GT_PIPE] = ACTIONS(2108), - [anon_sym_e_GT_PIPE] = ACTIONS(2108), - [anon_sym_o_GT_PIPE] = ACTIONS(2108), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2108), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2108), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2108), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2108), - [anon_sym_RPAREN] = ACTIONS(2108), - [anon_sym_GT2] = ACTIONS(2110), - [anon_sym_DASH2] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_RBRACE] = ACTIONS(2108), - [anon_sym_EQ_GT] = ACTIONS(2108), - [anon_sym_STAR2] = ACTIONS(2110), - [anon_sym_and2] = ACTIONS(2108), - [anon_sym_xor2] = ACTIONS(2108), - [anon_sym_or2] = ACTIONS(2108), - [anon_sym_not_DASHin2] = ACTIONS(2108), - [anon_sym_has2] = ACTIONS(2108), - [anon_sym_not_DASHhas2] = ACTIONS(2108), - [anon_sym_starts_DASHwith2] = ACTIONS(2108), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2108), - [anon_sym_ends_DASHwith2] = ACTIONS(2108), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2108), - [anon_sym_EQ_EQ2] = ACTIONS(2108), - [anon_sym_BANG_EQ2] = ACTIONS(2108), - [anon_sym_LT2] = ACTIONS(2110), - [anon_sym_LT_EQ2] = ACTIONS(2108), - [anon_sym_GT_EQ2] = ACTIONS(2108), - [anon_sym_EQ_TILDE2] = ACTIONS(2108), - [anon_sym_BANG_TILDE2] = ACTIONS(2108), - [anon_sym_like2] = ACTIONS(2108), - [anon_sym_not_DASHlike2] = ACTIONS(2108), - [anon_sym_STAR_STAR2] = ACTIONS(2108), - [anon_sym_PLUS_PLUS2] = ACTIONS(2108), - [anon_sym_SLASH2] = ACTIONS(2110), - [anon_sym_mod2] = ACTIONS(2108), - [anon_sym_SLASH_SLASH2] = ACTIONS(2108), - [anon_sym_PLUS2] = ACTIONS(2110), - [anon_sym_bit_DASHshl2] = ACTIONS(2108), - [anon_sym_bit_DASHshr2] = ACTIONS(2108), - [anon_sym_bit_DASHand2] = ACTIONS(2108), - [anon_sym_bit_DASHxor2] = ACTIONS(2108), - [anon_sym_bit_DASHor2] = ACTIONS(2108), - [anon_sym_err_GT] = ACTIONS(2110), - [anon_sym_out_GT] = ACTIONS(2110), - [anon_sym_e_GT] = ACTIONS(2110), - [anon_sym_o_GT] = ACTIONS(2110), - [anon_sym_err_PLUSout_GT] = ACTIONS(2110), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2110), - [anon_sym_o_PLUSe_GT] = ACTIONS(2110), - [anon_sym_e_PLUSo_GT] = ACTIONS(2110), - [anon_sym_err_GT_GT] = ACTIONS(2108), - [anon_sym_out_GT_GT] = ACTIONS(2108), - [anon_sym_e_GT_GT] = ACTIONS(2108), - [anon_sym_o_GT_GT] = ACTIONS(2108), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2108), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2108), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2108), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2108), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(777)] = { [sym_comment] = STATE(777), - [anon_sym_if] = ACTIONS(2116), - [anon_sym_in] = ACTIONS(2116), - [sym__newline] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_PIPE] = ACTIONS(2116), - [anon_sym_err_GT_PIPE] = ACTIONS(2116), - [anon_sym_out_GT_PIPE] = ACTIONS(2116), - [anon_sym_e_GT_PIPE] = ACTIONS(2116), - [anon_sym_o_GT_PIPE] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2116), - [anon_sym_RPAREN] = ACTIONS(2116), - [anon_sym_GT2] = ACTIONS(2118), - [anon_sym_DASH2] = ACTIONS(2116), - [anon_sym_LBRACE] = ACTIONS(2116), - [anon_sym_RBRACE] = ACTIONS(2116), - [anon_sym_EQ_GT] = ACTIONS(2116), - [anon_sym_STAR2] = ACTIONS(2118), - [anon_sym_and2] = ACTIONS(2116), - [anon_sym_xor2] = ACTIONS(2116), - [anon_sym_or2] = ACTIONS(2116), - [anon_sym_not_DASHin2] = ACTIONS(2116), - [anon_sym_has2] = ACTIONS(2116), - [anon_sym_not_DASHhas2] = ACTIONS(2116), - [anon_sym_starts_DASHwith2] = ACTIONS(2116), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2116), - [anon_sym_ends_DASHwith2] = ACTIONS(2116), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2116), - [anon_sym_EQ_EQ2] = ACTIONS(2116), - [anon_sym_BANG_EQ2] = ACTIONS(2116), - [anon_sym_LT2] = ACTIONS(2118), - [anon_sym_LT_EQ2] = ACTIONS(2116), - [anon_sym_GT_EQ2] = ACTIONS(2116), - [anon_sym_EQ_TILDE2] = ACTIONS(2116), - [anon_sym_BANG_TILDE2] = ACTIONS(2116), - [anon_sym_like2] = ACTIONS(2116), - [anon_sym_not_DASHlike2] = ACTIONS(2116), - [anon_sym_STAR_STAR2] = ACTIONS(2116), - [anon_sym_PLUS_PLUS2] = ACTIONS(2116), - [anon_sym_SLASH2] = ACTIONS(2118), - [anon_sym_mod2] = ACTIONS(2116), - [anon_sym_SLASH_SLASH2] = ACTIONS(2116), - [anon_sym_PLUS2] = ACTIONS(2118), - [anon_sym_bit_DASHshl2] = ACTIONS(2116), - [anon_sym_bit_DASHshr2] = ACTIONS(2116), - [anon_sym_bit_DASHand2] = ACTIONS(2116), - [anon_sym_bit_DASHxor2] = ACTIONS(2116), - [anon_sym_bit_DASHor2] = ACTIONS(2116), - [anon_sym_err_GT] = ACTIONS(2118), - [anon_sym_out_GT] = ACTIONS(2118), - [anon_sym_e_GT] = ACTIONS(2118), - [anon_sym_o_GT] = ACTIONS(2118), - [anon_sym_err_PLUSout_GT] = ACTIONS(2118), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2118), - [anon_sym_o_PLUSe_GT] = ACTIONS(2118), - [anon_sym_e_PLUSo_GT] = ACTIONS(2118), - [anon_sym_err_GT_GT] = ACTIONS(2116), - [anon_sym_out_GT_GT] = ACTIONS(2116), - [anon_sym_e_GT_GT] = ACTIONS(2116), - [anon_sym_o_GT_GT] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(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)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1313), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1032), - [sym__unquoted_with_expr] = STATE(1267), - [sym__unquoted_anonymous_prefix] = STATE(4525), + [aux_sym__repeat_newline] = STATE(995), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(778), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2240), - [aux_sym_cmd_identifier_token3] = ACTIONS(2242), - [aux_sym_cmd_identifier_token4] = ACTIONS(2242), - [aux_sym_cmd_identifier_token5] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2244), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), - [anon_sym_DOT_DOT_LT] = ACTIONS(2246), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2250), - [aux_sym__val_number_decimal_token3] = ACTIONS(2252), - [aux_sym__val_number_decimal_token4] = ACTIONS(2252), - [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(2254), - [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(2256), + [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), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(779)] = { - [aux_sym__repeat_newline] = STATE(1075), - [sym__expr_parenthesized_immediate] = STATE(4713), + [aux_sym__repeat_newline] = STATE(997), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(779), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(780)] = { + [aux_sym__repeat_newline] = STATE(999), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(780), - [anon_sym_if] = ACTIONS(2124), - [anon_sym_in] = ACTIONS(2124), - [sym__newline] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_PIPE] = ACTIONS(2124), - [anon_sym_err_GT_PIPE] = ACTIONS(2124), - [anon_sym_out_GT_PIPE] = ACTIONS(2124), - [anon_sym_e_GT_PIPE] = ACTIONS(2124), - [anon_sym_o_GT_PIPE] = ACTIONS(2124), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2124), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2124), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2124), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2124), - [anon_sym_RPAREN] = ACTIONS(2124), - [anon_sym_GT2] = ACTIONS(2126), - [anon_sym_DASH2] = ACTIONS(2124), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2124), - [anon_sym_EQ_GT] = ACTIONS(2124), - [anon_sym_STAR2] = ACTIONS(2126), - [anon_sym_and2] = ACTIONS(2124), - [anon_sym_xor2] = ACTIONS(2124), - [anon_sym_or2] = ACTIONS(2124), - [anon_sym_not_DASHin2] = ACTIONS(2124), - [anon_sym_has2] = ACTIONS(2124), - [anon_sym_not_DASHhas2] = ACTIONS(2124), - [anon_sym_starts_DASHwith2] = ACTIONS(2124), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2124), - [anon_sym_ends_DASHwith2] = ACTIONS(2124), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2124), - [anon_sym_EQ_EQ2] = ACTIONS(2124), - [anon_sym_BANG_EQ2] = ACTIONS(2124), - [anon_sym_LT2] = ACTIONS(2126), - [anon_sym_LT_EQ2] = ACTIONS(2124), - [anon_sym_GT_EQ2] = ACTIONS(2124), - [anon_sym_EQ_TILDE2] = ACTIONS(2124), - [anon_sym_BANG_TILDE2] = ACTIONS(2124), - [anon_sym_like2] = ACTIONS(2124), - [anon_sym_not_DASHlike2] = ACTIONS(2124), - [anon_sym_STAR_STAR2] = ACTIONS(2124), - [anon_sym_PLUS_PLUS2] = ACTIONS(2124), - [anon_sym_SLASH2] = ACTIONS(2126), - [anon_sym_mod2] = ACTIONS(2124), - [anon_sym_SLASH_SLASH2] = ACTIONS(2124), - [anon_sym_PLUS2] = ACTIONS(2126), - [anon_sym_bit_DASHshl2] = ACTIONS(2124), - [anon_sym_bit_DASHshr2] = ACTIONS(2124), - [anon_sym_bit_DASHand2] = ACTIONS(2124), - [anon_sym_bit_DASHxor2] = ACTIONS(2124), - [anon_sym_bit_DASHor2] = ACTIONS(2124), - [anon_sym_err_GT] = ACTIONS(2126), - [anon_sym_out_GT] = ACTIONS(2126), - [anon_sym_e_GT] = ACTIONS(2126), - [anon_sym_o_GT] = ACTIONS(2126), - [anon_sym_err_PLUSout_GT] = ACTIONS(2126), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2126), - [anon_sym_o_PLUSe_GT] = ACTIONS(2126), - [anon_sym_e_PLUSo_GT] = ACTIONS(2126), - [anon_sym_err_GT_GT] = ACTIONS(2124), - [anon_sym_out_GT_GT] = ACTIONS(2124), - [anon_sym_e_GT_GT] = ACTIONS(2124), - [anon_sym_o_GT_GT] = ACTIONS(2124), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2124), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2124), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2124), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2124), + [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)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1277), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1018), - [sym__unquoted_with_expr] = STATE(1279), - [sym__unquoted_anonymous_prefix] = STATE(4525), + [aux_sym__repeat_newline] = STATE(1001), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(781), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2240), - [aux_sym_cmd_identifier_token3] = ACTIONS(2242), - [aux_sym_cmd_identifier_token4] = ACTIONS(2242), - [aux_sym_cmd_identifier_token5] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2244), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), - [anon_sym_DOT_DOT_LT] = ACTIONS(2246), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2250), - [aux_sym__val_number_decimal_token3] = ACTIONS(2252), - [aux_sym__val_number_decimal_token4] = ACTIONS(2252), - [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(2254), - [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(2256), + [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), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(782)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1280), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1021), - [sym__unquoted_with_expr] = STATE(1282), - [sym__unquoted_anonymous_prefix] = STATE(4525), + [aux_sym__repeat_newline] = STATE(1005), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(782), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2240), - [aux_sym_cmd_identifier_token3] = ACTIONS(2242), - [aux_sym_cmd_identifier_token4] = ACTIONS(2242), - [aux_sym_cmd_identifier_token5] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2244), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), - [anon_sym_DOT_DOT_LT] = ACTIONS(2246), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2250), - [aux_sym__val_number_decimal_token3] = ACTIONS(2252), - [aux_sym__val_number_decimal_token4] = ACTIONS(2252), - [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(2254), - [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(2256), + [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), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(783)] = { - [sym_cmd_identifier] = STATE(4141), - [sym_expr_parenthesized] = STATE(5138), - [sym__spread_parenthesized] = STATE(4677), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(4425), - [sym_val_number] = STATE(5138), - [sym__val_number_decimal] = STATE(1947), - [sym__val_number] = STATE(700), - [sym_val_string] = STATE(5138), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_interpolated] = STATE(5138), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym__spread_record] = STATE(4677), - [sym_record_entry] = STATE(4765), - [sym__record_key] = STATE(4944), + [aux_sym__repeat_newline] = STATE(1008), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(783), - [aux_sym__match_pattern_record_body_repeat1] = STATE(783), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_alias] = ACTIONS(2303), - [anon_sym_let] = ACTIONS(2303), - [anon_sym_mut] = ACTIONS(2303), - [anon_sym_const] = ACTIONS(2303), - [aux_sym_cmd_identifier_token1] = ACTIONS(2306), - [anon_sym_def] = ACTIONS(2303), - [anon_sym_use] = ACTIONS(2303), - [anon_sym_export_DASHenv] = ACTIONS(2303), - [anon_sym_extern] = ACTIONS(2303), - [anon_sym_module] = ACTIONS(2303), - [anon_sym_for] = ACTIONS(2303), - [anon_sym_loop] = ACTIONS(2303), - [anon_sym_while] = ACTIONS(2303), - [anon_sym_if] = ACTIONS(2303), - [anon_sym_else] = ACTIONS(2303), - [anon_sym_try] = ACTIONS(2303), - [anon_sym_catch] = ACTIONS(2303), - [anon_sym_match] = ACTIONS(2303), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_true] = ACTIONS(2309), - [anon_sym_false] = ACTIONS(2309), - [anon_sym_null] = ACTIONS(2309), - [aux_sym_cmd_identifier_token3] = ACTIONS(2312), - [aux_sym_cmd_identifier_token4] = ACTIONS(2312), - [aux_sym_cmd_identifier_token5] = ACTIONS(2312), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_DOLLAR] = ACTIONS(2318), - [anon_sym_DASH2] = ACTIONS(2321), - [anon_sym_PLUS2] = ACTIONS(2321), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2327), - [aux_sym__val_number_decimal_token1] = ACTIONS(2330), - [aux_sym__val_number_decimal_token2] = ACTIONS(2333), - [aux_sym__val_number_decimal_token3] = ACTIONS(2336), - [aux_sym__val_number_decimal_token4] = ACTIONS(2336), - [aux_sym__val_number_token1] = ACTIONS(2339), - [aux_sym__val_number_token2] = ACTIONS(2339), - [aux_sym__val_number_token3] = ACTIONS(2339), - [anon_sym_DQUOTE] = ACTIONS(2342), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_BQUOTE] = ACTIONS(2348), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2351), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2354), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2357), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(784)] = { [sym_comment] = STATE(784), - [anon_sym_if] = ACTIONS(2363), - [anon_sym_in] = ACTIONS(2363), - [sym__newline] = ACTIONS(2363), - [anon_sym_SEMI] = ACTIONS(2363), - [anon_sym_PIPE] = ACTIONS(2363), - [anon_sym_err_GT_PIPE] = ACTIONS(2363), - [anon_sym_out_GT_PIPE] = ACTIONS(2363), - [anon_sym_e_GT_PIPE] = ACTIONS(2363), - [anon_sym_o_GT_PIPE] = ACTIONS(2363), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2363), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2363), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2363), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2363), - [anon_sym_RPAREN] = ACTIONS(2363), - [anon_sym_GT2] = ACTIONS(2365), - [anon_sym_DASH2] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2363), - [anon_sym_RBRACE] = ACTIONS(2363), - [anon_sym_EQ_GT] = ACTIONS(2363), - [anon_sym_STAR2] = ACTIONS(2365), - [anon_sym_and2] = ACTIONS(2363), - [anon_sym_xor2] = ACTIONS(2363), - [anon_sym_or2] = ACTIONS(2363), - [anon_sym_not_DASHin2] = ACTIONS(2363), - [anon_sym_has2] = ACTIONS(2363), - [anon_sym_not_DASHhas2] = ACTIONS(2363), - [anon_sym_starts_DASHwith2] = ACTIONS(2363), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2363), - [anon_sym_ends_DASHwith2] = ACTIONS(2363), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2363), - [anon_sym_EQ_EQ2] = ACTIONS(2363), - [anon_sym_BANG_EQ2] = ACTIONS(2363), - [anon_sym_LT2] = ACTIONS(2365), - [anon_sym_LT_EQ2] = ACTIONS(2363), - [anon_sym_GT_EQ2] = ACTIONS(2363), - [anon_sym_EQ_TILDE2] = ACTIONS(2363), - [anon_sym_BANG_TILDE2] = ACTIONS(2363), - [anon_sym_like2] = ACTIONS(2363), - [anon_sym_not_DASHlike2] = ACTIONS(2363), - [anon_sym_STAR_STAR2] = ACTIONS(2363), - [anon_sym_PLUS_PLUS2] = ACTIONS(2363), - [anon_sym_SLASH2] = ACTIONS(2365), - [anon_sym_mod2] = ACTIONS(2363), - [anon_sym_SLASH_SLASH2] = ACTIONS(2363), - [anon_sym_PLUS2] = ACTIONS(2365), - [anon_sym_bit_DASHshl2] = ACTIONS(2363), - [anon_sym_bit_DASHshr2] = ACTIONS(2363), - [anon_sym_bit_DASHand2] = ACTIONS(2363), - [anon_sym_bit_DASHxor2] = ACTIONS(2363), - [anon_sym_bit_DASHor2] = ACTIONS(2363), - [anon_sym_err_GT] = ACTIONS(2365), - [anon_sym_out_GT] = ACTIONS(2365), - [anon_sym_e_GT] = ACTIONS(2365), - [anon_sym_o_GT] = ACTIONS(2365), - [anon_sym_err_PLUSout_GT] = ACTIONS(2365), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2365), - [anon_sym_o_PLUSe_GT] = ACTIONS(2365), - [anon_sym_e_PLUSo_GT] = ACTIONS(2365), - [anon_sym_err_GT_GT] = ACTIONS(2363), - [anon_sym_out_GT_GT] = ACTIONS(2363), - [anon_sym_e_GT_GT] = ACTIONS(2363), - [anon_sym_o_GT_GT] = ACTIONS(2363), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2363), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2363), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2363), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2363), + [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_cmd_identifier] = STATE(4141), - [sym_expr_parenthesized] = STATE(5138), - [sym__spread_parenthesized] = STATE(4677), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(4336), - [sym_val_number] = STATE(5138), - [sym__val_number_decimal] = STATE(1947), - [sym__val_number] = STATE(700), - [sym_val_string] = STATE(5138), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_interpolated] = STATE(5138), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym__spread_record] = STATE(4677), - [sym_record_entry] = STATE(4554), - [sym__record_key] = STATE(4944), + [aux_sym__repeat_newline] = STATE(1010), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(785), - [aux_sym__match_pattern_record_body_repeat1] = STATE(783), - [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(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1780), - [aux_sym_cmd_identifier_token4] = ACTIONS(1780), - [aux_sym_cmd_identifier_token5] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1786), - [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(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), - [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(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [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), - [sym_raw_string_begin] = ACTIONS(1802), }, [STATE(786)] = { - [aux_sym__repeat_newline] = STATE(1063), - [sym__expr_parenthesized_immediate] = STATE(4713), + [aux_sym__repeat_newline] = STATE(1012), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(786), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(787)] = { + [aux_sym__repeat_newline] = STATE(1014), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(787), - [anon_sym_if] = ACTIONS(2367), - [anon_sym_in] = ACTIONS(2367), - [sym__newline] = ACTIONS(2367), - [anon_sym_SEMI] = ACTIONS(2367), - [anon_sym_PIPE] = ACTIONS(2367), - [anon_sym_err_GT_PIPE] = ACTIONS(2367), - [anon_sym_out_GT_PIPE] = ACTIONS(2367), - [anon_sym_e_GT_PIPE] = ACTIONS(2367), - [anon_sym_o_GT_PIPE] = ACTIONS(2367), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2367), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2367), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2367), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2367), - [anon_sym_RPAREN] = ACTIONS(2367), - [anon_sym_GT2] = ACTIONS(2369), - [anon_sym_DASH2] = ACTIONS(2367), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_EQ_GT] = ACTIONS(2367), - [anon_sym_STAR2] = ACTIONS(2369), - [anon_sym_and2] = ACTIONS(2367), - [anon_sym_xor2] = ACTIONS(2367), - [anon_sym_or2] = ACTIONS(2367), - [anon_sym_not_DASHin2] = ACTIONS(2367), - [anon_sym_has2] = ACTIONS(2367), - [anon_sym_not_DASHhas2] = ACTIONS(2367), - [anon_sym_starts_DASHwith2] = ACTIONS(2367), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2367), - [anon_sym_ends_DASHwith2] = ACTIONS(2367), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2367), - [anon_sym_EQ_EQ2] = ACTIONS(2367), - [anon_sym_BANG_EQ2] = ACTIONS(2367), - [anon_sym_LT2] = ACTIONS(2369), - [anon_sym_LT_EQ2] = ACTIONS(2367), - [anon_sym_GT_EQ2] = ACTIONS(2367), - [anon_sym_EQ_TILDE2] = ACTIONS(2367), - [anon_sym_BANG_TILDE2] = ACTIONS(2367), - [anon_sym_like2] = ACTIONS(2367), - [anon_sym_not_DASHlike2] = ACTIONS(2367), - [anon_sym_STAR_STAR2] = ACTIONS(2367), - [anon_sym_PLUS_PLUS2] = ACTIONS(2367), - [anon_sym_SLASH2] = ACTIONS(2369), - [anon_sym_mod2] = ACTIONS(2367), - [anon_sym_SLASH_SLASH2] = ACTIONS(2367), - [anon_sym_PLUS2] = ACTIONS(2369), - [anon_sym_bit_DASHshl2] = ACTIONS(2367), - [anon_sym_bit_DASHshr2] = ACTIONS(2367), - [anon_sym_bit_DASHand2] = ACTIONS(2367), - [anon_sym_bit_DASHxor2] = ACTIONS(2367), - [anon_sym_bit_DASHor2] = ACTIONS(2367), - [anon_sym_err_GT] = ACTIONS(2369), - [anon_sym_out_GT] = ACTIONS(2369), - [anon_sym_e_GT] = ACTIONS(2369), - [anon_sym_o_GT] = ACTIONS(2369), - [anon_sym_err_PLUSout_GT] = ACTIONS(2369), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2369), - [anon_sym_o_PLUSe_GT] = ACTIONS(2369), - [anon_sym_e_PLUSo_GT] = ACTIONS(2369), - [anon_sym_err_GT_GT] = ACTIONS(2367), - [anon_sym_out_GT_GT] = ACTIONS(2367), - [anon_sym_e_GT_GT] = ACTIONS(2367), - [anon_sym_o_GT_GT] = ACTIONS(2367), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2367), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2367), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2367), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2367), + [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)] = { - [aux_sym__repeat_newline] = STATE(3418), - [aux_sym__pipe_separator] = STATE(765), + [sym_cell_path] = STATE(1275), + [sym_path] = STATE(720), [sym_comment] = STATE(788), - [anon_sym_export] = ACTIONS(2371), - [anon_sym_alias] = ACTIONS(2373), - [anon_sym_let] = ACTIONS(2373), - [anon_sym_mut] = ACTIONS(2373), - [anon_sym_const] = ACTIONS(2373), - [aux_sym_cmd_identifier_token1] = ACTIONS(2371), - [anon_sym_def] = ACTIONS(2373), - [anon_sym_use] = ACTIONS(2373), - [anon_sym_export_DASHenv] = ACTIONS(2373), - [anon_sym_extern] = ACTIONS(2373), - [anon_sym_module] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_loop] = ACTIONS(2373), - [anon_sym_while] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_else] = ACTIONS(2373), - [anon_sym_try] = ACTIONS(2373), - [anon_sym_catch] = ACTIONS(2373), - [anon_sym_match] = ACTIONS(2373), - [anon_sym_in] = ACTIONS(2371), - [anon_sym_true] = ACTIONS(2373), - [anon_sym_false] = ACTIONS(2373), - [anon_sym_null] = ACTIONS(2373), - [aux_sym_cmd_identifier_token3] = ACTIONS(2373), - [aux_sym_cmd_identifier_token4] = ACTIONS(2373), - [aux_sym_cmd_identifier_token5] = ACTIONS(2373), - [sym__newline] = ACTIONS(2375), - [anon_sym_PIPE] = ACTIONS(2377), - [anon_sym_err_GT_PIPE] = ACTIONS(2377), - [anon_sym_out_GT_PIPE] = ACTIONS(2377), - [anon_sym_e_GT_PIPE] = ACTIONS(2377), - [anon_sym_o_GT_PIPE] = ACTIONS(2377), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2377), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2377), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2377), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_DOLLAR] = ACTIONS(2371), - [anon_sym_DASH2] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2373), - [anon_sym_DOT_DOT] = ACTIONS(2371), - [anon_sym_where] = ACTIONS(2373), - [aux_sym_expr_unary_token1] = ACTIONS(2373), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2373), - [anon_sym_DOT_DOT_LT] = ACTIONS(2373), - [aux_sym__val_number_decimal_token1] = ACTIONS(2371), - [aux_sym__val_number_decimal_token2] = ACTIONS(2373), - [aux_sym__val_number_decimal_token3] = ACTIONS(2373), - [aux_sym__val_number_decimal_token4] = ACTIONS(2373), - [aux_sym__val_number_token1] = ACTIONS(2373), - [aux_sym__val_number_token2] = ACTIONS(2373), - [aux_sym__val_number_token3] = ACTIONS(2373), - [anon_sym_0b] = ACTIONS(2371), - [anon_sym_0o] = ACTIONS(2371), - [anon_sym_0x] = ACTIONS(2371), - [sym_val_date] = ACTIONS(2373), - [anon_sym_DQUOTE] = ACTIONS(2373), - [anon_sym_SQUOTE] = ACTIONS(2373), - [anon_sym_BQUOTE] = ACTIONS(2373), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2373), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2373), - [anon_sym_CARET] = ACTIONS(2373), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2373), + [aux_sym__where_predicate_lhs_repeat1] = STATE(622), + [ts_builtin_sym_end] = ACTIONS(1862), + [anon_sym_in] = ACTIONS(1862), + [sym__newline] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1862), + [anon_sym_err_GT_PIPE] = ACTIONS(1862), + [anon_sym_out_GT_PIPE] = ACTIONS(1862), + [anon_sym_e_GT_PIPE] = ACTIONS(1862), + [anon_sym_o_GT_PIPE] = ACTIONS(1862), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1862), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1862), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1862), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1862), + [anon_sym_GT2] = ACTIONS(1864), + [anon_sym_DASH2] = ACTIONS(1862), + [anon_sym_STAR2] = ACTIONS(1864), + [anon_sym_and2] = ACTIONS(1862), + [anon_sym_xor2] = ACTIONS(1862), + [anon_sym_or2] = ACTIONS(1862), + [anon_sym_not_DASHin2] = ACTIONS(1862), + [anon_sym_has2] = ACTIONS(1862), + [anon_sym_not_DASHhas2] = ACTIONS(1862), + [anon_sym_starts_DASHwith2] = ACTIONS(1862), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1862), + [anon_sym_ends_DASHwith2] = ACTIONS(1862), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1862), + [anon_sym_EQ_EQ2] = ACTIONS(1862), + [anon_sym_BANG_EQ2] = ACTIONS(1862), + [anon_sym_LT2] = ACTIONS(1864), + [anon_sym_LT_EQ2] = ACTIONS(1862), + [anon_sym_GT_EQ2] = ACTIONS(1862), + [anon_sym_EQ_TILDE2] = ACTIONS(1862), + [anon_sym_BANG_TILDE2] = ACTIONS(1862), + [anon_sym_like2] = ACTIONS(1862), + [anon_sym_not_DASHlike2] = ACTIONS(1862), + [anon_sym_STAR_STAR2] = ACTIONS(1862), + [anon_sym_PLUS_PLUS2] = ACTIONS(1862), + [anon_sym_SLASH2] = ACTIONS(1864), + [anon_sym_mod2] = ACTIONS(1862), + [anon_sym_SLASH_SLASH2] = ACTIONS(1862), + [anon_sym_PLUS2] = ACTIONS(1864), + [anon_sym_bit_DASHshl2] = ACTIONS(1862), + [anon_sym_bit_DASHshr2] = ACTIONS(1862), + [anon_sym_bit_DASHand2] = ACTIONS(1862), + [anon_sym_bit_DASHxor2] = ACTIONS(1862), + [anon_sym_bit_DASHor2] = ACTIONS(1862), + [anon_sym_DOT2] = ACTIONS(2280), + [anon_sym_err_GT] = ACTIONS(1864), + [anon_sym_out_GT] = ACTIONS(1864), + [anon_sym_e_GT] = ACTIONS(1864), + [anon_sym_o_GT] = ACTIONS(1864), + [anon_sym_err_PLUSout_GT] = ACTIONS(1864), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1864), + [anon_sym_o_PLUSe_GT] = ACTIONS(1864), + [anon_sym_e_PLUSo_GT] = ACTIONS(1864), + [anon_sym_err_GT_GT] = ACTIONS(1862), + [anon_sym_out_GT_GT] = ACTIONS(1862), + [anon_sym_e_GT_GT] = ACTIONS(1862), + [anon_sym_o_GT_GT] = ACTIONS(1862), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1862), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1862), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1862), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(789)] = { + [sym_cell_path] = STATE(1316), + [sym_path] = STATE(720), [sym_comment] = STATE(789), - [anon_sym_if] = ACTIONS(2379), - [anon_sym_in] = ACTIONS(2379), - [sym__newline] = ACTIONS(2379), - [anon_sym_SEMI] = ACTIONS(2379), - [anon_sym_PIPE] = ACTIONS(2379), - [anon_sym_err_GT_PIPE] = ACTIONS(2379), - [anon_sym_out_GT_PIPE] = ACTIONS(2379), - [anon_sym_e_GT_PIPE] = ACTIONS(2379), - [anon_sym_o_GT_PIPE] = ACTIONS(2379), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2379), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2379), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2379), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2379), - [anon_sym_RPAREN] = ACTIONS(2379), - [anon_sym_GT2] = ACTIONS(2381), - [anon_sym_DASH2] = ACTIONS(2379), - [anon_sym_LBRACE] = ACTIONS(2379), - [anon_sym_RBRACE] = ACTIONS(2379), - [anon_sym_EQ_GT] = ACTIONS(2379), - [anon_sym_STAR2] = ACTIONS(2381), - [anon_sym_and2] = ACTIONS(2379), - [anon_sym_xor2] = ACTIONS(2379), - [anon_sym_or2] = ACTIONS(2379), - [anon_sym_not_DASHin2] = ACTIONS(2379), - [anon_sym_has2] = ACTIONS(2379), - [anon_sym_not_DASHhas2] = ACTIONS(2379), - [anon_sym_starts_DASHwith2] = ACTIONS(2379), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2379), - [anon_sym_ends_DASHwith2] = ACTIONS(2379), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2379), - [anon_sym_EQ_EQ2] = ACTIONS(2379), - [anon_sym_BANG_EQ2] = ACTIONS(2379), - [anon_sym_LT2] = ACTIONS(2381), - [anon_sym_LT_EQ2] = ACTIONS(2379), - [anon_sym_GT_EQ2] = ACTIONS(2379), - [anon_sym_EQ_TILDE2] = ACTIONS(2379), - [anon_sym_BANG_TILDE2] = ACTIONS(2379), - [anon_sym_like2] = ACTIONS(2379), - [anon_sym_not_DASHlike2] = ACTIONS(2379), - [anon_sym_STAR_STAR2] = ACTIONS(2379), - [anon_sym_PLUS_PLUS2] = ACTIONS(2379), - [anon_sym_SLASH2] = ACTIONS(2381), - [anon_sym_mod2] = ACTIONS(2379), - [anon_sym_SLASH_SLASH2] = ACTIONS(2379), - [anon_sym_PLUS2] = ACTIONS(2381), - [anon_sym_bit_DASHshl2] = ACTIONS(2379), - [anon_sym_bit_DASHshr2] = ACTIONS(2379), - [anon_sym_bit_DASHand2] = ACTIONS(2379), - [anon_sym_bit_DASHxor2] = ACTIONS(2379), - [anon_sym_bit_DASHor2] = ACTIONS(2379), - [anon_sym_err_GT] = ACTIONS(2381), - [anon_sym_out_GT] = ACTIONS(2381), - [anon_sym_e_GT] = ACTIONS(2381), - [anon_sym_o_GT] = ACTIONS(2381), - [anon_sym_err_PLUSout_GT] = ACTIONS(2381), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2381), - [anon_sym_o_PLUSe_GT] = ACTIONS(2381), - [anon_sym_e_PLUSo_GT] = ACTIONS(2381), - [anon_sym_err_GT_GT] = ACTIONS(2379), - [anon_sym_out_GT_GT] = ACTIONS(2379), - [anon_sym_e_GT_GT] = ACTIONS(2379), - [anon_sym_o_GT_GT] = ACTIONS(2379), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2379), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2379), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2379), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2379), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(790)] = { - [sym_comment] = STATE(790), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_in] = ACTIONS(2383), - [sym__newline] = ACTIONS(2383), - [anon_sym_SEMI] = ACTIONS(2383), - [anon_sym_PIPE] = ACTIONS(2383), - [anon_sym_err_GT_PIPE] = ACTIONS(2383), - [anon_sym_out_GT_PIPE] = ACTIONS(2383), - [anon_sym_e_GT_PIPE] = ACTIONS(2383), - [anon_sym_o_GT_PIPE] = ACTIONS(2383), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2383), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2383), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2383), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2383), - [anon_sym_RPAREN] = ACTIONS(2383), - [anon_sym_GT2] = ACTIONS(2385), - [anon_sym_DASH2] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(2383), - [anon_sym_STAR2] = ACTIONS(2385), - [anon_sym_and2] = ACTIONS(2383), - [anon_sym_xor2] = ACTIONS(2383), - [anon_sym_or2] = ACTIONS(2383), - [anon_sym_not_DASHin2] = ACTIONS(2383), - [anon_sym_has2] = ACTIONS(2383), - [anon_sym_not_DASHhas2] = ACTIONS(2383), - [anon_sym_starts_DASHwith2] = ACTIONS(2383), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2383), - [anon_sym_ends_DASHwith2] = ACTIONS(2383), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2383), - [anon_sym_EQ_EQ2] = ACTIONS(2383), - [anon_sym_BANG_EQ2] = ACTIONS(2383), - [anon_sym_LT2] = ACTIONS(2385), - [anon_sym_LT_EQ2] = ACTIONS(2383), - [anon_sym_GT_EQ2] = ACTIONS(2383), - [anon_sym_EQ_TILDE2] = ACTIONS(2383), - [anon_sym_BANG_TILDE2] = ACTIONS(2383), - [anon_sym_like2] = ACTIONS(2383), - [anon_sym_not_DASHlike2] = ACTIONS(2383), - [anon_sym_STAR_STAR2] = ACTIONS(2383), - [anon_sym_PLUS_PLUS2] = ACTIONS(2383), - [anon_sym_SLASH2] = ACTIONS(2385), - [anon_sym_mod2] = ACTIONS(2383), - [anon_sym_SLASH_SLASH2] = ACTIONS(2383), - [anon_sym_PLUS2] = ACTIONS(2385), - [anon_sym_bit_DASHshl2] = ACTIONS(2383), - [anon_sym_bit_DASHshr2] = ACTIONS(2383), - [anon_sym_bit_DASHand2] = ACTIONS(2383), - [anon_sym_bit_DASHxor2] = ACTIONS(2383), - [anon_sym_bit_DASHor2] = ACTIONS(2383), - [anon_sym_err_GT] = ACTIONS(2385), - [anon_sym_out_GT] = ACTIONS(2385), - [anon_sym_e_GT] = ACTIONS(2385), - [anon_sym_o_GT] = ACTIONS(2385), - [anon_sym_err_PLUSout_GT] = ACTIONS(2385), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2385), - [anon_sym_o_PLUSe_GT] = ACTIONS(2385), - [anon_sym_e_PLUSo_GT] = ACTIONS(2385), - [anon_sym_err_GT_GT] = ACTIONS(2383), - [anon_sym_out_GT_GT] = ACTIONS(2383), - [anon_sym_e_GT_GT] = ACTIONS(2383), - [anon_sym_o_GT_GT] = ACTIONS(2383), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2383), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2383), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2383), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2383), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(791)] = { - [sym_comment] = STATE(791), - [ts_builtin_sym_end] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [sym__newline] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_PIPE] = ACTIONS(1535), - [anon_sym_err_GT_PIPE] = ACTIONS(1535), - [anon_sym_out_GT_PIPE] = ACTIONS(1535), - [anon_sym_e_GT_PIPE] = ACTIONS(1535), - [anon_sym_o_GT_PIPE] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), - [anon_sym_GT2] = ACTIONS(1533), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_STAR2] = ACTIONS(1533), - [anon_sym_and2] = ACTIONS(1535), - [anon_sym_xor2] = ACTIONS(1535), - [anon_sym_or2] = ACTIONS(1535), - [anon_sym_not_DASHin2] = ACTIONS(1535), - [anon_sym_has2] = ACTIONS(1535), - [anon_sym_not_DASHhas2] = ACTIONS(1535), - [anon_sym_starts_DASHwith2] = ACTIONS(1535), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), - [anon_sym_ends_DASHwith2] = ACTIONS(1535), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), - [anon_sym_EQ_EQ2] = ACTIONS(1535), - [anon_sym_BANG_EQ2] = ACTIONS(1535), - [anon_sym_LT2] = ACTIONS(1533), - [anon_sym_LT_EQ2] = ACTIONS(1535), - [anon_sym_GT_EQ2] = ACTIONS(1535), - [anon_sym_EQ_TILDE2] = ACTIONS(1535), - [anon_sym_BANG_TILDE2] = ACTIONS(1535), - [anon_sym_like2] = ACTIONS(1535), - [anon_sym_not_DASHlike2] = ACTIONS(1535), - [anon_sym_STAR_STAR2] = ACTIONS(1535), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1533), - [anon_sym_mod2] = ACTIONS(1535), - [anon_sym_SLASH_SLASH2] = ACTIONS(1535), - [anon_sym_PLUS2] = ACTIONS(1533), - [anon_sym_bit_DASHshl2] = ACTIONS(1535), - [anon_sym_bit_DASHshr2] = ACTIONS(1535), - [anon_sym_bit_DASHand2] = ACTIONS(1535), - [anon_sym_bit_DASHxor2] = ACTIONS(1535), - [anon_sym_bit_DASHor2] = ACTIONS(1535), - [anon_sym_DOT_DOT2] = ACTIONS(1533), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1535), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1533), - [anon_sym_err_GT] = ACTIONS(1533), - [anon_sym_out_GT] = ACTIONS(1533), - [anon_sym_e_GT] = ACTIONS(1533), - [anon_sym_o_GT] = ACTIONS(1533), - [anon_sym_err_PLUSout_GT] = ACTIONS(1533), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1533), - [anon_sym_o_PLUSe_GT] = ACTIONS(1533), - [anon_sym_e_PLUSo_GT] = ACTIONS(1533), - [anon_sym_err_GT_GT] = ACTIONS(1535), - [anon_sym_out_GT_GT] = ACTIONS(1535), - [anon_sym_e_GT_GT] = ACTIONS(1535), - [anon_sym_o_GT_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(792)] = { - [sym_comment] = STATE(792), - [ts_builtin_sym_end] = ACTIONS(1543), - [anon_sym_in] = ACTIONS(1543), - [sym__newline] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_PIPE] = ACTIONS(1543), - [anon_sym_err_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_GT_PIPE] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1543), - [anon_sym_GT2] = ACTIONS(1541), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_STAR2] = ACTIONS(1541), - [anon_sym_and2] = ACTIONS(1543), - [anon_sym_xor2] = ACTIONS(1543), - [anon_sym_or2] = ACTIONS(1543), - [anon_sym_not_DASHin2] = ACTIONS(1543), - [anon_sym_has2] = ACTIONS(1543), - [anon_sym_not_DASHhas2] = ACTIONS(1543), - [anon_sym_starts_DASHwith2] = ACTIONS(1543), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1543), - [anon_sym_ends_DASHwith2] = ACTIONS(1543), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1543), - [anon_sym_EQ_EQ2] = ACTIONS(1543), - [anon_sym_BANG_EQ2] = ACTIONS(1543), - [anon_sym_LT2] = ACTIONS(1541), - [anon_sym_LT_EQ2] = ACTIONS(1543), - [anon_sym_GT_EQ2] = ACTIONS(1543), - [anon_sym_EQ_TILDE2] = ACTIONS(1543), - [anon_sym_BANG_TILDE2] = ACTIONS(1543), - [anon_sym_like2] = ACTIONS(1543), - [anon_sym_not_DASHlike2] = ACTIONS(1543), - [anon_sym_STAR_STAR2] = ACTIONS(1543), - [anon_sym_PLUS_PLUS2] = ACTIONS(1543), - [anon_sym_SLASH2] = ACTIONS(1541), - [anon_sym_mod2] = ACTIONS(1543), - [anon_sym_SLASH_SLASH2] = ACTIONS(1543), - [anon_sym_PLUS2] = ACTIONS(1541), - [anon_sym_bit_DASHshl2] = ACTIONS(1543), - [anon_sym_bit_DASHshr2] = ACTIONS(1543), - [anon_sym_bit_DASHand2] = ACTIONS(1543), - [anon_sym_bit_DASHxor2] = ACTIONS(1543), - [anon_sym_bit_DASHor2] = ACTIONS(1543), - [anon_sym_DOT_DOT2] = ACTIONS(1541), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1543), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1541), - [anon_sym_err_GT] = ACTIONS(1541), - [anon_sym_out_GT] = ACTIONS(1541), - [anon_sym_e_GT] = ACTIONS(1541), - [anon_sym_o_GT] = ACTIONS(1541), - [anon_sym_err_PLUSout_GT] = ACTIONS(1541), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1541), - [anon_sym_o_PLUSe_GT] = ACTIONS(1541), - [anon_sym_e_PLUSo_GT] = ACTIONS(1541), - [anon_sym_err_GT_GT] = ACTIONS(1543), - [anon_sym_out_GT_GT] = ACTIONS(1543), - [anon_sym_e_GT_GT] = ACTIONS(1543), - [anon_sym_o_GT_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(793)] = { - [sym_comment] = STATE(793), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_in] = ACTIONS(2387), - [sym__newline] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2387), - [anon_sym_PIPE] = ACTIONS(2387), - [anon_sym_err_GT_PIPE] = ACTIONS(2387), - [anon_sym_out_GT_PIPE] = ACTIONS(2387), - [anon_sym_e_GT_PIPE] = ACTIONS(2387), - [anon_sym_o_GT_PIPE] = ACTIONS(2387), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2387), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2387), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2387), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2387), - [anon_sym_RPAREN] = ACTIONS(2387), - [anon_sym_GT2] = ACTIONS(2389), - [anon_sym_DASH2] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_EQ_GT] = ACTIONS(2387), - [anon_sym_STAR2] = ACTIONS(2389), - [anon_sym_and2] = ACTIONS(2387), - [anon_sym_xor2] = ACTIONS(2387), - [anon_sym_or2] = ACTIONS(2387), - [anon_sym_not_DASHin2] = ACTIONS(2387), - [anon_sym_has2] = ACTIONS(2387), - [anon_sym_not_DASHhas2] = ACTIONS(2387), - [anon_sym_starts_DASHwith2] = ACTIONS(2387), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2387), - [anon_sym_ends_DASHwith2] = ACTIONS(2387), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2387), - [anon_sym_EQ_EQ2] = ACTIONS(2387), - [anon_sym_BANG_EQ2] = ACTIONS(2387), - [anon_sym_LT2] = ACTIONS(2389), - [anon_sym_LT_EQ2] = ACTIONS(2387), - [anon_sym_GT_EQ2] = ACTIONS(2387), - [anon_sym_EQ_TILDE2] = ACTIONS(2387), - [anon_sym_BANG_TILDE2] = ACTIONS(2387), - [anon_sym_like2] = ACTIONS(2387), - [anon_sym_not_DASHlike2] = ACTIONS(2387), - [anon_sym_STAR_STAR2] = ACTIONS(2387), - [anon_sym_PLUS_PLUS2] = ACTIONS(2387), - [anon_sym_SLASH2] = ACTIONS(2389), - [anon_sym_mod2] = ACTIONS(2387), - [anon_sym_SLASH_SLASH2] = ACTIONS(2387), - [anon_sym_PLUS2] = ACTIONS(2389), - [anon_sym_bit_DASHshl2] = ACTIONS(2387), - [anon_sym_bit_DASHshr2] = ACTIONS(2387), - [anon_sym_bit_DASHand2] = ACTIONS(2387), - [anon_sym_bit_DASHxor2] = ACTIONS(2387), - [anon_sym_bit_DASHor2] = ACTIONS(2387), - [anon_sym_err_GT] = ACTIONS(2389), - [anon_sym_out_GT] = ACTIONS(2389), - [anon_sym_e_GT] = ACTIONS(2389), - [anon_sym_o_GT] = ACTIONS(2389), - [anon_sym_err_PLUSout_GT] = ACTIONS(2389), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2389), - [anon_sym_o_PLUSe_GT] = ACTIONS(2389), - [anon_sym_e_PLUSo_GT] = ACTIONS(2389), - [anon_sym_err_GT_GT] = ACTIONS(2387), - [anon_sym_out_GT_GT] = ACTIONS(2387), - [anon_sym_e_GT_GT] = ACTIONS(2387), - [anon_sym_o_GT_GT] = ACTIONS(2387), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2387), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2387), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2387), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2387), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(794)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1270), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(965), - [sym__unquoted_with_expr] = STATE(1272), - [sym__unquoted_anonymous_prefix] = STATE(4525), - [sym_comment] = STATE(794), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2240), - [aux_sym_cmd_identifier_token3] = ACTIONS(2242), - [aux_sym_cmd_identifier_token4] = ACTIONS(2242), - [aux_sym_cmd_identifier_token5] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2244), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), - [anon_sym_DOT_DOT_LT] = ACTIONS(2246), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2250), - [aux_sym__val_number_decimal_token3] = ACTIONS(2252), - [aux_sym__val_number_decimal_token4] = ACTIONS(2252), - [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(2254), - [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(2256), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(795)] = { - [sym_cell_path] = STATE(1339), - [sym_path] = STATE(791), - [sym_comment] = STATE(795), - [aux_sym__where_predicate_lhs_repeat1] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(1872), - [anon_sym_in] = ACTIONS(1872), - [sym__newline] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1872), - [anon_sym_PIPE] = ACTIONS(1872), - [anon_sym_err_GT_PIPE] = ACTIONS(1872), - [anon_sym_out_GT_PIPE] = ACTIONS(1872), - [anon_sym_e_GT_PIPE] = ACTIONS(1872), - [anon_sym_o_GT_PIPE] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1872), - [anon_sym_GT2] = ACTIONS(1874), - [anon_sym_DASH2] = ACTIONS(1872), - [anon_sym_STAR2] = ACTIONS(1874), - [anon_sym_and2] = ACTIONS(1872), - [anon_sym_xor2] = ACTIONS(1872), - [anon_sym_or2] = ACTIONS(1872), - [anon_sym_not_DASHin2] = ACTIONS(1872), - [anon_sym_has2] = ACTIONS(1872), - [anon_sym_not_DASHhas2] = ACTIONS(1872), - [anon_sym_starts_DASHwith2] = ACTIONS(1872), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1872), - [anon_sym_ends_DASHwith2] = ACTIONS(1872), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1872), - [anon_sym_EQ_EQ2] = ACTIONS(1872), - [anon_sym_BANG_EQ2] = ACTIONS(1872), - [anon_sym_LT2] = ACTIONS(1874), - [anon_sym_LT_EQ2] = ACTIONS(1872), - [anon_sym_GT_EQ2] = ACTIONS(1872), - [anon_sym_EQ_TILDE2] = ACTIONS(1872), - [anon_sym_BANG_TILDE2] = ACTIONS(1872), - [anon_sym_like2] = ACTIONS(1872), - [anon_sym_not_DASHlike2] = ACTIONS(1872), - [anon_sym_STAR_STAR2] = ACTIONS(1872), - [anon_sym_PLUS_PLUS2] = ACTIONS(1872), - [anon_sym_SLASH2] = ACTIONS(1874), - [anon_sym_mod2] = ACTIONS(1872), - [anon_sym_SLASH_SLASH2] = ACTIONS(1872), - [anon_sym_PLUS2] = ACTIONS(1874), - [anon_sym_bit_DASHshl2] = ACTIONS(1872), - [anon_sym_bit_DASHshr2] = ACTIONS(1872), - [anon_sym_bit_DASHand2] = ACTIONS(1872), - [anon_sym_bit_DASHxor2] = ACTIONS(1872), - [anon_sym_bit_DASHor2] = ACTIONS(1872), - [anon_sym_DOT2] = ACTIONS(2391), - [anon_sym_err_GT] = ACTIONS(1874), - [anon_sym_out_GT] = ACTIONS(1874), - [anon_sym_e_GT] = ACTIONS(1874), - [anon_sym_o_GT] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT] = ACTIONS(1874), - [anon_sym_err_GT_GT] = ACTIONS(1872), - [anon_sym_out_GT_GT] = ACTIONS(1872), - [anon_sym_e_GT_GT] = ACTIONS(1872), - [anon_sym_o_GT_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(796)] = { - [aux_sym__repeat_newline] = STATE(1092), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(796), - [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_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_LPAREN2] = ACTIONS(1766), - [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_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(797)] = { - [aux_sym__repeat_newline] = STATE(1093), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(797), - [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_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_LPAREN2] = ACTIONS(1766), - [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_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(798)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1274), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1014), - [sym__unquoted_with_expr] = STATE(1276), - [sym__unquoted_anonymous_prefix] = STATE(4525), - [sym_comment] = STATE(798), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2240), - [aux_sym_cmd_identifier_token3] = ACTIONS(2242), - [aux_sym_cmd_identifier_token4] = ACTIONS(2242), - [aux_sym_cmd_identifier_token5] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2244), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), - [anon_sym_DOT_DOT_LT] = ACTIONS(2246), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2250), - [aux_sym__val_number_decimal_token3] = ACTIONS(2252), - [aux_sym__val_number_decimal_token4] = ACTIONS(2252), - [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(2254), - [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(2256), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(799)] = { - [aux_sym__repeat_newline] = STATE(1080), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(799), - [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_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_LPAREN2] = ACTIONS(1766), - [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_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(800)] = { - [sym_cell_path] = STATE(1306), - [sym_path] = STATE(791), - [sym_comment] = STATE(800), - [aux_sym__where_predicate_lhs_repeat1] = STATE(532), + [aux_sym__where_predicate_lhs_repeat1] = STATE(622), [ts_builtin_sym_end] = ACTIONS(1888), [anon_sym_in] = ACTIONS(1888), [sym__newline] = ACTIONS(1888), @@ -107923,7 +107512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1888), [anon_sym_bit_DASHxor2] = ACTIONS(1888), [anon_sym_bit_DASHor2] = ACTIONS(1888), - [anon_sym_DOT2] = ACTIONS(2391), + [anon_sym_DOT2] = ACTIONS(2280), [anon_sym_err_GT] = ACTIONS(1890), [anon_sym_out_GT] = ACTIONS(1890), [anon_sym_e_GT] = ACTIONS(1890), @@ -107942,4928 +107531,5418 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1888), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(790)] = { + [sym_comment] = STATE(790), + [ts_builtin_sym_end] = ACTIONS(1770), + [anon_sym_in] = ACTIONS(1770), + [sym__newline] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_err_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_GT_PIPE] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1770), + [anon_sym_GT2] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1770), + [anon_sym_STAR2] = ACTIONS(1772), + [anon_sym_and2] = ACTIONS(1770), + [anon_sym_xor2] = ACTIONS(1770), + [anon_sym_or2] = ACTIONS(1770), + [anon_sym_not_DASHin2] = ACTIONS(1770), + [anon_sym_has2] = ACTIONS(1770), + [anon_sym_not_DASHhas2] = ACTIONS(1770), + [anon_sym_starts_DASHwith2] = ACTIONS(1770), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1770), + [anon_sym_ends_DASHwith2] = ACTIONS(1770), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1770), + [anon_sym_EQ_EQ2] = ACTIONS(1770), + [anon_sym_BANG_EQ2] = ACTIONS(1770), + [anon_sym_LT2] = ACTIONS(1772), + [anon_sym_LT_EQ2] = ACTIONS(1770), + [anon_sym_GT_EQ2] = ACTIONS(1770), + [anon_sym_EQ_TILDE2] = ACTIONS(1770), + [anon_sym_BANG_TILDE2] = ACTIONS(1770), + [anon_sym_like2] = ACTIONS(1770), + [anon_sym_not_DASHlike2] = ACTIONS(1770), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_STAR_STAR2] = ACTIONS(1770), + [anon_sym_PLUS_PLUS2] = ACTIONS(1770), + [anon_sym_SLASH2] = ACTIONS(1772), + [anon_sym_mod2] = ACTIONS(1770), + [anon_sym_SLASH_SLASH2] = ACTIONS(1770), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_bit_DASHshl2] = ACTIONS(1770), + [anon_sym_bit_DASHshr2] = ACTIONS(1770), + [anon_sym_bit_DASHand2] = ACTIONS(1770), + [anon_sym_bit_DASHxor2] = ACTIONS(1770), + [anon_sym_bit_DASHor2] = ACTIONS(1770), + [aux_sym__immediate_decimal_token1] = ACTIONS(2315), + [aux_sym__immediate_decimal_token5] = ACTIONS(2317), + [anon_sym_err_GT] = ACTIONS(1772), + [anon_sym_out_GT] = ACTIONS(1772), + [anon_sym_e_GT] = ACTIONS(1772), + [anon_sym_o_GT] = ACTIONS(1772), + [anon_sym_err_PLUSout_GT] = ACTIONS(1772), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1772), + [anon_sym_o_PLUSe_GT] = ACTIONS(1772), + [anon_sym_e_PLUSo_GT] = ACTIONS(1772), + [anon_sym_err_GT_GT] = ACTIONS(1770), + [anon_sym_out_GT_GT] = ACTIONS(1770), + [anon_sym_e_GT_GT] = ACTIONS(1770), + [anon_sym_o_GT_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1770), + [sym__unquoted_pattern] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(791)] = { + [aux_sym__repeat_newline] = STATE(916), + [aux_sym__pipe_separator] = STATE(887), + [sym_comment] = STATE(791), + [anon_sym_export] = ACTIONS(2319), + [anon_sym_alias] = ACTIONS(2321), + [anon_sym_let] = ACTIONS(2321), + [anon_sym_mut] = ACTIONS(2321), + [anon_sym_const] = ACTIONS(2321), + [aux_sym_cmd_identifier_token1] = ACTIONS(2319), + [anon_sym_def] = ACTIONS(2321), + [anon_sym_use] = ACTIONS(2321), + [anon_sym_export_DASHenv] = ACTIONS(2321), + [anon_sym_extern] = ACTIONS(2321), + [anon_sym_module] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2321), + [anon_sym_loop] = ACTIONS(2321), + [anon_sym_while] = ACTIONS(2321), + [anon_sym_if] = ACTIONS(2321), + [anon_sym_else] = ACTIONS(2321), + [anon_sym_try] = ACTIONS(2321), + [anon_sym_catch] = ACTIONS(2321), + [anon_sym_match] = ACTIONS(2321), + [anon_sym_in] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2321), + [anon_sym_false] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2321), + [aux_sym_cmd_identifier_token3] = ACTIONS(2321), + [aux_sym_cmd_identifier_token4] = ACTIONS(2321), + [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym__newline] = ACTIONS(2323), + [anon_sym_PIPE] = ACTIONS(2325), + [anon_sym_err_GT_PIPE] = ACTIONS(2325), + [anon_sym_out_GT_PIPE] = ACTIONS(2325), + [anon_sym_e_GT_PIPE] = ACTIONS(2325), + [anon_sym_o_GT_PIPE] = ACTIONS(2325), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2325), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2325), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2325), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2321), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_DASH2] = ACTIONS(2319), + [anon_sym_LBRACE] = ACTIONS(2321), + [anon_sym_DOT_DOT] = ACTIONS(2319), + [anon_sym_where] = ACTIONS(2321), + [aux_sym_expr_unary_token1] = ACTIONS(2321), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2321), + [anon_sym_DOT_DOT_LT] = ACTIONS(2321), + [aux_sym__val_number_decimal_token1] = ACTIONS(2319), + [aux_sym__val_number_decimal_token2] = ACTIONS(2321), + [aux_sym__val_number_decimal_token3] = ACTIONS(2321), + [aux_sym__val_number_decimal_token4] = ACTIONS(2321), + [aux_sym__val_number_token1] = ACTIONS(2321), + [aux_sym__val_number_token2] = ACTIONS(2321), + [aux_sym__val_number_token3] = ACTIONS(2321), + [anon_sym_0b] = ACTIONS(2319), + [anon_sym_0o] = ACTIONS(2319), + [anon_sym_0x] = ACTIONS(2319), + [sym_val_date] = ACTIONS(2321), + [anon_sym_DQUOTE] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2321), + [anon_sym_BQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2321), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2321), + [anon_sym_CARET] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2321), + }, + [STATE(792)] = { + [sym_cell_path] = STATE(1273), + [sym_path] = STATE(720), + [sym_comment] = STATE(792), + [aux_sym__where_predicate_lhs_repeat1] = STATE(622), + [ts_builtin_sym_end] = ACTIONS(1882), + [anon_sym_in] = ACTIONS(1882), + [sym__newline] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_err_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_GT_PIPE] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), + [anon_sym_GT2] = ACTIONS(1885), + [anon_sym_DASH2] = ACTIONS(1882), + [anon_sym_STAR2] = ACTIONS(1885), + [anon_sym_and2] = ACTIONS(1882), + [anon_sym_xor2] = ACTIONS(1882), + [anon_sym_or2] = ACTIONS(1882), + [anon_sym_not_DASHin2] = ACTIONS(1882), + [anon_sym_has2] = ACTIONS(1882), + [anon_sym_not_DASHhas2] = ACTIONS(1882), + [anon_sym_starts_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), + [anon_sym_ends_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), + [anon_sym_EQ_EQ2] = ACTIONS(1882), + [anon_sym_BANG_EQ2] = ACTIONS(1882), + [anon_sym_LT2] = ACTIONS(1885), + [anon_sym_LT_EQ2] = ACTIONS(1882), + [anon_sym_GT_EQ2] = ACTIONS(1882), + [anon_sym_EQ_TILDE2] = ACTIONS(1882), + [anon_sym_BANG_TILDE2] = ACTIONS(1882), + [anon_sym_like2] = ACTIONS(1882), + [anon_sym_not_DASHlike2] = ACTIONS(1882), + [anon_sym_STAR_STAR2] = ACTIONS(1882), + [anon_sym_PLUS_PLUS2] = ACTIONS(1882), + [anon_sym_SLASH2] = ACTIONS(1885), + [anon_sym_mod2] = ACTIONS(1882), + [anon_sym_SLASH_SLASH2] = ACTIONS(1882), + [anon_sym_PLUS2] = ACTIONS(1885), + [anon_sym_bit_DASHshl2] = ACTIONS(1882), + [anon_sym_bit_DASHshr2] = ACTIONS(1882), + [anon_sym_bit_DASHand2] = ACTIONS(1882), + [anon_sym_bit_DASHxor2] = ACTIONS(1882), + [anon_sym_bit_DASHor2] = ACTIONS(1882), + [anon_sym_DOT2] = ACTIONS(2280), + [anon_sym_err_GT] = ACTIONS(1885), + [anon_sym_out_GT] = ACTIONS(1885), + [anon_sym_e_GT] = ACTIONS(1885), + [anon_sym_o_GT] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT] = ACTIONS(1885), + [anon_sym_err_GT_GT] = ACTIONS(1882), + [anon_sym_out_GT_GT] = ACTIONS(1882), + [anon_sym_e_GT_GT] = ACTIONS(1882), + [anon_sym_o_GT_GT] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(793)] = { + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(4349), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_entry] = STATE(4710), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(793), + [aux_sym__match_pattern_record_body_repeat1] = STATE(839), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1836), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), + }, + [STATE(794)] = { + [sym_comment] = STATE(794), + [anon_sym_in] = ACTIONS(2162), + [sym__newline] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_err_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_GT_PIPE] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), + [anon_sym_GT2] = ACTIONS(2164), + [anon_sym_DASH2] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_STAR2] = ACTIONS(2164), + [anon_sym_and2] = ACTIONS(2162), + [anon_sym_xor2] = ACTIONS(2162), + [anon_sym_or2] = ACTIONS(2162), + [anon_sym_not_DASHin2] = ACTIONS(2162), + [anon_sym_has2] = ACTIONS(2162), + [anon_sym_not_DASHhas2] = ACTIONS(2162), + [anon_sym_starts_DASHwith2] = ACTIONS(2162), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2162), + [anon_sym_ends_DASHwith2] = ACTIONS(2162), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2162), + [anon_sym_EQ_EQ2] = ACTIONS(2162), + [anon_sym_BANG_EQ2] = ACTIONS(2162), + [anon_sym_LT2] = ACTIONS(2164), + [anon_sym_LT_EQ2] = ACTIONS(2162), + [anon_sym_GT_EQ2] = ACTIONS(2162), + [anon_sym_EQ_TILDE2] = ACTIONS(2162), + [anon_sym_BANG_TILDE2] = ACTIONS(2162), + [anon_sym_like2] = ACTIONS(2162), + [anon_sym_not_DASHlike2] = ACTIONS(2162), + [anon_sym_STAR_STAR2] = ACTIONS(2162), + [anon_sym_PLUS_PLUS2] = ACTIONS(2162), + [anon_sym_SLASH2] = ACTIONS(2164), + [anon_sym_mod2] = ACTIONS(2162), + [anon_sym_SLASH_SLASH2] = ACTIONS(2162), + [anon_sym_PLUS2] = ACTIONS(2164), + [anon_sym_bit_DASHshl2] = ACTIONS(2162), + [anon_sym_bit_DASHshr2] = ACTIONS(2162), + [anon_sym_bit_DASHand2] = ACTIONS(2162), + [anon_sym_bit_DASHxor2] = ACTIONS(2162), + [anon_sym_bit_DASHor2] = ACTIONS(2162), + [anon_sym_DOT_DOT2] = ACTIONS(1618), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1620), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1620), + [anon_sym_COLON2] = ACTIONS(1715), + [anon_sym_err_GT] = ACTIONS(2168), + [anon_sym_out_GT] = ACTIONS(2168), + [anon_sym_e_GT] = ACTIONS(2168), + [anon_sym_o_GT] = ACTIONS(2168), + [anon_sym_err_PLUSout_GT] = ACTIONS(2168), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2168), + [anon_sym_o_PLUSe_GT] = ACTIONS(2168), + [anon_sym_e_PLUSo_GT] = ACTIONS(2168), + [anon_sym_err_GT_GT] = ACTIONS(2166), + [anon_sym_out_GT_GT] = ACTIONS(2166), + [anon_sym_e_GT_GT] = ACTIONS(2166), + [anon_sym_o_GT_GT] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2166), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(795)] = { + [aux_sym__repeat_newline] = STATE(1038), + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(795), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(796)] = { + [sym_comment] = STATE(796), + [ts_builtin_sym_end] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [sym__newline] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_err_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_GT_PIPE] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), + [anon_sym_GT2] = ACTIONS(1746), + [anon_sym_DASH2] = ACTIONS(1744), + [anon_sym_STAR2] = ACTIONS(1746), + [anon_sym_and2] = ACTIONS(1744), + [anon_sym_xor2] = ACTIONS(1744), + [anon_sym_or2] = ACTIONS(1744), + [anon_sym_not_DASHin2] = ACTIONS(1744), + [anon_sym_has2] = ACTIONS(1744), + [anon_sym_not_DASHhas2] = ACTIONS(1744), + [anon_sym_starts_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), + [anon_sym_ends_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), + [anon_sym_EQ_EQ2] = ACTIONS(1744), + [anon_sym_BANG_EQ2] = ACTIONS(1744), + [anon_sym_LT2] = ACTIONS(1746), + [anon_sym_LT_EQ2] = ACTIONS(1744), + [anon_sym_GT_EQ2] = ACTIONS(1744), + [anon_sym_EQ_TILDE2] = ACTIONS(1744), + [anon_sym_BANG_TILDE2] = ACTIONS(1744), + [anon_sym_like2] = ACTIONS(1744), + [anon_sym_not_DASHlike2] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1744), + [anon_sym_STAR_STAR2] = ACTIONS(1744), + [anon_sym_PLUS_PLUS2] = ACTIONS(1744), + [anon_sym_SLASH2] = ACTIONS(1746), + [anon_sym_mod2] = ACTIONS(1744), + [anon_sym_SLASH_SLASH2] = ACTIONS(1744), + [anon_sym_PLUS2] = ACTIONS(1746), + [anon_sym_bit_DASHshl2] = ACTIONS(1744), + [anon_sym_bit_DASHshr2] = ACTIONS(1744), + [anon_sym_bit_DASHand2] = ACTIONS(1744), + [anon_sym_bit_DASHxor2] = ACTIONS(1744), + [anon_sym_bit_DASHor2] = ACTIONS(1744), + [anon_sym_DOT] = ACTIONS(2331), + [aux_sym__immediate_decimal_token5] = ACTIONS(2333), + [anon_sym_err_GT] = ACTIONS(1746), + [anon_sym_out_GT] = ACTIONS(1746), + [anon_sym_e_GT] = ACTIONS(1746), + [anon_sym_o_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT] = ACTIONS(1746), + [anon_sym_err_GT_GT] = ACTIONS(1744), + [anon_sym_out_GT_GT] = ACTIONS(1744), + [anon_sym_e_GT_GT] = ACTIONS(1744), + [anon_sym_o_GT_GT] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), + [sym__unquoted_pattern] = ACTIONS(1746), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(797)] = { + [aux_sym__repeat_newline] = STATE(1039), + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(797), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(798)] = { + [aux_sym__repeat_newline] = STATE(1040), + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(798), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(799)] = { + [sym_comment] = STATE(799), + [anon_sym_in] = ACTIONS(1744), + [sym__newline] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_err_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_GT_PIPE] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1744), + [anon_sym_RPAREN] = ACTIONS(1744), + [anon_sym_GT2] = ACTIONS(1746), + [anon_sym_DASH2] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(1744), + [anon_sym_STAR2] = ACTIONS(1746), + [anon_sym_and2] = ACTIONS(1744), + [anon_sym_xor2] = ACTIONS(1744), + [anon_sym_or2] = ACTIONS(1744), + [anon_sym_not_DASHin2] = ACTIONS(1744), + [anon_sym_has2] = ACTIONS(1744), + [anon_sym_not_DASHhas2] = ACTIONS(1744), + [anon_sym_starts_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1744), + [anon_sym_ends_DASHwith2] = ACTIONS(1744), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1744), + [anon_sym_EQ_EQ2] = ACTIONS(1744), + [anon_sym_BANG_EQ2] = ACTIONS(1744), + [anon_sym_LT2] = ACTIONS(1746), + [anon_sym_LT_EQ2] = ACTIONS(1744), + [anon_sym_GT_EQ2] = ACTIONS(1744), + [anon_sym_EQ_TILDE2] = ACTIONS(1744), + [anon_sym_BANG_TILDE2] = ACTIONS(1744), + [anon_sym_like2] = ACTIONS(1744), + [anon_sym_not_DASHlike2] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1744), + [anon_sym_STAR_STAR2] = ACTIONS(1744), + [anon_sym_PLUS_PLUS2] = ACTIONS(1744), + [anon_sym_SLASH2] = ACTIONS(1746), + [anon_sym_mod2] = ACTIONS(1744), + [anon_sym_SLASH_SLASH2] = ACTIONS(1744), + [anon_sym_PLUS2] = ACTIONS(1746), + [anon_sym_bit_DASHshl2] = ACTIONS(1744), + [anon_sym_bit_DASHshr2] = ACTIONS(1744), + [anon_sym_bit_DASHand2] = ACTIONS(1744), + [anon_sym_bit_DASHxor2] = ACTIONS(1744), + [anon_sym_bit_DASHor2] = ACTIONS(1744), + [aux_sym__immediate_decimal_token5] = ACTIONS(2136), + [anon_sym_err_GT] = ACTIONS(1746), + [anon_sym_out_GT] = ACTIONS(1746), + [anon_sym_e_GT] = ACTIONS(1746), + [anon_sym_o_GT] = ACTIONS(1746), + [anon_sym_err_PLUSout_GT] = ACTIONS(1746), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1746), + [anon_sym_o_PLUSe_GT] = ACTIONS(1746), + [anon_sym_e_PLUSo_GT] = ACTIONS(1746), + [anon_sym_err_GT_GT] = ACTIONS(1744), + [anon_sym_out_GT_GT] = ACTIONS(1744), + [anon_sym_e_GT_GT] = ACTIONS(1744), + [anon_sym_o_GT_GT] = ACTIONS(1744), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1744), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1744), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1744), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1744), + [sym__unquoted_pattern] = ACTIONS(1746), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(800)] = { + [sym_comment] = STATE(800), + [anon_sym_in] = ACTIONS(1852), + [sym__newline] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_err_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_GT_PIPE] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1852), + [anon_sym_RPAREN] = ACTIONS(1852), + [anon_sym_GT2] = ACTIONS(1854), + [anon_sym_DASH2] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_STAR2] = ACTIONS(1854), + [anon_sym_and2] = ACTIONS(1852), + [anon_sym_xor2] = ACTIONS(1852), + [anon_sym_or2] = ACTIONS(1852), + [anon_sym_not_DASHin2] = ACTIONS(1852), + [anon_sym_has2] = ACTIONS(1852), + [anon_sym_not_DASHhas2] = ACTIONS(1852), + [anon_sym_starts_DASHwith2] = ACTIONS(1852), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1852), + [anon_sym_ends_DASHwith2] = ACTIONS(1852), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1852), + [anon_sym_EQ_EQ2] = ACTIONS(1852), + [anon_sym_BANG_EQ2] = ACTIONS(1852), + [anon_sym_LT2] = ACTIONS(1854), + [anon_sym_LT_EQ2] = ACTIONS(1852), + [anon_sym_GT_EQ2] = ACTIONS(1852), + [anon_sym_EQ_TILDE2] = ACTIONS(1852), + [anon_sym_BANG_TILDE2] = ACTIONS(1852), + [anon_sym_like2] = ACTIONS(1852), + [anon_sym_not_DASHlike2] = ACTIONS(1852), + [anon_sym_LPAREN2] = ACTIONS(1852), + [anon_sym_STAR_STAR2] = ACTIONS(1852), + [anon_sym_PLUS_PLUS2] = ACTIONS(1852), + [anon_sym_SLASH2] = ACTIONS(1854), + [anon_sym_mod2] = ACTIONS(1852), + [anon_sym_SLASH_SLASH2] = ACTIONS(1852), + [anon_sym_PLUS2] = ACTIONS(1854), + [anon_sym_bit_DASHshl2] = ACTIONS(1852), + [anon_sym_bit_DASHshr2] = ACTIONS(1852), + [anon_sym_bit_DASHand2] = ACTIONS(1852), + [anon_sym_bit_DASHxor2] = ACTIONS(1852), + [anon_sym_bit_DASHor2] = ACTIONS(1852), + [aux_sym__immediate_decimal_token5] = ACTIONS(2335), + [anon_sym_err_GT] = ACTIONS(1854), + [anon_sym_out_GT] = ACTIONS(1854), + [anon_sym_e_GT] = ACTIONS(1854), + [anon_sym_o_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT] = ACTIONS(1854), + [anon_sym_err_GT_GT] = ACTIONS(1852), + [anon_sym_out_GT_GT] = ACTIONS(1852), + [anon_sym_e_GT_GT] = ACTIONS(1852), + [anon_sym_o_GT_GT] = ACTIONS(1852), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1852), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1852), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1852), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1852), + [sym__unquoted_pattern] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(801)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1681), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1496), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(1413), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(965), - [sym__unquoted_with_expr] = STATE(1272), - [sym__unquoted_anonymous_prefix] = STATE(4525), + [aux_sym__repeat_newline] = STATE(1041), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(801), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [anon_sym_null] = ACTIONS(2395), - [aux_sym_cmd_identifier_token3] = ACTIONS(2397), - [aux_sym_cmd_identifier_token4] = ACTIONS(2397), - [aux_sym_cmd_identifier_token5] = ACTIONS(2397), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(802)] = { + [aux_sym__repeat_newline] = STATE(1042), + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(802), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(803)] = { + [aux_sym__repeat_newline] = STATE(1043), + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(803), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(804)] = { + [aux_sym__repeat_newline] = STATE(1044), + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(804), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(805)] = { + [aux_sym__repeat_newline] = STATE(1045), + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(805), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(806)] = { + [aux_sym__repeat_newline] = STATE(1048), + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(806), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(807)] = { + [aux_sym__repeat_newline] = STATE(1049), + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(807), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(808)] = { + [aux_sym__repeat_newline] = STATE(1051), + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(808), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(809)] = { + [aux_sym__repeat_newline] = STATE(1052), + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(809), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2327), + [anon_sym_PIPE] = ACTIONS(2327), + [anon_sym_err_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_GT_PIPE] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2327), + [anon_sym_RPAREN] = ACTIONS(2327), + [anon_sym_GT2] = ACTIONS(2329), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_LBRACE] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2329), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2327), + [anon_sym_BANG_EQ2] = ACTIONS(2327), + [anon_sym_LT2] = ACTIONS(2329), + [anon_sym_LT_EQ2] = ACTIONS(2327), + [anon_sym_GT_EQ2] = ACTIONS(2327), + [anon_sym_EQ_TILDE2] = ACTIONS(2327), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2329), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2329), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2329), + [anon_sym_out_GT] = ACTIONS(2329), + [anon_sym_e_GT] = ACTIONS(2329), + [anon_sym_o_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT] = ACTIONS(2329), + [anon_sym_err_GT_GT] = ACTIONS(2327), + [anon_sym_out_GT_GT] = ACTIONS(2327), + [anon_sym_e_GT_GT] = ACTIONS(2327), + [anon_sym_o_GT_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(810)] = { + [aux_sym__repeat_newline] = STATE(1138), + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(810), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(811)] = { + [aux_sym__repeat_newline] = STATE(1064), + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(811), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(812)] = { + [aux_sym__repeat_newline] = STATE(1066), + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(812), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(813)] = { + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(5339), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_entry] = STATE(4527), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(813), + [aux_sym_record_body_repeat1] = STATE(881), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1806), + }, + [STATE(814)] = { + [aux_sym__repeat_newline] = STATE(1068), + [sym__expr_parenthesized_immediate] = STATE(4802), + [sym_comment] = STATE(814), + [anon_sym_in] = ACTIONS(2337), + [sym__newline] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_err_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_GT_PIPE] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [anon_sym_err_GT_GT] = ACTIONS(2337), + [anon_sym_out_GT_GT] = ACTIONS(2337), + [anon_sym_e_GT_GT] = ACTIONS(2337), + [anon_sym_o_GT_GT] = ACTIONS(2337), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(815)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1694), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1126), + [sym__unquoted_with_expr] = STATE(1327), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(815), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2343), + [aux_sym_cmd_identifier_token3] = ACTIONS(2345), + [aux_sym_cmd_identifier_token4] = ACTIONS(2345), + [aux_sym_cmd_identifier_token5] = ACTIONS(2345), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2399), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2401), - [anon_sym_DOT_DOT_LT] = ACTIONS(2401), - [aux_sym__val_number_decimal_token1] = ACTIONS(2403), - [aux_sym__val_number_decimal_token2] = ACTIONS(2405), - [aux_sym__val_number_decimal_token3] = ACTIONS(2407), - [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [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(2409), + [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(2256), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(802)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1685), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1496), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(1413), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1014), - [sym__unquoted_with_expr] = STATE(1276), - [sym__unquoted_anonymous_prefix] = STATE(4525), - [sym_comment] = STATE(802), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [anon_sym_null] = ACTIONS(2395), - [aux_sym_cmd_identifier_token3] = ACTIONS(2397), - [aux_sym_cmd_identifier_token4] = ACTIONS(2397), - [aux_sym_cmd_identifier_token5] = ACTIONS(2397), + [STATE(816)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1695), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1128), + [sym__unquoted_with_expr] = STATE(1331), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(816), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2343), + [aux_sym_cmd_identifier_token3] = ACTIONS(2345), + [aux_sym_cmd_identifier_token4] = ACTIONS(2345), + [aux_sym_cmd_identifier_token5] = ACTIONS(2345), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2399), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2401), - [anon_sym_DOT_DOT_LT] = ACTIONS(2401), - [aux_sym__val_number_decimal_token1] = ACTIONS(2403), - [aux_sym__val_number_decimal_token2] = ACTIONS(2405), - [aux_sym__val_number_decimal_token3] = ACTIONS(2407), - [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [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(2409), + [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(2256), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(803)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1686), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1496), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(1413), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1018), - [sym__unquoted_with_expr] = STATE(1279), - [sym__unquoted_anonymous_prefix] = STATE(4525), - [sym_comment] = STATE(803), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [anon_sym_null] = ACTIONS(2395), - [aux_sym_cmd_identifier_token3] = ACTIONS(2397), - [aux_sym_cmd_identifier_token4] = ACTIONS(2397), - [aux_sym_cmd_identifier_token5] = ACTIONS(2397), + [STATE(817)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1696), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), + [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(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(1026), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2399), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2401), - [anon_sym_DOT_DOT_LT] = ACTIONS(2401), - [aux_sym__val_number_decimal_token1] = ACTIONS(2403), - [aux_sym__val_number_decimal_token2] = ACTIONS(2405), - [aux_sym__val_number_decimal_token3] = ACTIONS(2407), - [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [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(2409), + [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(2256), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(804)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1684), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1496), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(1413), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1021), - [sym__unquoted_with_expr] = STATE(1282), - [sym__unquoted_anonymous_prefix] = STATE(4525), - [sym_comment] = STATE(804), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [anon_sym_null] = ACTIONS(2395), - [aux_sym_cmd_identifier_token3] = ACTIONS(2397), - [aux_sym_cmd_identifier_token4] = ACTIONS(2397), - [aux_sym_cmd_identifier_token5] = ACTIONS(2397), + [STATE(818)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1697), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), + [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(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(1026), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2399), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2401), - [anon_sym_DOT_DOT_LT] = ACTIONS(2401), - [aux_sym__val_number_decimal_token1] = ACTIONS(2403), - [aux_sym__val_number_decimal_token2] = ACTIONS(2405), - [aux_sym__val_number_decimal_token3] = ACTIONS(2407), - [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [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(2409), + [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(2256), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(805)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1688), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1496), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(1413), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1025), - [sym__unquoted_with_expr] = STATE(1285), - [sym__unquoted_anonymous_prefix] = STATE(4525), - [sym_comment] = STATE(805), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [anon_sym_null] = ACTIONS(2395), - [aux_sym_cmd_identifier_token3] = ACTIONS(2397), - [aux_sym_cmd_identifier_token4] = ACTIONS(2397), - [aux_sym_cmd_identifier_token5] = ACTIONS(2397), + [STATE(819)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1698), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1136), + [sym__unquoted_with_expr] = STATE(1351), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_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(1026), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2399), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2401), - [anon_sym_DOT_DOT_LT] = ACTIONS(2401), - [aux_sym__val_number_decimal_token1] = ACTIONS(2403), - [aux_sym__val_number_decimal_token2] = ACTIONS(2405), - [aux_sym__val_number_decimal_token3] = ACTIONS(2407), - [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [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(2409), + [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(2256), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(806)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1679), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1496), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(1413), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1029), - [sym__unquoted_with_expr] = STATE(1304), - [sym__unquoted_anonymous_prefix] = STATE(4525), - [sym_comment] = STATE(806), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [anon_sym_null] = ACTIONS(2395), - [aux_sym_cmd_identifier_token3] = ACTIONS(2397), - [aux_sym_cmd_identifier_token4] = ACTIONS(2397), - [aux_sym_cmd_identifier_token5] = ACTIONS(2397), + [STATE(820)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1699), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1030), + [sym__unquoted_with_expr] = STATE(1344), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [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(1026), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2399), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2401), - [anon_sym_DOT_DOT_LT] = ACTIONS(2401), - [aux_sym__val_number_decimal_token1] = ACTIONS(2403), - [aux_sym__val_number_decimal_token2] = ACTIONS(2405), - [aux_sym__val_number_decimal_token3] = ACTIONS(2407), - [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [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(2409), + [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(2256), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(807)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1690), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1496), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(1413), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1030), - [sym__unquoted_with_expr] = STATE(1310), - [sym__unquoted_anonymous_prefix] = STATE(4525), - [sym_comment] = STATE(807), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [anon_sym_null] = ACTIONS(2395), - [aux_sym_cmd_identifier_token3] = ACTIONS(2397), - [aux_sym_cmd_identifier_token4] = ACTIONS(2397), - [aux_sym_cmd_identifier_token5] = ACTIONS(2397), + [STATE(821)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1700), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(981), + [sym__unquoted_with_expr] = STATE(1314), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [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(1026), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2399), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2401), - [anon_sym_DOT_DOT_LT] = ACTIONS(2401), - [aux_sym__val_number_decimal_token1] = ACTIONS(2403), - [aux_sym__val_number_decimal_token2] = ACTIONS(2405), - [aux_sym__val_number_decimal_token3] = ACTIONS(2407), - [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [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(2409), + [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(2256), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(808)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1691), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1496), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(1413), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1031), - [sym__unquoted_with_expr] = STATE(1312), - [sym__unquoted_anonymous_prefix] = STATE(4525), - [sym_comment] = STATE(808), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [anon_sym_null] = ACTIONS(2395), - [aux_sym_cmd_identifier_token3] = ACTIONS(2397), - [aux_sym_cmd_identifier_token4] = ACTIONS(2397), - [aux_sym_cmd_identifier_token5] = ACTIONS(2397), + [STATE(822)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1701), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1006), + [sym__unquoted_with_expr] = STATE(1292), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [sym_comment] = STATE(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(1026), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2399), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2401), - [anon_sym_DOT_DOT_LT] = ACTIONS(2401), - [aux_sym__val_number_decimal_token1] = ACTIONS(2403), - [aux_sym__val_number_decimal_token2] = ACTIONS(2405), - [aux_sym__val_number_decimal_token3] = ACTIONS(2407), - [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [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(2409), + [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(2256), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(809)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1313), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1496), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(1413), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1032), - [sym__unquoted_with_expr] = STATE(1267), - [sym__unquoted_anonymous_prefix] = STATE(4525), - [sym_comment] = STATE(809), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [anon_sym_null] = ACTIONS(2395), - [aux_sym_cmd_identifier_token3] = ACTIONS(2397), - [aux_sym_cmd_identifier_token4] = ACTIONS(2397), - [aux_sym_cmd_identifier_token5] = ACTIONS(2397), + [STATE(823)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1291), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1108), + [sym__unquoted_with_expr] = STATE(1305), + [sym__unquoted_anonymous_prefix] = STATE(4744), + [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(1026), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2399), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2401), - [anon_sym_DOT_DOT_LT] = ACTIONS(2401), - [aux_sym__val_number_decimal_token1] = ACTIONS(2403), - [aux_sym__val_number_decimal_token2] = ACTIONS(2405), - [aux_sym__val_number_decimal_token3] = ACTIONS(2407), - [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [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(2409), + [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(2256), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(810)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1692), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1496), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(1413), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1051), - [sym__unquoted_with_expr] = STATE(1271), - [sym__unquoted_anonymous_prefix] = STATE(4525), - [sym_comment] = STATE(810), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [anon_sym_null] = ACTIONS(2395), - [aux_sym_cmd_identifier_token3] = ACTIONS(2397), - [aux_sym_cmd_identifier_token4] = ACTIONS(2397), - [aux_sym_cmd_identifier_token5] = ACTIONS(2397), + [STATE(824)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1702), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), + [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(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(1026), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2399), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2401), - [anon_sym_DOT_DOT_LT] = ACTIONS(2401), - [aux_sym__val_number_decimal_token1] = ACTIONS(2403), - [aux_sym__val_number_decimal_token2] = ACTIONS(2405), - [aux_sym__val_number_decimal_token3] = ACTIONS(2407), - [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [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(2409), + [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(2256), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(811)] = { - [aux_sym__repeat_newline] = STATE(1033), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(811), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(812)] = { - [aux_sym__repeat_newline] = STATE(1034), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(812), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(813)] = { - [aux_sym__repeat_newline] = STATE(1035), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(813), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(814)] = { - [aux_sym__repeat_newline] = STATE(1036), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(814), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(815)] = { - [aux_sym__repeat_newline] = STATE(1037), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(815), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(816)] = { - [aux_sym__repeat_newline] = STATE(1038), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(816), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(817)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1693), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1496), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(1413), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1058), - [sym__unquoted_with_expr] = STATE(1275), - [sym__unquoted_anonymous_prefix] = STATE(4525), - [sym_comment] = STATE(817), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [anon_sym_null] = ACTIONS(2395), - [aux_sym_cmd_identifier_token3] = ACTIONS(2397), - [aux_sym_cmd_identifier_token4] = ACTIONS(2397), - [aux_sym_cmd_identifier_token5] = ACTIONS(2397), + [STATE(825)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1703), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), + [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(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(1026), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2399), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2401), - [anon_sym_DOT_DOT_LT] = ACTIONS(2401), - [aux_sym__val_number_decimal_token1] = ACTIONS(2403), - [aux_sym__val_number_decimal_token2] = ACTIONS(2405), - [aux_sym__val_number_decimal_token3] = ACTIONS(2407), - [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [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(2409), + [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(2256), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(818)] = { - [aux_sym__repeat_newline] = STATE(1039), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(818), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(819)] = { - [aux_sym__repeat_newline] = STATE(1040), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(819), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(820)] = { - [aux_sym__repeat_newline] = STATE(1042), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(820), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(821)] = { - [aux_sym__repeat_newline] = STATE(1043), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(821), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(822)] = { - [aux_sym__repeat_newline] = STATE(1044), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(822), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(823)] = { - [aux_sym__repeat_newline] = STATE(1045), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(823), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(824)] = { - [aux_sym__repeat_newline] = STATE(1046), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(824), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(825)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1694), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1496), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(1413), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1065), - [sym__unquoted_with_expr] = STATE(1281), - [sym__unquoted_anonymous_prefix] = STATE(4525), - [sym_comment] = STATE(825), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [anon_sym_null] = ACTIONS(2395), - [aux_sym_cmd_identifier_token3] = ACTIONS(2397), - [aux_sym_cmd_identifier_token4] = ACTIONS(2397), - [aux_sym_cmd_identifier_token5] = ACTIONS(2397), + [STATE(826)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1705), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), + [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(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(1026), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2399), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2401), - [anon_sym_DOT_DOT_LT] = ACTIONS(2401), - [aux_sym__val_number_decimal_token1] = ACTIONS(2403), - [aux_sym__val_number_decimal_token2] = ACTIONS(2405), - [aux_sym__val_number_decimal_token3] = ACTIONS(2407), - [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [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(2409), + [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(2256), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(826)] = { - [aux_sym__repeat_newline] = STATE(1048), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(826), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(827)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1695), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(1496), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(1413), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1073), - [sym__unquoted_with_expr] = STATE(1263), - [sym__unquoted_anonymous_prefix] = STATE(4525), + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1706), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1511), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1019), + [sym__unquoted_with_expr] = STATE(1297), + [sym__unquoted_anonymous_prefix] = STATE(4744), [sym_comment] = STATE(827), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [anon_sym_null] = ACTIONS(2395), - [aux_sym_cmd_identifier_token3] = ACTIONS(2397), - [aux_sym_cmd_identifier_token4] = ACTIONS(2397), - [aux_sym_cmd_identifier_token5] = ACTIONS(2397), + [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(1026), + [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2399), + [anon_sym_DOT_DOT] = ACTIONS(2347), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2401), - [anon_sym_DOT_DOT_LT] = ACTIONS(2401), - [aux_sym__val_number_decimal_token1] = ACTIONS(2403), - [aux_sym__val_number_decimal_token2] = ACTIONS(2405), - [aux_sym__val_number_decimal_token3] = ACTIONS(2407), - [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [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(2409), + [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(2256), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, [STATE(828)] = { - [aux_sym__repeat_newline] = STATE(1081), - [sym__expr_parenthesized_immediate] = STATE(4713), + [aux_sym__repeat_newline] = STATE(1070), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(828), - [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_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_LPAREN2] = ACTIONS(1766), - [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_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_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(1050), - [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_cell_path] = STATE(1338), + [sym_path] = STATE(720), [sym_comment] = STATE(829), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [aux_sym__where_predicate_lhs_repeat1] = STATE(622), + [ts_builtin_sym_end] = ACTIONS(1900), + [anon_sym_in] = ACTIONS(1900), + [sym__newline] = ACTIONS(1900), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_err_GT_PIPE] = ACTIONS(1900), + [anon_sym_out_GT_PIPE] = ACTIONS(1900), + [anon_sym_e_GT_PIPE] = ACTIONS(1900), + [anon_sym_o_GT_PIPE] = ACTIONS(1900), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1900), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1900), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1900), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1900), + [anon_sym_GT2] = ACTIONS(1902), + [anon_sym_DASH2] = ACTIONS(1900), + [anon_sym_STAR2] = ACTIONS(1902), + [anon_sym_and2] = ACTIONS(1900), + [anon_sym_xor2] = ACTIONS(1900), + [anon_sym_or2] = ACTIONS(1900), + [anon_sym_not_DASHin2] = ACTIONS(1900), + [anon_sym_has2] = ACTIONS(1900), + [anon_sym_not_DASHhas2] = ACTIONS(1900), + [anon_sym_starts_DASHwith2] = ACTIONS(1900), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1900), + [anon_sym_ends_DASHwith2] = ACTIONS(1900), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1900), + [anon_sym_EQ_EQ2] = ACTIONS(1900), + [anon_sym_BANG_EQ2] = ACTIONS(1900), + [anon_sym_LT2] = ACTIONS(1902), + [anon_sym_LT_EQ2] = ACTIONS(1900), + [anon_sym_GT_EQ2] = ACTIONS(1900), + [anon_sym_EQ_TILDE2] = ACTIONS(1900), + [anon_sym_BANG_TILDE2] = ACTIONS(1900), + [anon_sym_like2] = ACTIONS(1900), + [anon_sym_not_DASHlike2] = ACTIONS(1900), + [anon_sym_STAR_STAR2] = ACTIONS(1900), + [anon_sym_PLUS_PLUS2] = ACTIONS(1900), + [anon_sym_SLASH2] = ACTIONS(1902), + [anon_sym_mod2] = ACTIONS(1900), + [anon_sym_SLASH_SLASH2] = ACTIONS(1900), + [anon_sym_PLUS2] = ACTIONS(1902), + [anon_sym_bit_DASHshl2] = ACTIONS(1900), + [anon_sym_bit_DASHshr2] = ACTIONS(1900), + [anon_sym_bit_DASHand2] = ACTIONS(1900), + [anon_sym_bit_DASHxor2] = ACTIONS(1900), + [anon_sym_bit_DASHor2] = ACTIONS(1900), + [anon_sym_DOT2] = ACTIONS(2280), + [anon_sym_err_GT] = ACTIONS(1902), + [anon_sym_out_GT] = ACTIONS(1902), + [anon_sym_e_GT] = ACTIONS(1902), + [anon_sym_o_GT] = ACTIONS(1902), + [anon_sym_err_PLUSout_GT] = ACTIONS(1902), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1902), + [anon_sym_o_PLUSe_GT] = ACTIONS(1902), + [anon_sym_e_PLUSo_GT] = ACTIONS(1902), + [anon_sym_err_GT_GT] = ACTIONS(1900), + [anon_sym_out_GT_GT] = ACTIONS(1900), + [anon_sym_e_GT_GT] = ACTIONS(1900), + [anon_sym_o_GT_GT] = ACTIONS(1900), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1900), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1900), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1900), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1900), [anon_sym_POUND] = ACTIONS(3), }, [STATE(830)] = { - [aux_sym__repeat_newline] = STATE(1053), - [sym__expr_parenthesized_immediate] = STATE(4713), + [aux_sym__repeat_newline] = STATE(1073), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(830), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [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)] = { - [sym_cell_path] = STATE(1307), - [sym_path] = STATE(791), + [aux_sym__repeat_newline] = STATE(1076), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(831), - [aux_sym__where_predicate_lhs_repeat1] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(1880), - [anon_sym_in] = ACTIONS(1880), - [sym__newline] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1880), - [anon_sym_err_GT_PIPE] = ACTIONS(1880), - [anon_sym_out_GT_PIPE] = ACTIONS(1880), - [anon_sym_e_GT_PIPE] = ACTIONS(1880), - [anon_sym_o_GT_PIPE] = ACTIONS(1880), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1880), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1880), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1880), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1880), - [anon_sym_GT2] = ACTIONS(1882), - [anon_sym_DASH2] = ACTIONS(1880), - [anon_sym_STAR2] = ACTIONS(1882), - [anon_sym_and2] = ACTIONS(1880), - [anon_sym_xor2] = ACTIONS(1880), - [anon_sym_or2] = ACTIONS(1880), - [anon_sym_not_DASHin2] = ACTIONS(1880), - [anon_sym_has2] = ACTIONS(1880), - [anon_sym_not_DASHhas2] = ACTIONS(1880), - [anon_sym_starts_DASHwith2] = ACTIONS(1880), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1880), - [anon_sym_ends_DASHwith2] = ACTIONS(1880), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1880), - [anon_sym_EQ_EQ2] = ACTIONS(1880), - [anon_sym_BANG_EQ2] = ACTIONS(1880), - [anon_sym_LT2] = ACTIONS(1882), - [anon_sym_LT_EQ2] = ACTIONS(1880), - [anon_sym_GT_EQ2] = ACTIONS(1880), - [anon_sym_EQ_TILDE2] = ACTIONS(1880), - [anon_sym_BANG_TILDE2] = ACTIONS(1880), - [anon_sym_like2] = ACTIONS(1880), - [anon_sym_not_DASHlike2] = ACTIONS(1880), - [anon_sym_STAR_STAR2] = ACTIONS(1880), - [anon_sym_PLUS_PLUS2] = ACTIONS(1880), - [anon_sym_SLASH2] = ACTIONS(1882), - [anon_sym_mod2] = ACTIONS(1880), - [anon_sym_SLASH_SLASH2] = ACTIONS(1880), - [anon_sym_PLUS2] = ACTIONS(1882), - [anon_sym_bit_DASHshl2] = ACTIONS(1880), - [anon_sym_bit_DASHshr2] = ACTIONS(1880), - [anon_sym_bit_DASHand2] = ACTIONS(1880), - [anon_sym_bit_DASHxor2] = ACTIONS(1880), - [anon_sym_bit_DASHor2] = ACTIONS(1880), - [anon_sym_DOT2] = ACTIONS(2391), - [anon_sym_err_GT] = ACTIONS(1882), - [anon_sym_out_GT] = ACTIONS(1882), - [anon_sym_e_GT] = ACTIONS(1882), - [anon_sym_o_GT] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT] = ACTIONS(1882), - [anon_sym_err_GT_GT] = ACTIONS(1880), - [anon_sym_out_GT_GT] = ACTIONS(1880), - [anon_sym_e_GT_GT] = ACTIONS(1880), - [anon_sym_o_GT_GT] = ACTIONS(1880), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1880), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1880), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1880), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1880), + [anon_sym_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(1055), - [sym__expr_parenthesized_immediate] = STATE(4713), + [aux_sym__repeat_newline] = STATE(1078), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(832), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [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)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1268), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1051), - [sym__unquoted_with_expr] = STATE(1271), - [sym__unquoted_anonymous_prefix] = STATE(4525), + [aux_sym__repeat_newline] = STATE(1082), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(833), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2240), - [aux_sym_cmd_identifier_token3] = ACTIONS(2242), - [aux_sym_cmd_identifier_token4] = ACTIONS(2242), - [aux_sym_cmd_identifier_token5] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2244), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), - [anon_sym_DOT_DOT_LT] = ACTIONS(2246), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2250), - [aux_sym__val_number_decimal_token3] = ACTIONS(2252), - [aux_sym__val_number_decimal_token4] = ACTIONS(2252), - [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(2254), - [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(2256), + [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), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(834)] = { - [aux_sym__repeat_newline] = STATE(1077), - [sym__expr_parenthesized_immediate] = STATE(4713), + [aux_sym__repeat_newline] = STATE(1085), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(834), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [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)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2146), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(928), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [aux_sym__repeat_newline] = STATE(1087), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(835), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2052), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(836)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1636), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(928), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [aux_sym__repeat_newline] = STATE(1089), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(836), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1784), + [aux_sym_cmd_identifier_token4] = ACTIONS(1784), + [aux_sym_cmd_identifier_token5] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1836), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2072), - [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(1924), + [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(837)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1637), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(710), - [sym__unquoted_with_expr] = STATE(946), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(837), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [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(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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(838)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1638), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(962), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(838), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(839)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1639), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(691), - [sym__unquoted_with_expr] = STATE(907), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(839), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(840)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1640), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(674), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(840), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(841)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1641), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(676), - [sym__unquoted_with_expr] = STATE(920), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(841), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(842)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1642), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(924), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(842), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(843)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1643), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(678), - [sym__unquoted_with_expr] = STATE(929), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(843), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(844)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(927), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(897), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(844), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(845)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1644), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(899), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(845), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(846)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1645), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(684), - [sym__unquoted_with_expr] = STATE(905), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(846), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(847)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1646), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(685), - [sym__unquoted_with_expr] = STATE(908), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(847), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(848)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(1647), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1484), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1407), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(912), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(848), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [anon_sym_null] = ACTIONS(2058), - [aux_sym_cmd_identifier_token3] = ACTIONS(2060), - [aux_sym_cmd_identifier_token4] = ACTIONS(2060), - [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2062), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), - [anon_sym_DOT_DOT_LT] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2066), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), + [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(2072), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(849)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2147), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(710), - [sym__unquoted_with_expr] = STATE(946), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(849), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(850)] = { - [sym_cmd_identifier] = STATE(4141), - [sym_expr_parenthesized] = STATE(5138), - [sym__spread_parenthesized] = STATE(4677), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(5138), - [sym_val_number] = STATE(5138), - [sym__val_number_decimal] = STATE(1947), - [sym__val_number] = STATE(700), - [sym_val_string] = STATE(5138), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_interpolated] = STATE(5138), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym__spread_record] = STATE(4677), - [sym_record_entry] = STATE(4470), - [sym__record_key] = STATE(4944), - [sym_comment] = STATE(850), - [aux_sym_record_body_repeat1] = STATE(874), - [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(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1780), - [aux_sym_cmd_identifier_token4] = ACTIONS(1780), - [aux_sym_cmd_identifier_token5] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1804), - [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(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), - [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(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), - [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(1802), - }, - [STATE(851)] = { - [sym_comment] = STATE(851), - [anon_sym_in] = ACTIONS(2415), - [sym__newline] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(2415), - [anon_sym_PIPE] = ACTIONS(2415), - [anon_sym_err_GT_PIPE] = ACTIONS(2415), - [anon_sym_out_GT_PIPE] = ACTIONS(2415), - [anon_sym_e_GT_PIPE] = ACTIONS(2415), - [anon_sym_o_GT_PIPE] = ACTIONS(2415), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2415), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2415), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2415), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2415), - [anon_sym_RPAREN] = ACTIONS(2415), - [anon_sym_GT2] = ACTIONS(2417), - [anon_sym_DASH2] = ACTIONS(2415), - [anon_sym_LBRACE] = ACTIONS(2415), - [anon_sym_STAR2] = ACTIONS(2417), - [anon_sym_and2] = ACTIONS(2415), - [anon_sym_xor2] = ACTIONS(2415), - [anon_sym_or2] = ACTIONS(2415), - [anon_sym_not_DASHin2] = ACTIONS(2415), - [anon_sym_has2] = ACTIONS(2415), - [anon_sym_not_DASHhas2] = ACTIONS(2415), - [anon_sym_starts_DASHwith2] = ACTIONS(2415), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2415), - [anon_sym_ends_DASHwith2] = ACTIONS(2415), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2415), - [anon_sym_EQ_EQ2] = ACTIONS(2415), - [anon_sym_BANG_EQ2] = ACTIONS(2415), - [anon_sym_LT2] = ACTIONS(2417), - [anon_sym_LT_EQ2] = ACTIONS(2415), - [anon_sym_GT_EQ2] = ACTIONS(2415), - [anon_sym_EQ_TILDE2] = ACTIONS(2415), - [anon_sym_BANG_TILDE2] = ACTIONS(2415), - [anon_sym_like2] = ACTIONS(2415), - [anon_sym_not_DASHlike2] = ACTIONS(2415), - [anon_sym_STAR_STAR2] = ACTIONS(2415), - [anon_sym_PLUS_PLUS2] = ACTIONS(2415), - [anon_sym_SLASH2] = ACTIONS(2417), - [anon_sym_mod2] = ACTIONS(2415), - [anon_sym_SLASH_SLASH2] = ACTIONS(2415), - [anon_sym_PLUS2] = ACTIONS(2417), - [anon_sym_bit_DASHshl2] = ACTIONS(2415), - [anon_sym_bit_DASHshr2] = ACTIONS(2415), - [anon_sym_bit_DASHand2] = ACTIONS(2415), - [anon_sym_bit_DASHxor2] = ACTIONS(2415), - [anon_sym_bit_DASHor2] = ACTIONS(2415), - [anon_sym_DOT_DOT2] = ACTIONS(1633), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), - [anon_sym_err_GT] = ACTIONS(2417), - [anon_sym_out_GT] = ACTIONS(2417), - [anon_sym_e_GT] = ACTIONS(2417), - [anon_sym_o_GT] = ACTIONS(2417), - [anon_sym_err_PLUSout_GT] = ACTIONS(2417), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2417), - [anon_sym_o_PLUSe_GT] = ACTIONS(2417), - [anon_sym_e_PLUSo_GT] = ACTIONS(2417), - [anon_sym_err_GT_GT] = ACTIONS(2415), - [anon_sym_out_GT_GT] = ACTIONS(2415), - [anon_sym_e_GT_GT] = ACTIONS(2415), - [anon_sym_o_GT_GT] = ACTIONS(2415), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2415), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2415), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2415), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2415), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(852)] = { - [aux_sym__repeat_newline] = STATE(1125), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(852), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(853)] = { - [aux_sym__repeat_newline] = STATE(1128), - [sym__expr_parenthesized_immediate] = STATE(4713), + [aux_sym__repeat_newline] = STATE(1094), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(853), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_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(900), - [aux_sym__pipe_separator] = STATE(765), + [aux_sym__repeat_newline] = STATE(1095), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(854), - [anon_sym_export] = ACTIONS(2423), - [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(2423), - [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(2423), - [anon_sym_true] = ACTIONS(2425), - [anon_sym_false] = ACTIONS(2425), - [anon_sym_null] = ACTIONS(2425), - [aux_sym_cmd_identifier_token3] = ACTIONS(2425), - [aux_sym_cmd_identifier_token4] = ACTIONS(2425), - [aux_sym_cmd_identifier_token5] = ACTIONS(2425), - [sym__newline] = ACTIONS(2427), - [anon_sym_PIPE] = ACTIONS(2377), - [anon_sym_err_GT_PIPE] = ACTIONS(2377), - [anon_sym_out_GT_PIPE] = ACTIONS(2377), - [anon_sym_e_GT_PIPE] = ACTIONS(2377), - [anon_sym_o_GT_PIPE] = ACTIONS(2377), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2377), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2377), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2377), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_LPAREN] = ACTIONS(2425), - [anon_sym_DOLLAR] = ACTIONS(2423), - [anon_sym_DASH2] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2425), - [anon_sym_DOT_DOT] = ACTIONS(2423), - [anon_sym_where] = ACTIONS(2425), - [aux_sym_expr_unary_token1] = ACTIONS(2425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2425), - [anon_sym_DOT_DOT_LT] = ACTIONS(2425), - [aux_sym__val_number_decimal_token1] = ACTIONS(2423), - [aux_sym__val_number_decimal_token2] = ACTIONS(2425), - [aux_sym__val_number_decimal_token3] = ACTIONS(2425), - [aux_sym__val_number_decimal_token4] = ACTIONS(2425), - [aux_sym__val_number_token1] = ACTIONS(2425), - [aux_sym__val_number_token2] = ACTIONS(2425), - [aux_sym__val_number_token3] = ACTIONS(2425), - [anon_sym_0b] = ACTIONS(2423), - [anon_sym_0o] = ACTIONS(2423), - [anon_sym_0x] = ACTIONS(2423), - [sym_val_date] = ACTIONS(2425), - [anon_sym_DQUOTE] = ACTIONS(2425), - [anon_sym_SQUOTE] = ACTIONS(2425), - [anon_sym_BQUOTE] = ACTIONS(2425), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2425), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2425), - [anon_sym_CARET] = ACTIONS(2425), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2425), + [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(967), - [sym__expr_parenthesized_immediate] = STATE(4713), + [aux_sym__repeat_newline] = STATE(1096), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(855), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_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(969), - [sym__expr_parenthesized_immediate] = STATE(4713), + [aux_sym__repeat_newline] = STATE(1097), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(856), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_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)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1273), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1058), - [sym__unquoted_with_expr] = STATE(1275), - [sym__unquoted_anonymous_prefix] = STATE(4525), + [aux_sym__repeat_newline] = STATE(1098), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(857), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2240), - [aux_sym_cmd_identifier_token3] = ACTIONS(2242), - [aux_sym_cmd_identifier_token4] = ACTIONS(2242), - [aux_sym_cmd_identifier_token5] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2244), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), - [anon_sym_DOT_DOT_LT] = ACTIONS(2246), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2250), - [aux_sym__val_number_decimal_token3] = ACTIONS(2252), - [aux_sym__val_number_decimal_token4] = ACTIONS(2252), - [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(2254), - [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(2256), + [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(105), }, [STATE(858)] = { - [aux_sym__repeat_newline] = STATE(975), - [sym__expr_parenthesized_immediate] = STATE(4713), + [aux_sym__repeat_newline] = STATE(1099), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(858), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_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)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2148), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(962), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [aux_sym__repeat_newline] = STATE(1100), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(859), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2052), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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(860)] = { - [aux_sym__repeat_newline] = STATE(978), - [sym__expr_parenthesized_immediate] = STATE(4713), + [aux_sym__repeat_newline] = STATE(1101), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(860), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_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(1082), - [sym__expr_parenthesized_immediate] = STATE(4713), + [aux_sym__repeat_newline] = STATE(1103), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(861), - [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_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_LPAREN2] = ACTIONS(1766), - [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_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_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(984), - [sym__expr_parenthesized_immediate] = STATE(4713), + [aux_sym__repeat_newline] = STATE(1104), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(862), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_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)] = { - [sym_expr_unary] = STATE(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1278), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1065), - [sym__unquoted_with_expr] = STATE(1281), - [sym__unquoted_anonymous_prefix] = STATE(4525), + [aux_sym__repeat_newline] = STATE(1105), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(863), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2240), - [aux_sym_cmd_identifier_token3] = ACTIONS(2242), - [aux_sym_cmd_identifier_token4] = ACTIONS(2242), - [aux_sym_cmd_identifier_token5] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2244), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), - [anon_sym_DOT_DOT_LT] = ACTIONS(2246), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2250), - [aux_sym__val_number_decimal_token3] = ACTIONS(2252), - [aux_sym__val_number_decimal_token4] = ACTIONS(2252), - [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(2254), - [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(2256), + [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(105), }, [STATE(864)] = { - [sym_cell_path] = STATE(1335), - [sym_path] = STATE(791), + [aux_sym__repeat_newline] = STATE(1106), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(864), - [aux_sym__where_predicate_lhs_repeat1] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [sym__newline] = ACTIONS(1862), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_err_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_GT_PIPE] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1862), - [anon_sym_GT2] = ACTIONS(1865), - [anon_sym_DASH2] = ACTIONS(1862), - [anon_sym_STAR2] = ACTIONS(1865), - [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(1865), - [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(1865), - [anon_sym_mod2] = ACTIONS(1862), - [anon_sym_SLASH_SLASH2] = ACTIONS(1862), - [anon_sym_PLUS2] = ACTIONS(1865), - [anon_sym_bit_DASHshl2] = ACTIONS(1862), - [anon_sym_bit_DASHshr2] = ACTIONS(1862), - [anon_sym_bit_DASHand2] = ACTIONS(1862), - [anon_sym_bit_DASHxor2] = ACTIONS(1862), - [anon_sym_bit_DASHor2] = ACTIONS(1862), - [anon_sym_DOT2] = ACTIONS(2391), - [anon_sym_err_GT] = ACTIONS(1865), - [anon_sym_out_GT] = ACTIONS(1865), - [anon_sym_e_GT] = ACTIONS(1865), - [anon_sym_o_GT] = ACTIONS(1865), - [anon_sym_err_PLUSout_GT] = ACTIONS(1865), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1865), - [anon_sym_o_PLUSe_GT] = ACTIONS(1865), - [anon_sym_e_PLUSo_GT] = ACTIONS(1865), - [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_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(1269), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_binary] = STATE(1269), - [sym__expr_binary_expression] = STATE(1284), - [sym_expr_parenthesized] = STATE(947), - [sym_val_range] = STATE(1269), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(1269), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(974), - [sym_val_variable] = STATE(931), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(464), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(1073), - [sym__unquoted_with_expr] = STATE(1263), - [sym__unquoted_anonymous_prefix] = STATE(4525), + [aux_sym__repeat_newline] = STATE(1107), + [sym__expr_parenthesized_immediate] = STATE(4802), [sym_comment] = STATE(865), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2240), - [aux_sym_cmd_identifier_token3] = ACTIONS(2242), - [aux_sym_cmd_identifier_token4] = ACTIONS(2242), - [aux_sym_cmd_identifier_token5] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2244), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), - [anon_sym_DOT_DOT_LT] = ACTIONS(2246), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2250), - [aux_sym__val_number_decimal_token3] = ACTIONS(2252), - [aux_sym__val_number_decimal_token4] = ACTIONS(2252), - [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(2254), - [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(2256), + [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(105), }, [STATE(866)] = { - [aux_sym__repeat_newline] = STATE(986), - [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_cell_path] = STATE(1307), + [sym_path] = STATE(720), [sym_comment] = STATE(866), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [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), }, [STATE(867)] = { - [sym_cell_path] = STATE(1327), - [sym_path] = STATE(791), + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(5339), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_entry] = STATE(4695), + [sym__record_key] = STATE(5341), [sym_comment] = STATE(867), - [aux_sym__where_predicate_lhs_repeat1] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(1856), - [anon_sym_in] = ACTIONS(1856), - [sym__newline] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_PIPE] = ACTIONS(1856), - [anon_sym_err_GT_PIPE] = ACTIONS(1856), - [anon_sym_out_GT_PIPE] = ACTIONS(1856), - [anon_sym_e_GT_PIPE] = ACTIONS(1856), - [anon_sym_o_GT_PIPE] = ACTIONS(1856), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), - [anon_sym_GT2] = ACTIONS(1858), - [anon_sym_DASH2] = ACTIONS(1856), - [anon_sym_STAR2] = ACTIONS(1858), - [anon_sym_and2] = ACTIONS(1856), - [anon_sym_xor2] = ACTIONS(1856), - [anon_sym_or2] = ACTIONS(1856), - [anon_sym_not_DASHin2] = ACTIONS(1856), - [anon_sym_has2] = ACTIONS(1856), - [anon_sym_not_DASHhas2] = ACTIONS(1856), - [anon_sym_starts_DASHwith2] = ACTIONS(1856), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), - [anon_sym_ends_DASHwith2] = ACTIONS(1856), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), - [anon_sym_EQ_EQ2] = ACTIONS(1856), - [anon_sym_BANG_EQ2] = ACTIONS(1856), - [anon_sym_LT2] = ACTIONS(1858), - [anon_sym_LT_EQ2] = ACTIONS(1856), - [anon_sym_GT_EQ2] = ACTIONS(1856), - [anon_sym_EQ_TILDE2] = ACTIONS(1856), - [anon_sym_BANG_TILDE2] = ACTIONS(1856), - [anon_sym_like2] = ACTIONS(1856), - [anon_sym_not_DASHlike2] = ACTIONS(1856), - [anon_sym_STAR_STAR2] = ACTIONS(1856), - [anon_sym_PLUS_PLUS2] = ACTIONS(1856), - [anon_sym_SLASH2] = ACTIONS(1858), - [anon_sym_mod2] = ACTIONS(1856), - [anon_sym_SLASH_SLASH2] = ACTIONS(1856), - [anon_sym_PLUS2] = ACTIONS(1858), - [anon_sym_bit_DASHshl2] = ACTIONS(1856), - [anon_sym_bit_DASHshr2] = ACTIONS(1856), - [anon_sym_bit_DASHand2] = ACTIONS(1856), - [anon_sym_bit_DASHxor2] = ACTIONS(1856), - [anon_sym_bit_DASHor2] = ACTIONS(1856), - [anon_sym_DOT2] = ACTIONS(2391), - [anon_sym_err_GT] = ACTIONS(1858), - [anon_sym_out_GT] = ACTIONS(1858), - [anon_sym_e_GT] = ACTIONS(1858), - [anon_sym_o_GT] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT] = ACTIONS(1858), - [anon_sym_err_GT_GT] = ACTIONS(1856), - [anon_sym_out_GT_GT] = ACTIONS(1856), - [anon_sym_e_GT_GT] = ACTIONS(1856), - [anon_sym_o_GT_GT] = ACTIONS(1856), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(868)] = { - [aux_sym__repeat_newline] = STATE(992), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(868), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(869)] = { - [sym_comment] = STATE(869), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_in] = ACTIONS(2429), - [sym__newline] = ACTIONS(2429), - [anon_sym_SEMI] = ACTIONS(2429), - [anon_sym_PIPE] = ACTIONS(2429), - [anon_sym_err_GT_PIPE] = ACTIONS(2429), - [anon_sym_out_GT_PIPE] = ACTIONS(2429), - [anon_sym_e_GT_PIPE] = ACTIONS(2429), - [anon_sym_o_GT_PIPE] = ACTIONS(2429), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2429), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2429), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2429), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2429), - [anon_sym_RPAREN] = ACTIONS(2429), - [anon_sym_GT2] = ACTIONS(2431), - [anon_sym_DASH2] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2429), - [anon_sym_RBRACE] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(2429), - [anon_sym_STAR2] = ACTIONS(2431), - [anon_sym_and2] = ACTIONS(2429), - [anon_sym_xor2] = ACTIONS(2429), - [anon_sym_or2] = ACTIONS(2429), - [anon_sym_not_DASHin2] = ACTIONS(2429), - [anon_sym_has2] = ACTIONS(2429), - [anon_sym_not_DASHhas2] = ACTIONS(2429), - [anon_sym_starts_DASHwith2] = ACTIONS(2429), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2429), - [anon_sym_ends_DASHwith2] = ACTIONS(2429), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2429), - [anon_sym_EQ_EQ2] = ACTIONS(2429), - [anon_sym_BANG_EQ2] = ACTIONS(2429), - [anon_sym_LT2] = ACTIONS(2431), - [anon_sym_LT_EQ2] = ACTIONS(2429), - [anon_sym_GT_EQ2] = ACTIONS(2429), - [anon_sym_EQ_TILDE2] = ACTIONS(2429), - [anon_sym_BANG_TILDE2] = ACTIONS(2429), - [anon_sym_like2] = ACTIONS(2429), - [anon_sym_not_DASHlike2] = ACTIONS(2429), - [anon_sym_STAR_STAR2] = ACTIONS(2429), - [anon_sym_PLUS_PLUS2] = ACTIONS(2429), - [anon_sym_SLASH2] = ACTIONS(2431), - [anon_sym_mod2] = ACTIONS(2429), - [anon_sym_SLASH_SLASH2] = ACTIONS(2429), - [anon_sym_PLUS2] = ACTIONS(2431), - [anon_sym_bit_DASHshl2] = ACTIONS(2429), - [anon_sym_bit_DASHshr2] = ACTIONS(2429), - [anon_sym_bit_DASHand2] = ACTIONS(2429), - [anon_sym_bit_DASHxor2] = ACTIONS(2429), - [anon_sym_bit_DASHor2] = ACTIONS(2429), - [anon_sym_err_GT] = ACTIONS(2431), - [anon_sym_out_GT] = ACTIONS(2431), - [anon_sym_e_GT] = ACTIONS(2431), - [anon_sym_o_GT] = ACTIONS(2431), - [anon_sym_err_PLUSout_GT] = ACTIONS(2431), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2431), - [anon_sym_o_PLUSe_GT] = ACTIONS(2431), - [anon_sym_e_PLUSo_GT] = ACTIONS(2431), - [anon_sym_err_GT_GT] = ACTIONS(2429), - [anon_sym_out_GT_GT] = ACTIONS(2429), - [anon_sym_e_GT_GT] = ACTIONS(2429), - [anon_sym_o_GT_GT] = ACTIONS(2429), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2429), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2429), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2429), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(870)] = { - [aux_sym__repeat_newline] = STATE(996), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(870), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(871)] = { - [sym_cmd_identifier] = STATE(4141), - [sym_expr_parenthesized] = STATE(5138), - [sym__spread_parenthesized] = STATE(4677), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(5138), - [sym_val_number] = STATE(5138), - [sym__val_number_decimal] = STATE(1947), - [sym__val_number] = STATE(700), - [sym_val_string] = STATE(5138), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_interpolated] = STATE(5138), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym__spread_record] = STATE(4677), - [sym_record_entry] = STATE(4475), - [sym__record_key] = STATE(4944), - [sym_comment] = STATE(871), - [aux_sym_record_body_repeat1] = STATE(874), + [aux_sym_record_body_repeat1] = STATE(881), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -112884,2751 +112963,3246 @@ 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(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1780), - [aux_sym_cmd_identifier_token4] = ACTIONS(1780), - [aux_sym_cmd_identifier_token5] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1804), + [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(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [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(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), + [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(1802), + [sym_raw_string_begin] = ACTIONS(1806), + }, + [STATE(868)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1668), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(706), + [sym__unquoted_with_expr] = STATE(951), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(868), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [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(869)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1669), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(709), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(869), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [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(870)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1670), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(710), + [sym__unquoted_with_expr] = STATE(968), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(870), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [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(871)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1671), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(907), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(871), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [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(872)] = { - [aux_sym__repeat_newline] = STATE(998), - [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1672), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(692), + [sym__unquoted_with_expr] = STATE(908), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(872), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_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(873)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1673), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(697), + [sym__unquoted_with_expr] = STATE(910), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(873), - [anon_sym_in] = ACTIONS(1754), - [sym__newline] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_err_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_GT_PIPE] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_GT2] = ACTIONS(1756), - [anon_sym_DASH2] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_STAR2] = ACTIONS(1756), - [anon_sym_and2] = ACTIONS(1754), - [anon_sym_xor2] = ACTIONS(1754), - [anon_sym_or2] = ACTIONS(1754), - [anon_sym_not_DASHin2] = ACTIONS(1754), - [anon_sym_has2] = ACTIONS(1754), - [anon_sym_not_DASHhas2] = ACTIONS(1754), - [anon_sym_starts_DASHwith2] = ACTIONS(1754), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1754), - [anon_sym_ends_DASHwith2] = ACTIONS(1754), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1754), - [anon_sym_EQ_EQ2] = ACTIONS(1754), - [anon_sym_BANG_EQ2] = ACTIONS(1754), - [anon_sym_LT2] = ACTIONS(1756), - [anon_sym_LT_EQ2] = ACTIONS(1754), - [anon_sym_GT_EQ2] = ACTIONS(1754), - [anon_sym_EQ_TILDE2] = ACTIONS(1754), - [anon_sym_BANG_TILDE2] = ACTIONS(1754), - [anon_sym_like2] = ACTIONS(1754), - [anon_sym_not_DASHlike2] = ACTIONS(1754), - [anon_sym_STAR_STAR2] = ACTIONS(1754), - [anon_sym_PLUS_PLUS2] = ACTIONS(1754), - [anon_sym_SLASH2] = ACTIONS(1756), - [anon_sym_mod2] = ACTIONS(1754), - [anon_sym_SLASH_SLASH2] = ACTIONS(1754), - [anon_sym_PLUS2] = ACTIONS(1756), - [anon_sym_bit_DASHshl2] = ACTIONS(1754), - [anon_sym_bit_DASHshr2] = ACTIONS(1754), - [anon_sym_bit_DASHand2] = ACTIONS(1754), - [anon_sym_bit_DASHxor2] = ACTIONS(1754), - [anon_sym_bit_DASHor2] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(2433), - [aux_sym__immediate_decimal_token5] = ACTIONS(1760), - [anon_sym_err_GT] = ACTIONS(1756), - [anon_sym_out_GT] = ACTIONS(1756), - [anon_sym_e_GT] = ACTIONS(1756), - [anon_sym_o_GT] = ACTIONS(1756), - [anon_sym_err_PLUSout_GT] = ACTIONS(1756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), - [anon_sym_o_PLUSe_GT] = ACTIONS(1756), - [anon_sym_e_PLUSo_GT] = ACTIONS(1756), - [anon_sym_err_GT_GT] = ACTIONS(1754), - [anon_sym_out_GT_GT] = ACTIONS(1754), - [anon_sym_e_GT_GT] = ACTIONS(1754), - [anon_sym_o_GT_GT] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), + [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(874)] = { - [sym_cmd_identifier] = STATE(4141), - [sym_expr_parenthesized] = STATE(5138), - [sym__spread_parenthesized] = STATE(4677), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(5138), - [sym_val_number] = STATE(5138), - [sym__val_number_decimal] = STATE(1947), - [sym__val_number] = STATE(700), - [sym_val_string] = STATE(5138), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_interpolated] = STATE(5138), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym__spread_record] = STATE(4677), - [sym_record_entry] = STATE(4733), - [sym__record_key] = STATE(4944), + [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), - [aux_sym_record_body_repeat1] = STATE(874), - [anon_sym_export] = ACTIONS(2435), - [anon_sym_alias] = ACTIONS(2438), - [anon_sym_let] = ACTIONS(2438), - [anon_sym_mut] = ACTIONS(2438), - [anon_sym_const] = ACTIONS(2438), - [aux_sym_cmd_identifier_token1] = ACTIONS(2441), - [anon_sym_def] = ACTIONS(2438), - [anon_sym_use] = ACTIONS(2438), - [anon_sym_export_DASHenv] = ACTIONS(2438), - [anon_sym_extern] = ACTIONS(2438), - [anon_sym_module] = ACTIONS(2438), - [anon_sym_for] = ACTIONS(2438), - [anon_sym_loop] = ACTIONS(2438), - [anon_sym_while] = ACTIONS(2438), - [anon_sym_if] = ACTIONS(2438), - [anon_sym_else] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2438), - [anon_sym_catch] = ACTIONS(2438), - [anon_sym_match] = ACTIONS(2438), - [anon_sym_in] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2444), - [anon_sym_false] = ACTIONS(2444), - [anon_sym_null] = ACTIONS(2444), - [aux_sym_cmd_identifier_token3] = ACTIONS(2447), - [aux_sym_cmd_identifier_token4] = ACTIONS(2447), - [aux_sym_cmd_identifier_token5] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_DOLLAR] = ACTIONS(2453), - [anon_sym_DASH2] = ACTIONS(2456), - [anon_sym_PLUS2] = ACTIONS(2456), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2459), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2462), - [aux_sym__val_number_decimal_token1] = ACTIONS(2465), - [aux_sym__val_number_decimal_token2] = ACTIONS(2468), - [aux_sym__val_number_decimal_token3] = ACTIONS(2471), - [aux_sym__val_number_decimal_token4] = ACTIONS(2471), - [aux_sym__val_number_token1] = ACTIONS(2474), - [aux_sym__val_number_token2] = ACTIONS(2474), - [aux_sym__val_number_token3] = ACTIONS(2474), - [anon_sym_DQUOTE] = ACTIONS(2477), - [anon_sym_SQUOTE] = ACTIONS(2480), - [anon_sym_BQUOTE] = ACTIONS(2483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2486), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2495), + [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(875)] = { - [aux_sym__repeat_newline] = STATE(1000), - [sym__expr_parenthesized_immediate] = STATE(4713), + [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_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_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(876)] = { - [aux_sym__repeat_newline] = STATE(1002), - [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(917), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(714), + [sym__unquoted_with_expr] = STATE(919), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(876), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_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(877)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2149), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(691), - [sym__unquoted_with_expr] = STATE(907), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1676), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(701), + [sym__unquoted_with_expr] = STATE(922), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(877), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(878)] = { - [sym_cell_path] = STATE(1345), - [sym_path] = STATE(791), + [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__where_predicate_lhs_repeat1] = STATE(532), - [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_DOT2] = ACTIONS(2391), - [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(879)] = { - [sym_comment] = STATE(879), - [ts_builtin_sym_end] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1754), - [sym__newline] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_err_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_GT_PIPE] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), - [anon_sym_GT2] = ACTIONS(1756), - [anon_sym_DASH2] = ACTIONS(1754), - [anon_sym_STAR2] = ACTIONS(1756), - [anon_sym_and2] = ACTIONS(1754), - [anon_sym_xor2] = ACTIONS(1754), - [anon_sym_or2] = ACTIONS(1754), - [anon_sym_not_DASHin2] = ACTIONS(1754), - [anon_sym_has2] = ACTIONS(1754), - [anon_sym_not_DASHhas2] = ACTIONS(1754), - [anon_sym_starts_DASHwith2] = ACTIONS(1754), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1754), - [anon_sym_ends_DASHwith2] = ACTIONS(1754), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1754), - [anon_sym_EQ_EQ2] = ACTIONS(1754), - [anon_sym_BANG_EQ2] = ACTIONS(1754), - [anon_sym_LT2] = ACTIONS(1756), - [anon_sym_LT_EQ2] = ACTIONS(1754), - [anon_sym_GT_EQ2] = ACTIONS(1754), - [anon_sym_EQ_TILDE2] = ACTIONS(1754), - [anon_sym_BANG_TILDE2] = ACTIONS(1754), - [anon_sym_like2] = ACTIONS(1754), - [anon_sym_not_DASHlike2] = ACTIONS(1754), - [anon_sym_LPAREN2] = ACTIONS(1754), - [anon_sym_STAR_STAR2] = ACTIONS(1754), - [anon_sym_PLUS_PLUS2] = ACTIONS(1754), - [anon_sym_SLASH2] = ACTIONS(1756), - [anon_sym_mod2] = ACTIONS(1754), - [anon_sym_SLASH_SLASH2] = ACTIONS(1754), - [anon_sym_PLUS2] = ACTIONS(1756), - [anon_sym_bit_DASHshl2] = ACTIONS(1754), - [anon_sym_bit_DASHshr2] = ACTIONS(1754), - [anon_sym_bit_DASHand2] = ACTIONS(1754), - [anon_sym_bit_DASHxor2] = ACTIONS(1754), - [anon_sym_bit_DASHor2] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(2498), - [aux_sym__immediate_decimal_token5] = ACTIONS(2500), - [anon_sym_err_GT] = ACTIONS(1756), - [anon_sym_out_GT] = ACTIONS(1756), - [anon_sym_e_GT] = ACTIONS(1756), - [anon_sym_o_GT] = ACTIONS(1756), - [anon_sym_err_PLUSout_GT] = ACTIONS(1756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), - [anon_sym_o_PLUSe_GT] = ACTIONS(1756), - [anon_sym_e_PLUSo_GT] = ACTIONS(1756), - [anon_sym_err_GT_GT] = ACTIONS(1754), - [anon_sym_out_GT_GT] = ACTIONS(1754), - [anon_sym_e_GT_GT] = ACTIONS(1754), - [anon_sym_o_GT_GT] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), - [sym__unquoted_pattern] = ACTIONS(1756), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(880)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2150), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(674), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(880), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [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(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(881)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2151), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(676), - [sym__unquoted_with_expr] = STATE(920), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(881), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [STATE(879)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1678), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(684), + [sym__unquoted_with_expr] = STATE(926), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(879), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(882)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2152), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(924), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(882), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [STATE(880)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(1679), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1479), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1410), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(685), + [sym__unquoted_with_expr] = STATE(927), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(880), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2069), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(881)] = { + [sym_cmd_identifier] = STATE(4276), + [sym_expr_parenthesized] = STATE(5339), + [sym__spread_parenthesized] = STATE(4883), + [sym__spread_variable] = STATE(4892), + [sym_val_variable] = STATE(5339), + [sym_val_number] = STATE(5339), + [sym__val_number_decimal] = STATE(1984), + [sym__val_number] = STATE(707), + [sym_val_string] = STATE(5339), + [sym__raw_str] = STATE(2266), + [sym__str_double_quotes] = STATE(2266), + [sym__str_single_quotes] = STATE(2266), + [sym__str_back_ticks] = STATE(2266), + [sym_val_interpolated] = STATE(5339), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym__spread_record] = STATE(4883), + [sym_record_entry] = STATE(4853), + [sym__record_key] = STATE(5341), + [sym_comment] = STATE(881), + [aux_sym_record_body_repeat1] = STATE(881), + [anon_sym_export] = ACTIONS(2446), + [anon_sym_alias] = ACTIONS(2449), + [anon_sym_let] = ACTIONS(2449), + [anon_sym_mut] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [aux_sym_cmd_identifier_token1] = ACTIONS(2452), + [anon_sym_def] = ACTIONS(2449), + [anon_sym_use] = ACTIONS(2449), + [anon_sym_export_DASHenv] = ACTIONS(2449), + [anon_sym_extern] = ACTIONS(2449), + [anon_sym_module] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_loop] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_catch] = ACTIONS(2449), + [anon_sym_match] = ACTIONS(2449), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_true] = ACTIONS(2455), + [anon_sym_false] = ACTIONS(2455), + [anon_sym_null] = ACTIONS(2455), + [aux_sym_cmd_identifier_token3] = ACTIONS(2458), + [aux_sym_cmd_identifier_token4] = ACTIONS(2458), + [aux_sym_cmd_identifier_token5] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_DOLLAR] = ACTIONS(2464), + [anon_sym_DASH2] = ACTIONS(2467), + [anon_sym_PLUS2] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2470), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2473), + [aux_sym__val_number_decimal_token1] = ACTIONS(2476), + [aux_sym__val_number_decimal_token2] = ACTIONS(2479), + [aux_sym__val_number_decimal_token3] = ACTIONS(2482), + [aux_sym__val_number_decimal_token4] = ACTIONS(2482), + [aux_sym__val_number_token1] = ACTIONS(2485), + [aux_sym__val_number_token2] = ACTIONS(2485), + [aux_sym__val_number_token3] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2488), + [anon_sym_SQUOTE] = ACTIONS(2491), + [anon_sym_BQUOTE] = ACTIONS(2494), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2497), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2500), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2503), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2506), + }, + [STATE(882)] = { + [aux_sym__repeat_newline] = STATE(3546), + [aux_sym__pipe_separator] = STATE(887), + [sym_comment] = STATE(882), + [anon_sym_export] = ACTIONS(2509), + [anon_sym_alias] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_mut] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [aux_sym_cmd_identifier_token1] = ACTIONS(2509), + [anon_sym_def] = ACTIONS(2511), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_export_DASHenv] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym_module] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_loop] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [anon_sym_catch] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_in] = ACTIONS(2509), + [anon_sym_true] = ACTIONS(2511), + [anon_sym_false] = ACTIONS(2511), + [anon_sym_null] = ACTIONS(2511), + [aux_sym_cmd_identifier_token3] = ACTIONS(2511), + [aux_sym_cmd_identifier_token4] = ACTIONS(2511), + [aux_sym_cmd_identifier_token5] = ACTIONS(2511), + [sym__newline] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2325), + [anon_sym_err_GT_PIPE] = ACTIONS(2325), + [anon_sym_out_GT_PIPE] = ACTIONS(2325), + [anon_sym_e_GT_PIPE] = ACTIONS(2325), + [anon_sym_o_GT_PIPE] = ACTIONS(2325), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2325), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2325), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2325), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_DOLLAR] = ACTIONS(2509), + [anon_sym_DASH2] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_DOT_DOT] = ACTIONS(2509), + [anon_sym_where] = ACTIONS(2511), + [aux_sym_expr_unary_token1] = ACTIONS(2511), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2511), + [anon_sym_DOT_DOT_LT] = ACTIONS(2511), + [aux_sym__val_number_decimal_token1] = ACTIONS(2509), + [aux_sym__val_number_decimal_token2] = ACTIONS(2511), + [aux_sym__val_number_decimal_token3] = ACTIONS(2511), + [aux_sym__val_number_decimal_token4] = ACTIONS(2511), + [aux_sym__val_number_token1] = ACTIONS(2511), + [aux_sym__val_number_token2] = ACTIONS(2511), + [aux_sym__val_number_token3] = ACTIONS(2511), + [anon_sym_0b] = ACTIONS(2509), + [anon_sym_0o] = ACTIONS(2509), + [anon_sym_0x] = ACTIONS(2509), + [sym_val_date] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2511), + [anon_sym_BQUOTE] = ACTIONS(2511), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [anon_sym_CARET] = ACTIONS(2511), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2511), + }, [STATE(883)] = { - [aux_sym__repeat_newline] = STATE(1057), - [sym__expr_parenthesized_immediate] = STATE(4713), + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1325), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(463), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1126), + [sym__unquoted_with_expr] = STATE(1327), + [sym__unquoted_anonymous_prefix] = STATE(4744), [sym_comment] = STATE(883), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [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(884)] = { + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1328), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(463), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(1128), + [sym__unquoted_with_expr] = STATE(1331), + [sym__unquoted_anonymous_prefix] = STATE(4744), [sym_comment] = STATE(884), - [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_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(885)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(2154), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(678), - [sym__unquoted_with_expr] = STATE(929), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym_expr_unary] = STATE(1323), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_binary] = STATE(1323), + [sym__expr_binary_expression] = STATE(1334), + [sym_expr_parenthesized] = STATE(952), + [sym_val_range] = STATE(1323), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(1323), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(1027), + [sym_val_variable] = STATE(933), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(463), + [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(1129), + [sym__unquoted_with_expr] = STATE(1336), + [sym__unquoted_anonymous_prefix] = STATE(4744), [sym_comment] = STATE(885), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [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(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_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_export] = ACTIONS(2515), + [anon_sym_alias] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_mut] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), + [aux_sym_cmd_identifier_token1] = ACTIONS(2515), + [anon_sym_def] = ACTIONS(2517), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_export_DASHenv] = ACTIONS(2517), + [anon_sym_extern] = ACTIONS(2517), + [anon_sym_module] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_loop] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_else] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_catch] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_in] = ACTIONS(2515), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_null] = ACTIONS(2517), + [aux_sym_cmd_identifier_token3] = ACTIONS(2517), + [aux_sym_cmd_identifier_token4] = ACTIONS(2517), + [aux_sym_cmd_identifier_token5] = ACTIONS(2517), + [sym__newline] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(2522), + [anon_sym_err_GT_PIPE] = ACTIONS(2522), + [anon_sym_out_GT_PIPE] = ACTIONS(2522), + [anon_sym_e_GT_PIPE] = ACTIONS(2522), + [anon_sym_o_GT_PIPE] = ACTIONS(2522), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2522), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2522), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2522), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_DOLLAR] = ACTIONS(2515), + [anon_sym_DASH2] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_DOT_DOT] = ACTIONS(2515), + [anon_sym_where] = ACTIONS(2517), + [aux_sym_expr_unary_token1] = ACTIONS(2517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2517), + [anon_sym_DOT_DOT_LT] = ACTIONS(2517), + [aux_sym__val_number_decimal_token1] = ACTIONS(2515), + [aux_sym__val_number_decimal_token2] = ACTIONS(2517), + [aux_sym__val_number_decimal_token3] = ACTIONS(2517), + [aux_sym__val_number_decimal_token4] = ACTIONS(2517), + [aux_sym__val_number_token1] = ACTIONS(2517), + [aux_sym__val_number_token2] = ACTIONS(2517), + [aux_sym__val_number_token3] = ACTIONS(2517), + [anon_sym_0b] = ACTIONS(2515), + [anon_sym_0o] = ACTIONS(2515), + [anon_sym_0x] = ACTIONS(2515), + [sym_val_date] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(2517), + [anon_sym_SQUOTE] = ACTIONS(2517), + [anon_sym_BQUOTE] = ACTIONS(2517), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2517), + [anon_sym_CARET] = ACTIONS(2517), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2517), + }, + [STATE(888)] = { + [sym_comment] = STATE(888), + [anon_sym_in] = ACTIONS(2525), + [sym__newline] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_err_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_GT_PIPE] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2525), + [anon_sym_RPAREN] = ACTIONS(2525), + [anon_sym_GT2] = ACTIONS(2527), + [anon_sym_DASH2] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_STAR2] = ACTIONS(2527), + [anon_sym_and2] = ACTIONS(2525), + [anon_sym_xor2] = ACTIONS(2525), + [anon_sym_or2] = ACTIONS(2525), + [anon_sym_not_DASHin2] = ACTIONS(2525), + [anon_sym_has2] = ACTIONS(2525), + [anon_sym_not_DASHhas2] = ACTIONS(2525), + [anon_sym_starts_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2525), + [anon_sym_ends_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2525), + [anon_sym_EQ_EQ2] = ACTIONS(2525), + [anon_sym_BANG_EQ2] = ACTIONS(2525), + [anon_sym_LT2] = ACTIONS(2527), + [anon_sym_LT_EQ2] = ACTIONS(2525), + [anon_sym_GT_EQ2] = ACTIONS(2525), + [anon_sym_EQ_TILDE2] = ACTIONS(2525), + [anon_sym_BANG_TILDE2] = ACTIONS(2525), + [anon_sym_like2] = ACTIONS(2525), + [anon_sym_not_DASHlike2] = ACTIONS(2525), + [anon_sym_LPAREN2] = ACTIONS(2525), + [anon_sym_STAR_STAR2] = ACTIONS(2525), + [anon_sym_PLUS_PLUS2] = ACTIONS(2525), + [anon_sym_SLASH2] = ACTIONS(2527), + [anon_sym_mod2] = ACTIONS(2525), + [anon_sym_SLASH_SLASH2] = ACTIONS(2525), + [anon_sym_PLUS2] = ACTIONS(2527), + [anon_sym_bit_DASHshl2] = ACTIONS(2525), + [anon_sym_bit_DASHshr2] = ACTIONS(2525), + [anon_sym_bit_DASHand2] = ACTIONS(2525), + [anon_sym_bit_DASHxor2] = ACTIONS(2525), + [anon_sym_bit_DASHor2] = ACTIONS(2525), + [anon_sym_err_GT] = ACTIONS(2527), + [anon_sym_out_GT] = ACTIONS(2527), + [anon_sym_e_GT] = ACTIONS(2527), + [anon_sym_o_GT] = ACTIONS(2527), + [anon_sym_err_PLUSout_GT] = ACTIONS(2527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2527), + [anon_sym_o_PLUSe_GT] = ACTIONS(2527), + [anon_sym_e_PLUSo_GT] = ACTIONS(2527), + [anon_sym_err_GT_GT] = ACTIONS(2525), + [anon_sym_out_GT_GT] = ACTIONS(2525), + [anon_sym_e_GT_GT] = ACTIONS(2525), + [anon_sym_o_GT_GT] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2525), + [sym__unquoted_pattern] = ACTIONS(2527), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(889)] = { + [sym_comment] = STATE(889), + [anon_sym_if] = ACTIONS(2529), + [anon_sym_in] = ACTIONS(2529), + [sym__newline] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_PIPE] = ACTIONS(2529), + [anon_sym_err_GT_PIPE] = ACTIONS(2529), + [anon_sym_out_GT_PIPE] = ACTIONS(2529), + [anon_sym_e_GT_PIPE] = ACTIONS(2529), + [anon_sym_o_GT_PIPE] = ACTIONS(2529), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2529), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2529), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2529), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2529), + [anon_sym_RPAREN] = ACTIONS(2529), + [anon_sym_GT2] = ACTIONS(2531), + [anon_sym_DASH2] = ACTIONS(2529), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_EQ_GT] = ACTIONS(2529), + [anon_sym_STAR2] = ACTIONS(2531), + [anon_sym_and2] = ACTIONS(2529), + [anon_sym_xor2] = ACTIONS(2529), + [anon_sym_or2] = ACTIONS(2529), + [anon_sym_not_DASHin2] = ACTIONS(2529), + [anon_sym_has2] = ACTIONS(2529), + [anon_sym_not_DASHhas2] = ACTIONS(2529), + [anon_sym_starts_DASHwith2] = ACTIONS(2529), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2529), + [anon_sym_ends_DASHwith2] = ACTIONS(2529), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2529), + [anon_sym_EQ_EQ2] = ACTIONS(2529), + [anon_sym_BANG_EQ2] = ACTIONS(2529), + [anon_sym_LT2] = ACTIONS(2531), + [anon_sym_LT_EQ2] = ACTIONS(2529), + [anon_sym_GT_EQ2] = ACTIONS(2529), + [anon_sym_EQ_TILDE2] = ACTIONS(2529), + [anon_sym_BANG_TILDE2] = ACTIONS(2529), + [anon_sym_like2] = ACTIONS(2529), + [anon_sym_not_DASHlike2] = ACTIONS(2529), + [anon_sym_STAR_STAR2] = ACTIONS(2529), + [anon_sym_PLUS_PLUS2] = ACTIONS(2529), + [anon_sym_SLASH2] = ACTIONS(2531), + [anon_sym_mod2] = ACTIONS(2529), + [anon_sym_SLASH_SLASH2] = ACTIONS(2529), + [anon_sym_PLUS2] = ACTIONS(2531), + [anon_sym_bit_DASHshl2] = ACTIONS(2529), + [anon_sym_bit_DASHshr2] = ACTIONS(2529), + [anon_sym_bit_DASHand2] = ACTIONS(2529), + [anon_sym_bit_DASHxor2] = ACTIONS(2529), + [anon_sym_bit_DASHor2] = ACTIONS(2529), + [anon_sym_err_GT] = ACTIONS(2531), + [anon_sym_out_GT] = ACTIONS(2531), + [anon_sym_e_GT] = ACTIONS(2531), + [anon_sym_o_GT] = ACTIONS(2531), + [anon_sym_err_PLUSout_GT] = ACTIONS(2531), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2531), + [anon_sym_o_PLUSe_GT] = ACTIONS(2531), + [anon_sym_e_PLUSo_GT] = ACTIONS(2531), + [anon_sym_err_GT_GT] = ACTIONS(2529), + [anon_sym_out_GT_GT] = ACTIONS(2529), + [anon_sym_e_GT_GT] = ACTIONS(2529), + [anon_sym_o_GT_GT] = ACTIONS(2529), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2529), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2529), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2529), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2529), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(890)] = { + [sym_comment] = STATE(890), + [anon_sym_if] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(891)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2212), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(706), + [sym__unquoted_with_expr] = STATE(951), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(891), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(886)] = { - [aux_sym__repeat_newline] = STATE(1130), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(886), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(887)] = { - [sym_expr_unary] = STATE(956), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(956), - [sym__expr_binary_expression] = STATE(927), - [sym_expr_parenthesized] = STATE(707), - [sym_val_range] = STATE(956), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(956), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(1922), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1726), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(897), - [sym__unquoted_anonymous_prefix] = STATE(4488), - [sym_comment] = STATE(887), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [anon_sym_null] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [STATE(892)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2213), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(709), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(892), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(1924), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2044), - [anon_sym_DOT_DOT_LT] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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(2052), + [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(1924), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(888)] = { - [sym_comment] = STATE(888), - [anon_sym_if] = ACTIONS(2502), - [anon_sym_in] = ACTIONS(2502), - [sym__newline] = ACTIONS(2502), - [anon_sym_SEMI] = ACTIONS(2502), - [anon_sym_PIPE] = ACTIONS(2502), - [anon_sym_err_GT_PIPE] = ACTIONS(2502), - [anon_sym_out_GT_PIPE] = ACTIONS(2502), - [anon_sym_e_GT_PIPE] = ACTIONS(2502), - [anon_sym_o_GT_PIPE] = ACTIONS(2502), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2502), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2502), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2502), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2502), - [anon_sym_RPAREN] = ACTIONS(2502), - [anon_sym_GT2] = ACTIONS(2504), - [anon_sym_DASH2] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_RBRACE] = ACTIONS(2502), - [anon_sym_EQ_GT] = ACTIONS(2502), - [anon_sym_STAR2] = ACTIONS(2504), - [anon_sym_and2] = ACTIONS(2502), - [anon_sym_xor2] = ACTIONS(2502), - [anon_sym_or2] = ACTIONS(2502), - [anon_sym_not_DASHin2] = ACTIONS(2502), - [anon_sym_has2] = ACTIONS(2502), - [anon_sym_not_DASHhas2] = ACTIONS(2502), - [anon_sym_starts_DASHwith2] = ACTIONS(2502), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2502), - [anon_sym_ends_DASHwith2] = ACTIONS(2502), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2502), - [anon_sym_EQ_EQ2] = ACTIONS(2502), - [anon_sym_BANG_EQ2] = ACTIONS(2502), - [anon_sym_LT2] = ACTIONS(2504), - [anon_sym_LT_EQ2] = ACTIONS(2502), - [anon_sym_GT_EQ2] = ACTIONS(2502), - [anon_sym_EQ_TILDE2] = ACTIONS(2502), - [anon_sym_BANG_TILDE2] = ACTIONS(2502), - [anon_sym_like2] = ACTIONS(2502), - [anon_sym_not_DASHlike2] = ACTIONS(2502), - [anon_sym_STAR_STAR2] = ACTIONS(2502), - [anon_sym_PLUS_PLUS2] = ACTIONS(2502), - [anon_sym_SLASH2] = ACTIONS(2504), - [anon_sym_mod2] = ACTIONS(2502), - [anon_sym_SLASH_SLASH2] = ACTIONS(2502), - [anon_sym_PLUS2] = ACTIONS(2504), - [anon_sym_bit_DASHshl2] = ACTIONS(2502), - [anon_sym_bit_DASHshr2] = ACTIONS(2502), - [anon_sym_bit_DASHand2] = ACTIONS(2502), - [anon_sym_bit_DASHxor2] = ACTIONS(2502), - [anon_sym_bit_DASHor2] = ACTIONS(2502), - [anon_sym_err_GT] = ACTIONS(2504), - [anon_sym_out_GT] = ACTIONS(2504), - [anon_sym_e_GT] = ACTIONS(2504), - [anon_sym_o_GT] = ACTIONS(2504), - [anon_sym_err_PLUSout_GT] = ACTIONS(2504), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2504), - [anon_sym_o_PLUSe_GT] = ACTIONS(2504), - [anon_sym_e_PLUSo_GT] = ACTIONS(2504), - [anon_sym_err_GT_GT] = ACTIONS(2502), - [anon_sym_out_GT_GT] = ACTIONS(2502), - [anon_sym_e_GT_GT] = ACTIONS(2502), - [anon_sym_o_GT_GT] = ACTIONS(2502), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2502), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2502), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2502), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2502), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(889)] = { - [sym_cmd_identifier] = STATE(4141), - [sym_expr_parenthesized] = STATE(5138), - [sym__spread_parenthesized] = STATE(4677), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(4109), - [sym_val_number] = STATE(5138), - [sym__val_number_decimal] = STATE(1947), - [sym__val_number] = STATE(700), - [sym_val_string] = STATE(5138), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_interpolated] = STATE(5138), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym__spread_record] = STATE(4677), - [sym_record_entry] = STATE(4639), - [sym__record_key] = STATE(4944), - [sym_comment] = STATE(889), - [aux_sym__match_pattern_record_body_repeat1] = STATE(783), - [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(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1780), - [aux_sym_cmd_identifier_token4] = ACTIONS(1780), - [aux_sym_cmd_identifier_token5] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1786), - [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(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [STATE(893)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(710), + [sym__unquoted_with_expr] = STATE(968), + [sym__unquoted_anonymous_prefix] = STATE(4619), + [sym_comment] = STATE(893), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), + [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), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1802), - }, - [STATE(890)] = { - [sym_comment] = STATE(890), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_RBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_LPAREN2] = ACTIONS(2506), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [sym__unquoted_pattern] = ACTIONS(2508), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(891)] = { - [sym_comment] = STATE(891), - [anon_sym_in] = ACTIONS(1754), - [sym__newline] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_err_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_GT_PIPE] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_GT2] = ACTIONS(1756), - [anon_sym_DASH2] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_STAR2] = ACTIONS(1756), - [anon_sym_and2] = ACTIONS(1754), - [anon_sym_xor2] = ACTIONS(1754), - [anon_sym_or2] = ACTIONS(1754), - [anon_sym_not_DASHin2] = ACTIONS(1754), - [anon_sym_has2] = ACTIONS(1754), - [anon_sym_not_DASHhas2] = ACTIONS(1754), - [anon_sym_starts_DASHwith2] = ACTIONS(1754), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1754), - [anon_sym_ends_DASHwith2] = ACTIONS(1754), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1754), - [anon_sym_EQ_EQ2] = ACTIONS(1754), - [anon_sym_BANG_EQ2] = ACTIONS(1754), - [anon_sym_LT2] = ACTIONS(1756), - [anon_sym_LT_EQ2] = ACTIONS(1754), - [anon_sym_GT_EQ2] = ACTIONS(1754), - [anon_sym_EQ_TILDE2] = ACTIONS(1754), - [anon_sym_BANG_TILDE2] = ACTIONS(1754), - [anon_sym_like2] = ACTIONS(1754), - [anon_sym_not_DASHlike2] = ACTIONS(1754), - [anon_sym_LPAREN2] = ACTIONS(1754), - [anon_sym_STAR_STAR2] = ACTIONS(1754), - [anon_sym_PLUS_PLUS2] = ACTIONS(1754), - [anon_sym_SLASH2] = ACTIONS(1756), - [anon_sym_mod2] = ACTIONS(1754), - [anon_sym_SLASH_SLASH2] = ACTIONS(1754), - [anon_sym_PLUS2] = ACTIONS(1756), - [anon_sym_bit_DASHshl2] = ACTIONS(1754), - [anon_sym_bit_DASHshr2] = ACTIONS(1754), - [anon_sym_bit_DASHand2] = ACTIONS(1754), - [anon_sym_bit_DASHxor2] = ACTIONS(1754), - [anon_sym_bit_DASHor2] = ACTIONS(1754), - [aux_sym__immediate_decimal_token5] = ACTIONS(2098), - [anon_sym_err_GT] = ACTIONS(1756), - [anon_sym_out_GT] = ACTIONS(1756), - [anon_sym_e_GT] = ACTIONS(1756), - [anon_sym_o_GT] = ACTIONS(1756), - [anon_sym_err_PLUSout_GT] = ACTIONS(1756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), - [anon_sym_o_PLUSe_GT] = ACTIONS(1756), - [anon_sym_e_PLUSo_GT] = ACTIONS(1756), - [anon_sym_err_GT_GT] = ACTIONS(1754), - [anon_sym_out_GT_GT] = ACTIONS(1754), - [anon_sym_e_GT_GT] = ACTIONS(1754), - [anon_sym_o_GT_GT] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), - [sym__unquoted_pattern] = ACTIONS(1756), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(892)] = { - [aux_sym__repeat_newline] = STATE(1061), - [sym__expr_parenthesized_immediate] = STATE(4713), - [sym_comment] = STATE(892), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(893)] = { - [sym_comment] = STATE(893), - [anon_sym_in] = ACTIONS(2415), - [sym__newline] = ACTIONS(2510), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_err_GT_PIPE] = ACTIONS(2513), - [anon_sym_out_GT_PIPE] = ACTIONS(2513), - [anon_sym_e_GT_PIPE] = ACTIONS(2513), - [anon_sym_o_GT_PIPE] = ACTIONS(2513), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2513), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2513), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2513), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2513), - [anon_sym_RPAREN] = ACTIONS(2513), - [anon_sym_GT2] = ACTIONS(2417), - [anon_sym_DASH2] = ACTIONS(2415), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_STAR2] = ACTIONS(2417), - [anon_sym_and2] = ACTIONS(2415), - [anon_sym_xor2] = ACTIONS(2415), - [anon_sym_or2] = ACTIONS(2415), - [anon_sym_not_DASHin2] = ACTIONS(2415), - [anon_sym_has2] = ACTIONS(2415), - [anon_sym_not_DASHhas2] = ACTIONS(2415), - [anon_sym_starts_DASHwith2] = ACTIONS(2415), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2415), - [anon_sym_ends_DASHwith2] = ACTIONS(2415), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2415), - [anon_sym_EQ_EQ2] = ACTIONS(2415), - [anon_sym_BANG_EQ2] = ACTIONS(2415), - [anon_sym_LT2] = ACTIONS(2417), - [anon_sym_LT_EQ2] = ACTIONS(2415), - [anon_sym_GT_EQ2] = ACTIONS(2415), - [anon_sym_EQ_TILDE2] = ACTIONS(2415), - [anon_sym_BANG_TILDE2] = ACTIONS(2415), - [anon_sym_like2] = ACTIONS(2415), - [anon_sym_not_DASHlike2] = ACTIONS(2415), - [anon_sym_STAR_STAR2] = ACTIONS(2415), - [anon_sym_PLUS_PLUS2] = ACTIONS(2415), - [anon_sym_SLASH2] = ACTIONS(2417), - [anon_sym_mod2] = ACTIONS(2415), - [anon_sym_SLASH_SLASH2] = ACTIONS(2415), - [anon_sym_PLUS2] = ACTIONS(2417), - [anon_sym_bit_DASHshl2] = ACTIONS(2415), - [anon_sym_bit_DASHshr2] = ACTIONS(2415), - [anon_sym_bit_DASHand2] = ACTIONS(2415), - [anon_sym_bit_DASHxor2] = ACTIONS(2415), - [anon_sym_bit_DASHor2] = ACTIONS(2415), - [anon_sym_DOT_DOT2] = ACTIONS(1633), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1635), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1635), - [anon_sym_err_GT] = ACTIONS(2515), - [anon_sym_out_GT] = ACTIONS(2515), - [anon_sym_e_GT] = ACTIONS(2515), - [anon_sym_o_GT] = ACTIONS(2515), - [anon_sym_err_PLUSout_GT] = ACTIONS(2515), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2515), - [anon_sym_o_PLUSe_GT] = ACTIONS(2515), - [anon_sym_e_PLUSo_GT] = ACTIONS(2515), - [anon_sym_err_GT_GT] = ACTIONS(2513), - [anon_sym_out_GT_GT] = ACTIONS(2513), - [anon_sym_e_GT_GT] = ACTIONS(2513), - [anon_sym_o_GT_GT] = ACTIONS(2513), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2513), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2513), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2513), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2513), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(894)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(907), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(894), - [ts_builtin_sym_end] = 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(1537), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_STAR2] = ACTIONS(1537), - [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(1537), - [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(1537), - [anon_sym_mod2] = ACTIONS(1539), - [anon_sym_SLASH_SLASH2] = ACTIONS(1539), - [anon_sym_PLUS2] = ACTIONS(1537), - [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(1537), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1539), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1539), - [anon_sym_DOT2] = ACTIONS(1537), - [anon_sym_err_GT] = ACTIONS(1537), - [anon_sym_out_GT] = ACTIONS(1537), - [anon_sym_e_GT] = ACTIONS(1537), - [anon_sym_o_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT] = ACTIONS(1537), - [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_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(895)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(692), + [sym__unquoted_with_expr] = STATE(908), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(895), - [anon_sym_if] = ACTIONS(2517), - [anon_sym_in] = ACTIONS(2517), - [sym__newline] = ACTIONS(2517), - [anon_sym_SEMI] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2517), - [anon_sym_err_GT_PIPE] = ACTIONS(2517), - [anon_sym_out_GT_PIPE] = ACTIONS(2517), - [anon_sym_e_GT_PIPE] = ACTIONS(2517), - [anon_sym_o_GT_PIPE] = ACTIONS(2517), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2517), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2517), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2517), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2517), - [anon_sym_RPAREN] = ACTIONS(2517), - [anon_sym_GT2] = ACTIONS(2519), - [anon_sym_DASH2] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2517), - [anon_sym_RBRACE] = ACTIONS(2517), - [anon_sym_EQ_GT] = ACTIONS(2517), - [anon_sym_STAR2] = ACTIONS(2519), - [anon_sym_and2] = ACTIONS(2517), - [anon_sym_xor2] = ACTIONS(2517), - [anon_sym_or2] = ACTIONS(2517), - [anon_sym_not_DASHin2] = ACTIONS(2517), - [anon_sym_has2] = ACTIONS(2517), - [anon_sym_not_DASHhas2] = ACTIONS(2517), - [anon_sym_starts_DASHwith2] = ACTIONS(2517), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2517), - [anon_sym_ends_DASHwith2] = ACTIONS(2517), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2517), - [anon_sym_EQ_EQ2] = ACTIONS(2517), - [anon_sym_BANG_EQ2] = ACTIONS(2517), - [anon_sym_LT2] = ACTIONS(2519), - [anon_sym_LT_EQ2] = ACTIONS(2517), - [anon_sym_GT_EQ2] = ACTIONS(2517), - [anon_sym_EQ_TILDE2] = ACTIONS(2517), - [anon_sym_BANG_TILDE2] = ACTIONS(2517), - [anon_sym_like2] = ACTIONS(2517), - [anon_sym_not_DASHlike2] = ACTIONS(2517), - [anon_sym_STAR_STAR2] = ACTIONS(2517), - [anon_sym_PLUS_PLUS2] = ACTIONS(2517), - [anon_sym_SLASH2] = ACTIONS(2519), - [anon_sym_mod2] = ACTIONS(2517), - [anon_sym_SLASH_SLASH2] = ACTIONS(2517), - [anon_sym_PLUS2] = ACTIONS(2519), - [anon_sym_bit_DASHshl2] = ACTIONS(2517), - [anon_sym_bit_DASHshr2] = ACTIONS(2517), - [anon_sym_bit_DASHand2] = ACTIONS(2517), - [anon_sym_bit_DASHxor2] = ACTIONS(2517), - [anon_sym_bit_DASHor2] = ACTIONS(2517), - [anon_sym_err_GT] = ACTIONS(2519), - [anon_sym_out_GT] = ACTIONS(2519), - [anon_sym_e_GT] = ACTIONS(2519), - [anon_sym_o_GT] = ACTIONS(2519), - [anon_sym_err_PLUSout_GT] = ACTIONS(2519), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2519), - [anon_sym_o_PLUSe_GT] = ACTIONS(2519), - [anon_sym_e_PLUSo_GT] = ACTIONS(2519), - [anon_sym_err_GT_GT] = ACTIONS(2517), - [anon_sym_out_GT_GT] = ACTIONS(2517), - [anon_sym_e_GT_GT] = ACTIONS(2517), - [anon_sym_o_GT_GT] = ACTIONS(2517), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2517), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2517), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2517), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2517), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(896)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(697), + [sym__unquoted_with_expr] = STATE(910), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(896), - [ts_builtin_sym_end] = ACTIONS(2102), - [anon_sym_in] = ACTIONS(2100), - [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(2100), - [anon_sym_STAR2] = ACTIONS(2104), - [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(2104), - [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(2104), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2104), - [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(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), - [anon_sym_err_GT] = ACTIONS(2106), - [anon_sym_out_GT] = ACTIONS(2106), - [anon_sym_e_GT] = ACTIONS(2106), - [anon_sym_o_GT] = ACTIONS(2106), - [anon_sym_err_PLUSout_GT] = ACTIONS(2106), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), - [anon_sym_o_PLUSe_GT] = ACTIONS(2106), - [anon_sym_e_PLUSo_GT] = ACTIONS(2106), - [anon_sym_err_GT_GT] = ACTIONS(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_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [aux_sym__val_number_decimal_token1] = ACTIONS(1928), + [aux_sym__val_number_decimal_token2] = ACTIONS(1930), + [aux_sym__val_number_decimal_token3] = ACTIONS(1932), + [aux_sym__val_number_decimal_token4] = ACTIONS(1932), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(897)] = { + [sym_expr_unary] = STATE(936), + [sym__expr_unary_minus] = STATE(948), + [sym_expr_binary] = STATE(936), + [sym__expr_binary_expression] = STATE(2219), + [sym_expr_parenthesized] = STATE(703), + [sym_val_range] = STATE(936), + [sym__val_range] = STATE(4619), + [sym__value] = STATE(936), + [sym_val_nothing] = STATE(946), + [sym_val_bool] = STATE(1983), + [sym_val_variable] = STATE(713), + [sym_val_cellpath] = STATE(946), + [sym_val_number] = STATE(946), + [sym__val_number_decimal] = STATE(1738), + [sym__val_number] = STATE(707), + [sym_val_duration] = STATE(946), + [sym_val_filesize] = STATE(946), + [sym_val_binary] = STATE(946), + [sym_val_string] = STATE(946), + [sym__raw_str] = STATE(426), + [sym__str_double_quotes] = STATE(426), + [sym__str_single_quotes] = STATE(426), + [sym__str_back_ticks] = STATE(426), + [sym_val_interpolated] = STATE(946), + [sym__inter_single_quotes] = STATE(749), + [sym__inter_double_quotes] = STATE(750), + [sym_val_list] = STATE(946), + [sym_val_record] = STATE(946), + [sym_val_table] = STATE(946), + [sym_val_closure] = STATE(946), + [sym_unquoted] = STATE(705), + [sym__unquoted_with_expr] = STATE(913), + [sym__unquoted_anonymous_prefix] = STATE(4619), [sym_comment] = STATE(897), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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(2521), - [sym__newline] = ACTIONS(2521), - [anon_sym_SEMI] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2521), - [anon_sym_err_GT_PIPE] = ACTIONS(2521), - [anon_sym_out_GT_PIPE] = ACTIONS(2521), - [anon_sym_e_GT_PIPE] = ACTIONS(2521), - [anon_sym_o_GT_PIPE] = ACTIONS(2521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2521), - [anon_sym_RPAREN] = ACTIONS(2521), - [anon_sym_GT2] = ACTIONS(2523), - [anon_sym_DASH2] = ACTIONS(2521), - [anon_sym_RBRACE] = ACTIONS(2521), - [anon_sym_STAR2] = ACTIONS(2523), - [anon_sym_and2] = ACTIONS(2521), - [anon_sym_xor2] = ACTIONS(2521), - [anon_sym_or2] = ACTIONS(2521), - [anon_sym_not_DASHin2] = ACTIONS(2521), - [anon_sym_has2] = ACTIONS(2521), - [anon_sym_not_DASHhas2] = ACTIONS(2521), - [anon_sym_starts_DASHwith2] = ACTIONS(2521), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2521), - [anon_sym_ends_DASHwith2] = ACTIONS(2521), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2521), - [anon_sym_EQ_EQ2] = ACTIONS(2521), - [anon_sym_BANG_EQ2] = ACTIONS(2521), - [anon_sym_LT2] = ACTIONS(2523), - [anon_sym_LT_EQ2] = ACTIONS(2521), - [anon_sym_GT_EQ2] = ACTIONS(2521), - [anon_sym_EQ_TILDE2] = ACTIONS(2521), - [anon_sym_BANG_TILDE2] = ACTIONS(2521), - [anon_sym_like2] = ACTIONS(2521), - [anon_sym_not_DASHlike2] = ACTIONS(2521), - [anon_sym_LPAREN2] = ACTIONS(2525), - [anon_sym_STAR_STAR2] = ACTIONS(2521), - [anon_sym_PLUS_PLUS2] = ACTIONS(2521), - [anon_sym_SLASH2] = ACTIONS(2523), - [anon_sym_mod2] = ACTIONS(2521), - [anon_sym_SLASH_SLASH2] = ACTIONS(2521), - [anon_sym_PLUS2] = ACTIONS(2523), - [anon_sym_bit_DASHshl2] = ACTIONS(2521), - [anon_sym_bit_DASHshr2] = ACTIONS(2521), - [anon_sym_bit_DASHand2] = ACTIONS(2521), - [anon_sym_bit_DASHxor2] = ACTIONS(2521), - [anon_sym_bit_DASHor2] = ACTIONS(2521), - [anon_sym_err_GT] = ACTIONS(2523), - [anon_sym_out_GT] = ACTIONS(2523), - [anon_sym_e_GT] = ACTIONS(2523), - [anon_sym_o_GT] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT] = ACTIONS(2523), - [anon_sym_err_GT_GT] = ACTIONS(2521), - [anon_sym_out_GT_GT] = ACTIONS(2521), - [anon_sym_e_GT_GT] = ACTIONS(2521), - [anon_sym_o_GT_GT] = ACTIONS(2521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2521), - [sym__unquoted_pattern] = ACTIONS(2527), + [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(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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)] = { - [aux_sym__repeat_newline] = STATE(913), + [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_export] = ACTIONS(2529), - [anon_sym_alias] = ACTIONS(2531), - [anon_sym_let] = ACTIONS(2531), - [anon_sym_mut] = ACTIONS(2531), - [anon_sym_const] = ACTIONS(2531), - [aux_sym_cmd_identifier_token1] = ACTIONS(2529), - [anon_sym_def] = ACTIONS(2531), - [anon_sym_use] = ACTIONS(2531), - [anon_sym_export_DASHenv] = ACTIONS(2531), - [anon_sym_extern] = ACTIONS(2531), - [anon_sym_module] = ACTIONS(2531), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_loop] = ACTIONS(2531), - [anon_sym_while] = ACTIONS(2531), - [anon_sym_if] = ACTIONS(2531), - [anon_sym_else] = ACTIONS(2531), - [anon_sym_try] = ACTIONS(2531), - [anon_sym_catch] = ACTIONS(2531), - [anon_sym_match] = ACTIONS(2531), - [anon_sym_in] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2531), - [anon_sym_false] = ACTIONS(2531), - [anon_sym_null] = ACTIONS(2531), - [aux_sym_cmd_identifier_token3] = ACTIONS(2531), - [aux_sym_cmd_identifier_token4] = ACTIONS(2531), - [aux_sym_cmd_identifier_token5] = ACTIONS(2531), - [sym__newline] = ACTIONS(2427), - [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_LBRACK] = ACTIONS(2531), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_DOLLAR] = ACTIONS(2529), - [anon_sym_DASH2] = ACTIONS(2529), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_DOT_DOT] = ACTIONS(2529), - [anon_sym_where] = ACTIONS(2531), - [aux_sym_expr_unary_token1] = ACTIONS(2531), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2531), - [anon_sym_DOT_DOT_LT] = ACTIONS(2531), - [aux_sym__val_number_decimal_token1] = ACTIONS(2529), - [aux_sym__val_number_decimal_token2] = ACTIONS(2531), - [aux_sym__val_number_decimal_token3] = ACTIONS(2531), - [aux_sym__val_number_decimal_token4] = ACTIONS(2531), - [aux_sym__val_number_token1] = ACTIONS(2531), - [aux_sym__val_number_token2] = ACTIONS(2531), - [aux_sym__val_number_token3] = ACTIONS(2531), - [anon_sym_0b] = ACTIONS(2529), - [anon_sym_0o] = ACTIONS(2529), - [anon_sym_0x] = ACTIONS(2529), - [sym_val_date] = ACTIONS(2531), - [anon_sym_DQUOTE] = ACTIONS(2531), - [anon_sym_SQUOTE] = ACTIONS(2531), - [anon_sym_BQUOTE] = ACTIONS(2531), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2531), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2531), - [anon_sym_CARET] = ACTIONS(2531), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2531), + [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_in] = ACTIONS(1856), - [sym__newline] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_PIPE] = ACTIONS(1856), - [anon_sym_err_GT_PIPE] = ACTIONS(1856), - [anon_sym_out_GT_PIPE] = ACTIONS(1856), - [anon_sym_e_GT_PIPE] = ACTIONS(1856), - [anon_sym_o_GT_PIPE] = ACTIONS(1856), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1856), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1856), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1856), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1856), - [anon_sym_RPAREN] = ACTIONS(1856), - [anon_sym_GT2] = ACTIONS(1858), - [anon_sym_DASH2] = ACTIONS(1856), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(1856), - [anon_sym_EQ_GT] = ACTIONS(1856), - [anon_sym_STAR2] = ACTIONS(1858), - [anon_sym_and2] = ACTIONS(1856), - [anon_sym_xor2] = ACTIONS(1856), - [anon_sym_or2] = ACTIONS(1856), - [anon_sym_not_DASHin2] = ACTIONS(1856), - [anon_sym_has2] = ACTIONS(1856), - [anon_sym_not_DASHhas2] = ACTIONS(1856), - [anon_sym_starts_DASHwith2] = ACTIONS(1856), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1856), - [anon_sym_ends_DASHwith2] = ACTIONS(1856), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1856), - [anon_sym_EQ_EQ2] = ACTIONS(1856), - [anon_sym_BANG_EQ2] = ACTIONS(1856), - [anon_sym_LT2] = ACTIONS(1858), - [anon_sym_LT_EQ2] = ACTIONS(1856), - [anon_sym_GT_EQ2] = ACTIONS(1856), - [anon_sym_EQ_TILDE2] = ACTIONS(1856), - [anon_sym_BANG_TILDE2] = ACTIONS(1856), - [anon_sym_like2] = ACTIONS(1856), - [anon_sym_not_DASHlike2] = ACTIONS(1856), - [anon_sym_STAR_STAR2] = ACTIONS(1856), - [anon_sym_PLUS_PLUS2] = ACTIONS(1856), - [anon_sym_SLASH2] = ACTIONS(1858), - [anon_sym_mod2] = ACTIONS(1856), - [anon_sym_SLASH_SLASH2] = ACTIONS(1856), - [anon_sym_PLUS2] = ACTIONS(1858), - [anon_sym_bit_DASHshl2] = ACTIONS(1856), - [anon_sym_bit_DASHshr2] = ACTIONS(1856), - [anon_sym_bit_DASHand2] = ACTIONS(1856), - [anon_sym_bit_DASHxor2] = ACTIONS(1856), - [anon_sym_bit_DASHor2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1858), - [anon_sym_out_GT] = ACTIONS(1858), - [anon_sym_e_GT] = ACTIONS(1858), - [anon_sym_o_GT] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT] = ACTIONS(1858), - [anon_sym_err_GT_GT] = ACTIONS(1856), - [anon_sym_out_GT_GT] = ACTIONS(1856), - [anon_sym_e_GT_GT] = ACTIONS(1856), - [anon_sym_o_GT_GT] = ACTIONS(1856), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), + [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(1746), - [sym__newline] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_err_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_GT_PIPE] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_GT2] = ACTIONS(1748), - [anon_sym_DASH2] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_STAR2] = ACTIONS(1748), - [anon_sym_and2] = ACTIONS(1746), - [anon_sym_xor2] = ACTIONS(1746), - [anon_sym_or2] = ACTIONS(1746), - [anon_sym_not_DASHin2] = ACTIONS(1746), - [anon_sym_has2] = ACTIONS(1746), - [anon_sym_not_DASHhas2] = ACTIONS(1746), - [anon_sym_starts_DASHwith2] = ACTIONS(1746), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1746), - [anon_sym_ends_DASHwith2] = ACTIONS(1746), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1746), - [anon_sym_EQ_EQ2] = ACTIONS(1746), - [anon_sym_BANG_EQ2] = ACTIONS(1746), - [anon_sym_LT2] = ACTIONS(1748), - [anon_sym_LT_EQ2] = ACTIONS(1746), - [anon_sym_GT_EQ2] = ACTIONS(1746), - [anon_sym_EQ_TILDE2] = ACTIONS(1746), - [anon_sym_BANG_TILDE2] = ACTIONS(1746), - [anon_sym_like2] = ACTIONS(1746), - [anon_sym_not_DASHlike2] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1746), - [anon_sym_STAR_STAR2] = ACTIONS(1746), - [anon_sym_PLUS_PLUS2] = ACTIONS(1746), - [anon_sym_SLASH2] = ACTIONS(1748), - [anon_sym_mod2] = ACTIONS(1746), - [anon_sym_SLASH_SLASH2] = ACTIONS(1746), - [anon_sym_PLUS2] = ACTIONS(1748), - [anon_sym_bit_DASHshl2] = ACTIONS(1746), - [anon_sym_bit_DASHshr2] = ACTIONS(1746), - [anon_sym_bit_DASHand2] = ACTIONS(1746), - [anon_sym_bit_DASHxor2] = ACTIONS(1746), - [anon_sym_bit_DASHor2] = ACTIONS(1746), - [anon_sym_err_GT] = ACTIONS(1748), - [anon_sym_out_GT] = ACTIONS(1748), - [anon_sym_e_GT] = ACTIONS(1748), - [anon_sym_o_GT] = ACTIONS(1748), - [anon_sym_err_PLUSout_GT] = ACTIONS(1748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1748), - [anon_sym_o_PLUSe_GT] = ACTIONS(1748), - [anon_sym_e_PLUSo_GT] = ACTIONS(1748), - [anon_sym_err_GT_GT] = ACTIONS(1746), - [anon_sym_out_GT_GT] = ACTIONS(1746), - [anon_sym_e_GT_GT] = ACTIONS(1746), - [anon_sym_o_GT_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), - [sym__unquoted_pattern] = ACTIONS(1748), + [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(1716), - [sym__newline] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_err_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_GT_PIPE] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), - [anon_sym_RPAREN] = ACTIONS(1716), - [anon_sym_GT2] = ACTIONS(1629), - [anon_sym_DASH2] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1716), - [anon_sym_RBRACE] = ACTIONS(1716), - [anon_sym_EQ_GT] = ACTIONS(1716), - [anon_sym_STAR2] = ACTIONS(1629), - [anon_sym_and2] = ACTIONS(1716), - [anon_sym_xor2] = ACTIONS(1716), - [anon_sym_or2] = ACTIONS(1716), - [anon_sym_not_DASHin2] = ACTIONS(1716), - [anon_sym_has2] = ACTIONS(1716), - [anon_sym_not_DASHhas2] = ACTIONS(1716), - [anon_sym_starts_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), - [anon_sym_ends_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), - [anon_sym_EQ_EQ2] = ACTIONS(1716), - [anon_sym_BANG_EQ2] = ACTIONS(1716), - [anon_sym_LT2] = ACTIONS(1629), - [anon_sym_LT_EQ2] = ACTIONS(1716), - [anon_sym_GT_EQ2] = ACTIONS(1716), - [anon_sym_EQ_TILDE2] = ACTIONS(1716), - [anon_sym_BANG_TILDE2] = ACTIONS(1716), - [anon_sym_like2] = ACTIONS(1716), - [anon_sym_not_DASHlike2] = ACTIONS(1716), - [anon_sym_STAR_STAR2] = ACTIONS(1716), - [anon_sym_PLUS_PLUS2] = ACTIONS(1716), - [anon_sym_SLASH2] = ACTIONS(1629), - [anon_sym_mod2] = ACTIONS(1716), - [anon_sym_SLASH_SLASH2] = ACTIONS(1716), - [anon_sym_PLUS2] = ACTIONS(1629), - [anon_sym_bit_DASHshl2] = ACTIONS(1716), - [anon_sym_bit_DASHshr2] = ACTIONS(1716), - [anon_sym_bit_DASHand2] = ACTIONS(1716), - [anon_sym_bit_DASHxor2] = ACTIONS(1716), - [anon_sym_bit_DASHor2] = ACTIONS(1716), - [anon_sym_err_GT] = ACTIONS(1629), - [anon_sym_out_GT] = ACTIONS(1629), - [anon_sym_e_GT] = ACTIONS(1629), - [anon_sym_o_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT] = ACTIONS(1629), - [anon_sym_err_GT_GT] = ACTIONS(1716), - [anon_sym_out_GT_GT] = ACTIONS(1716), - [anon_sym_e_GT_GT] = ACTIONS(1716), - [anon_sym_o_GT_GT] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), + [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(2100), - [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(2100), - [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(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(2104), - [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(2104), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2104), - [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(2106), - [anon_sym_out_GT] = ACTIONS(2106), - [anon_sym_e_GT] = ACTIONS(2106), - [anon_sym_o_GT] = ACTIONS(2106), - [anon_sym_err_PLUSout_GT] = ACTIONS(2106), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2106), - [anon_sym_o_PLUSe_GT] = ACTIONS(2106), - [anon_sym_e_PLUSo_GT] = ACTIONS(2106), - [anon_sym_err_GT_GT] = ACTIONS(2102), - [anon_sym_out_GT_GT] = ACTIONS(2102), - [anon_sym_e_GT_GT] = ACTIONS(2102), - [anon_sym_o_GT_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2102), + [anon_sym_in] = ACTIONS(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(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2533), + [sym__newline] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2533), + [anon_sym_err_GT_PIPE] = ACTIONS(2533), + [anon_sym_out_GT_PIPE] = ACTIONS(2533), + [anon_sym_e_GT_PIPE] = ACTIONS(2533), + [anon_sym_o_GT_PIPE] = ACTIONS(2533), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(2533), + [anon_sym_GT2] = ACTIONS(2535), + [anon_sym_DASH2] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2533), + [anon_sym_RBRACE] = ACTIONS(2533), + [anon_sym_EQ_GT] = ACTIONS(2533), + [anon_sym_STAR2] = ACTIONS(2535), + [anon_sym_and2] = ACTIONS(2533), + [anon_sym_xor2] = ACTIONS(2533), + [anon_sym_or2] = ACTIONS(2533), + [anon_sym_not_DASHin2] = ACTIONS(2533), + [anon_sym_has2] = ACTIONS(2533), + [anon_sym_not_DASHhas2] = ACTIONS(2533), + [anon_sym_starts_DASHwith2] = ACTIONS(2533), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), + [anon_sym_ends_DASHwith2] = ACTIONS(2533), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), + [anon_sym_EQ_EQ2] = ACTIONS(2533), + [anon_sym_BANG_EQ2] = ACTIONS(2533), + [anon_sym_LT2] = ACTIONS(2535), + [anon_sym_LT_EQ2] = ACTIONS(2533), + [anon_sym_GT_EQ2] = ACTIONS(2533), + [anon_sym_EQ_TILDE2] = ACTIONS(2533), + [anon_sym_BANG_TILDE2] = ACTIONS(2533), + [anon_sym_like2] = ACTIONS(2533), + [anon_sym_not_DASHlike2] = ACTIONS(2533), + [anon_sym_STAR_STAR2] = ACTIONS(2533), + [anon_sym_PLUS_PLUS2] = ACTIONS(2533), + [anon_sym_SLASH2] = ACTIONS(2535), + [anon_sym_mod2] = ACTIONS(2533), + [anon_sym_SLASH_SLASH2] = ACTIONS(2533), + [anon_sym_PLUS2] = ACTIONS(2535), + [anon_sym_bit_DASHshl2] = ACTIONS(2533), + [anon_sym_bit_DASHshr2] = ACTIONS(2533), + [anon_sym_bit_DASHand2] = ACTIONS(2533), + [anon_sym_bit_DASHxor2] = ACTIONS(2533), + [anon_sym_bit_DASHor2] = ACTIONS(2533), + [anon_sym_err_GT] = ACTIONS(2535), + [anon_sym_out_GT] = ACTIONS(2535), + [anon_sym_e_GT] = ACTIONS(2535), + [anon_sym_o_GT] = ACTIONS(2535), + [anon_sym_err_PLUSout_GT] = ACTIONS(2535), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), + [anon_sym_o_PLUSe_GT] = ACTIONS(2535), + [anon_sym_e_PLUSo_GT] = ACTIONS(2535), + [anon_sym_err_GT_GT] = ACTIONS(2533), + [anon_sym_out_GT_GT] = ACTIONS(2533), + [anon_sym_e_GT_GT] = ACTIONS(2533), + [anon_sym_o_GT_GT] = ACTIONS(2533), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), [anon_sym_POUND] = ACTIONS(3), }, [STATE(906)] = { [sym_comment] = STATE(906), - [anon_sym_in] = ACTIONS(2535), - [sym__newline] = ACTIONS(2535), - [anon_sym_SEMI] = ACTIONS(2535), - [anon_sym_PIPE] = ACTIONS(2535), - [anon_sym_err_GT_PIPE] = ACTIONS(2535), - [anon_sym_out_GT_PIPE] = ACTIONS(2535), - [anon_sym_e_GT_PIPE] = ACTIONS(2535), - [anon_sym_o_GT_PIPE] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2535), - [anon_sym_RPAREN] = ACTIONS(2535), - [anon_sym_GT2] = ACTIONS(2537), - [anon_sym_DASH2] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2535), - [anon_sym_RBRACE] = ACTIONS(2535), - [anon_sym_EQ_GT] = ACTIONS(2535), - [anon_sym_STAR2] = ACTIONS(2537), - [anon_sym_and2] = ACTIONS(2535), - [anon_sym_xor2] = ACTIONS(2535), - [anon_sym_or2] = ACTIONS(2535), - [anon_sym_not_DASHin2] = ACTIONS(2535), - [anon_sym_has2] = ACTIONS(2535), - [anon_sym_not_DASHhas2] = ACTIONS(2535), - [anon_sym_starts_DASHwith2] = ACTIONS(2535), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2535), - [anon_sym_ends_DASHwith2] = ACTIONS(2535), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2535), - [anon_sym_EQ_EQ2] = ACTIONS(2535), - [anon_sym_BANG_EQ2] = ACTIONS(2535), - [anon_sym_LT2] = ACTIONS(2537), - [anon_sym_LT_EQ2] = ACTIONS(2535), - [anon_sym_GT_EQ2] = ACTIONS(2535), - [anon_sym_EQ_TILDE2] = ACTIONS(2535), - [anon_sym_BANG_TILDE2] = ACTIONS(2535), - [anon_sym_like2] = ACTIONS(2535), - [anon_sym_not_DASHlike2] = ACTIONS(2535), - [anon_sym_STAR_STAR2] = ACTIONS(2535), - [anon_sym_PLUS_PLUS2] = ACTIONS(2535), - [anon_sym_SLASH2] = ACTIONS(2537), - [anon_sym_mod2] = ACTIONS(2535), - [anon_sym_SLASH_SLASH2] = ACTIONS(2535), - [anon_sym_PLUS2] = ACTIONS(2537), - [anon_sym_bit_DASHshl2] = ACTIONS(2535), - [anon_sym_bit_DASHshr2] = ACTIONS(2535), - [anon_sym_bit_DASHand2] = ACTIONS(2535), - [anon_sym_bit_DASHxor2] = ACTIONS(2535), - [anon_sym_bit_DASHor2] = ACTIONS(2535), - [anon_sym_err_GT] = ACTIONS(2537), - [anon_sym_out_GT] = ACTIONS(2537), - [anon_sym_e_GT] = ACTIONS(2537), - [anon_sym_o_GT] = ACTIONS(2537), - [anon_sym_err_PLUSout_GT] = ACTIONS(2537), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2537), - [anon_sym_o_PLUSe_GT] = ACTIONS(2537), - [anon_sym_e_PLUSo_GT] = ACTIONS(2537), - [anon_sym_err_GT_GT] = ACTIONS(2535), - [anon_sym_out_GT_GT] = ACTIONS(2535), - [anon_sym_e_GT_GT] = ACTIONS(2535), - [anon_sym_o_GT_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2535), + [anon_sym_in] = ACTIONS(2537), + [sym__newline] = ACTIONS(2537), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_PIPE] = ACTIONS(2537), + [anon_sym_err_GT_PIPE] = ACTIONS(2537), + [anon_sym_out_GT_PIPE] = ACTIONS(2537), + [anon_sym_e_GT_PIPE] = ACTIONS(2537), + [anon_sym_o_GT_PIPE] = ACTIONS(2537), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2537), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2537), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2537), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2537), + [anon_sym_RPAREN] = ACTIONS(2537), + [anon_sym_GT2] = ACTIONS(2539), + [anon_sym_DASH2] = ACTIONS(2537), + [anon_sym_LBRACE] = ACTIONS(2537), + [anon_sym_RBRACE] = ACTIONS(2537), + [anon_sym_EQ_GT] = ACTIONS(2537), + [anon_sym_STAR2] = ACTIONS(2539), + [anon_sym_and2] = ACTIONS(2537), + [anon_sym_xor2] = ACTIONS(2537), + [anon_sym_or2] = ACTIONS(2537), + [anon_sym_not_DASHin2] = ACTIONS(2537), + [anon_sym_has2] = ACTIONS(2537), + [anon_sym_not_DASHhas2] = ACTIONS(2537), + [anon_sym_starts_DASHwith2] = ACTIONS(2537), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2537), + [anon_sym_ends_DASHwith2] = ACTIONS(2537), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2537), + [anon_sym_EQ_EQ2] = ACTIONS(2537), + [anon_sym_BANG_EQ2] = ACTIONS(2537), + [anon_sym_LT2] = ACTIONS(2539), + [anon_sym_LT_EQ2] = ACTIONS(2537), + [anon_sym_GT_EQ2] = ACTIONS(2537), + [anon_sym_EQ_TILDE2] = ACTIONS(2537), + [anon_sym_BANG_TILDE2] = ACTIONS(2537), + [anon_sym_like2] = ACTIONS(2537), + [anon_sym_not_DASHlike2] = ACTIONS(2537), + [anon_sym_STAR_STAR2] = ACTIONS(2537), + [anon_sym_PLUS_PLUS2] = ACTIONS(2537), + [anon_sym_SLASH2] = ACTIONS(2539), + [anon_sym_mod2] = ACTIONS(2537), + [anon_sym_SLASH_SLASH2] = ACTIONS(2537), + [anon_sym_PLUS2] = ACTIONS(2539), + [anon_sym_bit_DASHshl2] = ACTIONS(2537), + [anon_sym_bit_DASHshr2] = ACTIONS(2537), + [anon_sym_bit_DASHand2] = ACTIONS(2537), + [anon_sym_bit_DASHxor2] = ACTIONS(2537), + [anon_sym_bit_DASHor2] = ACTIONS(2537), + [anon_sym_err_GT] = ACTIONS(2539), + [anon_sym_out_GT] = ACTIONS(2539), + [anon_sym_e_GT] = ACTIONS(2539), + [anon_sym_o_GT] = ACTIONS(2539), + [anon_sym_err_PLUSout_GT] = ACTIONS(2539), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2539), + [anon_sym_o_PLUSe_GT] = ACTIONS(2539), + [anon_sym_e_PLUSo_GT] = ACTIONS(2539), + [anon_sym_err_GT_GT] = ACTIONS(2537), + [anon_sym_out_GT_GT] = ACTIONS(2537), + [anon_sym_e_GT_GT] = ACTIONS(2537), + [anon_sym_o_GT_GT] = ACTIONS(2537), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2537), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2537), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2537), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2537), [anon_sym_POUND] = ACTIONS(3), }, [STATE(907)] = { [sym_comment] = STATE(907), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, [STATE(908)] = { [sym_comment] = STATE(908), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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(909)] = { [sym_comment] = STATE(909), - [ts_builtin_sym_end] = ACTIONS(1812), - [anon_sym_in] = ACTIONS(1812), - [sym__newline] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_err_GT_PIPE] = ACTIONS(1812), - [anon_sym_out_GT_PIPE] = ACTIONS(1812), - [anon_sym_e_GT_PIPE] = ACTIONS(1812), - [anon_sym_o_GT_PIPE] = ACTIONS(1812), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1812), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1812), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1812), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1812), - [anon_sym_GT2] = ACTIONS(1814), - [anon_sym_DASH2] = ACTIONS(1812), - [anon_sym_STAR2] = ACTIONS(1814), - [anon_sym_and2] = ACTIONS(1812), - [anon_sym_xor2] = ACTIONS(1812), - [anon_sym_or2] = ACTIONS(1812), - [anon_sym_not_DASHin2] = ACTIONS(1812), - [anon_sym_has2] = ACTIONS(1812), - [anon_sym_not_DASHhas2] = ACTIONS(1812), - [anon_sym_starts_DASHwith2] = ACTIONS(1812), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1812), - [anon_sym_ends_DASHwith2] = ACTIONS(1812), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1812), - [anon_sym_EQ_EQ2] = ACTIONS(1812), - [anon_sym_BANG_EQ2] = ACTIONS(1812), - [anon_sym_LT2] = ACTIONS(1814), - [anon_sym_LT_EQ2] = ACTIONS(1812), - [anon_sym_GT_EQ2] = ACTIONS(1812), - [anon_sym_EQ_TILDE2] = ACTIONS(1812), - [anon_sym_BANG_TILDE2] = ACTIONS(1812), - [anon_sym_like2] = ACTIONS(1812), - [anon_sym_not_DASHlike2] = ACTIONS(1812), - [anon_sym_LPAREN2] = ACTIONS(1812), - [anon_sym_STAR_STAR2] = ACTIONS(1812), - [anon_sym_PLUS_PLUS2] = ACTIONS(1812), - [anon_sym_SLASH2] = ACTIONS(1814), - [anon_sym_mod2] = ACTIONS(1812), - [anon_sym_SLASH_SLASH2] = ACTIONS(1812), - [anon_sym_PLUS2] = ACTIONS(1814), - [anon_sym_bit_DASHshl2] = ACTIONS(1812), - [anon_sym_bit_DASHshr2] = ACTIONS(1812), - [anon_sym_bit_DASHand2] = ACTIONS(1812), - [anon_sym_bit_DASHxor2] = ACTIONS(1812), - [anon_sym_bit_DASHor2] = ACTIONS(1812), - [aux_sym__immediate_decimal_token5] = ACTIONS(2539), - [anon_sym_err_GT] = ACTIONS(1814), - [anon_sym_out_GT] = ACTIONS(1814), - [anon_sym_e_GT] = ACTIONS(1814), - [anon_sym_o_GT] = ACTIONS(1814), - [anon_sym_err_PLUSout_GT] = ACTIONS(1814), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1814), - [anon_sym_o_PLUSe_GT] = ACTIONS(1814), - [anon_sym_e_PLUSo_GT] = ACTIONS(1814), - [anon_sym_err_GT_GT] = ACTIONS(1812), - [anon_sym_out_GT_GT] = ACTIONS(1812), - [anon_sym_e_GT_GT] = ACTIONS(1812), - [anon_sym_o_GT_GT] = ACTIONS(1812), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1812), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1812), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1812), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1812), - [sym__unquoted_pattern] = ACTIONS(1814), + [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(910)] = { [sym_comment] = STATE(910), - [ts_builtin_sym_end] = ACTIONS(1582), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_GT2] = ACTIONS(1580), - [anon_sym_DASH2] = ACTIONS(1582), - [anon_sym_STAR2] = ACTIONS(1580), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1580), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1580), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1580), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [anon_sym_DOT_DOT2] = ACTIONS(1580), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1582), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1582), - [anon_sym_err_GT] = ACTIONS(1580), - [anon_sym_out_GT] = ACTIONS(1580), - [anon_sym_e_GT] = ACTIONS(1580), - [anon_sym_o_GT] = ACTIONS(1580), - [anon_sym_err_PLUSout_GT] = ACTIONS(1580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1580), - [anon_sym_o_PLUSe_GT] = ACTIONS(1580), - [anon_sym_e_PLUSo_GT] = ACTIONS(1580), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [anon_sym_in] = ACTIONS(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(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), @@ -115696,3586 +116270,3448 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2541), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(912)] = { - [sym_comment] = STATE(912), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(913)] = { - [aux_sym__repeat_newline] = STATE(913), - [sym_comment] = STATE(913), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_alias] = ACTIONS(1926), - [anon_sym_let] = ACTIONS(1926), - [anon_sym_mut] = ACTIONS(1926), - [anon_sym_const] = ACTIONS(1926), - [aux_sym_cmd_identifier_token1] = ACTIONS(1931), - [anon_sym_def] = ACTIONS(1926), - [anon_sym_use] = ACTIONS(1926), - [anon_sym_export_DASHenv] = ACTIONS(1926), - [anon_sym_extern] = ACTIONS(1926), - [anon_sym_module] = ACTIONS(1926), - [anon_sym_for] = ACTIONS(1926), - [anon_sym_loop] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1926), - [anon_sym_if] = ACTIONS(1926), - [anon_sym_else] = ACTIONS(1926), - [anon_sym_try] = ACTIONS(1926), - [anon_sym_catch] = ACTIONS(1926), - [anon_sym_match] = ACTIONS(1926), - [anon_sym_in] = ACTIONS(1931), - [anon_sym_true] = ACTIONS(1926), - [anon_sym_false] = ACTIONS(1926), - [anon_sym_null] = ACTIONS(1926), - [aux_sym_cmd_identifier_token3] = ACTIONS(1926), - [aux_sym_cmd_identifier_token4] = ACTIONS(1926), - [aux_sym_cmd_identifier_token5] = ACTIONS(1926), - [sym__newline] = ACTIONS(2545), - [anon_sym_PIPE] = ACTIONS(1926), - [anon_sym_err_GT_PIPE] = ACTIONS(1926), - [anon_sym_out_GT_PIPE] = ACTIONS(1926), - [anon_sym_e_GT_PIPE] = ACTIONS(1926), - [anon_sym_o_GT_PIPE] = ACTIONS(1926), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1926), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1926), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1926), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_DOLLAR] = ACTIONS(1931), - [anon_sym_DASH2] = ACTIONS(1931), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_DOT_DOT] = ACTIONS(1931), - [anon_sym_where] = ACTIONS(1926), - [aux_sym_expr_unary_token1] = ACTIONS(1926), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), - [anon_sym_DOT_DOT_LT] = ACTIONS(1926), - [aux_sym__val_number_decimal_token1] = ACTIONS(1931), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1926), - [aux_sym__val_number_decimal_token4] = ACTIONS(1926), - [aux_sym__val_number_token1] = ACTIONS(1926), - [aux_sym__val_number_token2] = ACTIONS(1926), - [aux_sym__val_number_token3] = ACTIONS(1926), - [anon_sym_0b] = ACTIONS(1931), - [anon_sym_0o] = ACTIONS(1931), - [anon_sym_0x] = ACTIONS(1931), - [sym_val_date] = ACTIONS(1926), - [anon_sym_DQUOTE] = ACTIONS(1926), - [anon_sym_SQUOTE] = ACTIONS(1926), - [anon_sym_BQUOTE] = ACTIONS(1926), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1926), - [anon_sym_CARET] = ACTIONS(1926), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1926), - }, - [STATE(914)] = { - [sym_comment] = STATE(914), - [anon_sym_in] = ACTIONS(2548), - [sym__newline] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_err_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_GT_PIPE] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2548), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_GT2] = ACTIONS(2550), - [anon_sym_DASH2] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_RBRACE] = ACTIONS(2548), - [anon_sym_EQ_GT] = ACTIONS(2548), - [anon_sym_STAR2] = ACTIONS(2550), - [anon_sym_and2] = ACTIONS(2548), - [anon_sym_xor2] = ACTIONS(2548), - [anon_sym_or2] = ACTIONS(2548), - [anon_sym_not_DASHin2] = ACTIONS(2548), - [anon_sym_has2] = ACTIONS(2548), - [anon_sym_not_DASHhas2] = ACTIONS(2548), - [anon_sym_starts_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2548), - [anon_sym_ends_DASHwith2] = ACTIONS(2548), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2548), - [anon_sym_EQ_EQ2] = ACTIONS(2548), - [anon_sym_BANG_EQ2] = ACTIONS(2548), - [anon_sym_LT2] = ACTIONS(2550), - [anon_sym_LT_EQ2] = ACTIONS(2548), - [anon_sym_GT_EQ2] = ACTIONS(2548), - [anon_sym_EQ_TILDE2] = ACTIONS(2548), - [anon_sym_BANG_TILDE2] = ACTIONS(2548), - [anon_sym_like2] = ACTIONS(2548), - [anon_sym_not_DASHlike2] = ACTIONS(2548), - [anon_sym_STAR_STAR2] = ACTIONS(2548), - [anon_sym_PLUS_PLUS2] = ACTIONS(2548), - [anon_sym_SLASH2] = ACTIONS(2550), - [anon_sym_mod2] = ACTIONS(2548), - [anon_sym_SLASH_SLASH2] = ACTIONS(2548), - [anon_sym_PLUS2] = ACTIONS(2550), - [anon_sym_bit_DASHshl2] = ACTIONS(2548), - [anon_sym_bit_DASHshr2] = ACTIONS(2548), - [anon_sym_bit_DASHand2] = ACTIONS(2548), - [anon_sym_bit_DASHxor2] = ACTIONS(2548), - [anon_sym_bit_DASHor2] = ACTIONS(2548), - [anon_sym_err_GT] = ACTIONS(2550), - [anon_sym_out_GT] = ACTIONS(2550), - [anon_sym_e_GT] = ACTIONS(2550), - [anon_sym_o_GT] = ACTIONS(2550), - [anon_sym_err_PLUSout_GT] = ACTIONS(2550), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2550), - [anon_sym_o_PLUSe_GT] = ACTIONS(2550), - [anon_sym_e_PLUSo_GT] = ACTIONS(2550), - [anon_sym_err_GT_GT] = ACTIONS(2548), - [anon_sym_out_GT_GT] = ACTIONS(2548), - [anon_sym_e_GT_GT] = ACTIONS(2548), - [anon_sym_o_GT_GT] = ACTIONS(2548), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2548), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2548), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2548), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(915)] = { - [sym_comment] = STATE(915), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [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), - [ts_builtin_sym_end] = ACTIONS(1687), - [anon_sym_in] = ACTIONS(1687), - [sym__newline] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_err_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_GT_PIPE] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), - [anon_sym_GT2] = ACTIONS(1689), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_STAR2] = ACTIONS(1689), - [anon_sym_and2] = ACTIONS(1687), - [anon_sym_xor2] = ACTIONS(1687), - [anon_sym_or2] = ACTIONS(1687), - [anon_sym_not_DASHin2] = ACTIONS(1687), - [anon_sym_has2] = ACTIONS(1687), - [anon_sym_not_DASHhas2] = ACTIONS(1687), - [anon_sym_starts_DASHwith2] = ACTIONS(1687), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1687), - [anon_sym_ends_DASHwith2] = ACTIONS(1687), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1687), - [anon_sym_EQ_EQ2] = ACTIONS(1687), - [anon_sym_BANG_EQ2] = ACTIONS(1687), - [anon_sym_LT2] = ACTIONS(1689), - [anon_sym_LT_EQ2] = ACTIONS(1687), - [anon_sym_GT_EQ2] = ACTIONS(1687), - [anon_sym_EQ_TILDE2] = ACTIONS(1687), - [anon_sym_BANG_TILDE2] = ACTIONS(1687), - [anon_sym_like2] = ACTIONS(1687), - [anon_sym_not_DASHlike2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1687), - [anon_sym_PLUS_PLUS2] = ACTIONS(1687), - [anon_sym_SLASH2] = ACTIONS(1689), - [anon_sym_mod2] = ACTIONS(1687), - [anon_sym_SLASH_SLASH2] = ACTIONS(1687), - [anon_sym_PLUS2] = ACTIONS(1689), - [anon_sym_bit_DASHshl2] = ACTIONS(1687), - [anon_sym_bit_DASHshr2] = ACTIONS(1687), - [anon_sym_bit_DASHand2] = ACTIONS(1687), - [anon_sym_bit_DASHxor2] = ACTIONS(1687), - [anon_sym_bit_DASHor2] = ACTIONS(1687), - [anon_sym_DOT_DOT2] = ACTIONS(1689), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), - [anon_sym_err_GT] = ACTIONS(1689), - [anon_sym_out_GT] = ACTIONS(1689), - [anon_sym_e_GT] = ACTIONS(1689), - [anon_sym_o_GT] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT] = ACTIONS(1689), - [anon_sym_err_GT_GT] = ACTIONS(1687), - [anon_sym_out_GT_GT] = ACTIONS(1687), - [anon_sym_e_GT_GT] = ACTIONS(1687), - [anon_sym_o_GT_GT] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), - [anon_sym_POUND] = ACTIONS(3), + [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(2552), - [sym__newline] = ACTIONS(2552), - [anon_sym_SEMI] = ACTIONS(2552), - [anon_sym_PIPE] = ACTIONS(2552), - [anon_sym_err_GT_PIPE] = ACTIONS(2552), - [anon_sym_out_GT_PIPE] = ACTIONS(2552), - [anon_sym_e_GT_PIPE] = ACTIONS(2552), - [anon_sym_o_GT_PIPE] = ACTIONS(2552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2552), - [anon_sym_RPAREN] = ACTIONS(2552), - [anon_sym_GT2] = ACTIONS(2554), - [anon_sym_DASH2] = ACTIONS(2552), - [anon_sym_LBRACE] = ACTIONS(2552), - [anon_sym_RBRACE] = ACTIONS(2552), - [anon_sym_EQ_GT] = ACTIONS(2552), - [anon_sym_STAR2] = ACTIONS(2554), - [anon_sym_and2] = ACTIONS(2552), - [anon_sym_xor2] = ACTIONS(2552), - [anon_sym_or2] = ACTIONS(2552), - [anon_sym_not_DASHin2] = ACTIONS(2552), - [anon_sym_has2] = ACTIONS(2552), - [anon_sym_not_DASHhas2] = ACTIONS(2552), - [anon_sym_starts_DASHwith2] = ACTIONS(2552), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2552), - [anon_sym_ends_DASHwith2] = ACTIONS(2552), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2552), - [anon_sym_EQ_EQ2] = ACTIONS(2552), - [anon_sym_BANG_EQ2] = ACTIONS(2552), - [anon_sym_LT2] = ACTIONS(2554), - [anon_sym_LT_EQ2] = ACTIONS(2552), - [anon_sym_GT_EQ2] = ACTIONS(2552), - [anon_sym_EQ_TILDE2] = ACTIONS(2552), - [anon_sym_BANG_TILDE2] = ACTIONS(2552), - [anon_sym_like2] = ACTIONS(2552), - [anon_sym_not_DASHlike2] = ACTIONS(2552), - [anon_sym_STAR_STAR2] = ACTIONS(2552), - [anon_sym_PLUS_PLUS2] = ACTIONS(2552), - [anon_sym_SLASH2] = ACTIONS(2554), - [anon_sym_mod2] = ACTIONS(2552), - [anon_sym_SLASH_SLASH2] = ACTIONS(2552), - [anon_sym_PLUS2] = ACTIONS(2554), - [anon_sym_bit_DASHshl2] = ACTIONS(2552), - [anon_sym_bit_DASHshr2] = ACTIONS(2552), - [anon_sym_bit_DASHand2] = ACTIONS(2552), - [anon_sym_bit_DASHxor2] = ACTIONS(2552), - [anon_sym_bit_DASHor2] = ACTIONS(2552), - [anon_sym_err_GT] = ACTIONS(2554), - [anon_sym_out_GT] = ACTIONS(2554), - [anon_sym_e_GT] = ACTIONS(2554), - [anon_sym_o_GT] = ACTIONS(2554), - [anon_sym_err_PLUSout_GT] = ACTIONS(2554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2554), - [anon_sym_o_PLUSe_GT] = ACTIONS(2554), - [anon_sym_e_PLUSo_GT] = ACTIONS(2554), - [anon_sym_err_GT_GT] = ACTIONS(2552), - [anon_sym_out_GT_GT] = ACTIONS(2552), - [anon_sym_e_GT_GT] = ACTIONS(2552), - [anon_sym_o_GT_GT] = ACTIONS(2552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2552), + [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), - [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(1008), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_STAR2] = ACTIONS(1008), - [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(1008), - [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(2556), - [anon_sym_STAR_STAR2] = ACTIONS(1030), - [anon_sym_PLUS_PLUS2] = ACTIONS(1030), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1030), - [anon_sym_SLASH_SLASH2] = ACTIONS(1030), - [anon_sym_PLUS2] = ACTIONS(1008), - [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(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(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(2558), - [anon_sym_POUND] = ACTIONS(3), + [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(919)] = { [sym_comment] = STATE(919), - [anon_sym_in] = ACTIONS(2560), - [sym__newline] = ACTIONS(2560), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2560), - [anon_sym_err_GT_PIPE] = ACTIONS(2560), - [anon_sym_out_GT_PIPE] = ACTIONS(2560), - [anon_sym_e_GT_PIPE] = ACTIONS(2560), - [anon_sym_o_GT_PIPE] = ACTIONS(2560), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2560), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2560), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2560), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2560), - [anon_sym_RPAREN] = ACTIONS(2560), - [anon_sym_GT2] = ACTIONS(2562), - [anon_sym_DASH2] = ACTIONS(2560), - [anon_sym_RBRACE] = ACTIONS(2560), - [anon_sym_STAR2] = ACTIONS(2562), - [anon_sym_and2] = ACTIONS(2560), - [anon_sym_xor2] = ACTIONS(2560), - [anon_sym_or2] = ACTIONS(2560), - [anon_sym_not_DASHin2] = ACTIONS(2560), - [anon_sym_has2] = ACTIONS(2560), - [anon_sym_not_DASHhas2] = ACTIONS(2560), - [anon_sym_starts_DASHwith2] = ACTIONS(2560), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2560), - [anon_sym_ends_DASHwith2] = ACTIONS(2560), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2560), - [anon_sym_EQ_EQ2] = ACTIONS(2560), - [anon_sym_BANG_EQ2] = ACTIONS(2560), - [anon_sym_LT2] = ACTIONS(2562), - [anon_sym_LT_EQ2] = ACTIONS(2560), - [anon_sym_GT_EQ2] = ACTIONS(2560), - [anon_sym_EQ_TILDE2] = ACTIONS(2560), - [anon_sym_BANG_TILDE2] = ACTIONS(2560), - [anon_sym_like2] = ACTIONS(2560), - [anon_sym_not_DASHlike2] = ACTIONS(2560), - [anon_sym_LPAREN2] = ACTIONS(2564), - [anon_sym_STAR_STAR2] = ACTIONS(2560), - [anon_sym_PLUS_PLUS2] = ACTIONS(2560), - [anon_sym_SLASH2] = ACTIONS(2562), - [anon_sym_mod2] = ACTIONS(2560), - [anon_sym_SLASH_SLASH2] = ACTIONS(2560), - [anon_sym_PLUS2] = ACTIONS(2562), - [anon_sym_bit_DASHshl2] = ACTIONS(2560), - [anon_sym_bit_DASHshr2] = ACTIONS(2560), - [anon_sym_bit_DASHand2] = ACTIONS(2560), - [anon_sym_bit_DASHxor2] = ACTIONS(2560), - [anon_sym_bit_DASHor2] = ACTIONS(2560), - [anon_sym_err_GT] = ACTIONS(2562), - [anon_sym_out_GT] = ACTIONS(2562), - [anon_sym_e_GT] = ACTIONS(2562), - [anon_sym_o_GT] = ACTIONS(2562), - [anon_sym_err_PLUSout_GT] = ACTIONS(2562), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2562), - [anon_sym_o_PLUSe_GT] = ACTIONS(2562), - [anon_sym_e_PLUSo_GT] = ACTIONS(2562), - [anon_sym_err_GT_GT] = ACTIONS(2560), - [anon_sym_out_GT_GT] = ACTIONS(2560), - [anon_sym_e_GT_GT] = ACTIONS(2560), - [anon_sym_o_GT_GT] = ACTIONS(2560), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2560), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2560), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2560), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2560), - [sym__unquoted_pattern] = ACTIONS(1691), + [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), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [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(2566), - [sym__newline] = ACTIONS(2566), - [anon_sym_SEMI] = ACTIONS(2566), - [anon_sym_PIPE] = ACTIONS(2566), - [anon_sym_err_GT_PIPE] = ACTIONS(2566), - [anon_sym_out_GT_PIPE] = ACTIONS(2566), - [anon_sym_e_GT_PIPE] = ACTIONS(2566), - [anon_sym_o_GT_PIPE] = ACTIONS(2566), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2566), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2566), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2566), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2566), - [anon_sym_RPAREN] = ACTIONS(2566), - [anon_sym_GT2] = ACTIONS(2568), - [anon_sym_DASH2] = ACTIONS(2566), - [anon_sym_LBRACE] = ACTIONS(2566), - [anon_sym_RBRACE] = ACTIONS(2566), - [anon_sym_EQ_GT] = ACTIONS(2566), - [anon_sym_STAR2] = ACTIONS(2568), - [anon_sym_and2] = ACTIONS(2566), - [anon_sym_xor2] = ACTIONS(2566), - [anon_sym_or2] = ACTIONS(2566), - [anon_sym_not_DASHin2] = ACTIONS(2566), - [anon_sym_has2] = ACTIONS(2566), - [anon_sym_not_DASHhas2] = ACTIONS(2566), - [anon_sym_starts_DASHwith2] = ACTIONS(2566), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2566), - [anon_sym_ends_DASHwith2] = ACTIONS(2566), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2566), - [anon_sym_EQ_EQ2] = ACTIONS(2566), - [anon_sym_BANG_EQ2] = ACTIONS(2566), - [anon_sym_LT2] = ACTIONS(2568), - [anon_sym_LT_EQ2] = ACTIONS(2566), - [anon_sym_GT_EQ2] = ACTIONS(2566), - [anon_sym_EQ_TILDE2] = ACTIONS(2566), - [anon_sym_BANG_TILDE2] = ACTIONS(2566), - [anon_sym_like2] = ACTIONS(2566), - [anon_sym_not_DASHlike2] = ACTIONS(2566), - [anon_sym_STAR_STAR2] = ACTIONS(2566), - [anon_sym_PLUS_PLUS2] = ACTIONS(2566), - [anon_sym_SLASH2] = ACTIONS(2568), - [anon_sym_mod2] = ACTIONS(2566), - [anon_sym_SLASH_SLASH2] = ACTIONS(2566), - [anon_sym_PLUS2] = ACTIONS(2568), - [anon_sym_bit_DASHshl2] = ACTIONS(2566), - [anon_sym_bit_DASHshr2] = ACTIONS(2566), - [anon_sym_bit_DASHand2] = ACTIONS(2566), - [anon_sym_bit_DASHxor2] = ACTIONS(2566), - [anon_sym_bit_DASHor2] = ACTIONS(2566), - [anon_sym_err_GT] = ACTIONS(2568), - [anon_sym_out_GT] = ACTIONS(2568), - [anon_sym_e_GT] = ACTIONS(2568), - [anon_sym_o_GT] = ACTIONS(2568), - [anon_sym_err_PLUSout_GT] = ACTIONS(2568), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2568), - [anon_sym_o_PLUSe_GT] = ACTIONS(2568), - [anon_sym_e_PLUSo_GT] = ACTIONS(2568), - [anon_sym_err_GT_GT] = ACTIONS(2566), - [anon_sym_out_GT_GT] = ACTIONS(2566), - [anon_sym_e_GT_GT] = ACTIONS(2566), - [anon_sym_o_GT_GT] = ACTIONS(2566), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2566), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2566), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2566), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2566), + [anon_sym_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(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(2556), - [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(2558), + [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(2566), - [sym__newline] = ACTIONS(2566), - [anon_sym_SEMI] = ACTIONS(2566), - [anon_sym_PIPE] = ACTIONS(2566), - [anon_sym_err_GT_PIPE] = ACTIONS(2566), - [anon_sym_out_GT_PIPE] = ACTIONS(2566), - [anon_sym_e_GT_PIPE] = ACTIONS(2566), - [anon_sym_o_GT_PIPE] = ACTIONS(2566), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2566), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2566), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2566), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2566), - [anon_sym_RPAREN] = ACTIONS(2566), - [anon_sym_GT2] = ACTIONS(2568), - [anon_sym_DASH2] = ACTIONS(2566), - [anon_sym_RBRACE] = ACTIONS(2566), - [anon_sym_STAR2] = ACTIONS(2568), - [anon_sym_and2] = ACTIONS(2566), - [anon_sym_xor2] = ACTIONS(2566), - [anon_sym_or2] = ACTIONS(2566), - [anon_sym_not_DASHin2] = ACTIONS(2566), - [anon_sym_has2] = ACTIONS(2566), - [anon_sym_not_DASHhas2] = ACTIONS(2566), - [anon_sym_starts_DASHwith2] = ACTIONS(2566), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2566), - [anon_sym_ends_DASHwith2] = ACTIONS(2566), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2566), - [anon_sym_EQ_EQ2] = ACTIONS(2566), - [anon_sym_BANG_EQ2] = ACTIONS(2566), - [anon_sym_LT2] = ACTIONS(2568), - [anon_sym_LT_EQ2] = ACTIONS(2566), - [anon_sym_GT_EQ2] = ACTIONS(2566), - [anon_sym_EQ_TILDE2] = ACTIONS(2566), - [anon_sym_BANG_TILDE2] = ACTIONS(2566), - [anon_sym_like2] = ACTIONS(2566), - [anon_sym_not_DASHlike2] = ACTIONS(2566), - [anon_sym_LPAREN2] = ACTIONS(2025), - [anon_sym_STAR_STAR2] = ACTIONS(2566), - [anon_sym_PLUS_PLUS2] = ACTIONS(2566), - [anon_sym_SLASH2] = ACTIONS(2568), - [anon_sym_mod2] = ACTIONS(2566), - [anon_sym_SLASH_SLASH2] = ACTIONS(2566), - [anon_sym_PLUS2] = ACTIONS(2568), - [anon_sym_bit_DASHshl2] = ACTIONS(2566), - [anon_sym_bit_DASHshr2] = ACTIONS(2566), - [anon_sym_bit_DASHand2] = ACTIONS(2566), - [anon_sym_bit_DASHxor2] = ACTIONS(2566), - [anon_sym_bit_DASHor2] = ACTIONS(2566), - [anon_sym_err_GT] = ACTIONS(2568), - [anon_sym_out_GT] = ACTIONS(2568), - [anon_sym_e_GT] = ACTIONS(2568), - [anon_sym_o_GT] = ACTIONS(2568), - [anon_sym_err_PLUSout_GT] = ACTIONS(2568), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2568), - [anon_sym_o_PLUSe_GT] = ACTIONS(2568), - [anon_sym_e_PLUSo_GT] = ACTIONS(2568), - [anon_sym_err_GT_GT] = ACTIONS(2566), - [anon_sym_out_GT_GT] = ACTIONS(2566), - [anon_sym_e_GT_GT] = ACTIONS(2566), - [anon_sym_o_GT_GT] = ACTIONS(2566), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2566), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2566), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2566), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2566), - [sym__unquoted_pattern] = ACTIONS(2031), + [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(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [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(2570), - [sym__newline] = ACTIONS(2570), - [anon_sym_SEMI] = ACTIONS(2570), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_err_GT_PIPE] = ACTIONS(2570), - [anon_sym_out_GT_PIPE] = ACTIONS(2570), - [anon_sym_e_GT_PIPE] = ACTIONS(2570), - [anon_sym_o_GT_PIPE] = ACTIONS(2570), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2570), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2570), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2570), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2570), - [anon_sym_RPAREN] = ACTIONS(2570), - [anon_sym_GT2] = ACTIONS(2572), - [anon_sym_DASH2] = ACTIONS(2570), - [anon_sym_RBRACE] = ACTIONS(2570), - [anon_sym_STAR2] = ACTIONS(2572), - [anon_sym_and2] = ACTIONS(2570), - [anon_sym_xor2] = ACTIONS(2570), - [anon_sym_or2] = ACTIONS(2570), - [anon_sym_not_DASHin2] = ACTIONS(2570), - [anon_sym_has2] = ACTIONS(2570), - [anon_sym_not_DASHhas2] = ACTIONS(2570), - [anon_sym_starts_DASHwith2] = ACTIONS(2570), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2570), - [anon_sym_ends_DASHwith2] = ACTIONS(2570), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2570), - [anon_sym_EQ_EQ2] = ACTIONS(2570), - [anon_sym_BANG_EQ2] = ACTIONS(2570), - [anon_sym_LT2] = ACTIONS(2572), - [anon_sym_LT_EQ2] = ACTIONS(2570), - [anon_sym_GT_EQ2] = ACTIONS(2570), - [anon_sym_EQ_TILDE2] = ACTIONS(2570), - [anon_sym_BANG_TILDE2] = ACTIONS(2570), - [anon_sym_like2] = ACTIONS(2570), - [anon_sym_not_DASHlike2] = ACTIONS(2570), - [anon_sym_LPAREN2] = ACTIONS(2574), - [anon_sym_STAR_STAR2] = ACTIONS(2570), - [anon_sym_PLUS_PLUS2] = ACTIONS(2570), - [anon_sym_SLASH2] = ACTIONS(2572), - [anon_sym_mod2] = ACTIONS(2570), - [anon_sym_SLASH_SLASH2] = ACTIONS(2570), - [anon_sym_PLUS2] = ACTIONS(2572), - [anon_sym_bit_DASHshl2] = ACTIONS(2570), - [anon_sym_bit_DASHshr2] = ACTIONS(2570), - [anon_sym_bit_DASHand2] = ACTIONS(2570), - [anon_sym_bit_DASHxor2] = ACTIONS(2570), - [anon_sym_bit_DASHor2] = ACTIONS(2570), - [anon_sym_err_GT] = ACTIONS(2572), - [anon_sym_out_GT] = ACTIONS(2572), - [anon_sym_e_GT] = ACTIONS(2572), - [anon_sym_o_GT] = ACTIONS(2572), - [anon_sym_err_PLUSout_GT] = ACTIONS(2572), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2572), - [anon_sym_o_PLUSe_GT] = ACTIONS(2572), - [anon_sym_e_PLUSo_GT] = ACTIONS(2572), - [anon_sym_err_GT_GT] = ACTIONS(2570), - [anon_sym_out_GT_GT] = ACTIONS(2570), - [anon_sym_e_GT_GT] = ACTIONS(2570), - [anon_sym_o_GT_GT] = ACTIONS(2570), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2570), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2570), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2570), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2570), - [sym__unquoted_pattern] = ACTIONS(2576), + [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(2021), - [sym__newline] = ACTIONS(2021), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_err_GT_PIPE] = ACTIONS(2021), - [anon_sym_out_GT_PIPE] = ACTIONS(2021), - [anon_sym_e_GT_PIPE] = ACTIONS(2021), - [anon_sym_o_GT_PIPE] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2021), - [anon_sym_GT2] = ACTIONS(2023), - [anon_sym_DASH2] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2021), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_EQ_GT] = ACTIONS(2021), - [anon_sym_STAR2] = ACTIONS(2023), - [anon_sym_and2] = ACTIONS(2021), - [anon_sym_xor2] = ACTIONS(2021), - [anon_sym_or2] = ACTIONS(2021), - [anon_sym_not_DASHin2] = ACTIONS(2021), - [anon_sym_has2] = ACTIONS(2021), - [anon_sym_not_DASHhas2] = ACTIONS(2021), - [anon_sym_starts_DASHwith2] = ACTIONS(2021), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2021), - [anon_sym_ends_DASHwith2] = ACTIONS(2021), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2021), - [anon_sym_EQ_EQ2] = ACTIONS(2021), - [anon_sym_BANG_EQ2] = ACTIONS(2021), - [anon_sym_LT2] = ACTIONS(2023), - [anon_sym_LT_EQ2] = ACTIONS(2021), - [anon_sym_GT_EQ2] = ACTIONS(2021), - [anon_sym_EQ_TILDE2] = ACTIONS(2021), - [anon_sym_BANG_TILDE2] = ACTIONS(2021), - [anon_sym_like2] = ACTIONS(2021), - [anon_sym_not_DASHlike2] = ACTIONS(2021), - [anon_sym_STAR_STAR2] = ACTIONS(2021), - [anon_sym_PLUS_PLUS2] = ACTIONS(2021), - [anon_sym_SLASH2] = ACTIONS(2023), - [anon_sym_mod2] = ACTIONS(2021), - [anon_sym_SLASH_SLASH2] = ACTIONS(2021), - [anon_sym_PLUS2] = ACTIONS(2023), - [anon_sym_bit_DASHshl2] = ACTIONS(2021), - [anon_sym_bit_DASHshr2] = ACTIONS(2021), - [anon_sym_bit_DASHand2] = ACTIONS(2021), - [anon_sym_bit_DASHxor2] = ACTIONS(2021), - [anon_sym_bit_DASHor2] = ACTIONS(2021), - [anon_sym_err_GT] = ACTIONS(2023), - [anon_sym_out_GT] = ACTIONS(2023), - [anon_sym_e_GT] = ACTIONS(2023), - [anon_sym_o_GT] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT] = ACTIONS(2023), - [anon_sym_err_GT_GT] = ACTIONS(2021), - [anon_sym_out_GT_GT] = ACTIONS(2021), - [anon_sym_e_GT_GT] = ACTIONS(2021), - [anon_sym_o_GT_GT] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2021), + [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(2578), - [sym__newline] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_err_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_GT_PIPE] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), - [anon_sym_RPAREN] = ACTIONS(2578), - [anon_sym_GT2] = ACTIONS(2580), - [anon_sym_DASH2] = ACTIONS(2578), - [anon_sym_LBRACE] = ACTIONS(2578), - [anon_sym_RBRACE] = ACTIONS(2578), - [anon_sym_EQ_GT] = ACTIONS(2578), - [anon_sym_STAR2] = ACTIONS(2580), - [anon_sym_and2] = ACTIONS(2578), - [anon_sym_xor2] = ACTIONS(2578), - [anon_sym_or2] = ACTIONS(2578), - [anon_sym_not_DASHin2] = ACTIONS(2578), - [anon_sym_has2] = ACTIONS(2578), - [anon_sym_not_DASHhas2] = ACTIONS(2578), - [anon_sym_starts_DASHwith2] = ACTIONS(2578), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2578), - [anon_sym_ends_DASHwith2] = ACTIONS(2578), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2578), - [anon_sym_EQ_EQ2] = ACTIONS(2578), - [anon_sym_BANG_EQ2] = ACTIONS(2578), - [anon_sym_LT2] = ACTIONS(2580), - [anon_sym_LT_EQ2] = ACTIONS(2578), - [anon_sym_GT_EQ2] = ACTIONS(2578), - [anon_sym_EQ_TILDE2] = ACTIONS(2578), - [anon_sym_BANG_TILDE2] = ACTIONS(2578), - [anon_sym_like2] = ACTIONS(2578), - [anon_sym_not_DASHlike2] = ACTIONS(2578), - [anon_sym_STAR_STAR2] = ACTIONS(2578), - [anon_sym_PLUS_PLUS2] = ACTIONS(2578), - [anon_sym_SLASH2] = ACTIONS(2580), - [anon_sym_mod2] = ACTIONS(2578), - [anon_sym_SLASH_SLASH2] = ACTIONS(2578), - [anon_sym_PLUS2] = ACTIONS(2580), - [anon_sym_bit_DASHshl2] = ACTIONS(2578), - [anon_sym_bit_DASHshr2] = ACTIONS(2578), - [anon_sym_bit_DASHand2] = ACTIONS(2578), - [anon_sym_bit_DASHxor2] = ACTIONS(2578), - [anon_sym_bit_DASHor2] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2578), - [anon_sym_out_GT_GT] = ACTIONS(2578), - [anon_sym_e_GT_GT] = ACTIONS(2578), - [anon_sym_o_GT_GT] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), + [anon_sym_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), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [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(2582), - [sym__newline] = ACTIONS(2582), - [anon_sym_SEMI] = ACTIONS(2582), - [anon_sym_PIPE] = ACTIONS(2582), - [anon_sym_err_GT_PIPE] = ACTIONS(2582), - [anon_sym_out_GT_PIPE] = ACTIONS(2582), - [anon_sym_e_GT_PIPE] = ACTIONS(2582), - [anon_sym_o_GT_PIPE] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2582), - [anon_sym_RPAREN] = ACTIONS(2582), - [anon_sym_GT2] = ACTIONS(2584), - [anon_sym_DASH2] = ACTIONS(2582), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_RBRACE] = ACTIONS(2582), - [anon_sym_EQ_GT] = ACTIONS(2582), - [anon_sym_STAR2] = ACTIONS(2584), - [anon_sym_and2] = ACTIONS(2582), - [anon_sym_xor2] = ACTIONS(2582), - [anon_sym_or2] = ACTIONS(2582), - [anon_sym_not_DASHin2] = ACTIONS(2582), - [anon_sym_has2] = ACTIONS(2582), - [anon_sym_not_DASHhas2] = ACTIONS(2582), - [anon_sym_starts_DASHwith2] = ACTIONS(2582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2582), - [anon_sym_ends_DASHwith2] = ACTIONS(2582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2582), - [anon_sym_EQ_EQ2] = ACTIONS(2582), - [anon_sym_BANG_EQ2] = ACTIONS(2582), - [anon_sym_LT2] = ACTIONS(2584), - [anon_sym_LT_EQ2] = ACTIONS(2582), - [anon_sym_GT_EQ2] = ACTIONS(2582), - [anon_sym_EQ_TILDE2] = ACTIONS(2582), - [anon_sym_BANG_TILDE2] = ACTIONS(2582), - [anon_sym_like2] = ACTIONS(2582), - [anon_sym_not_DASHlike2] = ACTIONS(2582), - [anon_sym_STAR_STAR2] = ACTIONS(2582), - [anon_sym_PLUS_PLUS2] = ACTIONS(2582), - [anon_sym_SLASH2] = ACTIONS(2584), - [anon_sym_mod2] = ACTIONS(2582), - [anon_sym_SLASH_SLASH2] = ACTIONS(2582), - [anon_sym_PLUS2] = ACTIONS(2584), - [anon_sym_bit_DASHshl2] = ACTIONS(2582), - [anon_sym_bit_DASHshr2] = ACTIONS(2582), - [anon_sym_bit_DASHand2] = ACTIONS(2582), - [anon_sym_bit_DASHxor2] = ACTIONS(2582), - [anon_sym_bit_DASHor2] = ACTIONS(2582), - [anon_sym_err_GT] = ACTIONS(2584), - [anon_sym_out_GT] = ACTIONS(2584), - [anon_sym_e_GT] = ACTIONS(2584), - [anon_sym_o_GT] = ACTIONS(2584), - [anon_sym_err_PLUSout_GT] = ACTIONS(2584), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2584), - [anon_sym_o_PLUSe_GT] = ACTIONS(2584), - [anon_sym_e_PLUSo_GT] = ACTIONS(2584), - [anon_sym_err_GT_GT] = ACTIONS(2582), - [anon_sym_out_GT_GT] = ACTIONS(2582), - [anon_sym_e_GT_GT] = ACTIONS(2582), - [anon_sym_o_GT_GT] = ACTIONS(2582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), + [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), - [ts_builtin_sym_end] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1716), - [sym__newline] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_err_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_GT_PIPE] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), - [anon_sym_GT2] = ACTIONS(1629), - [anon_sym_DASH2] = ACTIONS(1716), - [anon_sym_STAR2] = ACTIONS(1629), - [anon_sym_and2] = ACTIONS(1716), - [anon_sym_xor2] = ACTIONS(1716), - [anon_sym_or2] = ACTIONS(1716), - [anon_sym_not_DASHin2] = ACTIONS(1716), - [anon_sym_has2] = ACTIONS(1716), - [anon_sym_not_DASHhas2] = ACTIONS(1716), - [anon_sym_starts_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), - [anon_sym_ends_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), - [anon_sym_EQ_EQ2] = ACTIONS(1716), - [anon_sym_BANG_EQ2] = ACTIONS(1716), - [anon_sym_LT2] = ACTIONS(1629), - [anon_sym_LT_EQ2] = ACTIONS(1716), - [anon_sym_GT_EQ2] = ACTIONS(1716), - [anon_sym_EQ_TILDE2] = ACTIONS(1716), - [anon_sym_BANG_TILDE2] = ACTIONS(1716), - [anon_sym_like2] = ACTIONS(1716), - [anon_sym_not_DASHlike2] = ACTIONS(1716), - [anon_sym_STAR_STAR2] = ACTIONS(1716), - [anon_sym_PLUS_PLUS2] = ACTIONS(1716), - [anon_sym_SLASH2] = ACTIONS(1629), - [anon_sym_mod2] = ACTIONS(1716), - [anon_sym_SLASH_SLASH2] = ACTIONS(1716), - [anon_sym_PLUS2] = ACTIONS(1629), - [anon_sym_bit_DASHshl2] = ACTIONS(1716), - [anon_sym_bit_DASHshr2] = ACTIONS(1716), - [anon_sym_bit_DASHand2] = ACTIONS(1716), - [anon_sym_bit_DASHxor2] = ACTIONS(1716), - [anon_sym_bit_DASHor2] = ACTIONS(1716), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), - [anon_sym_err_GT] = ACTIONS(1629), - [anon_sym_out_GT] = ACTIONS(1629), - [anon_sym_e_GT] = ACTIONS(1629), - [anon_sym_o_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT] = ACTIONS(1629), - [anon_sym_err_GT_GT] = ACTIONS(1716), - [anon_sym_out_GT_GT] = ACTIONS(1716), - [anon_sym_e_GT_GT] = ACTIONS(1716), - [anon_sym_o_GT_GT] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), + [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(2011), - [sym__newline] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_err_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_GT_PIPE] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), - [anon_sym_RPAREN] = ACTIONS(2011), - [anon_sym_GT2] = ACTIONS(2013), - [anon_sym_DASH2] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_RBRACE] = ACTIONS(2011), - [anon_sym_EQ_GT] = ACTIONS(2011), - [anon_sym_STAR2] = ACTIONS(2013), - [anon_sym_and2] = ACTIONS(2011), - [anon_sym_xor2] = ACTIONS(2011), - [anon_sym_or2] = ACTIONS(2011), - [anon_sym_not_DASHin2] = ACTIONS(2011), - [anon_sym_has2] = ACTIONS(2011), - [anon_sym_not_DASHhas2] = ACTIONS(2011), - [anon_sym_starts_DASHwith2] = ACTIONS(2011), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), - [anon_sym_ends_DASHwith2] = ACTIONS(2011), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), - [anon_sym_EQ_EQ2] = ACTIONS(2011), - [anon_sym_BANG_EQ2] = ACTIONS(2011), - [anon_sym_LT2] = ACTIONS(2013), - [anon_sym_LT_EQ2] = ACTIONS(2011), - [anon_sym_GT_EQ2] = ACTIONS(2011), - [anon_sym_EQ_TILDE2] = ACTIONS(2011), - [anon_sym_BANG_TILDE2] = ACTIONS(2011), - [anon_sym_like2] = ACTIONS(2011), - [anon_sym_not_DASHlike2] = ACTIONS(2011), - [anon_sym_STAR_STAR2] = ACTIONS(2011), - [anon_sym_PLUS_PLUS2] = ACTIONS(2011), - [anon_sym_SLASH2] = ACTIONS(2013), - [anon_sym_mod2] = ACTIONS(2011), - [anon_sym_SLASH_SLASH2] = ACTIONS(2011), - [anon_sym_PLUS2] = ACTIONS(2013), - [anon_sym_bit_DASHshl2] = ACTIONS(2011), - [anon_sym_bit_DASHshr2] = ACTIONS(2011), - [anon_sym_bit_DASHand2] = ACTIONS(2011), - [anon_sym_bit_DASHxor2] = ACTIONS(2011), - [anon_sym_bit_DASHor2] = ACTIONS(2011), - [anon_sym_err_GT] = ACTIONS(2013), - [anon_sym_out_GT] = ACTIONS(2013), - [anon_sym_e_GT] = ACTIONS(2013), - [anon_sym_o_GT] = ACTIONS(2013), - [anon_sym_err_PLUSout_GT] = ACTIONS(2013), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), - [anon_sym_o_PLUSe_GT] = ACTIONS(2013), - [anon_sym_e_PLUSo_GT] = ACTIONS(2013), - [anon_sym_err_GT_GT] = ACTIONS(2011), - [anon_sym_out_GT_GT] = ACTIONS(2011), - [anon_sym_e_GT_GT] = ACTIONS(2011), - [anon_sym_o_GT_GT] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [anon_sym_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), - [anon_sym_in] = ACTIONS(2586), - [sym__newline] = ACTIONS(2586), - [anon_sym_SEMI] = ACTIONS(2586), - [anon_sym_PIPE] = ACTIONS(2586), - [anon_sym_err_GT_PIPE] = ACTIONS(2586), - [anon_sym_out_GT_PIPE] = ACTIONS(2586), - [anon_sym_e_GT_PIPE] = ACTIONS(2586), - [anon_sym_o_GT_PIPE] = ACTIONS(2586), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2586), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2586), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2586), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(2586), - [anon_sym_GT2] = ACTIONS(2588), - [anon_sym_DASH2] = ACTIONS(2586), - [anon_sym_LBRACE] = ACTIONS(2586), - [anon_sym_RBRACE] = ACTIONS(2586), - [anon_sym_EQ_GT] = ACTIONS(2586), - [anon_sym_STAR2] = ACTIONS(2588), - [anon_sym_and2] = ACTIONS(2586), - [anon_sym_xor2] = ACTIONS(2586), - [anon_sym_or2] = ACTIONS(2586), - [anon_sym_not_DASHin2] = ACTIONS(2586), - [anon_sym_has2] = ACTIONS(2586), - [anon_sym_not_DASHhas2] = ACTIONS(2586), - [anon_sym_starts_DASHwith2] = ACTIONS(2586), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2586), - [anon_sym_ends_DASHwith2] = ACTIONS(2586), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2586), - [anon_sym_EQ_EQ2] = ACTIONS(2586), - [anon_sym_BANG_EQ2] = ACTIONS(2586), - [anon_sym_LT2] = ACTIONS(2588), - [anon_sym_LT_EQ2] = ACTIONS(2586), - [anon_sym_GT_EQ2] = ACTIONS(2586), - [anon_sym_EQ_TILDE2] = ACTIONS(2586), - [anon_sym_BANG_TILDE2] = ACTIONS(2586), - [anon_sym_like2] = ACTIONS(2586), - [anon_sym_not_DASHlike2] = ACTIONS(2586), - [anon_sym_STAR_STAR2] = ACTIONS(2586), - [anon_sym_PLUS_PLUS2] = ACTIONS(2586), - [anon_sym_SLASH2] = ACTIONS(2588), - [anon_sym_mod2] = ACTIONS(2586), - [anon_sym_SLASH_SLASH2] = ACTIONS(2586), - [anon_sym_PLUS2] = ACTIONS(2588), - [anon_sym_bit_DASHshl2] = ACTIONS(2586), - [anon_sym_bit_DASHshr2] = ACTIONS(2586), - [anon_sym_bit_DASHand2] = ACTIONS(2586), - [anon_sym_bit_DASHxor2] = ACTIONS(2586), - [anon_sym_bit_DASHor2] = ACTIONS(2586), - [anon_sym_err_GT] = ACTIONS(2588), - [anon_sym_out_GT] = ACTIONS(2588), - [anon_sym_e_GT] = ACTIONS(2588), - [anon_sym_o_GT] = ACTIONS(2588), - [anon_sym_err_PLUSout_GT] = ACTIONS(2588), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2588), - [anon_sym_o_PLUSe_GT] = ACTIONS(2588), - [anon_sym_e_PLUSo_GT] = ACTIONS(2588), - [anon_sym_err_GT_GT] = ACTIONS(2586), - [anon_sym_out_GT_GT] = ACTIONS(2586), - [anon_sym_e_GT_GT] = ACTIONS(2586), - [anon_sym_o_GT_GT] = ACTIONS(2586), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2586), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2586), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2586), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2586), + [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(2590), - [sym__newline] = ACTIONS(2590), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym_PIPE] = ACTIONS(2590), - [anon_sym_err_GT_PIPE] = ACTIONS(2590), - [anon_sym_out_GT_PIPE] = ACTIONS(2590), - [anon_sym_e_GT_PIPE] = ACTIONS(2590), - [anon_sym_o_GT_PIPE] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2590), - [anon_sym_RPAREN] = ACTIONS(2590), - [anon_sym_GT2] = ACTIONS(2592), - [anon_sym_DASH2] = ACTIONS(2590), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_RBRACE] = ACTIONS(2590), - [anon_sym_EQ_GT] = ACTIONS(2590), - [anon_sym_STAR2] = ACTIONS(2592), - [anon_sym_and2] = ACTIONS(2590), - [anon_sym_xor2] = ACTIONS(2590), - [anon_sym_or2] = ACTIONS(2590), - [anon_sym_not_DASHin2] = ACTIONS(2590), - [anon_sym_has2] = ACTIONS(2590), - [anon_sym_not_DASHhas2] = ACTIONS(2590), - [anon_sym_starts_DASHwith2] = ACTIONS(2590), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2590), - [anon_sym_ends_DASHwith2] = ACTIONS(2590), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2590), - [anon_sym_EQ_EQ2] = ACTIONS(2590), - [anon_sym_BANG_EQ2] = ACTIONS(2590), - [anon_sym_LT2] = ACTIONS(2592), - [anon_sym_LT_EQ2] = ACTIONS(2590), - [anon_sym_GT_EQ2] = ACTIONS(2590), - [anon_sym_EQ_TILDE2] = ACTIONS(2590), - [anon_sym_BANG_TILDE2] = ACTIONS(2590), - [anon_sym_like2] = ACTIONS(2590), - [anon_sym_not_DASHlike2] = ACTIONS(2590), - [anon_sym_STAR_STAR2] = ACTIONS(2590), - [anon_sym_PLUS_PLUS2] = ACTIONS(2590), - [anon_sym_SLASH2] = ACTIONS(2592), - [anon_sym_mod2] = ACTIONS(2590), - [anon_sym_SLASH_SLASH2] = ACTIONS(2590), - [anon_sym_PLUS2] = ACTIONS(2592), - [anon_sym_bit_DASHshl2] = ACTIONS(2590), - [anon_sym_bit_DASHshr2] = ACTIONS(2590), - [anon_sym_bit_DASHand2] = ACTIONS(2590), - [anon_sym_bit_DASHxor2] = ACTIONS(2590), - [anon_sym_bit_DASHor2] = ACTIONS(2590), - [anon_sym_err_GT] = ACTIONS(2592), - [anon_sym_out_GT] = ACTIONS(2592), - [anon_sym_e_GT] = ACTIONS(2592), - [anon_sym_o_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT] = ACTIONS(2592), - [anon_sym_err_GT_GT] = ACTIONS(2590), - [anon_sym_out_GT_GT] = ACTIONS(2590), - [anon_sym_e_GT_GT] = ACTIONS(2590), - [anon_sym_o_GT_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2590), + [anon_sym_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), - [anon_sym_in] = ACTIONS(1716), - [sym__newline] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_err_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_GT_PIPE] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), - [anon_sym_RPAREN] = ACTIONS(1716), - [anon_sym_GT2] = ACTIONS(1629), - [anon_sym_DASH2] = ACTIONS(1716), - [anon_sym_RBRACE] = ACTIONS(1716), - [anon_sym_STAR2] = ACTIONS(1629), - [anon_sym_and2] = ACTIONS(1716), - [anon_sym_xor2] = ACTIONS(1716), - [anon_sym_or2] = ACTIONS(1716), - [anon_sym_not_DASHin2] = ACTIONS(1716), - [anon_sym_has2] = ACTIONS(1716), - [anon_sym_not_DASHhas2] = ACTIONS(1716), - [anon_sym_starts_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), - [anon_sym_ends_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), - [anon_sym_EQ_EQ2] = ACTIONS(1716), - [anon_sym_BANG_EQ2] = ACTIONS(1716), - [anon_sym_LT2] = ACTIONS(1629), - [anon_sym_LT_EQ2] = ACTIONS(1716), - [anon_sym_GT_EQ2] = ACTIONS(1716), - [anon_sym_EQ_TILDE2] = ACTIONS(1716), - [anon_sym_BANG_TILDE2] = ACTIONS(1716), - [anon_sym_like2] = ACTIONS(1716), - [anon_sym_not_DASHlike2] = ACTIONS(1716), - [anon_sym_LPAREN2] = ACTIONS(2594), - [anon_sym_STAR_STAR2] = ACTIONS(1716), - [anon_sym_PLUS_PLUS2] = ACTIONS(1716), - [anon_sym_SLASH2] = ACTIONS(1629), - [anon_sym_mod2] = ACTIONS(1716), - [anon_sym_SLASH_SLASH2] = ACTIONS(1716), - [anon_sym_PLUS2] = ACTIONS(1629), - [anon_sym_bit_DASHshl2] = ACTIONS(1716), - [anon_sym_bit_DASHshr2] = ACTIONS(1716), - [anon_sym_bit_DASHand2] = ACTIONS(1716), - [anon_sym_bit_DASHxor2] = ACTIONS(1716), - [anon_sym_bit_DASHor2] = ACTIONS(1716), - [anon_sym_err_GT] = ACTIONS(1629), - [anon_sym_out_GT] = ACTIONS(1629), - [anon_sym_e_GT] = ACTIONS(1629), - [anon_sym_o_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT] = ACTIONS(1629), - [anon_sym_err_GT_GT] = ACTIONS(1716), - [anon_sym_out_GT_GT] = ACTIONS(1716), - [anon_sym_e_GT_GT] = ACTIONS(1716), - [anon_sym_o_GT_GT] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), - [sym__unquoted_pattern] = ACTIONS(2596), + [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(2598), - [sym__newline] = ACTIONS(2598), - [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_PIPE] = ACTIONS(2598), - [anon_sym_err_GT_PIPE] = ACTIONS(2598), - [anon_sym_out_GT_PIPE] = ACTIONS(2598), - [anon_sym_e_GT_PIPE] = ACTIONS(2598), - [anon_sym_o_GT_PIPE] = ACTIONS(2598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2598), - [anon_sym_RPAREN] = ACTIONS(2598), - [anon_sym_GT2] = ACTIONS(2600), - [anon_sym_DASH2] = ACTIONS(2598), - [anon_sym_LBRACE] = ACTIONS(2598), - [anon_sym_RBRACE] = ACTIONS(2598), - [anon_sym_EQ_GT] = ACTIONS(2598), - [anon_sym_STAR2] = ACTIONS(2600), - [anon_sym_and2] = ACTIONS(2598), - [anon_sym_xor2] = ACTIONS(2598), - [anon_sym_or2] = ACTIONS(2598), - [anon_sym_not_DASHin2] = ACTIONS(2598), - [anon_sym_has2] = ACTIONS(2598), - [anon_sym_not_DASHhas2] = ACTIONS(2598), - [anon_sym_starts_DASHwith2] = ACTIONS(2598), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2598), - [anon_sym_ends_DASHwith2] = ACTIONS(2598), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2598), - [anon_sym_EQ_EQ2] = ACTIONS(2598), - [anon_sym_BANG_EQ2] = ACTIONS(2598), - [anon_sym_LT2] = ACTIONS(2600), - [anon_sym_LT_EQ2] = ACTIONS(2598), - [anon_sym_GT_EQ2] = ACTIONS(2598), - [anon_sym_EQ_TILDE2] = ACTIONS(2598), - [anon_sym_BANG_TILDE2] = ACTIONS(2598), - [anon_sym_like2] = ACTIONS(2598), - [anon_sym_not_DASHlike2] = ACTIONS(2598), - [anon_sym_STAR_STAR2] = ACTIONS(2598), - [anon_sym_PLUS_PLUS2] = ACTIONS(2598), - [anon_sym_SLASH2] = ACTIONS(2600), - [anon_sym_mod2] = ACTIONS(2598), - [anon_sym_SLASH_SLASH2] = ACTIONS(2598), - [anon_sym_PLUS2] = ACTIONS(2600), - [anon_sym_bit_DASHshl2] = ACTIONS(2598), - [anon_sym_bit_DASHshr2] = ACTIONS(2598), - [anon_sym_bit_DASHand2] = ACTIONS(2598), - [anon_sym_bit_DASHxor2] = ACTIONS(2598), - [anon_sym_bit_DASHor2] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2598), - [anon_sym_out_GT_GT] = ACTIONS(2598), - [anon_sym_e_GT_GT] = ACTIONS(2598), - [anon_sym_o_GT_GT] = ACTIONS(2598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2598), + [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_in] = ACTIONS(2602), - [sym__newline] = ACTIONS(2602), - [anon_sym_SEMI] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2602), - [anon_sym_err_GT_PIPE] = ACTIONS(2602), - [anon_sym_out_GT_PIPE] = ACTIONS(2602), - [anon_sym_e_GT_PIPE] = ACTIONS(2602), - [anon_sym_o_GT_PIPE] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2602), - [anon_sym_RPAREN] = ACTIONS(2602), - [anon_sym_GT2] = ACTIONS(2604), - [anon_sym_DASH2] = ACTIONS(2602), - [anon_sym_LBRACE] = ACTIONS(2602), - [anon_sym_RBRACE] = ACTIONS(2602), - [anon_sym_EQ_GT] = ACTIONS(2602), - [anon_sym_STAR2] = ACTIONS(2604), - [anon_sym_and2] = ACTIONS(2602), - [anon_sym_xor2] = ACTIONS(2602), - [anon_sym_or2] = ACTIONS(2602), - [anon_sym_not_DASHin2] = ACTIONS(2602), - [anon_sym_has2] = ACTIONS(2602), - [anon_sym_not_DASHhas2] = ACTIONS(2602), - [anon_sym_starts_DASHwith2] = ACTIONS(2602), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2602), - [anon_sym_ends_DASHwith2] = ACTIONS(2602), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2602), - [anon_sym_EQ_EQ2] = ACTIONS(2602), - [anon_sym_BANG_EQ2] = ACTIONS(2602), - [anon_sym_LT2] = ACTIONS(2604), - [anon_sym_LT_EQ2] = ACTIONS(2602), - [anon_sym_GT_EQ2] = ACTIONS(2602), - [anon_sym_EQ_TILDE2] = ACTIONS(2602), - [anon_sym_BANG_TILDE2] = ACTIONS(2602), - [anon_sym_like2] = ACTIONS(2602), - [anon_sym_not_DASHlike2] = ACTIONS(2602), - [anon_sym_STAR_STAR2] = ACTIONS(2602), - [anon_sym_PLUS_PLUS2] = ACTIONS(2602), - [anon_sym_SLASH2] = ACTIONS(2604), - [anon_sym_mod2] = ACTIONS(2602), - [anon_sym_SLASH_SLASH2] = ACTIONS(2602), - [anon_sym_PLUS2] = ACTIONS(2604), - [anon_sym_bit_DASHshl2] = ACTIONS(2602), - [anon_sym_bit_DASHshr2] = ACTIONS(2602), - [anon_sym_bit_DASHand2] = ACTIONS(2602), - [anon_sym_bit_DASHxor2] = ACTIONS(2602), - [anon_sym_bit_DASHor2] = ACTIONS(2602), - [anon_sym_err_GT] = ACTIONS(2604), - [anon_sym_out_GT] = ACTIONS(2604), - [anon_sym_e_GT] = ACTIONS(2604), - [anon_sym_o_GT] = ACTIONS(2604), - [anon_sym_err_PLUSout_GT] = ACTIONS(2604), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2604), - [anon_sym_o_PLUSe_GT] = ACTIONS(2604), - [anon_sym_e_PLUSo_GT] = ACTIONS(2604), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [anon_sym_POUND] = ACTIONS(3), + [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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1858), + [anon_sym_in] = ACTIONS(1858), + [sym__newline] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1858), + [anon_sym_err_GT_PIPE] = ACTIONS(1858), + [anon_sym_out_GT_PIPE] = ACTIONS(1858), + [anon_sym_e_GT_PIPE] = ACTIONS(1858), + [anon_sym_o_GT_PIPE] = ACTIONS(1858), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1858), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), + [anon_sym_GT2] = ACTIONS(1860), + [anon_sym_DASH2] = ACTIONS(1858), + [anon_sym_STAR2] = ACTIONS(1860), + [anon_sym_and2] = ACTIONS(1858), + [anon_sym_xor2] = ACTIONS(1858), + [anon_sym_or2] = ACTIONS(1858), + [anon_sym_not_DASHin2] = ACTIONS(1858), + [anon_sym_has2] = ACTIONS(1858), + [anon_sym_not_DASHhas2] = ACTIONS(1858), + [anon_sym_starts_DASHwith2] = ACTIONS(1858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1858), + [anon_sym_ends_DASHwith2] = ACTIONS(1858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1858), + [anon_sym_EQ_EQ2] = ACTIONS(1858), + [anon_sym_BANG_EQ2] = ACTIONS(1858), + [anon_sym_LT2] = ACTIONS(1860), + [anon_sym_LT_EQ2] = ACTIONS(1858), + [anon_sym_GT_EQ2] = ACTIONS(1858), + [anon_sym_EQ_TILDE2] = ACTIONS(1858), + [anon_sym_BANG_TILDE2] = ACTIONS(1858), + [anon_sym_like2] = ACTIONS(1858), + [anon_sym_not_DASHlike2] = ACTIONS(1858), + [anon_sym_STAR_STAR2] = ACTIONS(1858), + [anon_sym_PLUS_PLUS2] = ACTIONS(1858), + [anon_sym_SLASH2] = ACTIONS(1860), + [anon_sym_mod2] = ACTIONS(1858), + [anon_sym_SLASH_SLASH2] = ACTIONS(1858), + [anon_sym_PLUS2] = ACTIONS(1860), + [anon_sym_bit_DASHshl2] = ACTIONS(1858), + [anon_sym_bit_DASHshr2] = ACTIONS(1858), + [anon_sym_bit_DASHand2] = ACTIONS(1858), + [anon_sym_bit_DASHxor2] = ACTIONS(1858), + [anon_sym_bit_DASHor2] = ACTIONS(1858), + [anon_sym_DOT_DOT2] = ACTIONS(1860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1858), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1858), + [anon_sym_err_GT] = ACTIONS(1860), + [anon_sym_out_GT] = ACTIONS(1860), + [anon_sym_e_GT] = ACTIONS(1860), + [anon_sym_o_GT] = ACTIONS(1860), + [anon_sym_err_PLUSout_GT] = ACTIONS(1860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1860), + [anon_sym_o_PLUSe_GT] = ACTIONS(1860), + [anon_sym_e_PLUSo_GT] = ACTIONS(1860), + [anon_sym_err_GT_GT] = ACTIONS(1858), + [anon_sym_out_GT_GT] = ACTIONS(1858), + [anon_sym_e_GT_GT] = ACTIONS(1858), + [anon_sym_o_GT_GT] = ACTIONS(1858), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1858), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1858), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1858), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), [anon_sym_POUND] = ACTIONS(3), }, [STATE(939)] = { [sym_comment] = STATE(939), - [anon_sym_in] = ACTIONS(2606), - [sym__newline] = ACTIONS(2606), - [anon_sym_SEMI] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2606), - [anon_sym_err_GT_PIPE] = ACTIONS(2606), - [anon_sym_out_GT_PIPE] = ACTIONS(2606), - [anon_sym_e_GT_PIPE] = ACTIONS(2606), - [anon_sym_o_GT_PIPE] = ACTIONS(2606), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2606), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2606), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2606), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2606), - [anon_sym_RPAREN] = ACTIONS(2606), - [anon_sym_GT2] = ACTIONS(2608), - [anon_sym_DASH2] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_RBRACE] = ACTIONS(2606), - [anon_sym_EQ_GT] = ACTIONS(2606), - [anon_sym_STAR2] = ACTIONS(2608), - [anon_sym_and2] = ACTIONS(2606), - [anon_sym_xor2] = ACTIONS(2606), - [anon_sym_or2] = ACTIONS(2606), - [anon_sym_not_DASHin2] = ACTIONS(2606), - [anon_sym_has2] = ACTIONS(2606), - [anon_sym_not_DASHhas2] = ACTIONS(2606), - [anon_sym_starts_DASHwith2] = ACTIONS(2606), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2606), - [anon_sym_ends_DASHwith2] = ACTIONS(2606), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2606), - [anon_sym_EQ_EQ2] = ACTIONS(2606), - [anon_sym_BANG_EQ2] = ACTIONS(2606), - [anon_sym_LT2] = ACTIONS(2608), - [anon_sym_LT_EQ2] = ACTIONS(2606), - [anon_sym_GT_EQ2] = ACTIONS(2606), - [anon_sym_EQ_TILDE2] = ACTIONS(2606), - [anon_sym_BANG_TILDE2] = ACTIONS(2606), - [anon_sym_like2] = ACTIONS(2606), - [anon_sym_not_DASHlike2] = ACTIONS(2606), - [anon_sym_STAR_STAR2] = ACTIONS(2606), - [anon_sym_PLUS_PLUS2] = ACTIONS(2606), - [anon_sym_SLASH2] = ACTIONS(2608), - [anon_sym_mod2] = ACTIONS(2606), - [anon_sym_SLASH_SLASH2] = ACTIONS(2606), - [anon_sym_PLUS2] = ACTIONS(2608), - [anon_sym_bit_DASHshl2] = ACTIONS(2606), - [anon_sym_bit_DASHshr2] = ACTIONS(2606), - [anon_sym_bit_DASHand2] = ACTIONS(2606), - [anon_sym_bit_DASHxor2] = ACTIONS(2606), - [anon_sym_bit_DASHor2] = ACTIONS(2606), - [anon_sym_err_GT] = ACTIONS(2608), - [anon_sym_out_GT] = ACTIONS(2608), - [anon_sym_e_GT] = ACTIONS(2608), - [anon_sym_o_GT] = ACTIONS(2608), - [anon_sym_err_PLUSout_GT] = ACTIONS(2608), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2608), - [anon_sym_o_PLUSe_GT] = ACTIONS(2608), - [anon_sym_e_PLUSo_GT] = ACTIONS(2608), - [anon_sym_err_GT_GT] = ACTIONS(2606), - [anon_sym_out_GT_GT] = ACTIONS(2606), - [anon_sym_e_GT_GT] = ACTIONS(2606), - [anon_sym_o_GT_GT] = ACTIONS(2606), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2606), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2606), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2606), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2606), + [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), - [anon_sym_in] = ACTIONS(2610), - [sym__newline] = ACTIONS(2610), - [anon_sym_SEMI] = ACTIONS(2610), - [anon_sym_PIPE] = ACTIONS(2610), - [anon_sym_err_GT_PIPE] = ACTIONS(2610), - [anon_sym_out_GT_PIPE] = ACTIONS(2610), - [anon_sym_e_GT_PIPE] = ACTIONS(2610), - [anon_sym_o_GT_PIPE] = ACTIONS(2610), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2610), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2610), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2610), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2610), - [anon_sym_RPAREN] = ACTIONS(2610), - [anon_sym_GT2] = ACTIONS(2612), - [anon_sym_DASH2] = ACTIONS(2610), - [anon_sym_LBRACE] = ACTIONS(2610), - [anon_sym_RBRACE] = ACTIONS(2610), - [anon_sym_EQ_GT] = ACTIONS(2610), - [anon_sym_STAR2] = ACTIONS(2612), - [anon_sym_and2] = ACTIONS(2610), - [anon_sym_xor2] = ACTIONS(2610), - [anon_sym_or2] = ACTIONS(2610), - [anon_sym_not_DASHin2] = ACTIONS(2610), - [anon_sym_has2] = ACTIONS(2610), - [anon_sym_not_DASHhas2] = ACTIONS(2610), - [anon_sym_starts_DASHwith2] = ACTIONS(2610), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2610), - [anon_sym_ends_DASHwith2] = ACTIONS(2610), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2610), - [anon_sym_EQ_EQ2] = ACTIONS(2610), - [anon_sym_BANG_EQ2] = ACTIONS(2610), - [anon_sym_LT2] = ACTIONS(2612), - [anon_sym_LT_EQ2] = ACTIONS(2610), - [anon_sym_GT_EQ2] = ACTIONS(2610), - [anon_sym_EQ_TILDE2] = ACTIONS(2610), - [anon_sym_BANG_TILDE2] = ACTIONS(2610), - [anon_sym_like2] = ACTIONS(2610), - [anon_sym_not_DASHlike2] = ACTIONS(2610), - [anon_sym_STAR_STAR2] = ACTIONS(2610), - [anon_sym_PLUS_PLUS2] = ACTIONS(2610), - [anon_sym_SLASH2] = ACTIONS(2612), - [anon_sym_mod2] = ACTIONS(2610), - [anon_sym_SLASH_SLASH2] = ACTIONS(2610), - [anon_sym_PLUS2] = ACTIONS(2612), - [anon_sym_bit_DASHshl2] = ACTIONS(2610), - [anon_sym_bit_DASHshr2] = ACTIONS(2610), - [anon_sym_bit_DASHand2] = ACTIONS(2610), - [anon_sym_bit_DASHxor2] = ACTIONS(2610), - [anon_sym_bit_DASHor2] = ACTIONS(2610), - [anon_sym_err_GT] = ACTIONS(2612), - [anon_sym_out_GT] = ACTIONS(2612), - [anon_sym_e_GT] = ACTIONS(2612), - [anon_sym_o_GT] = ACTIONS(2612), - [anon_sym_err_PLUSout_GT] = ACTIONS(2612), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2612), - [anon_sym_o_PLUSe_GT] = ACTIONS(2612), - [anon_sym_e_PLUSo_GT] = ACTIONS(2612), - [anon_sym_err_GT_GT] = ACTIONS(2610), - [anon_sym_out_GT_GT] = ACTIONS(2610), - [anon_sym_e_GT_GT] = ACTIONS(2610), - [anon_sym_o_GT_GT] = ACTIONS(2610), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2610), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2610), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2610), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2610), + [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), - [ts_builtin_sym_end] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1754), - [sym__newline] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_err_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_GT_PIPE] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), - [anon_sym_GT2] = ACTIONS(1756), - [anon_sym_DASH2] = ACTIONS(1754), - [anon_sym_STAR2] = ACTIONS(1756), - [anon_sym_and2] = ACTIONS(1754), - [anon_sym_xor2] = ACTIONS(1754), - [anon_sym_or2] = ACTIONS(1754), - [anon_sym_not_DASHin2] = ACTIONS(1754), - [anon_sym_has2] = ACTIONS(1754), - [anon_sym_not_DASHhas2] = ACTIONS(1754), - [anon_sym_starts_DASHwith2] = ACTIONS(1754), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1754), - [anon_sym_ends_DASHwith2] = ACTIONS(1754), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1754), - [anon_sym_EQ_EQ2] = ACTIONS(1754), - [anon_sym_BANG_EQ2] = ACTIONS(1754), - [anon_sym_LT2] = ACTIONS(1756), - [anon_sym_LT_EQ2] = ACTIONS(1754), - [anon_sym_GT_EQ2] = ACTIONS(1754), - [anon_sym_EQ_TILDE2] = ACTIONS(1754), - [anon_sym_BANG_TILDE2] = ACTIONS(1754), - [anon_sym_like2] = ACTIONS(1754), - [anon_sym_not_DASHlike2] = ACTIONS(1754), - [anon_sym_LPAREN2] = ACTIONS(1754), - [anon_sym_STAR_STAR2] = ACTIONS(1754), - [anon_sym_PLUS_PLUS2] = ACTIONS(1754), - [anon_sym_SLASH2] = ACTIONS(1756), - [anon_sym_mod2] = ACTIONS(1754), - [anon_sym_SLASH_SLASH2] = ACTIONS(1754), - [anon_sym_PLUS2] = ACTIONS(1756), - [anon_sym_bit_DASHshl2] = ACTIONS(1754), - [anon_sym_bit_DASHshr2] = ACTIONS(1754), - [anon_sym_bit_DASHand2] = ACTIONS(1754), - [anon_sym_bit_DASHxor2] = ACTIONS(1754), - [anon_sym_bit_DASHor2] = ACTIONS(1754), - [aux_sym__immediate_decimal_token5] = ACTIONS(2500), - [anon_sym_err_GT] = ACTIONS(1756), - [anon_sym_out_GT] = ACTIONS(1756), - [anon_sym_e_GT] = ACTIONS(1756), - [anon_sym_o_GT] = ACTIONS(1756), - [anon_sym_err_PLUSout_GT] = ACTIONS(1756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), - [anon_sym_o_PLUSe_GT] = ACTIONS(1756), - [anon_sym_e_PLUSo_GT] = ACTIONS(1756), - [anon_sym_err_GT_GT] = ACTIONS(1754), - [anon_sym_out_GT_GT] = ACTIONS(1754), - [anon_sym_e_GT_GT] = ACTIONS(1754), - [anon_sym_o_GT_GT] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), - [sym__unquoted_pattern] = ACTIONS(1756), + [ts_builtin_sym_end] = ACTIONS(1892), + [anon_sym_in] = ACTIONS(1892), + [sym__newline] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_err_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_GT_PIPE] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), + [anon_sym_GT2] = ACTIONS(1894), + [anon_sym_DASH2] = ACTIONS(1892), + [anon_sym_STAR2] = ACTIONS(1894), + [anon_sym_and2] = ACTIONS(1892), + [anon_sym_xor2] = ACTIONS(1892), + [anon_sym_or2] = ACTIONS(1892), + [anon_sym_not_DASHin2] = ACTIONS(1892), + [anon_sym_has2] = ACTIONS(1892), + [anon_sym_not_DASHhas2] = ACTIONS(1892), + [anon_sym_starts_DASHwith2] = ACTIONS(1892), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1892), + [anon_sym_ends_DASHwith2] = ACTIONS(1892), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1892), + [anon_sym_EQ_EQ2] = ACTIONS(1892), + [anon_sym_BANG_EQ2] = ACTIONS(1892), + [anon_sym_LT2] = ACTIONS(1894), + [anon_sym_LT_EQ2] = ACTIONS(1892), + [anon_sym_GT_EQ2] = ACTIONS(1892), + [anon_sym_EQ_TILDE2] = ACTIONS(1892), + [anon_sym_BANG_TILDE2] = ACTIONS(1892), + [anon_sym_like2] = ACTIONS(1892), + [anon_sym_not_DASHlike2] = ACTIONS(1892), + [anon_sym_STAR_STAR2] = ACTIONS(1892), + [anon_sym_PLUS_PLUS2] = ACTIONS(1892), + [anon_sym_SLASH2] = ACTIONS(1894), + [anon_sym_mod2] = ACTIONS(1892), + [anon_sym_SLASH_SLASH2] = ACTIONS(1892), + [anon_sym_PLUS2] = ACTIONS(1894), + [anon_sym_bit_DASHshl2] = ACTIONS(1892), + [anon_sym_bit_DASHshr2] = ACTIONS(1892), + [anon_sym_bit_DASHand2] = ACTIONS(1892), + [anon_sym_bit_DASHxor2] = ACTIONS(1892), + [anon_sym_bit_DASHor2] = ACTIONS(1892), + [anon_sym_DOT_DOT2] = ACTIONS(1894), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), + [anon_sym_err_GT] = ACTIONS(1894), + [anon_sym_out_GT] = ACTIONS(1894), + [anon_sym_e_GT] = ACTIONS(1894), + [anon_sym_o_GT] = ACTIONS(1894), + [anon_sym_err_PLUSout_GT] = ACTIONS(1894), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1894), + [anon_sym_o_PLUSe_GT] = ACTIONS(1894), + [anon_sym_e_PLUSo_GT] = ACTIONS(1894), + [anon_sym_err_GT_GT] = ACTIONS(1892), + [anon_sym_out_GT_GT] = ACTIONS(1892), + [anon_sym_e_GT_GT] = ACTIONS(1892), + [anon_sym_o_GT_GT] = ACTIONS(1892), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), [anon_sym_POUND] = ACTIONS(3), }, [STATE(942)] = { [sym_comment] = STATE(942), - [anon_sym_in] = ACTIONS(2614), - [sym__newline] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2614), - [anon_sym_PIPE] = ACTIONS(2614), - [anon_sym_err_GT_PIPE] = ACTIONS(2614), - [anon_sym_out_GT_PIPE] = ACTIONS(2614), - [anon_sym_e_GT_PIPE] = ACTIONS(2614), - [anon_sym_o_GT_PIPE] = ACTIONS(2614), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2614), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2614), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2614), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2614), - [anon_sym_RPAREN] = ACTIONS(2614), - [anon_sym_GT2] = ACTIONS(2616), - [anon_sym_DASH2] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2614), - [anon_sym_RBRACE] = ACTIONS(2614), - [anon_sym_EQ_GT] = ACTIONS(2614), - [anon_sym_STAR2] = ACTIONS(2616), - [anon_sym_and2] = ACTIONS(2614), - [anon_sym_xor2] = ACTIONS(2614), - [anon_sym_or2] = ACTIONS(2614), - [anon_sym_not_DASHin2] = ACTIONS(2614), - [anon_sym_has2] = ACTIONS(2614), - [anon_sym_not_DASHhas2] = ACTIONS(2614), - [anon_sym_starts_DASHwith2] = ACTIONS(2614), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2614), - [anon_sym_ends_DASHwith2] = ACTIONS(2614), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2614), - [anon_sym_EQ_EQ2] = ACTIONS(2614), - [anon_sym_BANG_EQ2] = ACTIONS(2614), - [anon_sym_LT2] = ACTIONS(2616), - [anon_sym_LT_EQ2] = ACTIONS(2614), - [anon_sym_GT_EQ2] = ACTIONS(2614), - [anon_sym_EQ_TILDE2] = ACTIONS(2614), - [anon_sym_BANG_TILDE2] = ACTIONS(2614), - [anon_sym_like2] = ACTIONS(2614), - [anon_sym_not_DASHlike2] = ACTIONS(2614), - [anon_sym_STAR_STAR2] = ACTIONS(2614), - [anon_sym_PLUS_PLUS2] = ACTIONS(2614), - [anon_sym_SLASH2] = ACTIONS(2616), - [anon_sym_mod2] = ACTIONS(2614), - [anon_sym_SLASH_SLASH2] = ACTIONS(2614), - [anon_sym_PLUS2] = ACTIONS(2616), - [anon_sym_bit_DASHshl2] = ACTIONS(2614), - [anon_sym_bit_DASHshr2] = ACTIONS(2614), - [anon_sym_bit_DASHand2] = ACTIONS(2614), - [anon_sym_bit_DASHxor2] = ACTIONS(2614), - [anon_sym_bit_DASHor2] = ACTIONS(2614), - [anon_sym_err_GT] = ACTIONS(2616), - [anon_sym_out_GT] = ACTIONS(2616), - [anon_sym_e_GT] = ACTIONS(2616), - [anon_sym_o_GT] = ACTIONS(2616), - [anon_sym_err_PLUSout_GT] = ACTIONS(2616), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2616), - [anon_sym_o_PLUSe_GT] = ACTIONS(2616), - [anon_sym_e_PLUSo_GT] = ACTIONS(2616), - [anon_sym_err_GT_GT] = ACTIONS(2614), - [anon_sym_out_GT_GT] = ACTIONS(2614), - [anon_sym_e_GT_GT] = ACTIONS(2614), - [anon_sym_o_GT_GT] = ACTIONS(2614), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2614), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2614), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2614), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2614), + [anon_sym_in] = ACTIONS(1713), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_RPAREN] = ACTIONS(1713), + [anon_sym_GT2] = ACTIONS(1614), + [anon_sym_DASH2] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_STAR2] = ACTIONS(1614), + [anon_sym_and2] = ACTIONS(1713), + [anon_sym_xor2] = ACTIONS(1713), + [anon_sym_or2] = ACTIONS(1713), + [anon_sym_not_DASHin2] = ACTIONS(1713), + [anon_sym_has2] = ACTIONS(1713), + [anon_sym_not_DASHhas2] = ACTIONS(1713), + [anon_sym_starts_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1713), + [anon_sym_ends_DASHwith2] = ACTIONS(1713), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1713), + [anon_sym_EQ_EQ2] = ACTIONS(1713), + [anon_sym_BANG_EQ2] = ACTIONS(1713), + [anon_sym_LT2] = ACTIONS(1614), + [anon_sym_LT_EQ2] = ACTIONS(1713), + [anon_sym_GT_EQ2] = ACTIONS(1713), + [anon_sym_EQ_TILDE2] = ACTIONS(1713), + [anon_sym_BANG_TILDE2] = ACTIONS(1713), + [anon_sym_like2] = ACTIONS(1713), + [anon_sym_not_DASHlike2] = ACTIONS(1713), + [anon_sym_LPAREN2] = ACTIONS(2612), + [anon_sym_STAR_STAR2] = ACTIONS(1713), + [anon_sym_PLUS_PLUS2] = ACTIONS(1713), + [anon_sym_SLASH2] = ACTIONS(1614), + [anon_sym_mod2] = ACTIONS(1713), + [anon_sym_SLASH_SLASH2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1614), + [anon_sym_bit_DASHshl2] = ACTIONS(1713), + [anon_sym_bit_DASHshr2] = ACTIONS(1713), + [anon_sym_bit_DASHand2] = ACTIONS(1713), + [anon_sym_bit_DASHxor2] = ACTIONS(1713), + [anon_sym_bit_DASHor2] = ACTIONS(1713), + [anon_sym_err_GT] = ACTIONS(1614), + [anon_sym_out_GT] = ACTIONS(1614), + [anon_sym_e_GT] = ACTIONS(1614), + [anon_sym_o_GT] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT] = ACTIONS(1614), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [sym__unquoted_pattern] = ACTIONS(2614), [anon_sym_POUND] = ACTIONS(3), }, [STATE(943)] = { [sym_comment] = STATE(943), - [ts_builtin_sym_end] = ACTIONS(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(2618), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2620), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2620), - [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(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(1812), - [sym__newline] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_err_GT_PIPE] = ACTIONS(1812), - [anon_sym_out_GT_PIPE] = ACTIONS(1812), - [anon_sym_e_GT_PIPE] = ACTIONS(1812), - [anon_sym_o_GT_PIPE] = ACTIONS(1812), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1812), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1812), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1812), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_GT2] = ACTIONS(1814), - [anon_sym_DASH2] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1812), - [anon_sym_STAR2] = ACTIONS(1814), - [anon_sym_and2] = ACTIONS(1812), - [anon_sym_xor2] = ACTIONS(1812), - [anon_sym_or2] = ACTIONS(1812), - [anon_sym_not_DASHin2] = ACTIONS(1812), - [anon_sym_has2] = ACTIONS(1812), - [anon_sym_not_DASHhas2] = ACTIONS(1812), - [anon_sym_starts_DASHwith2] = ACTIONS(1812), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1812), - [anon_sym_ends_DASHwith2] = ACTIONS(1812), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1812), - [anon_sym_EQ_EQ2] = ACTIONS(1812), - [anon_sym_BANG_EQ2] = ACTIONS(1812), - [anon_sym_LT2] = ACTIONS(1814), - [anon_sym_LT_EQ2] = ACTIONS(1812), - [anon_sym_GT_EQ2] = ACTIONS(1812), - [anon_sym_EQ_TILDE2] = ACTIONS(1812), - [anon_sym_BANG_TILDE2] = ACTIONS(1812), - [anon_sym_like2] = ACTIONS(1812), - [anon_sym_not_DASHlike2] = ACTIONS(1812), - [anon_sym_LPAREN2] = ACTIONS(1812), - [anon_sym_STAR_STAR2] = ACTIONS(1812), - [anon_sym_PLUS_PLUS2] = ACTIONS(1812), - [anon_sym_SLASH2] = ACTIONS(1814), - [anon_sym_mod2] = ACTIONS(1812), - [anon_sym_SLASH_SLASH2] = ACTIONS(1812), - [anon_sym_PLUS2] = ACTIONS(1814), - [anon_sym_bit_DASHshl2] = ACTIONS(1812), - [anon_sym_bit_DASHshr2] = ACTIONS(1812), - [anon_sym_bit_DASHand2] = ACTIONS(1812), - [anon_sym_bit_DASHxor2] = ACTIONS(1812), - [anon_sym_bit_DASHor2] = ACTIONS(1812), - [anon_sym_err_GT] = ACTIONS(1814), - [anon_sym_out_GT] = ACTIONS(1814), - [anon_sym_e_GT] = ACTIONS(1814), - [anon_sym_o_GT] = ACTIONS(1814), - [anon_sym_err_PLUSout_GT] = ACTIONS(1814), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1814), - [anon_sym_o_PLUSe_GT] = ACTIONS(1814), - [anon_sym_e_PLUSo_GT] = ACTIONS(1814), - [anon_sym_err_GT_GT] = ACTIONS(1812), - [anon_sym_out_GT_GT] = ACTIONS(1812), - [anon_sym_e_GT_GT] = ACTIONS(1812), - [anon_sym_o_GT_GT] = ACTIONS(1812), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1812), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1812), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1812), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1812), - [sym__unquoted_pattern] = ACTIONS(1814), + [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), - [ts_builtin_sym_end] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(2011), - [sym__newline] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_err_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_GT_PIPE] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), - [anon_sym_GT2] = ACTIONS(2013), - [anon_sym_DASH2] = ACTIONS(2011), - [anon_sym_STAR2] = ACTIONS(2013), - [anon_sym_and2] = ACTIONS(2011), - [anon_sym_xor2] = ACTIONS(2011), - [anon_sym_or2] = ACTIONS(2011), - [anon_sym_not_DASHin2] = ACTIONS(2011), - [anon_sym_has2] = ACTIONS(2011), - [anon_sym_not_DASHhas2] = ACTIONS(2011), - [anon_sym_starts_DASHwith2] = ACTIONS(2011), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), - [anon_sym_ends_DASHwith2] = ACTIONS(2011), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), - [anon_sym_EQ_EQ2] = ACTIONS(2011), - [anon_sym_BANG_EQ2] = ACTIONS(2011), - [anon_sym_LT2] = ACTIONS(2013), - [anon_sym_LT_EQ2] = ACTIONS(2011), - [anon_sym_GT_EQ2] = ACTIONS(2011), - [anon_sym_EQ_TILDE2] = ACTIONS(2011), - [anon_sym_BANG_TILDE2] = ACTIONS(2011), - [anon_sym_like2] = ACTIONS(2011), - [anon_sym_not_DASHlike2] = ACTIONS(2011), - [anon_sym_STAR_STAR2] = ACTIONS(2011), - [anon_sym_PLUS_PLUS2] = ACTIONS(2011), - [anon_sym_SLASH2] = ACTIONS(2013), - [anon_sym_mod2] = ACTIONS(2011), - [anon_sym_SLASH_SLASH2] = ACTIONS(2011), - [anon_sym_PLUS2] = ACTIONS(2013), - [anon_sym_bit_DASHshl2] = ACTIONS(2011), - [anon_sym_bit_DASHshr2] = ACTIONS(2011), - [anon_sym_bit_DASHand2] = ACTIONS(2011), - [anon_sym_bit_DASHxor2] = ACTIONS(2011), - [anon_sym_bit_DASHor2] = ACTIONS(2011), - [anon_sym_DOT_DOT2] = ACTIONS(2622), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2624), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2624), - [anon_sym_err_GT] = ACTIONS(2013), - [anon_sym_out_GT] = ACTIONS(2013), - [anon_sym_e_GT] = ACTIONS(2013), - [anon_sym_o_GT] = ACTIONS(2013), - [anon_sym_err_PLUSout_GT] = ACTIONS(2013), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), - [anon_sym_o_PLUSe_GT] = ACTIONS(2013), - [anon_sym_e_PLUSo_GT] = ACTIONS(2013), - [anon_sym_err_GT_GT] = ACTIONS(2011), - [anon_sym_out_GT_GT] = ACTIONS(2011), - [anon_sym_e_GT_GT] = ACTIONS(2011), - [anon_sym_o_GT_GT] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [anon_sym_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(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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), - [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(2104), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2104), - [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(2104), - [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(2104), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2104), - [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(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), - [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(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(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(2011), - [sym__newline] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_err_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_GT_PIPE] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), - [anon_sym_RPAREN] = ACTIONS(2011), - [anon_sym_GT2] = ACTIONS(2013), - [anon_sym_DASH2] = ACTIONS(2011), - [anon_sym_RBRACE] = ACTIONS(2011), - [anon_sym_STAR2] = ACTIONS(2013), - [anon_sym_and2] = ACTIONS(2011), - [anon_sym_xor2] = ACTIONS(2011), - [anon_sym_or2] = ACTIONS(2011), - [anon_sym_not_DASHin2] = ACTIONS(2011), - [anon_sym_has2] = ACTIONS(2011), - [anon_sym_not_DASHhas2] = ACTIONS(2011), - [anon_sym_starts_DASHwith2] = ACTIONS(2011), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), - [anon_sym_ends_DASHwith2] = ACTIONS(2011), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), - [anon_sym_EQ_EQ2] = ACTIONS(2011), - [anon_sym_BANG_EQ2] = ACTIONS(2011), - [anon_sym_LT2] = ACTIONS(2013), - [anon_sym_LT_EQ2] = ACTIONS(2011), - [anon_sym_GT_EQ2] = ACTIONS(2011), - [anon_sym_EQ_TILDE2] = ACTIONS(2011), - [anon_sym_BANG_TILDE2] = ACTIONS(2011), - [anon_sym_like2] = ACTIONS(2011), - [anon_sym_not_DASHlike2] = ACTIONS(2011), - [anon_sym_LPAREN2] = ACTIONS(2015), - [anon_sym_STAR_STAR2] = ACTIONS(2011), - [anon_sym_PLUS_PLUS2] = ACTIONS(2011), - [anon_sym_SLASH2] = ACTIONS(2013), - [anon_sym_mod2] = ACTIONS(2011), - [anon_sym_SLASH_SLASH2] = ACTIONS(2011), - [anon_sym_PLUS2] = ACTIONS(2013), - [anon_sym_bit_DASHshl2] = ACTIONS(2011), - [anon_sym_bit_DASHshr2] = ACTIONS(2011), - [anon_sym_bit_DASHand2] = ACTIONS(2011), - [anon_sym_bit_DASHxor2] = ACTIONS(2011), - [anon_sym_bit_DASHor2] = ACTIONS(2011), - [anon_sym_err_GT] = ACTIONS(2013), - [anon_sym_out_GT] = ACTIONS(2013), - [anon_sym_e_GT] = ACTIONS(2013), - [anon_sym_o_GT] = ACTIONS(2013), - [anon_sym_err_PLUSout_GT] = ACTIONS(2013), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), - [anon_sym_o_PLUSe_GT] = ACTIONS(2013), - [anon_sym_e_PLUSo_GT] = ACTIONS(2013), - [anon_sym_err_GT_GT] = ACTIONS(2011), - [anon_sym_out_GT_GT] = ACTIONS(2011), - [anon_sym_e_GT_GT] = ACTIONS(2011), - [anon_sym_o_GT_GT] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), - [sym__unquoted_pattern] = ACTIONS(1615), + [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), - [ts_builtin_sym_end] = ACTIONS(2108), - [anon_sym_in] = ACTIONS(2108), - [sym__newline] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2108), - [anon_sym_PIPE] = ACTIONS(2108), - [anon_sym_err_GT_PIPE] = ACTIONS(2108), - [anon_sym_out_GT_PIPE] = ACTIONS(2108), - [anon_sym_e_GT_PIPE] = ACTIONS(2108), - [anon_sym_o_GT_PIPE] = ACTIONS(2108), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2108), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2108), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2108), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2108), - [anon_sym_GT2] = ACTIONS(2110), - [anon_sym_DASH2] = ACTIONS(2108), - [anon_sym_STAR2] = ACTIONS(2110), - [anon_sym_and2] = ACTIONS(2108), - [anon_sym_xor2] = ACTIONS(2108), - [anon_sym_or2] = ACTIONS(2108), - [anon_sym_not_DASHin2] = ACTIONS(2108), - [anon_sym_has2] = ACTIONS(2108), - [anon_sym_not_DASHhas2] = ACTIONS(2108), - [anon_sym_starts_DASHwith2] = ACTIONS(2108), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2108), - [anon_sym_ends_DASHwith2] = ACTIONS(2108), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2108), - [anon_sym_EQ_EQ2] = ACTIONS(2108), - [anon_sym_BANG_EQ2] = ACTIONS(2108), - [anon_sym_LT2] = ACTIONS(2110), - [anon_sym_LT_EQ2] = ACTIONS(2108), - [anon_sym_GT_EQ2] = ACTIONS(2108), - [anon_sym_EQ_TILDE2] = ACTIONS(2108), - [anon_sym_BANG_TILDE2] = ACTIONS(2108), - [anon_sym_like2] = ACTIONS(2108), - [anon_sym_not_DASHlike2] = ACTIONS(2108), - [anon_sym_STAR_STAR2] = ACTIONS(2108), - [anon_sym_PLUS_PLUS2] = ACTIONS(2108), - [anon_sym_SLASH2] = ACTIONS(2110), - [anon_sym_mod2] = ACTIONS(2108), - [anon_sym_SLASH_SLASH2] = ACTIONS(2108), - [anon_sym_PLUS2] = ACTIONS(2110), - [anon_sym_bit_DASHshl2] = ACTIONS(2108), - [anon_sym_bit_DASHshr2] = ACTIONS(2108), - [anon_sym_bit_DASHand2] = ACTIONS(2108), - [anon_sym_bit_DASHxor2] = ACTIONS(2108), - [anon_sym_bit_DASHor2] = ACTIONS(2108), - [anon_sym_DOT_DOT2] = ACTIONS(2626), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2628), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2628), - [anon_sym_err_GT] = ACTIONS(2110), - [anon_sym_out_GT] = ACTIONS(2110), - [anon_sym_e_GT] = ACTIONS(2110), - [anon_sym_o_GT] = ACTIONS(2110), - [anon_sym_err_PLUSout_GT] = ACTIONS(2110), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2110), - [anon_sym_o_PLUSe_GT] = ACTIONS(2110), - [anon_sym_e_PLUSo_GT] = ACTIONS(2110), - [anon_sym_err_GT_GT] = ACTIONS(2108), - [anon_sym_out_GT_GT] = ACTIONS(2108), - [anon_sym_e_GT_GT] = ACTIONS(2108), - [anon_sym_o_GT_GT] = ACTIONS(2108), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2108), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2108), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2108), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2108), + [anon_sym_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)] = { - [aux_sym__repeat_newline] = STATE(1011), - [sym__expression_parenthesized] = STATE(4408), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1832), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), [sym_comment] = STATE(950), - [aux_sym_cmd_identifier_token2] = ACTIONS(2630), - [anon_sym_true] = ACTIONS(2632), - [anon_sym_false] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [aux_sym_cmd_identifier_token3] = ACTIONS(2636), - [aux_sym_cmd_identifier_token4] = ACTIONS(2636), - [aux_sym_cmd_identifier_token5] = ACTIONS(2636), - [sym__newline] = ACTIONS(2638), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [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(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2046), - [aux_sym__val_number_decimal_token3] = ACTIONS(2640), - [aux_sym__val_number_decimal_token4] = ACTIONS(2640), - [aux_sym__val_number_token1] = ACTIONS(2636), - [aux_sym__val_number_token2] = ACTIONS(2636), - [aux_sym__val_number_token3] = ACTIONS(2636), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2642), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [ts_builtin_sym_end] = ACTIONS(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)] = { - [aux_sym__repeat_newline] = STATE(1108), - [sym__expression_parenthesized] = STATE(4377), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1832), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), [sym_comment] = STATE(951), - [aux_sym_cmd_identifier_token2] = ACTIONS(2630), - [anon_sym_true] = ACTIONS(2632), - [anon_sym_false] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [aux_sym_cmd_identifier_token3] = ACTIONS(2636), - [aux_sym_cmd_identifier_token4] = ACTIONS(2636), - [aux_sym_cmd_identifier_token5] = ACTIONS(2636), - [sym__newline] = ACTIONS(2638), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [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(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2046), - [aux_sym__val_number_decimal_token3] = ACTIONS(2640), - [aux_sym__val_number_decimal_token4] = ACTIONS(2640), - [aux_sym__val_number_token1] = ACTIONS(2636), - [aux_sym__val_number_token2] = ACTIONS(2636), - [aux_sym__val_number_token3] = ACTIONS(2636), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2642), - [anon_sym_DQUOTE] = ACTIONS(197), - [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(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(1876), - [anon_sym_in] = ACTIONS(1876), - [sym__newline] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_err_GT_PIPE] = ACTIONS(1876), - [anon_sym_out_GT_PIPE] = ACTIONS(1876), - [anon_sym_e_GT_PIPE] = ACTIONS(1876), - [anon_sym_o_GT_PIPE] = ACTIONS(1876), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1876), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1876), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1876), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1876), - [anon_sym_GT2] = ACTIONS(1878), - [anon_sym_DASH2] = ACTIONS(1876), - [anon_sym_STAR2] = ACTIONS(1878), - [anon_sym_and2] = ACTIONS(1876), - [anon_sym_xor2] = ACTIONS(1876), - [anon_sym_or2] = ACTIONS(1876), - [anon_sym_not_DASHin2] = ACTIONS(1876), - [anon_sym_has2] = ACTIONS(1876), - [anon_sym_not_DASHhas2] = ACTIONS(1876), - [anon_sym_starts_DASHwith2] = ACTIONS(1876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1876), - [anon_sym_ends_DASHwith2] = ACTIONS(1876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1876), - [anon_sym_EQ_EQ2] = ACTIONS(1876), - [anon_sym_BANG_EQ2] = ACTIONS(1876), - [anon_sym_LT2] = ACTIONS(1878), - [anon_sym_LT_EQ2] = ACTIONS(1876), - [anon_sym_GT_EQ2] = ACTIONS(1876), - [anon_sym_EQ_TILDE2] = ACTIONS(1876), - [anon_sym_BANG_TILDE2] = ACTIONS(1876), - [anon_sym_like2] = ACTIONS(1876), - [anon_sym_not_DASHlike2] = ACTIONS(1876), - [anon_sym_STAR_STAR2] = ACTIONS(1876), - [anon_sym_PLUS_PLUS2] = ACTIONS(1876), - [anon_sym_SLASH2] = ACTIONS(1878), - [anon_sym_mod2] = ACTIONS(1876), - [anon_sym_SLASH_SLASH2] = ACTIONS(1876), - [anon_sym_PLUS2] = ACTIONS(1878), - [anon_sym_bit_DASHshl2] = ACTIONS(1876), - [anon_sym_bit_DASHshr2] = ACTIONS(1876), - [anon_sym_bit_DASHand2] = ACTIONS(1876), - [anon_sym_bit_DASHxor2] = ACTIONS(1876), - [anon_sym_bit_DASHor2] = ACTIONS(1876), - [anon_sym_DOT_DOT2] = ACTIONS(1878), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1876), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1876), - [anon_sym_err_GT] = ACTIONS(1878), - [anon_sym_out_GT] = ACTIONS(1878), - [anon_sym_e_GT] = ACTIONS(1878), - [anon_sym_o_GT] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT] = ACTIONS(1878), - [anon_sym_err_GT_GT] = ACTIONS(1876), - [anon_sym_out_GT_GT] = ACTIONS(1876), - [anon_sym_e_GT_GT] = ACTIONS(1876), - [anon_sym_o_GT_GT] = ACTIONS(1876), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1876), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1876), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1876), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1876), + [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(2570), - [sym__newline] = ACTIONS(2570), - [anon_sym_SEMI] = ACTIONS(2570), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_err_GT_PIPE] = ACTIONS(2570), - [anon_sym_out_GT_PIPE] = ACTIONS(2570), - [anon_sym_e_GT_PIPE] = ACTIONS(2570), - [anon_sym_o_GT_PIPE] = ACTIONS(2570), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2570), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2570), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2570), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2570), - [anon_sym_RPAREN] = ACTIONS(2570), - [anon_sym_GT2] = ACTIONS(2572), - [anon_sym_DASH2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_RBRACE] = ACTIONS(2570), - [anon_sym_EQ_GT] = ACTIONS(2570), - [anon_sym_STAR2] = ACTIONS(2572), - [anon_sym_and2] = ACTIONS(2570), - [anon_sym_xor2] = ACTIONS(2570), - [anon_sym_or2] = ACTIONS(2570), - [anon_sym_not_DASHin2] = ACTIONS(2570), - [anon_sym_has2] = ACTIONS(2570), - [anon_sym_not_DASHhas2] = ACTIONS(2570), - [anon_sym_starts_DASHwith2] = ACTIONS(2570), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2570), - [anon_sym_ends_DASHwith2] = ACTIONS(2570), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2570), - [anon_sym_EQ_EQ2] = ACTIONS(2570), - [anon_sym_BANG_EQ2] = ACTIONS(2570), - [anon_sym_LT2] = ACTIONS(2572), - [anon_sym_LT_EQ2] = ACTIONS(2570), - [anon_sym_GT_EQ2] = ACTIONS(2570), - [anon_sym_EQ_TILDE2] = ACTIONS(2570), - [anon_sym_BANG_TILDE2] = ACTIONS(2570), - [anon_sym_like2] = ACTIONS(2570), - [anon_sym_not_DASHlike2] = ACTIONS(2570), - [anon_sym_STAR_STAR2] = ACTIONS(2570), - [anon_sym_PLUS_PLUS2] = ACTIONS(2570), - [anon_sym_SLASH2] = ACTIONS(2572), - [anon_sym_mod2] = ACTIONS(2570), - [anon_sym_SLASH_SLASH2] = ACTIONS(2570), - [anon_sym_PLUS2] = ACTIONS(2572), - [anon_sym_bit_DASHshl2] = ACTIONS(2570), - [anon_sym_bit_DASHshr2] = ACTIONS(2570), - [anon_sym_bit_DASHand2] = ACTIONS(2570), - [anon_sym_bit_DASHxor2] = ACTIONS(2570), - [anon_sym_bit_DASHor2] = ACTIONS(2570), - [anon_sym_err_GT] = ACTIONS(2572), - [anon_sym_out_GT] = ACTIONS(2572), - [anon_sym_e_GT] = ACTIONS(2572), - [anon_sym_o_GT] = ACTIONS(2572), - [anon_sym_err_PLUSout_GT] = ACTIONS(2572), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2572), - [anon_sym_o_PLUSe_GT] = ACTIONS(2572), - [anon_sym_e_PLUSo_GT] = ACTIONS(2572), - [anon_sym_err_GT_GT] = ACTIONS(2570), - [anon_sym_out_GT_GT] = ACTIONS(2570), - [anon_sym_e_GT_GT] = ACTIONS(2570), - [anon_sym_o_GT_GT] = ACTIONS(2570), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2570), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2570), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2570), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2570), + [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(2560), - [sym__newline] = ACTIONS(2560), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2560), - [anon_sym_err_GT_PIPE] = ACTIONS(2560), - [anon_sym_out_GT_PIPE] = ACTIONS(2560), - [anon_sym_e_GT_PIPE] = ACTIONS(2560), - [anon_sym_o_GT_PIPE] = ACTIONS(2560), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2560), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2560), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2560), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2560), - [anon_sym_RPAREN] = ACTIONS(2560), - [anon_sym_GT2] = ACTIONS(2562), - [anon_sym_DASH2] = ACTIONS(2560), - [anon_sym_LBRACE] = ACTIONS(2560), - [anon_sym_RBRACE] = ACTIONS(2560), - [anon_sym_EQ_GT] = ACTIONS(2560), - [anon_sym_STAR2] = ACTIONS(2562), - [anon_sym_and2] = ACTIONS(2560), - [anon_sym_xor2] = ACTIONS(2560), - [anon_sym_or2] = ACTIONS(2560), - [anon_sym_not_DASHin2] = ACTIONS(2560), - [anon_sym_has2] = ACTIONS(2560), - [anon_sym_not_DASHhas2] = ACTIONS(2560), - [anon_sym_starts_DASHwith2] = ACTIONS(2560), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2560), - [anon_sym_ends_DASHwith2] = ACTIONS(2560), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2560), - [anon_sym_EQ_EQ2] = ACTIONS(2560), - [anon_sym_BANG_EQ2] = ACTIONS(2560), - [anon_sym_LT2] = ACTIONS(2562), - [anon_sym_LT_EQ2] = ACTIONS(2560), - [anon_sym_GT_EQ2] = ACTIONS(2560), - [anon_sym_EQ_TILDE2] = ACTIONS(2560), - [anon_sym_BANG_TILDE2] = ACTIONS(2560), - [anon_sym_like2] = ACTIONS(2560), - [anon_sym_not_DASHlike2] = ACTIONS(2560), - [anon_sym_STAR_STAR2] = ACTIONS(2560), - [anon_sym_PLUS_PLUS2] = ACTIONS(2560), - [anon_sym_SLASH2] = ACTIONS(2562), - [anon_sym_mod2] = ACTIONS(2560), - [anon_sym_SLASH_SLASH2] = ACTIONS(2560), - [anon_sym_PLUS2] = ACTIONS(2562), - [anon_sym_bit_DASHshl2] = ACTIONS(2560), - [anon_sym_bit_DASHshr2] = ACTIONS(2560), - [anon_sym_bit_DASHand2] = ACTIONS(2560), - [anon_sym_bit_DASHxor2] = ACTIONS(2560), - [anon_sym_bit_DASHor2] = ACTIONS(2560), - [anon_sym_err_GT] = ACTIONS(2562), - [anon_sym_out_GT] = ACTIONS(2562), - [anon_sym_e_GT] = ACTIONS(2562), - [anon_sym_o_GT] = ACTIONS(2562), - [anon_sym_err_PLUSout_GT] = ACTIONS(2562), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2562), - [anon_sym_o_PLUSe_GT] = ACTIONS(2562), - [anon_sym_e_PLUSo_GT] = ACTIONS(2562), - [anon_sym_err_GT_GT] = ACTIONS(2560), - [anon_sym_out_GT_GT] = ACTIONS(2560), - [anon_sym_e_GT_GT] = ACTIONS(2560), - [anon_sym_o_GT_GT] = ACTIONS(2560), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2560), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2560), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2560), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2560), + [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), - [ts_builtin_sym_end] = ACTIONS(2116), - [anon_sym_in] = ACTIONS(2116), - [sym__newline] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_PIPE] = ACTIONS(2116), - [anon_sym_err_GT_PIPE] = ACTIONS(2116), - [anon_sym_out_GT_PIPE] = ACTIONS(2116), - [anon_sym_e_GT_PIPE] = ACTIONS(2116), - [anon_sym_o_GT_PIPE] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2116), - [anon_sym_GT2] = ACTIONS(2118), - [anon_sym_DASH2] = ACTIONS(2116), - [anon_sym_STAR2] = ACTIONS(2118), - [anon_sym_and2] = ACTIONS(2116), - [anon_sym_xor2] = ACTIONS(2116), - [anon_sym_or2] = ACTIONS(2116), - [anon_sym_not_DASHin2] = ACTIONS(2116), - [anon_sym_has2] = ACTIONS(2116), - [anon_sym_not_DASHhas2] = ACTIONS(2116), - [anon_sym_starts_DASHwith2] = ACTIONS(2116), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2116), - [anon_sym_ends_DASHwith2] = ACTIONS(2116), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2116), - [anon_sym_EQ_EQ2] = ACTIONS(2116), - [anon_sym_BANG_EQ2] = ACTIONS(2116), - [anon_sym_LT2] = ACTIONS(2118), - [anon_sym_LT_EQ2] = ACTIONS(2116), - [anon_sym_GT_EQ2] = ACTIONS(2116), - [anon_sym_EQ_TILDE2] = ACTIONS(2116), - [anon_sym_BANG_TILDE2] = ACTIONS(2116), - [anon_sym_like2] = ACTIONS(2116), - [anon_sym_not_DASHlike2] = ACTIONS(2116), - [anon_sym_STAR_STAR2] = ACTIONS(2116), - [anon_sym_PLUS_PLUS2] = ACTIONS(2116), - [anon_sym_SLASH2] = ACTIONS(2118), - [anon_sym_mod2] = ACTIONS(2116), - [anon_sym_SLASH_SLASH2] = ACTIONS(2116), - [anon_sym_PLUS2] = ACTIONS(2118), - [anon_sym_bit_DASHshl2] = ACTIONS(2116), - [anon_sym_bit_DASHshr2] = ACTIONS(2116), - [anon_sym_bit_DASHand2] = ACTIONS(2116), - [anon_sym_bit_DASHxor2] = ACTIONS(2116), - [anon_sym_bit_DASHor2] = ACTIONS(2116), - [anon_sym_DOT_DOT2] = ACTIONS(2644), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2646), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2118), - [anon_sym_out_GT] = ACTIONS(2118), - [anon_sym_e_GT] = ACTIONS(2118), - [anon_sym_o_GT] = ACTIONS(2118), - [anon_sym_err_PLUSout_GT] = ACTIONS(2118), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2118), - [anon_sym_o_PLUSe_GT] = ACTIONS(2118), - [anon_sym_e_PLUSo_GT] = ACTIONS(2118), - [anon_sym_err_GT_GT] = ACTIONS(2116), - [anon_sym_out_GT_GT] = ACTIONS(2116), - [anon_sym_e_GT_GT] = ACTIONS(2116), - [anon_sym_o_GT_GT] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(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), - [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(2104), - [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(2104), - [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(2104), - [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(2104), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2104), - [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(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(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(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(1846), - [anon_sym_in] = ACTIONS(1846), - [sym__newline] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_err_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_GT_PIPE] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), - [anon_sym_GT2] = ACTIONS(1848), - [anon_sym_DASH2] = ACTIONS(1846), - [anon_sym_STAR2] = ACTIONS(1848), - [anon_sym_and2] = ACTIONS(1846), - [anon_sym_xor2] = ACTIONS(1846), - [anon_sym_or2] = ACTIONS(1846), - [anon_sym_not_DASHin2] = ACTIONS(1846), - [anon_sym_has2] = ACTIONS(1846), - [anon_sym_not_DASHhas2] = ACTIONS(1846), - [anon_sym_starts_DASHwith2] = ACTIONS(1846), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), - [anon_sym_ends_DASHwith2] = ACTIONS(1846), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), - [anon_sym_EQ_EQ2] = ACTIONS(1846), - [anon_sym_BANG_EQ2] = ACTIONS(1846), - [anon_sym_LT2] = ACTIONS(1848), - [anon_sym_LT_EQ2] = ACTIONS(1846), - [anon_sym_GT_EQ2] = ACTIONS(1846), - [anon_sym_EQ_TILDE2] = ACTIONS(1846), - [anon_sym_BANG_TILDE2] = ACTIONS(1846), - [anon_sym_like2] = ACTIONS(1846), - [anon_sym_not_DASHlike2] = ACTIONS(1846), - [anon_sym_STAR_STAR2] = ACTIONS(1846), - [anon_sym_PLUS_PLUS2] = ACTIONS(1846), - [anon_sym_SLASH2] = ACTIONS(1848), - [anon_sym_mod2] = ACTIONS(1846), - [anon_sym_SLASH_SLASH2] = ACTIONS(1846), - [anon_sym_PLUS2] = ACTIONS(1848), - [anon_sym_bit_DASHshl2] = ACTIONS(1846), - [anon_sym_bit_DASHshr2] = ACTIONS(1846), - [anon_sym_bit_DASHand2] = ACTIONS(1846), - [anon_sym_bit_DASHxor2] = ACTIONS(1846), - [anon_sym_bit_DASHor2] = ACTIONS(1846), - [anon_sym_DOT_DOT2] = ACTIONS(1848), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1846), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1846), - [anon_sym_err_GT] = ACTIONS(1848), - [anon_sym_out_GT] = ACTIONS(1848), - [anon_sym_e_GT] = ACTIONS(1848), - [anon_sym_o_GT] = ACTIONS(1848), - [anon_sym_err_PLUSout_GT] = ACTIONS(1848), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), - [anon_sym_o_PLUSe_GT] = ACTIONS(1848), - [anon_sym_e_PLUSo_GT] = ACTIONS(1848), - [anon_sym_err_GT_GT] = ACTIONS(1846), - [anon_sym_out_GT_GT] = ACTIONS(1846), - [anon_sym_e_GT_GT] = ACTIONS(1846), - [anon_sym_o_GT_GT] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), + [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), - [ts_builtin_sym_end] = ACTIONS(2124), - [anon_sym_in] = ACTIONS(2124), - [sym__newline] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_PIPE] = ACTIONS(2124), - [anon_sym_err_GT_PIPE] = ACTIONS(2124), - [anon_sym_out_GT_PIPE] = ACTIONS(2124), - [anon_sym_e_GT_PIPE] = ACTIONS(2124), - [anon_sym_o_GT_PIPE] = ACTIONS(2124), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2124), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2124), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2124), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2124), - [anon_sym_GT2] = ACTIONS(2126), - [anon_sym_DASH2] = ACTIONS(2124), - [anon_sym_STAR2] = ACTIONS(2126), - [anon_sym_and2] = ACTIONS(2124), - [anon_sym_xor2] = ACTIONS(2124), - [anon_sym_or2] = ACTIONS(2124), - [anon_sym_not_DASHin2] = ACTIONS(2124), - [anon_sym_has2] = ACTIONS(2124), - [anon_sym_not_DASHhas2] = ACTIONS(2124), - [anon_sym_starts_DASHwith2] = ACTIONS(2124), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2124), - [anon_sym_ends_DASHwith2] = ACTIONS(2124), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2124), - [anon_sym_EQ_EQ2] = ACTIONS(2124), - [anon_sym_BANG_EQ2] = ACTIONS(2124), - [anon_sym_LT2] = ACTIONS(2126), - [anon_sym_LT_EQ2] = ACTIONS(2124), - [anon_sym_GT_EQ2] = ACTIONS(2124), - [anon_sym_EQ_TILDE2] = ACTIONS(2124), - [anon_sym_BANG_TILDE2] = ACTIONS(2124), - [anon_sym_like2] = ACTIONS(2124), - [anon_sym_not_DASHlike2] = ACTIONS(2124), - [anon_sym_STAR_STAR2] = ACTIONS(2124), - [anon_sym_PLUS_PLUS2] = ACTIONS(2124), - [anon_sym_SLASH2] = ACTIONS(2126), - [anon_sym_mod2] = ACTIONS(2124), - [anon_sym_SLASH_SLASH2] = ACTIONS(2124), - [anon_sym_PLUS2] = ACTIONS(2126), - [anon_sym_bit_DASHshl2] = ACTIONS(2124), - [anon_sym_bit_DASHshr2] = ACTIONS(2124), - [anon_sym_bit_DASHand2] = ACTIONS(2124), - [anon_sym_bit_DASHxor2] = ACTIONS(2124), - [anon_sym_bit_DASHor2] = ACTIONS(2124), - [anon_sym_DOT_DOT2] = ACTIONS(2648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2650), - [anon_sym_err_GT] = ACTIONS(2126), - [anon_sym_out_GT] = ACTIONS(2126), - [anon_sym_e_GT] = ACTIONS(2126), - [anon_sym_o_GT] = ACTIONS(2126), - [anon_sym_err_PLUSout_GT] = ACTIONS(2126), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2126), - [anon_sym_o_PLUSe_GT] = ACTIONS(2126), - [anon_sym_e_PLUSo_GT] = ACTIONS(2126), - [anon_sym_err_GT_GT] = ACTIONS(2124), - [anon_sym_out_GT_GT] = ACTIONS(2124), - [anon_sym_e_GT_GT] = ACTIONS(2124), - [anon_sym_o_GT_GT] = ACTIONS(2124), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2124), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2124), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2124), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2124), + [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), - [ts_builtin_sym_end] = ACTIONS(2021), - [anon_sym_in] = ACTIONS(2021), - [sym__newline] = ACTIONS(2021), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_err_GT_PIPE] = ACTIONS(2021), - [anon_sym_out_GT_PIPE] = ACTIONS(2021), - [anon_sym_e_GT_PIPE] = ACTIONS(2021), - [anon_sym_o_GT_PIPE] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2021), - [anon_sym_GT2] = ACTIONS(2023), - [anon_sym_DASH2] = ACTIONS(2021), - [anon_sym_STAR2] = ACTIONS(2023), - [anon_sym_and2] = ACTIONS(2021), - [anon_sym_xor2] = ACTIONS(2021), - [anon_sym_or2] = ACTIONS(2021), - [anon_sym_not_DASHin2] = ACTIONS(2021), - [anon_sym_has2] = ACTIONS(2021), - [anon_sym_not_DASHhas2] = ACTIONS(2021), - [anon_sym_starts_DASHwith2] = ACTIONS(2021), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2021), - [anon_sym_ends_DASHwith2] = ACTIONS(2021), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2021), - [anon_sym_EQ_EQ2] = ACTIONS(2021), - [anon_sym_BANG_EQ2] = ACTIONS(2021), - [anon_sym_LT2] = ACTIONS(2023), - [anon_sym_LT_EQ2] = ACTIONS(2021), - [anon_sym_GT_EQ2] = ACTIONS(2021), - [anon_sym_EQ_TILDE2] = ACTIONS(2021), - [anon_sym_BANG_TILDE2] = ACTIONS(2021), - [anon_sym_like2] = ACTIONS(2021), - [anon_sym_not_DASHlike2] = ACTIONS(2021), - [anon_sym_STAR_STAR2] = ACTIONS(2021), - [anon_sym_PLUS_PLUS2] = ACTIONS(2021), - [anon_sym_SLASH2] = ACTIONS(2023), - [anon_sym_mod2] = ACTIONS(2021), - [anon_sym_SLASH_SLASH2] = ACTIONS(2021), - [anon_sym_PLUS2] = ACTIONS(2023), - [anon_sym_bit_DASHshl2] = ACTIONS(2021), - [anon_sym_bit_DASHshr2] = ACTIONS(2021), - [anon_sym_bit_DASHand2] = ACTIONS(2021), - [anon_sym_bit_DASHxor2] = ACTIONS(2021), - [anon_sym_bit_DASHor2] = ACTIONS(2021), - [anon_sym_DOT_DOT2] = ACTIONS(2652), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2654), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2654), - [anon_sym_err_GT] = ACTIONS(2023), - [anon_sym_out_GT] = ACTIONS(2023), - [anon_sym_e_GT] = ACTIONS(2023), - [anon_sym_o_GT] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT] = ACTIONS(2023), - [anon_sym_err_GT_GT] = ACTIONS(2021), - [anon_sym_out_GT_GT] = ACTIONS(2021), - [anon_sym_e_GT_GT] = ACTIONS(2021), - [anon_sym_o_GT_GT] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2021), + [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(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_RBRACE] = 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_LPAREN2] = 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_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), - [sym__unquoted_pattern] = ACTIONS(1902), + [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(2021), - [sym__newline] = ACTIONS(2021), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_err_GT_PIPE] = ACTIONS(2021), - [anon_sym_out_GT_PIPE] = ACTIONS(2021), - [anon_sym_e_GT_PIPE] = ACTIONS(2021), - [anon_sym_o_GT_PIPE] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2021), - [anon_sym_GT2] = ACTIONS(2023), - [anon_sym_DASH2] = ACTIONS(2021), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_STAR2] = ACTIONS(2023), - [anon_sym_and2] = ACTIONS(2021), - [anon_sym_xor2] = ACTIONS(2021), - [anon_sym_or2] = ACTIONS(2021), - [anon_sym_not_DASHin2] = ACTIONS(2021), - [anon_sym_has2] = ACTIONS(2021), - [anon_sym_not_DASHhas2] = ACTIONS(2021), - [anon_sym_starts_DASHwith2] = ACTIONS(2021), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2021), - [anon_sym_ends_DASHwith2] = ACTIONS(2021), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2021), - [anon_sym_EQ_EQ2] = ACTIONS(2021), - [anon_sym_BANG_EQ2] = ACTIONS(2021), - [anon_sym_LT2] = ACTIONS(2023), - [anon_sym_LT_EQ2] = ACTIONS(2021), - [anon_sym_GT_EQ2] = ACTIONS(2021), - [anon_sym_EQ_TILDE2] = ACTIONS(2021), - [anon_sym_BANG_TILDE2] = ACTIONS(2021), - [anon_sym_like2] = ACTIONS(2021), - [anon_sym_not_DASHlike2] = ACTIONS(2021), - [anon_sym_LPAREN2] = ACTIONS(2025), - [anon_sym_STAR_STAR2] = ACTIONS(2021), - [anon_sym_PLUS_PLUS2] = ACTIONS(2021), - [anon_sym_SLASH2] = ACTIONS(2023), - [anon_sym_mod2] = ACTIONS(2021), - [anon_sym_SLASH_SLASH2] = ACTIONS(2021), - [anon_sym_PLUS2] = ACTIONS(2023), - [anon_sym_bit_DASHshl2] = ACTIONS(2021), - [anon_sym_bit_DASHshr2] = ACTIONS(2021), - [anon_sym_bit_DASHand2] = ACTIONS(2021), - [anon_sym_bit_DASHxor2] = ACTIONS(2021), - [anon_sym_bit_DASHor2] = ACTIONS(2021), - [anon_sym_err_GT] = ACTIONS(2023), - [anon_sym_out_GT] = ACTIONS(2023), - [anon_sym_e_GT] = ACTIONS(2023), - [anon_sym_o_GT] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT] = ACTIONS(2023), - [anon_sym_err_GT_GT] = ACTIONS(2021), - [anon_sym_out_GT_GT] = ACTIONS(2021), - [anon_sym_e_GT_GT] = ACTIONS(2021), - [anon_sym_o_GT_GT] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2021), - [sym__unquoted_pattern] = ACTIONS(2031), + [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)] = { [sym_comment] = STATE(962), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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(1129), - [sym__expression_parenthesized] = STATE(4398), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1832), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), [sym_comment] = STATE(963), - [aux_sym_cmd_identifier_token2] = ACTIONS(2630), - [anon_sym_true] = ACTIONS(2632), - [anon_sym_false] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [aux_sym_cmd_identifier_token3] = ACTIONS(2636), - [aux_sym_cmd_identifier_token4] = ACTIONS(2636), - [aux_sym_cmd_identifier_token5] = ACTIONS(2636), - [sym__newline] = ACTIONS(2638), + [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(1006), + [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(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2046), - [aux_sym__val_number_decimal_token3] = ACTIONS(2640), - [aux_sym__val_number_decimal_token4] = ACTIONS(2640), - [aux_sym__val_number_token1] = ACTIONS(2636), - [aux_sym__val_number_token2] = ACTIONS(2636), - [aux_sym__val_number_token3] = ACTIONS(2636), + [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(2642), + [sym_val_date] = ACTIONS(2567), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -119284,7898 +119720,6749 @@ 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)] = { - [sym_comment] = STATE(964), - [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(1852), - [anon_sym_DASH2] = ACTIONS(1850), - [anon_sym_STAR2] = ACTIONS(1852), - [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(1852), - [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(1852), - [anon_sym_mod2] = ACTIONS(1850), - [anon_sym_SLASH_SLASH2] = ACTIONS(1850), - [anon_sym_PLUS2] = ACTIONS(1852), - [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_DOT_DOT2] = ACTIONS(1852), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1850), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1850), - [anon_sym_err_GT] = ACTIONS(1852), - [anon_sym_out_GT] = ACTIONS(1852), - [anon_sym_e_GT] = ACTIONS(1852), - [anon_sym_o_GT] = ACTIONS(1852), - [anon_sym_err_PLUSout_GT] = ACTIONS(1852), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1852), - [anon_sym_o_PLUSe_GT] = ACTIONS(1852), - [anon_sym_e_PLUSo_GT] = ACTIONS(1852), - [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(965)] = { - [sym__expr_parenthesized_immediate] = STATE(4680), [sym_comment] = STATE(965), - [ts_builtin_sym_end] = ACTIONS(2082), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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)] = { - [aux_sym__repeat_newline] = STATE(1035), [sym_comment] = STATE(966), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [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)] = { - [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(967), - [anon_sym_in] = ACTIONS(2656), - [sym__newline] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2656), - [anon_sym_PIPE] = ACTIONS(2656), - [anon_sym_err_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_GT_PIPE] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), - [anon_sym_RPAREN] = ACTIONS(2656), - [anon_sym_GT2] = ACTIONS(2658), - [anon_sym_DASH2] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2658), - [anon_sym_and2] = ACTIONS(2656), - [anon_sym_xor2] = ACTIONS(2656), - [anon_sym_or2] = ACTIONS(2656), - [anon_sym_not_DASHin2] = ACTIONS(2656), - [anon_sym_has2] = ACTIONS(2656), - [anon_sym_not_DASHhas2] = ACTIONS(2656), - [anon_sym_starts_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), - [anon_sym_ends_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), - [anon_sym_EQ_EQ2] = ACTIONS(2656), - [anon_sym_BANG_EQ2] = ACTIONS(2656), - [anon_sym_LT2] = ACTIONS(2658), - [anon_sym_LT_EQ2] = ACTIONS(2656), - [anon_sym_GT_EQ2] = ACTIONS(2656), - [anon_sym_EQ_TILDE2] = ACTIONS(2656), - [anon_sym_BANG_TILDE2] = ACTIONS(2656), - [anon_sym_like2] = ACTIONS(2656), - [anon_sym_not_DASHlike2] = ACTIONS(2656), - [anon_sym_STAR_STAR2] = ACTIONS(2656), - [anon_sym_PLUS_PLUS2] = ACTIONS(2656), - [anon_sym_SLASH2] = ACTIONS(2658), - [anon_sym_mod2] = ACTIONS(2656), - [anon_sym_SLASH_SLASH2] = ACTIONS(2656), - [anon_sym_PLUS2] = ACTIONS(2658), - [anon_sym_bit_DASHshl2] = ACTIONS(2656), - [anon_sym_bit_DASHshr2] = ACTIONS(2656), - [anon_sym_bit_DASHand2] = ACTIONS(2656), - [anon_sym_bit_DASHxor2] = ACTIONS(2656), - [anon_sym_bit_DASHor2] = ACTIONS(2656), - [anon_sym_err_GT] = ACTIONS(2658), - [anon_sym_out_GT] = ACTIONS(2658), - [anon_sym_e_GT] = ACTIONS(2658), - [anon_sym_o_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT] = ACTIONS(2658), - [anon_sym_err_GT_GT] = ACTIONS(2656), - [anon_sym_out_GT_GT] = ACTIONS(2656), - [anon_sym_e_GT_GT] = ACTIONS(2656), - [anon_sym_o_GT_GT] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_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)] = { - [aux_sym__repeat_newline] = STATE(1036), [sym_comment] = STATE(968), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [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)] = { - [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(969), - [anon_sym_in] = ACTIONS(2656), - [sym__newline] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2656), - [anon_sym_PIPE] = ACTIONS(2656), - [anon_sym_err_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_GT_PIPE] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), - [anon_sym_RPAREN] = ACTIONS(2656), - [anon_sym_GT2] = ACTIONS(2658), - [anon_sym_DASH2] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2658), - [anon_sym_and2] = ACTIONS(2656), - [anon_sym_xor2] = ACTIONS(2656), - [anon_sym_or2] = ACTIONS(2656), - [anon_sym_not_DASHin2] = ACTIONS(2656), - [anon_sym_has2] = ACTIONS(2656), - [anon_sym_not_DASHhas2] = ACTIONS(2656), - [anon_sym_starts_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), - [anon_sym_ends_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), - [anon_sym_EQ_EQ2] = ACTIONS(2656), - [anon_sym_BANG_EQ2] = ACTIONS(2656), - [anon_sym_LT2] = ACTIONS(2658), - [anon_sym_LT_EQ2] = ACTIONS(2656), - [anon_sym_GT_EQ2] = ACTIONS(2656), - [anon_sym_EQ_TILDE2] = ACTIONS(2656), - [anon_sym_BANG_TILDE2] = ACTIONS(2656), - [anon_sym_like2] = ACTIONS(2656), - [anon_sym_not_DASHlike2] = ACTIONS(2656), - [anon_sym_STAR_STAR2] = ACTIONS(2656), - [anon_sym_PLUS_PLUS2] = ACTIONS(2656), - [anon_sym_SLASH2] = ACTIONS(2658), - [anon_sym_mod2] = ACTIONS(2656), - [anon_sym_SLASH_SLASH2] = ACTIONS(2656), - [anon_sym_PLUS2] = ACTIONS(2658), - [anon_sym_bit_DASHshl2] = ACTIONS(2656), - [anon_sym_bit_DASHshr2] = ACTIONS(2656), - [anon_sym_bit_DASHand2] = ACTIONS(2656), - [anon_sym_bit_DASHxor2] = ACTIONS(2656), - [anon_sym_bit_DASHor2] = ACTIONS(2656), - [anon_sym_err_GT] = ACTIONS(2658), - [anon_sym_out_GT] = ACTIONS(2658), - [anon_sym_e_GT] = ACTIONS(2658), - [anon_sym_o_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT] = ACTIONS(2658), - [anon_sym_err_GT_GT] = ACTIONS(2656), - [anon_sym_out_GT_GT] = ACTIONS(2656), - [anon_sym_e_GT_GT] = ACTIONS(2656), - [anon_sym_o_GT_GT] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_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_expr_unary] = STATE(2882), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_parenthesized] = STATE(2577), - [sym_val_range] = STATE(2882), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(2882), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(2628), - [sym_val_variable] = STATE(2569), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(2341), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(2604), - [sym__unquoted_with_expr] = STATE(2884), - [sym__unquoted_anonymous_prefix] = STATE(4525), [sym_comment] = STATE(970), - [anon_sym_true] = ACTIONS(2660), - [anon_sym_false] = ACTIONS(2660), - [anon_sym_null] = ACTIONS(2662), - [aux_sym_cmd_identifier_token3] = ACTIONS(2664), - [aux_sym_cmd_identifier_token4] = ACTIONS(2664), - [aux_sym_cmd_identifier_token5] = ACTIONS(2664), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_DOLLAR] = ACTIONS(2670), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2672), - [anon_sym_DOT_DOT] = ACTIONS(2674), - [aux_sym_expr_unary_token1] = ACTIONS(2676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_LT] = ACTIONS(2678), - [aux_sym__val_number_decimal_token1] = ACTIONS(2680), - [aux_sym__val_number_decimal_token2] = ACTIONS(2682), - [aux_sym__val_number_decimal_token3] = ACTIONS(2684), - [aux_sym__val_number_decimal_token4] = ACTIONS(2684), - [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(2686), - [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(2256), + [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), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(971)] = { - [aux_sym__repeat_newline] = STATE(1037), + [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), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), - [anon_sym_POUND] = ACTIONS(3), + [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_comment] = STATE(972), - [ts_builtin_sym_end] = ACTIONS(2506), - [anon_sym_in] = ACTIONS(2506), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2506), - [anon_sym_xor2] = ACTIONS(2506), - [anon_sym_or2] = ACTIONS(2506), - [anon_sym_not_DASHin2] = ACTIONS(2506), - [anon_sym_has2] = ACTIONS(2506), - [anon_sym_not_DASHhas2] = ACTIONS(2506), - [anon_sym_starts_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2506), - [anon_sym_ends_DASHwith2] = ACTIONS(2506), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2506), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2506), - [anon_sym_like2] = ACTIONS(2506), - [anon_sym_not_DASHlike2] = ACTIONS(2506), - [anon_sym_LPAREN2] = ACTIONS(2506), - [anon_sym_STAR_STAR2] = ACTIONS(2506), - [anon_sym_PLUS_PLUS2] = ACTIONS(2506), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2506), - [anon_sym_SLASH_SLASH2] = ACTIONS(2506), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2506), - [anon_sym_bit_DASHshr2] = ACTIONS(2506), - [anon_sym_bit_DASHand2] = ACTIONS(2506), - [anon_sym_bit_DASHxor2] = ACTIONS(2506), - [anon_sym_bit_DASHor2] = ACTIONS(2506), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [sym__unquoted_pattern] = ACTIONS(2508), + [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(2521), - [anon_sym_in] = ACTIONS(2521), - [sym__newline] = ACTIONS(2521), - [anon_sym_SEMI] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2521), - [anon_sym_err_GT_PIPE] = ACTIONS(2521), - [anon_sym_out_GT_PIPE] = ACTIONS(2521), - [anon_sym_e_GT_PIPE] = ACTIONS(2521), - [anon_sym_o_GT_PIPE] = ACTIONS(2521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2521), - [anon_sym_GT2] = ACTIONS(2523), - [anon_sym_DASH2] = ACTIONS(2521), - [anon_sym_STAR2] = ACTIONS(2523), - [anon_sym_and2] = ACTIONS(2521), - [anon_sym_xor2] = ACTIONS(2521), - [anon_sym_or2] = ACTIONS(2521), - [anon_sym_not_DASHin2] = ACTIONS(2521), - [anon_sym_has2] = ACTIONS(2521), - [anon_sym_not_DASHhas2] = ACTIONS(2521), - [anon_sym_starts_DASHwith2] = ACTIONS(2521), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2521), - [anon_sym_ends_DASHwith2] = ACTIONS(2521), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2521), - [anon_sym_EQ_EQ2] = ACTIONS(2521), - [anon_sym_BANG_EQ2] = ACTIONS(2521), - [anon_sym_LT2] = ACTIONS(2523), - [anon_sym_LT_EQ2] = ACTIONS(2521), - [anon_sym_GT_EQ2] = ACTIONS(2521), - [anon_sym_EQ_TILDE2] = ACTIONS(2521), - [anon_sym_BANG_TILDE2] = ACTIONS(2521), - [anon_sym_like2] = ACTIONS(2521), - [anon_sym_not_DASHlike2] = ACTIONS(2521), - [anon_sym_LPAREN2] = ACTIONS(2525), - [anon_sym_STAR_STAR2] = ACTIONS(2521), - [anon_sym_PLUS_PLUS2] = ACTIONS(2521), - [anon_sym_SLASH2] = ACTIONS(2523), - [anon_sym_mod2] = ACTIONS(2521), - [anon_sym_SLASH_SLASH2] = ACTIONS(2521), - [anon_sym_PLUS2] = ACTIONS(2523), - [anon_sym_bit_DASHshl2] = ACTIONS(2521), - [anon_sym_bit_DASHshr2] = ACTIONS(2521), - [anon_sym_bit_DASHand2] = ACTIONS(2521), - [anon_sym_bit_DASHxor2] = ACTIONS(2521), - [anon_sym_bit_DASHor2] = ACTIONS(2521), - [anon_sym_err_GT] = ACTIONS(2523), - [anon_sym_out_GT] = ACTIONS(2523), - [anon_sym_e_GT] = ACTIONS(2523), - [anon_sym_o_GT] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT] = ACTIONS(2523), - [anon_sym_err_GT_GT] = ACTIONS(2521), - [anon_sym_out_GT_GT] = ACTIONS(2521), - [anon_sym_e_GT_GT] = ACTIONS(2521), - [anon_sym_o_GT_GT] = ACTIONS(2521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2521), - [sym__unquoted_pattern] = ACTIONS(2527), + [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(5171), [sym_comment] = STATE(974), - [ts_builtin_sym_end] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1716), - [sym__newline] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_err_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_GT_PIPE] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), - [anon_sym_GT2] = ACTIONS(1629), - [anon_sym_DASH2] = ACTIONS(1716), - [anon_sym_STAR2] = ACTIONS(1629), - [anon_sym_and2] = ACTIONS(1716), - [anon_sym_xor2] = ACTIONS(1716), - [anon_sym_or2] = ACTIONS(1716), - [anon_sym_not_DASHin2] = ACTIONS(1716), - [anon_sym_has2] = ACTIONS(1716), - [anon_sym_not_DASHhas2] = ACTIONS(1716), - [anon_sym_starts_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), - [anon_sym_ends_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), - [anon_sym_EQ_EQ2] = ACTIONS(1716), - [anon_sym_BANG_EQ2] = ACTIONS(1716), - [anon_sym_LT2] = ACTIONS(1629), - [anon_sym_LT_EQ2] = ACTIONS(1716), - [anon_sym_GT_EQ2] = ACTIONS(1716), - [anon_sym_EQ_TILDE2] = ACTIONS(1716), - [anon_sym_BANG_TILDE2] = ACTIONS(1716), - [anon_sym_like2] = ACTIONS(1716), - [anon_sym_not_DASHlike2] = ACTIONS(1716), - [anon_sym_LPAREN2] = ACTIONS(2594), - [anon_sym_STAR_STAR2] = ACTIONS(1716), - [anon_sym_PLUS_PLUS2] = ACTIONS(1716), - [anon_sym_SLASH2] = ACTIONS(1629), - [anon_sym_mod2] = ACTIONS(1716), - [anon_sym_SLASH_SLASH2] = ACTIONS(1716), - [anon_sym_PLUS2] = ACTIONS(1629), - [anon_sym_bit_DASHshl2] = ACTIONS(1716), - [anon_sym_bit_DASHshr2] = ACTIONS(1716), - [anon_sym_bit_DASHand2] = ACTIONS(1716), - [anon_sym_bit_DASHxor2] = ACTIONS(1716), - [anon_sym_bit_DASHor2] = ACTIONS(1716), - [anon_sym_err_GT] = ACTIONS(1629), - [anon_sym_out_GT] = ACTIONS(1629), - [anon_sym_e_GT] = ACTIONS(1629), - [anon_sym_o_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT] = ACTIONS(1629), - [anon_sym_err_GT_GT] = ACTIONS(1716), - [anon_sym_out_GT_GT] = ACTIONS(1716), - [anon_sym_e_GT_GT] = ACTIONS(1716), - [anon_sym_o_GT_GT] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), - [sym__unquoted_pattern] = ACTIONS(2596), + [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)] = { - [aux_sym__repeat_newline] = STATE(507), + [sym__expr_parenthesized_immediate] = STATE(5171), [sym_comment] = STATE(975), - [anon_sym_in] = ACTIONS(2656), - [sym__newline] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2656), - [anon_sym_PIPE] = ACTIONS(2656), - [anon_sym_err_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_GT_PIPE] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), - [anon_sym_RPAREN] = ACTIONS(2656), - [anon_sym_GT2] = ACTIONS(2658), - [anon_sym_DASH2] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2658), - [anon_sym_and2] = ACTIONS(2656), - [anon_sym_xor2] = ACTIONS(2656), - [anon_sym_or2] = ACTIONS(2656), - [anon_sym_not_DASHin2] = ACTIONS(2656), - [anon_sym_has2] = ACTIONS(2656), - [anon_sym_not_DASHhas2] = ACTIONS(2656), - [anon_sym_starts_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), - [anon_sym_ends_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), - [anon_sym_EQ_EQ2] = ACTIONS(2656), - [anon_sym_BANG_EQ2] = ACTIONS(2656), - [anon_sym_LT2] = ACTIONS(2658), - [anon_sym_LT_EQ2] = ACTIONS(2656), - [anon_sym_GT_EQ2] = ACTIONS(2656), - [anon_sym_EQ_TILDE2] = ACTIONS(2656), - [anon_sym_BANG_TILDE2] = ACTIONS(2656), - [anon_sym_like2] = ACTIONS(2656), - [anon_sym_not_DASHlike2] = ACTIONS(2656), - [anon_sym_STAR_STAR2] = ACTIONS(2656), - [anon_sym_PLUS_PLUS2] = ACTIONS(2656), - [anon_sym_SLASH2] = ACTIONS(2658), - [anon_sym_mod2] = ACTIONS(2656), - [anon_sym_SLASH_SLASH2] = ACTIONS(2656), - [anon_sym_PLUS2] = ACTIONS(2658), - [anon_sym_bit_DASHshl2] = ACTIONS(2656), - [anon_sym_bit_DASHshr2] = ACTIONS(2656), - [anon_sym_bit_DASHand2] = ACTIONS(2656), - [anon_sym_bit_DASHxor2] = ACTIONS(2656), - [anon_sym_bit_DASHor2] = ACTIONS(2656), - [anon_sym_err_GT] = ACTIONS(2658), - [anon_sym_out_GT] = ACTIONS(2658), - [anon_sym_e_GT] = ACTIONS(2658), - [anon_sym_o_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT] = ACTIONS(2658), - [anon_sym_err_GT_GT] = ACTIONS(2656), - [anon_sym_out_GT_GT] = ACTIONS(2656), - [anon_sym_e_GT_GT] = ACTIONS(2656), - [anon_sym_o_GT_GT] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [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_expr_unary] = STATE(2885), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_parenthesized] = STATE(2517), - [sym_val_range] = STATE(2885), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(2885), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(2628), - [sym_val_variable] = STATE(2569), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(2341), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(2605), - [sym__unquoted_with_expr] = STATE(2886), - [sym__unquoted_anonymous_prefix] = STATE(4525), + [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), - [anon_sym_true] = ACTIONS(2660), - [anon_sym_false] = ACTIONS(2660), - [anon_sym_null] = ACTIONS(2662), - [aux_sym_cmd_identifier_token3] = ACTIONS(2664), - [aux_sym_cmd_identifier_token4] = ACTIONS(2664), - [aux_sym_cmd_identifier_token5] = ACTIONS(2664), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_DOLLAR] = ACTIONS(2670), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2672), - [anon_sym_DOT_DOT] = ACTIONS(2674), - [aux_sym_expr_unary_token1] = ACTIONS(2676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_LT] = ACTIONS(2678), - [aux_sym__val_number_decimal_token1] = ACTIONS(2680), - [aux_sym__val_number_decimal_token2] = ACTIONS(2682), - [aux_sym__val_number_decimal_token3] = ACTIONS(2684), - [aux_sym__val_number_decimal_token4] = ACTIONS(2684), - [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(2686), - [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(2256), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [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)] = { - [aux_sym__repeat_newline] = STATE(1038), + [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_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [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)] = { - [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(978), - [anon_sym_in] = ACTIONS(2656), - [sym__newline] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2656), - [anon_sym_PIPE] = ACTIONS(2656), - [anon_sym_err_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_GT_PIPE] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), - [anon_sym_RPAREN] = ACTIONS(2656), - [anon_sym_GT2] = ACTIONS(2658), - [anon_sym_DASH2] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2658), - [anon_sym_and2] = ACTIONS(2656), - [anon_sym_xor2] = ACTIONS(2656), - [anon_sym_or2] = ACTIONS(2656), - [anon_sym_not_DASHin2] = ACTIONS(2656), - [anon_sym_has2] = ACTIONS(2656), - [anon_sym_not_DASHhas2] = ACTIONS(2656), - [anon_sym_starts_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), - [anon_sym_ends_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), - [anon_sym_EQ_EQ2] = ACTIONS(2656), - [anon_sym_BANG_EQ2] = ACTIONS(2656), - [anon_sym_LT2] = ACTIONS(2658), - [anon_sym_LT_EQ2] = ACTIONS(2656), - [anon_sym_GT_EQ2] = ACTIONS(2656), - [anon_sym_EQ_TILDE2] = ACTIONS(2656), - [anon_sym_BANG_TILDE2] = ACTIONS(2656), - [anon_sym_like2] = ACTIONS(2656), - [anon_sym_not_DASHlike2] = ACTIONS(2656), - [anon_sym_STAR_STAR2] = ACTIONS(2656), - [anon_sym_PLUS_PLUS2] = ACTIONS(2656), - [anon_sym_SLASH2] = ACTIONS(2658), - [anon_sym_mod2] = ACTIONS(2656), - [anon_sym_SLASH_SLASH2] = ACTIONS(2656), - [anon_sym_PLUS2] = ACTIONS(2658), - [anon_sym_bit_DASHshl2] = ACTIONS(2656), - [anon_sym_bit_DASHshr2] = ACTIONS(2656), - [anon_sym_bit_DASHand2] = ACTIONS(2656), - [anon_sym_bit_DASHxor2] = ACTIONS(2656), - [anon_sym_bit_DASHor2] = ACTIONS(2656), - [anon_sym_err_GT] = ACTIONS(2658), - [anon_sym_out_GT] = ACTIONS(2658), - [anon_sym_e_GT] = ACTIONS(2658), - [anon_sym_o_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT] = ACTIONS(2658), - [anon_sym_err_GT_GT] = ACTIONS(2656), - [anon_sym_out_GT_GT] = ACTIONS(2656), - [anon_sym_e_GT_GT] = ACTIONS(2656), - [anon_sym_o_GT_GT] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [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(2011), - [anon_sym_in] = ACTIONS(2011), - [sym__newline] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_err_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_GT_PIPE] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), - [anon_sym_GT2] = ACTIONS(2013), - [anon_sym_DASH2] = ACTIONS(2011), - [anon_sym_STAR2] = ACTIONS(2013), - [anon_sym_and2] = ACTIONS(2011), - [anon_sym_xor2] = ACTIONS(2011), - [anon_sym_or2] = ACTIONS(2011), - [anon_sym_not_DASHin2] = ACTIONS(2011), - [anon_sym_has2] = ACTIONS(2011), - [anon_sym_not_DASHhas2] = ACTIONS(2011), - [anon_sym_starts_DASHwith2] = ACTIONS(2011), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), - [anon_sym_ends_DASHwith2] = ACTIONS(2011), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), - [anon_sym_EQ_EQ2] = ACTIONS(2011), - [anon_sym_BANG_EQ2] = ACTIONS(2011), - [anon_sym_LT2] = ACTIONS(2013), - [anon_sym_LT_EQ2] = ACTIONS(2011), - [anon_sym_GT_EQ2] = ACTIONS(2011), - [anon_sym_EQ_TILDE2] = ACTIONS(2011), - [anon_sym_BANG_TILDE2] = ACTIONS(2011), - [anon_sym_like2] = ACTIONS(2011), - [anon_sym_not_DASHlike2] = ACTIONS(2011), - [anon_sym_LPAREN2] = ACTIONS(2015), - [anon_sym_STAR_STAR2] = ACTIONS(2011), - [anon_sym_PLUS_PLUS2] = ACTIONS(2011), - [anon_sym_SLASH2] = ACTIONS(2013), - [anon_sym_mod2] = ACTIONS(2011), - [anon_sym_SLASH_SLASH2] = ACTIONS(2011), - [anon_sym_PLUS2] = ACTIONS(2013), - [anon_sym_bit_DASHshl2] = ACTIONS(2011), - [anon_sym_bit_DASHshr2] = ACTIONS(2011), - [anon_sym_bit_DASHand2] = ACTIONS(2011), - [anon_sym_bit_DASHxor2] = ACTIONS(2011), - [anon_sym_bit_DASHor2] = ACTIONS(2011), - [anon_sym_err_GT] = ACTIONS(2013), - [anon_sym_out_GT] = ACTIONS(2013), - [anon_sym_e_GT] = ACTIONS(2013), - [anon_sym_o_GT] = ACTIONS(2013), - [anon_sym_err_PLUSout_GT] = ACTIONS(2013), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), - [anon_sym_o_PLUSe_GT] = ACTIONS(2013), - [anon_sym_e_PLUSo_GT] = ACTIONS(2013), - [anon_sym_err_GT_GT] = ACTIONS(2011), - [anon_sym_out_GT_GT] = ACTIONS(2011), - [anon_sym_e_GT_GT] = ACTIONS(2011), - [anon_sym_o_GT_GT] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), - [sym__unquoted_pattern] = ACTIONS(1615), + [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_expr_unary] = STATE(2887), - [sym__expr_unary_minus] = STATE(1328), - [sym_expr_parenthesized] = STATE(2591), - [sym_val_range] = STATE(2887), - [sym__val_range] = STATE(4525), - [sym__value] = STATE(2887), - [sym_val_nothing] = STATE(1318), - [sym_val_bool] = STATE(2628), - [sym_val_variable] = STATE(2569), - [sym_val_cellpath] = STATE(1318), - [sym_val_number] = STATE(1318), - [sym__val_number_decimal] = STATE(2341), - [sym__val_number] = STATE(1340), - [sym_val_duration] = STATE(1318), - [sym_val_filesize] = STATE(1318), - [sym_val_binary] = STATE(1318), - [sym_val_string] = STATE(1318), - [sym__raw_str] = STATE(485), - [sym__str_double_quotes] = STATE(485), - [sym__str_single_quotes] = STATE(485), - [sym__str_back_ticks] = STATE(485), - [sym_val_interpolated] = STATE(1318), - [sym__inter_single_quotes] = STATE(1342), - [sym__inter_double_quotes] = STATE(1343), - [sym_val_list] = STATE(1318), - [sym_val_record] = STATE(1318), - [sym_val_table] = STATE(1318), - [sym_val_closure] = STATE(1318), - [sym_unquoted] = STATE(2606), - [sym__unquoted_with_expr] = STATE(2889), - [sym__unquoted_anonymous_prefix] = STATE(4525), [sym_comment] = STATE(980), - [anon_sym_true] = ACTIONS(2660), - [anon_sym_false] = ACTIONS(2660), - [anon_sym_null] = ACTIONS(2662), - [aux_sym_cmd_identifier_token3] = ACTIONS(2664), - [aux_sym_cmd_identifier_token4] = ACTIONS(2664), - [aux_sym_cmd_identifier_token5] = ACTIONS(2664), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_DOLLAR] = ACTIONS(2670), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2672), - [anon_sym_DOT_DOT] = ACTIONS(2674), - [aux_sym_expr_unary_token1] = ACTIONS(2676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_LT] = ACTIONS(2678), - [aux_sym__val_number_decimal_token1] = ACTIONS(2680), - [aux_sym__val_number_decimal_token2] = ACTIONS(2682), - [aux_sym__val_number_decimal_token3] = ACTIONS(2684), - [aux_sym__val_number_decimal_token4] = ACTIONS(2684), - [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(2686), - [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(2256), + [ts_builtin_sym_end] = ACTIONS(1870), + [anon_sym_in] = ACTIONS(1870), + [sym__newline] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_err_GT_PIPE] = ACTIONS(1870), + [anon_sym_out_GT_PIPE] = ACTIONS(1870), + [anon_sym_e_GT_PIPE] = ACTIONS(1870), + [anon_sym_o_GT_PIPE] = ACTIONS(1870), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), + [anon_sym_GT2] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1870), + [anon_sym_STAR2] = ACTIONS(1872), + [anon_sym_and2] = ACTIONS(1870), + [anon_sym_xor2] = ACTIONS(1870), + [anon_sym_or2] = ACTIONS(1870), + [anon_sym_not_DASHin2] = ACTIONS(1870), + [anon_sym_has2] = ACTIONS(1870), + [anon_sym_not_DASHhas2] = ACTIONS(1870), + [anon_sym_starts_DASHwith2] = ACTIONS(1870), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), + [anon_sym_ends_DASHwith2] = ACTIONS(1870), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), + [anon_sym_EQ_EQ2] = ACTIONS(1870), + [anon_sym_BANG_EQ2] = ACTIONS(1870), + [anon_sym_LT2] = ACTIONS(1872), + [anon_sym_LT_EQ2] = ACTIONS(1870), + [anon_sym_GT_EQ2] = ACTIONS(1870), + [anon_sym_EQ_TILDE2] = ACTIONS(1870), + [anon_sym_BANG_TILDE2] = ACTIONS(1870), + [anon_sym_like2] = ACTIONS(1870), + [anon_sym_not_DASHlike2] = ACTIONS(1870), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_STAR_STAR2] = ACTIONS(1870), + [anon_sym_PLUS_PLUS2] = ACTIONS(1870), + [anon_sym_SLASH2] = ACTIONS(1872), + [anon_sym_mod2] = ACTIONS(1870), + [anon_sym_SLASH_SLASH2] = ACTIONS(1870), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_bit_DASHshl2] = ACTIONS(1870), + [anon_sym_bit_DASHshr2] = ACTIONS(1870), + [anon_sym_bit_DASHand2] = ACTIONS(1870), + [anon_sym_bit_DASHxor2] = ACTIONS(1870), + [anon_sym_bit_DASHor2] = ACTIONS(1870), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1870), + [anon_sym_out_GT_GT] = ACTIONS(1870), + [anon_sym_e_GT_GT] = ACTIONS(1870), + [anon_sym_o_GT_GT] = ACTIONS(1870), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), + [sym__unquoted_pattern] = ACTIONS(1872), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(981)] = { - [aux_sym__repeat_newline] = STATE(1039), + [sym__expr_parenthesized_immediate] = STATE(4884), [sym_comment] = STATE(981), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [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(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), - [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(1008), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_STAR2] = ACTIONS(1008), - [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(1008), - [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(2556), - [anon_sym_STAR_STAR2] = ACTIONS(1030), - [anon_sym_PLUS_PLUS2] = ACTIONS(1030), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1030), - [anon_sym_SLASH_SLASH2] = ACTIONS(1030), - [anon_sym_PLUS2] = ACTIONS(1008), - [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(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(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(2558), + [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(983)] = { + [sym__expr_parenthesized_immediate] = STATE(4884), [sym_comment] = STATE(983), - [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(2556), - [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(2558), + [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(507), + [aux_sym__repeat_newline] = STATE(1038), [sym_comment] = STATE(984), - [anon_sym_in] = ACTIONS(2656), - [sym__newline] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2656), - [anon_sym_PIPE] = ACTIONS(2656), - [anon_sym_err_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_GT_PIPE] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), - [anon_sym_RPAREN] = ACTIONS(2656), - [anon_sym_GT2] = ACTIONS(2658), - [anon_sym_DASH2] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2658), - [anon_sym_and2] = ACTIONS(2656), - [anon_sym_xor2] = ACTIONS(2656), - [anon_sym_or2] = ACTIONS(2656), - [anon_sym_not_DASHin2] = ACTIONS(2656), - [anon_sym_has2] = ACTIONS(2656), - [anon_sym_not_DASHhas2] = ACTIONS(2656), - [anon_sym_starts_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), - [anon_sym_ends_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), - [anon_sym_EQ_EQ2] = ACTIONS(2656), - [anon_sym_BANG_EQ2] = ACTIONS(2656), - [anon_sym_LT2] = ACTIONS(2658), - [anon_sym_LT_EQ2] = ACTIONS(2656), - [anon_sym_GT_EQ2] = ACTIONS(2656), - [anon_sym_EQ_TILDE2] = ACTIONS(2656), - [anon_sym_BANG_TILDE2] = ACTIONS(2656), - [anon_sym_like2] = ACTIONS(2656), - [anon_sym_not_DASHlike2] = ACTIONS(2656), - [anon_sym_STAR_STAR2] = ACTIONS(2656), - [anon_sym_PLUS_PLUS2] = ACTIONS(2656), - [anon_sym_SLASH2] = ACTIONS(2658), - [anon_sym_mod2] = ACTIONS(2656), - [anon_sym_SLASH_SLASH2] = ACTIONS(2656), - [anon_sym_PLUS2] = ACTIONS(2658), - [anon_sym_bit_DASHshl2] = ACTIONS(2656), - [anon_sym_bit_DASHshr2] = ACTIONS(2656), - [anon_sym_bit_DASHand2] = ACTIONS(2656), - [anon_sym_bit_DASHxor2] = ACTIONS(2656), - [anon_sym_bit_DASHor2] = ACTIONS(2656), - [anon_sym_err_GT] = ACTIONS(2658), - [anon_sym_out_GT] = ACTIONS(2658), - [anon_sym_e_GT] = ACTIONS(2658), - [anon_sym_o_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT] = ACTIONS(2658), - [anon_sym_err_GT_GT] = ACTIONS(2656), - [anon_sym_out_GT_GT] = ACTIONS(2656), - [anon_sym_e_GT_GT] = ACTIONS(2656), - [anon_sym_o_GT_GT] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_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(1040), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(985), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [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(507), + [aux_sym__repeat_newline] = STATE(1039), [sym_comment] = STATE(986), - [anon_sym_in] = ACTIONS(2656), - [sym__newline] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2656), - [anon_sym_PIPE] = ACTIONS(2656), - [anon_sym_err_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_GT_PIPE] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), - [anon_sym_RPAREN] = ACTIONS(2656), - [anon_sym_GT2] = ACTIONS(2658), - [anon_sym_DASH2] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2658), - [anon_sym_and2] = ACTIONS(2656), - [anon_sym_xor2] = ACTIONS(2656), - [anon_sym_or2] = ACTIONS(2656), - [anon_sym_not_DASHin2] = ACTIONS(2656), - [anon_sym_has2] = ACTIONS(2656), - [anon_sym_not_DASHhas2] = ACTIONS(2656), - [anon_sym_starts_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), - [anon_sym_ends_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), - [anon_sym_EQ_EQ2] = ACTIONS(2656), - [anon_sym_BANG_EQ2] = ACTIONS(2656), - [anon_sym_LT2] = ACTIONS(2658), - [anon_sym_LT_EQ2] = ACTIONS(2656), - [anon_sym_GT_EQ2] = ACTIONS(2656), - [anon_sym_EQ_TILDE2] = ACTIONS(2656), - [anon_sym_BANG_TILDE2] = ACTIONS(2656), - [anon_sym_like2] = ACTIONS(2656), - [anon_sym_not_DASHlike2] = ACTIONS(2656), - [anon_sym_STAR_STAR2] = ACTIONS(2656), - [anon_sym_PLUS_PLUS2] = ACTIONS(2656), - [anon_sym_SLASH2] = ACTIONS(2658), - [anon_sym_mod2] = ACTIONS(2656), - [anon_sym_SLASH_SLASH2] = ACTIONS(2656), - [anon_sym_PLUS2] = ACTIONS(2658), - [anon_sym_bit_DASHshl2] = ACTIONS(2656), - [anon_sym_bit_DASHshr2] = ACTIONS(2656), - [anon_sym_bit_DASHand2] = ACTIONS(2656), - [anon_sym_bit_DASHxor2] = ACTIONS(2656), - [anon_sym_bit_DASHor2] = ACTIONS(2656), - [anon_sym_err_GT] = ACTIONS(2658), - [anon_sym_out_GT] = ACTIONS(2658), - [anon_sym_e_GT] = ACTIONS(2658), - [anon_sym_o_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT] = ACTIONS(2658), - [anon_sym_err_GT_GT] = ACTIONS(2656), - [anon_sym_out_GT_GT] = ACTIONS(2656), - [anon_sym_e_GT_GT] = ACTIONS(2656), - [anon_sym_o_GT_GT] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_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), - [ts_builtin_sym_end] = ACTIONS(2566), - [anon_sym_in] = ACTIONS(2566), - [sym__newline] = ACTIONS(2566), - [anon_sym_SEMI] = ACTIONS(2566), - [anon_sym_PIPE] = ACTIONS(2566), - [anon_sym_err_GT_PIPE] = ACTIONS(2566), - [anon_sym_out_GT_PIPE] = ACTIONS(2566), - [anon_sym_e_GT_PIPE] = ACTIONS(2566), - [anon_sym_o_GT_PIPE] = ACTIONS(2566), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2566), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2566), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2566), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2566), - [anon_sym_GT2] = ACTIONS(2568), - [anon_sym_DASH2] = ACTIONS(2566), - [anon_sym_STAR2] = ACTIONS(2568), - [anon_sym_and2] = ACTIONS(2566), - [anon_sym_xor2] = ACTIONS(2566), - [anon_sym_or2] = ACTIONS(2566), - [anon_sym_not_DASHin2] = ACTIONS(2566), - [anon_sym_has2] = ACTIONS(2566), - [anon_sym_not_DASHhas2] = ACTIONS(2566), - [anon_sym_starts_DASHwith2] = ACTIONS(2566), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2566), - [anon_sym_ends_DASHwith2] = ACTIONS(2566), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2566), - [anon_sym_EQ_EQ2] = ACTIONS(2566), - [anon_sym_BANG_EQ2] = ACTIONS(2566), - [anon_sym_LT2] = ACTIONS(2568), - [anon_sym_LT_EQ2] = ACTIONS(2566), - [anon_sym_GT_EQ2] = ACTIONS(2566), - [anon_sym_EQ_TILDE2] = ACTIONS(2566), - [anon_sym_BANG_TILDE2] = ACTIONS(2566), - [anon_sym_like2] = ACTIONS(2566), - [anon_sym_not_DASHlike2] = ACTIONS(2566), - [anon_sym_LPAREN2] = ACTIONS(2025), - [anon_sym_STAR_STAR2] = ACTIONS(2566), - [anon_sym_PLUS_PLUS2] = ACTIONS(2566), - [anon_sym_SLASH2] = ACTIONS(2568), - [anon_sym_mod2] = ACTIONS(2566), - [anon_sym_SLASH_SLASH2] = ACTIONS(2566), - [anon_sym_PLUS2] = ACTIONS(2568), - [anon_sym_bit_DASHshl2] = ACTIONS(2566), - [anon_sym_bit_DASHshr2] = ACTIONS(2566), - [anon_sym_bit_DASHand2] = ACTIONS(2566), - [anon_sym_bit_DASHxor2] = ACTIONS(2566), - [anon_sym_bit_DASHor2] = ACTIONS(2566), - [anon_sym_err_GT] = ACTIONS(2568), - [anon_sym_out_GT] = ACTIONS(2568), - [anon_sym_e_GT] = ACTIONS(2568), - [anon_sym_o_GT] = ACTIONS(2568), - [anon_sym_err_PLUSout_GT] = ACTIONS(2568), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2568), - [anon_sym_o_PLUSe_GT] = ACTIONS(2568), - [anon_sym_e_PLUSo_GT] = ACTIONS(2568), - [anon_sym_err_GT_GT] = ACTIONS(2566), - [anon_sym_out_GT_GT] = ACTIONS(2566), - [anon_sym_e_GT_GT] = ACTIONS(2566), - [anon_sym_o_GT_GT] = ACTIONS(2566), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2566), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2566), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2566), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2566), - [sym__unquoted_pattern] = ACTIONS(2031), + [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(1041), + [aux_sym__repeat_newline] = STATE(1040), [sym_comment] = STATE(988), - [anon_sym_in] = ACTIONS(2688), - [sym__newline] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2690), - [anon_sym_DASH2] = ACTIONS(2688), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_STAR2] = ACTIONS(2690), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2688), - [anon_sym_has2] = ACTIONS(2688), - [anon_sym_not_DASHhas2] = ACTIONS(2688), - [anon_sym_starts_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), - [anon_sym_ends_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), - [anon_sym_EQ_EQ2] = ACTIONS(2688), - [anon_sym_BANG_EQ2] = ACTIONS(2688), - [anon_sym_LT2] = ACTIONS(2690), - [anon_sym_LT_EQ2] = ACTIONS(2688), - [anon_sym_GT_EQ2] = ACTIONS(2688), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2688), - [anon_sym_PLUS_PLUS2] = ACTIONS(2688), - [anon_sym_SLASH2] = ACTIONS(2690), - [anon_sym_mod2] = ACTIONS(2688), - [anon_sym_SLASH_SLASH2] = ACTIONS(2688), - [anon_sym_PLUS2] = ACTIONS(2690), - [anon_sym_bit_DASHshl2] = ACTIONS(2688), - [anon_sym_bit_DASHshr2] = ACTIONS(2688), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_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), - [ts_builtin_sym_end] = ACTIONS(2021), - [anon_sym_in] = ACTIONS(2021), - [sym__newline] = ACTIONS(2021), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_err_GT_PIPE] = ACTIONS(2021), - [anon_sym_out_GT_PIPE] = ACTIONS(2021), - [anon_sym_e_GT_PIPE] = ACTIONS(2021), - [anon_sym_o_GT_PIPE] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2021), - [anon_sym_GT2] = ACTIONS(2023), - [anon_sym_DASH2] = ACTIONS(2021), - [anon_sym_STAR2] = ACTIONS(2023), - [anon_sym_and2] = ACTIONS(2021), - [anon_sym_xor2] = ACTIONS(2021), - [anon_sym_or2] = ACTIONS(2021), - [anon_sym_not_DASHin2] = ACTIONS(2021), - [anon_sym_has2] = ACTIONS(2021), - [anon_sym_not_DASHhas2] = ACTIONS(2021), - [anon_sym_starts_DASHwith2] = ACTIONS(2021), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2021), - [anon_sym_ends_DASHwith2] = ACTIONS(2021), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2021), - [anon_sym_EQ_EQ2] = ACTIONS(2021), - [anon_sym_BANG_EQ2] = ACTIONS(2021), - [anon_sym_LT2] = ACTIONS(2023), - [anon_sym_LT_EQ2] = ACTIONS(2021), - [anon_sym_GT_EQ2] = ACTIONS(2021), - [anon_sym_EQ_TILDE2] = ACTIONS(2021), - [anon_sym_BANG_TILDE2] = ACTIONS(2021), - [anon_sym_like2] = ACTIONS(2021), - [anon_sym_not_DASHlike2] = ACTIONS(2021), - [anon_sym_LPAREN2] = ACTIONS(2025), - [anon_sym_STAR_STAR2] = ACTIONS(2021), - [anon_sym_PLUS_PLUS2] = ACTIONS(2021), - [anon_sym_SLASH2] = ACTIONS(2023), - [anon_sym_mod2] = ACTIONS(2021), - [anon_sym_SLASH_SLASH2] = ACTIONS(2021), - [anon_sym_PLUS2] = ACTIONS(2023), - [anon_sym_bit_DASHshl2] = ACTIONS(2021), - [anon_sym_bit_DASHshr2] = ACTIONS(2021), - [anon_sym_bit_DASHand2] = ACTIONS(2021), - [anon_sym_bit_DASHxor2] = ACTIONS(2021), - [anon_sym_bit_DASHor2] = ACTIONS(2021), - [anon_sym_err_GT] = ACTIONS(2023), - [anon_sym_out_GT] = ACTIONS(2023), - [anon_sym_e_GT] = ACTIONS(2023), - [anon_sym_o_GT] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT] = ACTIONS(2023), - [anon_sym_err_GT_GT] = ACTIONS(2021), - [anon_sym_out_GT_GT] = ACTIONS(2021), - [anon_sym_e_GT_GT] = ACTIONS(2021), - [anon_sym_o_GT_GT] = ACTIONS(2021), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2021), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2021), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2021), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2021), - [sym__unquoted_pattern] = ACTIONS(2031), + [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)] = { - [aux_sym__repeat_newline] = STATE(1042), + [sym__expr_parenthesized_immediate] = STATE(4884), [sym_comment] = STATE(990), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [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(507), + [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_in] = ACTIONS(2692), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2694), - [anon_sym_DASH2] = ACTIONS(2692), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_STAR2] = ACTIONS(2694), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2692), - [anon_sym_has2] = ACTIONS(2692), - [anon_sym_not_DASHhas2] = ACTIONS(2692), - [anon_sym_starts_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), - [anon_sym_ends_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), - [anon_sym_EQ_EQ2] = ACTIONS(2692), - [anon_sym_BANG_EQ2] = ACTIONS(2692), - [anon_sym_LT2] = ACTIONS(2694), - [anon_sym_LT_EQ2] = ACTIONS(2692), - [anon_sym_GT_EQ2] = ACTIONS(2692), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2692), - [anon_sym_PLUS_PLUS2] = ACTIONS(2692), - [anon_sym_SLASH2] = ACTIONS(2694), - [anon_sym_mod2] = ACTIONS(2692), - [anon_sym_SLASH_SLASH2] = ACTIONS(2692), - [anon_sym_PLUS2] = ACTIONS(2694), - [anon_sym_bit_DASHshl2] = ACTIONS(2692), - [anon_sym_bit_DASHshr2] = ACTIONS(2692), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [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(992)] = { - [aux_sym__repeat_newline] = STATE(507), + [aux_sym__repeat_newline] = STATE(1041), [sym_comment] = STATE(992), - [anon_sym_in] = ACTIONS(2656), - [sym__newline] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2656), - [anon_sym_PIPE] = ACTIONS(2656), - [anon_sym_err_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_GT_PIPE] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), - [anon_sym_RPAREN] = ACTIONS(2656), - [anon_sym_GT2] = ACTIONS(2658), - [anon_sym_DASH2] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2658), - [anon_sym_and2] = ACTIONS(2656), - [anon_sym_xor2] = ACTIONS(2656), - [anon_sym_or2] = ACTIONS(2656), - [anon_sym_not_DASHin2] = ACTIONS(2656), - [anon_sym_has2] = ACTIONS(2656), - [anon_sym_not_DASHhas2] = ACTIONS(2656), - [anon_sym_starts_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), - [anon_sym_ends_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), - [anon_sym_EQ_EQ2] = ACTIONS(2656), - [anon_sym_BANG_EQ2] = ACTIONS(2656), - [anon_sym_LT2] = ACTIONS(2658), - [anon_sym_LT_EQ2] = ACTIONS(2656), - [anon_sym_GT_EQ2] = ACTIONS(2656), - [anon_sym_EQ_TILDE2] = ACTIONS(2656), - [anon_sym_BANG_TILDE2] = ACTIONS(2656), - [anon_sym_like2] = ACTIONS(2656), - [anon_sym_not_DASHlike2] = ACTIONS(2656), - [anon_sym_STAR_STAR2] = ACTIONS(2656), - [anon_sym_PLUS_PLUS2] = ACTIONS(2656), - [anon_sym_SLASH2] = ACTIONS(2658), - [anon_sym_mod2] = ACTIONS(2656), - [anon_sym_SLASH_SLASH2] = ACTIONS(2656), - [anon_sym_PLUS2] = ACTIONS(2658), - [anon_sym_bit_DASHshl2] = ACTIONS(2656), - [anon_sym_bit_DASHshr2] = ACTIONS(2656), - [anon_sym_bit_DASHand2] = ACTIONS(2656), - [anon_sym_bit_DASHxor2] = ACTIONS(2656), - [anon_sym_bit_DASHor2] = ACTIONS(2656), - [anon_sym_err_GT] = ACTIONS(2658), - [anon_sym_out_GT] = ACTIONS(2658), - [anon_sym_e_GT] = ACTIONS(2658), - [anon_sym_o_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT] = ACTIONS(2658), - [anon_sym_err_GT_GT] = ACTIONS(2656), - [anon_sym_out_GT_GT] = ACTIONS(2656), - [anon_sym_e_GT_GT] = ACTIONS(2656), - [anon_sym_o_GT_GT] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_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(527), [sym_comment] = STATE(993), - [ts_builtin_sym_end] = ACTIONS(2560), - [anon_sym_in] = ACTIONS(2560), - [sym__newline] = ACTIONS(2560), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2560), - [anon_sym_err_GT_PIPE] = ACTIONS(2560), - [anon_sym_out_GT_PIPE] = ACTIONS(2560), - [anon_sym_e_GT_PIPE] = ACTIONS(2560), - [anon_sym_o_GT_PIPE] = ACTIONS(2560), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2560), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2560), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2560), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2560), - [anon_sym_GT2] = ACTIONS(2562), - [anon_sym_DASH2] = ACTIONS(2560), - [anon_sym_STAR2] = ACTIONS(2562), - [anon_sym_and2] = ACTIONS(2560), - [anon_sym_xor2] = ACTIONS(2560), - [anon_sym_or2] = ACTIONS(2560), - [anon_sym_not_DASHin2] = ACTIONS(2560), - [anon_sym_has2] = ACTIONS(2560), - [anon_sym_not_DASHhas2] = ACTIONS(2560), - [anon_sym_starts_DASHwith2] = ACTIONS(2560), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2560), - [anon_sym_ends_DASHwith2] = ACTIONS(2560), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2560), - [anon_sym_EQ_EQ2] = ACTIONS(2560), - [anon_sym_BANG_EQ2] = ACTIONS(2560), - [anon_sym_LT2] = ACTIONS(2562), - [anon_sym_LT_EQ2] = ACTIONS(2560), - [anon_sym_GT_EQ2] = ACTIONS(2560), - [anon_sym_EQ_TILDE2] = ACTIONS(2560), - [anon_sym_BANG_TILDE2] = ACTIONS(2560), - [anon_sym_like2] = ACTIONS(2560), - [anon_sym_not_DASHlike2] = ACTIONS(2560), - [anon_sym_LPAREN2] = ACTIONS(2564), - [anon_sym_STAR_STAR2] = ACTIONS(2560), - [anon_sym_PLUS_PLUS2] = ACTIONS(2560), - [anon_sym_SLASH2] = ACTIONS(2562), - [anon_sym_mod2] = ACTIONS(2560), - [anon_sym_SLASH_SLASH2] = ACTIONS(2560), - [anon_sym_PLUS2] = ACTIONS(2562), - [anon_sym_bit_DASHshl2] = ACTIONS(2560), - [anon_sym_bit_DASHshr2] = ACTIONS(2560), - [anon_sym_bit_DASHand2] = ACTIONS(2560), - [anon_sym_bit_DASHxor2] = ACTIONS(2560), - [anon_sym_bit_DASHor2] = ACTIONS(2560), - [anon_sym_err_GT] = ACTIONS(2562), - [anon_sym_out_GT] = ACTIONS(2562), - [anon_sym_e_GT] = ACTIONS(2562), - [anon_sym_o_GT] = ACTIONS(2562), - [anon_sym_err_PLUSout_GT] = ACTIONS(2562), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2562), - [anon_sym_o_PLUSe_GT] = ACTIONS(2562), - [anon_sym_e_PLUSo_GT] = ACTIONS(2562), - [anon_sym_err_GT_GT] = ACTIONS(2560), - [anon_sym_out_GT_GT] = ACTIONS(2560), - [anon_sym_e_GT_GT] = ACTIONS(2560), - [anon_sym_o_GT_GT] = ACTIONS(2560), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2560), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2560), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2560), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2560), - [sym__unquoted_pattern] = ACTIONS(1691), + [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(994)] = { + [aux_sym__repeat_newline] = STATE(1042), [sym_comment] = STATE(994), - [ts_builtin_sym_end] = ACTIONS(2570), - [anon_sym_in] = ACTIONS(2570), - [sym__newline] = ACTIONS(2570), - [anon_sym_SEMI] = ACTIONS(2570), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_err_GT_PIPE] = ACTIONS(2570), - [anon_sym_out_GT_PIPE] = ACTIONS(2570), - [anon_sym_e_GT_PIPE] = ACTIONS(2570), - [anon_sym_o_GT_PIPE] = ACTIONS(2570), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2570), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2570), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2570), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2570), - [anon_sym_GT2] = ACTIONS(2572), - [anon_sym_DASH2] = ACTIONS(2570), - [anon_sym_STAR2] = ACTIONS(2572), - [anon_sym_and2] = ACTIONS(2570), - [anon_sym_xor2] = ACTIONS(2570), - [anon_sym_or2] = ACTIONS(2570), - [anon_sym_not_DASHin2] = ACTIONS(2570), - [anon_sym_has2] = ACTIONS(2570), - [anon_sym_not_DASHhas2] = ACTIONS(2570), - [anon_sym_starts_DASHwith2] = ACTIONS(2570), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2570), - [anon_sym_ends_DASHwith2] = ACTIONS(2570), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2570), - [anon_sym_EQ_EQ2] = ACTIONS(2570), - [anon_sym_BANG_EQ2] = ACTIONS(2570), - [anon_sym_LT2] = ACTIONS(2572), - [anon_sym_LT_EQ2] = ACTIONS(2570), - [anon_sym_GT_EQ2] = ACTIONS(2570), - [anon_sym_EQ_TILDE2] = ACTIONS(2570), - [anon_sym_BANG_TILDE2] = ACTIONS(2570), - [anon_sym_like2] = ACTIONS(2570), - [anon_sym_not_DASHlike2] = ACTIONS(2570), - [anon_sym_LPAREN2] = ACTIONS(2574), - [anon_sym_STAR_STAR2] = ACTIONS(2570), - [anon_sym_PLUS_PLUS2] = ACTIONS(2570), - [anon_sym_SLASH2] = ACTIONS(2572), - [anon_sym_mod2] = ACTIONS(2570), - [anon_sym_SLASH_SLASH2] = ACTIONS(2570), - [anon_sym_PLUS2] = ACTIONS(2572), - [anon_sym_bit_DASHshl2] = ACTIONS(2570), - [anon_sym_bit_DASHshr2] = ACTIONS(2570), - [anon_sym_bit_DASHand2] = ACTIONS(2570), - [anon_sym_bit_DASHxor2] = ACTIONS(2570), - [anon_sym_bit_DASHor2] = ACTIONS(2570), - [anon_sym_err_GT] = ACTIONS(2572), - [anon_sym_out_GT] = ACTIONS(2572), - [anon_sym_e_GT] = ACTIONS(2572), - [anon_sym_o_GT] = ACTIONS(2572), - [anon_sym_err_PLUSout_GT] = ACTIONS(2572), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2572), - [anon_sym_o_PLUSe_GT] = ACTIONS(2572), - [anon_sym_e_PLUSo_GT] = ACTIONS(2572), - [anon_sym_err_GT_GT] = ACTIONS(2570), - [anon_sym_out_GT_GT] = ACTIONS(2570), - [anon_sym_e_GT_GT] = ACTIONS(2570), - [anon_sym_o_GT_GT] = ACTIONS(2570), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2570), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2570), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2570), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2570), - [sym__unquoted_pattern] = ACTIONS(2576), + [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(995)] = { - [aux_sym__repeat_newline] = STATE(1043), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(995), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [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(996)] = { - [aux_sym__repeat_newline] = STATE(507), + [aux_sym__repeat_newline] = STATE(1043), [sym_comment] = STATE(996), - [anon_sym_in] = ACTIONS(2656), - [sym__newline] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2656), - [anon_sym_PIPE] = ACTIONS(2656), - [anon_sym_err_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_GT_PIPE] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), - [anon_sym_RPAREN] = ACTIONS(2656), - [anon_sym_GT2] = ACTIONS(2658), - [anon_sym_DASH2] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2658), - [anon_sym_and2] = ACTIONS(2656), - [anon_sym_xor2] = ACTIONS(2656), - [anon_sym_or2] = ACTIONS(2656), - [anon_sym_not_DASHin2] = ACTIONS(2656), - [anon_sym_has2] = ACTIONS(2656), - [anon_sym_not_DASHhas2] = ACTIONS(2656), - [anon_sym_starts_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), - [anon_sym_ends_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), - [anon_sym_EQ_EQ2] = ACTIONS(2656), - [anon_sym_BANG_EQ2] = ACTIONS(2656), - [anon_sym_LT2] = ACTIONS(2658), - [anon_sym_LT_EQ2] = ACTIONS(2656), - [anon_sym_GT_EQ2] = ACTIONS(2656), - [anon_sym_EQ_TILDE2] = ACTIONS(2656), - [anon_sym_BANG_TILDE2] = ACTIONS(2656), - [anon_sym_like2] = ACTIONS(2656), - [anon_sym_not_DASHlike2] = ACTIONS(2656), - [anon_sym_STAR_STAR2] = ACTIONS(2656), - [anon_sym_PLUS_PLUS2] = ACTIONS(2656), - [anon_sym_SLASH2] = ACTIONS(2658), - [anon_sym_mod2] = ACTIONS(2656), - [anon_sym_SLASH_SLASH2] = ACTIONS(2656), - [anon_sym_PLUS2] = ACTIONS(2658), - [anon_sym_bit_DASHshl2] = ACTIONS(2656), - [anon_sym_bit_DASHshr2] = ACTIONS(2656), - [anon_sym_bit_DASHand2] = ACTIONS(2656), - [anon_sym_bit_DASHxor2] = ACTIONS(2656), - [anon_sym_bit_DASHor2] = ACTIONS(2656), - [anon_sym_err_GT] = ACTIONS(2658), - [anon_sym_out_GT] = ACTIONS(2658), - [anon_sym_e_GT] = ACTIONS(2658), - [anon_sym_o_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT] = ACTIONS(2658), - [anon_sym_err_GT_GT] = ACTIONS(2656), - [anon_sym_out_GT_GT] = ACTIONS(2656), - [anon_sym_e_GT_GT] = ACTIONS(2656), - [anon_sym_o_GT_GT] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_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(1044), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(997), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [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(998)] = { - [aux_sym__repeat_newline] = STATE(507), + [aux_sym__repeat_newline] = STATE(1044), [sym_comment] = STATE(998), - [anon_sym_in] = ACTIONS(2656), - [sym__newline] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2656), - [anon_sym_PIPE] = ACTIONS(2656), - [anon_sym_err_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_GT_PIPE] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), - [anon_sym_RPAREN] = ACTIONS(2656), - [anon_sym_GT2] = ACTIONS(2658), - [anon_sym_DASH2] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2658), - [anon_sym_and2] = ACTIONS(2656), - [anon_sym_xor2] = ACTIONS(2656), - [anon_sym_or2] = ACTIONS(2656), - [anon_sym_not_DASHin2] = ACTIONS(2656), - [anon_sym_has2] = ACTIONS(2656), - [anon_sym_not_DASHhas2] = ACTIONS(2656), - [anon_sym_starts_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), - [anon_sym_ends_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), - [anon_sym_EQ_EQ2] = ACTIONS(2656), - [anon_sym_BANG_EQ2] = ACTIONS(2656), - [anon_sym_LT2] = ACTIONS(2658), - [anon_sym_LT_EQ2] = ACTIONS(2656), - [anon_sym_GT_EQ2] = ACTIONS(2656), - [anon_sym_EQ_TILDE2] = ACTIONS(2656), - [anon_sym_BANG_TILDE2] = ACTIONS(2656), - [anon_sym_like2] = ACTIONS(2656), - [anon_sym_not_DASHlike2] = ACTIONS(2656), - [anon_sym_STAR_STAR2] = ACTIONS(2656), - [anon_sym_PLUS_PLUS2] = ACTIONS(2656), - [anon_sym_SLASH2] = ACTIONS(2658), - [anon_sym_mod2] = ACTIONS(2656), - [anon_sym_SLASH_SLASH2] = ACTIONS(2656), - [anon_sym_PLUS2] = ACTIONS(2658), - [anon_sym_bit_DASHshl2] = ACTIONS(2656), - [anon_sym_bit_DASHshr2] = ACTIONS(2656), - [anon_sym_bit_DASHand2] = ACTIONS(2656), - [anon_sym_bit_DASHxor2] = ACTIONS(2656), - [anon_sym_bit_DASHor2] = ACTIONS(2656), - [anon_sym_err_GT] = ACTIONS(2658), - [anon_sym_out_GT] = ACTIONS(2658), - [anon_sym_e_GT] = ACTIONS(2658), - [anon_sym_o_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT] = ACTIONS(2658), - [anon_sym_err_GT_GT] = ACTIONS(2656), - [anon_sym_out_GT_GT] = ACTIONS(2656), - [anon_sym_e_GT_GT] = ACTIONS(2656), - [anon_sym_o_GT_GT] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_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(1045), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(999), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [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(1000)] = { - [aux_sym__repeat_newline] = STATE(507), + [aux_sym__repeat_newline] = STATE(1045), [sym_comment] = STATE(1000), - [anon_sym_in] = ACTIONS(2656), - [sym__newline] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2656), - [anon_sym_PIPE] = ACTIONS(2656), - [anon_sym_err_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_GT_PIPE] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), - [anon_sym_RPAREN] = ACTIONS(2656), - [anon_sym_GT2] = ACTIONS(2658), - [anon_sym_DASH2] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2658), - [anon_sym_and2] = ACTIONS(2656), - [anon_sym_xor2] = ACTIONS(2656), - [anon_sym_or2] = ACTIONS(2656), - [anon_sym_not_DASHin2] = ACTIONS(2656), - [anon_sym_has2] = ACTIONS(2656), - [anon_sym_not_DASHhas2] = ACTIONS(2656), - [anon_sym_starts_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), - [anon_sym_ends_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), - [anon_sym_EQ_EQ2] = ACTIONS(2656), - [anon_sym_BANG_EQ2] = ACTIONS(2656), - [anon_sym_LT2] = ACTIONS(2658), - [anon_sym_LT_EQ2] = ACTIONS(2656), - [anon_sym_GT_EQ2] = ACTIONS(2656), - [anon_sym_EQ_TILDE2] = ACTIONS(2656), - [anon_sym_BANG_TILDE2] = ACTIONS(2656), - [anon_sym_like2] = ACTIONS(2656), - [anon_sym_not_DASHlike2] = ACTIONS(2656), - [anon_sym_STAR_STAR2] = ACTIONS(2656), - [anon_sym_PLUS_PLUS2] = ACTIONS(2656), - [anon_sym_SLASH2] = ACTIONS(2658), - [anon_sym_mod2] = ACTIONS(2656), - [anon_sym_SLASH_SLASH2] = ACTIONS(2656), - [anon_sym_PLUS2] = ACTIONS(2658), - [anon_sym_bit_DASHshl2] = ACTIONS(2656), - [anon_sym_bit_DASHshr2] = ACTIONS(2656), - [anon_sym_bit_DASHand2] = ACTIONS(2656), - [anon_sym_bit_DASHxor2] = ACTIONS(2656), - [anon_sym_bit_DASHor2] = ACTIONS(2656), - [anon_sym_err_GT] = ACTIONS(2658), - [anon_sym_out_GT] = ACTIONS(2658), - [anon_sym_e_GT] = ACTIONS(2658), - [anon_sym_o_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT] = ACTIONS(2658), - [anon_sym_err_GT_GT] = ACTIONS(2656), - [anon_sym_out_GT_GT] = ACTIONS(2656), - [anon_sym_e_GT_GT] = ACTIONS(2656), - [anon_sym_o_GT_GT] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_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(1046), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1001), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [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(1002)] = { - [aux_sym__repeat_newline] = STATE(507), + [aux_sym__repeat_newline] = STATE(1046), [sym_comment] = STATE(1002), - [anon_sym_in] = ACTIONS(2656), - [sym__newline] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2656), - [anon_sym_PIPE] = ACTIONS(2656), - [anon_sym_err_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_GT_PIPE] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), - [anon_sym_RPAREN] = ACTIONS(2656), - [anon_sym_GT2] = ACTIONS(2658), - [anon_sym_DASH2] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2658), - [anon_sym_and2] = ACTIONS(2656), - [anon_sym_xor2] = ACTIONS(2656), - [anon_sym_or2] = ACTIONS(2656), - [anon_sym_not_DASHin2] = ACTIONS(2656), - [anon_sym_has2] = ACTIONS(2656), - [anon_sym_not_DASHhas2] = ACTIONS(2656), - [anon_sym_starts_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), - [anon_sym_ends_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), - [anon_sym_EQ_EQ2] = ACTIONS(2656), - [anon_sym_BANG_EQ2] = ACTIONS(2656), - [anon_sym_LT2] = ACTIONS(2658), - [anon_sym_LT_EQ2] = ACTIONS(2656), - [anon_sym_GT_EQ2] = ACTIONS(2656), - [anon_sym_EQ_TILDE2] = ACTIONS(2656), - [anon_sym_BANG_TILDE2] = ACTIONS(2656), - [anon_sym_like2] = ACTIONS(2656), - [anon_sym_not_DASHlike2] = ACTIONS(2656), - [anon_sym_STAR_STAR2] = ACTIONS(2656), - [anon_sym_PLUS_PLUS2] = ACTIONS(2656), - [anon_sym_SLASH2] = ACTIONS(2658), - [anon_sym_mod2] = ACTIONS(2656), - [anon_sym_SLASH_SLASH2] = ACTIONS(2656), - [anon_sym_PLUS2] = ACTIONS(2658), - [anon_sym_bit_DASHshl2] = ACTIONS(2656), - [anon_sym_bit_DASHshr2] = ACTIONS(2656), - [anon_sym_bit_DASHand2] = ACTIONS(2656), - [anon_sym_bit_DASHxor2] = ACTIONS(2656), - [anon_sym_bit_DASHor2] = ACTIONS(2656), - [anon_sym_err_GT] = ACTIONS(2658), - [anon_sym_out_GT] = ACTIONS(2658), - [anon_sym_e_GT] = ACTIONS(2658), - [anon_sym_o_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT] = ACTIONS(2658), - [anon_sym_err_GT_GT] = ACTIONS(2656), - [anon_sym_out_GT_GT] = ACTIONS(2656), - [anon_sym_e_GT_GT] = ACTIONS(2656), - [anon_sym_o_GT_GT] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_in] = ACTIONS(2720), + [sym__newline] = ACTIONS(2720), + [anon_sym_SEMI] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2720), + [anon_sym_err_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_GT_PIPE] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), + [anon_sym_RPAREN] = ACTIONS(2720), + [anon_sym_GT2] = ACTIONS(2722), + [anon_sym_DASH2] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2720), + [anon_sym_STAR2] = ACTIONS(2722), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2720), + [anon_sym_has2] = ACTIONS(2720), + [anon_sym_not_DASHhas2] = ACTIONS(2720), + [anon_sym_starts_DASHwith2] = ACTIONS(2720), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), + [anon_sym_ends_DASHwith2] = ACTIONS(2720), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), + [anon_sym_EQ_EQ2] = ACTIONS(2720), + [anon_sym_BANG_EQ2] = ACTIONS(2720), + [anon_sym_LT2] = ACTIONS(2722), + [anon_sym_LT_EQ2] = ACTIONS(2720), + [anon_sym_GT_EQ2] = ACTIONS(2720), + [anon_sym_EQ_TILDE2] = ACTIONS(2720), + [anon_sym_BANG_TILDE2] = ACTIONS(2720), + [anon_sym_like2] = ACTIONS(2720), + [anon_sym_not_DASHlike2] = ACTIONS(2720), + [anon_sym_STAR_STAR2] = ACTIONS(2720), + [anon_sym_PLUS_PLUS2] = ACTIONS(2720), + [anon_sym_SLASH2] = ACTIONS(2722), + [anon_sym_mod2] = ACTIONS(2720), + [anon_sym_SLASH_SLASH2] = ACTIONS(2720), + [anon_sym_PLUS2] = ACTIONS(2722), + [anon_sym_bit_DASHshl2] = ACTIONS(2720), + [anon_sym_bit_DASHshr2] = ACTIONS(2720), + [anon_sym_bit_DASHand2] = ACTIONS(2720), + [anon_sym_bit_DASHxor2] = ACTIONS(2720), + [anon_sym_bit_DASHor2] = ACTIONS(2720), + [anon_sym_err_GT] = ACTIONS(2722), + [anon_sym_out_GT] = ACTIONS(2722), + [anon_sym_e_GT] = ACTIONS(2722), + [anon_sym_o_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT] = ACTIONS(2722), + [anon_sym_err_GT_GT] = ACTIONS(2720), + [anon_sym_out_GT_GT] = ACTIONS(2720), + [anon_sym_e_GT_GT] = ACTIONS(2720), + [anon_sym_o_GT_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1003)] = { - [aux_sym__repeat_newline] = STATE(1048), + [aux_sym__repeat_newline] = STATE(1047), [sym_comment] = STATE(1003), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [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(1004)] = { - [aux_sym__repeat_newline] = STATE(1050), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1004), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [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_export] = ACTIONS(2274), - [anon_sym_alias] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2276), - [anon_sym_mut] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [aux_sym_cmd_identifier_token1] = ACTIONS(2274), - [anon_sym_def] = ACTIONS(2276), - [anon_sym_use] = ACTIONS(2276), - [anon_sym_export_DASHenv] = ACTIONS(2276), - [anon_sym_extern] = ACTIONS(2276), - [anon_sym_module] = ACTIONS(2276), - [anon_sym_for] = ACTIONS(2276), - [anon_sym_loop] = ACTIONS(2276), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_else] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2276), - [anon_sym_catch] = ACTIONS(2276), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_in] = ACTIONS(2274), - [anon_sym_true] = ACTIONS(2276), - [anon_sym_false] = ACTIONS(2276), - [anon_sym_null] = ACTIONS(2276), - [aux_sym_cmd_identifier_token3] = ACTIONS(2276), - [aux_sym_cmd_identifier_token4] = ACTIONS(2276), - [aux_sym_cmd_identifier_token5] = ACTIONS(2276), - [sym__newline] = 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_LBRACK] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2276), - [anon_sym_DOLLAR] = ACTIONS(2274), - [anon_sym_DASH2] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_DOT_DOT] = ACTIONS(2274), - [anon_sym_where] = ACTIONS(2276), - [aux_sym_expr_unary_token1] = ACTIONS(2276), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2276), - [anon_sym_DOT_DOT_LT] = ACTIONS(2276), - [aux_sym__val_number_decimal_token1] = ACTIONS(2274), - [aux_sym__val_number_decimal_token2] = ACTIONS(2276), - [aux_sym__val_number_decimal_token3] = ACTIONS(2276), - [aux_sym__val_number_decimal_token4] = ACTIONS(2276), - [aux_sym__val_number_token1] = ACTIONS(2276), - [aux_sym__val_number_token2] = ACTIONS(2276), - [aux_sym__val_number_token3] = ACTIONS(2276), - [anon_sym_0b] = ACTIONS(2274), - [anon_sym_0o] = ACTIONS(2274), - [anon_sym_0x] = ACTIONS(2274), - [sym_val_date] = ACTIONS(2276), - [anon_sym_DQUOTE] = ACTIONS(2276), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_BQUOTE] = ACTIONS(2276), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2276), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2276), - [anon_sym_CARET] = ACTIONS(2276), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2276), + [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(1006)] = { - [aux_sym__repeat_newline] = STATE(1053), + [sym__expr_parenthesized_immediate] = STATE(4884), [sym_comment] = STATE(1006), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [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_export] = ACTIONS(2696), - [anon_sym_alias] = ACTIONS(2698), - [anon_sym_let] = ACTIONS(2698), - [anon_sym_mut] = ACTIONS(2698), - [anon_sym_const] = ACTIONS(2698), - [aux_sym_cmd_identifier_token1] = ACTIONS(2696), - [anon_sym_def] = ACTIONS(2698), - [anon_sym_use] = ACTIONS(2698), - [anon_sym_export_DASHenv] = ACTIONS(2698), - [anon_sym_extern] = ACTIONS(2698), - [anon_sym_module] = ACTIONS(2698), - [anon_sym_for] = ACTIONS(2698), - [anon_sym_loop] = ACTIONS(2698), - [anon_sym_while] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2698), - [anon_sym_else] = ACTIONS(2698), - [anon_sym_try] = ACTIONS(2698), - [anon_sym_catch] = ACTIONS(2698), - [anon_sym_match] = ACTIONS(2698), - [anon_sym_in] = ACTIONS(2696), - [anon_sym_true] = ACTIONS(2698), - [anon_sym_false] = ACTIONS(2698), - [anon_sym_null] = ACTIONS(2698), - [aux_sym_cmd_identifier_token3] = ACTIONS(2698), - [aux_sym_cmd_identifier_token4] = ACTIONS(2698), - [aux_sym_cmd_identifier_token5] = ACTIONS(2698), - [sym__newline] = 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_LBRACK] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2698), - [anon_sym_DOLLAR] = ACTIONS(2696), - [anon_sym_DASH2] = ACTIONS(2696), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_DOT_DOT] = ACTIONS(2696), - [anon_sym_where] = ACTIONS(2698), - [aux_sym_expr_unary_token1] = ACTIONS(2698), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2698), - [anon_sym_DOT_DOT_LT] = ACTIONS(2698), - [aux_sym__val_number_decimal_token1] = ACTIONS(2696), - [aux_sym__val_number_decimal_token2] = ACTIONS(2698), - [aux_sym__val_number_decimal_token3] = ACTIONS(2698), - [aux_sym__val_number_decimal_token4] = ACTIONS(2698), - [aux_sym__val_number_token1] = ACTIONS(2698), - [aux_sym__val_number_token2] = ACTIONS(2698), - [aux_sym__val_number_token3] = ACTIONS(2698), - [anon_sym_0b] = ACTIONS(2696), - [anon_sym_0o] = ACTIONS(2696), - [anon_sym_0x] = ACTIONS(2696), - [sym_val_date] = ACTIONS(2698), - [anon_sym_DQUOTE] = ACTIONS(2698), - [anon_sym_SQUOTE] = ACTIONS(2698), - [anon_sym_BQUOTE] = ACTIONS(2698), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2698), - [anon_sym_CARET] = ACTIONS(2698), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2698), + [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(1055), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1008), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [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(1009)] = { - [aux_sym__repeat_newline] = STATE(1057), + [aux_sym__repeat_newline] = STATE(1049), [sym_comment] = STATE(1009), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [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(1010)] = { + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1010), - [anon_sym_export] = ACTIONS(2146), - [anon_sym_alias] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_mut] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [aux_sym_cmd_identifier_token1] = ACTIONS(2146), - [anon_sym_def] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_export_DASHenv] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym_module] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_else] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [anon_sym_catch] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_in] = ACTIONS(2146), - [anon_sym_true] = ACTIONS(2144), - [anon_sym_false] = ACTIONS(2144), - [anon_sym_null] = ACTIONS(2144), - [aux_sym_cmd_identifier_token3] = ACTIONS(2144), - [aux_sym_cmd_identifier_token4] = ACTIONS(2144), - [aux_sym_cmd_identifier_token5] = ACTIONS(2144), - [sym__newline] = 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_LBRACK] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_DOLLAR] = ACTIONS(2146), - [anon_sym_DASH2] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_DOT_DOT] = ACTIONS(2146), - [anon_sym_where] = ACTIONS(2144), - [aux_sym_expr_unary_token1] = ACTIONS(2144), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2144), - [anon_sym_DOT_DOT_LT] = ACTIONS(2144), - [aux_sym__val_number_decimal_token1] = ACTIONS(2146), - [aux_sym__val_number_decimal_token2] = ACTIONS(2144), - [aux_sym__val_number_decimal_token3] = ACTIONS(2144), - [aux_sym__val_number_decimal_token4] = ACTIONS(2144), - [aux_sym__val_number_token1] = ACTIONS(2144), - [aux_sym__val_number_token2] = ACTIONS(2144), - [aux_sym__val_number_token3] = ACTIONS(2144), - [anon_sym_0b] = ACTIONS(2146), - [anon_sym_0o] = ACTIONS(2146), - [anon_sym_0x] = ACTIONS(2146), - [sym_val_date] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_BQUOTE] = ACTIONS(2144), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2144), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2144), + [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(1011)] = { - [aux_sym__repeat_newline] = STATE(1357), - [sym__expression_parenthesized] = STATE(4409), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1832), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), + [aux_sym__repeat_newline] = STATE(1051), [sym_comment] = STATE(1011), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(2700), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2638), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [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(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_in] = ACTIONS(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), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1012)] = { - [aux_sym__repeat_newline] = STATE(1130), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1012), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [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(1013)] = { - [aux_sym__repeat_newline] = STATE(1061), + [aux_sym__repeat_newline] = STATE(1052), [sym_comment] = STATE(1013), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [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)] = { - [sym__expr_parenthesized_immediate] = STATE(4680), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1014), - [ts_builtin_sym_end] = ACTIONS(2082), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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(1015)] = { + [aux_sym__repeat_newline] = STATE(1138), [sym_comment] = STATE(1015), - [anon_sym_in] = ACTIONS(884), - [sym__newline] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_err_GT_PIPE] = ACTIONS(884), - [anon_sym_out_GT_PIPE] = ACTIONS(884), - [anon_sym_e_GT_PIPE] = ACTIONS(884), - [anon_sym_o_GT_PIPE] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(884), - [anon_sym_GT2] = ACTIONS(858), - [anon_sym_DASH2] = ACTIONS(884), - [anon_sym_RBRACE] = ACTIONS(884), - [anon_sym_STAR2] = ACTIONS(858), - [anon_sym_and2] = ACTIONS(884), - [anon_sym_xor2] = ACTIONS(884), - [anon_sym_or2] = ACTIONS(884), - [anon_sym_not_DASHin2] = ACTIONS(884), - [anon_sym_has2] = ACTIONS(884), - [anon_sym_not_DASHhas2] = ACTIONS(884), - [anon_sym_starts_DASHwith2] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(884), - [anon_sym_ends_DASHwith2] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(884), - [anon_sym_EQ_EQ2] = ACTIONS(884), - [anon_sym_BANG_EQ2] = ACTIONS(884), - [anon_sym_LT2] = ACTIONS(858), - [anon_sym_LT_EQ2] = ACTIONS(884), - [anon_sym_GT_EQ2] = ACTIONS(884), - [anon_sym_EQ_TILDE2] = ACTIONS(884), - [anon_sym_BANG_TILDE2] = ACTIONS(884), - [anon_sym_like2] = ACTIONS(884), - [anon_sym_not_DASHlike2] = ACTIONS(884), - [anon_sym_STAR_STAR2] = ACTIONS(884), - [anon_sym_PLUS_PLUS2] = ACTIONS(884), - [anon_sym_SLASH2] = ACTIONS(858), - [anon_sym_mod2] = ACTIONS(884), - [anon_sym_SLASH_SLASH2] = ACTIONS(884), - [anon_sym_PLUS2] = ACTIONS(858), - [anon_sym_bit_DASHshl2] = ACTIONS(884), - [anon_sym_bit_DASHshr2] = ACTIONS(884), - [anon_sym_bit_DASHand2] = ACTIONS(884), - [anon_sym_bit_DASHxor2] = ACTIONS(884), - [anon_sym_bit_DASHor2] = ACTIONS(884), - [anon_sym_err_GT] = ACTIONS(858), - [anon_sym_out_GT] = ACTIONS(858), - [anon_sym_e_GT] = ACTIONS(858), - [anon_sym_o_GT] = ACTIONS(858), - [anon_sym_err_PLUSout_GT] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT] = ACTIONS(858), - [anon_sym_o_PLUSe_GT] = ACTIONS(858), - [anon_sym_e_PLUSo_GT] = ACTIONS(858), - [anon_sym_err_GT_GT] = ACTIONS(884), - [anon_sym_out_GT_GT] = ACTIONS(884), - [anon_sym_e_GT_GT] = ACTIONS(884), - [anon_sym_o_GT_GT] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), - [sym__unquoted_pattern] = ACTIONS(1776), + [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(1063), + [aux_sym__repeat_newline] = STATE(1064), [sym_comment] = STATE(1016), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [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(1067), + [aux_sym__repeat_newline] = STATE(1066), [sym_comment] = STATE(1017), - [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_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)] = { - [sym__expr_parenthesized_immediate] = STATE(4680), + [aux_sym__repeat_newline] = STATE(1068), [sym_comment] = STATE(1018), - [ts_builtin_sym_end] = ACTIONS(2082), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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)] = { - [aux_sym__repeat_newline] = STATE(1068), + [sym__expr_parenthesized_immediate] = STATE(4884), [sym_comment] = STATE(1019), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [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(1070), + [aux_sym__repeat_newline] = STATE(985), [sym_comment] = STATE(1020), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [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)] = { - [sym__expr_parenthesized_immediate] = STATE(4680), + [aux_sym__repeat_newline] = STATE(1070), [sym_comment] = STATE(1021), - [ts_builtin_sym_end] = ACTIONS(2082), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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), - [ts_builtin_sym_end] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [sym__newline] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_err_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_GT_PIPE] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1746), - [anon_sym_GT2] = ACTIONS(1748), - [anon_sym_DASH2] = ACTIONS(1746), - [anon_sym_STAR2] = ACTIONS(1748), - [anon_sym_and2] = ACTIONS(1746), - [anon_sym_xor2] = ACTIONS(1746), - [anon_sym_or2] = ACTIONS(1746), - [anon_sym_not_DASHin2] = ACTIONS(1746), - [anon_sym_has2] = ACTIONS(1746), - [anon_sym_not_DASHhas2] = ACTIONS(1746), - [anon_sym_starts_DASHwith2] = ACTIONS(1746), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1746), - [anon_sym_ends_DASHwith2] = ACTIONS(1746), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1746), - [anon_sym_EQ_EQ2] = ACTIONS(1746), - [anon_sym_BANG_EQ2] = ACTIONS(1746), - [anon_sym_LT2] = ACTIONS(1748), - [anon_sym_LT_EQ2] = ACTIONS(1746), - [anon_sym_GT_EQ2] = ACTIONS(1746), - [anon_sym_EQ_TILDE2] = ACTIONS(1746), - [anon_sym_BANG_TILDE2] = ACTIONS(1746), - [anon_sym_like2] = ACTIONS(1746), - [anon_sym_not_DASHlike2] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1746), - [anon_sym_STAR_STAR2] = ACTIONS(1746), - [anon_sym_PLUS_PLUS2] = ACTIONS(1746), - [anon_sym_SLASH2] = ACTIONS(1748), - [anon_sym_mod2] = ACTIONS(1746), - [anon_sym_SLASH_SLASH2] = ACTIONS(1746), - [anon_sym_PLUS2] = ACTIONS(1748), - [anon_sym_bit_DASHshl2] = ACTIONS(1746), - [anon_sym_bit_DASHshr2] = ACTIONS(1746), - [anon_sym_bit_DASHand2] = ACTIONS(1746), - [anon_sym_bit_DASHxor2] = ACTIONS(1746), - [anon_sym_bit_DASHor2] = ACTIONS(1746), - [anon_sym_err_GT] = ACTIONS(1748), - [anon_sym_out_GT] = ACTIONS(1748), - [anon_sym_e_GT] = ACTIONS(1748), - [anon_sym_o_GT] = ACTIONS(1748), - [anon_sym_err_PLUSout_GT] = ACTIONS(1748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1748), - [anon_sym_o_PLUSe_GT] = ACTIONS(1748), - [anon_sym_e_PLUSo_GT] = ACTIONS(1748), - [anon_sym_err_GT_GT] = ACTIONS(1746), - [anon_sym_out_GT_GT] = ACTIONS(1746), - [anon_sym_e_GT_GT] = ACTIONS(1746), - [anon_sym_o_GT_GT] = ACTIONS(1746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1746), - [sym__unquoted_pattern] = ACTIONS(1748), + [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(1072), + [aux_sym__repeat_newline] = STATE(1076), [sym_comment] = STATE(1023), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [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(1812), - [anon_sym_in] = ACTIONS(1812), - [sym__newline] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_err_GT_PIPE] = ACTIONS(1812), - [anon_sym_out_GT_PIPE] = ACTIONS(1812), - [anon_sym_e_GT_PIPE] = ACTIONS(1812), - [anon_sym_o_GT_PIPE] = ACTIONS(1812), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1812), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1812), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1812), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1812), - [anon_sym_GT2] = ACTIONS(1814), - [anon_sym_DASH2] = ACTIONS(1812), - [anon_sym_STAR2] = ACTIONS(1814), - [anon_sym_and2] = ACTIONS(1812), - [anon_sym_xor2] = ACTIONS(1812), - [anon_sym_or2] = ACTIONS(1812), - [anon_sym_not_DASHin2] = ACTIONS(1812), - [anon_sym_has2] = ACTIONS(1812), - [anon_sym_not_DASHhas2] = ACTIONS(1812), - [anon_sym_starts_DASHwith2] = ACTIONS(1812), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1812), - [anon_sym_ends_DASHwith2] = ACTIONS(1812), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1812), - [anon_sym_EQ_EQ2] = ACTIONS(1812), - [anon_sym_BANG_EQ2] = ACTIONS(1812), - [anon_sym_LT2] = ACTIONS(1814), - [anon_sym_LT_EQ2] = ACTIONS(1812), - [anon_sym_GT_EQ2] = ACTIONS(1812), - [anon_sym_EQ_TILDE2] = ACTIONS(1812), - [anon_sym_BANG_TILDE2] = ACTIONS(1812), - [anon_sym_like2] = ACTIONS(1812), - [anon_sym_not_DASHlike2] = ACTIONS(1812), - [anon_sym_LPAREN2] = ACTIONS(1812), - [anon_sym_STAR_STAR2] = ACTIONS(1812), - [anon_sym_PLUS_PLUS2] = ACTIONS(1812), - [anon_sym_SLASH2] = ACTIONS(1814), - [anon_sym_mod2] = ACTIONS(1812), - [anon_sym_SLASH_SLASH2] = ACTIONS(1812), - [anon_sym_PLUS2] = ACTIONS(1814), - [anon_sym_bit_DASHshl2] = ACTIONS(1812), - [anon_sym_bit_DASHshr2] = ACTIONS(1812), - [anon_sym_bit_DASHand2] = ACTIONS(1812), - [anon_sym_bit_DASHxor2] = ACTIONS(1812), - [anon_sym_bit_DASHor2] = ACTIONS(1812), - [anon_sym_err_GT] = ACTIONS(1814), - [anon_sym_out_GT] = ACTIONS(1814), - [anon_sym_e_GT] = ACTIONS(1814), - [anon_sym_o_GT] = ACTIONS(1814), - [anon_sym_err_PLUSout_GT] = ACTIONS(1814), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1814), - [anon_sym_o_PLUSe_GT] = ACTIONS(1814), - [anon_sym_e_PLUSo_GT] = ACTIONS(1814), - [anon_sym_err_GT_GT] = ACTIONS(1812), - [anon_sym_out_GT_GT] = ACTIONS(1812), - [anon_sym_e_GT_GT] = ACTIONS(1812), - [anon_sym_o_GT_GT] = ACTIONS(1812), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1812), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1812), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1812), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1812), - [sym__unquoted_pattern] = ACTIONS(1814), + [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__expr_parenthesized_immediate] = STATE(4680), [sym_comment] = STATE(1025), - [ts_builtin_sym_end] = ACTIONS(2082), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [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(1075), + [aux_sym__repeat_newline] = STATE(1078), [sym_comment] = STATE(1026), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [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(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_LPAREN2] = 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_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), - [sym__unquoted_pattern] = ACTIONS(1902), + [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(1077), + [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), - [anon_sym_in] = ACTIONS(2292), - [sym__newline] = ACTIONS(2292), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_err_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_GT_PIPE] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_GT2] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_STAR2] = ACTIONS(2294), - [anon_sym_and2] = ACTIONS(2292), - [anon_sym_xor2] = ACTIONS(2292), - [anon_sym_or2] = ACTIONS(2292), - [anon_sym_not_DASHin2] = ACTIONS(2292), - [anon_sym_has2] = ACTIONS(2292), - [anon_sym_not_DASHhas2] = ACTIONS(2292), - [anon_sym_starts_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2292), - [anon_sym_ends_DASHwith2] = ACTIONS(2292), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2292), - [anon_sym_EQ_EQ2] = ACTIONS(2292), - [anon_sym_BANG_EQ2] = ACTIONS(2292), - [anon_sym_LT2] = ACTIONS(2294), - [anon_sym_LT_EQ2] = ACTIONS(2292), - [anon_sym_GT_EQ2] = ACTIONS(2292), - [anon_sym_EQ_TILDE2] = ACTIONS(2292), - [anon_sym_BANG_TILDE2] = ACTIONS(2292), - [anon_sym_like2] = ACTIONS(2292), - [anon_sym_not_DASHlike2] = ACTIONS(2292), - [anon_sym_STAR_STAR2] = ACTIONS(2292), - [anon_sym_PLUS_PLUS2] = ACTIONS(2292), - [anon_sym_SLASH2] = ACTIONS(2294), - [anon_sym_mod2] = ACTIONS(2292), - [anon_sym_SLASH_SLASH2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_bit_DASHshl2] = ACTIONS(2292), - [anon_sym_bit_DASHshr2] = ACTIONS(2292), - [anon_sym_bit_DASHand2] = ACTIONS(2292), - [anon_sym_bit_DASHxor2] = ACTIONS(2292), - [anon_sym_bit_DASHor2] = ACTIONS(2292), - [anon_sym_err_GT] = ACTIONS(2294), - [anon_sym_out_GT] = ACTIONS(2294), - [anon_sym_e_GT] = ACTIONS(2294), - [anon_sym_o_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT] = ACTIONS(2294), - [anon_sym_err_GT_GT] = ACTIONS(2292), - [anon_sym_out_GT_GT] = ACTIONS(2292), - [anon_sym_e_GT_GT] = ACTIONS(2292), - [anon_sym_o_GT_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2292), + [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)] = { - [sym__expr_parenthesized_immediate] = STATE(4680), + [aux_sym__repeat_newline] = STATE(1081), [sym_comment] = STATE(1029), - [ts_builtin_sym_end] = ACTIONS(2082), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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(4680), + [sym__expr_parenthesized_immediate] = STATE(4884), [sym_comment] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2082), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [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)] = { - [sym__expr_parenthesized_immediate] = STATE(4680), + [aux_sym__repeat_newline] = STATE(1082), [sym_comment] = STATE(1031), - [ts_builtin_sym_end] = ACTIONS(2082), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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)] = { - [sym__expr_parenthesized_immediate] = STATE(4680), + [aux_sym__repeat_newline] = STATE(987), [sym_comment] = STATE(1032), - [ts_builtin_sym_end] = ACTIONS(2082), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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(507), + [aux_sym__repeat_newline] = STATE(1085), [sym_comment] = STATE(1033), - [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_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(507), + [aux_sym__repeat_newline] = STATE(1087), [sym_comment] = STATE(1034), - [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_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(507), + [aux_sym__repeat_newline] = STATE(1089), [sym_comment] = STATE(1035), - [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_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(507), + [aux_sym__repeat_newline] = STATE(1091), [sym_comment] = STATE(1036), - [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_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(507), + [aux_sym__repeat_newline] = STATE(989), [sym_comment] = STATE(1037), - [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_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(507), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1038), - [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_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(507), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1039), - [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_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(507), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1040), - [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_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(507), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1041), - [anon_sym_in] = ACTIONS(2710), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2712), - [anon_sym_DASH2] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_STAR2] = ACTIONS(2712), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2710), - [anon_sym_has2] = ACTIONS(2710), - [anon_sym_not_DASHhas2] = ACTIONS(2710), - [anon_sym_starts_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), - [anon_sym_ends_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), - [anon_sym_EQ_EQ2] = ACTIONS(2710), - [anon_sym_BANG_EQ2] = ACTIONS(2710), - [anon_sym_LT2] = ACTIONS(2712), - [anon_sym_LT_EQ2] = ACTIONS(2710), - [anon_sym_GT_EQ2] = ACTIONS(2710), - [anon_sym_EQ_TILDE2] = ACTIONS(2710), - [anon_sym_BANG_TILDE2] = ACTIONS(2710), - [anon_sym_like2] = ACTIONS(2710), - [anon_sym_not_DASHlike2] = ACTIONS(2710), - [anon_sym_STAR_STAR2] = ACTIONS(2710), - [anon_sym_PLUS_PLUS2] = ACTIONS(2710), - [anon_sym_SLASH2] = ACTIONS(2712), - [anon_sym_mod2] = ACTIONS(2710), - [anon_sym_SLASH_SLASH2] = ACTIONS(2710), - [anon_sym_PLUS2] = ACTIONS(2712), - [anon_sym_bit_DASHshl2] = ACTIONS(2710), - [anon_sym_bit_DASHshr2] = ACTIONS(2710), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [anon_sym_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(507), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1042), - [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_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(507), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1043), - [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_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(507), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1044), - [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_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(507), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1045), - [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_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(507), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1046), - [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_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(1080), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1047), - [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_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_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_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(507), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1048), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [anon_sym_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(1081), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1049), - [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_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_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_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)] = { - [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1050), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), - [anon_sym_POUND] = ACTIONS(3), + [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)] = { - [sym__expr_parenthesized_immediate] = STATE(4680), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1051), - [ts_builtin_sym_end] = ACTIONS(2082), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_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(1082), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1052), - [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_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_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_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)] = { - [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1053), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [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(1083), + [aux_sym__repeat_newline] = STATE(993), [sym_comment] = STATE(1054), - [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_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_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_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(507), [sym_comment] = STATE(1055), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [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(1084), [sym_comment] = STATE(1056), - [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_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_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), + [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(507), + [aux_sym__repeat_newline] = STATE(995), [sym_comment] = STATE(1057), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1058)] = { - [sym__expr_parenthesized_immediate] = STATE(4680), [sym_comment] = STATE(1058), - [ts_builtin_sym_end] = ACTIONS(2082), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [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(1085), + [aux_sym__repeat_newline] = STATE(997), [sym_comment] = STATE(1059), - [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_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_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_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(1086), + [aux_sym__repeat_newline] = STATE(1094), [sym_comment] = STATE(1060), - [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_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_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_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(507), [sym_comment] = STATE(1061), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [anon_sym_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(1087), [sym_comment] = STATE(1062), - [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_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_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), + [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(507), + [aux_sym__repeat_newline] = STATE(1095), [sym_comment] = STATE(1063), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [anon_sym_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(1088), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1064), - [anon_sym_in] = ACTIONS(2718), - [sym__newline] = ACTIONS(2718), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_err_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_GT_PIPE] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), - [anon_sym_RPAREN] = ACTIONS(2718), - [anon_sym_GT2] = ACTIONS(2720), - [anon_sym_DASH2] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_STAR2] = ACTIONS(2720), - [anon_sym_and2] = ACTIONS(2718), - [anon_sym_xor2] = ACTIONS(2718), - [anon_sym_or2] = ACTIONS(2718), - [anon_sym_not_DASHin2] = ACTIONS(2718), - [anon_sym_has2] = ACTIONS(2718), - [anon_sym_not_DASHhas2] = ACTIONS(2718), - [anon_sym_starts_DASHwith2] = ACTIONS(2718), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2718), - [anon_sym_ends_DASHwith2] = ACTIONS(2718), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2718), - [anon_sym_EQ_EQ2] = ACTIONS(2718), - [anon_sym_BANG_EQ2] = ACTIONS(2718), - [anon_sym_LT2] = ACTIONS(2720), - [anon_sym_LT_EQ2] = ACTIONS(2718), - [anon_sym_GT_EQ2] = ACTIONS(2718), - [anon_sym_EQ_TILDE2] = ACTIONS(2718), - [anon_sym_BANG_TILDE2] = ACTIONS(2718), - [anon_sym_like2] = ACTIONS(2718), - [anon_sym_not_DASHlike2] = ACTIONS(2718), - [anon_sym_STAR_STAR2] = ACTIONS(2718), - [anon_sym_PLUS_PLUS2] = ACTIONS(2718), - [anon_sym_SLASH2] = ACTIONS(2720), - [anon_sym_mod2] = ACTIONS(2718), - [anon_sym_SLASH_SLASH2] = ACTIONS(2718), - [anon_sym_PLUS2] = ACTIONS(2720), - [anon_sym_bit_DASHshl2] = ACTIONS(2718), - [anon_sym_bit_DASHshr2] = ACTIONS(2718), - [anon_sym_bit_DASHand2] = ACTIONS(2718), - [anon_sym_bit_DASHxor2] = ACTIONS(2718), - [anon_sym_bit_DASHor2] = ACTIONS(2718), - [anon_sym_err_GT] = ACTIONS(2720), - [anon_sym_out_GT] = ACTIONS(2720), - [anon_sym_e_GT] = ACTIONS(2720), - [anon_sym_o_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT] = ACTIONS(2720), - [anon_sym_err_GT_GT] = ACTIONS(2718), - [anon_sym_out_GT_GT] = ACTIONS(2718), - [anon_sym_e_GT_GT] = ACTIONS(2718), - [anon_sym_o_GT_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1065)] = { - [sym__expr_parenthesized_immediate] = STATE(4680), - [sym_comment] = STATE(1065), - [ts_builtin_sym_end] = ACTIONS(2082), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1066)] = { - [aux_sym__repeat_newline] = STATE(1089), - [sym_comment] = STATE(1066), - [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_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_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(1067)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1067), - [anon_sym_in] = ACTIONS(2722), - [sym__newline] = ACTIONS(2722), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_err_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_GT_PIPE] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), - [anon_sym_RPAREN] = ACTIONS(2722), - [anon_sym_GT2] = ACTIONS(2724), - [anon_sym_DASH2] = ACTIONS(2722), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_STAR2] = ACTIONS(2724), - [anon_sym_and2] = ACTIONS(2722), - [anon_sym_xor2] = ACTIONS(2722), - [anon_sym_or2] = ACTIONS(2722), - [anon_sym_not_DASHin2] = ACTIONS(2722), - [anon_sym_has2] = ACTIONS(2722), - [anon_sym_not_DASHhas2] = ACTIONS(2722), - [anon_sym_starts_DASHwith2] = ACTIONS(2722), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), - [anon_sym_ends_DASHwith2] = ACTIONS(2722), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), - [anon_sym_EQ_EQ2] = ACTIONS(2722), - [anon_sym_BANG_EQ2] = ACTIONS(2722), - [anon_sym_LT2] = ACTIONS(2724), - [anon_sym_LT_EQ2] = ACTIONS(2722), - [anon_sym_GT_EQ2] = ACTIONS(2722), - [anon_sym_EQ_TILDE2] = ACTIONS(2722), - [anon_sym_BANG_TILDE2] = ACTIONS(2722), - [anon_sym_like2] = ACTIONS(2722), - [anon_sym_not_DASHlike2] = ACTIONS(2722), - [anon_sym_STAR_STAR2] = ACTIONS(2722), - [anon_sym_PLUS_PLUS2] = ACTIONS(2722), - [anon_sym_SLASH2] = ACTIONS(2724), - [anon_sym_mod2] = ACTIONS(2722), - [anon_sym_SLASH_SLASH2] = ACTIONS(2722), - [anon_sym_PLUS2] = ACTIONS(2724), - [anon_sym_bit_DASHshl2] = ACTIONS(2722), - [anon_sym_bit_DASHshr2] = ACTIONS(2722), - [anon_sym_bit_DASHand2] = ACTIONS(2722), - [anon_sym_bit_DASHxor2] = ACTIONS(2722), - [anon_sym_bit_DASHor2] = ACTIONS(2722), - [anon_sym_err_GT] = ACTIONS(2724), - [anon_sym_out_GT] = ACTIONS(2724), - [anon_sym_e_GT] = ACTIONS(2724), - [anon_sym_o_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT] = ACTIONS(2724), - [anon_sym_err_GT_GT] = ACTIONS(2722), - [anon_sym_out_GT_GT] = ACTIONS(2722), - [anon_sym_e_GT_GT] = ACTIONS(2722), - [anon_sym_o_GT_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1068)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1068), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1069)] = { - [aux_sym__repeat_newline] = STATE(1090), - [sym_comment] = STATE(1069), - [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_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_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(1070)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1070), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1071)] = { - [aux_sym__repeat_newline] = STATE(1091), - [sym_comment] = STATE(1071), - [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_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_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(1072)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1072), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1073)] = { - [sym__expr_parenthesized_immediate] = STATE(4680), - [sym_comment] = STATE(1073), - [ts_builtin_sym_end] = ACTIONS(2082), - [anon_sym_in] = ACTIONS(2082), - [sym__newline] = ACTIONS(2082), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_PIPE] = ACTIONS(2082), - [anon_sym_err_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_GT_PIPE] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), - [anon_sym_GT2] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_STAR2] = ACTIONS(2084), - [anon_sym_and2] = ACTIONS(2082), - [anon_sym_xor2] = ACTIONS(2082), - [anon_sym_or2] = ACTIONS(2082), - [anon_sym_not_DASHin2] = ACTIONS(2082), - [anon_sym_has2] = ACTIONS(2082), - [anon_sym_not_DASHhas2] = ACTIONS(2082), - [anon_sym_starts_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), - [anon_sym_ends_DASHwith2] = ACTIONS(2082), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), - [anon_sym_EQ_EQ2] = ACTIONS(2082), - [anon_sym_BANG_EQ2] = ACTIONS(2082), - [anon_sym_LT2] = ACTIONS(2084), - [anon_sym_LT_EQ2] = ACTIONS(2082), - [anon_sym_GT_EQ2] = ACTIONS(2082), - [anon_sym_EQ_TILDE2] = ACTIONS(2082), - [anon_sym_BANG_TILDE2] = ACTIONS(2082), - [anon_sym_like2] = ACTIONS(2082), - [anon_sym_not_DASHlike2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2082), - [anon_sym_PLUS_PLUS2] = ACTIONS(2082), - [anon_sym_SLASH2] = ACTIONS(2084), - [anon_sym_mod2] = ACTIONS(2082), - [anon_sym_SLASH_SLASH2] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2084), - [anon_sym_bit_DASHshl2] = ACTIONS(2082), - [anon_sym_bit_DASHshr2] = ACTIONS(2082), - [anon_sym_bit_DASHand2] = ACTIONS(2082), - [anon_sym_bit_DASHxor2] = ACTIONS(2082), - [anon_sym_bit_DASHor2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2084), - [anon_sym_out_GT] = ACTIONS(2084), - [anon_sym_e_GT] = ACTIONS(2084), - [anon_sym_o_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT] = ACTIONS(2084), - [anon_sym_err_GT_GT] = ACTIONS(2082), - [anon_sym_out_GT_GT] = ACTIONS(2082), - [anon_sym_e_GT_GT] = ACTIONS(2082), - [anon_sym_o_GT_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1074)] = { - [aux_sym__repeat_newline] = STATE(1092), - [sym_comment] = STATE(1074), - [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_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_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(1075)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1075), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1076)] = { - [aux_sym__repeat_newline] = STATE(1093), - [sym_comment] = STATE(1076), - [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_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_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(1077)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1077), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1078)] = { - [aux_sym__repeat_newline] = STATE(4342), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4441), - [sym__match_pattern_list_body] = STATE(4658), - [sym__match_pattern_list] = STATE(4454), - [sym__match_pattern_rest] = STATE(5063), - [sym__match_pattern_record] = STATE(4455), - [sym_expr_parenthesized] = STATE(3791), - [sym_val_range] = STATE(4441), - [sym__val_range] = STATE(5087), - [sym_val_nothing] = STATE(4455), - [sym_val_bool] = STATE(4146), - [sym_val_variable] = STATE(3792), - [sym_val_number] = STATE(4455), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4455), - [sym_val_filesize] = STATE(4455), - [sym_val_binary] = STATE(4455), - [sym_val_string] = STATE(4455), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_list] = STATE(5056), - [sym__table_head] = STATE(3723), - [sym_val_table] = STATE(4455), - [sym__unquoted_in_list] = STATE(4285), - [sym__unquoted_anonymous_prefix] = STATE(5087), - [sym_comment] = STATE(1078), - [aux_sym__types_body_repeat1] = STATE(1397), - [aux_sym_parameter_repeat2] = STATE(4091), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1420), - [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(2726), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_RBRACK] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2734), - [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(2736), - [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(1079)] = { - [sym__expression] = STATE(4735), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2216), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1832), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_comment] = STATE(1079), - [aux_sym_cmd_identifier_token2] = ACTIONS(2738), - [anon_sym_true] = ACTIONS(2632), - [anon_sym_false] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [aux_sym_cmd_identifier_token3] = ACTIONS(2636), - [aux_sym_cmd_identifier_token4] = ACTIONS(2636), - [aux_sym_cmd_identifier_token5] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [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(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2046), - [aux_sym__val_number_decimal_token3] = ACTIONS(2640), - [aux_sym__val_number_decimal_token4] = ACTIONS(2640), - [aux_sym__val_number_token1] = ACTIONS(2636), - [aux_sym__val_number_token2] = ACTIONS(2636), - [aux_sym__val_number_token3] = ACTIONS(2636), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2642), - [anon_sym_DQUOTE] = ACTIONS(197), - [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(2740), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(1080)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1080), [anon_sym_in] = ACTIONS(2742), [sym__newline] = ACTIONS(2742), [anon_sym_SEMI] = ACTIONS(2742), @@ -127241,9 +126528,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1081)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1081), + [STATE(1065)] = { + [aux_sym__repeat_newline] = STATE(1096), + [sym_comment] = STATE(1065), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1066)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1066), [anon_sym_in] = ACTIONS(2742), [sym__newline] = ACTIONS(2742), [anon_sym_SEMI] = ACTIONS(2742), @@ -127309,9 +126664,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1082)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1082), + [STATE(1067)] = { + [aux_sym__repeat_newline] = STATE(1097), + [sym_comment] = STATE(1067), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1068)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1068), [anon_sym_in] = ACTIONS(2742), [sym__newline] = ACTIONS(2742), [anon_sym_SEMI] = ACTIONS(2742), @@ -127377,9 +126800,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1083)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1083), + [STATE(1069)] = { + [aux_sym__repeat_newline] = STATE(1098), + [sym_comment] = STATE(1069), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1070)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1070), [anon_sym_in] = ACTIONS(2742), [sym__newline] = ACTIONS(2742), [anon_sym_SEMI] = ACTIONS(2742), @@ -127445,9 +126936,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1084)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1084), + [STATE(1071)] = { + [aux_sym__repeat_newline] = STATE(999), + [sym_comment] = STATE(1071), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1072)] = { + [aux_sym__repeat_newline] = STATE(1099), + [sym_comment] = STATE(1072), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1073)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1073), [anon_sym_in] = ACTIONS(2742), [sym__newline] = ACTIONS(2742), [anon_sym_SEMI] = ACTIONS(2742), @@ -127513,77 +127140,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1085)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1085), - [anon_sym_in] = ACTIONS(2742), - [sym__newline] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_PIPE] = ACTIONS(2742), - [anon_sym_err_GT_PIPE] = ACTIONS(2742), - [anon_sym_out_GT_PIPE] = ACTIONS(2742), - [anon_sym_e_GT_PIPE] = ACTIONS(2742), - [anon_sym_o_GT_PIPE] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), - [anon_sym_RPAREN] = ACTIONS(2742), - [anon_sym_GT2] = ACTIONS(2744), - [anon_sym_DASH2] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_STAR2] = ACTIONS(2744), - [anon_sym_and2] = ACTIONS(2742), - [anon_sym_xor2] = ACTIONS(2742), - [anon_sym_or2] = ACTIONS(2742), - [anon_sym_not_DASHin2] = ACTIONS(2742), - [anon_sym_has2] = ACTIONS(2742), - [anon_sym_not_DASHhas2] = ACTIONS(2742), - [anon_sym_starts_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2742), - [anon_sym_ends_DASHwith2] = ACTIONS(2742), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2742), - [anon_sym_EQ_EQ2] = ACTIONS(2742), - [anon_sym_BANG_EQ2] = ACTIONS(2742), - [anon_sym_LT2] = ACTIONS(2744), - [anon_sym_LT_EQ2] = ACTIONS(2742), - [anon_sym_GT_EQ2] = ACTIONS(2742), - [anon_sym_EQ_TILDE2] = ACTIONS(2742), - [anon_sym_BANG_TILDE2] = ACTIONS(2742), - [anon_sym_like2] = ACTIONS(2742), - [anon_sym_not_DASHlike2] = ACTIONS(2742), - [anon_sym_STAR_STAR2] = ACTIONS(2742), - [anon_sym_PLUS_PLUS2] = ACTIONS(2742), - [anon_sym_SLASH2] = ACTIONS(2744), - [anon_sym_mod2] = ACTIONS(2742), - [anon_sym_SLASH_SLASH2] = ACTIONS(2742), - [anon_sym_PLUS2] = ACTIONS(2744), - [anon_sym_bit_DASHshl2] = ACTIONS(2742), - [anon_sym_bit_DASHshr2] = ACTIONS(2742), - [anon_sym_bit_DASHand2] = ACTIONS(2742), - [anon_sym_bit_DASHxor2] = ACTIONS(2742), - [anon_sym_bit_DASHor2] = ACTIONS(2742), - [anon_sym_err_GT] = ACTIONS(2744), - [anon_sym_out_GT] = ACTIONS(2744), - [anon_sym_e_GT] = ACTIONS(2744), - [anon_sym_o_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT] = ACTIONS(2744), - [anon_sym_err_GT_GT] = ACTIONS(2742), - [anon_sym_out_GT_GT] = ACTIONS(2742), - [anon_sym_e_GT_GT] = ACTIONS(2742), - [anon_sym_o_GT_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), + [STATE(1074)] = { + [sym_comment] = STATE(1074), + [ts_builtin_sym_end] = ACTIONS(2541), + [anon_sym_in] = ACTIONS(2541), + [sym__newline] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [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(1086)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1086), + [STATE(1075)] = { + [aux_sym__repeat_newline] = STATE(1100), + [sym_comment] = STATE(1075), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1076)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1076), [anon_sym_in] = ACTIONS(2742), [sym__newline] = ACTIONS(2742), [anon_sym_SEMI] = ACTIONS(2742), @@ -127649,9 +127344,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1087)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1087), + [STATE(1077)] = { + [aux_sym__repeat_newline] = STATE(1101), + [sym_comment] = STATE(1077), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1078)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1078), [anon_sym_in] = ACTIONS(2742), [sym__newline] = ACTIONS(2742), [anon_sym_SEMI] = ACTIONS(2742), @@ -127717,9 +127480,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1088)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1088), + [STATE(1079)] = { + [aux_sym__repeat_newline] = STATE(1102), + [sym_comment] = STATE(1079), [anon_sym_in] = ACTIONS(2746), [sym__newline] = ACTIONS(2746), [anon_sym_SEMI] = ACTIONS(2746), @@ -127785,9 +127548,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1089)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1089), + [STATE(1080)] = { + [aux_sym__repeat_newline] = STATE(1103), + [sym_comment] = STATE(1080), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1081)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1081), + [anon_sym_in] = ACTIONS(2750), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2752), + [anon_sym_DASH2] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_STAR2] = ACTIONS(2752), + [anon_sym_and2] = ACTIONS(2750), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2750), + [anon_sym_has2] = ACTIONS(2750), + [anon_sym_not_DASHhas2] = ACTIONS(2750), + [anon_sym_starts_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2750), + [anon_sym_ends_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2750), + [anon_sym_EQ_EQ2] = ACTIONS(2750), + [anon_sym_BANG_EQ2] = ACTIONS(2750), + [anon_sym_LT2] = ACTIONS(2752), + [anon_sym_LT_EQ2] = ACTIONS(2750), + [anon_sym_GT_EQ2] = ACTIONS(2750), + [anon_sym_EQ_TILDE2] = ACTIONS(2750), + [anon_sym_BANG_TILDE2] = ACTIONS(2750), + [anon_sym_like2] = ACTIONS(2750), + [anon_sym_not_DASHlike2] = ACTIONS(2750), + [anon_sym_STAR_STAR2] = ACTIONS(2750), + [anon_sym_PLUS_PLUS2] = ACTIONS(2750), + [anon_sym_SLASH2] = ACTIONS(2752), + [anon_sym_mod2] = ACTIONS(2750), + [anon_sym_SLASH_SLASH2] = ACTIONS(2750), + [anon_sym_PLUS2] = ACTIONS(2752), + [anon_sym_bit_DASHshl2] = ACTIONS(2750), + [anon_sym_bit_DASHshr2] = ACTIONS(2750), + [anon_sym_bit_DASHand2] = ACTIONS(2750), + [anon_sym_bit_DASHxor2] = ACTIONS(2750), + [anon_sym_bit_DASHor2] = ACTIONS(2750), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1082)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1082), [anon_sym_in] = ACTIONS(2742), [sym__newline] = ACTIONS(2742), [anon_sym_SEMI] = ACTIONS(2742), @@ -127853,9 +127752,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1090)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1090), + [STATE(1083)] = { + [sym_comment] = STATE(1083), + [ts_builtin_sym_end] = ACTIONS(2589), + [anon_sym_in] = ACTIONS(2589), + [sym__newline] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2589), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_err_GT_PIPE] = ACTIONS(2589), + [anon_sym_out_GT_PIPE] = ACTIONS(2589), + [anon_sym_e_GT_PIPE] = ACTIONS(2589), + [anon_sym_o_GT_PIPE] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2589), + [anon_sym_GT2] = ACTIONS(2591), + [anon_sym_DASH2] = ACTIONS(2589), + [anon_sym_STAR2] = ACTIONS(2591), + [anon_sym_and2] = ACTIONS(2589), + [anon_sym_xor2] = ACTIONS(2589), + [anon_sym_or2] = ACTIONS(2589), + [anon_sym_not_DASHin2] = ACTIONS(2589), + [anon_sym_has2] = ACTIONS(2589), + [anon_sym_not_DASHhas2] = ACTIONS(2589), + [anon_sym_starts_DASHwith2] = ACTIONS(2589), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2589), + [anon_sym_ends_DASHwith2] = ACTIONS(2589), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2589), + [anon_sym_EQ_EQ2] = ACTIONS(2589), + [anon_sym_BANG_EQ2] = ACTIONS(2589), + [anon_sym_LT2] = ACTIONS(2591), + [anon_sym_LT_EQ2] = ACTIONS(2589), + [anon_sym_GT_EQ2] = ACTIONS(2589), + [anon_sym_EQ_TILDE2] = ACTIONS(2589), + [anon_sym_BANG_TILDE2] = ACTIONS(2589), + [anon_sym_like2] = ACTIONS(2589), + [anon_sym_not_DASHlike2] = ACTIONS(2589), + [anon_sym_LPAREN2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2589), + [anon_sym_PLUS_PLUS2] = ACTIONS(2589), + [anon_sym_SLASH2] = ACTIONS(2591), + [anon_sym_mod2] = ACTIONS(2589), + [anon_sym_SLASH_SLASH2] = ACTIONS(2589), + [anon_sym_PLUS2] = ACTIONS(2591), + [anon_sym_bit_DASHshl2] = ACTIONS(2589), + [anon_sym_bit_DASHshr2] = ACTIONS(2589), + [anon_sym_bit_DASHand2] = ACTIONS(2589), + [anon_sym_bit_DASHxor2] = ACTIONS(2589), + [anon_sym_bit_DASHor2] = ACTIONS(2589), + [anon_sym_err_GT] = ACTIONS(2591), + [anon_sym_out_GT] = ACTIONS(2591), + [anon_sym_e_GT] = ACTIONS(2591), + [anon_sym_o_GT] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT] = ACTIONS(2591), + [anon_sym_err_GT_GT] = ACTIONS(2589), + [anon_sym_out_GT_GT] = ACTIONS(2589), + [anon_sym_e_GT_GT] = ACTIONS(2589), + [anon_sym_o_GT_GT] = ACTIONS(2589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), + [sym__unquoted_pattern] = ACTIONS(2646), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1084)] = { + [aux_sym__repeat_newline] = STATE(1104), + [sym_comment] = STATE(1084), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1085)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1085), [anon_sym_in] = ACTIONS(2742), [sym__newline] = ACTIONS(2742), [anon_sym_SEMI] = ACTIONS(2742), @@ -127921,9 +127956,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1091)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1091), + [STATE(1086)] = { + [aux_sym__repeat_newline] = STATE(1105), + [sym_comment] = STATE(1086), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1087)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1087), [anon_sym_in] = ACTIONS(2742), [sym__newline] = ACTIONS(2742), [anon_sym_SEMI] = ACTIONS(2742), @@ -127989,9 +128092,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1092)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1092), + [STATE(1088)] = { + [aux_sym__repeat_newline] = STATE(1106), + [sym_comment] = STATE(1088), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1089)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1089), [anon_sym_in] = ACTIONS(2742), [sym__newline] = ACTIONS(2742), [anon_sym_SEMI] = ACTIONS(2742), @@ -128057,9 +128228,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1093)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1093), + [STATE(1090)] = { + [aux_sym__repeat_newline] = STATE(1107), + [sym_comment] = STATE(1090), + [anon_sym_in] = ACTIONS(2442), + [sym__newline] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_err_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_GT_PIPE] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_GT2] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_STAR2] = ACTIONS(2444), + [anon_sym_and2] = ACTIONS(2442), + [anon_sym_xor2] = ACTIONS(2442), + [anon_sym_or2] = ACTIONS(2442), + [anon_sym_not_DASHin2] = ACTIONS(2442), + [anon_sym_has2] = ACTIONS(2442), + [anon_sym_not_DASHhas2] = ACTIONS(2442), + [anon_sym_starts_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2442), + [anon_sym_ends_DASHwith2] = ACTIONS(2442), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2442), + [anon_sym_EQ_EQ2] = ACTIONS(2442), + [anon_sym_BANG_EQ2] = ACTIONS(2442), + [anon_sym_LT2] = ACTIONS(2444), + [anon_sym_LT_EQ2] = ACTIONS(2442), + [anon_sym_GT_EQ2] = ACTIONS(2442), + [anon_sym_EQ_TILDE2] = ACTIONS(2442), + [anon_sym_BANG_TILDE2] = ACTIONS(2442), + [anon_sym_like2] = ACTIONS(2442), + [anon_sym_not_DASHlike2] = ACTIONS(2442), + [anon_sym_STAR_STAR2] = ACTIONS(2442), + [anon_sym_PLUS_PLUS2] = ACTIONS(2442), + [anon_sym_SLASH2] = ACTIONS(2444), + [anon_sym_mod2] = ACTIONS(2442), + [anon_sym_SLASH_SLASH2] = ACTIONS(2442), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_bit_DASHshl2] = ACTIONS(2442), + [anon_sym_bit_DASHshr2] = ACTIONS(2442), + [anon_sym_bit_DASHand2] = ACTIONS(2442), + [anon_sym_bit_DASHxor2] = ACTIONS(2442), + [anon_sym_bit_DASHor2] = ACTIONS(2442), + [anon_sym_err_GT] = ACTIONS(2444), + [anon_sym_out_GT] = ACTIONS(2444), + [anon_sym_e_GT] = ACTIONS(2444), + [anon_sym_o_GT] = ACTIONS(2444), + [anon_sym_err_PLUSout_GT] = ACTIONS(2444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2444), + [anon_sym_o_PLUSe_GT] = ACTIONS(2444), + [anon_sym_e_PLUSo_GT] = ACTIONS(2444), + [anon_sym_err_GT_GT] = ACTIONS(2442), + [anon_sym_out_GT_GT] = ACTIONS(2442), + [anon_sym_e_GT_GT] = ACTIONS(2442), + [anon_sym_o_GT_GT] = ACTIONS(2442), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2442), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2442), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2442), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1091)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1091), [anon_sym_in] = ACTIONS(2742), [sym__newline] = ACTIONS(2742), [anon_sym_SEMI] = ACTIONS(2742), @@ -128125,2229 +128364,2909 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2742), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(1092)] = { + [aux_sym__repeat_newline] = STATE(1001), + [sym_comment] = STATE(1092), + [anon_sym_in] = ACTIONS(2302), + [sym__newline] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_err_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_GT_PIPE] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_GT2] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_STAR2] = ACTIONS(2304), + [anon_sym_and2] = ACTIONS(2302), + [anon_sym_xor2] = ACTIONS(2302), + [anon_sym_or2] = ACTIONS(2302), + [anon_sym_not_DASHin2] = ACTIONS(2302), + [anon_sym_has2] = ACTIONS(2302), + [anon_sym_not_DASHhas2] = ACTIONS(2302), + [anon_sym_starts_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2302), + [anon_sym_ends_DASHwith2] = ACTIONS(2302), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2302), + [anon_sym_EQ_EQ2] = ACTIONS(2302), + [anon_sym_BANG_EQ2] = ACTIONS(2302), + [anon_sym_LT2] = ACTIONS(2304), + [anon_sym_LT_EQ2] = ACTIONS(2302), + [anon_sym_GT_EQ2] = ACTIONS(2302), + [anon_sym_EQ_TILDE2] = ACTIONS(2302), + [anon_sym_BANG_TILDE2] = ACTIONS(2302), + [anon_sym_like2] = ACTIONS(2302), + [anon_sym_not_DASHlike2] = ACTIONS(2302), + [anon_sym_STAR_STAR2] = ACTIONS(2302), + [anon_sym_PLUS_PLUS2] = ACTIONS(2302), + [anon_sym_SLASH2] = ACTIONS(2304), + [anon_sym_mod2] = ACTIONS(2302), + [anon_sym_SLASH_SLASH2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_bit_DASHshl2] = ACTIONS(2302), + [anon_sym_bit_DASHshr2] = ACTIONS(2302), + [anon_sym_bit_DASHand2] = ACTIONS(2302), + [anon_sym_bit_DASHxor2] = ACTIONS(2302), + [anon_sym_bit_DASHor2] = ACTIONS(2302), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2302), + [anon_sym_out_GT_GT] = ACTIONS(2302), + [anon_sym_e_GT_GT] = ACTIONS(2302), + [anon_sym_o_GT_GT] = ACTIONS(2302), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2302), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2302), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2302), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1093)] = { + [aux_sym__repeat_newline] = STATE(1004), + [sym_comment] = STATE(1093), + [anon_sym_in] = ACTIONS(2754), + [sym__newline] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_err_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_GT_PIPE] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_GT2] = ACTIONS(2756), + [anon_sym_DASH2] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_STAR2] = ACTIONS(2756), + [anon_sym_and2] = ACTIONS(2754), + [anon_sym_xor2] = ACTIONS(2754), + [anon_sym_or2] = ACTIONS(2754), + [anon_sym_not_DASHin2] = ACTIONS(2754), + [anon_sym_has2] = ACTIONS(2754), + [anon_sym_not_DASHhas2] = ACTIONS(2754), + [anon_sym_starts_DASHwith2] = ACTIONS(2754), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2754), + [anon_sym_ends_DASHwith2] = ACTIONS(2754), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2754), + [anon_sym_EQ_EQ2] = ACTIONS(2754), + [anon_sym_BANG_EQ2] = ACTIONS(2754), + [anon_sym_LT2] = ACTIONS(2756), + [anon_sym_LT_EQ2] = ACTIONS(2754), + [anon_sym_GT_EQ2] = ACTIONS(2754), + [anon_sym_EQ_TILDE2] = ACTIONS(2754), + [anon_sym_BANG_TILDE2] = ACTIONS(2754), + [anon_sym_like2] = ACTIONS(2754), + [anon_sym_not_DASHlike2] = ACTIONS(2754), + [anon_sym_STAR_STAR2] = ACTIONS(2754), + [anon_sym_PLUS_PLUS2] = ACTIONS(2754), + [anon_sym_SLASH2] = ACTIONS(2756), + [anon_sym_mod2] = ACTIONS(2754), + [anon_sym_SLASH_SLASH2] = ACTIONS(2754), + [anon_sym_PLUS2] = ACTIONS(2756), + [anon_sym_bit_DASHshl2] = ACTIONS(2754), + [anon_sym_bit_DASHshr2] = ACTIONS(2754), + [anon_sym_bit_DASHand2] = ACTIONS(2754), + [anon_sym_bit_DASHxor2] = ACTIONS(2754), + [anon_sym_bit_DASHor2] = ACTIONS(2754), + [anon_sym_err_GT] = ACTIONS(2756), + [anon_sym_out_GT] = ACTIONS(2756), + [anon_sym_e_GT] = ACTIONS(2756), + [anon_sym_o_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT] = ACTIONS(2756), + [anon_sym_err_GT_GT] = ACTIONS(2754), + [anon_sym_out_GT_GT] = ACTIONS(2754), + [anon_sym_e_GT_GT] = ACTIONS(2754), + [anon_sym_o_GT_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(1094)] = { - [sym__expression] = STATE(4743), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2216), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1832), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1094), - [aux_sym_cmd_identifier_token2] = ACTIONS(2738), - [anon_sym_true] = ACTIONS(2632), - [anon_sym_false] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [aux_sym_cmd_identifier_token3] = ACTIONS(2636), - [aux_sym_cmd_identifier_token4] = ACTIONS(2636), - [aux_sym_cmd_identifier_token5] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [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(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2046), - [aux_sym__val_number_decimal_token3] = ACTIONS(2640), - [aux_sym__val_number_decimal_token4] = ACTIONS(2640), - [aux_sym__val_number_token1] = ACTIONS(2636), - [aux_sym__val_number_token2] = ACTIONS(2636), - [aux_sym__val_number_token3] = ACTIONS(2636), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2642), - [anon_sym_DQUOTE] = ACTIONS(197), - [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(2740), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [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(527), [sym_comment] = STATE(1095), - [aux_sym_cmd_identifier_token2] = ACTIONS(2630), - [anon_sym_in] = ACTIONS(2508), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2508), - [anon_sym_RBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2508), - [anon_sym_xor2] = ACTIONS(2508), - [anon_sym_or2] = ACTIONS(2508), - [anon_sym_not_DASHin2] = ACTIONS(2508), - [anon_sym_has2] = ACTIONS(2508), - [anon_sym_not_DASHhas2] = ACTIONS(2508), - [anon_sym_starts_DASHwith2] = ACTIONS(2508), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2508), - [anon_sym_ends_DASHwith2] = ACTIONS(2508), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2508), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2508), - [anon_sym_like2] = ACTIONS(2508), - [anon_sym_not_DASHlike2] = ACTIONS(2508), - [anon_sym_STAR_STAR2] = ACTIONS(2508), - [anon_sym_PLUS_PLUS2] = ACTIONS(2508), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2508), - [anon_sym_SLASH_SLASH2] = ACTIONS(2508), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2508), - [anon_sym_bit_DASHshr2] = ACTIONS(2508), - [anon_sym_bit_DASHand2] = ACTIONS(2508), - [anon_sym_bit_DASHxor2] = ACTIONS(2508), - [anon_sym_bit_DASHor2] = ACTIONS(2508), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(103), + [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(527), [sym_comment] = STATE(1096), - [aux_sym_cmd_identifier_token2] = ACTIONS(2630), - [anon_sym_in] = ACTIONS(2523), - [sym__newline] = ACTIONS(2521), - [anon_sym_SEMI] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2521), - [anon_sym_err_GT_PIPE] = ACTIONS(2521), - [anon_sym_out_GT_PIPE] = ACTIONS(2521), - [anon_sym_e_GT_PIPE] = ACTIONS(2521), - [anon_sym_o_GT_PIPE] = ACTIONS(2521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2521), - [anon_sym_RPAREN] = ACTIONS(2521), - [anon_sym_GT2] = ACTIONS(2523), - [anon_sym_DASH2] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2521), - [anon_sym_STAR2] = ACTIONS(2523), - [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(2521), - [anon_sym_BANG_EQ2] = ACTIONS(2521), - [anon_sym_LT2] = ACTIONS(2523), - [anon_sym_LT_EQ2] = ACTIONS(2521), - [anon_sym_GT_EQ2] = ACTIONS(2521), - [anon_sym_EQ_TILDE2] = ACTIONS(2521), - [anon_sym_BANG_TILDE2] = ACTIONS(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(2523), - [anon_sym_mod2] = ACTIONS(2523), - [anon_sym_SLASH_SLASH2] = ACTIONS(2523), - [anon_sym_PLUS2] = ACTIONS(2523), - [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(2523), - [anon_sym_out_GT] = ACTIONS(2523), - [anon_sym_e_GT] = ACTIONS(2523), - [anon_sym_o_GT] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT] = ACTIONS(2523), - [anon_sym_err_GT_GT] = ACTIONS(2521), - [anon_sym_out_GT_GT] = ACTIONS(2521), - [anon_sym_e_GT_GT] = ACTIONS(2521), - [anon_sym_o_GT_GT] = ACTIONS(2521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2521), - [anon_sym_POUND] = ACTIONS(103), + [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(527), [sym_comment] = STATE(1097), - [aux_sym_cmd_identifier_token2] = ACTIONS(2630), - [anon_sym_in] = ACTIONS(858), - [sym__newline] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_err_GT_PIPE] = ACTIONS(884), - [anon_sym_out_GT_PIPE] = ACTIONS(884), - [anon_sym_e_GT_PIPE] = ACTIONS(884), - [anon_sym_o_GT_PIPE] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), - [anon_sym_RPAREN] = ACTIONS(884), - [anon_sym_GT2] = ACTIONS(858), - [anon_sym_DASH2] = ACTIONS(858), - [anon_sym_RBRACE] = ACTIONS(884), - [anon_sym_STAR2] = ACTIONS(858), - [anon_sym_and2] = ACTIONS(858), - [anon_sym_xor2] = ACTIONS(858), - [anon_sym_or2] = ACTIONS(858), - [anon_sym_not_DASHin2] = ACTIONS(858), - [anon_sym_has2] = ACTIONS(858), - [anon_sym_not_DASHhas2] = ACTIONS(858), - [anon_sym_starts_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), - [anon_sym_ends_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), - [anon_sym_EQ_EQ2] = ACTIONS(884), - [anon_sym_BANG_EQ2] = ACTIONS(884), - [anon_sym_LT2] = ACTIONS(858), - [anon_sym_LT_EQ2] = ACTIONS(884), - [anon_sym_GT_EQ2] = ACTIONS(884), - [anon_sym_EQ_TILDE2] = ACTIONS(884), - [anon_sym_BANG_TILDE2] = ACTIONS(858), - [anon_sym_like2] = ACTIONS(858), - [anon_sym_not_DASHlike2] = ACTIONS(858), - [anon_sym_STAR_STAR2] = ACTIONS(858), - [anon_sym_PLUS_PLUS2] = ACTIONS(858), - [anon_sym_SLASH2] = ACTIONS(858), - [anon_sym_mod2] = ACTIONS(858), - [anon_sym_SLASH_SLASH2] = ACTIONS(858), - [anon_sym_PLUS2] = ACTIONS(858), - [anon_sym_bit_DASHshl2] = ACTIONS(858), - [anon_sym_bit_DASHshr2] = ACTIONS(858), - [anon_sym_bit_DASHand2] = ACTIONS(858), - [anon_sym_bit_DASHxor2] = ACTIONS(858), - [anon_sym_bit_DASHor2] = ACTIONS(858), - [anon_sym_err_GT] = ACTIONS(858), - [anon_sym_out_GT] = ACTIONS(858), - [anon_sym_e_GT] = ACTIONS(858), - [anon_sym_o_GT] = ACTIONS(858), - [anon_sym_err_PLUSout_GT] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT] = ACTIONS(858), - [anon_sym_o_PLUSe_GT] = ACTIONS(858), - [anon_sym_e_PLUSo_GT] = ACTIONS(858), - [anon_sym_err_GT_GT] = ACTIONS(884), - [anon_sym_out_GT_GT] = ACTIONS(884), - [anon_sym_e_GT_GT] = ACTIONS(884), - [anon_sym_o_GT_GT] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(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(527), [sym_comment] = STATE(1098), - [aux_sym_cmd_identifier_token2] = ACTIONS(2738), - [anon_sym_in] = ACTIONS(858), - [sym__newline] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_err_GT_PIPE] = ACTIONS(884), - [anon_sym_out_GT_PIPE] = ACTIONS(884), - [anon_sym_e_GT_PIPE] = ACTIONS(884), - [anon_sym_o_GT_PIPE] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), - [anon_sym_GT2] = ACTIONS(858), - [anon_sym_DASH2] = ACTIONS(858), - [anon_sym_RBRACE] = ACTIONS(884), - [anon_sym_STAR2] = ACTIONS(858), - [anon_sym_and2] = ACTIONS(858), - [anon_sym_xor2] = ACTIONS(858), - [anon_sym_or2] = ACTIONS(858), - [anon_sym_not_DASHin2] = ACTIONS(858), - [anon_sym_has2] = ACTIONS(858), - [anon_sym_not_DASHhas2] = ACTIONS(858), - [anon_sym_starts_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), - [anon_sym_ends_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), - [anon_sym_EQ_EQ2] = ACTIONS(884), - [anon_sym_BANG_EQ2] = ACTIONS(884), - [anon_sym_LT2] = ACTIONS(858), - [anon_sym_LT_EQ2] = ACTIONS(884), - [anon_sym_GT_EQ2] = ACTIONS(884), - [anon_sym_EQ_TILDE2] = ACTIONS(884), - [anon_sym_BANG_TILDE2] = ACTIONS(858), - [anon_sym_like2] = ACTIONS(858), - [anon_sym_not_DASHlike2] = ACTIONS(858), - [anon_sym_STAR_STAR2] = ACTIONS(858), - [anon_sym_PLUS_PLUS2] = ACTIONS(858), - [anon_sym_SLASH2] = ACTIONS(858), - [anon_sym_mod2] = ACTIONS(858), - [anon_sym_SLASH_SLASH2] = ACTIONS(858), - [anon_sym_PLUS2] = ACTIONS(858), - [anon_sym_bit_DASHshl2] = ACTIONS(858), - [anon_sym_bit_DASHshr2] = ACTIONS(858), - [anon_sym_bit_DASHand2] = ACTIONS(858), - [anon_sym_bit_DASHxor2] = ACTIONS(858), - [anon_sym_bit_DASHor2] = ACTIONS(858), - [anon_sym_COLON2] = ACTIONS(884), - [anon_sym_err_GT] = ACTIONS(858), - [anon_sym_out_GT] = ACTIONS(858), - [anon_sym_e_GT] = ACTIONS(858), - [anon_sym_o_GT] = ACTIONS(858), - [anon_sym_err_PLUSout_GT] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT] = ACTIONS(858), - [anon_sym_o_PLUSe_GT] = ACTIONS(858), - [anon_sym_e_PLUSo_GT] = ACTIONS(858), - [anon_sym_err_GT_GT] = ACTIONS(884), - [anon_sym_out_GT_GT] = ACTIONS(884), - [anon_sym_e_GT_GT] = ACTIONS(884), - [anon_sym_o_GT_GT] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(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(4342), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4441), - [sym__match_pattern_list_body] = STATE(4472), - [sym__match_pattern_list] = STATE(4454), - [sym__match_pattern_rest] = STATE(5031), - [sym__match_pattern_record] = STATE(4455), - [sym_expr_parenthesized] = STATE(3791), - [sym_val_range] = STATE(4441), - [sym__val_range] = STATE(5087), - [sym_val_nothing] = STATE(4455), - [sym_val_bool] = STATE(4146), - [sym_val_variable] = STATE(3792), - [sym_val_number] = STATE(4455), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4455), - [sym_val_filesize] = STATE(4455), - [sym_val_binary] = STATE(4455), - [sym_val_string] = STATE(4455), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_list] = STATE(5056), - [sym__table_head] = STATE(3709), - [sym_val_table] = STATE(4455), - [sym__unquoted_in_list] = STATE(4285), - [sym__unquoted_anonymous_prefix] = STATE(5087), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1099), - [aux_sym__types_body_repeat1] = STATE(1397), - [aux_sym_parameter_repeat2] = STATE(4091), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1420), - [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(2726), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_RBRACK] = ACTIONS(2750), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_DOT_DOT] = ACTIONS(2752), - [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(2736), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1426), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1434), + [anon_sym_in] = ACTIONS(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), - [sym_raw_string_begin] = ACTIONS(1436), }, [STATE(1100)] = { + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1100), - [ts_builtin_sym_end] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1754), - [sym__newline] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_err_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_GT_PIPE] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1754), - [anon_sym_GT2] = ACTIONS(1756), - [anon_sym_DASH2] = ACTIONS(1754), - [anon_sym_STAR2] = ACTIONS(1756), - [anon_sym_and2] = ACTIONS(1754), - [anon_sym_xor2] = ACTIONS(1754), - [anon_sym_or2] = ACTIONS(1754), - [anon_sym_not_DASHin2] = ACTIONS(1754), - [anon_sym_has2] = ACTIONS(1754), - [anon_sym_not_DASHhas2] = ACTIONS(1754), - [anon_sym_starts_DASHwith2] = ACTIONS(1754), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1754), - [anon_sym_ends_DASHwith2] = ACTIONS(1754), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1754), - [anon_sym_EQ_EQ2] = ACTIONS(1754), - [anon_sym_BANG_EQ2] = ACTIONS(1754), - [anon_sym_LT2] = ACTIONS(1756), - [anon_sym_LT_EQ2] = ACTIONS(1754), - [anon_sym_GT_EQ2] = ACTIONS(1754), - [anon_sym_EQ_TILDE2] = ACTIONS(1754), - [anon_sym_BANG_TILDE2] = ACTIONS(1754), - [anon_sym_like2] = ACTIONS(1754), - [anon_sym_not_DASHlike2] = ACTIONS(1754), - [anon_sym_STAR_STAR2] = ACTIONS(1754), - [anon_sym_PLUS_PLUS2] = ACTIONS(1754), - [anon_sym_SLASH2] = ACTIONS(1756), - [anon_sym_mod2] = ACTIONS(1754), - [anon_sym_SLASH_SLASH2] = ACTIONS(1754), - [anon_sym_PLUS2] = ACTIONS(1756), - [anon_sym_bit_DASHshl2] = ACTIONS(1754), - [anon_sym_bit_DASHshr2] = ACTIONS(1754), - [anon_sym_bit_DASHand2] = ACTIONS(1754), - [anon_sym_bit_DASHxor2] = ACTIONS(1754), - [anon_sym_bit_DASHor2] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(2754), - [aux_sym__immediate_decimal_token5] = ACTIONS(1886), - [anon_sym_err_GT] = ACTIONS(1756), - [anon_sym_out_GT] = ACTIONS(1756), - [anon_sym_e_GT] = ACTIONS(1756), - [anon_sym_o_GT] = ACTIONS(1756), - [anon_sym_err_PLUSout_GT] = ACTIONS(1756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1756), - [anon_sym_o_PLUSe_GT] = ACTIONS(1756), - [anon_sym_e_PLUSo_GT] = ACTIONS(1756), - [anon_sym_err_GT_GT] = ACTIONS(1754), - [anon_sym_out_GT_GT] = ACTIONS(1754), - [anon_sym_e_GT_GT] = ACTIONS(1754), - [anon_sym_o_GT_GT] = ACTIONS(1754), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1754), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1754), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1754), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1754), + [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(1125), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1101), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_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(1128), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1102), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_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(967), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1103), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_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(969), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1104), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_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(975), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1105), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_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(978), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1106), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_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(984), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1107), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_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(1357), - [sym__expression_parenthesized] = STATE(4127), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1832), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), + [sym__expr_parenthesized_immediate] = STATE(4884), [sym_comment] = STATE(1108), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(2700), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2638), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [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(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [ts_builtin_sym_end] = ACTIONS(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), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1109)] = { - [aux_sym__repeat_newline] = STATE(986), + [aux_sym__repeat_newline] = STATE(1005), [sym_comment] = STATE(1109), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_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)] = { - [aux_sym__repeat_newline] = STATE(991), + [sym__expr_parenthesized_immediate] = STATE(5171), [sym_comment] = STATE(1110), - [anon_sym_in] = ACTIONS(2756), - [sym__newline] = ACTIONS(2756), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_err_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_GT_PIPE] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_GT2] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_STAR2] = ACTIONS(2758), - [anon_sym_and2] = ACTIONS(2756), - [anon_sym_xor2] = ACTIONS(2756), - [anon_sym_or2] = ACTIONS(2756), - [anon_sym_not_DASHin2] = ACTIONS(2756), - [anon_sym_has2] = ACTIONS(2756), - [anon_sym_not_DASHhas2] = ACTIONS(2756), - [anon_sym_starts_DASHwith2] = ACTIONS(2756), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2756), - [anon_sym_ends_DASHwith2] = ACTIONS(2756), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2756), - [anon_sym_EQ_EQ2] = ACTIONS(2756), - [anon_sym_BANG_EQ2] = ACTIONS(2756), - [anon_sym_LT2] = ACTIONS(2758), - [anon_sym_LT_EQ2] = ACTIONS(2756), - [anon_sym_GT_EQ2] = ACTIONS(2756), - [anon_sym_EQ_TILDE2] = ACTIONS(2756), - [anon_sym_BANG_TILDE2] = ACTIONS(2756), - [anon_sym_like2] = ACTIONS(2756), - [anon_sym_not_DASHlike2] = ACTIONS(2756), - [anon_sym_STAR_STAR2] = ACTIONS(2756), - [anon_sym_PLUS_PLUS2] = ACTIONS(2756), - [anon_sym_SLASH2] = ACTIONS(2758), - [anon_sym_mod2] = ACTIONS(2756), - [anon_sym_SLASH_SLASH2] = ACTIONS(2756), - [anon_sym_PLUS2] = ACTIONS(2758), - [anon_sym_bit_DASHshl2] = ACTIONS(2756), - [anon_sym_bit_DASHshr2] = ACTIONS(2756), - [anon_sym_bit_DASHand2] = ACTIONS(2756), - [anon_sym_bit_DASHxor2] = ACTIONS(2756), - [anon_sym_bit_DASHor2] = ACTIONS(2756), - [anon_sym_err_GT] = ACTIONS(2758), - [anon_sym_out_GT] = ACTIONS(2758), - [anon_sym_e_GT] = ACTIONS(2758), - [anon_sym_o_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT] = ACTIONS(2758), - [anon_sym_err_GT_GT] = ACTIONS(2756), - [anon_sym_out_GT_GT] = ACTIONS(2756), - [anon_sym_e_GT_GT] = ACTIONS(2756), - [anon_sym_o_GT_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), + [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(992), + [aux_sym__repeat_newline] = STATE(1008), [sym_comment] = STATE(1111), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_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_unary] = STATE(2665), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_parenthesized] = STATE(2506), - [sym_val_range] = STATE(2665), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(2665), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(2589), - [sym_val_variable] = STATE(2511), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(2325), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(2566), - [sym__unquoted_with_expr] = STATE(2676), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [sym__expr_parenthesized_immediate] = STATE(5171), [sym_comment] = STATE(1112), - [anon_sym_true] = ACTIONS(2760), - [anon_sym_false] = ACTIONS(2760), - [anon_sym_null] = ACTIONS(2762), - [aux_sym_cmd_identifier_token3] = ACTIONS(2764), - [aux_sym_cmd_identifier_token4] = ACTIONS(2764), - [aux_sym_cmd_identifier_token5] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym_DOLLAR] = ACTIONS(2770), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_DOT_DOT] = ACTIONS(2774), - [aux_sym_expr_unary_token1] = ACTIONS(2776), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2778), - [anon_sym_DOT_DOT_LT] = ACTIONS(2778), - [aux_sym__val_number_decimal_token1] = ACTIONS(2780), - [aux_sym__val_number_decimal_token2] = ACTIONS(2782), - [aux_sym__val_number_decimal_token3] = ACTIONS(2784), - [aux_sym__val_number_decimal_token4] = ACTIONS(2784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2786), - [anon_sym_DQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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), - [sym_raw_string_begin] = ACTIONS(1802), }, [STATE(1113)] = { - [sym_expr_unary] = STATE(2680), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_parenthesized] = STATE(2507), - [sym_val_range] = STATE(2680), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(2680), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(2589), - [sym_val_variable] = STATE(2511), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(2325), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(2571), - [sym__unquoted_with_expr] = STATE(2686), - [sym__unquoted_anonymous_prefix] = STATE(4488), + [aux_sym__repeat_newline] = STATE(1010), [sym_comment] = STATE(1113), - [anon_sym_true] = ACTIONS(2760), - [anon_sym_false] = ACTIONS(2760), - [anon_sym_null] = ACTIONS(2762), - [aux_sym_cmd_identifier_token3] = ACTIONS(2764), - [aux_sym_cmd_identifier_token4] = ACTIONS(2764), - [aux_sym_cmd_identifier_token5] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym_DOLLAR] = ACTIONS(2770), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_DOT_DOT] = ACTIONS(2774), - [aux_sym_expr_unary_token1] = ACTIONS(2776), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2778), - [anon_sym_DOT_DOT_LT] = ACTIONS(2778), - [aux_sym__val_number_decimal_token1] = ACTIONS(2780), - [aux_sym__val_number_decimal_token2] = ACTIONS(2782), - [aux_sym__val_number_decimal_token3] = ACTIONS(2784), - [aux_sym__val_number_decimal_token4] = ACTIONS(2784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2786), - [anon_sym_DQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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), - [sym_raw_string_begin] = ACTIONS(1802), }, [STATE(1114)] = { - [sym_expr_unary] = STATE(2687), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_parenthesized] = STATE(2465), - [sym_val_range] = STATE(2687), - [sym__val_range] = STATE(4488), - [sym__value] = STATE(2687), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(2589), - [sym_val_variable] = STATE(2511), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(2325), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_unquoted] = STATE(2590), - [sym__unquoted_with_expr] = STATE(2690), - [sym__unquoted_anonymous_prefix] = STATE(4488), [sym_comment] = STATE(1114), - [anon_sym_true] = ACTIONS(2760), - [anon_sym_false] = ACTIONS(2760), - [anon_sym_null] = ACTIONS(2762), - [aux_sym_cmd_identifier_token3] = ACTIONS(2764), - [aux_sym_cmd_identifier_token4] = ACTIONS(2764), - [aux_sym_cmd_identifier_token5] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2766), + [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(2770), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_DOT_DOT] = ACTIONS(2774), - [aux_sym_expr_unary_token1] = ACTIONS(2776), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2778), - [anon_sym_DOT_DOT_LT] = ACTIONS(2778), - [aux_sym__val_number_decimal_token1] = ACTIONS(2780), - [aux_sym__val_number_decimal_token2] = ACTIONS(2782), - [aux_sym__val_number_decimal_token3] = ACTIONS(2784), - [aux_sym__val_number_decimal_token4] = ACTIONS(2784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2786), - [anon_sym_DQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1924), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1802), + [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)] = { - [aux_sym__repeat_newline] = STATE(996), + [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_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_true] = ACTIONS(2770), + [anon_sym_false] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2772), + [aux_sym_cmd_identifier_token3] = ACTIONS(2774), + [aux_sym_cmd_identifier_token4] = ACTIONS(2774), + [aux_sym_cmd_identifier_token5] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2776), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym_DOLLAR] = ACTIONS(2780), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_DOT_DOT] = ACTIONS(2784), + [aux_sym_expr_unary_token1] = ACTIONS(2786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2788), + [anon_sym_DOT_DOT_LT] = ACTIONS(2788), + [aux_sym__val_number_decimal_token1] = ACTIONS(2790), + [aux_sym__val_number_decimal_token2] = ACTIONS(2792), + [aux_sym__val_number_decimal_token3] = ACTIONS(2794), + [aux_sym__val_number_decimal_token4] = ACTIONS(2794), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2796), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1116)] = { - [aux_sym__repeat_newline] = STATE(998), + [sym_expr_unary] = STATE(2980), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_parenthesized] = STATE(2588), + [sym_val_range] = STATE(2980), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(2980), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(2665), + [sym_val_variable] = STATE(2605), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(2375), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(2686), + [sym__unquoted_with_expr] = STATE(2988), + [sym__unquoted_anonymous_prefix] = STATE(4744), [sym_comment] = STATE(1116), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_true] = ACTIONS(2770), + [anon_sym_false] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2772), + [aux_sym_cmd_identifier_token3] = ACTIONS(2774), + [aux_sym_cmd_identifier_token4] = ACTIONS(2774), + [aux_sym_cmd_identifier_token5] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2776), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym_DOLLAR] = ACTIONS(2780), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_DOT_DOT] = ACTIONS(2784), + [aux_sym_expr_unary_token1] = ACTIONS(2786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2788), + [anon_sym_DOT_DOT_LT] = ACTIONS(2788), + [aux_sym__val_number_decimal_token1] = ACTIONS(2790), + [aux_sym__val_number_decimal_token2] = ACTIONS(2792), + [aux_sym__val_number_decimal_token3] = ACTIONS(2794), + [aux_sym__val_number_decimal_token4] = ACTIONS(2794), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2796), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1117)] = { - [aux_sym__repeat_newline] = STATE(1000), + [sym_expr_unary] = STATE(2955), + [sym__expr_unary_minus] = STATE(1290), + [sym_expr_parenthesized] = STATE(2581), + [sym_val_range] = STATE(2955), + [sym__val_range] = STATE(4744), + [sym__value] = STATE(2955), + [sym_val_nothing] = STATE(1295), + [sym_val_bool] = STATE(2665), + [sym_val_variable] = STATE(2605), + [sym_val_cellpath] = STATE(1295), + [sym_val_number] = STATE(1295), + [sym__val_number_decimal] = STATE(2375), + [sym__val_number] = STATE(1304), + [sym_val_duration] = STATE(1295), + [sym_val_filesize] = STATE(1295), + [sym_val_binary] = STATE(1295), + [sym_val_string] = STATE(1295), + [sym__raw_str] = STATE(502), + [sym__str_double_quotes] = STATE(502), + [sym__str_single_quotes] = STATE(502), + [sym__str_back_ticks] = STATE(502), + [sym_val_interpolated] = STATE(1295), + [sym__inter_single_quotes] = STATE(1306), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1295), + [sym_val_record] = STATE(1295), + [sym_val_table] = STATE(1295), + [sym_val_closure] = STATE(1295), + [sym_unquoted] = STATE(2649), + [sym__unquoted_with_expr] = STATE(2907), + [sym__unquoted_anonymous_prefix] = STATE(4744), [sym_comment] = STATE(1117), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_true] = ACTIONS(2770), + [anon_sym_false] = ACTIONS(2770), + [anon_sym_null] = ACTIONS(2772), + [aux_sym_cmd_identifier_token3] = ACTIONS(2774), + [aux_sym_cmd_identifier_token4] = ACTIONS(2774), + [aux_sym_cmd_identifier_token5] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2776), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym_DOLLAR] = ACTIONS(2780), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_DOT_DOT] = ACTIONS(2784), + [aux_sym_expr_unary_token1] = ACTIONS(2786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2788), + [anon_sym_DOT_DOT_LT] = ACTIONS(2788), + [aux_sym__val_number_decimal_token1] = ACTIONS(2790), + [aux_sym__val_number_decimal_token2] = ACTIONS(2792), + [aux_sym__val_number_decimal_token3] = ACTIONS(2794), + [aux_sym__val_number_decimal_token4] = ACTIONS(2794), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2796), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1118)] = { - [aux_sym__repeat_newline] = STATE(1002), + [aux_sym__repeat_newline] = STATE(1012), [sym_comment] = STATE(1118), - [anon_sym_in] = ACTIONS(2419), - [sym__newline] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2419), - [anon_sym_err_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_GT_PIPE] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_GT2] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_STAR2] = ACTIONS(2421), - [anon_sym_and2] = ACTIONS(2419), - [anon_sym_xor2] = ACTIONS(2419), - [anon_sym_or2] = ACTIONS(2419), - [anon_sym_not_DASHin2] = ACTIONS(2419), - [anon_sym_has2] = ACTIONS(2419), - [anon_sym_not_DASHhas2] = ACTIONS(2419), - [anon_sym_starts_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2419), - [anon_sym_ends_DASHwith2] = ACTIONS(2419), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2419), - [anon_sym_EQ_EQ2] = ACTIONS(2419), - [anon_sym_BANG_EQ2] = ACTIONS(2419), - [anon_sym_LT2] = ACTIONS(2421), - [anon_sym_LT_EQ2] = ACTIONS(2419), - [anon_sym_GT_EQ2] = ACTIONS(2419), - [anon_sym_EQ_TILDE2] = ACTIONS(2419), - [anon_sym_BANG_TILDE2] = ACTIONS(2419), - [anon_sym_like2] = ACTIONS(2419), - [anon_sym_not_DASHlike2] = ACTIONS(2419), - [anon_sym_STAR_STAR2] = ACTIONS(2419), - [anon_sym_PLUS_PLUS2] = ACTIONS(2419), - [anon_sym_SLASH2] = ACTIONS(2421), - [anon_sym_mod2] = ACTIONS(2419), - [anon_sym_SLASH_SLASH2] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_bit_DASHshl2] = ACTIONS(2419), - [anon_sym_bit_DASHshr2] = ACTIONS(2419), - [anon_sym_bit_DASHand2] = ACTIONS(2419), - [anon_sym_bit_DASHxor2] = ACTIONS(2419), - [anon_sym_bit_DASHor2] = ACTIONS(2419), - [anon_sym_err_GT] = ACTIONS(2421), - [anon_sym_out_GT] = ACTIONS(2421), - [anon_sym_e_GT] = ACTIONS(2421), - [anon_sym_o_GT] = ACTIONS(2421), - [anon_sym_err_PLUSout_GT] = ACTIONS(2421), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2421), - [anon_sym_o_PLUSe_GT] = ACTIONS(2421), - [anon_sym_e_PLUSo_GT] = ACTIONS(2421), - [anon_sym_err_GT_GT] = ACTIONS(2419), - [anon_sym_out_GT_GT] = ACTIONS(2419), - [anon_sym_e_GT_GT] = ACTIONS(2419), - [anon_sym_o_GT_GT] = ACTIONS(2419), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2419), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2419), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2419), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2419), + [anon_sym_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_comment] = STATE(1119), - [anon_sym_export] = ACTIONS(2788), - [anon_sym_alias] = ACTIONS(2790), - [anon_sym_let] = ACTIONS(2790), - [anon_sym_mut] = ACTIONS(2790), - [anon_sym_const] = ACTIONS(2790), - [aux_sym_cmd_identifier_token1] = ACTIONS(2788), - [anon_sym_def] = ACTIONS(2790), - [anon_sym_use] = ACTIONS(2790), - [anon_sym_export_DASHenv] = ACTIONS(2790), - [anon_sym_extern] = ACTIONS(2790), - [anon_sym_module] = ACTIONS(2790), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_loop] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_else] = ACTIONS(2790), - [anon_sym_try] = ACTIONS(2790), - [anon_sym_catch] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_in] = ACTIONS(2788), - [anon_sym_true] = ACTIONS(2790), - [anon_sym_false] = ACTIONS(2790), - [anon_sym_null] = ACTIONS(2790), - [aux_sym_cmd_identifier_token3] = ACTIONS(2790), - [aux_sym_cmd_identifier_token4] = ACTIONS(2790), - [aux_sym_cmd_identifier_token5] = ACTIONS(2790), - [sym__newline] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_err_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_GT_PIPE] = ACTIONS(2790), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_DOLLAR] = ACTIONS(2788), - [anon_sym_DASH2] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_DOT_DOT] = ACTIONS(2788), - [anon_sym_where] = ACTIONS(2790), - [aux_sym_expr_unary_token1] = ACTIONS(2790), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2790), - [anon_sym_DOT_DOT_LT] = ACTIONS(2790), - [aux_sym__val_number_decimal_token1] = ACTIONS(2788), - [aux_sym__val_number_decimal_token2] = ACTIONS(2790), - [aux_sym__val_number_decimal_token3] = ACTIONS(2790), - [aux_sym__val_number_decimal_token4] = ACTIONS(2790), - [aux_sym__val_number_token1] = ACTIONS(2790), - [aux_sym__val_number_token2] = ACTIONS(2790), - [aux_sym__val_number_token3] = ACTIONS(2790), - [anon_sym_0b] = ACTIONS(2788), - [anon_sym_0o] = ACTIONS(2788), - [anon_sym_0x] = ACTIONS(2788), - [sym_val_date] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(2790), - [anon_sym_SQUOTE] = ACTIONS(2790), - [anon_sym_BQUOTE] = ACTIONS(2790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2790), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2790), - [anon_sym_CARET] = ACTIONS(2790), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2790), + [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)] = { - [sym__expr_parenthesized_immediate] = STATE(5092), [sym_comment] = STATE(1120), - [ts_builtin_sym_end] = ACTIONS(2180), - [anon_sym_in] = ACTIONS(2180), - [sym__newline] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_PIPE] = ACTIONS(2180), - [anon_sym_err_GT_PIPE] = ACTIONS(2180), - [anon_sym_out_GT_PIPE] = ACTIONS(2180), - [anon_sym_e_GT_PIPE] = ACTIONS(2180), - [anon_sym_o_GT_PIPE] = ACTIONS(2180), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2180), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2180), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2180), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2180), - [anon_sym_GT2] = ACTIONS(2182), - [anon_sym_DASH2] = ACTIONS(2180), - [anon_sym_STAR2] = ACTIONS(2182), - [anon_sym_and2] = ACTIONS(2180), - [anon_sym_xor2] = ACTIONS(2180), - [anon_sym_or2] = ACTIONS(2180), - [anon_sym_not_DASHin2] = ACTIONS(2180), - [anon_sym_has2] = ACTIONS(2180), - [anon_sym_not_DASHhas2] = ACTIONS(2180), - [anon_sym_starts_DASHwith2] = ACTIONS(2180), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2180), - [anon_sym_ends_DASHwith2] = ACTIONS(2180), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2180), - [anon_sym_EQ_EQ2] = ACTIONS(2180), - [anon_sym_BANG_EQ2] = ACTIONS(2180), - [anon_sym_LT2] = ACTIONS(2182), - [anon_sym_LT_EQ2] = ACTIONS(2180), - [anon_sym_GT_EQ2] = ACTIONS(2180), - [anon_sym_EQ_TILDE2] = ACTIONS(2180), - [anon_sym_BANG_TILDE2] = ACTIONS(2180), - [anon_sym_like2] = ACTIONS(2180), - [anon_sym_not_DASHlike2] = ACTIONS(2180), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2180), - [anon_sym_PLUS_PLUS2] = ACTIONS(2180), - [anon_sym_SLASH2] = ACTIONS(2182), - [anon_sym_mod2] = ACTIONS(2180), - [anon_sym_SLASH_SLASH2] = ACTIONS(2180), - [anon_sym_PLUS2] = ACTIONS(2182), - [anon_sym_bit_DASHshl2] = ACTIONS(2180), - [anon_sym_bit_DASHshr2] = ACTIONS(2180), - [anon_sym_bit_DASHand2] = ACTIONS(2180), - [anon_sym_bit_DASHxor2] = ACTIONS(2180), - [anon_sym_bit_DASHor2] = ACTIONS(2180), - [anon_sym_err_GT] = ACTIONS(2182), - [anon_sym_out_GT] = ACTIONS(2182), - [anon_sym_e_GT] = ACTIONS(2182), - [anon_sym_o_GT] = ACTIONS(2182), - [anon_sym_err_PLUSout_GT] = ACTIONS(2182), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2182), - [anon_sym_o_PLUSe_GT] = ACTIONS(2182), - [anon_sym_e_PLUSo_GT] = ACTIONS(2182), - [anon_sym_err_GT_GT] = ACTIONS(2180), - [anon_sym_out_GT_GT] = ACTIONS(2180), - [anon_sym_e_GT_GT] = ACTIONS(2180), - [anon_sym_o_GT_GT] = ACTIONS(2180), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2180), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2180), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2180), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2180), - [anon_sym_POUND] = ACTIONS(3), + [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(5092), [sym_comment] = STATE(1121), - [ts_builtin_sym_end] = ACTIONS(2132), - [anon_sym_in] = ACTIONS(2132), - [sym__newline] = ACTIONS(2132), - [anon_sym_SEMI] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2132), - [anon_sym_err_GT_PIPE] = ACTIONS(2132), - [anon_sym_out_GT_PIPE] = ACTIONS(2132), - [anon_sym_e_GT_PIPE] = ACTIONS(2132), - [anon_sym_o_GT_PIPE] = ACTIONS(2132), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2132), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2132), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2132), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2132), - [anon_sym_GT2] = ACTIONS(2134), - [anon_sym_DASH2] = ACTIONS(2132), - [anon_sym_STAR2] = ACTIONS(2134), - [anon_sym_and2] = ACTIONS(2132), - [anon_sym_xor2] = ACTIONS(2132), - [anon_sym_or2] = ACTIONS(2132), - [anon_sym_not_DASHin2] = ACTIONS(2132), - [anon_sym_has2] = ACTIONS(2132), - [anon_sym_not_DASHhas2] = ACTIONS(2132), - [anon_sym_starts_DASHwith2] = ACTIONS(2132), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2132), - [anon_sym_ends_DASHwith2] = ACTIONS(2132), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2132), - [anon_sym_EQ_EQ2] = ACTIONS(2132), - [anon_sym_BANG_EQ2] = ACTIONS(2132), - [anon_sym_LT2] = ACTIONS(2134), - [anon_sym_LT_EQ2] = ACTIONS(2132), - [anon_sym_GT_EQ2] = ACTIONS(2132), - [anon_sym_EQ_TILDE2] = ACTIONS(2132), - [anon_sym_BANG_TILDE2] = ACTIONS(2132), - [anon_sym_like2] = ACTIONS(2132), - [anon_sym_not_DASHlike2] = ACTIONS(2132), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2132), - [anon_sym_PLUS_PLUS2] = ACTIONS(2132), - [anon_sym_SLASH2] = ACTIONS(2134), - [anon_sym_mod2] = ACTIONS(2132), - [anon_sym_SLASH_SLASH2] = ACTIONS(2132), - [anon_sym_PLUS2] = ACTIONS(2134), - [anon_sym_bit_DASHshl2] = ACTIONS(2132), - [anon_sym_bit_DASHshr2] = ACTIONS(2132), - [anon_sym_bit_DASHand2] = ACTIONS(2132), - [anon_sym_bit_DASHxor2] = ACTIONS(2132), - [anon_sym_bit_DASHor2] = ACTIONS(2132), - [anon_sym_err_GT] = ACTIONS(2134), - [anon_sym_out_GT] = ACTIONS(2134), - [anon_sym_e_GT] = ACTIONS(2134), - [anon_sym_o_GT] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT] = ACTIONS(2134), - [anon_sym_err_GT_GT] = ACTIONS(2132), - [anon_sym_out_GT_GT] = ACTIONS(2132), - [anon_sym_e_GT_GT] = ACTIONS(2132), - [anon_sym_o_GT_GT] = ACTIONS(2132), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2132), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2132), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2132), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2132), - [anon_sym_POUND] = ACTIONS(3), + [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)] = { - [sym__expr_parenthesized_immediate] = STATE(5092), + [aux_sym__repeat_newline] = STATE(1014), [sym_comment] = STATE(1122), - [ts_builtin_sym_end] = ACTIONS(2136), - [anon_sym_in] = ACTIONS(2136), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2136), - [anon_sym_xor2] = ACTIONS(2136), - [anon_sym_or2] = ACTIONS(2136), - [anon_sym_not_DASHin2] = ACTIONS(2136), - [anon_sym_has2] = ACTIONS(2136), - [anon_sym_not_DASHhas2] = ACTIONS(2136), - [anon_sym_starts_DASHwith2] = ACTIONS(2136), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2136), - [anon_sym_ends_DASHwith2] = ACTIONS(2136), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2136), - [anon_sym_EQ_EQ2] = ACTIONS(2136), - [anon_sym_BANG_EQ2] = ACTIONS(2136), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2136), - [anon_sym_GT_EQ2] = ACTIONS(2136), - [anon_sym_EQ_TILDE2] = ACTIONS(2136), - [anon_sym_BANG_TILDE2] = ACTIONS(2136), - [anon_sym_like2] = ACTIONS(2136), - [anon_sym_not_DASHlike2] = ACTIONS(2136), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2136), - [anon_sym_PLUS_PLUS2] = ACTIONS(2136), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2136), - [anon_sym_SLASH_SLASH2] = ACTIONS(2136), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2136), - [anon_sym_bit_DASHshr2] = ACTIONS(2136), - [anon_sym_bit_DASHand2] = ACTIONS(2136), - [anon_sym_bit_DASHxor2] = ACTIONS(2136), - [anon_sym_bit_DASHor2] = ACTIONS(2136), - [anon_sym_err_GT] = ACTIONS(2138), - [anon_sym_out_GT] = ACTIONS(2138), - [anon_sym_e_GT] = ACTIONS(2138), - [anon_sym_o_GT] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT] = ACTIONS(2138), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [anon_sym_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(5092), [sym_comment] = STATE(1123), - [ts_builtin_sym_end] = ACTIONS(2176), - [anon_sym_in] = ACTIONS(2176), - [sym__newline] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_PIPE] = ACTIONS(2176), - [anon_sym_err_GT_PIPE] = ACTIONS(2176), - [anon_sym_out_GT_PIPE] = ACTIONS(2176), - [anon_sym_e_GT_PIPE] = ACTIONS(2176), - [anon_sym_o_GT_PIPE] = ACTIONS(2176), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2176), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2176), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2176), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2176), - [anon_sym_GT2] = ACTIONS(2178), - [anon_sym_DASH2] = ACTIONS(2176), - [anon_sym_STAR2] = ACTIONS(2178), - [anon_sym_and2] = ACTIONS(2176), - [anon_sym_xor2] = ACTIONS(2176), - [anon_sym_or2] = ACTIONS(2176), - [anon_sym_not_DASHin2] = ACTIONS(2176), - [anon_sym_has2] = ACTIONS(2176), - [anon_sym_not_DASHhas2] = ACTIONS(2176), - [anon_sym_starts_DASHwith2] = ACTIONS(2176), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2176), - [anon_sym_ends_DASHwith2] = ACTIONS(2176), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2176), - [anon_sym_EQ_EQ2] = ACTIONS(2176), - [anon_sym_BANG_EQ2] = ACTIONS(2176), - [anon_sym_LT2] = ACTIONS(2178), - [anon_sym_LT_EQ2] = ACTIONS(2176), - [anon_sym_GT_EQ2] = ACTIONS(2176), - [anon_sym_EQ_TILDE2] = ACTIONS(2176), - [anon_sym_BANG_TILDE2] = ACTIONS(2176), - [anon_sym_like2] = ACTIONS(2176), - [anon_sym_not_DASHlike2] = ACTIONS(2176), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_STAR_STAR2] = ACTIONS(2176), - [anon_sym_PLUS_PLUS2] = ACTIONS(2176), - [anon_sym_SLASH2] = ACTIONS(2178), - [anon_sym_mod2] = ACTIONS(2176), - [anon_sym_SLASH_SLASH2] = ACTIONS(2176), - [anon_sym_PLUS2] = ACTIONS(2178), - [anon_sym_bit_DASHshl2] = ACTIONS(2176), - [anon_sym_bit_DASHshr2] = ACTIONS(2176), - [anon_sym_bit_DASHand2] = ACTIONS(2176), - [anon_sym_bit_DASHxor2] = ACTIONS(2176), - [anon_sym_bit_DASHor2] = ACTIONS(2176), - [anon_sym_err_GT] = ACTIONS(2178), - [anon_sym_out_GT] = ACTIONS(2178), - [anon_sym_e_GT] = ACTIONS(2178), - [anon_sym_o_GT] = ACTIONS(2178), - [anon_sym_err_PLUSout_GT] = ACTIONS(2178), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2178), - [anon_sym_o_PLUSe_GT] = ACTIONS(2178), - [anon_sym_e_PLUSo_GT] = ACTIONS(2178), - [anon_sym_err_GT_GT] = ACTIONS(2176), - [anon_sym_out_GT_GT] = ACTIONS(2176), - [anon_sym_e_GT_GT] = ACTIONS(2176), - [anon_sym_o_GT_GT] = ACTIONS(2176), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2176), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2176), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2176), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2176), - [anon_sym_POUND] = ACTIONS(3), + [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)] = { - [aux_sym__repeat_newline] = STATE(1033), [sym_comment] = STATE(1124), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), - [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(507), + [sym__expr_parenthesized_immediate] = STATE(4884), [sym_comment] = STATE(1125), - [anon_sym_in] = ACTIONS(2656), - [sym__newline] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2656), - [anon_sym_PIPE] = ACTIONS(2656), - [anon_sym_err_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_GT_PIPE] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), - [anon_sym_RPAREN] = ACTIONS(2656), - [anon_sym_GT2] = ACTIONS(2658), - [anon_sym_DASH2] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2658), - [anon_sym_and2] = ACTIONS(2656), - [anon_sym_xor2] = ACTIONS(2656), - [anon_sym_or2] = ACTIONS(2656), - [anon_sym_not_DASHin2] = ACTIONS(2656), - [anon_sym_has2] = ACTIONS(2656), - [anon_sym_not_DASHhas2] = ACTIONS(2656), - [anon_sym_starts_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), - [anon_sym_ends_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), - [anon_sym_EQ_EQ2] = ACTIONS(2656), - [anon_sym_BANG_EQ2] = ACTIONS(2656), - [anon_sym_LT2] = ACTIONS(2658), - [anon_sym_LT_EQ2] = ACTIONS(2656), - [anon_sym_GT_EQ2] = ACTIONS(2656), - [anon_sym_EQ_TILDE2] = ACTIONS(2656), - [anon_sym_BANG_TILDE2] = ACTIONS(2656), - [anon_sym_like2] = ACTIONS(2656), - [anon_sym_not_DASHlike2] = ACTIONS(2656), - [anon_sym_STAR_STAR2] = ACTIONS(2656), - [anon_sym_PLUS_PLUS2] = ACTIONS(2656), - [anon_sym_SLASH2] = ACTIONS(2658), - [anon_sym_mod2] = ACTIONS(2656), - [anon_sym_SLASH_SLASH2] = ACTIONS(2656), - [anon_sym_PLUS2] = ACTIONS(2658), - [anon_sym_bit_DASHshl2] = ACTIONS(2656), - [anon_sym_bit_DASHshr2] = ACTIONS(2656), - [anon_sym_bit_DASHand2] = ACTIONS(2656), - [anon_sym_bit_DASHxor2] = ACTIONS(2656), - [anon_sym_bit_DASHor2] = ACTIONS(2656), - [anon_sym_err_GT] = ACTIONS(2658), - [anon_sym_out_GT] = ACTIONS(2658), - [anon_sym_e_GT] = ACTIONS(2658), - [anon_sym_o_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT] = ACTIONS(2658), - [anon_sym_err_GT_GT] = ACTIONS(2656), - [anon_sym_out_GT_GT] = ACTIONS(2656), - [anon_sym_e_GT_GT] = ACTIONS(2656), - [anon_sym_o_GT_GT] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [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)] = { - [aux_sym__repeat_newline] = STATE(4342), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4441), - [sym__match_pattern_list_body] = STATE(4658), - [sym__match_pattern_list] = STATE(4454), - [sym__match_pattern_rest] = STATE(5063), - [sym__match_pattern_record] = STATE(4455), - [sym_expr_parenthesized] = STATE(3791), - [sym_val_range] = STATE(4441), - [sym__val_range] = STATE(5087), - [sym_val_nothing] = STATE(4455), - [sym_val_bool] = STATE(4146), - [sym_val_variable] = STATE(3792), - [sym_val_number] = STATE(4455), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(4099), - [sym_val_duration] = STATE(4455), - [sym_val_filesize] = STATE(4455), - [sym_val_binary] = STATE(4455), - [sym_val_string] = STATE(4455), - [sym__raw_str] = STATE(3594), - [sym__str_double_quotes] = STATE(3594), - [sym__str_single_quotes] = STATE(3594), - [sym__str_back_ticks] = STATE(3594), - [sym_val_list] = STATE(5056), - [sym__table_head] = STATE(3761), - [sym_val_table] = STATE(4455), - [sym__unquoted_in_list] = STATE(4285), - [sym__unquoted_anonymous_prefix] = STATE(5087), + [sym__expr_parenthesized_immediate] = STATE(4884), [sym_comment] = STATE(1126), - [aux_sym__types_body_repeat1] = STATE(1397), - [aux_sym_parameter_repeat2] = STATE(4091), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1420), + [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_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(2726), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_RBRACK] = ACTIONS(2730), + [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(2732), - [anon_sym_LBRACE] = ACTIONS(2734), + [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), @@ -130361,7 +131280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0b] = ACTIONS(1416), [anon_sym_0o] = ACTIONS(1418), [anon_sym_0x] = ACTIONS(1418), - [sym_val_date] = ACTIONS(2736), + [sym_val_date] = ACTIONS(2680), [anon_sym_DQUOTE] = ACTIONS(1422), [anon_sym_SQUOTE] = ACTIONS(1424), [anon_sym_BQUOTE] = ACTIONS(1426), @@ -130369,195 +131288,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1436), }, - [STATE(1127)] = { - [aux_sym__repeat_newline] = STATE(1034), - [sym_comment] = STATE(1127), - [anon_sym_in] = ACTIONS(2411), - [sym__newline] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_PIPE] = ACTIONS(2411), - [anon_sym_err_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_GT_PIPE] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2411), - [anon_sym_RPAREN] = ACTIONS(2411), - [anon_sym_GT2] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_STAR2] = ACTIONS(2413), - [anon_sym_and2] = ACTIONS(2411), - [anon_sym_xor2] = ACTIONS(2411), - [anon_sym_or2] = ACTIONS(2411), - [anon_sym_not_DASHin2] = ACTIONS(2411), - [anon_sym_has2] = ACTIONS(2411), - [anon_sym_not_DASHhas2] = ACTIONS(2411), - [anon_sym_starts_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2411), - [anon_sym_ends_DASHwith2] = ACTIONS(2411), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2411), - [anon_sym_EQ_EQ2] = ACTIONS(2411), - [anon_sym_BANG_EQ2] = ACTIONS(2411), - [anon_sym_LT2] = ACTIONS(2413), - [anon_sym_LT_EQ2] = ACTIONS(2411), - [anon_sym_GT_EQ2] = ACTIONS(2411), - [anon_sym_EQ_TILDE2] = ACTIONS(2411), - [anon_sym_BANG_TILDE2] = ACTIONS(2411), - [anon_sym_like2] = ACTIONS(2411), - [anon_sym_not_DASHlike2] = ACTIONS(2411), - [anon_sym_STAR_STAR2] = ACTIONS(2411), - [anon_sym_PLUS_PLUS2] = ACTIONS(2411), - [anon_sym_SLASH2] = ACTIONS(2413), - [anon_sym_mod2] = ACTIONS(2411), - [anon_sym_SLASH_SLASH2] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_bit_DASHshl2] = ACTIONS(2411), - [anon_sym_bit_DASHshr2] = ACTIONS(2411), - [anon_sym_bit_DASHand2] = ACTIONS(2411), - [anon_sym_bit_DASHxor2] = ACTIONS(2411), - [anon_sym_bit_DASHor2] = ACTIONS(2411), - [anon_sym_err_GT] = ACTIONS(2413), - [anon_sym_out_GT] = ACTIONS(2413), - [anon_sym_e_GT] = ACTIONS(2413), - [anon_sym_o_GT] = ACTIONS(2413), - [anon_sym_err_PLUSout_GT] = ACTIONS(2413), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2413), - [anon_sym_o_PLUSe_GT] = ACTIONS(2413), - [anon_sym_e_PLUSo_GT] = ACTIONS(2413), - [anon_sym_err_GT_GT] = ACTIONS(2411), - [anon_sym_out_GT_GT] = ACTIONS(2411), - [anon_sym_e_GT_GT] = ACTIONS(2411), - [anon_sym_o_GT_GT] = ACTIONS(2411), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2411), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2411), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2411), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2411), + [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(1128)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1128), - [anon_sym_in] = ACTIONS(2656), - [sym__newline] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2656), - [anon_sym_PIPE] = ACTIONS(2656), - [anon_sym_err_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_GT_PIPE] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), - [anon_sym_RPAREN] = ACTIONS(2656), - [anon_sym_GT2] = ACTIONS(2658), - [anon_sym_DASH2] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2656), - [anon_sym_STAR2] = ACTIONS(2658), - [anon_sym_and2] = ACTIONS(2656), - [anon_sym_xor2] = ACTIONS(2656), - [anon_sym_or2] = ACTIONS(2656), - [anon_sym_not_DASHin2] = ACTIONS(2656), - [anon_sym_has2] = ACTIONS(2656), - [anon_sym_not_DASHhas2] = ACTIONS(2656), - [anon_sym_starts_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), - [anon_sym_ends_DASHwith2] = ACTIONS(2656), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), - [anon_sym_EQ_EQ2] = ACTIONS(2656), - [anon_sym_BANG_EQ2] = ACTIONS(2656), - [anon_sym_LT2] = ACTIONS(2658), - [anon_sym_LT_EQ2] = ACTIONS(2656), - [anon_sym_GT_EQ2] = ACTIONS(2656), - [anon_sym_EQ_TILDE2] = ACTIONS(2656), - [anon_sym_BANG_TILDE2] = ACTIONS(2656), - [anon_sym_like2] = ACTIONS(2656), - [anon_sym_not_DASHlike2] = ACTIONS(2656), - [anon_sym_STAR_STAR2] = ACTIONS(2656), - [anon_sym_PLUS_PLUS2] = ACTIONS(2656), - [anon_sym_SLASH2] = ACTIONS(2658), - [anon_sym_mod2] = ACTIONS(2656), - [anon_sym_SLASH_SLASH2] = ACTIONS(2656), - [anon_sym_PLUS2] = ACTIONS(2658), - [anon_sym_bit_DASHshl2] = ACTIONS(2656), - [anon_sym_bit_DASHshr2] = ACTIONS(2656), - [anon_sym_bit_DASHand2] = ACTIONS(2656), - [anon_sym_bit_DASHxor2] = ACTIONS(2656), - [anon_sym_bit_DASHor2] = ACTIONS(2656), - [anon_sym_err_GT] = ACTIONS(2658), - [anon_sym_out_GT] = ACTIONS(2658), - [anon_sym_e_GT] = ACTIONS(2658), - [anon_sym_o_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT] = ACTIONS(2658), - [anon_sym_err_GT_GT] = ACTIONS(2656), - [anon_sym_out_GT_GT] = ACTIONS(2656), - [anon_sym_e_GT_GT] = ACTIONS(2656), - [anon_sym_o_GT_GT] = ACTIONS(2656), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [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(1129)] = { - [aux_sym__repeat_newline] = STATE(1357), - [sym__expression_parenthesized] = STATE(4400), - [sym_expr_unary] = STATE(1240), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary_parenthesized] = STATE(1240), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(893), - [sym_val_range] = STATE(1240), - [sym__value] = STATE(1240), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1832), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_comment] = STATE(1129), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(2700), + [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(2638), + [sym__newline] = ACTIONS(2563), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), + [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(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2048), - [aux_sym__val_number_decimal_token3] = ACTIONS(2050), - [aux_sym__val_number_decimal_token4] = ACTIONS(2050), + [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), @@ -130573,200 +131492,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1130)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1130), - [anon_sym_in] = ACTIONS(2714), - [sym__newline] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_err_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_GT_PIPE] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_GT2] = ACTIONS(2716), - [anon_sym_DASH2] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_STAR2] = ACTIONS(2716), - [anon_sym_and2] = ACTIONS(2714), - [anon_sym_xor2] = ACTIONS(2714), - [anon_sym_or2] = ACTIONS(2714), - [anon_sym_not_DASHin2] = ACTIONS(2714), - [anon_sym_has2] = ACTIONS(2714), - [anon_sym_not_DASHhas2] = ACTIONS(2714), - [anon_sym_starts_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), - [anon_sym_ends_DASHwith2] = ACTIONS(2714), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), - [anon_sym_EQ_EQ2] = ACTIONS(2714), - [anon_sym_BANG_EQ2] = ACTIONS(2714), - [anon_sym_LT2] = ACTIONS(2716), - [anon_sym_LT_EQ2] = ACTIONS(2714), - [anon_sym_GT_EQ2] = ACTIONS(2714), - [anon_sym_EQ_TILDE2] = ACTIONS(2714), - [anon_sym_BANG_TILDE2] = ACTIONS(2714), - [anon_sym_like2] = ACTIONS(2714), - [anon_sym_not_DASHlike2] = ACTIONS(2714), - [anon_sym_STAR_STAR2] = ACTIONS(2714), - [anon_sym_PLUS_PLUS2] = ACTIONS(2714), - [anon_sym_SLASH2] = ACTIONS(2716), - [anon_sym_mod2] = ACTIONS(2714), - [anon_sym_SLASH_SLASH2] = ACTIONS(2714), - [anon_sym_PLUS2] = ACTIONS(2716), - [anon_sym_bit_DASHshl2] = ACTIONS(2714), - [anon_sym_bit_DASHshr2] = ACTIONS(2714), - [anon_sym_bit_DASHand2] = ACTIONS(2714), - [anon_sym_bit_DASHxor2] = ACTIONS(2714), - [anon_sym_bit_DASHor2] = ACTIONS(2714), - [anon_sym_err_GT] = ACTIONS(2716), - [anon_sym_out_GT] = ACTIONS(2716), - [anon_sym_e_GT] = ACTIONS(2716), - [anon_sym_o_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT] = ACTIONS(2716), - [anon_sym_err_GT_GT] = ACTIONS(2714), - [anon_sym_out_GT_GT] = ACTIONS(2714), - [anon_sym_e_GT_GT] = ACTIONS(2714), - [anon_sym_o_GT_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [STATE(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(1131)] = { - [sym_comment] = STATE(1131), - [anon_sym_in] = ACTIONS(2415), - [sym__newline] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(2415), - [anon_sym_PIPE] = ACTIONS(2415), - [anon_sym_err_GT_PIPE] = ACTIONS(2415), - [anon_sym_out_GT_PIPE] = ACTIONS(2415), - [anon_sym_e_GT_PIPE] = ACTIONS(2415), - [anon_sym_o_GT_PIPE] = ACTIONS(2415), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2415), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2415), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2415), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2415), - [anon_sym_RPAREN] = ACTIONS(2415), - [anon_sym_GT2] = ACTIONS(2417), - [anon_sym_DASH2] = ACTIONS(2415), - [anon_sym_LBRACE] = ACTIONS(2415), - [anon_sym_STAR2] = ACTIONS(2417), - [anon_sym_and2] = ACTIONS(2415), - [anon_sym_xor2] = ACTIONS(2415), - [anon_sym_or2] = ACTIONS(2415), - [anon_sym_not_DASHin2] = ACTIONS(2415), - [anon_sym_has2] = ACTIONS(2415), - [anon_sym_not_DASHhas2] = ACTIONS(2415), - [anon_sym_starts_DASHwith2] = ACTIONS(2415), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2415), - [anon_sym_ends_DASHwith2] = ACTIONS(2415), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2415), - [anon_sym_EQ_EQ2] = ACTIONS(2415), - [anon_sym_BANG_EQ2] = ACTIONS(2415), - [anon_sym_LT2] = ACTIONS(2417), - [anon_sym_LT_EQ2] = ACTIONS(2415), - [anon_sym_GT_EQ2] = ACTIONS(2415), - [anon_sym_EQ_TILDE2] = ACTIONS(2415), - [anon_sym_BANG_TILDE2] = ACTIONS(2415), - [anon_sym_like2] = ACTIONS(2415), - [anon_sym_not_DASHlike2] = ACTIONS(2415), - [anon_sym_STAR_STAR2] = ACTIONS(2415), - [anon_sym_PLUS_PLUS2] = ACTIONS(2415), - [anon_sym_SLASH2] = ACTIONS(2417), - [anon_sym_mod2] = ACTIONS(2415), - [anon_sym_SLASH_SLASH2] = ACTIONS(2415), - [anon_sym_PLUS2] = ACTIONS(2417), - [anon_sym_bit_DASHshl2] = ACTIONS(2415), - [anon_sym_bit_DASHshr2] = ACTIONS(2415), - [anon_sym_bit_DASHand2] = ACTIONS(2415), - [anon_sym_bit_DASHxor2] = ACTIONS(2415), - [anon_sym_bit_DASHor2] = ACTIONS(2415), - [anon_sym_err_GT] = ACTIONS(2417), - [anon_sym_out_GT] = ACTIONS(2417), - [anon_sym_e_GT] = ACTIONS(2417), - [anon_sym_o_GT] = ACTIONS(2417), - [anon_sym_err_PLUSout_GT] = ACTIONS(2417), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2417), - [anon_sym_o_PLUSe_GT] = ACTIONS(2417), - [anon_sym_e_PLUSo_GT] = ACTIONS(2417), - [anon_sym_err_GT_GT] = ACTIONS(2415), - [anon_sym_out_GT_GT] = ACTIONS(2415), - [anon_sym_e_GT_GT] = ACTIONS(2415), - [anon_sym_o_GT_GT] = ACTIONS(2415), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2415), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2415), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2415), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2415), + [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(1132)] = { - [sym__expression] = STATE(4735), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2216), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1832), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_comment] = STATE(1132), - [aux_sym_cmd_identifier_token2] = ACTIONS(2630), - [anon_sym_true] = ACTIONS(2632), - [anon_sym_false] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [aux_sym_cmd_identifier_token3] = ACTIONS(2636), - [aux_sym_cmd_identifier_token4] = ACTIONS(2636), - [aux_sym_cmd_identifier_token5] = ACTIONS(2636), + [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(1006), + [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(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2046), - [aux_sym__val_number_decimal_token3] = ACTIONS(2640), - [aux_sym__val_number_decimal_token4] = ACTIONS(2640), - [aux_sym__val_number_token1] = ACTIONS(2636), - [aux_sym__val_number_token2] = ACTIONS(2636), - [aux_sym__val_number_token3] = ACTIONS(2636), + [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(2642), + [sym_val_date] = ACTIONS(2567), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -130775,65 +131761,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(1133)] = { - [sym__expression] = STATE(4743), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2216), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1832), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_comment] = STATE(1133), - [aux_sym_cmd_identifier_token2] = ACTIONS(2630), - [anon_sym_true] = ACTIONS(2632), - [anon_sym_false] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [aux_sym_cmd_identifier_token3] = ACTIONS(2636), - [aux_sym_cmd_identifier_token4] = ACTIONS(2636), - [aux_sym_cmd_identifier_token5] = ACTIONS(2636), + [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(1006), + [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(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2046), - [aux_sym__val_number_decimal_token3] = ACTIONS(2640), - [aux_sym__val_number_decimal_token4] = ACTIONS(2640), - [aux_sym__val_number_token1] = ACTIONS(2636), - [aux_sym__val_number_token2] = ACTIONS(2636), - [aux_sym__val_number_token3] = ACTIONS(2636), + [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(2642), + [sym_val_date] = ACTIONS(2567), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -130842,2155 +131828,3428 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1134)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1134), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2722), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_err_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_GT_PIPE] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), - [anon_sym_RPAREN] = ACTIONS(2722), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2800), - [anon_sym_xor2] = ACTIONS(2802), - [anon_sym_or2] = ACTIONS(2722), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2816), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2820), - [anon_sym_err_GT] = ACTIONS(2724), - [anon_sym_out_GT] = ACTIONS(2724), - [anon_sym_e_GT] = ACTIONS(2724), - [anon_sym_o_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT] = ACTIONS(2724), - [anon_sym_err_GT_GT] = ACTIONS(2722), - [anon_sym_out_GT_GT] = ACTIONS(2722), - [anon_sym_e_GT_GT] = ACTIONS(2722), - [anon_sym_o_GT_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1135)] = { - [aux_sym__repeat_newline] = STATE(1147), - [sym_comment] = STATE(1135), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2822), - [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(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [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(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [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(1136)] = { - [aux_sym__repeat_newline] = STATE(1180), - [sym_comment] = STATE(1136), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_err_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_GT_PIPE] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), - [anon_sym_RPAREN] = ACTIONS(2718), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2718), - [anon_sym_xor2] = ACTIONS(2718), - [anon_sym_or2] = ACTIONS(2718), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2718), - [anon_sym_BANG_TILDE2] = ACTIONS(2718), - [anon_sym_like2] = ACTIONS(2718), - [anon_sym_not_DASHlike2] = ACTIONS(2718), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2718), - [anon_sym_bit_DASHxor2] = ACTIONS(2718), - [anon_sym_bit_DASHor2] = ACTIONS(2718), - [anon_sym_err_GT] = ACTIONS(2720), - [anon_sym_out_GT] = ACTIONS(2720), - [anon_sym_e_GT] = ACTIONS(2720), - [anon_sym_o_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT] = ACTIONS(2720), - [anon_sym_err_GT_GT] = ACTIONS(2718), - [anon_sym_out_GT_GT] = ACTIONS(2718), - [anon_sym_e_GT_GT] = ACTIONS(2718), - [anon_sym_o_GT_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1137)] = { - [sym_comment] = STATE(1137), - [ts_builtin_sym_end] = ACTIONS(2140), - [anon_sym_in] = ACTIONS(2140), - [sym__newline] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_err_GT_PIPE] = ACTIONS(2140), - [anon_sym_out_GT_PIPE] = ACTIONS(2140), - [anon_sym_e_GT_PIPE] = ACTIONS(2140), - [anon_sym_o_GT_PIPE] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2140), - [anon_sym_GT2] = ACTIONS(2142), - [anon_sym_DASH2] = ACTIONS(2140), - [anon_sym_STAR2] = ACTIONS(2142), - [anon_sym_and2] = ACTIONS(2140), - [anon_sym_xor2] = ACTIONS(2140), - [anon_sym_or2] = ACTIONS(2140), - [anon_sym_not_DASHin2] = ACTIONS(2140), - [anon_sym_has2] = ACTIONS(2140), - [anon_sym_not_DASHhas2] = ACTIONS(2140), - [anon_sym_starts_DASHwith2] = ACTIONS(2140), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2140), - [anon_sym_ends_DASHwith2] = ACTIONS(2140), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2140), - [anon_sym_EQ_EQ2] = ACTIONS(2140), - [anon_sym_BANG_EQ2] = ACTIONS(2140), - [anon_sym_LT2] = ACTIONS(2142), - [anon_sym_LT_EQ2] = ACTIONS(2140), - [anon_sym_GT_EQ2] = ACTIONS(2140), - [anon_sym_EQ_TILDE2] = ACTIONS(2140), - [anon_sym_BANG_TILDE2] = ACTIONS(2140), - [anon_sym_like2] = ACTIONS(2140), - [anon_sym_not_DASHlike2] = ACTIONS(2140), - [anon_sym_LPAREN2] = ACTIONS(2140), - [anon_sym_STAR_STAR2] = ACTIONS(2140), - [anon_sym_PLUS_PLUS2] = ACTIONS(2140), - [anon_sym_SLASH2] = ACTIONS(2142), - [anon_sym_mod2] = ACTIONS(2140), - [anon_sym_SLASH_SLASH2] = ACTIONS(2140), - [anon_sym_PLUS2] = ACTIONS(2142), - [anon_sym_bit_DASHshl2] = ACTIONS(2140), - [anon_sym_bit_DASHshr2] = ACTIONS(2140), - [anon_sym_bit_DASHand2] = ACTIONS(2140), - [anon_sym_bit_DASHxor2] = ACTIONS(2140), - [anon_sym_bit_DASHor2] = ACTIONS(2140), - [anon_sym_err_GT] = ACTIONS(2142), - [anon_sym_out_GT] = ACTIONS(2142), - [anon_sym_e_GT] = ACTIONS(2142), - [anon_sym_o_GT] = ACTIONS(2142), - [anon_sym_err_PLUSout_GT] = ACTIONS(2142), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2142), - [anon_sym_o_PLUSe_GT] = ACTIONS(2142), - [anon_sym_e_PLUSo_GT] = ACTIONS(2142), - [anon_sym_err_GT_GT] = ACTIONS(2140), - [anon_sym_out_GT_GT] = ACTIONS(2140), - [anon_sym_e_GT_GT] = ACTIONS(2140), - [anon_sym_o_GT_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2140), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1138)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1138), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2722), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_err_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_GT_PIPE] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), - [anon_sym_RPAREN] = ACTIONS(2722), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2722), - [anon_sym_xor2] = ACTIONS(2722), - [anon_sym_or2] = ACTIONS(2722), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2722), - [anon_sym_BANG_TILDE2] = ACTIONS(2722), - [anon_sym_like2] = ACTIONS(2722), - [anon_sym_not_DASHlike2] = ACTIONS(2722), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2722), - [anon_sym_bit_DASHxor2] = ACTIONS(2722), - [anon_sym_bit_DASHor2] = ACTIONS(2722), - [anon_sym_err_GT] = ACTIONS(2724), - [anon_sym_out_GT] = ACTIONS(2724), - [anon_sym_e_GT] = ACTIONS(2724), - [anon_sym_o_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT] = ACTIONS(2724), - [anon_sym_err_GT_GT] = ACTIONS(2722), - [anon_sym_out_GT_GT] = ACTIONS(2722), - [anon_sym_e_GT_GT] = ACTIONS(2722), - [anon_sym_o_GT_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1139)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1139), - [anon_sym_in] = ACTIONS(2692), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2694), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2692), - [anon_sym_has2] = ACTIONS(2692), - [anon_sym_not_DASHhas2] = ACTIONS(2692), - [anon_sym_starts_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), - [anon_sym_ends_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), - [anon_sym_EQ_EQ2] = ACTIONS(2692), - [anon_sym_BANG_EQ2] = ACTIONS(2692), - [anon_sym_LT2] = ACTIONS(2694), - [anon_sym_LT_EQ2] = ACTIONS(2692), - [anon_sym_GT_EQ2] = ACTIONS(2692), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2692), - [anon_sym_bit_DASHshr2] = ACTIONS(2692), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1140)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1140), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2800), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2816), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2820), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1141)] = { - [aux_sym__repeat_newline] = STATE(1151), - [sym_comment] = STATE(1141), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2822), - [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(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [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(1142)] = { - [aux_sym__repeat_newline] = STATE(1198), - [sym_comment] = STATE(1142), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(1143)] = { - [aux_sym__repeat_newline] = STATE(1156), [sym_comment] = STATE(1143), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2822), - [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(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2851), - [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), + [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), - [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(2148), - [anon_sym_STAR_STAR2] = ACTIONS(2148), - [anon_sym_PLUS_PLUS2] = ACTIONS(2148), - [anon_sym_SLASH2] = ACTIONS(2150), - [anon_sym_mod2] = ACTIONS(2148), - [anon_sym_SLASH_SLASH2] = ACTIONS(2148), - [anon_sym_PLUS2] = ACTIONS(2150), - [anon_sym_bit_DASHshl2] = ACTIONS(2148), - [anon_sym_bit_DASHshr2] = ACTIONS(2148), - [anon_sym_bit_DASHand2] = ACTIONS(2148), - [anon_sym_bit_DASHxor2] = ACTIONS(2148), - [anon_sym_bit_DASHor2] = ACTIONS(2148), - [anon_sym_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(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(1184), + [aux_sym__repeat_newline] = STATE(1201), [sym_comment] = STATE(1145), - [anon_sym_in] = ACTIONS(2718), - [sym__newline] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_err_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_GT_PIPE] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), - [anon_sym_RPAREN] = ACTIONS(2718), - [anon_sym_GT2] = ACTIONS(2720), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2718), - [anon_sym_xor2] = ACTIONS(2718), - [anon_sym_or2] = ACTIONS(2718), - [anon_sym_not_DASHin2] = ACTIONS(2718), - [anon_sym_has2] = ACTIONS(2718), - [anon_sym_not_DASHhas2] = ACTIONS(2718), - [anon_sym_starts_DASHwith2] = ACTIONS(2718), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2718), - [anon_sym_ends_DASHwith2] = ACTIONS(2718), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2718), - [anon_sym_EQ_EQ2] = ACTIONS(2718), - [anon_sym_BANG_EQ2] = ACTIONS(2718), - [anon_sym_LT2] = ACTIONS(2720), - [anon_sym_LT_EQ2] = ACTIONS(2718), - [anon_sym_GT_EQ2] = ACTIONS(2718), - [anon_sym_EQ_TILDE2] = ACTIONS(2718), - [anon_sym_BANG_TILDE2] = ACTIONS(2718), - [anon_sym_like2] = ACTIONS(2718), - [anon_sym_not_DASHlike2] = ACTIONS(2718), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2718), - [anon_sym_bit_DASHshr2] = ACTIONS(2718), - [anon_sym_bit_DASHand2] = ACTIONS(2718), - [anon_sym_bit_DASHxor2] = ACTIONS(2718), - [anon_sym_bit_DASHor2] = ACTIONS(2718), - [anon_sym_err_GT] = ACTIONS(2720), - [anon_sym_out_GT] = ACTIONS(2720), - [anon_sym_e_GT] = ACTIONS(2720), - [anon_sym_o_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT] = ACTIONS(2720), - [anon_sym_err_GT_GT] = ACTIONS(2718), - [anon_sym_out_GT_GT] = ACTIONS(2718), - [anon_sym_e_GT_GT] = ACTIONS(2718), - [anon_sym_o_GT_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [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(2853), - [sym__newline] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_err_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_GT_PIPE] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), - [anon_sym_RPAREN] = ACTIONS(2578), - [anon_sym_GT2] = ACTIONS(2855), - [anon_sym_DASH2] = ACTIONS(2857), - [anon_sym_RBRACE] = ACTIONS(2578), - [anon_sym_STAR2] = ACTIONS(2859), - [anon_sym_and2] = ACTIONS(2578), - [anon_sym_xor2] = ACTIONS(2578), - [anon_sym_or2] = ACTIONS(2578), - [anon_sym_not_DASHin2] = ACTIONS(2853), - [anon_sym_has2] = ACTIONS(2853), - [anon_sym_not_DASHhas2] = ACTIONS(2853), - [anon_sym_starts_DASHwith2] = ACTIONS(2853), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2853), - [anon_sym_ends_DASHwith2] = ACTIONS(2853), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2853), - [anon_sym_EQ_EQ2] = ACTIONS(2861), - [anon_sym_BANG_EQ2] = ACTIONS(2861), - [anon_sym_LT2] = ACTIONS(2855), - [anon_sym_LT_EQ2] = ACTIONS(2861), - [anon_sym_GT_EQ2] = ACTIONS(2861), - [anon_sym_EQ_TILDE2] = ACTIONS(2863), - [anon_sym_BANG_TILDE2] = ACTIONS(2863), - [anon_sym_like2] = ACTIONS(2863), - [anon_sym_not_DASHlike2] = ACTIONS(2863), - [anon_sym_STAR_STAR2] = ACTIONS(2865), - [anon_sym_PLUS_PLUS2] = ACTIONS(2865), - [anon_sym_SLASH2] = ACTIONS(2859), - [anon_sym_mod2] = ACTIONS(2867), - [anon_sym_SLASH_SLASH2] = ACTIONS(2867), - [anon_sym_PLUS2] = ACTIONS(2869), - [anon_sym_bit_DASHshl2] = ACTIONS(2871), - [anon_sym_bit_DASHshr2] = ACTIONS(2871), - [anon_sym_bit_DASHand2] = ACTIONS(2873), - [anon_sym_bit_DASHxor2] = ACTIONS(2578), - [anon_sym_bit_DASHor2] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2578), - [anon_sym_out_GT_GT] = ACTIONS(2578), - [anon_sym_e_GT_GT] = ACTIONS(2578), - [anon_sym_o_GT_GT] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), + [anon_sym_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)] = { - [aux_sym__repeat_newline] = STATE(507), [sym_comment] = STATE(1147), - [anon_sym_in] = ACTIONS(2722), - [sym__newline] = ACTIONS(2722), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_err_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_GT_PIPE] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), - [anon_sym_RPAREN] = ACTIONS(2722), - [anon_sym_GT2] = ACTIONS(2724), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2722), - [anon_sym_xor2] = ACTIONS(2722), - [anon_sym_or2] = ACTIONS(2722), - [anon_sym_not_DASHin2] = ACTIONS(2722), - [anon_sym_has2] = ACTIONS(2722), - [anon_sym_not_DASHhas2] = ACTIONS(2722), - [anon_sym_starts_DASHwith2] = ACTIONS(2722), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), - [anon_sym_ends_DASHwith2] = ACTIONS(2722), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), - [anon_sym_EQ_EQ2] = ACTIONS(2722), - [anon_sym_BANG_EQ2] = ACTIONS(2722), - [anon_sym_LT2] = ACTIONS(2724), - [anon_sym_LT_EQ2] = ACTIONS(2722), - [anon_sym_GT_EQ2] = ACTIONS(2722), - [anon_sym_EQ_TILDE2] = ACTIONS(2722), - [anon_sym_BANG_TILDE2] = ACTIONS(2722), - [anon_sym_like2] = ACTIONS(2722), - [anon_sym_not_DASHlike2] = ACTIONS(2722), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2722), - [anon_sym_bit_DASHshr2] = ACTIONS(2722), - [anon_sym_bit_DASHand2] = ACTIONS(2722), - [anon_sym_bit_DASHxor2] = ACTIONS(2722), - [anon_sym_bit_DASHor2] = ACTIONS(2722), - [anon_sym_err_GT] = ACTIONS(2724), - [anon_sym_out_GT] = ACTIONS(2724), - [anon_sym_e_GT] = ACTIONS(2724), - [anon_sym_o_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT] = ACTIONS(2724), - [anon_sym_err_GT_GT] = ACTIONS(2722), - [anon_sym_out_GT_GT] = ACTIONS(2722), - [anon_sym_e_GT_GT] = ACTIONS(2722), - [anon_sym_o_GT_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [ts_builtin_sym_end] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [sym__newline] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_err_GT_PIPE] = ACTIONS(2088), + [anon_sym_out_GT_PIPE] = ACTIONS(2088), + [anon_sym_e_GT_PIPE] = ACTIONS(2088), + [anon_sym_o_GT_PIPE] = ACTIONS(2088), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), + [anon_sym_GT2] = ACTIONS(2090), + [anon_sym_DASH2] = ACTIONS(2088), + [anon_sym_STAR2] = ACTIONS(2090), + [anon_sym_and2] = ACTIONS(2088), + [anon_sym_xor2] = ACTIONS(2088), + [anon_sym_or2] = ACTIONS(2088), + [anon_sym_not_DASHin2] = ACTIONS(2088), + [anon_sym_has2] = ACTIONS(2088), + [anon_sym_not_DASHhas2] = ACTIONS(2088), + [anon_sym_starts_DASHwith2] = ACTIONS(2088), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), + [anon_sym_ends_DASHwith2] = ACTIONS(2088), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), + [anon_sym_EQ_EQ2] = ACTIONS(2088), + [anon_sym_BANG_EQ2] = ACTIONS(2088), + [anon_sym_LT2] = ACTIONS(2090), + [anon_sym_LT_EQ2] = ACTIONS(2088), + [anon_sym_GT_EQ2] = ACTIONS(2088), + [anon_sym_EQ_TILDE2] = ACTIONS(2088), + [anon_sym_BANG_TILDE2] = ACTIONS(2088), + [anon_sym_like2] = ACTIONS(2088), + [anon_sym_not_DASHlike2] = ACTIONS(2088), + [anon_sym_STAR_STAR2] = ACTIONS(2088), + [anon_sym_PLUS_PLUS2] = ACTIONS(2088), + [anon_sym_SLASH2] = ACTIONS(2090), + [anon_sym_mod2] = ACTIONS(2088), + [anon_sym_SLASH_SLASH2] = ACTIONS(2088), + [anon_sym_PLUS2] = ACTIONS(2090), + [anon_sym_bit_DASHshl2] = ACTIONS(2088), + [anon_sym_bit_DASHshr2] = ACTIONS(2088), + [anon_sym_bit_DASHand2] = ACTIONS(2088), + [anon_sym_bit_DASHxor2] = ACTIONS(2088), + [anon_sym_bit_DASHor2] = ACTIONS(2088), + [anon_sym_LBRACK2] = ACTIONS(2834), + [anon_sym_err_GT] = ACTIONS(2090), + [anon_sym_out_GT] = ACTIONS(2090), + [anon_sym_e_GT] = ACTIONS(2090), + [anon_sym_o_GT] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT] = ACTIONS(2090), + [anon_sym_err_GT_GT] = ACTIONS(2088), + [anon_sym_out_GT_GT] = ACTIONS(2088), + [anon_sym_e_GT_GT] = ACTIONS(2088), + [anon_sym_o_GT_GT] = ACTIONS(2088), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1148)] = { - [aux_sym__repeat_newline] = STATE(507), + [aux_sym__repeat_newline] = STATE(1203), [sym_comment] = STATE(1148), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(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)] = { - [aux_sym__repeat_newline] = STATE(1186), [sym_comment] = STATE(1149), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_err_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_GT_PIPE] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), - [anon_sym_RPAREN] = ACTIONS(2718), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2718), - [anon_sym_xor2] = ACTIONS(2718), - [anon_sym_or2] = ACTIONS(2718), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [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(2840), + [anon_sym_LT2] = ACTIONS(2838), [anon_sym_LT_EQ2] = ACTIONS(2842), [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2718), - [anon_sym_bit_DASHxor2] = ACTIONS(2718), - [anon_sym_bit_DASHor2] = ACTIONS(2718), - [anon_sym_err_GT] = ACTIONS(2720), - [anon_sym_out_GT] = ACTIONS(2720), - [anon_sym_e_GT] = ACTIONS(2720), - [anon_sym_o_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT] = ACTIONS(2720), - [anon_sym_err_GT_GT] = ACTIONS(2718), - [anon_sym_out_GT_GT] = ACTIONS(2718), - [anon_sym_e_GT_GT] = ACTIONS(2718), - [anon_sym_o_GT_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [anon_sym_EQ_TILDE2] = ACTIONS(2844), + [anon_sym_BANG_TILDE2] = ACTIONS(2844), + [anon_sym_like2] = ACTIONS(2844), + [anon_sym_not_DASHlike2] = ACTIONS(2844), + [anon_sym_STAR_STAR2] = ACTIONS(2825), + [anon_sym_PLUS_PLUS2] = ACTIONS(2825), + [anon_sym_SLASH2] = ACTIONS(2823), + [anon_sym_mod2] = ACTIONS(2827), + [anon_sym_SLASH_SLASH2] = ACTIONS(2827), + [anon_sym_PLUS2] = ACTIONS(2846), + [anon_sym_bit_DASHshl2] = ACTIONS(2848), + [anon_sym_bit_DASHshr2] = ACTIONS(2848), + [anon_sym_bit_DASHand2] = ACTIONS(2850), + [anon_sym_bit_DASHxor2] = ACTIONS(2852), + [anon_sym_bit_DASHor2] = ACTIONS(2854), + [anon_sym_err_GT] = ACTIONS(2553), + [anon_sym_out_GT] = ACTIONS(2553), + [anon_sym_e_GT] = ACTIONS(2553), + [anon_sym_o_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT] = ACTIONS(2553), + [anon_sym_err_GT_GT] = ACTIONS(2551), + [anon_sym_out_GT_GT] = ACTIONS(2551), + [anon_sym_e_GT_GT] = ACTIONS(2551), + [anon_sym_o_GT_GT] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1150)] = { - [aux_sym__repeat_newline] = STATE(1185), [sym_comment] = STATE(1150), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2877), - [anon_sym_xor2] = ACTIONS(2879), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [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(2840), + [anon_sym_LT2] = ACTIONS(2838), [anon_sym_LT_EQ2] = ACTIONS(2842), [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2851), - [anon_sym_bit_DASHxor2] = ACTIONS(2881), - [anon_sym_bit_DASHor2] = ACTIONS(2883), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_EQ_TILDE2] = ACTIONS(2844), + [anon_sym_BANG_TILDE2] = ACTIONS(2844), + [anon_sym_like2] = ACTIONS(2844), + [anon_sym_not_DASHlike2] = ACTIONS(2844), + [anon_sym_STAR_STAR2] = ACTIONS(2825), + [anon_sym_PLUS_PLUS2] = ACTIONS(2825), + [anon_sym_SLASH2] = ACTIONS(2823), + [anon_sym_mod2] = ACTIONS(2827), + [anon_sym_SLASH_SLASH2] = ACTIONS(2827), + [anon_sym_PLUS2] = ACTIONS(2846), + [anon_sym_bit_DASHshl2] = ACTIONS(2848), + [anon_sym_bit_DASHshr2] = ACTIONS(2848), + [anon_sym_bit_DASHand2] = ACTIONS(2850), + [anon_sym_bit_DASHxor2] = ACTIONS(2852), + [anon_sym_bit_DASHor2] = ACTIONS(2854), + [anon_sym_err_GT] = ACTIONS(2553), + [anon_sym_out_GT] = ACTIONS(2553), + [anon_sym_e_GT] = ACTIONS(2553), + [anon_sym_o_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT] = ACTIONS(2553), + [anon_sym_err_GT_GT] = ACTIONS(2551), + [anon_sym_out_GT_GT] = ACTIONS(2551), + [anon_sym_e_GT_GT] = ACTIONS(2551), + [anon_sym_o_GT_GT] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1151)] = { - [aux_sym__repeat_newline] = STATE(507), + [aux_sym__repeat_newline] = STATE(1206), [sym_comment] = STATE(1151), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2722), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_err_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_GT_PIPE] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), - [anon_sym_RPAREN] = ACTIONS(2722), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2722), - [anon_sym_xor2] = ACTIONS(2722), - [anon_sym_or2] = ACTIONS(2722), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2722), - [anon_sym_bit_DASHxor2] = ACTIONS(2722), - [anon_sym_bit_DASHor2] = ACTIONS(2722), - [anon_sym_err_GT] = ACTIONS(2724), - [anon_sym_out_GT] = ACTIONS(2724), - [anon_sym_e_GT] = ACTIONS(2724), - [anon_sym_o_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT] = ACTIONS(2724), - [anon_sym_err_GT_GT] = ACTIONS(2722), - [anon_sym_out_GT_GT] = ACTIONS(2722), - [anon_sym_e_GT_GT] = ACTIONS(2722), - [anon_sym_o_GT_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_in] = ACTIONS(2730), + [sym__newline] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_err_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_GT_PIPE] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2730), + [anon_sym_GT2] = ACTIONS(2732), + [anon_sym_DASH2] = ACTIONS(2730), + [anon_sym_STAR2] = ACTIONS(2732), + [anon_sym_and2] = ACTIONS(2730), + [anon_sym_xor2] = ACTIONS(2730), + [anon_sym_or2] = ACTIONS(2730), + [anon_sym_not_DASHin2] = ACTIONS(2730), + [anon_sym_has2] = ACTIONS(2730), + [anon_sym_not_DASHhas2] = ACTIONS(2730), + [anon_sym_starts_DASHwith2] = ACTIONS(2730), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2730), + [anon_sym_ends_DASHwith2] = ACTIONS(2730), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2730), + [anon_sym_EQ_EQ2] = ACTIONS(2730), + [anon_sym_BANG_EQ2] = ACTIONS(2730), + [anon_sym_LT2] = ACTIONS(2732), + [anon_sym_LT_EQ2] = ACTIONS(2730), + [anon_sym_GT_EQ2] = ACTIONS(2730), + [anon_sym_EQ_TILDE2] = ACTIONS(2730), + [anon_sym_BANG_TILDE2] = ACTIONS(2730), + [anon_sym_like2] = ACTIONS(2730), + [anon_sym_not_DASHlike2] = ACTIONS(2730), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2732), + [anon_sym_mod2] = ACTIONS(2730), + [anon_sym_SLASH_SLASH2] = ACTIONS(2730), + [anon_sym_PLUS2] = ACTIONS(2732), + [anon_sym_bit_DASHshl2] = ACTIONS(2730), + [anon_sym_bit_DASHshr2] = ACTIONS(2730), + [anon_sym_bit_DASHand2] = ACTIONS(2730), + [anon_sym_bit_DASHxor2] = ACTIONS(2730), + [anon_sym_bit_DASHor2] = ACTIONS(2730), + [anon_sym_err_GT] = ACTIONS(2732), + [anon_sym_out_GT] = ACTIONS(2732), + [anon_sym_e_GT] = ACTIONS(2732), + [anon_sym_o_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT] = ACTIONS(2732), + [anon_sym_err_GT_GT] = ACTIONS(2730), + [anon_sym_out_GT_GT] = ACTIONS(2730), + [anon_sym_e_GT_GT] = ACTIONS(2730), + [anon_sym_o_GT_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1152)] = { - [aux_sym__repeat_newline] = STATE(1162), [sym_comment] = STATE(1152), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2822), - [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(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [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(2840), + [anon_sym_LT2] = ACTIONS(2838), [anon_sym_LT_EQ2] = ACTIONS(2842), [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2851), - [anon_sym_bit_DASHxor2] = ACTIONS(2881), - [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_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)] = { - [aux_sym__repeat_newline] = STATE(1188), [sym_comment] = STATE(1153), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_err_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_GT_PIPE] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), - [anon_sym_RPAREN] = ACTIONS(2718), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2718), - [anon_sym_xor2] = ACTIONS(2718), - [anon_sym_or2] = ACTIONS(2718), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), + [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(2840), + [anon_sym_LT2] = ACTIONS(2838), [anon_sym_LT_EQ2] = ACTIONS(2842), [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2851), - [anon_sym_bit_DASHxor2] = ACTIONS(2718), - [anon_sym_bit_DASHor2] = ACTIONS(2718), - [anon_sym_err_GT] = ACTIONS(2720), - [anon_sym_out_GT] = ACTIONS(2720), - [anon_sym_e_GT] = ACTIONS(2720), - [anon_sym_o_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT] = ACTIONS(2720), - [anon_sym_err_GT_GT] = ACTIONS(2718), - [anon_sym_out_GT_GT] = ACTIONS(2718), - [anon_sym_e_GT_GT] = ACTIONS(2718), - [anon_sym_o_GT_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [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(1201), [sym_comment] = STATE(1154), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2851), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(2551), + [sym__newline] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_err_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_GT_PIPE] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [anon_sym_GT2] = ACTIONS(2553), + [anon_sym_DASH2] = ACTIONS(2840), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_STAR2] = ACTIONS(2823), + [anon_sym_and2] = ACTIONS(2551), + [anon_sym_xor2] = ACTIONS(2551), + [anon_sym_or2] = ACTIONS(2551), + [anon_sym_not_DASHin2] = ACTIONS(2551), + [anon_sym_has2] = ACTIONS(2551), + [anon_sym_not_DASHhas2] = ACTIONS(2551), + [anon_sym_starts_DASHwith2] = ACTIONS(2551), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2551), + [anon_sym_ends_DASHwith2] = ACTIONS(2551), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2551), + [anon_sym_EQ_EQ2] = ACTIONS(2551), + [anon_sym_BANG_EQ2] = ACTIONS(2551), + [anon_sym_LT2] = ACTIONS(2553), + [anon_sym_LT_EQ2] = ACTIONS(2551), + [anon_sym_GT_EQ2] = ACTIONS(2551), + [anon_sym_EQ_TILDE2] = ACTIONS(2551), + [anon_sym_BANG_TILDE2] = ACTIONS(2551), + [anon_sym_like2] = ACTIONS(2551), + [anon_sym_not_DASHlike2] = ACTIONS(2551), + [anon_sym_STAR_STAR2] = ACTIONS(2825), + [anon_sym_PLUS_PLUS2] = ACTIONS(2825), + [anon_sym_SLASH2] = ACTIONS(2823), + [anon_sym_mod2] = ACTIONS(2827), + [anon_sym_SLASH_SLASH2] = ACTIONS(2827), + [anon_sym_PLUS2] = ACTIONS(2846), + [anon_sym_bit_DASHshl2] = ACTIONS(2551), + [anon_sym_bit_DASHshr2] = ACTIONS(2551), + [anon_sym_bit_DASHand2] = ACTIONS(2551), + [anon_sym_bit_DASHxor2] = ACTIONS(2551), + [anon_sym_bit_DASHor2] = ACTIONS(2551), + [anon_sym_err_GT] = ACTIONS(2553), + [anon_sym_out_GT] = ACTIONS(2553), + [anon_sym_e_GT] = ACTIONS(2553), + [anon_sym_o_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT] = ACTIONS(2553), + [anon_sym_err_GT_GT] = ACTIONS(2551), + [anon_sym_out_GT_GT] = ACTIONS(2551), + [anon_sym_e_GT_GT] = ACTIONS(2551), + [anon_sym_o_GT_GT] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1155)] = { [sym_comment] = STATE(1155), - [anon_sym_in] = ACTIONS(2853), - [sym__newline] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_err_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_GT_PIPE] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), - [anon_sym_RPAREN] = ACTIONS(2578), - [anon_sym_GT2] = ACTIONS(2855), - [anon_sym_DASH2] = ACTIONS(2857), - [anon_sym_RBRACE] = ACTIONS(2578), - [anon_sym_STAR2] = ACTIONS(2859), - [anon_sym_and2] = ACTIONS(2578), - [anon_sym_xor2] = ACTIONS(2578), - [anon_sym_or2] = ACTIONS(2578), - [anon_sym_not_DASHin2] = ACTIONS(2853), - [anon_sym_has2] = ACTIONS(2853), - [anon_sym_not_DASHhas2] = ACTIONS(2853), - [anon_sym_starts_DASHwith2] = ACTIONS(2853), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2853), - [anon_sym_ends_DASHwith2] = ACTIONS(2853), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2853), - [anon_sym_EQ_EQ2] = ACTIONS(2861), - [anon_sym_BANG_EQ2] = ACTIONS(2861), - [anon_sym_LT2] = ACTIONS(2855), - [anon_sym_LT_EQ2] = ACTIONS(2861), - [anon_sym_GT_EQ2] = ACTIONS(2861), - [anon_sym_EQ_TILDE2] = ACTIONS(2863), - [anon_sym_BANG_TILDE2] = ACTIONS(2863), - [anon_sym_like2] = ACTIONS(2863), - [anon_sym_not_DASHlike2] = ACTIONS(2863), - [anon_sym_STAR_STAR2] = ACTIONS(2865), - [anon_sym_PLUS_PLUS2] = ACTIONS(2865), - [anon_sym_SLASH2] = ACTIONS(2859), - [anon_sym_mod2] = ACTIONS(2867), - [anon_sym_SLASH_SLASH2] = ACTIONS(2867), - [anon_sym_PLUS2] = ACTIONS(2869), - [anon_sym_bit_DASHshl2] = ACTIONS(2871), - [anon_sym_bit_DASHshr2] = ACTIONS(2871), - [anon_sym_bit_DASHand2] = ACTIONS(2873), - [anon_sym_bit_DASHxor2] = ACTIONS(2885), - [anon_sym_bit_DASHor2] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2578), - [anon_sym_out_GT_GT] = ACTIONS(2578), - [anon_sym_e_GT_GT] = ACTIONS(2578), - [anon_sym_o_GT_GT] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), + [anon_sym_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(507), [sym_comment] = STATE(1156), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2722), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_err_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_GT_PIPE] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), - [anon_sym_RPAREN] = ACTIONS(2722), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2722), - [anon_sym_xor2] = ACTIONS(2722), - [anon_sym_or2] = ACTIONS(2722), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2816), - [anon_sym_bit_DASHxor2] = ACTIONS(2722), - [anon_sym_bit_DASHor2] = ACTIONS(2722), - [anon_sym_err_GT] = ACTIONS(2724), - [anon_sym_out_GT] = ACTIONS(2724), - [anon_sym_e_GT] = ACTIONS(2724), - [anon_sym_o_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT] = ACTIONS(2724), - [anon_sym_err_GT_GT] = ACTIONS(2722), - [anon_sym_out_GT_GT] = ACTIONS(2722), - [anon_sym_e_GT_GT] = ACTIONS(2722), - [anon_sym_o_GT_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_in] = ACTIONS(2836), + [sym__newline] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_err_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_GT_PIPE] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [anon_sym_GT2] = ACTIONS(2838), + [anon_sym_DASH2] = ACTIONS(2840), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_STAR2] = ACTIONS(2823), + [anon_sym_and2] = ACTIONS(2551), + [anon_sym_xor2] = ACTIONS(2551), + [anon_sym_or2] = ACTIONS(2551), + [anon_sym_not_DASHin2] = ACTIONS(2836), + [anon_sym_has2] = ACTIONS(2836), + [anon_sym_not_DASHhas2] = ACTIONS(2836), + [anon_sym_starts_DASHwith2] = ACTIONS(2836), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2836), + [anon_sym_ends_DASHwith2] = ACTIONS(2836), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2836), + [anon_sym_EQ_EQ2] = ACTIONS(2842), + [anon_sym_BANG_EQ2] = ACTIONS(2842), + [anon_sym_LT2] = ACTIONS(2838), + [anon_sym_LT_EQ2] = ACTIONS(2842), + [anon_sym_GT_EQ2] = ACTIONS(2842), + [anon_sym_EQ_TILDE2] = ACTIONS(2844), + [anon_sym_BANG_TILDE2] = ACTIONS(2844), + [anon_sym_like2] = ACTIONS(2844), + [anon_sym_not_DASHlike2] = ACTIONS(2844), + [anon_sym_STAR_STAR2] = ACTIONS(2825), + [anon_sym_PLUS_PLUS2] = ACTIONS(2825), + [anon_sym_SLASH2] = ACTIONS(2823), + [anon_sym_mod2] = ACTIONS(2827), + [anon_sym_SLASH_SLASH2] = ACTIONS(2827), + [anon_sym_PLUS2] = ACTIONS(2846), + [anon_sym_bit_DASHshl2] = ACTIONS(2848), + [anon_sym_bit_DASHshr2] = ACTIONS(2848), + [anon_sym_bit_DASHand2] = ACTIONS(2850), + [anon_sym_bit_DASHxor2] = ACTIONS(2551), + [anon_sym_bit_DASHor2] = ACTIONS(2551), + [anon_sym_err_GT] = ACTIONS(2553), + [anon_sym_out_GT] = ACTIONS(2553), + [anon_sym_e_GT] = ACTIONS(2553), + [anon_sym_o_GT] = ACTIONS(2553), + [anon_sym_err_PLUSout_GT] = ACTIONS(2553), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2553), + [anon_sym_o_PLUSe_GT] = ACTIONS(2553), + [anon_sym_e_PLUSo_GT] = ACTIONS(2553), + [anon_sym_err_GT_GT] = ACTIONS(2551), + [anon_sym_out_GT_GT] = ACTIONS(2551), + [anon_sym_e_GT_GT] = ACTIONS(2551), + [anon_sym_o_GT_GT] = ACTIONS(2551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2551), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1157)] = { - [sym__ctrl_match_body] = STATE(4976), - [sym_match_arm] = STATE(4468), - [sym_default_arm] = STATE(4468), - [sym_match_pattern] = STATE(5020), - [sym__match_pattern] = STATE(3798), - [sym__match_pattern_expression] = STATE(4208), - [sym__match_pattern_value] = STATE(4213), - [sym__match_pattern_list] = STATE(4214), - [sym__match_pattern_record] = STATE(4216), - [sym_expr_parenthesized] = STATE(3717), - [sym_val_range] = STATE(4213), - [sym__val_range] = STATE(5062), - [sym_val_nothing] = STATE(4216), - [sym_val_bool] = STATE(3999), - [sym_val_variable] = STATE(3748), - [sym_val_number] = STATE(4216), - [sym__val_number_decimal] = STATE(3495), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(4216), - [sym_val_filesize] = STATE(4216), - [sym_val_binary] = STATE(4216), - [sym_val_string] = STATE(4216), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_table] = STATE(4216), - [sym_unquoted] = STATE(4232), - [sym__unquoted_anonymous_prefix] = STATE(5062), [sym_comment] = STATE(1157), - [aux_sym__types_body_repeat1] = STATE(1346), - [aux_sym__ctrl_match_body_repeat1] = STATE(1359), - [anon_sym_true] = ACTIONS(2887), - [anon_sym_false] = ACTIONS(2887), - [anon_sym_null] = ACTIONS(2889), - [aux_sym_cmd_identifier_token3] = ACTIONS(2891), - [aux_sym_cmd_identifier_token4] = ACTIONS(2891), - [aux_sym_cmd_identifier_token5] = ACTIONS(2891), - [sym__newline] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2895), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym_DOLLAR] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_RBRACE] = ACTIONS(2901), - [anon_sym__] = ACTIONS(2903), - [anon_sym_DOT_DOT] = ACTIONS(2905), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2907), - [anon_sym_DOT_DOT_LT] = ACTIONS(2907), - [aux_sym__val_number_decimal_token1] = ACTIONS(2909), - [aux_sym__val_number_decimal_token2] = ACTIONS(2911), - [aux_sym__val_number_decimal_token3] = ACTIONS(2913), - [aux_sym__val_number_decimal_token4] = ACTIONS(2913), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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), - [sym_raw_string_begin] = ACTIONS(1802), }, [STATE(1158)] = { - [sym__ctrl_match_body] = STATE(4981), - [sym_match_arm] = STATE(4468), - [sym_default_arm] = STATE(4468), - [sym_match_pattern] = STATE(5020), - [sym__match_pattern] = STATE(3798), - [sym__match_pattern_expression] = STATE(4208), - [sym__match_pattern_value] = STATE(4213), - [sym__match_pattern_list] = STATE(4214), - [sym__match_pattern_record] = STATE(4216), - [sym_expr_parenthesized] = STATE(3717), - [sym_val_range] = STATE(4213), - [sym__val_range] = STATE(5062), - [sym_val_nothing] = STATE(4216), - [sym_val_bool] = STATE(3999), - [sym_val_variable] = STATE(3748), - [sym_val_number] = STATE(4216), - [sym__val_number_decimal] = STATE(3495), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(4216), - [sym_val_filesize] = STATE(4216), - [sym_val_binary] = STATE(4216), - [sym_val_string] = STATE(4216), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_table] = STATE(4216), - [sym_unquoted] = STATE(4232), - [sym__unquoted_anonymous_prefix] = STATE(5062), [sym_comment] = STATE(1158), - [aux_sym__types_body_repeat1] = STATE(1346), - [aux_sym__ctrl_match_body_repeat1] = STATE(1359), - [anon_sym_true] = ACTIONS(2887), - [anon_sym_false] = ACTIONS(2887), - [anon_sym_null] = ACTIONS(2889), - [aux_sym_cmd_identifier_token3] = ACTIONS(2891), - [aux_sym_cmd_identifier_token4] = ACTIONS(2891), - [aux_sym_cmd_identifier_token5] = ACTIONS(2891), - [sym__newline] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2895), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym_DOLLAR] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_RBRACE] = ACTIONS(2917), - [anon_sym__] = ACTIONS(2903), - [anon_sym_DOT_DOT] = ACTIONS(2905), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2907), - [anon_sym_DOT_DOT_LT] = ACTIONS(2907), - [aux_sym__val_number_decimal_token1] = ACTIONS(2909), - [aux_sym__val_number_decimal_token2] = ACTIONS(2911), - [aux_sym__val_number_decimal_token3] = ACTIONS(2913), - [aux_sym__val_number_decimal_token4] = ACTIONS(2913), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), - [aux_sym_unquoted_token1] = ACTIONS(1924), + [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), - [sym_raw_string_begin] = ACTIONS(1802), }, [STATE(1159)] = { - [aux_sym__repeat_newline] = STATE(507), + [aux_sym__repeat_newline] = STATE(1169), [sym_comment] = STATE(1159), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2816), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(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(1190), + [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(2835), - [sym__newline] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_err_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_GT_PIPE] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), - [anon_sym_RPAREN] = ACTIONS(2718), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2718), - [anon_sym_xor2] = ACTIONS(2718), - [anon_sym_or2] = ACTIONS(2718), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2851), - [anon_sym_bit_DASHxor2] = ACTIONS(2881), - [anon_sym_bit_DASHor2] = ACTIONS(2718), - [anon_sym_err_GT] = ACTIONS(2720), - [anon_sym_out_GT] = ACTIONS(2720), - [anon_sym_e_GT] = ACTIONS(2720), - [anon_sym_o_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT] = ACTIONS(2720), - [anon_sym_err_GT_GT] = ACTIONS(2718), - [anon_sym_out_GT_GT] = ACTIONS(2718), - [anon_sym_e_GT_GT] = ACTIONS(2718), - [anon_sym_o_GT_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [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(507), + [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(2692), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2694), - [anon_sym_DASH2] = ACTIONS(2692), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2692), - [anon_sym_has2] = ACTIONS(2692), - [anon_sym_not_DASHhas2] = ACTIONS(2692), - [anon_sym_starts_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), - [anon_sym_ends_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), - [anon_sym_EQ_EQ2] = ACTIONS(2692), - [anon_sym_BANG_EQ2] = ACTIONS(2692), - [anon_sym_LT2] = ACTIONS(2694), - [anon_sym_LT_EQ2] = ACTIONS(2692), - [anon_sym_GT_EQ2] = ACTIONS(2692), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2694), - [anon_sym_bit_DASHshl2] = ACTIONS(2692), - [anon_sym_bit_DASHshr2] = ACTIONS(2692), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [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(507), + [aux_sym__repeat_newline] = STATE(1208), [sym_comment] = STATE(1162), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2722), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_err_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_GT_PIPE] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), - [anon_sym_RPAREN] = ACTIONS(2722), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2722), - [anon_sym_xor2] = ACTIONS(2722), - [anon_sym_or2] = ACTIONS(2722), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2816), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2722), - [anon_sym_err_GT] = ACTIONS(2724), - [anon_sym_out_GT] = ACTIONS(2724), - [anon_sym_e_GT] = ACTIONS(2724), - [anon_sym_o_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT] = ACTIONS(2724), - [anon_sym_err_GT_GT] = ACTIONS(2722), - [anon_sym_out_GT_GT] = ACTIONS(2722), - [anon_sym_e_GT_GT] = ACTIONS(2722), - [anon_sym_o_GT_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_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(1206), + [aux_sym__repeat_newline] = STATE(1210), [sym_comment] = STATE(1163), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2851), - [anon_sym_bit_DASHxor2] = ACTIONS(2881), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(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(507), + [aux_sym__repeat_newline] = STATE(1212), [sym_comment] = STATE(1164), - [anon_sym_in] = ACTIONS(2710), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2710), - [anon_sym_has2] = ACTIONS(2710), - [anon_sym_not_DASHhas2] = ACTIONS(2710), - [anon_sym_starts_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), - [anon_sym_ends_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2710), - [anon_sym_BANG_TILDE2] = ACTIONS(2710), - [anon_sym_like2] = ACTIONS(2710), - [anon_sym_not_DASHlike2] = ACTIONS(2710), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [anon_sym_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(1175), [sym_comment] = STATE(1165), - [anon_sym_in] = ACTIONS(2688), - [sym__newline] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2690), - [anon_sym_DASH2] = ACTIONS(2688), - [anon_sym_STAR2] = ACTIONS(2690), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2688), - [anon_sym_has2] = ACTIONS(2688), - [anon_sym_not_DASHhas2] = ACTIONS(2688), - [anon_sym_starts_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), - [anon_sym_ends_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), - [anon_sym_EQ_EQ2] = ACTIONS(2688), - [anon_sym_BANG_EQ2] = ACTIONS(2688), - [anon_sym_LT2] = ACTIONS(2690), - [anon_sym_LT_EQ2] = ACTIONS(2688), - [anon_sym_GT_EQ2] = ACTIONS(2688), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2690), - [anon_sym_mod2] = ACTIONS(2688), - [anon_sym_SLASH_SLASH2] = ACTIONS(2688), - [anon_sym_PLUS2] = ACTIONS(2690), - [anon_sym_bit_DASHshl2] = ACTIONS(2688), - [anon_sym_bit_DASHshr2] = ACTIONS(2688), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_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(507), + [aux_sym__repeat_newline] = STATE(1214), [sym_comment] = STATE(1166), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_err_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_GT_PIPE] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2730), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2730), + [anon_sym_xor2] = ACTIONS(2730), + [anon_sym_or2] = ACTIONS(2730), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2730), + [anon_sym_BANG_TILDE2] = ACTIONS(2730), + [anon_sym_like2] = ACTIONS(2730), + [anon_sym_not_DASHlike2] = ACTIONS(2730), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2730), + [anon_sym_bit_DASHxor2] = ACTIONS(2730), + [anon_sym_bit_DASHor2] = ACTIONS(2730), + [anon_sym_err_GT] = ACTIONS(2732), + [anon_sym_out_GT] = ACTIONS(2732), + [anon_sym_e_GT] = ACTIONS(2732), + [anon_sym_o_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT] = ACTIONS(2732), + [anon_sym_err_GT_GT] = ACTIONS(2730), + [anon_sym_out_GT_GT] = ACTIONS(2730), + [anon_sym_e_GT_GT] = ACTIONS(2730), + [anon_sym_o_GT_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1167)] = { + [sym_comment] = STATE(1167), + [ts_builtin_sym_end] = ACTIONS(886), + [aux_sym_cmd_identifier_token2] = ACTIONS(2829), + [anon_sym_in] = ACTIONS(866), + [sym__newline] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(886), + [anon_sym_PIPE] = ACTIONS(886), + [anon_sym_err_GT_PIPE] = ACTIONS(886), + [anon_sym_out_GT_PIPE] = ACTIONS(886), + [anon_sym_e_GT_PIPE] = ACTIONS(886), + [anon_sym_o_GT_PIPE] = ACTIONS(886), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(886), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(886), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(886), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(886), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(886), + [anon_sym_BANG_EQ2] = ACTIONS(886), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(886), + [anon_sym_GT_EQ2] = ACTIONS(886), + [anon_sym_EQ_TILDE2] = ACTIONS(886), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(886), + [anon_sym_out_GT_GT] = ACTIONS(886), + [anon_sym_e_GT_GT] = ACTIONS(886), + [anon_sym_o_GT_GT] = ACTIONS(886), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(886), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(886), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(886), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(886), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1168)] = { + [aux_sym__repeat_newline] = STATE(1220), + [sym_comment] = STATE(1168), + [anon_sym_in] = ACTIONS(2730), + [sym__newline] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_err_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_GT_PIPE] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2730), + [anon_sym_GT2] = ACTIONS(2732), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2730), + [anon_sym_xor2] = ACTIONS(2730), + [anon_sym_or2] = ACTIONS(2730), + [anon_sym_not_DASHin2] = ACTIONS(2730), + [anon_sym_has2] = ACTIONS(2730), + [anon_sym_not_DASHhas2] = ACTIONS(2730), + [anon_sym_starts_DASHwith2] = ACTIONS(2730), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2730), + [anon_sym_ends_DASHwith2] = ACTIONS(2730), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2730), + [anon_sym_EQ_EQ2] = ACTIONS(2730), + [anon_sym_BANG_EQ2] = ACTIONS(2730), + [anon_sym_LT2] = ACTIONS(2732), + [anon_sym_LT_EQ2] = ACTIONS(2730), + [anon_sym_GT_EQ2] = ACTIONS(2730), + [anon_sym_EQ_TILDE2] = ACTIONS(2730), + [anon_sym_BANG_TILDE2] = ACTIONS(2730), + [anon_sym_like2] = ACTIONS(2730), + [anon_sym_not_DASHlike2] = ACTIONS(2730), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2730), + [anon_sym_bit_DASHshr2] = ACTIONS(2730), + [anon_sym_bit_DASHand2] = ACTIONS(2730), + [anon_sym_bit_DASHxor2] = ACTIONS(2730), + [anon_sym_bit_DASHor2] = ACTIONS(2730), + [anon_sym_err_GT] = ACTIONS(2732), + [anon_sym_out_GT] = ACTIONS(2732), + [anon_sym_e_GT] = ACTIONS(2732), + [anon_sym_o_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT] = ACTIONS(2732), + [anon_sym_err_GT_GT] = ACTIONS(2730), + [anon_sym_out_GT_GT] = ACTIONS(2730), + [anon_sym_e_GT_GT] = ACTIONS(2730), + [anon_sym_o_GT_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1169)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1169), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1170)] = { + [aux_sym__repeat_newline] = STATE(1222), + [sym_comment] = STATE(1170), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_err_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_GT_PIPE] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2730), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2730), + [anon_sym_xor2] = ACTIONS(2730), + [anon_sym_or2] = ACTIONS(2730), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2730), + [anon_sym_bit_DASHxor2] = ACTIONS(2730), + [anon_sym_bit_DASHor2] = ACTIONS(2730), + [anon_sym_err_GT] = ACTIONS(2732), + [anon_sym_out_GT] = ACTIONS(2732), + [anon_sym_e_GT] = ACTIONS(2732), + [anon_sym_o_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT] = ACTIONS(2732), + [anon_sym_err_GT_GT] = ACTIONS(2730), + [anon_sym_out_GT_GT] = ACTIONS(2730), + [anon_sym_e_GT_GT] = ACTIONS(2730), + [anon_sym_o_GT_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1171)] = { + [aux_sym__repeat_newline] = STATE(1179), + [sym_comment] = STATE(1171), + [anon_sym_in] = ACTIONS(2720), + [sym__newline] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2720), + [anon_sym_err_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_GT_PIPE] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), + [anon_sym_RPAREN] = ACTIONS(2720), + [anon_sym_GT2] = ACTIONS(2722), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2720), + [anon_sym_has2] = ACTIONS(2720), + [anon_sym_not_DASHhas2] = ACTIONS(2720), + [anon_sym_starts_DASHwith2] = ACTIONS(2720), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), + [anon_sym_ends_DASHwith2] = ACTIONS(2720), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), + [anon_sym_EQ_EQ2] = ACTIONS(2720), + [anon_sym_BANG_EQ2] = ACTIONS(2720), + [anon_sym_LT2] = ACTIONS(2722), + [anon_sym_LT_EQ2] = ACTIONS(2720), + [anon_sym_GT_EQ2] = ACTIONS(2720), + [anon_sym_EQ_TILDE2] = ACTIONS(2720), + [anon_sym_BANG_TILDE2] = ACTIONS(2720), + [anon_sym_like2] = ACTIONS(2720), + [anon_sym_not_DASHlike2] = ACTIONS(2720), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2720), + [anon_sym_bit_DASHxor2] = ACTIONS(2720), + [anon_sym_bit_DASHor2] = ACTIONS(2720), + [anon_sym_err_GT] = ACTIONS(2722), + [anon_sym_out_GT] = ACTIONS(2722), + [anon_sym_e_GT] = ACTIONS(2722), + [anon_sym_o_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT] = ACTIONS(2722), + [anon_sym_err_GT_GT] = ACTIONS(2720), + [anon_sym_out_GT_GT] = ACTIONS(2720), + [anon_sym_e_GT_GT] = ACTIONS(2720), + [anon_sym_o_GT_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1172)] = { + [aux_sym__repeat_newline] = STATE(1224), + [sym_comment] = STATE(1172), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_err_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_GT_PIPE] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2730), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2730), + [anon_sym_xor2] = ACTIONS(2730), + [anon_sym_or2] = ACTIONS(2730), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2730), + [anon_sym_bit_DASHor2] = ACTIONS(2730), + [anon_sym_err_GT] = ACTIONS(2732), + [anon_sym_out_GT] = ACTIONS(2732), + [anon_sym_e_GT] = ACTIONS(2732), + [anon_sym_o_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT] = ACTIONS(2732), + [anon_sym_err_GT_GT] = ACTIONS(2730), + [anon_sym_out_GT_GT] = ACTIONS(2730), + [anon_sym_e_GT_GT] = ACTIONS(2730), + [anon_sym_o_GT_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1173)] = { + [aux_sym__repeat_newline] = STATE(1184), + [sym_comment] = STATE(1173), + [anon_sym_in] = ACTIONS(2754), + [sym__newline] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_err_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_GT_PIPE] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_GT2] = ACTIONS(2756), + [anon_sym_DASH2] = ACTIONS(2754), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2754), + [anon_sym_xor2] = ACTIONS(2754), + [anon_sym_or2] = ACTIONS(2754), + [anon_sym_not_DASHin2] = ACTIONS(2754), + [anon_sym_has2] = ACTIONS(2754), + [anon_sym_not_DASHhas2] = ACTIONS(2754), + [anon_sym_starts_DASHwith2] = ACTIONS(2754), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2754), + [anon_sym_ends_DASHwith2] = ACTIONS(2754), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2754), + [anon_sym_EQ_EQ2] = ACTIONS(2754), + [anon_sym_BANG_EQ2] = ACTIONS(2754), + [anon_sym_LT2] = ACTIONS(2756), + [anon_sym_LT_EQ2] = ACTIONS(2754), + [anon_sym_GT_EQ2] = ACTIONS(2754), + [anon_sym_EQ_TILDE2] = ACTIONS(2754), + [anon_sym_BANG_TILDE2] = ACTIONS(2754), + [anon_sym_like2] = ACTIONS(2754), + [anon_sym_not_DASHlike2] = ACTIONS(2754), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2756), + [anon_sym_bit_DASHshl2] = ACTIONS(2754), + [anon_sym_bit_DASHshr2] = ACTIONS(2754), + [anon_sym_bit_DASHand2] = ACTIONS(2754), + [anon_sym_bit_DASHxor2] = ACTIONS(2754), + [anon_sym_bit_DASHor2] = ACTIONS(2754), + [anon_sym_err_GT] = ACTIONS(2756), + [anon_sym_out_GT] = ACTIONS(2756), + [anon_sym_e_GT] = ACTIONS(2756), + [anon_sym_o_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT] = ACTIONS(2756), + [anon_sym_err_GT_GT] = ACTIONS(2754), + [anon_sym_out_GT_GT] = ACTIONS(2754), + [anon_sym_e_GT_GT] = ACTIONS(2754), + [anon_sym_o_GT_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1174)] = { + [aux_sym__repeat_newline] = STATE(1228), + [sym_comment] = STATE(1174), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_err_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_GT_PIPE] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2730), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2730), + [anon_sym_xor2] = ACTIONS(2730), + [anon_sym_or2] = ACTIONS(2730), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2730), + [anon_sym_err_GT] = ACTIONS(2732), + [anon_sym_out_GT] = ACTIONS(2732), + [anon_sym_e_GT] = ACTIONS(2732), + [anon_sym_o_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT] = ACTIONS(2732), + [anon_sym_err_GT_GT] = ACTIONS(2730), + [anon_sym_out_GT_GT] = ACTIONS(2730), + [anon_sym_e_GT_GT] = ACTIONS(2730), + [anon_sym_o_GT_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1175)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1175), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1176)] = { + [sym_comment] = STATE(1176), + [anon_sym_in] = ACTIONS(2298), + [sym__newline] = ACTIONS(2306), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_err_GT_PIPE] = ACTIONS(2309), + [anon_sym_out_GT_PIPE] = ACTIONS(2309), + [anon_sym_e_GT_PIPE] = ACTIONS(2309), + [anon_sym_o_GT_PIPE] = ACTIONS(2309), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), + [anon_sym_RPAREN] = ACTIONS(2309), + [anon_sym_GT2] = ACTIONS(2300), + [anon_sym_DASH2] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_STAR2] = ACTIONS(2300), + [anon_sym_and2] = ACTIONS(2298), + [anon_sym_xor2] = ACTIONS(2298), + [anon_sym_or2] = ACTIONS(2298), + [anon_sym_not_DASHin2] = ACTIONS(2298), + [anon_sym_has2] = ACTIONS(2298), + [anon_sym_not_DASHhas2] = ACTIONS(2298), + [anon_sym_starts_DASHwith2] = ACTIONS(2298), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2298), + [anon_sym_ends_DASHwith2] = ACTIONS(2298), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2298), + [anon_sym_EQ_EQ2] = ACTIONS(2298), + [anon_sym_BANG_EQ2] = ACTIONS(2298), + [anon_sym_LT2] = ACTIONS(2300), + [anon_sym_LT_EQ2] = ACTIONS(2298), + [anon_sym_GT_EQ2] = ACTIONS(2298), + [anon_sym_EQ_TILDE2] = ACTIONS(2298), + [anon_sym_BANG_TILDE2] = ACTIONS(2298), + [anon_sym_like2] = ACTIONS(2298), + [anon_sym_not_DASHlike2] = ACTIONS(2298), + [anon_sym_STAR_STAR2] = ACTIONS(2298), + [anon_sym_PLUS_PLUS2] = ACTIONS(2298), + [anon_sym_SLASH2] = ACTIONS(2300), + [anon_sym_mod2] = ACTIONS(2298), + [anon_sym_SLASH_SLASH2] = ACTIONS(2298), + [anon_sym_PLUS2] = ACTIONS(2300), + [anon_sym_bit_DASHshl2] = ACTIONS(2298), + [anon_sym_bit_DASHshr2] = ACTIONS(2298), + [anon_sym_bit_DASHand2] = ACTIONS(2298), + [anon_sym_bit_DASHxor2] = ACTIONS(2298), + [anon_sym_bit_DASHor2] = ACTIONS(2298), + [anon_sym_err_GT] = ACTIONS(2311), + [anon_sym_out_GT] = ACTIONS(2311), + [anon_sym_e_GT] = ACTIONS(2311), + [anon_sym_o_GT] = ACTIONS(2311), + [anon_sym_err_PLUSout_GT] = ACTIONS(2311), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), + [anon_sym_o_PLUSe_GT] = ACTIONS(2311), + [anon_sym_e_PLUSo_GT] = ACTIONS(2311), + [anon_sym_err_GT_GT] = ACTIONS(2309), + [anon_sym_out_GT_GT] = ACTIONS(2309), + [anon_sym_e_GT_GT] = ACTIONS(2309), + [anon_sym_o_GT_GT] = ACTIONS(2309), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1177)] = { + [aux_sym__repeat_newline] = STATE(1215), + [sym_comment] = STATE(1177), + [anon_sym_in] = ACTIONS(2754), + [sym__newline] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_err_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_GT_PIPE] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_GT2] = ACTIONS(2756), + [anon_sym_DASH2] = ACTIONS(2754), + [anon_sym_STAR2] = ACTIONS(2756), + [anon_sym_and2] = ACTIONS(2754), + [anon_sym_xor2] = ACTIONS(2754), + [anon_sym_or2] = ACTIONS(2754), + [anon_sym_not_DASHin2] = ACTIONS(2754), + [anon_sym_has2] = ACTIONS(2754), + [anon_sym_not_DASHhas2] = ACTIONS(2754), + [anon_sym_starts_DASHwith2] = ACTIONS(2754), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2754), + [anon_sym_ends_DASHwith2] = ACTIONS(2754), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2754), + [anon_sym_EQ_EQ2] = ACTIONS(2754), + [anon_sym_BANG_EQ2] = ACTIONS(2754), + [anon_sym_LT2] = ACTIONS(2756), + [anon_sym_LT_EQ2] = ACTIONS(2754), + [anon_sym_GT_EQ2] = ACTIONS(2754), + [anon_sym_EQ_TILDE2] = ACTIONS(2754), + [anon_sym_BANG_TILDE2] = ACTIONS(2754), + [anon_sym_like2] = ACTIONS(2754), + [anon_sym_not_DASHlike2] = ACTIONS(2754), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2756), + [anon_sym_mod2] = ACTIONS(2754), + [anon_sym_SLASH_SLASH2] = ACTIONS(2754), + [anon_sym_PLUS2] = ACTIONS(2756), + [anon_sym_bit_DASHshl2] = ACTIONS(2754), + [anon_sym_bit_DASHshr2] = ACTIONS(2754), + [anon_sym_bit_DASHand2] = ACTIONS(2754), + [anon_sym_bit_DASHxor2] = ACTIONS(2754), + [anon_sym_bit_DASHor2] = ACTIONS(2754), + [anon_sym_err_GT] = ACTIONS(2756), + [anon_sym_out_GT] = ACTIONS(2756), + [anon_sym_e_GT] = ACTIONS(2756), + [anon_sym_o_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT] = ACTIONS(2756), + [anon_sym_err_GT_GT] = ACTIONS(2754), + [anon_sym_out_GT_GT] = ACTIONS(2754), + [anon_sym_e_GT_GT] = ACTIONS(2754), + [anon_sym_o_GT_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1178)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1178), + [anon_sym_in] = ACTIONS(2738), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2738), + [anon_sym_has2] = ACTIONS(2738), + [anon_sym_not_DASHhas2] = ACTIONS(2738), + [anon_sym_starts_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2738), + [anon_sym_ends_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2738), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2738), + [anon_sym_BANG_TILDE2] = ACTIONS(2738), + [anon_sym_like2] = ACTIONS(2738), + [anon_sym_not_DASHlike2] = ACTIONS(2738), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2738), + [anon_sym_bit_DASHxor2] = ACTIONS(2738), + [anon_sym_bit_DASHor2] = ACTIONS(2738), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1179)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1179), + [anon_sym_in] = ACTIONS(2738), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2740), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2738), + [anon_sym_has2] = ACTIONS(2738), + [anon_sym_not_DASHhas2] = ACTIONS(2738), + [anon_sym_starts_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2738), + [anon_sym_ends_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2738), + [anon_sym_EQ_EQ2] = ACTIONS(2738), + [anon_sym_BANG_EQ2] = ACTIONS(2738), + [anon_sym_LT2] = ACTIONS(2740), + [anon_sym_LT_EQ2] = ACTIONS(2738), + [anon_sym_GT_EQ2] = ACTIONS(2738), + [anon_sym_EQ_TILDE2] = ACTIONS(2738), + [anon_sym_BANG_TILDE2] = ACTIONS(2738), + [anon_sym_like2] = ACTIONS(2738), + [anon_sym_not_DASHlike2] = ACTIONS(2738), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2738), + [anon_sym_bit_DASHxor2] = ACTIONS(2738), + [anon_sym_bit_DASHor2] = ACTIONS(2738), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1180)] = { + [aux_sym__repeat_newline] = STATE(1181), + [sym_comment] = STATE(1180), + [anon_sym_in] = ACTIONS(2720), + [sym__newline] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2720), + [anon_sym_err_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_GT_PIPE] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), + [anon_sym_RPAREN] = ACTIONS(2720), + [anon_sym_GT2] = ACTIONS(2722), + [anon_sym_DASH2] = ACTIONS(2720), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2720), + [anon_sym_has2] = ACTIONS(2720), + [anon_sym_not_DASHhas2] = ACTIONS(2720), + [anon_sym_starts_DASHwith2] = ACTIONS(2720), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), + [anon_sym_ends_DASHwith2] = ACTIONS(2720), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), + [anon_sym_EQ_EQ2] = ACTIONS(2720), + [anon_sym_BANG_EQ2] = ACTIONS(2720), + [anon_sym_LT2] = ACTIONS(2722), + [anon_sym_LT_EQ2] = ACTIONS(2720), + [anon_sym_GT_EQ2] = ACTIONS(2720), + [anon_sym_EQ_TILDE2] = ACTIONS(2720), + [anon_sym_BANG_TILDE2] = ACTIONS(2720), + [anon_sym_like2] = ACTIONS(2720), + [anon_sym_not_DASHlike2] = ACTIONS(2720), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2722), + [anon_sym_bit_DASHshl2] = ACTIONS(2720), + [anon_sym_bit_DASHshr2] = ACTIONS(2720), + [anon_sym_bit_DASHand2] = ACTIONS(2720), + [anon_sym_bit_DASHxor2] = ACTIONS(2720), + [anon_sym_bit_DASHor2] = ACTIONS(2720), + [anon_sym_err_GT] = ACTIONS(2722), + [anon_sym_out_GT] = ACTIONS(2722), + [anon_sym_e_GT] = ACTIONS(2722), + [anon_sym_o_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT] = ACTIONS(2722), + [anon_sym_err_GT_GT] = ACTIONS(2720), + [anon_sym_out_GT_GT] = ACTIONS(2720), + [anon_sym_e_GT_GT] = ACTIONS(2720), + [anon_sym_o_GT_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1181)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1181), + [anon_sym_in] = ACTIONS(2738), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2740), + [anon_sym_DASH2] = ACTIONS(2738), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2738), + [anon_sym_has2] = ACTIONS(2738), + [anon_sym_not_DASHhas2] = ACTIONS(2738), + [anon_sym_starts_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2738), + [anon_sym_ends_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2738), + [anon_sym_EQ_EQ2] = ACTIONS(2738), + [anon_sym_BANG_EQ2] = ACTIONS(2738), + [anon_sym_LT2] = ACTIONS(2740), + [anon_sym_LT_EQ2] = ACTIONS(2738), + [anon_sym_GT_EQ2] = ACTIONS(2738), + [anon_sym_EQ_TILDE2] = ACTIONS(2738), + [anon_sym_BANG_TILDE2] = ACTIONS(2738), + [anon_sym_like2] = ACTIONS(2738), + [anon_sym_not_DASHlike2] = ACTIONS(2738), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2740), + [anon_sym_bit_DASHshl2] = ACTIONS(2738), + [anon_sym_bit_DASHshr2] = ACTIONS(2738), + [anon_sym_bit_DASHand2] = ACTIONS(2738), + [anon_sym_bit_DASHxor2] = ACTIONS(2738), + [anon_sym_bit_DASHor2] = ACTIONS(2738), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1182)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1182), + [anon_sym_in] = ACTIONS(2738), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2740), + [anon_sym_DASH2] = ACTIONS(2738), + [anon_sym_STAR2] = ACTIONS(2740), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2738), + [anon_sym_has2] = ACTIONS(2738), + [anon_sym_not_DASHhas2] = ACTIONS(2738), + [anon_sym_starts_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2738), + [anon_sym_ends_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2738), + [anon_sym_EQ_EQ2] = ACTIONS(2738), + [anon_sym_BANG_EQ2] = ACTIONS(2738), + [anon_sym_LT2] = ACTIONS(2740), + [anon_sym_LT_EQ2] = ACTIONS(2738), + [anon_sym_GT_EQ2] = ACTIONS(2738), + [anon_sym_EQ_TILDE2] = ACTIONS(2738), + [anon_sym_BANG_TILDE2] = ACTIONS(2738), + [anon_sym_like2] = ACTIONS(2738), + [anon_sym_not_DASHlike2] = ACTIONS(2738), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2740), + [anon_sym_mod2] = ACTIONS(2738), + [anon_sym_SLASH_SLASH2] = ACTIONS(2738), + [anon_sym_PLUS2] = ACTIONS(2740), + [anon_sym_bit_DASHshl2] = ACTIONS(2738), + [anon_sym_bit_DASHshr2] = ACTIONS(2738), + [anon_sym_bit_DASHand2] = ACTIONS(2738), + [anon_sym_bit_DASHxor2] = ACTIONS(2738), + [anon_sym_bit_DASHor2] = ACTIONS(2738), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1183)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1183), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2935), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1184)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1184), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1185)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1185), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2937), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2935), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1186)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1186), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2937), + [anon_sym_xor2] = ACTIONS(2939), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2935), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1187)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1187), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2738), + [anon_sym_BANG_TILDE2] = ACTIONS(2738), + [anon_sym_like2] = ACTIONS(2738), + [anon_sym_not_DASHlike2] = ACTIONS(2738), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2738), + [anon_sym_bit_DASHxor2] = ACTIONS(2738), + [anon_sym_bit_DASHor2] = ACTIONS(2738), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1188)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1188), + [anon_sym_in] = ACTIONS(2738), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2740), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2738), + [anon_sym_has2] = ACTIONS(2738), + [anon_sym_not_DASHhas2] = ACTIONS(2738), + [anon_sym_starts_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2738), + [anon_sym_ends_DASHwith2] = ACTIONS(2738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2738), + [anon_sym_EQ_EQ2] = ACTIONS(2738), + [anon_sym_BANG_EQ2] = ACTIONS(2738), + [anon_sym_LT2] = ACTIONS(2740), + [anon_sym_LT_EQ2] = ACTIONS(2738), + [anon_sym_GT_EQ2] = ACTIONS(2738), + [anon_sym_EQ_TILDE2] = ACTIONS(2738), + [anon_sym_BANG_TILDE2] = ACTIONS(2738), + [anon_sym_like2] = ACTIONS(2738), + [anon_sym_not_DASHlike2] = ACTIONS(2738), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2738), + [anon_sym_bit_DASHshr2] = ACTIONS(2738), + [anon_sym_bit_DASHand2] = ACTIONS(2738), + [anon_sym_bit_DASHxor2] = ACTIONS(2738), + [anon_sym_bit_DASHor2] = ACTIONS(2738), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1189)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1189), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2738), + [anon_sym_bit_DASHxor2] = ACTIONS(2738), + [anon_sym_bit_DASHor2] = ACTIONS(2738), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1190)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1190), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2738), + [anon_sym_bit_DASHor2] = ACTIONS(2738), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1191)] = { + [sym_comment] = STATE(1191), + [aux_sym_cmd_identifier_token2] = ACTIONS(2682), + [anon_sym_in] = ACTIONS(2527), + [sym__newline] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_err_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_GT_PIPE] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2525), + [anon_sym_GT2] = ACTIONS(2527), + [anon_sym_DASH2] = ACTIONS(2527), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_STAR2] = ACTIONS(2527), + [anon_sym_and2] = ACTIONS(2527), + [anon_sym_xor2] = ACTIONS(2527), + [anon_sym_or2] = ACTIONS(2527), + [anon_sym_not_DASHin2] = ACTIONS(2527), + [anon_sym_has2] = ACTIONS(2527), + [anon_sym_not_DASHhas2] = ACTIONS(2527), + [anon_sym_starts_DASHwith2] = ACTIONS(2527), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2527), + [anon_sym_ends_DASHwith2] = ACTIONS(2527), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2527), + [anon_sym_EQ_EQ2] = ACTIONS(2525), + [anon_sym_BANG_EQ2] = ACTIONS(2525), + [anon_sym_LT2] = ACTIONS(2527), + [anon_sym_LT_EQ2] = ACTIONS(2525), + [anon_sym_GT_EQ2] = ACTIONS(2525), + [anon_sym_EQ_TILDE2] = ACTIONS(2525), + [anon_sym_BANG_TILDE2] = ACTIONS(2527), + [anon_sym_like2] = ACTIONS(2527), + [anon_sym_not_DASHlike2] = ACTIONS(2527), + [anon_sym_STAR_STAR2] = ACTIONS(2527), + [anon_sym_PLUS_PLUS2] = ACTIONS(2527), + [anon_sym_SLASH2] = ACTIONS(2527), + [anon_sym_mod2] = ACTIONS(2527), + [anon_sym_SLASH_SLASH2] = ACTIONS(2527), + [anon_sym_PLUS2] = ACTIONS(2527), + [anon_sym_bit_DASHshl2] = ACTIONS(2527), + [anon_sym_bit_DASHshr2] = ACTIONS(2527), + [anon_sym_bit_DASHand2] = ACTIONS(2527), + [anon_sym_bit_DASHxor2] = ACTIONS(2527), + [anon_sym_bit_DASHor2] = ACTIONS(2527), + [anon_sym_err_GT] = ACTIONS(2527), + [anon_sym_out_GT] = ACTIONS(2527), + [anon_sym_e_GT] = ACTIONS(2527), + [anon_sym_o_GT] = ACTIONS(2527), + [anon_sym_err_PLUSout_GT] = ACTIONS(2527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2527), + [anon_sym_o_PLUSe_GT] = ACTIONS(2527), + [anon_sym_e_PLUSo_GT] = ACTIONS(2527), + [anon_sym_err_GT_GT] = ACTIONS(2525), + [anon_sym_out_GT_GT] = ACTIONS(2525), + [anon_sym_e_GT_GT] = ACTIONS(2525), + [anon_sym_o_GT_GT] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2525), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1192)] = { + [sym_comment] = STATE(1192), + [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(527), + [sym_comment] = STATE(1193), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_err_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_GT_PIPE] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2738), + [anon_sym_xor2] = ACTIONS(2738), + [anon_sym_or2] = ACTIONS(2738), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2738), + [anon_sym_err_GT] = ACTIONS(2740), + [anon_sym_out_GT] = ACTIONS(2740), + [anon_sym_e_GT] = ACTIONS(2740), + [anon_sym_o_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT] = ACTIONS(2740), + [anon_sym_err_GT_GT] = ACTIONS(2738), + [anon_sym_out_GT_GT] = ACTIONS(2738), + [anon_sym_e_GT_GT] = ACTIONS(2738), + [anon_sym_o_GT_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2738), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1194)] = { + [aux_sym__repeat_newline] = STATE(1231), + [sym_comment] = STATE(1194), [anon_sym_in] = ACTIONS(2746), - [sym__newline] = ACTIONS(2746), + [sym__newline] = ACTIONS(2941), [anon_sym_SEMI] = ACTIONS(2746), [anon_sym_PIPE] = ACTIONS(2746), [anon_sym_err_GT_PIPE] = ACTIONS(2746), @@ -133002,9 +135261,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), + [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), @@ -133015,23 +135274,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), + [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(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [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), @@ -133053,78 +135312,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1167)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1167), - [anon_sym_in] = ACTIONS(2710), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2712), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2710), - [anon_sym_has2] = ACTIONS(2710), - [anon_sym_not_DASHhas2] = ACTIONS(2710), - [anon_sym_starts_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), - [anon_sym_ends_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), - [anon_sym_EQ_EQ2] = ACTIONS(2710), - [anon_sym_BANG_EQ2] = ACTIONS(2710), - [anon_sym_LT2] = ACTIONS(2712), - [anon_sym_LT_EQ2] = ACTIONS(2710), - [anon_sym_GT_EQ2] = ACTIONS(2710), - [anon_sym_EQ_TILDE2] = ACTIONS(2710), - [anon_sym_BANG_TILDE2] = ACTIONS(2710), - [anon_sym_like2] = ACTIONS(2710), - [anon_sym_not_DASHlike2] = ACTIONS(2710), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [STATE(1195)] = { + [aux_sym__repeat_newline] = STATE(1219), + [sym_comment] = STATE(1195), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_err_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_GT_PIPE] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2754), + [anon_sym_xor2] = ACTIONS(2754), + [anon_sym_or2] = ACTIONS(2754), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_err_GT] = ACTIONS(2756), + [anon_sym_out_GT] = ACTIONS(2756), + [anon_sym_e_GT] = ACTIONS(2756), + [anon_sym_o_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT] = ACTIONS(2756), + [anon_sym_err_GT_GT] = ACTIONS(2754), + [anon_sym_out_GT_GT] = ACTIONS(2754), + [anon_sym_e_GT_GT] = ACTIONS(2754), + [anon_sym_o_GT_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1168)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1168), + [STATE(1196)] = { + [aux_sym__repeat_newline] = STATE(1230), + [sym_comment] = STATE(1196), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_err_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_GT_PIPE] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2905), + [anon_sym_xor2] = ACTIONS(2754), + [anon_sym_or2] = ACTIONS(2754), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_err_GT] = ACTIONS(2756), + [anon_sym_out_GT] = ACTIONS(2756), + [anon_sym_e_GT] = ACTIONS(2756), + [anon_sym_o_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT] = ACTIONS(2756), + [anon_sym_err_GT_GT] = ACTIONS(2754), + [anon_sym_out_GT_GT] = ACTIONS(2754), + [anon_sym_e_GT_GT] = ACTIONS(2754), + [anon_sym_o_GT_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1197)] = { + [aux_sym__repeat_newline] = STATE(1182), + [sym_comment] = STATE(1197), + [anon_sym_in] = ACTIONS(2720), + [sym__newline] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2720), + [anon_sym_err_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_GT_PIPE] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), + [anon_sym_RPAREN] = ACTIONS(2720), + [anon_sym_GT2] = ACTIONS(2722), + [anon_sym_DASH2] = ACTIONS(2720), + [anon_sym_STAR2] = ACTIONS(2722), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2720), + [anon_sym_has2] = ACTIONS(2720), + [anon_sym_not_DASHhas2] = ACTIONS(2720), + [anon_sym_starts_DASHwith2] = ACTIONS(2720), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), + [anon_sym_ends_DASHwith2] = ACTIONS(2720), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), + [anon_sym_EQ_EQ2] = ACTIONS(2720), + [anon_sym_BANG_EQ2] = ACTIONS(2720), + [anon_sym_LT2] = ACTIONS(2722), + [anon_sym_LT_EQ2] = ACTIONS(2720), + [anon_sym_GT_EQ2] = ACTIONS(2720), + [anon_sym_EQ_TILDE2] = ACTIONS(2720), + [anon_sym_BANG_TILDE2] = ACTIONS(2720), + [anon_sym_like2] = ACTIONS(2720), + [anon_sym_not_DASHlike2] = ACTIONS(2720), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2722), + [anon_sym_mod2] = ACTIONS(2720), + [anon_sym_SLASH_SLASH2] = ACTIONS(2720), + [anon_sym_PLUS2] = ACTIONS(2722), + [anon_sym_bit_DASHshl2] = ACTIONS(2720), + [anon_sym_bit_DASHshr2] = ACTIONS(2720), + [anon_sym_bit_DASHand2] = ACTIONS(2720), + [anon_sym_bit_DASHxor2] = ACTIONS(2720), + [anon_sym_bit_DASHor2] = ACTIONS(2720), + [anon_sym_err_GT] = ACTIONS(2722), + [anon_sym_out_GT] = ACTIONS(2722), + [anon_sym_e_GT] = ACTIONS(2722), + [anon_sym_o_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT] = ACTIONS(2722), + [anon_sym_err_GT_GT] = ACTIONS(2720), + [anon_sym_out_GT_GT] = ACTIONS(2720), + [anon_sym_e_GT_GT] = ACTIONS(2720), + [anon_sym_o_GT_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_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(2746), + [sym__newline] = ACTIONS(2941), [anon_sym_SEMI] = ACTIONS(2746), [anon_sym_PIPE] = ACTIONS(2746), [anon_sym_err_GT_PIPE] = ACTIONS(2746), @@ -133137,8 +135597,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), [anon_sym_RPAREN] = ACTIONS(2746), [anon_sym_GT2] = ACTIONS(2748), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), + [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), @@ -133158,14 +135618,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2746), [anon_sym_like2] = ACTIONS(2746), [anon_sym_not_DASHlike2] = ACTIONS(2746), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [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), @@ -133187,78 +135647,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1169)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1169), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2816), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [STATE(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(1170)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1170), + [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(2746), + [sym__newline] = ACTIONS(2941), [anon_sym_SEMI] = ACTIONS(2746), [anon_sym_PIPE] = ACTIONS(2746), [anon_sym_err_GT_PIPE] = ACTIONS(2746), @@ -133272,7 +135799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(2746), [anon_sym_GT2] = ACTIONS(2748), [anon_sym_DASH2] = ACTIONS(2746), - [anon_sym_STAR2] = ACTIONS(2798), + [anon_sym_STAR2] = ACTIONS(2811), [anon_sym_and2] = ACTIONS(2746), [anon_sym_xor2] = ACTIONS(2746), [anon_sym_or2] = ACTIONS(2746), @@ -133292,11 +135819,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2746), [anon_sym_like2] = ACTIONS(2746), [anon_sym_not_DASHlike2] = ACTIONS(2746), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), + [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), @@ -133321,78 +135848,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1171)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1171), - [anon_sym_in] = ACTIONS(2710), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2712), - [anon_sym_DASH2] = ACTIONS(2710), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2710), - [anon_sym_has2] = ACTIONS(2710), - [anon_sym_not_DASHhas2] = ACTIONS(2710), - [anon_sym_starts_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), - [anon_sym_ends_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), - [anon_sym_EQ_EQ2] = ACTIONS(2710), - [anon_sym_BANG_EQ2] = ACTIONS(2710), - [anon_sym_LT2] = ACTIONS(2712), - [anon_sym_LT_EQ2] = ACTIONS(2710), - [anon_sym_GT_EQ2] = ACTIONS(2710), - [anon_sym_EQ_TILDE2] = ACTIONS(2710), - [anon_sym_BANG_TILDE2] = ACTIONS(2710), - [anon_sym_like2] = ACTIONS(2710), - [anon_sym_not_DASHlike2] = ACTIONS(2710), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2712), - [anon_sym_bit_DASHshl2] = ACTIONS(2710), - [anon_sym_bit_DASHshr2] = ACTIONS(2710), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [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(1172)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1172), + [STATE(1204)] = { + [aux_sym__repeat_newline] = STATE(1235), + [sym_comment] = STATE(1204), [anon_sym_in] = ACTIONS(2746), - [sym__newline] = ACTIONS(2746), + [sym__newline] = ACTIONS(2941), [anon_sym_SEMI] = ACTIONS(2746), [anon_sym_PIPE] = ACTIONS(2746), [anon_sym_err_GT_PIPE] = ACTIONS(2746), @@ -133426,8 +135953,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2746), [anon_sym_like2] = ACTIONS(2746), [anon_sym_not_DASHlike2] = ACTIONS(2746), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), + [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), @@ -133455,78 +135982,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1173)] = { - [sym_comment] = STATE(1173), - [anon_sym_in] = ACTIONS(2578), - [sym__newline] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_err_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_GT_PIPE] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), - [anon_sym_RPAREN] = ACTIONS(2578), - [anon_sym_GT2] = ACTIONS(2855), - [anon_sym_DASH2] = ACTIONS(2857), - [anon_sym_RBRACE] = ACTIONS(2578), - [anon_sym_STAR2] = ACTIONS(2859), - [anon_sym_and2] = ACTIONS(2578), - [anon_sym_xor2] = ACTIONS(2578), - [anon_sym_or2] = ACTIONS(2578), - [anon_sym_not_DASHin2] = ACTIONS(2578), - [anon_sym_has2] = ACTIONS(2578), - [anon_sym_not_DASHhas2] = ACTIONS(2578), - [anon_sym_starts_DASHwith2] = ACTIONS(2578), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2578), - [anon_sym_ends_DASHwith2] = ACTIONS(2578), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2578), - [anon_sym_EQ_EQ2] = ACTIONS(2861), - [anon_sym_BANG_EQ2] = ACTIONS(2861), - [anon_sym_LT2] = ACTIONS(2855), - [anon_sym_LT_EQ2] = ACTIONS(2861), - [anon_sym_GT_EQ2] = ACTIONS(2861), - [anon_sym_EQ_TILDE2] = ACTIONS(2578), - [anon_sym_BANG_TILDE2] = ACTIONS(2578), - [anon_sym_like2] = ACTIONS(2578), - [anon_sym_not_DASHlike2] = ACTIONS(2578), - [anon_sym_STAR_STAR2] = ACTIONS(2865), - [anon_sym_PLUS_PLUS2] = ACTIONS(2865), - [anon_sym_SLASH2] = ACTIONS(2859), - [anon_sym_mod2] = ACTIONS(2867), - [anon_sym_SLASH_SLASH2] = ACTIONS(2867), - [anon_sym_PLUS2] = ACTIONS(2869), - [anon_sym_bit_DASHshl2] = ACTIONS(2871), - [anon_sym_bit_DASHshr2] = ACTIONS(2871), - [anon_sym_bit_DASHand2] = ACTIONS(2578), - [anon_sym_bit_DASHxor2] = ACTIONS(2578), - [anon_sym_bit_DASHor2] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2578), - [anon_sym_out_GT_GT] = ACTIONS(2578), - [anon_sym_e_GT_GT] = ACTIONS(2578), - [anon_sym_o_GT_GT] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), + [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(1174)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1174), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2746), + [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), @@ -133538,39 +136132,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), + [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(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2816), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2820), + [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), @@ -133589,78 +136183,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1175)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1175), - [anon_sym_in] = ACTIONS(2710), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2712), - [anon_sym_DASH2] = ACTIONS(2710), - [anon_sym_STAR2] = ACTIONS(2712), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2710), - [anon_sym_has2] = ACTIONS(2710), - [anon_sym_not_DASHhas2] = ACTIONS(2710), - [anon_sym_starts_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), - [anon_sym_ends_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), - [anon_sym_EQ_EQ2] = ACTIONS(2710), - [anon_sym_BANG_EQ2] = ACTIONS(2710), - [anon_sym_LT2] = ACTIONS(2712), - [anon_sym_LT_EQ2] = ACTIONS(2710), - [anon_sym_GT_EQ2] = ACTIONS(2710), - [anon_sym_EQ_TILDE2] = ACTIONS(2710), - [anon_sym_BANG_TILDE2] = ACTIONS(2710), - [anon_sym_like2] = ACTIONS(2710), - [anon_sym_not_DASHlike2] = ACTIONS(2710), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2712), - [anon_sym_mod2] = ACTIONS(2710), - [anon_sym_SLASH_SLASH2] = ACTIONS(2710), - [anon_sym_PLUS2] = ACTIONS(2712), - [anon_sym_bit_DASHshl2] = ACTIONS(2710), - [anon_sym_bit_DASHshr2] = ACTIONS(2710), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [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(1176)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1176), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2746), + [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), @@ -133672,39 +136266,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2800), + [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(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2816), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2820), + [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), @@ -133723,212 +136317,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1177)] = { - [aux_sym__repeat_newline] = STATE(1216), - [sym_comment] = STATE(1177), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2822), - [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(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [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(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [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(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [STATE(1210)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1210), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2937), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2935), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1178)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1178), - [anon_sym_in] = ACTIONS(2792), - [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(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2800), - [anon_sym_xor2] = ACTIONS(2802), - [anon_sym_or2] = ACTIONS(2746), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2816), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2820), - [anon_sym_err_GT] = ACTIONS(2748), - [anon_sym_out_GT] = ACTIONS(2748), - [anon_sym_e_GT] = ACTIONS(2748), - [anon_sym_o_GT] = ACTIONS(2748), - [anon_sym_err_PLUSout_GT] = ACTIONS(2748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2748), - [anon_sym_o_PLUSe_GT] = ACTIONS(2748), - [anon_sym_e_PLUSo_GT] = ACTIONS(2748), - [anon_sym_err_GT_GT] = ACTIONS(2746), - [anon_sym_out_GT_GT] = ACTIONS(2746), - [anon_sym_e_GT_GT] = ACTIONS(2746), - [anon_sym_o_GT_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), + [STATE(1211)] = { + [aux_sym__repeat_newline] = STATE(1198), + [sym_comment] = STATE(1211), + [anon_sym_in] = ACTIONS(2730), + [sym__newline] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_err_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_GT_PIPE] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2730), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2730), + [anon_sym_xor2] = ACTIONS(2730), + [anon_sym_or2] = ACTIONS(2730), + [anon_sym_not_DASHin2] = ACTIONS(2730), + [anon_sym_has2] = ACTIONS(2730), + [anon_sym_not_DASHhas2] = ACTIONS(2730), + [anon_sym_starts_DASHwith2] = ACTIONS(2730), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2730), + [anon_sym_ends_DASHwith2] = ACTIONS(2730), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2730), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2730), + [anon_sym_BANG_TILDE2] = ACTIONS(2730), + [anon_sym_like2] = ACTIONS(2730), + [anon_sym_not_DASHlike2] = ACTIONS(2730), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2730), + [anon_sym_bit_DASHxor2] = ACTIONS(2730), + [anon_sym_bit_DASHor2] = ACTIONS(2730), + [anon_sym_err_GT] = ACTIONS(2732), + [anon_sym_out_GT] = ACTIONS(2732), + [anon_sym_e_GT] = ACTIONS(2732), + [anon_sym_o_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT] = ACTIONS(2732), + [anon_sym_err_GT_GT] = ACTIONS(2730), + [anon_sym_out_GT_GT] = ACTIONS(2730), + [anon_sym_e_GT_GT] = ACTIONS(2730), + [anon_sym_o_GT_GT] = ACTIONS(2730), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1179)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1179), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2816), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2820), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [STATE(1212)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1212), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2937), + [anon_sym_xor2] = ACTIONS(2939), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2933), + [anon_sym_bit_DASHor2] = ACTIONS(2935), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1180)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1180), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2746), + [STATE(1213)] = { + [aux_sym__repeat_newline] = STATE(1241), + [sym_comment] = STATE(1213), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2941), [anon_sym_SEMI] = ACTIONS(2746), [anon_sym_PIPE] = ACTIONS(2746), [anon_sym_err_GT_PIPE] = ACTIONS(2746), @@ -133940,36 +136534,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), + [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(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = 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(2746), [anon_sym_BANG_TILDE2] = ACTIONS(2746), [anon_sym_like2] = ACTIONS(2746), [anon_sym_not_DASHlike2] = ACTIONS(2746), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [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), @@ -133991,212 +136585,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1181)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1181), - [anon_sym_in] = ACTIONS(2692), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2694), - [anon_sym_DASH2] = ACTIONS(2692), - [anon_sym_STAR2] = ACTIONS(2694), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2692), - [anon_sym_has2] = ACTIONS(2692), - [anon_sym_not_DASHhas2] = ACTIONS(2692), - [anon_sym_starts_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), - [anon_sym_ends_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), - [anon_sym_EQ_EQ2] = ACTIONS(2692), - [anon_sym_BANG_EQ2] = ACTIONS(2692), - [anon_sym_LT2] = ACTIONS(2694), - [anon_sym_LT_EQ2] = ACTIONS(2692), - [anon_sym_GT_EQ2] = ACTIONS(2692), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2694), - [anon_sym_mod2] = ACTIONS(2692), - [anon_sym_SLASH_SLASH2] = ACTIONS(2692), - [anon_sym_PLUS2] = ACTIONS(2694), - [anon_sym_bit_DASHshl2] = ACTIONS(2692), - [anon_sym_bit_DASHshr2] = ACTIONS(2692), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [STATE(1214)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1214), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2750), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2750), + [anon_sym_BANG_TILDE2] = ACTIONS(2750), + [anon_sym_like2] = ACTIONS(2750), + [anon_sym_not_DASHlike2] = ACTIONS(2750), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2750), + [anon_sym_bit_DASHxor2] = ACTIONS(2750), + [anon_sym_bit_DASHor2] = ACTIONS(2750), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1182)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1182), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2800), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2816), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2820), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [STATE(1215)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1215), + [anon_sym_in] = ACTIONS(2724), + [sym__newline] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_err_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_GT_PIPE] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_GT2] = ACTIONS(2726), + [anon_sym_DASH2] = ACTIONS(2724), + [anon_sym_STAR2] = ACTIONS(2726), + [anon_sym_and2] = ACTIONS(2724), + [anon_sym_xor2] = ACTIONS(2724), + [anon_sym_or2] = ACTIONS(2724), + [anon_sym_not_DASHin2] = ACTIONS(2724), + [anon_sym_has2] = ACTIONS(2724), + [anon_sym_not_DASHhas2] = ACTIONS(2724), + [anon_sym_starts_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), + [anon_sym_ends_DASHwith2] = ACTIONS(2724), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), + [anon_sym_EQ_EQ2] = ACTIONS(2724), + [anon_sym_BANG_EQ2] = ACTIONS(2724), + [anon_sym_LT2] = ACTIONS(2726), + [anon_sym_LT_EQ2] = ACTIONS(2724), + [anon_sym_GT_EQ2] = ACTIONS(2724), + [anon_sym_EQ_TILDE2] = ACTIONS(2724), + [anon_sym_BANG_TILDE2] = ACTIONS(2724), + [anon_sym_like2] = ACTIONS(2724), + [anon_sym_not_DASHlike2] = ACTIONS(2724), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2726), + [anon_sym_mod2] = ACTIONS(2724), + [anon_sym_SLASH_SLASH2] = ACTIONS(2724), + [anon_sym_PLUS2] = ACTIONS(2726), + [anon_sym_bit_DASHshl2] = ACTIONS(2724), + [anon_sym_bit_DASHshr2] = ACTIONS(2724), + [anon_sym_bit_DASHand2] = ACTIONS(2724), + [anon_sym_bit_DASHxor2] = ACTIONS(2724), + [anon_sym_bit_DASHor2] = ACTIONS(2724), + [anon_sym_err_GT] = ACTIONS(2726), + [anon_sym_out_GT] = ACTIONS(2726), + [anon_sym_e_GT] = ACTIONS(2726), + [anon_sym_o_GT] = ACTIONS(2726), + [anon_sym_err_PLUSout_GT] = ACTIONS(2726), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), + [anon_sym_o_PLUSe_GT] = ACTIONS(2726), + [anon_sym_e_PLUSo_GT] = ACTIONS(2726), + [anon_sym_err_GT_GT] = ACTIONS(2724), + [anon_sym_out_GT_GT] = ACTIONS(2724), + [anon_sym_e_GT_GT] = ACTIONS(2724), + [anon_sym_o_GT_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1183)] = { - [aux_sym__repeat_newline] = STATE(1223), - [sym_comment] = STATE(1183), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2822), - [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(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [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(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [STATE(1216)] = { + [aux_sym__repeat_newline] = STATE(1242), + [sym_comment] = STATE(1216), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_err_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_GT_PIPE] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2754), + [anon_sym_RPAREN] = ACTIONS(2754), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2754), + [anon_sym_xor2] = ACTIONS(2754), + [anon_sym_or2] = ACTIONS(2754), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2754), + [anon_sym_BANG_TILDE2] = ACTIONS(2754), + [anon_sym_like2] = ACTIONS(2754), + [anon_sym_not_DASHlike2] = ACTIONS(2754), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2754), + [anon_sym_bit_DASHxor2] = ACTIONS(2754), + [anon_sym_bit_DASHor2] = ACTIONS(2754), + [anon_sym_err_GT] = ACTIONS(2756), + [anon_sym_out_GT] = ACTIONS(2756), + [anon_sym_e_GT] = ACTIONS(2756), + [anon_sym_o_GT] = ACTIONS(2756), + [anon_sym_err_PLUSout_GT] = ACTIONS(2756), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2756), + [anon_sym_o_PLUSe_GT] = ACTIONS(2756), + [anon_sym_e_PLUSo_GT] = ACTIONS(2756), + [anon_sym_err_GT_GT] = ACTIONS(2754), + [anon_sym_out_GT_GT] = ACTIONS(2754), + [anon_sym_e_GT_GT] = ACTIONS(2754), + [anon_sym_o_GT_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2754), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1184)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1184), + [STATE(1217)] = { + [aux_sym__repeat_newline] = STATE(1183), + [sym_comment] = STATE(1217), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2720), + [anon_sym_err_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_GT_PIPE] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), + [anon_sym_RPAREN] = ACTIONS(2720), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_err_GT] = ACTIONS(2722), + [anon_sym_out_GT] = ACTIONS(2722), + [anon_sym_e_GT] = ACTIONS(2722), + [anon_sym_o_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT] = ACTIONS(2722), + [anon_sym_err_GT_GT] = ACTIONS(2720), + [anon_sym_out_GT_GT] = ACTIONS(2720), + [anon_sym_e_GT_GT] = ACTIONS(2720), + [anon_sym_o_GT_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1218)] = { + [aux_sym__repeat_newline] = STATE(1243), + [sym_comment] = STATE(1218), [anon_sym_in] = ACTIONS(2746), - [sym__newline] = ACTIONS(2746), + [sym__newline] = ACTIONS(2941), [anon_sym_SEMI] = ACTIONS(2746), [anon_sym_PIPE] = ACTIONS(2746), [anon_sym_err_GT_PIPE] = ACTIONS(2746), @@ -134209,8 +136870,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2746), [anon_sym_RPAREN] = ACTIONS(2746), [anon_sym_GT2] = ACTIONS(2748), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), + [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), @@ -134230,12 +136891,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2746), [anon_sym_like2] = ACTIONS(2746), [anon_sym_not_DASHlike2] = ACTIONS(2746), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), + [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), @@ -134259,78 +136920,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1185)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1185), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2800), - [anon_sym_xor2] = ACTIONS(2802), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2816), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2820), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [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(1186)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1186), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2746), + [STATE(1220)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1220), + [anon_sym_in] = ACTIONS(2750), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2752), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2750), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2750), + [anon_sym_has2] = ACTIONS(2750), + [anon_sym_not_DASHhas2] = ACTIONS(2750), + [anon_sym_starts_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2750), + [anon_sym_ends_DASHwith2] = ACTIONS(2750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2750), + [anon_sym_EQ_EQ2] = ACTIONS(2750), + [anon_sym_BANG_EQ2] = ACTIONS(2750), + [anon_sym_LT2] = ACTIONS(2752), + [anon_sym_LT_EQ2] = ACTIONS(2750), + [anon_sym_GT_EQ2] = ACTIONS(2750), + [anon_sym_EQ_TILDE2] = ACTIONS(2750), + [anon_sym_BANG_TILDE2] = ACTIONS(2750), + [anon_sym_like2] = ACTIONS(2750), + [anon_sym_not_DASHlike2] = ACTIONS(2750), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2750), + [anon_sym_bit_DASHshr2] = ACTIONS(2750), + [anon_sym_bit_DASHand2] = ACTIONS(2750), + [anon_sym_bit_DASHxor2] = ACTIONS(2750), + [anon_sym_bit_DASHor2] = ACTIONS(2750), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1221)] = { + [aux_sym__repeat_newline] = STATE(1244), + [sym_comment] = STATE(1221), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2941), [anon_sym_SEMI] = ACTIONS(2746), [anon_sym_PIPE] = ACTIONS(2746), [anon_sym_err_GT_PIPE] = ACTIONS(2746), @@ -134342,36 +137070,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), + [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(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), + [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), @@ -134393,78 +137121,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1187)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1187), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2800), - [anon_sym_xor2] = ACTIONS(2802), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2816), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2820), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [STATE(1222)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1222), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2750), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2750), + [anon_sym_bit_DASHxor2] = ACTIONS(2750), + [anon_sym_bit_DASHor2] = ACTIONS(2750), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1188)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1188), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2746), + [STATE(1223)] = { + [aux_sym__repeat_newline] = STATE(1245), + [sym_comment] = STATE(1223), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2941), [anon_sym_SEMI] = ACTIONS(2746), [anon_sym_PIPE] = ACTIONS(2746), [anon_sym_err_GT_PIPE] = ACTIONS(2746), @@ -134476,37 +137204,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), + [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(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2816), + [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), @@ -134527,78 +137255,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1189)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1189), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2710), - [anon_sym_BANG_TILDE2] = ACTIONS(2710), - [anon_sym_like2] = ACTIONS(2710), - [anon_sym_not_DASHlike2] = ACTIONS(2710), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), + [STATE(1224)] = { + [aux_sym__repeat_newline] = STATE(527), + [sym_comment] = STATE(1224), + [anon_sym_in] = ACTIONS(2927), + [sym__newline] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_err_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_GT_PIPE] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2750), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2750), + [anon_sym_xor2] = ACTIONS(2750), + [anon_sym_or2] = ACTIONS(2750), + [anon_sym_not_DASHin2] = ACTIONS(2927), + [anon_sym_has2] = ACTIONS(2927), + [anon_sym_not_DASHhas2] = ACTIONS(2927), + [anon_sym_starts_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2927), + [anon_sym_ends_DASHwith2] = ACTIONS(2927), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2927), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2929), + [anon_sym_BANG_TILDE2] = ACTIONS(2929), + [anon_sym_like2] = ACTIONS(2929), + [anon_sym_not_DASHlike2] = ACTIONS(2929), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2931), + [anon_sym_bit_DASHxor2] = ACTIONS(2750), + [anon_sym_bit_DASHor2] = ACTIONS(2750), + [anon_sym_err_GT] = ACTIONS(2752), + [anon_sym_out_GT] = ACTIONS(2752), + [anon_sym_e_GT] = ACTIONS(2752), + [anon_sym_o_GT] = ACTIONS(2752), + [anon_sym_err_PLUSout_GT] = ACTIONS(2752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2752), + [anon_sym_o_PLUSe_GT] = ACTIONS(2752), + [anon_sym_e_PLUSo_GT] = ACTIONS(2752), + [anon_sym_err_GT_GT] = ACTIONS(2750), + [anon_sym_out_GT_GT] = ACTIONS(2750), + [anon_sym_e_GT_GT] = ACTIONS(2750), + [anon_sym_o_GT_GT] = ACTIONS(2750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2750), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1190)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1190), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2746), + [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), + [anon_sym_out_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_GT_PIPE] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), + [anon_sym_RPAREN] = ACTIONS(2720), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2905), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_err_GT] = ACTIONS(2722), + [anon_sym_out_GT] = ACTIONS(2722), + [anon_sym_e_GT] = ACTIONS(2722), + [anon_sym_o_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT] = ACTIONS(2722), + [anon_sym_err_GT_GT] = ACTIONS(2720), + [anon_sym_out_GT_GT] = ACTIONS(2720), + [anon_sym_e_GT_GT] = ACTIONS(2720), + [anon_sym_o_GT_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1226)] = { + [aux_sym__repeat_newline] = STATE(1246), + [sym_comment] = STATE(1226), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2941), [anon_sym_SEMI] = ACTIONS(2746), [anon_sym_PIPE] = ACTIONS(2746), [anon_sym_err_GT_PIPE] = ACTIONS(2746), @@ -134610,38 +137405,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), + [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(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2816), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), + [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), @@ -134661,2812 +137456,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2746), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1191)] = { - [aux_sym__repeat_newline] = STATE(1229), - [sym_comment] = STATE(1191), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2822), - [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(2827), - [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(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [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(1192)] = { - [sym_comment] = STATE(1192), - [anon_sym_in] = ACTIONS(2578), - [sym__newline] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_err_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_GT_PIPE] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), - [anon_sym_RPAREN] = ACTIONS(2578), - [anon_sym_GT2] = ACTIONS(2580), - [anon_sym_DASH2] = ACTIONS(2857), - [anon_sym_RBRACE] = ACTIONS(2578), - [anon_sym_STAR2] = ACTIONS(2859), - [anon_sym_and2] = ACTIONS(2578), - [anon_sym_xor2] = ACTIONS(2578), - [anon_sym_or2] = ACTIONS(2578), - [anon_sym_not_DASHin2] = ACTIONS(2578), - [anon_sym_has2] = ACTIONS(2578), - [anon_sym_not_DASHhas2] = ACTIONS(2578), - [anon_sym_starts_DASHwith2] = ACTIONS(2578), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2578), - [anon_sym_ends_DASHwith2] = ACTIONS(2578), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2578), - [anon_sym_EQ_EQ2] = ACTIONS(2578), - [anon_sym_BANG_EQ2] = ACTIONS(2578), - [anon_sym_LT2] = ACTIONS(2580), - [anon_sym_LT_EQ2] = ACTIONS(2578), - [anon_sym_GT_EQ2] = ACTIONS(2578), - [anon_sym_EQ_TILDE2] = ACTIONS(2578), - [anon_sym_BANG_TILDE2] = ACTIONS(2578), - [anon_sym_like2] = ACTIONS(2578), - [anon_sym_not_DASHlike2] = ACTIONS(2578), - [anon_sym_STAR_STAR2] = ACTIONS(2865), - [anon_sym_PLUS_PLUS2] = ACTIONS(2865), - [anon_sym_SLASH2] = ACTIONS(2859), - [anon_sym_mod2] = ACTIONS(2867), - [anon_sym_SLASH_SLASH2] = ACTIONS(2867), - [anon_sym_PLUS2] = ACTIONS(2869), - [anon_sym_bit_DASHshl2] = ACTIONS(2871), - [anon_sym_bit_DASHshr2] = ACTIONS(2871), - [anon_sym_bit_DASHand2] = ACTIONS(2578), - [anon_sym_bit_DASHxor2] = ACTIONS(2578), - [anon_sym_bit_DASHor2] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2578), - [anon_sym_out_GT_GT] = ACTIONS(2578), - [anon_sym_e_GT_GT] = ACTIONS(2578), - [anon_sym_o_GT_GT] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1193)] = { - [aux_sym__repeat_newline] = STATE(1189), - [sym_comment] = STATE(1193), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1194)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1194), - [anon_sym_in] = ACTIONS(2710), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2712), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2710), - [anon_sym_has2] = ACTIONS(2710), - [anon_sym_not_DASHhas2] = ACTIONS(2710), - [anon_sym_starts_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2710), - [anon_sym_ends_DASHwith2] = ACTIONS(2710), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2710), - [anon_sym_EQ_EQ2] = ACTIONS(2710), - [anon_sym_BANG_EQ2] = ACTIONS(2710), - [anon_sym_LT2] = ACTIONS(2712), - [anon_sym_LT_EQ2] = ACTIONS(2710), - [anon_sym_GT_EQ2] = ACTIONS(2710), - [anon_sym_EQ_TILDE2] = ACTIONS(2710), - [anon_sym_BANG_TILDE2] = ACTIONS(2710), - [anon_sym_like2] = ACTIONS(2710), - [anon_sym_not_DASHlike2] = ACTIONS(2710), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2710), - [anon_sym_bit_DASHshr2] = ACTIONS(2710), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1195)] = { - [aux_sym__repeat_newline] = STATE(1179), - [sym_comment] = STATE(1195), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2851), - [anon_sym_bit_DASHxor2] = ACTIONS(2881), - [anon_sym_bit_DASHor2] = ACTIONS(2883), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1196)] = { - [sym_comment] = STATE(1196), - [aux_sym_cmd_identifier_token2] = ACTIONS(2738), - [anon_sym_in] = ACTIONS(2508), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2508), - [anon_sym_RBRACE] = ACTIONS(2506), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2508), - [anon_sym_xor2] = ACTIONS(2508), - [anon_sym_or2] = ACTIONS(2508), - [anon_sym_not_DASHin2] = ACTIONS(2508), - [anon_sym_has2] = ACTIONS(2508), - [anon_sym_not_DASHhas2] = ACTIONS(2508), - [anon_sym_starts_DASHwith2] = ACTIONS(2508), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2508), - [anon_sym_ends_DASHwith2] = ACTIONS(2508), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2508), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2508), - [anon_sym_like2] = ACTIONS(2508), - [anon_sym_not_DASHlike2] = ACTIONS(2508), - [anon_sym_STAR_STAR2] = ACTIONS(2508), - [anon_sym_PLUS_PLUS2] = ACTIONS(2508), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2508), - [anon_sym_SLASH_SLASH2] = ACTIONS(2508), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2508), - [anon_sym_bit_DASHshr2] = ACTIONS(2508), - [anon_sym_bit_DASHand2] = ACTIONS(2508), - [anon_sym_bit_DASHxor2] = ACTIONS(2508), - [anon_sym_bit_DASHor2] = ACTIONS(2508), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1197)] = { - [sym_comment] = STATE(1197), - [aux_sym_cmd_identifier_token2] = ACTIONS(2738), - [anon_sym_in] = ACTIONS(2523), - [sym__newline] = ACTIONS(2521), - [anon_sym_SEMI] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2521), - [anon_sym_err_GT_PIPE] = ACTIONS(2521), - [anon_sym_out_GT_PIPE] = ACTIONS(2521), - [anon_sym_e_GT_PIPE] = ACTIONS(2521), - [anon_sym_o_GT_PIPE] = ACTIONS(2521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2521), - [anon_sym_GT2] = ACTIONS(2523), - [anon_sym_DASH2] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2521), - [anon_sym_STAR2] = ACTIONS(2523), - [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(2521), - [anon_sym_BANG_EQ2] = ACTIONS(2521), - [anon_sym_LT2] = ACTIONS(2523), - [anon_sym_LT_EQ2] = ACTIONS(2521), - [anon_sym_GT_EQ2] = ACTIONS(2521), - [anon_sym_EQ_TILDE2] = ACTIONS(2521), - [anon_sym_BANG_TILDE2] = ACTIONS(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(2523), - [anon_sym_mod2] = ACTIONS(2523), - [anon_sym_SLASH_SLASH2] = ACTIONS(2523), - [anon_sym_PLUS2] = ACTIONS(2523), - [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(2523), - [anon_sym_out_GT] = ACTIONS(2523), - [anon_sym_e_GT] = ACTIONS(2523), - [anon_sym_o_GT] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT] = ACTIONS(2523), - [anon_sym_err_GT_GT] = ACTIONS(2521), - [anon_sym_out_GT_GT] = ACTIONS(2521), - [anon_sym_e_GT_GT] = ACTIONS(2521), - [anon_sym_o_GT_GT] = ACTIONS(2521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2521), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1198)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1198), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2710), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1199)] = { - [sym_comment] = STATE(1199), - [anon_sym_export] = ACTIONS(2919), - [anon_sym_alias] = ACTIONS(2923), - [anon_sym_let] = ACTIONS(2923), - [anon_sym_mut] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [aux_sym_cmd_identifier_token1] = ACTIONS(2919), - [anon_sym_def] = ACTIONS(2923), - [anon_sym_use] = ACTIONS(2923), - [anon_sym_export_DASHenv] = ACTIONS(2923), - [anon_sym_extern] = ACTIONS(2923), - [anon_sym_module] = ACTIONS(2923), - [anon_sym_for] = ACTIONS(2923), - [anon_sym_loop] = ACTIONS(2923), - [anon_sym_while] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_else] = ACTIONS(2923), - [anon_sym_try] = ACTIONS(2923), - [anon_sym_catch] = ACTIONS(2923), - [anon_sym_match] = ACTIONS(2923), - [anon_sym_in] = ACTIONS(2919), - [anon_sym_true] = ACTIONS(2923), - [anon_sym_false] = ACTIONS(2923), - [anon_sym_null] = ACTIONS(2923), - [aux_sym_cmd_identifier_token3] = ACTIONS(2923), - [aux_sym_cmd_identifier_token4] = ACTIONS(2923), - [aux_sym_cmd_identifier_token5] = ACTIONS(2923), - [sym__newline] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2927), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_DOLLAR] = ACTIONS(2919), - [anon_sym_DASH2] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_RBRACE] = ACTIONS(2927), - [anon_sym_DOT_DOT] = ACTIONS(2930), - [anon_sym_where] = ACTIONS(2927), - [aux_sym_expr_unary_token1] = ACTIONS(2927), - [anon_sym_PLUS2] = ACTIONS(2933), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2927), - [anon_sym_DOT_DOT_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2935), - [aux_sym__val_number_decimal_token1] = ACTIONS(2919), - [aux_sym__val_number_decimal_token2] = ACTIONS(2923), - [aux_sym__val_number_decimal_token3] = ACTIONS(2923), - [aux_sym__val_number_decimal_token4] = ACTIONS(2923), - [aux_sym__val_number_token1] = ACTIONS(2923), - [aux_sym__val_number_token2] = ACTIONS(2923), - [aux_sym__val_number_token3] = ACTIONS(2923), - [anon_sym_0b] = ACTIONS(2930), - [anon_sym_0o] = ACTIONS(2930), - [anon_sym_0x] = ACTIONS(2930), - [sym_val_date] = ACTIONS(2927), - [anon_sym_DQUOTE] = ACTIONS(2923), - [anon_sym_SQUOTE] = ACTIONS(2923), - [anon_sym_BQUOTE] = ACTIONS(2923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2923), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2935), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2923), - }, - [STATE(1200)] = { - [aux_sym__repeat_newline] = STATE(1239), - [sym_comment] = STATE(1200), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2822), - [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(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [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(1201)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1201), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2816), - [anon_sym_bit_DASHxor2] = ACTIONS(2710), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1202)] = { - [aux_sym__repeat_newline] = STATE(1178), - [sym_comment] = STATE(1202), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_err_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_GT_PIPE] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), - [anon_sym_RPAREN] = ACTIONS(2718), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2877), - [anon_sym_xor2] = ACTIONS(2879), - [anon_sym_or2] = ACTIONS(2718), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2851), - [anon_sym_bit_DASHxor2] = ACTIONS(2881), - [anon_sym_bit_DASHor2] = ACTIONS(2883), - [anon_sym_err_GT] = ACTIONS(2720), - [anon_sym_out_GT] = ACTIONS(2720), - [anon_sym_e_GT] = ACTIONS(2720), - [anon_sym_o_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT] = ACTIONS(2720), - [anon_sym_err_GT_GT] = ACTIONS(2718), - [anon_sym_out_GT_GT] = ACTIONS(2718), - [anon_sym_e_GT_GT] = ACTIONS(2718), - [anon_sym_o_GT_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1203)] = { - [sym_comment] = STATE(1203), - [anon_sym_in] = ACTIONS(2853), - [sym__newline] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_err_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_GT_PIPE] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), - [anon_sym_RPAREN] = ACTIONS(2578), - [anon_sym_GT2] = ACTIONS(2855), - [anon_sym_DASH2] = ACTIONS(2857), - [anon_sym_RBRACE] = ACTIONS(2578), - [anon_sym_STAR2] = ACTIONS(2859), - [anon_sym_and2] = ACTIONS(2578), - [anon_sym_xor2] = ACTIONS(2578), - [anon_sym_or2] = ACTIONS(2578), - [anon_sym_not_DASHin2] = ACTIONS(2853), - [anon_sym_has2] = ACTIONS(2853), - [anon_sym_not_DASHhas2] = ACTIONS(2853), - [anon_sym_starts_DASHwith2] = ACTIONS(2853), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2853), - [anon_sym_ends_DASHwith2] = ACTIONS(2853), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2853), - [anon_sym_EQ_EQ2] = ACTIONS(2861), - [anon_sym_BANG_EQ2] = ACTIONS(2861), - [anon_sym_LT2] = ACTIONS(2855), - [anon_sym_LT_EQ2] = ACTIONS(2861), - [anon_sym_GT_EQ2] = ACTIONS(2861), - [anon_sym_EQ_TILDE2] = ACTIONS(2863), - [anon_sym_BANG_TILDE2] = ACTIONS(2863), - [anon_sym_like2] = ACTIONS(2863), - [anon_sym_not_DASHlike2] = ACTIONS(2863), - [anon_sym_STAR_STAR2] = ACTIONS(2865), - [anon_sym_PLUS_PLUS2] = ACTIONS(2865), - [anon_sym_SLASH2] = ACTIONS(2859), - [anon_sym_mod2] = ACTIONS(2867), - [anon_sym_SLASH_SLASH2] = ACTIONS(2867), - [anon_sym_PLUS2] = ACTIONS(2869), - [anon_sym_bit_DASHshl2] = ACTIONS(2871), - [anon_sym_bit_DASHshr2] = ACTIONS(2871), - [anon_sym_bit_DASHand2] = ACTIONS(2578), - [anon_sym_bit_DASHxor2] = ACTIONS(2578), - [anon_sym_bit_DASHor2] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2578), - [anon_sym_out_GT_GT] = ACTIONS(2578), - [anon_sym_e_GT_GT] = ACTIONS(2578), - [anon_sym_o_GT_GT] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1204)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1204), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1205)] = { - [aux_sym__repeat_newline] = STATE(1256), - [sym_comment] = STATE(1205), - [anon_sym_in] = ACTIONS(2756), - [sym__newline] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_err_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_GT_PIPE] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_GT2] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2756), - [anon_sym_xor2] = ACTIONS(2756), - [anon_sym_or2] = ACTIONS(2756), - [anon_sym_not_DASHin2] = ACTIONS(2756), - [anon_sym_has2] = ACTIONS(2756), - [anon_sym_not_DASHhas2] = ACTIONS(2756), - [anon_sym_starts_DASHwith2] = ACTIONS(2756), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2756), - [anon_sym_ends_DASHwith2] = ACTIONS(2756), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2756), - [anon_sym_EQ_EQ2] = ACTIONS(2756), - [anon_sym_BANG_EQ2] = ACTIONS(2756), - [anon_sym_LT2] = ACTIONS(2758), - [anon_sym_LT_EQ2] = ACTIONS(2756), - [anon_sym_GT_EQ2] = ACTIONS(2756), - [anon_sym_EQ_TILDE2] = ACTIONS(2756), - [anon_sym_BANG_TILDE2] = ACTIONS(2756), - [anon_sym_like2] = ACTIONS(2756), - [anon_sym_not_DASHlike2] = ACTIONS(2756), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2756), - [anon_sym_bit_DASHxor2] = ACTIONS(2756), - [anon_sym_bit_DASHor2] = ACTIONS(2756), - [anon_sym_err_GT] = ACTIONS(2758), - [anon_sym_out_GT] = ACTIONS(2758), - [anon_sym_e_GT] = ACTIONS(2758), - [anon_sym_o_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT] = ACTIONS(2758), - [anon_sym_err_GT_GT] = ACTIONS(2756), - [anon_sym_out_GT_GT] = ACTIONS(2756), - [anon_sym_e_GT_GT] = ACTIONS(2756), - [anon_sym_o_GT_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1206)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1206), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_err_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_GT_PIPE] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2710), - [anon_sym_xor2] = ACTIONS(2710), - [anon_sym_or2] = ACTIONS(2710), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2816), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2710), - [anon_sym_err_GT] = ACTIONS(2712), - [anon_sym_out_GT] = ACTIONS(2712), - [anon_sym_e_GT] = ACTIONS(2712), - [anon_sym_o_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT] = ACTIONS(2712), - [anon_sym_err_GT_GT] = ACTIONS(2710), - [anon_sym_out_GT_GT] = ACTIONS(2710), - [anon_sym_e_GT_GT] = ACTIONS(2710), - [anon_sym_o_GT_GT] = ACTIONS(2710), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2710), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2710), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2710), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2710), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1207)] = { - [aux_sym__repeat_newline] = STATE(1161), - [sym_comment] = STATE(1207), - [anon_sym_in] = ACTIONS(2756), - [sym__newline] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_err_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_GT_PIPE] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_GT2] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(2756), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2756), - [anon_sym_xor2] = ACTIONS(2756), - [anon_sym_or2] = ACTIONS(2756), - [anon_sym_not_DASHin2] = ACTIONS(2756), - [anon_sym_has2] = ACTIONS(2756), - [anon_sym_not_DASHhas2] = ACTIONS(2756), - [anon_sym_starts_DASHwith2] = ACTIONS(2756), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2756), - [anon_sym_ends_DASHwith2] = ACTIONS(2756), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2756), - [anon_sym_EQ_EQ2] = ACTIONS(2756), - [anon_sym_BANG_EQ2] = ACTIONS(2756), - [anon_sym_LT2] = ACTIONS(2758), - [anon_sym_LT_EQ2] = ACTIONS(2756), - [anon_sym_GT_EQ2] = ACTIONS(2756), - [anon_sym_EQ_TILDE2] = ACTIONS(2756), - [anon_sym_BANG_TILDE2] = ACTIONS(2756), - [anon_sym_like2] = ACTIONS(2756), - [anon_sym_not_DASHlike2] = ACTIONS(2756), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2758), - [anon_sym_bit_DASHshl2] = ACTIONS(2756), - [anon_sym_bit_DASHshr2] = ACTIONS(2756), - [anon_sym_bit_DASHand2] = ACTIONS(2756), - [anon_sym_bit_DASHxor2] = ACTIONS(2756), - [anon_sym_bit_DASHor2] = ACTIONS(2756), - [anon_sym_err_GT] = ACTIONS(2758), - [anon_sym_out_GT] = ACTIONS(2758), - [anon_sym_e_GT] = ACTIONS(2758), - [anon_sym_o_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT] = ACTIONS(2758), - [anon_sym_err_GT_GT] = ACTIONS(2756), - [anon_sym_out_GT_GT] = ACTIONS(2756), - [anon_sym_e_GT_GT] = ACTIONS(2756), - [anon_sym_o_GT_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1208)] = { - [sym__ctrl_match_body] = STATE(5014), - [sym_match_arm] = STATE(4468), - [sym_default_arm] = STATE(4468), - [sym_match_pattern] = STATE(5020), - [sym__match_pattern] = STATE(3798), - [sym__match_pattern_expression] = STATE(4208), - [sym__match_pattern_value] = STATE(4213), - [sym__match_pattern_list] = STATE(4214), - [sym__match_pattern_record] = STATE(4216), - [sym_expr_parenthesized] = STATE(3717), - [sym_val_range] = STATE(4213), - [sym__val_range] = STATE(5062), - [sym_val_nothing] = STATE(4216), - [sym_val_bool] = STATE(3999), - [sym_val_variable] = STATE(3748), - [sym_val_number] = STATE(4216), - [sym__val_number_decimal] = STATE(3495), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(4216), - [sym_val_filesize] = STATE(4216), - [sym_val_binary] = STATE(4216), - [sym_val_string] = STATE(4216), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_table] = STATE(4216), - [sym_unquoted] = STATE(4232), - [sym__unquoted_anonymous_prefix] = STATE(5062), - [sym_comment] = STATE(1208), - [aux_sym__types_body_repeat1] = STATE(1346), - [aux_sym__ctrl_match_body_repeat1] = STATE(1359), - [anon_sym_true] = ACTIONS(2887), - [anon_sym_false] = ACTIONS(2887), - [anon_sym_null] = ACTIONS(2889), - [aux_sym_cmd_identifier_token3] = ACTIONS(2891), - [aux_sym_cmd_identifier_token4] = ACTIONS(2891), - [aux_sym_cmd_identifier_token5] = ACTIONS(2891), - [sym__newline] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2895), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym_DOLLAR] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_RBRACE] = ACTIONS(2940), - [anon_sym__] = ACTIONS(2903), - [anon_sym_DOT_DOT] = ACTIONS(2905), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2907), - [anon_sym_DOT_DOT_LT] = ACTIONS(2907), - [aux_sym__val_number_decimal_token1] = ACTIONS(2909), - [aux_sym__val_number_decimal_token2] = ACTIONS(2911), - [aux_sym__val_number_decimal_token3] = ACTIONS(2913), - [aux_sym__val_number_decimal_token4] = ACTIONS(2913), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), - [aux_sym_unquoted_token1] = ACTIONS(1924), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1802), - }, - [STATE(1209)] = { - [aux_sym__repeat_newline] = STATE(1244), - [sym_comment] = STATE(1209), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2822), - [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(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2851), - [anon_sym_bit_DASHxor2] = ACTIONS(2881), - [anon_sym_bit_DASHor2] = ACTIONS(2883), - [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(1210)] = { - [sym__ctrl_match_body] = STATE(4955), - [sym_match_arm] = STATE(4468), - [sym_default_arm] = STATE(4468), - [sym_match_pattern] = STATE(5020), - [sym__match_pattern] = STATE(3798), - [sym__match_pattern_expression] = STATE(4208), - [sym__match_pattern_value] = STATE(4213), - [sym__match_pattern_list] = STATE(4214), - [sym__match_pattern_record] = STATE(4216), - [sym_expr_parenthesized] = STATE(3717), - [sym_val_range] = STATE(4213), - [sym__val_range] = STATE(5062), - [sym_val_nothing] = STATE(4216), - [sym_val_bool] = STATE(3999), - [sym_val_variable] = STATE(3748), - [sym_val_number] = STATE(4216), - [sym__val_number_decimal] = STATE(3495), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(4216), - [sym_val_filesize] = STATE(4216), - [sym_val_binary] = STATE(4216), - [sym_val_string] = STATE(4216), - [sym__raw_str] = STATE(2238), - [sym__str_double_quotes] = STATE(2238), - [sym__str_single_quotes] = STATE(2238), - [sym__str_back_ticks] = STATE(2238), - [sym_val_table] = STATE(4216), - [sym_unquoted] = STATE(4232), - [sym__unquoted_anonymous_prefix] = STATE(5062), - [sym_comment] = STATE(1210), - [aux_sym__types_body_repeat1] = STATE(1346), - [aux_sym__ctrl_match_body_repeat1] = STATE(1359), - [anon_sym_true] = ACTIONS(2887), - [anon_sym_false] = ACTIONS(2887), - [anon_sym_null] = ACTIONS(2889), - [aux_sym_cmd_identifier_token3] = ACTIONS(2891), - [aux_sym_cmd_identifier_token4] = ACTIONS(2891), - [aux_sym_cmd_identifier_token5] = ACTIONS(2891), - [sym__newline] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2895), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym_DOLLAR] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_RBRACE] = ACTIONS(2942), - [anon_sym__] = ACTIONS(2903), - [anon_sym_DOT_DOT] = ACTIONS(2905), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2907), - [anon_sym_DOT_DOT_LT] = ACTIONS(2907), - [aux_sym__val_number_decimal_token1] = ACTIONS(2909), - [aux_sym__val_number_decimal_token2] = ACTIONS(2911), - [aux_sym__val_number_decimal_token3] = ACTIONS(2913), - [aux_sym__val_number_decimal_token4] = ACTIONS(2913), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_BQUOTE] = ACTIONS(1800), - [aux_sym_unquoted_token1] = ACTIONS(1924), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1802), - }, - [STATE(1211)] = { - [aux_sym__repeat_newline] = STATE(1181), - [sym_comment] = STATE(1211), - [anon_sym_in] = ACTIONS(2756), - [sym__newline] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_err_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_GT_PIPE] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_GT2] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(2756), - [anon_sym_STAR2] = ACTIONS(2758), - [anon_sym_and2] = ACTIONS(2756), - [anon_sym_xor2] = ACTIONS(2756), - [anon_sym_or2] = ACTIONS(2756), - [anon_sym_not_DASHin2] = ACTIONS(2756), - [anon_sym_has2] = ACTIONS(2756), - [anon_sym_not_DASHhas2] = ACTIONS(2756), - [anon_sym_starts_DASHwith2] = ACTIONS(2756), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2756), - [anon_sym_ends_DASHwith2] = ACTIONS(2756), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2756), - [anon_sym_EQ_EQ2] = ACTIONS(2756), - [anon_sym_BANG_EQ2] = ACTIONS(2756), - [anon_sym_LT2] = ACTIONS(2758), - [anon_sym_LT_EQ2] = ACTIONS(2756), - [anon_sym_GT_EQ2] = ACTIONS(2756), - [anon_sym_EQ_TILDE2] = ACTIONS(2756), - [anon_sym_BANG_TILDE2] = ACTIONS(2756), - [anon_sym_like2] = ACTIONS(2756), - [anon_sym_not_DASHlike2] = ACTIONS(2756), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2758), - [anon_sym_mod2] = ACTIONS(2756), - [anon_sym_SLASH_SLASH2] = ACTIONS(2756), - [anon_sym_PLUS2] = ACTIONS(2758), - [anon_sym_bit_DASHshl2] = ACTIONS(2756), - [anon_sym_bit_DASHshr2] = ACTIONS(2756), - [anon_sym_bit_DASHand2] = ACTIONS(2756), - [anon_sym_bit_DASHxor2] = ACTIONS(2756), - [anon_sym_bit_DASHor2] = ACTIONS(2756), - [anon_sym_err_GT] = ACTIONS(2758), - [anon_sym_out_GT] = ACTIONS(2758), - [anon_sym_e_GT] = ACTIONS(2758), - [anon_sym_o_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT] = ACTIONS(2758), - [anon_sym_err_GT_GT] = ACTIONS(2756), - [anon_sym_out_GT_GT] = ACTIONS(2756), - [anon_sym_e_GT_GT] = ACTIONS(2756), - [anon_sym_o_GT_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1212)] = { - [aux_sym__repeat_newline] = STATE(1166), - [sym_comment] = STATE(1212), - [anon_sym_in] = ACTIONS(2718), - [sym__newline] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_err_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_GT_PIPE] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), - [anon_sym_RPAREN] = ACTIONS(2718), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2718), - [anon_sym_xor2] = ACTIONS(2718), - [anon_sym_or2] = ACTIONS(2718), - [anon_sym_not_DASHin2] = ACTIONS(2718), - [anon_sym_has2] = ACTIONS(2718), - [anon_sym_not_DASHhas2] = ACTIONS(2718), - [anon_sym_starts_DASHwith2] = ACTIONS(2718), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2718), - [anon_sym_ends_DASHwith2] = ACTIONS(2718), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2718), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2718), - [anon_sym_BANG_TILDE2] = ACTIONS(2718), - [anon_sym_like2] = ACTIONS(2718), - [anon_sym_not_DASHlike2] = ACTIONS(2718), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2718), - [anon_sym_bit_DASHxor2] = ACTIONS(2718), - [anon_sym_bit_DASHor2] = ACTIONS(2718), - [anon_sym_err_GT] = ACTIONS(2720), - [anon_sym_out_GT] = ACTIONS(2720), - [anon_sym_e_GT] = ACTIONS(2720), - [anon_sym_o_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT] = ACTIONS(2720), - [anon_sym_err_GT_GT] = ACTIONS(2718), - [anon_sym_out_GT_GT] = ACTIONS(2718), - [anon_sym_e_GT_GT] = ACTIONS(2718), - [anon_sym_o_GT_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1213)] = { - [aux_sym__repeat_newline] = STATE(1236), - [sym_comment] = STATE(1213), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_err_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_GT_PIPE] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2756), - [anon_sym_xor2] = ACTIONS(2756), - [anon_sym_or2] = ACTIONS(2756), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2851), - [anon_sym_bit_DASHxor2] = ACTIONS(2881), - [anon_sym_bit_DASHor2] = ACTIONS(2883), - [anon_sym_err_GT] = ACTIONS(2758), - [anon_sym_out_GT] = ACTIONS(2758), - [anon_sym_e_GT] = ACTIONS(2758), - [anon_sym_o_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT] = ACTIONS(2758), - [anon_sym_err_GT_GT] = ACTIONS(2756), - [anon_sym_out_GT_GT] = ACTIONS(2756), - [anon_sym_e_GT_GT] = ACTIONS(2756), - [anon_sym_o_GT_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1214)] = { - [sym_comment] = STATE(1214), - [anon_sym_in] = ACTIONS(2578), - [sym__newline] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_err_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_GT_PIPE] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), - [anon_sym_RPAREN] = ACTIONS(2578), - [anon_sym_GT2] = ACTIONS(2580), - [anon_sym_DASH2] = ACTIONS(2578), - [anon_sym_RBRACE] = ACTIONS(2578), - [anon_sym_STAR2] = ACTIONS(2859), - [anon_sym_and2] = ACTIONS(2578), - [anon_sym_xor2] = ACTIONS(2578), - [anon_sym_or2] = ACTIONS(2578), - [anon_sym_not_DASHin2] = ACTIONS(2578), - [anon_sym_has2] = ACTIONS(2578), - [anon_sym_not_DASHhas2] = ACTIONS(2578), - [anon_sym_starts_DASHwith2] = ACTIONS(2578), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2578), - [anon_sym_ends_DASHwith2] = ACTIONS(2578), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2578), - [anon_sym_EQ_EQ2] = ACTIONS(2578), - [anon_sym_BANG_EQ2] = ACTIONS(2578), - [anon_sym_LT2] = ACTIONS(2580), - [anon_sym_LT_EQ2] = ACTIONS(2578), - [anon_sym_GT_EQ2] = ACTIONS(2578), - [anon_sym_EQ_TILDE2] = ACTIONS(2578), - [anon_sym_BANG_TILDE2] = ACTIONS(2578), - [anon_sym_like2] = ACTIONS(2578), - [anon_sym_not_DASHlike2] = ACTIONS(2578), - [anon_sym_STAR_STAR2] = ACTIONS(2865), - [anon_sym_PLUS_PLUS2] = ACTIONS(2865), - [anon_sym_SLASH2] = ACTIONS(2859), - [anon_sym_mod2] = ACTIONS(2867), - [anon_sym_SLASH_SLASH2] = ACTIONS(2867), - [anon_sym_PLUS2] = ACTIONS(2580), - [anon_sym_bit_DASHshl2] = ACTIONS(2578), - [anon_sym_bit_DASHshr2] = ACTIONS(2578), - [anon_sym_bit_DASHand2] = ACTIONS(2578), - [anon_sym_bit_DASHxor2] = ACTIONS(2578), - [anon_sym_bit_DASHor2] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2578), - [anon_sym_out_GT_GT] = ACTIONS(2578), - [anon_sym_e_GT_GT] = ACTIONS(2578), - [anon_sym_o_GT_GT] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1215)] = { - [aux_sym__repeat_newline] = STATE(1140), - [sym_comment] = STATE(1215), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_err_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_GT_PIPE] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2877), - [anon_sym_xor2] = ACTIONS(2756), - [anon_sym_or2] = ACTIONS(2756), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2851), - [anon_sym_bit_DASHxor2] = ACTIONS(2881), - [anon_sym_bit_DASHor2] = ACTIONS(2883), - [anon_sym_err_GT] = ACTIONS(2758), - [anon_sym_out_GT] = ACTIONS(2758), - [anon_sym_e_GT] = ACTIONS(2758), - [anon_sym_o_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT] = ACTIONS(2758), - [anon_sym_err_GT_GT] = ACTIONS(2756), - [anon_sym_out_GT_GT] = ACTIONS(2756), - [anon_sym_e_GT_GT] = ACTIONS(2756), - [anon_sym_o_GT_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1216)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1216), - [anon_sym_in] = ACTIONS(2722), - [sym__newline] = ACTIONS(2722), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_err_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_GT_PIPE] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), - [anon_sym_RPAREN] = ACTIONS(2722), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2722), - [anon_sym_xor2] = ACTIONS(2722), - [anon_sym_or2] = ACTIONS(2722), - [anon_sym_not_DASHin2] = ACTIONS(2722), - [anon_sym_has2] = ACTIONS(2722), - [anon_sym_not_DASHhas2] = ACTIONS(2722), - [anon_sym_starts_DASHwith2] = ACTIONS(2722), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), - [anon_sym_ends_DASHwith2] = ACTIONS(2722), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2722), - [anon_sym_BANG_TILDE2] = ACTIONS(2722), - [anon_sym_like2] = ACTIONS(2722), - [anon_sym_not_DASHlike2] = ACTIONS(2722), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2722), - [anon_sym_bit_DASHxor2] = ACTIONS(2722), - [anon_sym_bit_DASHor2] = ACTIONS(2722), - [anon_sym_err_GT] = ACTIONS(2724), - [anon_sym_out_GT] = ACTIONS(2724), - [anon_sym_e_GT] = ACTIONS(2724), - [anon_sym_o_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT] = ACTIONS(2724), - [anon_sym_err_GT_GT] = ACTIONS(2722), - [anon_sym_out_GT_GT] = ACTIONS(2722), - [anon_sym_e_GT_GT] = ACTIONS(2722), - [anon_sym_o_GT_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1217)] = { - [sym_comment] = STATE(1217), - [anon_sym_in] = ACTIONS(1716), - [sym__newline] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_err_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_GT_PIPE] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1716), - [anon_sym_GT2] = ACTIONS(1629), - [anon_sym_DASH2] = ACTIONS(1716), - [anon_sym_RBRACE] = ACTIONS(1716), - [anon_sym_STAR2] = ACTIONS(1629), - [anon_sym_and2] = ACTIONS(1716), - [anon_sym_xor2] = ACTIONS(1716), - [anon_sym_or2] = ACTIONS(1716), - [anon_sym_not_DASHin2] = ACTIONS(1716), - [anon_sym_has2] = ACTIONS(1716), - [anon_sym_not_DASHhas2] = ACTIONS(1716), - [anon_sym_starts_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1716), - [anon_sym_ends_DASHwith2] = ACTIONS(1716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1716), - [anon_sym_EQ_EQ2] = ACTIONS(1716), - [anon_sym_BANG_EQ2] = ACTIONS(1716), - [anon_sym_LT2] = ACTIONS(1629), - [anon_sym_LT_EQ2] = ACTIONS(1716), - [anon_sym_GT_EQ2] = ACTIONS(1716), - [anon_sym_EQ_TILDE2] = ACTIONS(1716), - [anon_sym_BANG_TILDE2] = ACTIONS(1716), - [anon_sym_like2] = ACTIONS(1716), - [anon_sym_not_DASHlike2] = ACTIONS(1716), - [anon_sym_STAR_STAR2] = ACTIONS(1716), - [anon_sym_PLUS_PLUS2] = ACTIONS(1716), - [anon_sym_SLASH2] = ACTIONS(1629), - [anon_sym_mod2] = ACTIONS(1716), - [anon_sym_SLASH_SLASH2] = ACTIONS(1716), - [anon_sym_PLUS2] = ACTIONS(1629), - [anon_sym_bit_DASHshl2] = ACTIONS(1716), - [anon_sym_bit_DASHshr2] = ACTIONS(1716), - [anon_sym_bit_DASHand2] = ACTIONS(1716), - [anon_sym_bit_DASHxor2] = ACTIONS(1716), - [anon_sym_bit_DASHor2] = ACTIONS(1716), - [anon_sym_COLON2] = ACTIONS(1718), - [anon_sym_err_GT] = ACTIONS(1629), - [anon_sym_out_GT] = ACTIONS(1629), - [anon_sym_e_GT] = ACTIONS(1629), - [anon_sym_o_GT] = ACTIONS(1629), - [anon_sym_err_PLUSout_GT] = ACTIONS(1629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1629), - [anon_sym_o_PLUSe_GT] = ACTIONS(1629), - [anon_sym_e_PLUSo_GT] = ACTIONS(1629), - [anon_sym_err_GT_GT] = ACTIONS(1716), - [anon_sym_out_GT_GT] = ACTIONS(1716), - [anon_sym_e_GT_GT] = ACTIONS(1716), - [anon_sym_o_GT_GT] = ACTIONS(1716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1716), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1218)] = { - [aux_sym__repeat_newline] = STATE(1187), - [sym_comment] = STATE(1218), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_err_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_GT_PIPE] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2877), - [anon_sym_xor2] = ACTIONS(2879), - [anon_sym_or2] = ACTIONS(2756), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2851), - [anon_sym_bit_DASHxor2] = ACTIONS(2881), - [anon_sym_bit_DASHor2] = ACTIONS(2883), - [anon_sym_err_GT] = ACTIONS(2758), - [anon_sym_out_GT] = ACTIONS(2758), - [anon_sym_e_GT] = ACTIONS(2758), - [anon_sym_o_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT] = ACTIONS(2758), - [anon_sym_err_GT_GT] = ACTIONS(2756), - [anon_sym_out_GT_GT] = ACTIONS(2756), - [anon_sym_e_GT_GT] = ACTIONS(2756), - [anon_sym_o_GT_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1219)] = { - [aux_sym__repeat_newline] = STATE(1260), - [sym_comment] = STATE(1219), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2822), - [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(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2877), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2851), - [anon_sym_bit_DASHxor2] = ACTIONS(2881), - [anon_sym_bit_DASHor2] = ACTIONS(2883), - [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(1220)] = { - [aux_sym__repeat_newline] = STATE(1168), - [sym_comment] = STATE(1220), - [anon_sym_in] = ACTIONS(2718), - [sym__newline] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_err_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_GT_PIPE] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), - [anon_sym_RPAREN] = ACTIONS(2718), - [anon_sym_GT2] = ACTIONS(2720), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2718), - [anon_sym_xor2] = ACTIONS(2718), - [anon_sym_or2] = ACTIONS(2718), - [anon_sym_not_DASHin2] = ACTIONS(2718), - [anon_sym_has2] = ACTIONS(2718), - [anon_sym_not_DASHhas2] = ACTIONS(2718), - [anon_sym_starts_DASHwith2] = ACTIONS(2718), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2718), - [anon_sym_ends_DASHwith2] = ACTIONS(2718), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2718), - [anon_sym_EQ_EQ2] = ACTIONS(2718), - [anon_sym_BANG_EQ2] = ACTIONS(2718), - [anon_sym_LT2] = ACTIONS(2720), - [anon_sym_LT_EQ2] = ACTIONS(2718), - [anon_sym_GT_EQ2] = ACTIONS(2718), - [anon_sym_EQ_TILDE2] = ACTIONS(2718), - [anon_sym_BANG_TILDE2] = ACTIONS(2718), - [anon_sym_like2] = ACTIONS(2718), - [anon_sym_not_DASHlike2] = ACTIONS(2718), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2718), - [anon_sym_bit_DASHxor2] = ACTIONS(2718), - [anon_sym_bit_DASHor2] = ACTIONS(2718), - [anon_sym_err_GT] = ACTIONS(2720), - [anon_sym_out_GT] = ACTIONS(2720), - [anon_sym_e_GT] = ACTIONS(2720), - [anon_sym_o_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT] = ACTIONS(2720), - [anon_sym_err_GT_GT] = ACTIONS(2718), - [anon_sym_out_GT_GT] = ACTIONS(2718), - [anon_sym_e_GT_GT] = ACTIONS(2718), - [anon_sym_o_GT_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1221)] = { - [aux_sym__repeat_newline] = STATE(1204), - [sym_comment] = STATE(1221), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_err_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_GT_PIPE] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2756), - [anon_sym_xor2] = ACTIONS(2756), - [anon_sym_or2] = ACTIONS(2756), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2756), - [anon_sym_BANG_TILDE2] = ACTIONS(2756), - [anon_sym_like2] = ACTIONS(2756), - [anon_sym_not_DASHlike2] = ACTIONS(2756), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2756), - [anon_sym_bit_DASHxor2] = ACTIONS(2756), - [anon_sym_bit_DASHor2] = ACTIONS(2756), - [anon_sym_err_GT] = ACTIONS(2758), - [anon_sym_out_GT] = ACTIONS(2758), - [anon_sym_e_GT] = ACTIONS(2758), - [anon_sym_o_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT] = ACTIONS(2758), - [anon_sym_err_GT_GT] = ACTIONS(2756), - [anon_sym_out_GT_GT] = ACTIONS(2756), - [anon_sym_e_GT_GT] = ACTIONS(2756), - [anon_sym_o_GT_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1222)] = { - [sym_comment] = STATE(1222), - [anon_sym_in] = ACTIONS(2578), - [sym__newline] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_err_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_GT_PIPE] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), - [anon_sym_RPAREN] = ACTIONS(2578), - [anon_sym_GT2] = ACTIONS(2580), - [anon_sym_DASH2] = ACTIONS(2578), - [anon_sym_RBRACE] = ACTIONS(2578), - [anon_sym_STAR2] = ACTIONS(2580), - [anon_sym_and2] = ACTIONS(2578), - [anon_sym_xor2] = ACTIONS(2578), - [anon_sym_or2] = ACTIONS(2578), - [anon_sym_not_DASHin2] = ACTIONS(2578), - [anon_sym_has2] = ACTIONS(2578), - [anon_sym_not_DASHhas2] = ACTIONS(2578), - [anon_sym_starts_DASHwith2] = ACTIONS(2578), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2578), - [anon_sym_ends_DASHwith2] = ACTIONS(2578), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2578), - [anon_sym_EQ_EQ2] = ACTIONS(2578), - [anon_sym_BANG_EQ2] = ACTIONS(2578), - [anon_sym_LT2] = ACTIONS(2580), - [anon_sym_LT_EQ2] = ACTIONS(2578), - [anon_sym_GT_EQ2] = ACTIONS(2578), - [anon_sym_EQ_TILDE2] = ACTIONS(2578), - [anon_sym_BANG_TILDE2] = ACTIONS(2578), - [anon_sym_like2] = ACTIONS(2578), - [anon_sym_not_DASHlike2] = ACTIONS(2578), - [anon_sym_STAR_STAR2] = ACTIONS(2865), - [anon_sym_PLUS_PLUS2] = ACTIONS(2865), - [anon_sym_SLASH2] = ACTIONS(2580), - [anon_sym_mod2] = ACTIONS(2578), - [anon_sym_SLASH_SLASH2] = ACTIONS(2578), - [anon_sym_PLUS2] = ACTIONS(2580), - [anon_sym_bit_DASHshl2] = ACTIONS(2578), - [anon_sym_bit_DASHshr2] = ACTIONS(2578), - [anon_sym_bit_DASHand2] = ACTIONS(2578), - [anon_sym_bit_DASHxor2] = ACTIONS(2578), - [anon_sym_bit_DASHor2] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2578), - [anon_sym_out_GT_GT] = ACTIONS(2578), - [anon_sym_e_GT_GT] = ACTIONS(2578), - [anon_sym_o_GT_GT] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1223)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1223), - [anon_sym_in] = ACTIONS(2722), - [sym__newline] = ACTIONS(2722), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_err_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_GT_PIPE] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), - [anon_sym_RPAREN] = ACTIONS(2722), - [anon_sym_GT2] = ACTIONS(2724), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2722), - [anon_sym_xor2] = ACTIONS(2722), - [anon_sym_or2] = ACTIONS(2722), - [anon_sym_not_DASHin2] = ACTIONS(2722), - [anon_sym_has2] = ACTIONS(2722), - [anon_sym_not_DASHhas2] = ACTIONS(2722), - [anon_sym_starts_DASHwith2] = ACTIONS(2722), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), - [anon_sym_ends_DASHwith2] = ACTIONS(2722), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), - [anon_sym_EQ_EQ2] = ACTIONS(2722), - [anon_sym_BANG_EQ2] = ACTIONS(2722), - [anon_sym_LT2] = ACTIONS(2724), - [anon_sym_LT_EQ2] = ACTIONS(2722), - [anon_sym_GT_EQ2] = ACTIONS(2722), - [anon_sym_EQ_TILDE2] = ACTIONS(2722), - [anon_sym_BANG_TILDE2] = ACTIONS(2722), - [anon_sym_like2] = ACTIONS(2722), - [anon_sym_not_DASHlike2] = ACTIONS(2722), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2722), - [anon_sym_bit_DASHxor2] = ACTIONS(2722), - [anon_sym_bit_DASHor2] = ACTIONS(2722), - [anon_sym_err_GT] = ACTIONS(2724), - [anon_sym_out_GT] = ACTIONS(2724), - [anon_sym_e_GT] = ACTIONS(2724), - [anon_sym_o_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT] = ACTIONS(2724), - [anon_sym_err_GT_GT] = ACTIONS(2722), - [anon_sym_out_GT_GT] = ACTIONS(2722), - [anon_sym_e_GT_GT] = ACTIONS(2722), - [anon_sym_o_GT_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1224)] = { - [sym_comment] = STATE(1224), - [anon_sym_in] = ACTIONS(2853), - [sym__newline] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_err_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_GT_PIPE] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), - [anon_sym_RPAREN] = ACTIONS(2578), - [anon_sym_GT2] = ACTIONS(2855), - [anon_sym_DASH2] = ACTIONS(2857), - [anon_sym_RBRACE] = ACTIONS(2578), - [anon_sym_STAR2] = ACTIONS(2859), - [anon_sym_and2] = ACTIONS(2578), - [anon_sym_xor2] = ACTIONS(2578), - [anon_sym_or2] = ACTIONS(2578), - [anon_sym_not_DASHin2] = ACTIONS(2853), - [anon_sym_has2] = ACTIONS(2853), - [anon_sym_not_DASHhas2] = ACTIONS(2853), - [anon_sym_starts_DASHwith2] = ACTIONS(2853), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2853), - [anon_sym_ends_DASHwith2] = ACTIONS(2853), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2853), - [anon_sym_EQ_EQ2] = ACTIONS(2861), - [anon_sym_BANG_EQ2] = ACTIONS(2861), - [anon_sym_LT2] = ACTIONS(2855), - [anon_sym_LT_EQ2] = ACTIONS(2861), - [anon_sym_GT_EQ2] = ACTIONS(2861), - [anon_sym_EQ_TILDE2] = ACTIONS(2863), - [anon_sym_BANG_TILDE2] = ACTIONS(2863), - [anon_sym_like2] = ACTIONS(2863), - [anon_sym_not_DASHlike2] = ACTIONS(2863), - [anon_sym_STAR_STAR2] = ACTIONS(2865), - [anon_sym_PLUS_PLUS2] = ACTIONS(2865), - [anon_sym_SLASH2] = ACTIONS(2859), - [anon_sym_mod2] = ACTIONS(2867), - [anon_sym_SLASH_SLASH2] = ACTIONS(2867), - [anon_sym_PLUS2] = ACTIONS(2869), - [anon_sym_bit_DASHshl2] = ACTIONS(2871), - [anon_sym_bit_DASHshr2] = ACTIONS(2871), - [anon_sym_bit_DASHand2] = ACTIONS(2873), - [anon_sym_bit_DASHxor2] = ACTIONS(2885), - [anon_sym_bit_DASHor2] = ACTIONS(2944), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2578), - [anon_sym_out_GT_GT] = ACTIONS(2578), - [anon_sym_e_GT_GT] = ACTIONS(2578), - [anon_sym_o_GT_GT] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1225)] = { - [aux_sym__repeat_newline] = STATE(1139), - [sym_comment] = STATE(1225), - [anon_sym_in] = ACTIONS(2756), - [sym__newline] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_err_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_GT_PIPE] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_GT2] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2756), - [anon_sym_xor2] = ACTIONS(2756), - [anon_sym_or2] = ACTIONS(2756), - [anon_sym_not_DASHin2] = ACTIONS(2756), - [anon_sym_has2] = ACTIONS(2756), - [anon_sym_not_DASHhas2] = ACTIONS(2756), - [anon_sym_starts_DASHwith2] = ACTIONS(2756), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2756), - [anon_sym_ends_DASHwith2] = ACTIONS(2756), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2756), - [anon_sym_EQ_EQ2] = ACTIONS(2756), - [anon_sym_BANG_EQ2] = ACTIONS(2756), - [anon_sym_LT2] = ACTIONS(2758), - [anon_sym_LT_EQ2] = ACTIONS(2756), - [anon_sym_GT_EQ2] = ACTIONS(2756), - [anon_sym_EQ_TILDE2] = ACTIONS(2756), - [anon_sym_BANG_TILDE2] = ACTIONS(2756), - [anon_sym_like2] = ACTIONS(2756), - [anon_sym_not_DASHlike2] = ACTIONS(2756), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2756), - [anon_sym_bit_DASHshr2] = ACTIONS(2756), - [anon_sym_bit_DASHand2] = ACTIONS(2756), - [anon_sym_bit_DASHxor2] = ACTIONS(2756), - [anon_sym_bit_DASHor2] = ACTIONS(2756), - [anon_sym_err_GT] = ACTIONS(2758), - [anon_sym_out_GT] = ACTIONS(2758), - [anon_sym_e_GT] = ACTIONS(2758), - [anon_sym_o_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT] = ACTIONS(2758), - [anon_sym_err_GT_GT] = ACTIONS(2756), - [anon_sym_out_GT_GT] = ACTIONS(2756), - [anon_sym_e_GT_GT] = ACTIONS(2756), - [anon_sym_o_GT_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1226)] = { - [aux_sym__repeat_newline] = STATE(1170), - [sym_comment] = STATE(1226), - [anon_sym_in] = ACTIONS(2718), - [sym__newline] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_err_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_GT_PIPE] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), - [anon_sym_RPAREN] = ACTIONS(2718), - [anon_sym_GT2] = ACTIONS(2720), - [anon_sym_DASH2] = ACTIONS(2718), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2718), - [anon_sym_xor2] = ACTIONS(2718), - [anon_sym_or2] = ACTIONS(2718), - [anon_sym_not_DASHin2] = ACTIONS(2718), - [anon_sym_has2] = ACTIONS(2718), - [anon_sym_not_DASHhas2] = ACTIONS(2718), - [anon_sym_starts_DASHwith2] = ACTIONS(2718), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2718), - [anon_sym_ends_DASHwith2] = ACTIONS(2718), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2718), - [anon_sym_EQ_EQ2] = ACTIONS(2718), - [anon_sym_BANG_EQ2] = ACTIONS(2718), - [anon_sym_LT2] = ACTIONS(2720), - [anon_sym_LT_EQ2] = ACTIONS(2718), - [anon_sym_GT_EQ2] = ACTIONS(2718), - [anon_sym_EQ_TILDE2] = ACTIONS(2718), - [anon_sym_BANG_TILDE2] = ACTIONS(2718), - [anon_sym_like2] = ACTIONS(2718), - [anon_sym_not_DASHlike2] = ACTIONS(2718), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2720), - [anon_sym_bit_DASHshl2] = ACTIONS(2718), - [anon_sym_bit_DASHshr2] = ACTIONS(2718), - [anon_sym_bit_DASHand2] = ACTIONS(2718), - [anon_sym_bit_DASHxor2] = ACTIONS(2718), - [anon_sym_bit_DASHor2] = ACTIONS(2718), - [anon_sym_err_GT] = ACTIONS(2720), - [anon_sym_out_GT] = ACTIONS(2720), - [anon_sym_e_GT] = ACTIONS(2720), - [anon_sym_o_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT] = ACTIONS(2720), - [anon_sym_err_GT_GT] = ACTIONS(2718), - [anon_sym_out_GT_GT] = ACTIONS(2718), - [anon_sym_e_GT_GT] = ACTIONS(2718), - [anon_sym_o_GT_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(1227)] = { [sym_comment] = STATE(1227), - [anon_sym_in] = ACTIONS(2853), - [sym__newline] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_err_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_GT_PIPE] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), - [anon_sym_RPAREN] = ACTIONS(2578), - [anon_sym_GT2] = ACTIONS(2855), - [anon_sym_DASH2] = ACTIONS(2857), - [anon_sym_RBRACE] = ACTIONS(2578), - [anon_sym_STAR2] = ACTIONS(2859), - [anon_sym_and2] = ACTIONS(2946), - [anon_sym_xor2] = ACTIONS(2578), - [anon_sym_or2] = ACTIONS(2578), - [anon_sym_not_DASHin2] = ACTIONS(2853), - [anon_sym_has2] = ACTIONS(2853), - [anon_sym_not_DASHhas2] = ACTIONS(2853), - [anon_sym_starts_DASHwith2] = ACTIONS(2853), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2853), - [anon_sym_ends_DASHwith2] = ACTIONS(2853), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2853), - [anon_sym_EQ_EQ2] = ACTIONS(2861), - [anon_sym_BANG_EQ2] = ACTIONS(2861), - [anon_sym_LT2] = ACTIONS(2855), - [anon_sym_LT_EQ2] = ACTIONS(2861), - [anon_sym_GT_EQ2] = ACTIONS(2861), - [anon_sym_EQ_TILDE2] = ACTIONS(2863), - [anon_sym_BANG_TILDE2] = ACTIONS(2863), - [anon_sym_like2] = ACTIONS(2863), - [anon_sym_not_DASHlike2] = ACTIONS(2863), - [anon_sym_STAR_STAR2] = ACTIONS(2865), - [anon_sym_PLUS_PLUS2] = ACTIONS(2865), - [anon_sym_SLASH2] = ACTIONS(2859), - [anon_sym_mod2] = ACTIONS(2867), - [anon_sym_SLASH_SLASH2] = ACTIONS(2867), - [anon_sym_PLUS2] = ACTIONS(2869), - [anon_sym_bit_DASHshl2] = ACTIONS(2871), - [anon_sym_bit_DASHshr2] = ACTIONS(2871), - [anon_sym_bit_DASHand2] = ACTIONS(2873), - [anon_sym_bit_DASHxor2] = ACTIONS(2885), - [anon_sym_bit_DASHor2] = ACTIONS(2944), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2578), - [anon_sym_out_GT_GT] = ACTIONS(2578), - [anon_sym_e_GT_GT] = ACTIONS(2578), - [anon_sym_o_GT_GT] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), + [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(1134), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1228), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2875), - [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(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2877), - [anon_sym_xor2] = ACTIONS(2879), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2851), - [anon_sym_bit_DASHxor2] = ACTIONS(2881), - [anon_sym_bit_DASHor2] = ACTIONS(2883), - [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(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(507), + [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(2722), - [sym__newline] = ACTIONS(2722), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_err_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_GT_PIPE] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), - [anon_sym_RPAREN] = ACTIONS(2722), - [anon_sym_GT2] = ACTIONS(2724), - [anon_sym_DASH2] = ACTIONS(2722), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2722), - [anon_sym_xor2] = ACTIONS(2722), - [anon_sym_or2] = ACTIONS(2722), - [anon_sym_not_DASHin2] = ACTIONS(2722), - [anon_sym_has2] = ACTIONS(2722), - [anon_sym_not_DASHhas2] = ACTIONS(2722), - [anon_sym_starts_DASHwith2] = ACTIONS(2722), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), - [anon_sym_ends_DASHwith2] = ACTIONS(2722), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), - [anon_sym_EQ_EQ2] = ACTIONS(2722), - [anon_sym_BANG_EQ2] = ACTIONS(2722), - [anon_sym_LT2] = ACTIONS(2724), - [anon_sym_LT_EQ2] = ACTIONS(2722), - [anon_sym_GT_EQ2] = ACTIONS(2722), - [anon_sym_EQ_TILDE2] = ACTIONS(2722), - [anon_sym_BANG_TILDE2] = ACTIONS(2722), - [anon_sym_like2] = ACTIONS(2722), - [anon_sym_not_DASHlike2] = ACTIONS(2722), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2724), - [anon_sym_bit_DASHshl2] = ACTIONS(2722), - [anon_sym_bit_DASHshr2] = ACTIONS(2722), - [anon_sym_bit_DASHand2] = ACTIONS(2722), - [anon_sym_bit_DASHxor2] = ACTIONS(2722), - [anon_sym_bit_DASHor2] = ACTIONS(2722), - [anon_sym_err_GT] = ACTIONS(2724), - [anon_sym_out_GT] = ACTIONS(2724), - [anon_sym_e_GT] = ACTIONS(2724), - [anon_sym_o_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT] = ACTIONS(2724), - [anon_sym_err_GT_GT] = ACTIONS(2722), - [anon_sym_out_GT_GT] = ACTIONS(2722), - [anon_sym_e_GT_GT] = ACTIONS(2722), - [anon_sym_o_GT_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1230)] = { - [aux_sym__repeat_newline] = STATE(1148), - [sym_comment] = STATE(1230), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_err_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_GT_PIPE] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2756), - [anon_sym_xor2] = ACTIONS(2756), - [anon_sym_or2] = ACTIONS(2756), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2756), - [anon_sym_bit_DASHxor2] = ACTIONS(2756), - [anon_sym_bit_DASHor2] = ACTIONS(2756), - [anon_sym_err_GT] = ACTIONS(2758), - [anon_sym_out_GT] = ACTIONS(2758), - [anon_sym_e_GT] = ACTIONS(2758), - [anon_sym_o_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT] = ACTIONS(2758), - [anon_sym_err_GT_GT] = ACTIONS(2756), - [anon_sym_out_GT_GT] = ACTIONS(2756), - [anon_sym_e_GT_GT] = ACTIONS(2756), - [anon_sym_o_GT_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1231)] = { - [sym_comment] = STATE(1231), - [anon_sym_in] = ACTIONS(2853), - [sym__newline] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_err_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_GT_PIPE] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), - [anon_sym_RPAREN] = ACTIONS(2578), - [anon_sym_GT2] = ACTIONS(2855), - [anon_sym_DASH2] = ACTIONS(2857), - [anon_sym_RBRACE] = ACTIONS(2578), - [anon_sym_STAR2] = ACTIONS(2859), - [anon_sym_and2] = ACTIONS(2946), - [anon_sym_xor2] = ACTIONS(2948), - [anon_sym_or2] = ACTIONS(2578), - [anon_sym_not_DASHin2] = ACTIONS(2853), - [anon_sym_has2] = ACTIONS(2853), - [anon_sym_not_DASHhas2] = ACTIONS(2853), - [anon_sym_starts_DASHwith2] = ACTIONS(2853), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2853), - [anon_sym_ends_DASHwith2] = ACTIONS(2853), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2853), - [anon_sym_EQ_EQ2] = ACTIONS(2861), - [anon_sym_BANG_EQ2] = ACTIONS(2861), - [anon_sym_LT2] = ACTIONS(2855), - [anon_sym_LT_EQ2] = ACTIONS(2861), - [anon_sym_GT_EQ2] = ACTIONS(2861), - [anon_sym_EQ_TILDE2] = ACTIONS(2863), - [anon_sym_BANG_TILDE2] = ACTIONS(2863), - [anon_sym_like2] = ACTIONS(2863), - [anon_sym_not_DASHlike2] = ACTIONS(2863), - [anon_sym_STAR_STAR2] = ACTIONS(2865), - [anon_sym_PLUS_PLUS2] = ACTIONS(2865), - [anon_sym_SLASH2] = ACTIONS(2859), - [anon_sym_mod2] = ACTIONS(2867), - [anon_sym_SLASH_SLASH2] = ACTIONS(2867), - [anon_sym_PLUS2] = ACTIONS(2869), - [anon_sym_bit_DASHshl2] = ACTIONS(2871), - [anon_sym_bit_DASHshr2] = ACTIONS(2871), - [anon_sym_bit_DASHand2] = ACTIONS(2873), - [anon_sym_bit_DASHxor2] = ACTIONS(2885), - [anon_sym_bit_DASHor2] = ACTIONS(2944), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2578), - [anon_sym_out_GT_GT] = ACTIONS(2578), - [anon_sym_e_GT_GT] = ACTIONS(2578), - [anon_sym_o_GT_GT] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1232)] = { - [sym__expression] = STATE(4729), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2216), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1832), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_comment] = STATE(1232), - [aux_sym_cmd_identifier_token2] = ACTIONS(2950), - [anon_sym_true] = ACTIONS(2632), - [anon_sym_false] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [aux_sym_cmd_identifier_token3] = ACTIONS(2636), - [aux_sym_cmd_identifier_token4] = ACTIONS(2636), - [aux_sym_cmd_identifier_token5] = ACTIONS(2636), + [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(1006), + [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(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2046), - [aux_sym__val_number_decimal_token3] = ACTIONS(2640), - [aux_sym__val_number_decimal_token4] = ACTIONS(2640), - [aux_sym__val_number_token1] = ACTIONS(2636), - [aux_sym__val_number_token2] = ACTIONS(2636), - [aux_sym__val_number_token3] = ACTIONS(2636), + [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(2642), + [sym_val_date] = ACTIONS(2567), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -137475,1673 +137657,1807 @@ 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(527), + [sym_comment] = STATE(1231), + [anon_sym_in] = ACTIONS(2762), + [sym__newline] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_err_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_GT_PIPE] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_GT2] = ACTIONS(2911), + [anon_sym_DASH2] = ACTIONS(2913), + [anon_sym_STAR2] = ACTIONS(2915), + [anon_sym_and2] = ACTIONS(2762), + [anon_sym_xor2] = ACTIONS(2762), + [anon_sym_or2] = ACTIONS(2762), + [anon_sym_not_DASHin2] = ACTIONS(2762), + [anon_sym_has2] = ACTIONS(2762), + [anon_sym_not_DASHhas2] = ACTIONS(2762), + [anon_sym_starts_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2762), + [anon_sym_ends_DASHwith2] = ACTIONS(2762), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2762), + [anon_sym_EQ_EQ2] = ACTIONS(2917), + [anon_sym_BANG_EQ2] = ACTIONS(2917), + [anon_sym_LT2] = ACTIONS(2911), + [anon_sym_LT_EQ2] = ACTIONS(2917), + [anon_sym_GT_EQ2] = ACTIONS(2917), + [anon_sym_EQ_TILDE2] = ACTIONS(2762), + [anon_sym_BANG_TILDE2] = ACTIONS(2762), + [anon_sym_like2] = ACTIONS(2762), + [anon_sym_not_DASHlike2] = ACTIONS(2762), + [anon_sym_STAR_STAR2] = ACTIONS(2919), + [anon_sym_PLUS_PLUS2] = ACTIONS(2919), + [anon_sym_SLASH2] = ACTIONS(2915), + [anon_sym_mod2] = ACTIONS(2921), + [anon_sym_SLASH_SLASH2] = ACTIONS(2921), + [anon_sym_PLUS2] = ACTIONS(2923), + [anon_sym_bit_DASHshl2] = ACTIONS(2925), + [anon_sym_bit_DASHshr2] = ACTIONS(2925), + [anon_sym_bit_DASHand2] = ACTIONS(2762), + [anon_sym_bit_DASHxor2] = ACTIONS(2762), + [anon_sym_bit_DASHor2] = ACTIONS(2762), + [anon_sym_err_GT] = ACTIONS(2764), + [anon_sym_out_GT] = ACTIONS(2764), + [anon_sym_e_GT] = ACTIONS(2764), + [anon_sym_o_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT] = ACTIONS(2764), + [anon_sym_err_GT_GT] = ACTIONS(2762), + [anon_sym_out_GT_GT] = ACTIONS(2762), + [anon_sym_e_GT_GT] = ACTIONS(2762), + [anon_sym_o_GT_GT] = ACTIONS(2762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2762), + [anon_sym_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(1159), + [aux_sym__repeat_newline] = STATE(1186), [sym_comment] = STATE(1233), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_err_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_GT_PIPE] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2756), - [anon_sym_xor2] = ACTIONS(2756), - [anon_sym_or2] = ACTIONS(2756), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2851), - [anon_sym_bit_DASHxor2] = ACTIONS(2756), - [anon_sym_bit_DASHor2] = ACTIONS(2756), - [anon_sym_err_GT] = ACTIONS(2758), - [anon_sym_out_GT] = ACTIONS(2758), - [anon_sym_e_GT] = ACTIONS(2758), - [anon_sym_o_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT] = ACTIONS(2758), - [anon_sym_err_GT_GT] = ACTIONS(2756), - [anon_sym_out_GT_GT] = ACTIONS(2756), - [anon_sym_e_GT_GT] = ACTIONS(2756), - [anon_sym_o_GT_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2720), + [anon_sym_err_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_GT_PIPE] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), + [anon_sym_RPAREN] = ACTIONS(2720), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2905), + [anon_sym_xor2] = ACTIONS(2909), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_err_GT] = ACTIONS(2722), + [anon_sym_out_GT] = ACTIONS(2722), + [anon_sym_e_GT] = ACTIONS(2722), + [anon_sym_o_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT] = ACTIONS(2722), + [anon_sym_err_GT_GT] = ACTIONS(2720), + [anon_sym_out_GT_GT] = ACTIONS(2720), + [anon_sym_e_GT_GT] = ACTIONS(2720), + [anon_sym_o_GT_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1234)] = { - [aux_sym__repeat_newline] = STATE(1172), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1234), - [anon_sym_in] = ACTIONS(2718), - [sym__newline] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_err_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_GT_PIPE] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), - [anon_sym_RPAREN] = ACTIONS(2718), - [anon_sym_GT2] = ACTIONS(2720), - [anon_sym_DASH2] = ACTIONS(2718), - [anon_sym_STAR2] = ACTIONS(2720), - [anon_sym_and2] = ACTIONS(2718), - [anon_sym_xor2] = ACTIONS(2718), - [anon_sym_or2] = ACTIONS(2718), - [anon_sym_not_DASHin2] = ACTIONS(2718), - [anon_sym_has2] = ACTIONS(2718), - [anon_sym_not_DASHhas2] = ACTIONS(2718), - [anon_sym_starts_DASHwith2] = ACTIONS(2718), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2718), - [anon_sym_ends_DASHwith2] = ACTIONS(2718), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2718), - [anon_sym_EQ_EQ2] = ACTIONS(2718), - [anon_sym_BANG_EQ2] = ACTIONS(2718), - [anon_sym_LT2] = ACTIONS(2720), - [anon_sym_LT_EQ2] = ACTIONS(2718), - [anon_sym_GT_EQ2] = ACTIONS(2718), - [anon_sym_EQ_TILDE2] = ACTIONS(2718), - [anon_sym_BANG_TILDE2] = ACTIONS(2718), - [anon_sym_like2] = ACTIONS(2718), - [anon_sym_not_DASHlike2] = ACTIONS(2718), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2720), - [anon_sym_mod2] = ACTIONS(2718), - [anon_sym_SLASH_SLASH2] = ACTIONS(2718), - [anon_sym_PLUS2] = ACTIONS(2720), - [anon_sym_bit_DASHshl2] = ACTIONS(2718), - [anon_sym_bit_DASHshr2] = ACTIONS(2718), - [anon_sym_bit_DASHand2] = ACTIONS(2718), - [anon_sym_bit_DASHxor2] = ACTIONS(2718), - [anon_sym_bit_DASHor2] = ACTIONS(2718), - [anon_sym_err_GT] = ACTIONS(2720), - [anon_sym_out_GT] = ACTIONS(2720), - [anon_sym_e_GT] = ACTIONS(2720), - [anon_sym_o_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT] = ACTIONS(2720), - [anon_sym_err_GT_GT] = ACTIONS(2718), - [anon_sym_out_GT_GT] = ACTIONS(2718), - [anon_sym_e_GT_GT] = ACTIONS(2718), - [anon_sym_o_GT_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [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(1235)] = { - [aux_sym__repeat_newline] = STATE(1169), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1235), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_err_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_GT_PIPE] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2756), - [anon_sym_xor2] = ACTIONS(2756), - [anon_sym_or2] = ACTIONS(2756), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2851), - [anon_sym_bit_DASHxor2] = ACTIONS(2881), - [anon_sym_bit_DASHor2] = ACTIONS(2756), - [anon_sym_err_GT] = ACTIONS(2758), - [anon_sym_out_GT] = ACTIONS(2758), - [anon_sym_e_GT] = ACTIONS(2758), - [anon_sym_o_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT] = ACTIONS(2758), - [anon_sym_err_GT_GT] = ACTIONS(2756), - [anon_sym_out_GT_GT] = ACTIONS(2756), - [anon_sym_e_GT_GT] = ACTIONS(2756), - [anon_sym_o_GT_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), + [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(507), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1236), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2816), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2820), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(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), - [ts_builtin_sym_end] = ACTIONS(2090), - [anon_sym_in] = ACTIONS(2090), - [sym__newline] = ACTIONS(2090), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_PIPE] = ACTIONS(2090), - [anon_sym_err_GT_PIPE] = ACTIONS(2090), - [anon_sym_out_GT_PIPE] = ACTIONS(2090), - [anon_sym_e_GT_PIPE] = ACTIONS(2090), - [anon_sym_o_GT_PIPE] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), - [anon_sym_GT2] = ACTIONS(2092), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_STAR2] = ACTIONS(2092), - [anon_sym_and2] = ACTIONS(2090), - [anon_sym_xor2] = ACTIONS(2090), - [anon_sym_or2] = ACTIONS(2090), - [anon_sym_not_DASHin2] = ACTIONS(2090), - [anon_sym_has2] = ACTIONS(2090), - [anon_sym_not_DASHhas2] = ACTIONS(2090), - [anon_sym_starts_DASHwith2] = ACTIONS(2090), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), - [anon_sym_ends_DASHwith2] = ACTIONS(2090), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), - [anon_sym_EQ_EQ2] = ACTIONS(2090), - [anon_sym_BANG_EQ2] = ACTIONS(2090), - [anon_sym_LT2] = ACTIONS(2092), - [anon_sym_LT_EQ2] = ACTIONS(2090), - [anon_sym_GT_EQ2] = ACTIONS(2090), - [anon_sym_EQ_TILDE2] = ACTIONS(2090), - [anon_sym_BANG_TILDE2] = ACTIONS(2090), - [anon_sym_like2] = ACTIONS(2090), - [anon_sym_not_DASHlike2] = ACTIONS(2090), - [anon_sym_STAR_STAR2] = ACTIONS(2090), - [anon_sym_PLUS_PLUS2] = ACTIONS(2090), - [anon_sym_SLASH2] = ACTIONS(2092), - [anon_sym_mod2] = ACTIONS(2090), - [anon_sym_SLASH_SLASH2] = ACTIONS(2090), - [anon_sym_PLUS2] = ACTIONS(2092), - [anon_sym_bit_DASHshl2] = ACTIONS(2090), - [anon_sym_bit_DASHshr2] = ACTIONS(2090), - [anon_sym_bit_DASHand2] = ACTIONS(2090), - [anon_sym_bit_DASHxor2] = ACTIONS(2090), - [anon_sym_bit_DASHor2] = ACTIONS(2090), - [anon_sym_LBRACK2] = ACTIONS(2952), - [anon_sym_err_GT] = ACTIONS(2092), - [anon_sym_out_GT] = ACTIONS(2092), - [anon_sym_e_GT] = ACTIONS(2092), - [anon_sym_o_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT] = ACTIONS(2092), - [anon_sym_err_GT_GT] = ACTIONS(2090), - [anon_sym_out_GT_GT] = ACTIONS(2090), - [anon_sym_e_GT_GT] = ACTIONS(2090), - [anon_sym_o_GT_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), + [anon_sym_in] = ACTIONS(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)] = { - [sym__expression] = STATE(4739), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2216), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1832), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1238), - [aux_sym_cmd_identifier_token2] = ACTIONS(2950), - [anon_sym_true] = ACTIONS(2632), - [anon_sym_false] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [aux_sym_cmd_identifier_token3] = ACTIONS(2636), - [aux_sym_cmd_identifier_token4] = ACTIONS(2636), - [aux_sym_cmd_identifier_token5] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [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(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2046), - [aux_sym__val_number_decimal_token3] = ACTIONS(2640), - [aux_sym__val_number_decimal_token4] = ACTIONS(2640), - [aux_sym__val_number_token1] = ACTIONS(2636), - [aux_sym__val_number_token2] = ACTIONS(2636), - [aux_sym__val_number_token3] = ACTIONS(2636), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2642), - [anon_sym_DQUOTE] = ACTIONS(197), - [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(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(507), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1239), - [anon_sym_in] = ACTIONS(2722), - [sym__newline] = ACTIONS(2722), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_err_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_GT_PIPE] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), - [anon_sym_RPAREN] = ACTIONS(2722), - [anon_sym_GT2] = ACTIONS(2724), - [anon_sym_DASH2] = ACTIONS(2722), - [anon_sym_STAR2] = ACTIONS(2724), - [anon_sym_and2] = ACTIONS(2722), - [anon_sym_xor2] = ACTIONS(2722), - [anon_sym_or2] = ACTIONS(2722), - [anon_sym_not_DASHin2] = ACTIONS(2722), - [anon_sym_has2] = ACTIONS(2722), - [anon_sym_not_DASHhas2] = ACTIONS(2722), - [anon_sym_starts_DASHwith2] = ACTIONS(2722), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), - [anon_sym_ends_DASHwith2] = ACTIONS(2722), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), - [anon_sym_EQ_EQ2] = ACTIONS(2722), - [anon_sym_BANG_EQ2] = ACTIONS(2722), - [anon_sym_LT2] = ACTIONS(2724), - [anon_sym_LT_EQ2] = ACTIONS(2722), - [anon_sym_GT_EQ2] = ACTIONS(2722), - [anon_sym_EQ_TILDE2] = ACTIONS(2722), - [anon_sym_BANG_TILDE2] = ACTIONS(2722), - [anon_sym_like2] = ACTIONS(2722), - [anon_sym_not_DASHlike2] = ACTIONS(2722), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2724), - [anon_sym_mod2] = ACTIONS(2722), - [anon_sym_SLASH_SLASH2] = ACTIONS(2722), - [anon_sym_PLUS2] = ACTIONS(2724), - [anon_sym_bit_DASHshl2] = ACTIONS(2722), - [anon_sym_bit_DASHshr2] = ACTIONS(2722), - [anon_sym_bit_DASHand2] = ACTIONS(2722), - [anon_sym_bit_DASHxor2] = ACTIONS(2722), - [anon_sym_bit_DASHor2] = ACTIONS(2722), - [anon_sym_err_GT] = ACTIONS(2724), - [anon_sym_out_GT] = ACTIONS(2724), - [anon_sym_e_GT] = ACTIONS(2724), - [anon_sym_o_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT] = ACTIONS(2724), - [anon_sym_err_GT_GT] = ACTIONS(2722), - [anon_sym_out_GT_GT] = ACTIONS(2722), - [anon_sym_e_GT_GT] = ACTIONS(2722), - [anon_sym_o_GT_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_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(2415), - [sym__newline] = ACTIONS(2510), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_err_GT_PIPE] = ACTIONS(2513), - [anon_sym_out_GT_PIPE] = ACTIONS(2513), - [anon_sym_e_GT_PIPE] = ACTIONS(2513), - [anon_sym_o_GT_PIPE] = ACTIONS(2513), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2513), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2513), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2513), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2513), - [anon_sym_RPAREN] = ACTIONS(2513), - [anon_sym_GT2] = ACTIONS(2417), - [anon_sym_DASH2] = ACTIONS(2415), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_STAR2] = ACTIONS(2417), - [anon_sym_and2] = ACTIONS(2415), - [anon_sym_xor2] = ACTIONS(2415), - [anon_sym_or2] = ACTIONS(2415), - [anon_sym_not_DASHin2] = ACTIONS(2415), - [anon_sym_has2] = ACTIONS(2415), - [anon_sym_not_DASHhas2] = ACTIONS(2415), - [anon_sym_starts_DASHwith2] = ACTIONS(2415), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2415), - [anon_sym_ends_DASHwith2] = ACTIONS(2415), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2415), - [anon_sym_EQ_EQ2] = ACTIONS(2415), - [anon_sym_BANG_EQ2] = ACTIONS(2415), - [anon_sym_LT2] = ACTIONS(2417), - [anon_sym_LT_EQ2] = ACTIONS(2415), - [anon_sym_GT_EQ2] = ACTIONS(2415), - [anon_sym_EQ_TILDE2] = ACTIONS(2415), - [anon_sym_BANG_TILDE2] = ACTIONS(2415), - [anon_sym_like2] = ACTIONS(2415), - [anon_sym_not_DASHlike2] = ACTIONS(2415), - [anon_sym_STAR_STAR2] = ACTIONS(2415), - [anon_sym_PLUS_PLUS2] = ACTIONS(2415), - [anon_sym_SLASH2] = ACTIONS(2417), - [anon_sym_mod2] = ACTIONS(2415), - [anon_sym_SLASH_SLASH2] = ACTIONS(2415), - [anon_sym_PLUS2] = ACTIONS(2417), - [anon_sym_bit_DASHshl2] = ACTIONS(2415), - [anon_sym_bit_DASHshr2] = ACTIONS(2415), - [anon_sym_bit_DASHand2] = ACTIONS(2415), - [anon_sym_bit_DASHxor2] = ACTIONS(2415), - [anon_sym_bit_DASHor2] = ACTIONS(2415), - [anon_sym_err_GT] = ACTIONS(2515), - [anon_sym_out_GT] = ACTIONS(2515), - [anon_sym_e_GT] = ACTIONS(2515), - [anon_sym_o_GT] = ACTIONS(2515), - [anon_sym_err_PLUSout_GT] = ACTIONS(2515), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2515), - [anon_sym_o_PLUSe_GT] = ACTIONS(2515), - [anon_sym_e_PLUSo_GT] = ACTIONS(2515), - [anon_sym_err_GT_GT] = ACTIONS(2513), - [anon_sym_out_GT_GT] = ACTIONS(2513), - [anon_sym_e_GT_GT] = ACTIONS(2513), - [anon_sym_o_GT_GT] = ACTIONS(2513), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2513), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2513), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2513), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2513), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2720), + [anon_sym_err_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_GT_PIPE] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), + [anon_sym_RPAREN] = ACTIONS(2720), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2720), + [anon_sym_BANG_TILDE2] = ACTIONS(2720), + [anon_sym_like2] = ACTIONS(2720), + [anon_sym_not_DASHlike2] = ACTIONS(2720), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2720), + [anon_sym_bit_DASHxor2] = ACTIONS(2720), + [anon_sym_bit_DASHor2] = ACTIONS(2720), + [anon_sym_err_GT] = ACTIONS(2722), + [anon_sym_out_GT] = ACTIONS(2722), + [anon_sym_e_GT] = ACTIONS(2722), + [anon_sym_o_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT] = ACTIONS(2722), + [anon_sym_err_GT_GT] = ACTIONS(2720), + [anon_sym_out_GT_GT] = ACTIONS(2720), + [anon_sym_e_GT_GT] = ACTIONS(2720), + [anon_sym_o_GT_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1241)] = { + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1241), - [anon_sym_in] = ACTIONS(2853), - [sym__newline] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_err_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_GT_PIPE] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), - [anon_sym_RPAREN] = ACTIONS(2578), - [anon_sym_GT2] = ACTIONS(2855), - [anon_sym_DASH2] = ACTIONS(2857), - [anon_sym_RBRACE] = ACTIONS(2578), - [anon_sym_STAR2] = ACTIONS(2859), - [anon_sym_and2] = ACTIONS(2578), - [anon_sym_xor2] = ACTIONS(2578), - [anon_sym_or2] = ACTIONS(2578), - [anon_sym_not_DASHin2] = ACTIONS(2853), - [anon_sym_has2] = ACTIONS(2853), - [anon_sym_not_DASHhas2] = ACTIONS(2853), - [anon_sym_starts_DASHwith2] = ACTIONS(2853), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2853), - [anon_sym_ends_DASHwith2] = ACTIONS(2853), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2853), - [anon_sym_EQ_EQ2] = ACTIONS(2861), - [anon_sym_BANG_EQ2] = ACTIONS(2861), - [anon_sym_LT2] = ACTIONS(2855), - [anon_sym_LT_EQ2] = ACTIONS(2861), - [anon_sym_GT_EQ2] = ACTIONS(2861), - [anon_sym_EQ_TILDE2] = ACTIONS(2578), - [anon_sym_BANG_TILDE2] = ACTIONS(2578), - [anon_sym_like2] = ACTIONS(2578), - [anon_sym_not_DASHlike2] = ACTIONS(2578), - [anon_sym_STAR_STAR2] = ACTIONS(2865), - [anon_sym_PLUS_PLUS2] = ACTIONS(2865), - [anon_sym_SLASH2] = ACTIONS(2859), - [anon_sym_mod2] = ACTIONS(2867), - [anon_sym_SLASH_SLASH2] = ACTIONS(2867), - [anon_sym_PLUS2] = ACTIONS(2869), - [anon_sym_bit_DASHshl2] = ACTIONS(2871), - [anon_sym_bit_DASHshr2] = ACTIONS(2871), - [anon_sym_bit_DASHand2] = ACTIONS(2578), - [anon_sym_bit_DASHxor2] = ACTIONS(2578), - [anon_sym_bit_DASHor2] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2578), - [anon_sym_out_GT_GT] = ACTIONS(2578), - [anon_sym_e_GT_GT] = ACTIONS(2578), - [anon_sym_o_GT_GT] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), + [anon_sym_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(1242)] = { - [aux_sym__repeat_newline] = STATE(1174), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1242), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_err_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_GT_PIPE] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), - [anon_sym_RPAREN] = ACTIONS(2718), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2718), - [anon_sym_xor2] = ACTIONS(2718), - [anon_sym_or2] = ACTIONS(2718), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2851), - [anon_sym_bit_DASHxor2] = ACTIONS(2881), - [anon_sym_bit_DASHor2] = ACTIONS(2883), - [anon_sym_err_GT] = ACTIONS(2720), - [anon_sym_out_GT] = ACTIONS(2720), - [anon_sym_e_GT] = ACTIONS(2720), - [anon_sym_o_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT] = ACTIONS(2720), - [anon_sym_err_GT_GT] = ACTIONS(2718), - [anon_sym_out_GT_GT] = ACTIONS(2718), - [anon_sym_e_GT_GT] = ACTIONS(2718), - [anon_sym_o_GT_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [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(1243)] = { - [aux_sym__repeat_newline] = STATE(1138), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1243), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2822), - [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(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [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(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [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(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(1244)] = { - [aux_sym__repeat_newline] = STATE(507), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1244), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2722), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_err_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_GT_PIPE] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), - [anon_sym_RPAREN] = ACTIONS(2722), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2722), - [anon_sym_xor2] = ACTIONS(2722), - [anon_sym_or2] = ACTIONS(2722), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2816), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2820), - [anon_sym_err_GT] = ACTIONS(2724), - [anon_sym_out_GT] = ACTIONS(2724), - [anon_sym_e_GT] = ACTIONS(2724), - [anon_sym_o_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT] = ACTIONS(2724), - [anon_sym_err_GT_GT] = ACTIONS(2722), - [anon_sym_out_GT_GT] = ACTIONS(2722), - [anon_sym_e_GT_GT] = ACTIONS(2722), - [anon_sym_o_GT_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_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), }, [STATE(1245)] = { + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1245), - [ts_builtin_sym_end] = ACTIONS(2506), - [aux_sym_cmd_identifier_token2] = ACTIONS(2950), - [anon_sym_in] = ACTIONS(2508), - [sym__newline] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_PIPE] = ACTIONS(2506), - [anon_sym_err_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_GT_PIPE] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2506), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2508), - [anon_sym_STAR2] = ACTIONS(2508), - [anon_sym_and2] = ACTIONS(2508), - [anon_sym_xor2] = ACTIONS(2508), - [anon_sym_or2] = ACTIONS(2508), - [anon_sym_not_DASHin2] = ACTIONS(2508), - [anon_sym_has2] = ACTIONS(2508), - [anon_sym_not_DASHhas2] = ACTIONS(2508), - [anon_sym_starts_DASHwith2] = ACTIONS(2508), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2508), - [anon_sym_ends_DASHwith2] = ACTIONS(2508), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2508), - [anon_sym_EQ_EQ2] = ACTIONS(2506), - [anon_sym_BANG_EQ2] = ACTIONS(2506), - [anon_sym_LT2] = ACTIONS(2508), - [anon_sym_LT_EQ2] = ACTIONS(2506), - [anon_sym_GT_EQ2] = ACTIONS(2506), - [anon_sym_EQ_TILDE2] = ACTIONS(2506), - [anon_sym_BANG_TILDE2] = ACTIONS(2508), - [anon_sym_like2] = ACTIONS(2508), - [anon_sym_not_DASHlike2] = ACTIONS(2508), - [anon_sym_STAR_STAR2] = ACTIONS(2508), - [anon_sym_PLUS_PLUS2] = ACTIONS(2508), - [anon_sym_SLASH2] = ACTIONS(2508), - [anon_sym_mod2] = ACTIONS(2508), - [anon_sym_SLASH_SLASH2] = ACTIONS(2508), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_bit_DASHshl2] = ACTIONS(2508), - [anon_sym_bit_DASHshr2] = ACTIONS(2508), - [anon_sym_bit_DASHand2] = ACTIONS(2508), - [anon_sym_bit_DASHxor2] = ACTIONS(2508), - [anon_sym_bit_DASHor2] = ACTIONS(2508), - [anon_sym_err_GT] = ACTIONS(2508), - [anon_sym_out_GT] = ACTIONS(2508), - [anon_sym_e_GT] = ACTIONS(2508), - [anon_sym_o_GT] = ACTIONS(2508), - [anon_sym_err_PLUSout_GT] = ACTIONS(2508), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2508), - [anon_sym_o_PLUSe_GT] = ACTIONS(2508), - [anon_sym_e_PLUSo_GT] = ACTIONS(2508), - [anon_sym_err_GT_GT] = ACTIONS(2506), - [anon_sym_out_GT_GT] = ACTIONS(2506), - [anon_sym_e_GT_GT] = ACTIONS(2506), - [anon_sym_o_GT_GT] = ACTIONS(2506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(103), + [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), - [ts_builtin_sym_end] = ACTIONS(884), - [anon_sym_in] = ACTIONS(884), - [sym__newline] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_err_GT_PIPE] = ACTIONS(884), - [anon_sym_out_GT_PIPE] = ACTIONS(884), - [anon_sym_e_GT_PIPE] = ACTIONS(884), - [anon_sym_o_GT_PIPE] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), - [anon_sym_GT2] = ACTIONS(858), - [anon_sym_DASH2] = ACTIONS(884), - [anon_sym_STAR2] = ACTIONS(858), - [anon_sym_and2] = ACTIONS(884), - [anon_sym_xor2] = ACTIONS(884), - [anon_sym_or2] = ACTIONS(884), - [anon_sym_not_DASHin2] = ACTIONS(884), - [anon_sym_has2] = ACTIONS(884), - [anon_sym_not_DASHhas2] = ACTIONS(884), - [anon_sym_starts_DASHwith2] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(884), - [anon_sym_ends_DASHwith2] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(884), - [anon_sym_EQ_EQ2] = ACTIONS(884), - [anon_sym_BANG_EQ2] = ACTIONS(884), - [anon_sym_LT2] = ACTIONS(858), - [anon_sym_LT_EQ2] = ACTIONS(884), - [anon_sym_GT_EQ2] = ACTIONS(884), - [anon_sym_EQ_TILDE2] = ACTIONS(884), - [anon_sym_BANG_TILDE2] = ACTIONS(884), - [anon_sym_like2] = ACTIONS(884), - [anon_sym_not_DASHlike2] = ACTIONS(884), - [anon_sym_STAR_STAR2] = ACTIONS(884), - [anon_sym_PLUS_PLUS2] = ACTIONS(884), - [anon_sym_SLASH2] = ACTIONS(858), - [anon_sym_mod2] = ACTIONS(884), - [anon_sym_SLASH_SLASH2] = ACTIONS(884), - [anon_sym_PLUS2] = ACTIONS(858), - [anon_sym_bit_DASHshl2] = ACTIONS(884), - [anon_sym_bit_DASHshr2] = ACTIONS(884), - [anon_sym_bit_DASHand2] = ACTIONS(884), - [anon_sym_bit_DASHxor2] = ACTIONS(884), - [anon_sym_bit_DASHor2] = ACTIONS(884), - [anon_sym_err_GT] = ACTIONS(858), - [anon_sym_out_GT] = ACTIONS(858), - [anon_sym_e_GT] = ACTIONS(858), - [anon_sym_o_GT] = ACTIONS(858), - [anon_sym_err_PLUSout_GT] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT] = ACTIONS(858), - [anon_sym_o_PLUSe_GT] = ACTIONS(858), - [anon_sym_e_PLUSo_GT] = ACTIONS(858), - [anon_sym_err_GT_GT] = ACTIONS(884), - [anon_sym_out_GT_GT] = ACTIONS(884), - [anon_sym_e_GT_GT] = ACTIONS(884), - [anon_sym_o_GT_GT] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), - [sym__unquoted_pattern] = ACTIONS(1828), + [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(2521), - [aux_sym_cmd_identifier_token2] = ACTIONS(2950), - [anon_sym_in] = ACTIONS(2523), - [sym__newline] = ACTIONS(2521), - [anon_sym_SEMI] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2521), - [anon_sym_err_GT_PIPE] = ACTIONS(2521), - [anon_sym_out_GT_PIPE] = ACTIONS(2521), - [anon_sym_e_GT_PIPE] = ACTIONS(2521), - [anon_sym_o_GT_PIPE] = ACTIONS(2521), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2521), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2521), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2521), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2521), - [anon_sym_GT2] = ACTIONS(2523), - [anon_sym_DASH2] = ACTIONS(2523), - [anon_sym_STAR2] = ACTIONS(2523), - [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(2521), - [anon_sym_BANG_EQ2] = ACTIONS(2521), - [anon_sym_LT2] = ACTIONS(2523), - [anon_sym_LT_EQ2] = ACTIONS(2521), - [anon_sym_GT_EQ2] = ACTIONS(2521), - [anon_sym_EQ_TILDE2] = ACTIONS(2521), - [anon_sym_BANG_TILDE2] = ACTIONS(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(2523), - [anon_sym_mod2] = ACTIONS(2523), - [anon_sym_SLASH_SLASH2] = ACTIONS(2523), - [anon_sym_PLUS2] = ACTIONS(2523), - [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(2523), - [anon_sym_out_GT] = ACTIONS(2523), - [anon_sym_e_GT] = ACTIONS(2523), - [anon_sym_o_GT] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT] = ACTIONS(2523), - [anon_sym_err_GT_GT] = ACTIONS(2521), - [anon_sym_out_GT_GT] = ACTIONS(2521), - [anon_sym_e_GT_GT] = ACTIONS(2521), - [anon_sym_o_GT_GT] = ACTIONS(2521), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2521), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2521), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2521), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2521), - [anon_sym_POUND] = ACTIONS(103), + [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), - [ts_builtin_sym_end] = ACTIONS(884), - [aux_sym_cmd_identifier_token2] = ACTIONS(2950), - [anon_sym_in] = ACTIONS(858), - [sym__newline] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_err_GT_PIPE] = ACTIONS(884), - [anon_sym_out_GT_PIPE] = ACTIONS(884), - [anon_sym_e_GT_PIPE] = ACTIONS(884), - [anon_sym_o_GT_PIPE] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), - [anon_sym_GT2] = ACTIONS(858), - [anon_sym_DASH2] = ACTIONS(858), - [anon_sym_STAR2] = ACTIONS(858), - [anon_sym_and2] = ACTIONS(858), - [anon_sym_xor2] = ACTIONS(858), - [anon_sym_or2] = ACTIONS(858), - [anon_sym_not_DASHin2] = ACTIONS(858), - [anon_sym_has2] = ACTIONS(858), - [anon_sym_not_DASHhas2] = ACTIONS(858), - [anon_sym_starts_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(858), - [anon_sym_ends_DASHwith2] = ACTIONS(858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(858), - [anon_sym_EQ_EQ2] = ACTIONS(884), - [anon_sym_BANG_EQ2] = ACTIONS(884), - [anon_sym_LT2] = ACTIONS(858), - [anon_sym_LT_EQ2] = ACTIONS(884), - [anon_sym_GT_EQ2] = ACTIONS(884), - [anon_sym_EQ_TILDE2] = ACTIONS(884), - [anon_sym_BANG_TILDE2] = ACTIONS(858), - [anon_sym_like2] = ACTIONS(858), - [anon_sym_not_DASHlike2] = ACTIONS(858), - [anon_sym_STAR_STAR2] = ACTIONS(858), - [anon_sym_PLUS_PLUS2] = ACTIONS(858), - [anon_sym_SLASH2] = ACTIONS(858), - [anon_sym_mod2] = ACTIONS(858), - [anon_sym_SLASH_SLASH2] = ACTIONS(858), - [anon_sym_PLUS2] = ACTIONS(858), - [anon_sym_bit_DASHshl2] = ACTIONS(858), - [anon_sym_bit_DASHshr2] = ACTIONS(858), - [anon_sym_bit_DASHand2] = ACTIONS(858), - [anon_sym_bit_DASHxor2] = ACTIONS(858), - [anon_sym_bit_DASHor2] = ACTIONS(858), - [anon_sym_err_GT] = ACTIONS(858), - [anon_sym_out_GT] = ACTIONS(858), - [anon_sym_e_GT] = ACTIONS(858), - [anon_sym_o_GT] = ACTIONS(858), - [anon_sym_err_PLUSout_GT] = ACTIONS(858), - [anon_sym_out_PLUSerr_GT] = ACTIONS(858), - [anon_sym_o_PLUSe_GT] = ACTIONS(858), - [anon_sym_e_PLUSo_GT] = ACTIONS(858), - [anon_sym_err_GT_GT] = ACTIONS(884), - [anon_sym_out_GT_GT] = ACTIONS(884), - [anon_sym_e_GT_GT] = ACTIONS(884), - [anon_sym_o_GT_GT] = ACTIONS(884), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(884), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(884), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(884), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(884), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(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(1164), + [aux_sym__repeat_newline] = STATE(1188), [sym_comment] = STATE(1249), - [anon_sym_in] = ACTIONS(2688), - [sym__newline] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2688), - [anon_sym_has2] = ACTIONS(2688), - [anon_sym_not_DASHhas2] = ACTIONS(2688), - [anon_sym_starts_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), - [anon_sym_ends_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(2720), + [sym__newline] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2720), + [anon_sym_err_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_GT_PIPE] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), + [anon_sym_RPAREN] = ACTIONS(2720), + [anon_sym_GT2] = ACTIONS(2722), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2720), + [anon_sym_has2] = ACTIONS(2720), + [anon_sym_not_DASHhas2] = ACTIONS(2720), + [anon_sym_starts_DASHwith2] = ACTIONS(2720), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), + [anon_sym_ends_DASHwith2] = ACTIONS(2720), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), + [anon_sym_EQ_EQ2] = ACTIONS(2720), + [anon_sym_BANG_EQ2] = ACTIONS(2720), + [anon_sym_LT2] = ACTIONS(2722), + [anon_sym_LT_EQ2] = ACTIONS(2720), + [anon_sym_GT_EQ2] = ACTIONS(2720), + [anon_sym_EQ_TILDE2] = ACTIONS(2720), + [anon_sym_BANG_TILDE2] = ACTIONS(2720), + [anon_sym_like2] = ACTIONS(2720), + [anon_sym_not_DASHlike2] = ACTIONS(2720), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2720), + [anon_sym_bit_DASHshr2] = ACTIONS(2720), + [anon_sym_bit_DASHand2] = ACTIONS(2720), + [anon_sym_bit_DASHxor2] = ACTIONS(2720), + [anon_sym_bit_DASHor2] = ACTIONS(2720), + [anon_sym_err_GT] = ACTIONS(2722), + [anon_sym_out_GT] = ACTIONS(2722), + [anon_sym_e_GT] = ACTIONS(2722), + [anon_sym_o_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT] = ACTIONS(2722), + [anon_sym_err_GT_GT] = ACTIONS(2720), + [anon_sym_out_GT_GT] = ACTIONS(2720), + [anon_sym_e_GT_GT] = ACTIONS(2720), + [anon_sym_o_GT_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1250)] = { - [aux_sym__repeat_newline] = STATE(1182), + [aux_sym__repeat_newline] = STATE(1257), [sym_comment] = STATE(1250), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2877), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2851), - [anon_sym_bit_DASHxor2] = ACTIONS(2881), - [anon_sym_bit_DASHor2] = ACTIONS(2883), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(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(1251)] = { - [aux_sym__repeat_newline] = STATE(507), + [aux_sym__repeat_newline] = STATE(1263), [sym_comment] = STATE(1251), - [anon_sym_in] = ACTIONS(2692), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2692), - [anon_sym_has2] = ACTIONS(2692), - [anon_sym_not_DASHhas2] = ACTIONS(2692), - [anon_sym_starts_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), - [anon_sym_ends_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(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(1176), + [aux_sym__repeat_newline] = STATE(527), [sym_comment] = STATE(1252), - [anon_sym_in] = ACTIONS(2835), - [sym__newline] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_err_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_GT_PIPE] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), - [anon_sym_RPAREN] = ACTIONS(2718), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2877), - [anon_sym_xor2] = ACTIONS(2718), - [anon_sym_or2] = ACTIONS(2718), - [anon_sym_not_DASHin2] = ACTIONS(2835), - [anon_sym_has2] = ACTIONS(2835), - [anon_sym_not_DASHhas2] = ACTIONS(2835), - [anon_sym_starts_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2835), - [anon_sym_ends_DASHwith2] = ACTIONS(2835), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2835), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2846), - [anon_sym_BANG_TILDE2] = ACTIONS(2846), - [anon_sym_like2] = ACTIONS(2846), - [anon_sym_not_DASHlike2] = ACTIONS(2846), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2851), - [anon_sym_bit_DASHxor2] = ACTIONS(2881), - [anon_sym_bit_DASHor2] = ACTIONS(2883), - [anon_sym_err_GT] = ACTIONS(2720), - [anon_sym_out_GT] = ACTIONS(2720), - [anon_sym_e_GT] = ACTIONS(2720), - [anon_sym_o_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT] = ACTIONS(2720), - [anon_sym_err_GT_GT] = ACTIONS(2718), - [anon_sym_out_GT_GT] = ACTIONS(2718), - [anon_sym_e_GT_GT] = ACTIONS(2718), - [anon_sym_o_GT_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [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)] = { - [aux_sym__repeat_newline] = STATE(1194), [sym_comment] = STATE(1253), - [anon_sym_in] = ACTIONS(2688), - [sym__newline] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2690), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2688), - [anon_sym_has2] = ACTIONS(2688), - [anon_sym_not_DASHhas2] = ACTIONS(2688), - [anon_sym_starts_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), - [anon_sym_ends_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), - [anon_sym_EQ_EQ2] = ACTIONS(2688), - [anon_sym_BANG_EQ2] = ACTIONS(2688), - [anon_sym_LT2] = ACTIONS(2690), - [anon_sym_LT_EQ2] = ACTIONS(2688), - [anon_sym_GT_EQ2] = ACTIONS(2688), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2688), - [anon_sym_bit_DASHshr2] = ACTIONS(2688), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(3), + [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(1167), + [aux_sym__repeat_newline] = STATE(1266), [sym_comment] = STATE(1254), - [anon_sym_in] = ACTIONS(2688), - [sym__newline] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2690), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2688), - [anon_sym_has2] = ACTIONS(2688), - [anon_sym_not_DASHhas2] = ACTIONS(2688), - [anon_sym_starts_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), - [anon_sym_ends_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), - [anon_sym_EQ_EQ2] = ACTIONS(2688), - [anon_sym_BANG_EQ2] = ACTIONS(2688), - [anon_sym_LT2] = ACTIONS(2690), - [anon_sym_LT_EQ2] = ACTIONS(2688), - [anon_sym_GT_EQ2] = ACTIONS(2688), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(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(2578), - [sym__newline] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_err_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_GT_PIPE] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), - [anon_sym_RPAREN] = ACTIONS(2578), - [anon_sym_GT2] = ACTIONS(2580), - [anon_sym_DASH2] = ACTIONS(2857), - [anon_sym_RBRACE] = ACTIONS(2578), - [anon_sym_STAR2] = ACTIONS(2859), - [anon_sym_and2] = ACTIONS(2578), - [anon_sym_xor2] = ACTIONS(2578), - [anon_sym_or2] = ACTIONS(2578), - [anon_sym_not_DASHin2] = ACTIONS(2578), - [anon_sym_has2] = ACTIONS(2578), - [anon_sym_not_DASHhas2] = ACTIONS(2578), - [anon_sym_starts_DASHwith2] = ACTIONS(2578), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2578), - [anon_sym_ends_DASHwith2] = ACTIONS(2578), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2578), - [anon_sym_EQ_EQ2] = ACTIONS(2578), - [anon_sym_BANG_EQ2] = ACTIONS(2578), - [anon_sym_LT2] = ACTIONS(2580), - [anon_sym_LT_EQ2] = ACTIONS(2578), - [anon_sym_GT_EQ2] = ACTIONS(2578), - [anon_sym_EQ_TILDE2] = ACTIONS(2578), - [anon_sym_BANG_TILDE2] = ACTIONS(2578), - [anon_sym_like2] = ACTIONS(2578), - [anon_sym_not_DASHlike2] = ACTIONS(2578), - [anon_sym_STAR_STAR2] = ACTIONS(2865), - [anon_sym_PLUS_PLUS2] = ACTIONS(2865), - [anon_sym_SLASH2] = ACTIONS(2859), - [anon_sym_mod2] = ACTIONS(2867), - [anon_sym_SLASH_SLASH2] = ACTIONS(2867), - [anon_sym_PLUS2] = ACTIONS(2869), - [anon_sym_bit_DASHshl2] = ACTIONS(2578), - [anon_sym_bit_DASHshr2] = ACTIONS(2578), - [anon_sym_bit_DASHand2] = ACTIONS(2578), - [anon_sym_bit_DASHxor2] = ACTIONS(2578), - [anon_sym_bit_DASHor2] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2578), - [anon_sym_out_GT_GT] = ACTIONS(2578), - [anon_sym_e_GT_GT] = ACTIONS(2578), - [anon_sym_o_GT_GT] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), + [anon_sym_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)] = { - [aux_sym__repeat_newline] = STATE(507), + [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), - [anon_sym_in] = ACTIONS(2692), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2694), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2692), - [anon_sym_has2] = ACTIONS(2692), - [anon_sym_not_DASHhas2] = ACTIONS(2692), - [anon_sym_starts_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), - [anon_sym_ends_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), - [anon_sym_EQ_EQ2] = ACTIONS(2692), - [anon_sym_BANG_EQ2] = ACTIONS(2692), - [anon_sym_LT2] = ACTIONS(2694), - [anon_sym_LT_EQ2] = ACTIONS(2692), - [anon_sym_GT_EQ2] = ACTIONS(2692), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1257)] = { - [sym__expression] = STATE(4810), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2216), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1832), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), - [sym_comment] = STATE(1257), - [aux_sym_cmd_identifier_token2] = ACTIONS(2630), - [anon_sym_true] = ACTIONS(2632), - [anon_sym_false] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [aux_sym_cmd_identifier_token3] = ACTIONS(2636), - [aux_sym_cmd_identifier_token4] = ACTIONS(2636), - [aux_sym_cmd_identifier_token5] = ACTIONS(2636), + [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(1006), + [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(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2046), - [aux_sym__val_number_decimal_token3] = ACTIONS(2640), - [aux_sym__val_number_decimal_token4] = ACTIONS(2640), - [aux_sym__val_number_token1] = ACTIONS(2636), - [aux_sym__val_number_token2] = ACTIONS(2636), - [aux_sym__val_number_token3] = ACTIONS(2636), + [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(2642), + [sym_val_date] = ACTIONS(2567), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -139150,132 +139466,735 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, + [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(1258)] = { - [sym__expression] = STATE(4826), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2216), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1832), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), [sym_comment] = STATE(1258), - [aux_sym_cmd_identifier_token2] = ACTIONS(2630), - [anon_sym_true] = ACTIONS(2632), - [anon_sym_false] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [aux_sym_cmd_identifier_token3] = ACTIONS(2636), - [aux_sym_cmd_identifier_token4] = ACTIONS(2636), - [aux_sym_cmd_identifier_token5] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1006), - [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(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2046), - [aux_sym__val_number_decimal_token3] = ACTIONS(2640), - [aux_sym__val_number_decimal_token4] = ACTIONS(2640), - [aux_sym__val_number_token1] = ACTIONS(2636), - [aux_sym__val_number_token2] = ACTIONS(2636), - [aux_sym__val_number_token3] = ACTIONS(2636), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2642), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [ts_builtin_sym_end] = ACTIONS(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), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1259)] = { - [sym__expression] = STATE(4827), - [sym_expr_unary] = STATE(904), - [sym__expr_unary_minus] = STATE(911), - [sym_expr_binary] = STATE(904), - [sym__expr_binary_expression] = STATE(2216), - [sym_expr_parenthesized] = STATE(686), - [sym_val_range] = STATE(904), - [sym__value] = STATE(904), - [sym_val_nothing] = STATE(903), - [sym_val_bool] = STATE(903), - [sym_val_variable] = STATE(702), - [sym_val_cellpath] = STATE(903), - [sym_val_number] = STATE(903), - [sym__val_number_decimal] = STATE(1832), - [sym__val_number] = STATE(700), - [sym_val_duration] = STATE(903), - [sym_val_filesize] = STATE(903), - [sym_val_binary] = STATE(903), - [sym_val_string] = STATE(903), - [sym__raw_str] = STATE(424), - [sym__str_double_quotes] = STATE(424), - [sym__str_single_quotes] = STATE(424), - [sym__str_back_ticks] = STATE(424), - [sym_val_interpolated] = STATE(903), - [sym__inter_single_quotes] = STATE(728), - [sym__inter_double_quotes] = STATE(729), - [sym_val_list] = STATE(903), - [sym_val_record] = STATE(903), - [sym_val_table] = STATE(903), - [sym_val_closure] = STATE(903), + [aux_sym__repeat_newline] = STATE(1190), [sym_comment] = STATE(1259), - [aux_sym_cmd_identifier_token2] = ACTIONS(2630), - [anon_sym_true] = ACTIONS(2632), - [anon_sym_false] = ACTIONS(2632), - [anon_sym_null] = ACTIONS(2634), - [aux_sym_cmd_identifier_token3] = ACTIONS(2636), - [aux_sym_cmd_identifier_token4] = ACTIONS(2636), - [aux_sym_cmd_identifier_token5] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_in] = ACTIONS(2895), + [sym__newline] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2720), + [anon_sym_err_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_GT_PIPE] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), + [anon_sym_RPAREN] = ACTIONS(2720), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2720), + [anon_sym_bit_DASHor2] = ACTIONS(2720), + [anon_sym_err_GT] = ACTIONS(2722), + [anon_sym_out_GT] = ACTIONS(2722), + [anon_sym_e_GT] = ACTIONS(2722), + [anon_sym_o_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT] = ACTIONS(2722), + [anon_sym_err_GT_GT] = ACTIONS(2720), + [anon_sym_out_GT_GT] = ACTIONS(2720), + [anon_sym_e_GT_GT] = ACTIONS(2720), + [anon_sym_o_GT_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(3), + }, + [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(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), + [anon_sym_out_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_GT_PIPE] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), + [anon_sym_RPAREN] = ACTIONS(2720), + [anon_sym_GT2] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(2809), + [anon_sym_STAR2] = ACTIONS(2811), + [anon_sym_and2] = ACTIONS(2720), + [anon_sym_xor2] = ACTIONS(2720), + [anon_sym_or2] = ACTIONS(2720), + [anon_sym_not_DASHin2] = ACTIONS(2895), + [anon_sym_has2] = ACTIONS(2895), + [anon_sym_not_DASHhas2] = ACTIONS(2895), + [anon_sym_starts_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2895), + [anon_sym_ends_DASHwith2] = ACTIONS(2895), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2895), + [anon_sym_EQ_EQ2] = ACTIONS(2813), + [anon_sym_BANG_EQ2] = ACTIONS(2813), + [anon_sym_LT2] = ACTIONS(2807), + [anon_sym_LT_EQ2] = ACTIONS(2813), + [anon_sym_GT_EQ2] = ACTIONS(2813), + [anon_sym_EQ_TILDE2] = ACTIONS(2897), + [anon_sym_BANG_TILDE2] = ACTIONS(2897), + [anon_sym_like2] = ACTIONS(2897), + [anon_sym_not_DASHlike2] = ACTIONS(2897), + [anon_sym_STAR_STAR2] = ACTIONS(2815), + [anon_sym_PLUS_PLUS2] = ACTIONS(2815), + [anon_sym_SLASH2] = ACTIONS(2811), + [anon_sym_mod2] = ACTIONS(2817), + [anon_sym_SLASH_SLASH2] = ACTIONS(2817), + [anon_sym_PLUS2] = ACTIONS(2819), + [anon_sym_bit_DASHshl2] = ACTIONS(2821), + [anon_sym_bit_DASHshr2] = ACTIONS(2821), + [anon_sym_bit_DASHand2] = ACTIONS(2899), + [anon_sym_bit_DASHxor2] = ACTIONS(2901), + [anon_sym_bit_DASHor2] = ACTIONS(2720), + [anon_sym_err_GT] = ACTIONS(2722), + [anon_sym_out_GT] = ACTIONS(2722), + [anon_sym_e_GT] = ACTIONS(2722), + [anon_sym_o_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT] = ACTIONS(2722), + [anon_sym_err_GT_GT] = ACTIONS(2720), + [anon_sym_out_GT_GT] = ACTIONS(2720), + [anon_sym_e_GT_GT] = ACTIONS(2720), + [anon_sym_o_GT_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(3), + }, + [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(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(1006), + [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(2046), - [aux_sym__val_number_decimal_token2] = ACTIONS(2046), - [aux_sym__val_number_decimal_token3] = ACTIONS(2640), - [aux_sym__val_number_decimal_token4] = ACTIONS(2640), - [aux_sym__val_number_token1] = ACTIONS(2636), - [aux_sym__val_number_token2] = ACTIONS(2636), - [aux_sym__val_number_token3] = ACTIONS(2636), + [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(2642), + [sym_val_date] = ACTIONS(2567), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -139284,205 +140203,205 @@ 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)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_comment] = STATE(1260), - [anon_sym_in] = ACTIONS(2792), - [sym__newline] = ACTIONS(2722), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_err_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_GT_PIPE] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), - [anon_sym_RPAREN] = ACTIONS(2722), - [anon_sym_GT2] = ACTIONS(2794), - [anon_sym_DASH2] = ACTIONS(2796), - [anon_sym_STAR2] = ACTIONS(2798), - [anon_sym_and2] = ACTIONS(2800), - [anon_sym_xor2] = ACTIONS(2722), - [anon_sym_or2] = ACTIONS(2722), - [anon_sym_not_DASHin2] = ACTIONS(2792), - [anon_sym_has2] = ACTIONS(2792), - [anon_sym_not_DASHhas2] = ACTIONS(2792), - [anon_sym_starts_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2792), - [anon_sym_ends_DASHwith2] = ACTIONS(2792), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2792), - [anon_sym_EQ_EQ2] = ACTIONS(2804), - [anon_sym_BANG_EQ2] = ACTIONS(2804), - [anon_sym_LT2] = ACTIONS(2794), - [anon_sym_LT_EQ2] = ACTIONS(2804), - [anon_sym_GT_EQ2] = ACTIONS(2804), - [anon_sym_EQ_TILDE2] = ACTIONS(2806), - [anon_sym_BANG_TILDE2] = ACTIONS(2806), - [anon_sym_like2] = ACTIONS(2806), - [anon_sym_not_DASHlike2] = ACTIONS(2806), - [anon_sym_STAR_STAR2] = ACTIONS(2808), - [anon_sym_PLUS_PLUS2] = ACTIONS(2808), - [anon_sym_SLASH2] = ACTIONS(2798), - [anon_sym_mod2] = ACTIONS(2810), - [anon_sym_SLASH_SLASH2] = ACTIONS(2810), - [anon_sym_PLUS2] = ACTIONS(2812), - [anon_sym_bit_DASHshl2] = ACTIONS(2814), - [anon_sym_bit_DASHshr2] = ACTIONS(2814), - [anon_sym_bit_DASHand2] = ACTIONS(2816), - [anon_sym_bit_DASHxor2] = ACTIONS(2818), - [anon_sym_bit_DASHor2] = ACTIONS(2820), - [anon_sym_err_GT] = ACTIONS(2724), - [anon_sym_out_GT] = ACTIONS(2724), - [anon_sym_e_GT] = ACTIONS(2724), - [anon_sym_o_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT] = ACTIONS(2724), - [anon_sym_err_GT_GT] = ACTIONS(2722), - [anon_sym_out_GT_GT] = ACTIONS(2722), - [anon_sym_e_GT_GT] = ACTIONS(2722), - [anon_sym_o_GT_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), - [anon_sym_POUND] = ACTIONS(3), + [STATE(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(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(1261)] = { - [aux_sym__repeat_newline] = STATE(1171), - [sym_comment] = STATE(1261), - [anon_sym_in] = ACTIONS(2688), - [sym__newline] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2690), - [anon_sym_DASH2] = ACTIONS(2688), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2688), - [anon_sym_has2] = ACTIONS(2688), - [anon_sym_not_DASHhas2] = ACTIONS(2688), - [anon_sym_starts_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), - [anon_sym_ends_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), - [anon_sym_EQ_EQ2] = ACTIONS(2688), - [anon_sym_BANG_EQ2] = ACTIONS(2688), - [anon_sym_LT2] = ACTIONS(2690), - [anon_sym_LT_EQ2] = ACTIONS(2688), - [anon_sym_GT_EQ2] = ACTIONS(2688), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2690), - [anon_sym_bit_DASHshl2] = ACTIONS(2688), - [anon_sym_bit_DASHshr2] = ACTIONS(2688), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(3), + [STATE(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(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(1262)] = { - [aux_sym__repeat_newline] = STATE(1251), - [sym_comment] = STATE(1262), - [anon_sym_in] = ACTIONS(2756), - [sym__newline] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_err_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_GT_PIPE] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_GT2] = ACTIONS(2840), - [anon_sym_DASH2] = ACTIONS(2825), - [anon_sym_STAR2] = ACTIONS(2827), - [anon_sym_and2] = ACTIONS(2756), - [anon_sym_xor2] = ACTIONS(2756), - [anon_sym_or2] = ACTIONS(2756), - [anon_sym_not_DASHin2] = ACTIONS(2756), - [anon_sym_has2] = ACTIONS(2756), - [anon_sym_not_DASHhas2] = ACTIONS(2756), - [anon_sym_starts_DASHwith2] = ACTIONS(2756), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2756), - [anon_sym_ends_DASHwith2] = ACTIONS(2756), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2756), - [anon_sym_EQ_EQ2] = ACTIONS(2842), - [anon_sym_BANG_EQ2] = ACTIONS(2842), - [anon_sym_LT2] = ACTIONS(2840), - [anon_sym_LT_EQ2] = ACTIONS(2842), - [anon_sym_GT_EQ2] = ACTIONS(2842), - [anon_sym_EQ_TILDE2] = ACTIONS(2756), - [anon_sym_BANG_TILDE2] = ACTIONS(2756), - [anon_sym_like2] = ACTIONS(2756), - [anon_sym_not_DASHlike2] = ACTIONS(2756), - [anon_sym_STAR_STAR2] = ACTIONS(2829), - [anon_sym_PLUS_PLUS2] = ACTIONS(2829), - [anon_sym_SLASH2] = ACTIONS(2827), - [anon_sym_mod2] = ACTIONS(2831), - [anon_sym_SLASH_SLASH2] = ACTIONS(2831), - [anon_sym_PLUS2] = ACTIONS(2833), - [anon_sym_bit_DASHshl2] = ACTIONS(2844), - [anon_sym_bit_DASHshr2] = ACTIONS(2844), - [anon_sym_bit_DASHand2] = ACTIONS(2756), - [anon_sym_bit_DASHxor2] = ACTIONS(2756), - [anon_sym_bit_DASHor2] = ACTIONS(2756), - [anon_sym_err_GT] = ACTIONS(2758), - [anon_sym_out_GT] = ACTIONS(2758), - [anon_sym_e_GT] = ACTIONS(2758), - [anon_sym_o_GT] = ACTIONS(2758), - [anon_sym_err_PLUSout_GT] = ACTIONS(2758), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2758), - [anon_sym_o_PLUSe_GT] = ACTIONS(2758), - [anon_sym_e_PLUSo_GT] = ACTIONS(2758), - [anon_sym_err_GT_GT] = ACTIONS(2756), - [anon_sym_out_GT_GT] = ACTIONS(2756), - [anon_sym_e_GT_GT] = ACTIONS(2756), - [anon_sym_o_GT_GT] = ACTIONS(2756), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2756), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2756), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2756), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2756), + [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), }, }; @@ -139491,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(2084), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139507,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(2082), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139557,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(2286), 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, @@ -139576,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(2284), 49, + ACTIONS(1912), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139626,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(2290), 13, + ACTIONS(2583), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139645,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(2288), 49, + ACTIONS(2581), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139695,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(2504), 13, + ACTIONS(2622), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139714,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(2502), 49, + ACTIONS(2620), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139764,12 +140787,12 @@ static const 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] = 4, + [435] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1267), 1, + STATE(1276), 1, sym_comment, - ACTIONS(2084), 13, + ACTIONS(2284), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139783,7 +140806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2082), 49, + ACTIONS(2282), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139833,27 +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, - [365] = 9, + [508] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2954), 1, - anon_sym_DASH2, - ACTIONS(2962), 1, - anon_sym_PLUS2, - STATE(1268), 1, + STATE(1277), 1, sym_comment, - ACTIONS(2956), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2958), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2960), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2580), 10, + ACTIONS(2595), 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, @@ -139862,7 +140875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2578), 44, + ACTIONS(2593), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139876,6 +140889,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, @@ -139894,6 +140908,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, @@ -139907,12 +140925,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [448] = 4, + [581] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1269), 1, + STATE(1278), 1, sym_comment, - ACTIONS(2104), 13, + ACTIONS(2270), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139926,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, @@ -139976,89 +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, - [521] = 12, + [654] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2954), 1, - anon_sym_DASH2, - ACTIONS(2962), 1, - anon_sym_PLUS2, - STATE(1270), 1, - sym_comment, - ACTIONS(2956), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2958), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2960), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2964), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2968), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2966), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2580), 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(2578), 38, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [610] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1271), 1, + STATE(1279), 1, sym_comment, - ACTIONS(2084), 13, + ACTIONS(2274), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140072,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(2082), 49, + ACTIONS(2272), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140122,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, - [683] = 4, + [727] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(1272), 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(2084), 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, @@ -140141,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(2082), 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, @@ -140155,32 +141130,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, @@ -140191,41 +141143,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, - [756] = 14, + [822] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2954), 1, + ACTIONS(3018), 1, anon_sym_DASH2, - ACTIONS(2962), 1, + ACTIONS(3030), 1, anon_sym_PLUS2, - STATE(1273), 1, + STATE(1281), 1, sym_comment, - ACTIONS(2956), 2, + ACTIONS(3016), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3020), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2958), 2, + ACTIONS(3026), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2960), 2, + ACTIONS(3028), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2964), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2968), 2, + ACTIONS(3032), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2966), 4, + ACTIONS(3022), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2972), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2580), 8, + ACTIONS(2553), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140234,7 +141181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2970), 8, + ACTIONS(3014), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -140243,7 +141190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2578), 26, + ACTIONS(2551), 30, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -140259,6 +141206,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -140270,30 +141221,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [849] = 10, + [913] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2954), 1, - anon_sym_DASH2, - ACTIONS(2962), 1, - anon_sym_PLUS2, - STATE(1274), 1, + STATE(1282), 1, sym_comment, - ACTIONS(2956), 2, + ACTIONS(2591), 13, + anon_sym_GT2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2958), 2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2589), 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, - ACTIONS(2960), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2968), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2580), 10, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [986] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1283), 1, + sym_comment, + ACTIONS(2238), 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, @@ -140302,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(2578), 42, + ACTIONS(2236), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140316,6 +141323,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, @@ -140334,6 +141342,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, @@ -140345,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, - [934] = 4, + [1059] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1275), 1, + STATE(1284), 1, sym_comment, - ACTIONS(2084), 13, + ACTIONS(1958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140364,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(2082), 49, + ACTIONS(1956), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140414,12 +141428,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1007] = 4, + [1132] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1276), 1, + STATE(1285), 1, sym_comment, - ACTIONS(2084), 13, + ACTIONS(2535), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140433,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(2082), 49, + ACTIONS(2533), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140483,24 +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, - [1080] = 7, + [1205] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1277), 1, + STATE(1286), 1, sym_comment, - ACTIONS(2956), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2958), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2960), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2580), 11, + 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, @@ -140509,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(2578), 45, + ACTIONS(2166), 20, ts_builtin_sym_end, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -140523,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, @@ -140542,11 +141559,90 @@ 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, + [1282] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3018), 1, + anon_sym_DASH2, + ACTIONS(3030), 1, + anon_sym_PLUS2, + ACTIONS(3034), 1, + anon_sym_bit_DASHand2, + ACTIONS(3036), 1, + anon_sym_and2, + ACTIONS(3038), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3040), 1, + anon_sym_bit_DASHor2, + STATE(1287), 1, + sym_comment, + ACTIONS(3016), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3020), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3026), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3028), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3032), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3022), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3024), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2553), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3014), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2551), 22, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -140555,43 +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, - [1159] = 15, + [1383] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(195), 1, + sym_val_date, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(287), 1, + anon_sym_DASH2, + ACTIONS(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(2954), 1, + ACTIONS(3018), 1, anon_sym_DASH2, - ACTIONS(2962), 1, + ACTIONS(3030), 1, anon_sym_PLUS2, - ACTIONS(2974), 1, - anon_sym_bit_DASHand2, - STATE(1278), 1, + STATE(1289), 1, sym_comment, - ACTIONS(2956), 2, + ACTIONS(3016), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3020), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2958), 2, + ACTIONS(3026), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2960), 2, + ACTIONS(3028), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2964), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2968), 2, + ACTIONS(3032), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2966), 4, + ACTIONS(3022), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2972), 4, + ACTIONS(3024), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2580), 8, + ACTIONS(2553), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140600,7 +141796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2970), 8, + ACTIONS(3014), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -140609,7 +141805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2578), 25, + ACTIONS(2551), 26, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -140625,6 +141821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -140635,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, - [1254] = 4, + [1615] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1279), 1, + STATE(1290), 1, sym_comment, - ACTIONS(2084), 13, + ACTIONS(2618), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140654,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(2082), 49, + ACTIONS(2616), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140704,15 +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, - [1327] = 5, + [1688] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1280), 1, + STATE(1291), 1, sym_comment, - ACTIONS(2958), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2580), 13, + ACTIONS(2553), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140726,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(2578), 47, + ACTIONS(2551), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140759,6 +141953,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, @@ -140774,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, - [1402] = 4, + [1761] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1281), 1, + STATE(1292), 1, sym_comment, - ACTIONS(2084), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140793,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(2082), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140843,12 +142039,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1475] = 4, + [1834] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1282), 1, + STATE(1293), 1, sym_comment, - ACTIONS(2084), 13, + ACTIONS(2242), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140862,7 +142058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2082), 49, + ACTIONS(2240), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140912,47 +142108,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1548] = 17, + [1907] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2954), 1, + ACTIONS(3018), 1, anon_sym_DASH2, - ACTIONS(2962), 1, + ACTIONS(3030), 1, anon_sym_PLUS2, - ACTIONS(2974), 1, + ACTIONS(3034), 1, anon_sym_bit_DASHand2, - ACTIONS(2976), 1, + ACTIONS(3036), 1, + anon_sym_and2, + ACTIONS(3038), 1, anon_sym_bit_DASHxor2, - ACTIONS(2978), 1, + ACTIONS(3040), 1, anon_sym_bit_DASHor2, - STATE(1283), 1, + ACTIONS(3046), 1, + anon_sym_xor2, + STATE(1294), 1, sym_comment, - ACTIONS(2956), 2, + ACTIONS(3016), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3020), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2958), 2, + ACTIONS(3026), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2960), 2, + ACTIONS(3028), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2964), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2968), 2, + ACTIONS(3032), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2966), 4, + ACTIONS(3022), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2972), 4, + ACTIONS(3024), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2580), 8, + ACTIONS(2553), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140961,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(2970), 8, + ACTIONS(3014), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -140970,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(2578), 23, + ACTIONS(2551), 21, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -140983,8 +142183,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_and2, - anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -140994,45 +142192,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, - [1647] = 16, + [2010] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2954), 1, - anon_sym_DASH2, - ACTIONS(2962), 1, - anon_sym_PLUS2, - ACTIONS(2974), 1, - anon_sym_bit_DASHand2, - ACTIONS(2976), 1, - anon_sym_bit_DASHxor2, - STATE(1284), 1, + STATE(1295), 1, sym_comment, - ACTIONS(2956), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2958), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2960), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2964), 2, + ACTIONS(1614), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(2968), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2966), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2972), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2580), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -141041,17 +142211,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(2970), 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(2578), 24, + ACTIONS(1713), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -141063,9 +142225,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, @@ -141075,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, - [1744] = 4, + [2083] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1285), 1, + STATE(1296), 1, sym_comment, - ACTIONS(2084), 13, + ACTIONS(2246), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141094,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(2082), 49, + ACTIONS(2244), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141144,49 +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, - [1817] = 18, + [2156] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2954), 1, - anon_sym_DASH2, - ACTIONS(2962), 1, - anon_sym_PLUS2, - ACTIONS(2974), 1, - anon_sym_bit_DASHand2, - ACTIONS(2976), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2978), 1, - anon_sym_bit_DASHor2, - ACTIONS(2980), 1, - anon_sym_and2, - STATE(1286), 1, + STATE(1297), 1, sym_comment, - ACTIONS(2956), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2958), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2960), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2964), 2, + ACTIONS(2100), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(2968), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2966), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2972), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2580), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -141195,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(2970), 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(2578), 22, + ACTIONS(2098), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -141217,8 +142363,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, @@ -141227,116 +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, - [1918] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2984), 1, - anon_sym_null, - ACTIONS(2988), 1, - sym__newline, - ACTIONS(2990), 1, - anon_sym_LBRACK, - ACTIONS(2992), 1, - anon_sym_LPAREN, - ACTIONS(2994), 1, - anon_sym_DOLLAR, - ACTIONS(2996), 1, - anon_sym_LBRACE, - ACTIONS(2998), 1, - anon_sym_DOT_DOT, - ACTIONS(3002), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3004), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3010), 1, - anon_sym_0b, - ACTIONS(3014), 1, - sym_val_date, - ACTIONS(3016), 1, - anon_sym_DQUOTE, - ACTIONS(3018), 1, - anon_sym_SQUOTE, - ACTIONS(3020), 1, - anon_sym_BQUOTE, - ACTIONS(3022), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3024), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3026), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3028), 1, - sym_raw_string_begin, - STATE(1287), 1, - sym_comment, - STATE(2226), 1, - aux_sym__repeat_newline, - STATE(2459), 1, - sym__val_number_decimal, - STATE(2862), 1, - sym_expr_parenthesized, - STATE(2865), 1, - sym_val_variable, - STATE(2975), 1, - sym_val_bool, - STATE(3075), 1, - sym__val_number, - STATE(3085), 1, - sym__inter_single_quotes, - STATE(3086), 1, - sym__inter_double_quotes, - STATE(3092), 1, - sym__unquoted_in_record, - ACTIONS(2982), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3000), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3006), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3012), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4599), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2986), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3008), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3274), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2576), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3073), 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, - [2061] = 4, + [2229] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1288), 1, + STATE(1298), 1, sym_comment, - ACTIONS(2298), 13, + ACTIONS(866), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141350,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(2296), 49, + ACTIONS(886), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141400,116 +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, - [2134] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2984), 1, - anon_sym_null, - ACTIONS(2988), 1, - sym__newline, - ACTIONS(2990), 1, - anon_sym_LBRACK, - ACTIONS(2992), 1, - anon_sym_LPAREN, - ACTIONS(2994), 1, - anon_sym_DOLLAR, - ACTIONS(2996), 1, - anon_sym_LBRACE, - ACTIONS(2998), 1, - anon_sym_DOT_DOT, - ACTIONS(3002), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3004), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3010), 1, - anon_sym_0b, - ACTIONS(3014), 1, - sym_val_date, - ACTIONS(3016), 1, - anon_sym_DQUOTE, - ACTIONS(3018), 1, - anon_sym_SQUOTE, - ACTIONS(3020), 1, - anon_sym_BQUOTE, - ACTIONS(3022), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3024), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3026), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3028), 1, - sym_raw_string_begin, - STATE(1289), 1, - sym_comment, - STATE(2226), 1, - aux_sym__repeat_newline, - STATE(2459), 1, - sym__val_number_decimal, - STATE(2865), 1, - sym_val_variable, - STATE(2927), 1, - sym_expr_parenthesized, - STATE(2975), 1, - sym_val_bool, - STATE(3064), 1, - sym__unquoted_in_record, - STATE(3075), 1, - sym__val_number, - STATE(3085), 1, - sym__inter_single_quotes, - STATE(3086), 1, - sym__inter_double_quotes, - ACTIONS(2982), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3000), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3006), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3012), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4599), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2986), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3008), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3347), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2576), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3073), 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, - [2277] = 4, + [2302] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1290), 1, + STATE(1299), 1, sym_comment, - ACTIONS(2110), 13, + ACTIONS(2120), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141523,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(2108), 49, + ACTIONS(2118), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141573,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, - [2350] = 4, + [2375] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1291), 1, + STATE(1300), 1, sym_comment, - ACTIONS(2118), 13, + ACTIONS(2234), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141592,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(2116), 49, + ACTIONS(2232), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141642,12 +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, - [2423] = 4, + [2448] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1292), 1, + STATE(1301), 1, sym_comment, - ACTIONS(2568), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141661,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(2566), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141711,116 +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, - [2496] = 39, + [2521] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2984), 1, - anon_sym_null, - ACTIONS(2988), 1, - sym__newline, - ACTIONS(2990), 1, - anon_sym_LBRACK, - ACTIONS(2992), 1, - anon_sym_LPAREN, - ACTIONS(2994), 1, - anon_sym_DOLLAR, - ACTIONS(2996), 1, - anon_sym_LBRACE, - ACTIONS(2998), 1, - anon_sym_DOT_DOT, - ACTIONS(3002), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3004), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3010), 1, - anon_sym_0b, - ACTIONS(3014), 1, - sym_val_date, - ACTIONS(3016), 1, - anon_sym_DQUOTE, - ACTIONS(3018), 1, - anon_sym_SQUOTE, - ACTIONS(3020), 1, - anon_sym_BQUOTE, - ACTIONS(3022), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3024), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3026), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3028), 1, - sym_raw_string_begin, - STATE(1287), 1, - aux_sym__repeat_newline, - STATE(1293), 1, - sym_comment, - STATE(2459), 1, - sym__val_number_decimal, - STATE(2865), 1, - sym_val_variable, - STATE(2927), 1, - sym_expr_parenthesized, - STATE(2975), 1, - sym_val_bool, - STATE(3064), 1, - sym__unquoted_in_record, - STATE(3075), 1, - sym__val_number, - STATE(3085), 1, - sym__inter_single_quotes, - STATE(3086), 1, - sym__inter_double_quotes, - ACTIONS(2982), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3000), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3006), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3012), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4599), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2986), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3008), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3347), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2576), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3073), 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, - [2639] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1294), 1, + STATE(1302), 1, sym_comment, - ACTIONS(2126), 13, + ACTIONS(2638), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141834,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(2124), 49, + ACTIONS(2636), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141884,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, - [2712] = 4, + [2594] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1295), 1, + STATE(1303), 1, sym_comment, - ACTIONS(2588), 13, + ACTIONS(2230), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141903,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(2586), 49, + ACTIONS(2228), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141953,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, - [2785] = 4, + [2667] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1296), 1, + STATE(1304), 1, sym_comment, - ACTIONS(2212), 13, + ACTIONS(2172), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141972,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(2210), 49, + ACTIONS(2170), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142022,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, - [2858] = 4, + [2740] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1297), 1, + STATE(1305), 1, sym_comment, - ACTIONS(2216), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142041,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(2214), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142091,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, - [2931] = 4, + [2813] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1298), 1, + STATE(1306), 1, sym_comment, - ACTIONS(2220), 13, + ACTIONS(2278), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142110,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(2218), 49, + ACTIONS(2276), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142160,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, - [3004] = 4, + [2886] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1299), 1, + STATE(1307), 1, sym_comment, - ACTIONS(2224), 13, + ACTIONS(2539), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142179,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(2222), 49, + ACTIONS(2537), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142229,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, - [3077] = 4, + [2959] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1300), 1, + ACTIONS(3018), 1, + anon_sym_DASH2, + ACTIONS(3030), 1, + anon_sym_PLUS2, + STATE(1308), 1, sym_comment, - ACTIONS(2228), 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, @@ -142248,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(2226), 49, + ACTIONS(2551), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142262,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, @@ -142281,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, @@ -142298,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, - [3150] = 4, + [3042] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1301), 1, + STATE(1309), 1, sym_comment, - ACTIONS(2232), 13, + ACTIONS(2288), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142317,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(2230), 49, + ACTIONS(2286), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142367,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, - [3223] = 4, + [3115] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1302), 1, + STATE(1310), 1, sym_comment, - ACTIONS(2236), 13, + ACTIONS(2531), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142386,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(2234), 49, + ACTIONS(2529), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142436,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, - [3296] = 4, + [3188] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1303), 1, + STATE(1311), 1, sym_comment, - ACTIONS(2572), 13, + ACTIONS(2198), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142455,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(2570), 49, + ACTIONS(2196), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142505,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, - [3369] = 4, + [3261] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1304), 1, + STATE(1312), 1, sym_comment, - ACTIONS(2084), 13, + ACTIONS(1975), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142524,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(2082), 49, + ACTIONS(1973), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142574,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, - [3442] = 4, + [3334] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1305), 1, + STATE(1313), 1, sym_comment, - ACTIONS(2023), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142593,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(2021), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142643,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, - [3515] = 4, + [3407] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1306), 1, + STATE(1314), 1, sym_comment, - ACTIONS(2584), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142662,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(2582), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142712,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, - [3588] = 4, + [3480] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1307), 1, + STATE(1315), 1, sym_comment, - ACTIONS(2365), 13, + ACTIONS(2104), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142731,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(2363), 49, + ACTIONS(2102), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142781,198 +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, - [3661] = 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(1006), 1, - anon_sym_DOLLAR, - ACTIONS(2046), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2048), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2700), 1, - anon_sym_null, - STATE(686), 1, - sym_expr_parenthesized, - STATE(700), 1, - sym__val_number, - STATE(702), 1, - sym_val_variable, - STATE(728), 1, - sym__inter_single_quotes, - STATE(729), 1, - sym__inter_double_quotes, - STATE(911), 1, - sym__expr_unary_minus, - STATE(1308), 1, - sym_comment, - STATE(1832), 1, - sym__val_number_decimal, - STATE(2216), 1, - sym__expr_binary_expression, - STATE(4698), 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(1904), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2050), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(904), 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(903), 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, - [3800] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2954), 1, - anon_sym_DASH2, - ACTIONS(2962), 1, - anon_sym_PLUS2, - ACTIONS(2974), 1, - anon_sym_bit_DASHand2, - ACTIONS(2976), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2978), 1, - anon_sym_bit_DASHor2, - ACTIONS(2980), 1, - anon_sym_and2, - ACTIONS(3030), 1, - anon_sym_xor2, - STATE(1309), 1, - sym_comment, - ACTIONS(2956), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2958), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2960), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2964), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2968), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2966), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2972), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2580), 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(2970), 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(2578), 21, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3903] = 4, + [3553] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1310), 1, + STATE(1316), 1, sym_comment, - ACTIONS(2084), 13, + ACTIONS(2206), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142986,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(2082), 49, + ACTIONS(2204), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143036,90 +143715,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3976] = 13, + [3626] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2954), 1, - anon_sym_DASH2, - ACTIONS(2962), 1, - anon_sym_PLUS2, - STATE(1311), 1, - sym_comment, - ACTIONS(2956), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2958), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2960), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2964), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2968), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2966), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2580), 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(2970), 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(2578), 30, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [4067] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1312), 1, + STATE(1317), 1, sym_comment, - ACTIONS(2084), 13, + ACTIONS(2278), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143133,7 +143734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2082), 49, + ACTIONS(2276), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143183,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, - [4140] = 4, + [3699] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1313), 1, + STATE(1318), 1, sym_comment, - ACTIONS(2580), 13, + ACTIONS(2634), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143202,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(2578), 49, + ACTIONS(2632), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143252,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, - [4213] = 4, + [3772] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1314), 1, + STATE(1319), 1, sym_comment, - ACTIONS(858), 13, + ACTIONS(2292), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143271,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(884), 49, + ACTIONS(2290), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143321,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, - [4286] = 4, + [3845] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1315), 1, + STATE(1320), 1, sym_comment, - ACTIONS(2550), 13, + ACTIONS(2296), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143340,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(2548), 49, + ACTIONS(2294), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143390,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, - [4359] = 4, + [3918] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1316), 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(2154), 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, @@ -143409,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(2152), 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, @@ -143423,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, @@ -143459,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, - [4432] = 4, + [4015] = 39, ACTIONS(3), 1, anon_sym_POUND, - STATE(1317), 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, - ACTIONS(2013), 13, + 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(2164), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143478,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(2011), 49, + ACTIONS(2162), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143528,12 +144245,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4505] = 4, + [4231] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1318), 1, + STATE(1324), 1, sym_comment, - ACTIONS(1629), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143547,7 +144264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1716), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143597,17 +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, - [4578] = 4, + [4304] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(1319), 1, + ACTIONS(3018), 1, + anon_sym_DASH2, + ACTIONS(3030), 1, + anon_sym_PLUS2, + STATE(1325), 1, sym_comment, - ACTIONS(2268), 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(2553), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -143616,7 +144352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2266), 49, + ACTIONS(2551), 38, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143630,7 +144366,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, @@ -143641,20 +144376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -143666,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, - [4651] = 4, + [4393] = 39, ACTIONS(3), 1, anon_sym_POUND, - STATE(1320), 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(2272), 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, @@ -143685,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(2270), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143735,18 +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, - [4724] = 6, + [4609] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1321), 1, + ACTIONS(3018), 1, + anon_sym_DASH2, + ACTIONS(3030), 1, + anon_sym_PLUS2, + STATE(1328), 1, sym_comment, - ACTIONS(2104), 5, - anon_sym_GT2, + ACTIONS(3020), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2106), 8, + 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, @@ -143755,8 +144596,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(2102), 20, + ACTIONS(2551), 42, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -143768,17 +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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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(2100), 29, - anon_sym_in, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -143797,21 +144628,23 @@ 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, - [4801] = 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, + [4694] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1322), 1, + STATE(1329), 1, sym_comment, - ACTIONS(2592), 13, + ACTIONS(2543), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143825,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(2590), 49, + ACTIONS(2541), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143875,116 +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, - [4874] = 39, + [4767] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2984), 1, - anon_sym_null, - ACTIONS(2988), 1, - sym__newline, - ACTIONS(2990), 1, - anon_sym_LBRACK, - ACTIONS(2992), 1, - anon_sym_LPAREN, - ACTIONS(2994), 1, - anon_sym_DOLLAR, - ACTIONS(2996), 1, - anon_sym_LBRACE, - ACTIONS(2998), 1, - anon_sym_DOT_DOT, - ACTIONS(3002), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3004), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3010), 1, - anon_sym_0b, - ACTIONS(3014), 1, - sym_val_date, - ACTIONS(3016), 1, - anon_sym_DQUOTE, - ACTIONS(3018), 1, - anon_sym_SQUOTE, - ACTIONS(3020), 1, - anon_sym_BQUOTE, - ACTIONS(3022), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3024), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3026), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3028), 1, - sym_raw_string_begin, - STATE(1289), 1, - aux_sym__repeat_newline, - STATE(1323), 1, - sym_comment, - STATE(2459), 1, - sym__val_number_decimal, - STATE(2865), 1, - sym_val_variable, - STATE(2945), 1, - sym_expr_parenthesized, - STATE(2975), 1, - sym_val_bool, - STATE(3031), 1, - sym__unquoted_in_record, - STATE(3075), 1, - sym__val_number, - STATE(3085), 1, - sym__inter_single_quotes, - STATE(3086), 1, - sym__inter_double_quotes, - ACTIONS(2982), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3000), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3006), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3012), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4599), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2986), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3008), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3267), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2576), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3073), 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, - [5017] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1324), 1, + STATE(1330), 1, sym_comment, - ACTIONS(2600), 13, + ACTIONS(2575), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143998,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(2598), 49, + ACTIONS(2573), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144048,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, - [5090] = 4, + [4840] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1325), 1, + STATE(1331), 1, sym_comment, - ACTIONS(2604), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144067,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(2602), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144117,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, - [5163] = 4, + [4913] = 37, ACTIONS(3), 1, anon_sym_POUND, - STATE(1326), 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(2608), 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, @@ -144136,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(2606), 49, + ACTIONS(2154), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144186,85 +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, - [5236] = 4, + [5125] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1327), 1, + STATE(1334), 1, sym_comment, - ACTIONS(2612), 13, - anon_sym_GT2, + ACTIONS(3020), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2610), 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, - 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, - [5309] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1328), 1, - sym_comment, - ACTIONS(2543), 13, + ACTIONS(2553), 11, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -144274,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(2541), 49, + ACTIONS(2551), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144307,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, @@ -144324,12 +145089,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5382] = 4, + [5204] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1329), 1, + STATE(1335), 1, sym_comment, - ACTIONS(2519), 13, + ACTIONS(2599), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144343,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(2517), 49, + ACTIONS(2597), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144393,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, - [5455] = 4, + [5277] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1330), 1, + STATE(1336), 1, sym_comment, - ACTIONS(2369), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144412,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(2367), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144462,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, - [5528] = 4, + [5350] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1331), 1, + STATE(1337), 1, sym_comment, - ACTIONS(2381), 13, + ACTIONS(2250), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144481,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(2379), 49, + ACTIONS(2248), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144531,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, - [5601] = 4, + [5423] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1332), 1, + STATE(1338), 1, sym_comment, - ACTIONS(2385), 13, + ACTIONS(1864), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144550,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(2383), 49, + ACTIONS(1862), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144600,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, - [5674] = 4, + [5496] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1333), 1, + STATE(1339), 1, sym_comment, - ACTIONS(2562), 13, + ACTIONS(2254), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144619,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(2560), 49, + ACTIONS(2252), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144669,12 +145434,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5747] = 4, + [5569] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1334), 1, + STATE(1340), 1, sym_comment, - ACTIONS(2389), 13, + ACTIONS(2112), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144688,7 +145453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2387), 49, + ACTIONS(2110), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144738,12 +145503,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, - [5820] = 4, + [5642] = 37, ACTIONS(3), 1, anon_sym_POUND, - STATE(1335), 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(1341), 1, sym_comment, - ACTIONS(1858), 13, + STATE(1861), 1, + sym__val_number_decimal, + STATE(2253), 1, + sym__expr_binary_expression, + STATE(4919), 1, + sym__expression, + ACTIONS(179), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1932), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(947), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(189), 6, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(946), 13, + sym_val_nothing, + sym_val_bool, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [5781] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1342), 1, + sym_comment, + ACTIONS(2258), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144757,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(1856), 49, + ACTIONS(2256), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144807,12 +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, - [5893] = 4, + [5854] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1336), 1, + STATE(1343), 1, sym_comment, - ACTIONS(2537), 13, + ACTIONS(2662), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144826,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(2535), 49, + ACTIONS(2660), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144876,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, - [5966] = 4, + [5927] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1337), 1, + STATE(1344), 1, sym_comment, - ACTIONS(2616), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144895,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(2614), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144945,97 +145812,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6039] = 37, + [6000] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(157), 1, + ACTIONS(2968), 1, + anon_sym_null, + ACTIONS(2972), 1, + sym__newline, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(159), 1, + ACTIONS(2976), 1, anon_sym_LPAREN, - ACTIONS(165), 1, + ACTIONS(2978), 1, + anon_sym_DOLLAR, + ACTIONS(2980), 1, anon_sym_LBRACE, - ACTIONS(191), 1, + 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(195), 1, + ACTIONS(2998), 1, sym_val_date, - ACTIONS(197), 1, + ACTIONS(3000), 1, anon_sym_DQUOTE, - ACTIONS(199), 1, + ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(201), 1, + ACTIONS(3004), 1, anon_sym_BQUOTE, - ACTIONS(203), 1, + ACTIONS(3006), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(3008), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(211), 1, + ACTIONS(3010), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3012), 1, sym_raw_string_begin, - ACTIONS(287), 1, - anon_sym_DASH2, - ACTIONS(1006), 1, - anon_sym_DOLLAR, - ACTIONS(2192), 1, - aux_sym_expr_unary_token1, - ACTIONS(2196), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2198), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2700), 1, - anon_sym_null, - ACTIONS(3032), 1, - anon_sym_DOT_DOT, - STATE(700), 1, - sym__val_number, - STATE(728), 1, - sym__inter_single_quotes, - STATE(729), 1, - sym__inter_double_quotes, - STATE(911), 1, - sym__expr_unary_minus, - STATE(1338), 1, + STATE(1322), 1, + aux_sym__repeat_newline, + STATE(1345), 1, sym_comment, - STATE(1857), 1, + STATE(2492), 1, sym__val_number_decimal, - STATE(1958), 1, - sym_val_variable, - STATE(1960), 1, + STATE(2935), 1, sym_expr_parenthesized, - STATE(2217), 1, - sym__expr_binary_expression, - STATE(5042), 1, - sym__expression, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2184), 2, + 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(2200), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3034), 2, + ACTIONS(2984), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(904), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(189), 6, + 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(903), 13, + 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_bool, sym_val_cellpath, sym_val_number, sym_val_duration, @@ -145047,12 +145916,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6178] = 4, + [6143] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1339), 1, + STATE(1346), 1, sym_comment, - ACTIONS(2431), 13, + ACTIONS(2666), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145066,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(2429), 49, + ACTIONS(2664), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145116,12 +145985,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6251] = 4, + [6216] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1340), 1, + STATE(1347), 1, sym_comment, - ACTIONS(2162), 13, + ACTIONS(3026), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2553), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145135,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(2160), 49, + ACTIONS(2551), 47, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145168,8 +146040,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, @@ -145185,114 +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, - [6324] = 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(1006), 1, - anon_sym_DOLLAR, - ACTIONS(2046), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2048), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2700), 1, - anon_sym_null, - STATE(686), 1, - sym_expr_parenthesized, - STATE(700), 1, - sym__val_number, - STATE(702), 1, - sym_val_variable, - STATE(728), 1, - sym__inter_single_quotes, - STATE(729), 1, - sym__inter_double_quotes, - STATE(911), 1, - sym__expr_unary_minus, - STATE(1341), 1, - sym_comment, - STATE(1832), 1, - sym__val_number_decimal, - STATE(2216), 1, - sym__expr_binary_expression, - STATE(4747), 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(1904), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2050), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(904), 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(903), 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, - [6463] = 4, + [6291] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1342), 1, + STATE(1348), 1, sym_comment, - ACTIONS(2260), 13, + ACTIONS(2610), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145306,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(2258), 49, + ACTIONS(2608), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145356,12 +146124,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6536] = 4, + [6364] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(1343), 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(3016), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3020), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3026), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3028), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3032), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3022), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3024), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2553), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3014), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2551), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [6463] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1350), 1, sym_comment, - ACTIONS(2260), 13, + ACTIONS(2262), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145375,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(2258), 49, + ACTIONS(2260), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145425,12 +146275,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6609] = 4, + [6536] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1344), 1, + STATE(1351), 1, sym_comment, - ACTIONS(2554), 13, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145444,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(2552), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145494,12 +146344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6682] = 4, + [6609] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1345), 1, + STATE(1352), 1, sym_comment, - ACTIONS(1890), 13, + ACTIONS(2266), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145513,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(1888), 49, + ACTIONS(2264), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145563,113 +146413,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, - [6755] = 42, + [6682] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(1924), 1, - aux_sym_unquoted_token1, - ACTIONS(2768), 1, - anon_sym_LPAREN, - ACTIONS(2889), 1, - anon_sym_null, - ACTIONS(2893), 1, - sym__newline, - ACTIONS(2895), 1, - anon_sym_LBRACK, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - ACTIONS(2899), 1, - anon_sym_LBRACE, - ACTIONS(2903), 1, - anon_sym__, - ACTIONS(2905), 1, - anon_sym_DOT_DOT, - ACTIONS(2909), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2911), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2915), 1, - sym_val_date, - STATE(700), 1, - sym__val_number, - STATE(1346), 1, + STATE(1353), 1, sym_comment, - STATE(1374), 1, - aux_sym__ctrl_match_body_repeat1, - STATE(2242), 1, - aux_sym__types_body_repeat1, - STATE(3495), 1, - sym__val_number_decimal, - STATE(3717), 1, - sym_expr_parenthesized, - STATE(3748), 1, - sym_val_variable, - STATE(3798), 1, - sym__match_pattern, - STATE(3999), 1, - sym_val_bool, - STATE(4208), 1, - sym__match_pattern_expression, - STATE(4214), 1, - sym__match_pattern_list, - STATE(4232), 1, - sym_unquoted, - STATE(5020), 1, - sym_match_pattern, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2887), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2907), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(2913), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4213), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4575), 2, - sym_match_arm, - sym_default_arm, - STATE(5062), 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(2891), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4216), 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, - [6903] = 38, + ACTIONS(2202), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2200), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [6755] = 38, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(191), 1, @@ -145678,87 +146491,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1796), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1798), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(1924), 1, + ACTIONS(1936), 1, aux_sym_unquoted_token1, - ACTIONS(2738), 1, + ACTIONS(2682), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2740), 1, + ACTIONS(2684), 1, anon_sym_COLON2, - ACTIONS(2766), 1, + ACTIONS(2692), 1, anon_sym_LBRACK, - ACTIONS(2768), 1, + ACTIONS(2694), 1, anon_sym_LPAREN, - ACTIONS(2770), 1, + ACTIONS(2696), 1, anon_sym_DOLLAR, - ACTIONS(2772), 1, + ACTIONS(2698), 1, anon_sym_LBRACE, - ACTIONS(3038), 1, + ACTIONS(3050), 1, anon_sym_null, - ACTIONS(3042), 1, + ACTIONS(3054), 1, anon_sym_DOT_DOT, - ACTIONS(3050), 1, + ACTIONS(3062), 1, sym_val_date, - STATE(700), 1, + STATE(707), 1, sym__val_number, - STATE(728), 1, + STATE(749), 1, sym__inter_single_quotes, - STATE(729), 1, + STATE(750), 1, sym__inter_double_quotes, - STATE(1347), 1, + STATE(1354), 1, sym_comment, - STATE(3707), 1, + STATE(3807), 1, sym__val_number_decimal, - STATE(4275), 1, + STATE(4227), 1, sym_val_variable, - STATE(4314), 1, + STATE(4422), 1, sym_expr_parenthesized, - STATE(4817), 1, + STATE(4816), 1, sym_val_bool, - STATE(4983), 1, + STATE(5079), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3036), 2, + ACTIONS(3048), 2, anon_sym_true, anon_sym_false, - ACTIONS(3044), 2, + ACTIONS(3056), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3046), 2, + ACTIONS(3058), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3048), 2, + ACTIONS(3060), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4982), 2, + STATE(5078), 2, sym_val_range, sym__value, - STATE(5062), 2, + STATE(5176), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2636), 3, + ACTIONS(2561), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3040), 3, + ACTIONS(3052), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2238), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(903), 12, + STATE(946), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145771,120 +146584,121 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7043] = 37, - ACTIONS(103), 1, + [6895] = 42, + 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(1796), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1798), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(1924), 1, + ACTIONS(1936), 1, aux_sym_unquoted_token1, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2766), 1, - anon_sym_LBRACK, - ACTIONS(2768), 1, + ACTIONS(2694), 1, anon_sym_LPAREN, - ACTIONS(2770), 1, + ACTIONS(2865), 1, + anon_sym_null, + ACTIONS(2869), 1, + sym__newline, + ACTIONS(2871), 1, + anon_sym_LBRACK, + ACTIONS(2873), 1, anon_sym_DOLLAR, - ACTIONS(2772), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(3038), 1, - anon_sym_null, - ACTIONS(3042), 1, + ACTIONS(2879), 1, + anon_sym__, + ACTIONS(2881), 1, anon_sym_DOT_DOT, - ACTIONS(3050), 1, + 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(700), 1, + STATE(707), 1, sym__val_number, - STATE(728), 1, - sym__inter_single_quotes, - STATE(729), 1, - sym__inter_double_quotes, - STATE(1348), 1, + STATE(1355), 1, sym_comment, - STATE(3707), 1, + STATE(1378), 1, + aux_sym__ctrl_match_body_repeat1, + STATE(2270), 1, + aux_sym__types_body_repeat1, + STATE(3636), 1, sym__val_number_decimal, - STATE(4275), 1, + STATE(3808), 1, sym_val_variable, - STATE(4314), 1, + STATE(3865), 1, sym_expr_parenthesized, - STATE(4817), 1, + STATE(4028), 1, + sym__match_pattern, + STATE(4169), 1, sym_val_bool, - STATE(4983), 1, + 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(3036), 2, + ACTIONS(2863), 2, anon_sym_true, anon_sym_false, - ACTIONS(3044), 2, + ACTIONS(2883), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3048), 2, + ACTIONS(2889), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4982), 2, + STATE(4475), 2, + sym__match_pattern_value, sym_val_range, - sym__value, - STATE(5062), 2, + STATE(4679), 2, + sym_match_arm, + sym_default_arm, + STATE(5176), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2636), 3, + ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3040), 3, + ACTIONS(2867), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2238), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(903), 12, + STATE(4489), 8, + sym__match_pattern_record, 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] = 7, + [7043] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1349), 1, - sym_comment, - STATE(1350), 1, - aux_sym__block_body_repeat1, - ACTIONS(153), 2, + ACTIONS(3064), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(3056), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3052), 10, + STATE(1356), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1971), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -145895,7 +146709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3054), 45, + ACTIONS(1966), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -145920,10 +146734,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_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, @@ -145941,16 +146758,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7257] = 5, + [7116] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3062), 2, + ACTIONS(3071), 2, sym__newline, anon_sym_SEMI, - STATE(1350), 2, + STATE(1357), 2, sym_comment, aux_sym__block_body_repeat1, - ACTIONS(3058), 10, + ACTIONS(3067), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -145961,7 +146778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3060), 47, + ACTIONS(3069), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146009,7 +146826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7330] = 37, + [7189] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1396), 1, @@ -146034,69 +146851,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1588), 1, anon_sym_LBRACK, - ACTIONS(3067), 1, + ACTIONS(3076), 1, anon_sym_null, - ACTIONS(3071), 1, + ACTIONS(3080), 1, anon_sym_DOT_DOT, - ACTIONS(3075), 1, + ACTIONS(3084), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3077), 1, + ACTIONS(3086), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3081), 1, + ACTIONS(3090), 1, sym_val_date, - ACTIONS(3083), 1, + ACTIONS(3092), 1, aux_sym__unquoted_in_record_token1, - STATE(1351), 1, + STATE(1358), 1, sym_comment, - STATE(3452), 1, + STATE(3640), 1, sym__val_number_decimal, - STATE(3884), 1, + STATE(3965), 1, sym_val_variable, - STATE(3960), 1, + STATE(4105), 1, sym_expr_parenthesized, - STATE(4099), 1, - sym__val_number, - STATE(4241), 1, + STATE(4220), 1, sym__unquoted_in_record, - STATE(4394), 1, + STATE(4386), 1, + sym__val_number, + STATE(4421), 1, sym_val_bool, - STATE(4537), 1, + STATE(4680), 1, sym__inter_single_quotes, - STATE(4539), 1, + STATE(4683), 1, sym__inter_double_quotes, ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3065), 2, + ACTIONS(3074), 2, anon_sym_true, anon_sym_false, - ACTIONS(3073), 2, + ACTIONS(3082), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3079), 2, + ACTIONS(3088), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4569), 2, + 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(3069), 3, + ACTIONS(3078), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4676), 3, + STATE(4889), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(3594), 4, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4550), 12, + STATE(4538), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -146109,77 +146926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7467] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1350), 1, - aux_sym__block_body_repeat1, - STATE(1352), 1, - sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3085), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3052), 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(3054), 45, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [7544] = 37, + [7326] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1396), 1, @@ -146204,69 +146951,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1588), 1, anon_sym_LBRACK, - ACTIONS(3067), 1, + ACTIONS(3076), 1, anon_sym_null, - ACTIONS(3071), 1, + ACTIONS(3080), 1, anon_sym_DOT_DOT, - ACTIONS(3075), 1, + ACTIONS(3084), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3077), 1, + ACTIONS(3086), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3081), 1, + ACTIONS(3090), 1, sym_val_date, - ACTIONS(3083), 1, + ACTIONS(3092), 1, aux_sym__unquoted_in_record_token1, - STATE(1353), 1, + STATE(1359), 1, sym_comment, - STATE(3452), 1, + STATE(3640), 1, sym__val_number_decimal, - STATE(3884), 1, + STATE(3965), 1, sym_val_variable, - STATE(3948), 1, + STATE(4187), 1, sym_expr_parenthesized, - STATE(4099), 1, - sym__val_number, - STATE(4223), 1, + STATE(4278), 1, sym__unquoted_in_record, - STATE(4394), 1, + STATE(4386), 1, + sym__val_number, + STATE(4421), 1, sym_val_bool, - STATE(4537), 1, + STATE(4680), 1, sym__inter_single_quotes, - STATE(4539), 1, + STATE(4683), 1, sym__inter_double_quotes, ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3065), 2, + ACTIONS(3074), 2, anon_sym_true, anon_sym_false, - ACTIONS(3073), 2, + ACTIONS(3082), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3079), 2, + ACTIONS(3088), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4569), 2, + 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(3069), 3, + ACTIONS(3078), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4819), 3, + STATE(4835), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(3594), 4, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4550), 12, + STATE(4538), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -146279,7 +147026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7681] = 37, + [7463] = 37, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(191), 1, @@ -146288,85 +147035,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1796), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1798), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(1924), 1, + ACTIONS(1936), 1, aux_sym_unquoted_token1, - ACTIONS(2766), 1, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2692), 1, anon_sym_LBRACK, - ACTIONS(2768), 1, + ACTIONS(2694), 1, anon_sym_LPAREN, - ACTIONS(2770), 1, + ACTIONS(2696), 1, anon_sym_DOLLAR, - ACTIONS(2772), 1, + ACTIONS(2698), 1, anon_sym_LBRACE, - ACTIONS(2950), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3038), 1, + ACTIONS(3050), 1, anon_sym_null, - ACTIONS(3042), 1, + ACTIONS(3054), 1, anon_sym_DOT_DOT, - ACTIONS(3050), 1, + ACTIONS(3062), 1, sym_val_date, - STATE(700), 1, + STATE(707), 1, sym__val_number, - STATE(728), 1, + STATE(749), 1, sym__inter_single_quotes, - STATE(729), 1, + STATE(750), 1, sym__inter_double_quotes, - STATE(1354), 1, + STATE(1360), 1, sym_comment, - STATE(3707), 1, + STATE(3807), 1, sym__val_number_decimal, - STATE(4221), 1, - sym_expr_parenthesized, - STATE(4275), 1, + STATE(4227), 1, sym_val_variable, - STATE(4817), 1, + STATE(4422), 1, + sym_expr_parenthesized, + STATE(4816), 1, sym_val_bool, - STATE(5036), 1, + STATE(5079), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3036), 2, + ACTIONS(3048), 2, anon_sym_true, anon_sym_false, - ACTIONS(3044), 2, + ACTIONS(3056), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3046), 2, + ACTIONS(3058), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3048), 2, + ACTIONS(3060), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5062), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - STATE(5137), 2, + STATE(5078), 2, sym_val_range, sym__value, - ACTIONS(2636), 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(3040), 3, + ACTIONS(3052), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2238), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(903), 12, + STATE(946), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -146379,77 +147126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7818] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1350), 1, - aux_sym__block_body_repeat1, - STATE(1355), 1, - sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3087), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3052), 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(3054), 45, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [7895] = 37, + [7600] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1396), 1, @@ -146474,69 +147151,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1588), 1, anon_sym_LBRACK, - ACTIONS(3067), 1, + ACTIONS(3076), 1, anon_sym_null, - ACTIONS(3071), 1, + ACTIONS(3080), 1, anon_sym_DOT_DOT, - ACTIONS(3075), 1, + ACTIONS(3084), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3077), 1, + ACTIONS(3086), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3081), 1, + ACTIONS(3090), 1, sym_val_date, - ACTIONS(3083), 1, + ACTIONS(3092), 1, aux_sym__unquoted_in_record_token1, - STATE(1356), 1, + STATE(1361), 1, sym_comment, - STATE(3452), 1, + STATE(3640), 1, sym__val_number_decimal, - STATE(3884), 1, + STATE(3965), 1, sym_val_variable, - STATE(4000), 1, + STATE(4154), 1, sym_expr_parenthesized, - STATE(4099), 1, - sym__val_number, - STATE(4287), 1, + STATE(4249), 1, sym__unquoted_in_record, - STATE(4394), 1, + STATE(4386), 1, + sym__val_number, + STATE(4421), 1, sym_val_bool, - STATE(4537), 1, + STATE(4680), 1, sym__inter_single_quotes, - STATE(4539), 1, + STATE(4683), 1, sym__inter_double_quotes, ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3065), 2, + ACTIONS(3074), 2, anon_sym_true, anon_sym_false, - ACTIONS(3073), 2, + ACTIONS(3082), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3079), 2, + ACTIONS(3088), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4569), 2, + 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(3069), 3, + ACTIONS(3078), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4721), 3, + STATE(4788), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(3594), 4, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4550), 12, + STATE(4538), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -146549,15 +147226,20 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8032] = 5, + [7737] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3089), 1, - sym__newline, - STATE(1357), 2, - aux_sym__repeat_newline, + STATE(1357), 1, + aux_sym__block_body_repeat1, + STATE(1362), 1, sym_comment, - ACTIONS(1931), 10, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3098), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3094), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146568,7 +147250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1926), 48, + ACTIONS(3096), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146593,13 +147275,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_SEMI, - anon_sym_PIPE, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -146617,219 +147296,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8105] = 36, - ACTIONS(3), 1, + [7814] = 37, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3094), 1, - anon_sym_null, - ACTIONS(3098), 1, - anon_sym_LBRACK, - ACTIONS(3100), 1, - anon_sym_LPAREN, - ACTIONS(3102), 1, - anon_sym_DOLLAR, - ACTIONS(3104), 1, - anon_sym_LBRACE, - ACTIONS(3106), 1, - anon_sym_DOT_DOT, - ACTIONS(3108), 1, - anon_sym_LPAREN2, - ACTIONS(3112), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3114), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3120), 1, + ACTIONS(191), 1, anon_sym_0b, - ACTIONS(3124), 1, - sym_val_date, - ACTIONS(3126), 1, - anon_sym_DQUOTE, - ACTIONS(3128), 1, - anon_sym_SQUOTE, - ACTIONS(3130), 1, - anon_sym_BQUOTE, - ACTIONS(3132), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3134), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3136), 1, - aux_sym_unquoted_token1, - ACTIONS(3138), 1, - sym_raw_string_begin, - STATE(1358), 1, - sym_comment, - STATE(1843), 1, - sym__val_number_decimal, - STATE(2125), 1, - sym_val_bool, - STATE(2193), 1, - sym_unquoted, - STATE(2194), 1, - sym__val_number, - STATE(2201), 1, - sym__inter_single_quotes, - STATE(2202), 1, - sym__inter_double_quotes, - ACTIONS(3092), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3110), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3116), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3122), 2, - anon_sym_0o, - anon_sym_0x, - STATE(2188), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(5218), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3096), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3118), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(2212), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2192), 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] = 40, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1796), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1798), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(1924), 1, + ACTIONS(1936), 1, aux_sym_unquoted_token1, - ACTIONS(2768), 1, - anon_sym_LPAREN, - ACTIONS(2889), 1, - anon_sym_null, - ACTIONS(2895), 1, + ACTIONS(2692), 1, anon_sym_LBRACK, - ACTIONS(2897), 1, + ACTIONS(2694), 1, + anon_sym_LPAREN, + ACTIONS(2696), 1, anon_sym_DOLLAR, - ACTIONS(2899), 1, + ACTIONS(2698), 1, anon_sym_LBRACE, - ACTIONS(2903), 1, - anon_sym__, - ACTIONS(2905), 1, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3050), 1, + anon_sym_null, + ACTIONS(3054), 1, anon_sym_DOT_DOT, - ACTIONS(2909), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2911), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2915), 1, + ACTIONS(3062), 1, sym_val_date, - STATE(700), 1, + STATE(707), 1, sym__val_number, - STATE(1359), 1, + STATE(749), 1, + sym__inter_single_quotes, + STATE(750), 1, + sym__inter_double_quotes, + STATE(1363), 1, sym_comment, - STATE(1361), 1, - aux_sym__ctrl_match_body_repeat1, - STATE(3495), 1, + STATE(3807), 1, sym__val_number_decimal, - STATE(3717), 1, - sym_expr_parenthesized, - STATE(3748), 1, + STATE(4227), 1, sym_val_variable, - STATE(3798), 1, - sym__match_pattern, - STATE(3999), 1, + STATE(4460), 1, + sym_expr_parenthesized, + STATE(4816), 1, sym_val_bool, - STATE(4208), 1, - sym__match_pattern_expression, - STATE(4214), 1, - sym__match_pattern_list, - STATE(4232), 1, + STATE(5197), 1, sym_unquoted, - STATE(5020), 1, - sym_match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2887), 2, + ACTIONS(3048), 2, anon_sym_true, anon_sym_false, - ACTIONS(2907), 2, + ACTIONS(3056), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2913), 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(4213), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4575), 2, - sym_match_arm, - sym_default_arm, - STATE(5062), 2, + STATE(5176), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, + STATE(5354), 2, + sym_val_range, + sym__value, + ACTIONS(2561), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2891), 3, + ACTIONS(3052), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2238), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4216), 8, - sym__match_pattern_record, + 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, - [8381] = 7, + sym_val_closure, + [7951] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3144), 1, + STATE(1357), 1, + aux_sym__block_body_repeat1, + STATE(1364), 1, + sym_comment, + ACTIONS(153), 2, sym__newline, - ACTIONS(3147), 1, anon_sym_SEMI, - STATE(4628), 1, - aux_sym__repeat_newline, - STATE(1360), 2, - sym_comment, - aux_sym__parenthesized_body_repeat1, - ACTIONS(3140), 10, + ACTIONS(3100), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3094), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146840,7 +147420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3142), 45, + ACTIONS(3096), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146886,192 +147466,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8457] = 39, + [8028] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3153), 1, - anon_sym_null, - ACTIONS(3159), 1, - anon_sym_LBRACK, - ACTIONS(3162), 1, - anon_sym_LPAREN, - ACTIONS(3165), 1, + STATE(1357), 1, + aux_sym__block_body_repeat1, + STATE(1365), 1, + sym_comment, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3102), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3094), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOLLAR, - ACTIONS(3168), 1, - anon_sym_LBRACE, - ACTIONS(3171), 1, - anon_sym__, - ACTIONS(3174), 1, + anon_sym_DASH2, anon_sym_DOT_DOT, - ACTIONS(3180), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3183), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3192), 1, anon_sym_0b, - ACTIONS(3198), 1, - sym_val_date, - ACTIONS(3201), 1, - anon_sym_DQUOTE, - ACTIONS(3204), 1, - anon_sym_SQUOTE, - ACTIONS(3207), 1, - anon_sym_BQUOTE, - ACTIONS(3210), 1, - aux_sym_unquoted_token1, - ACTIONS(3213), 1, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3096), 45, sym_raw_string_begin, - STATE(700), 1, - sym__val_number, - STATE(3495), 1, - sym__val_number_decimal, - STATE(3717), 1, - sym_expr_parenthesized, - STATE(3748), 1, - sym_val_variable, - STATE(3798), 1, - sym__match_pattern, - STATE(3999), 1, - sym_val_bool, - STATE(4208), 1, - sym__match_pattern_expression, - STATE(4214), 1, - sym__match_pattern_list, - STATE(4232), 1, - sym_unquoted, - STATE(5020), 1, - sym_match_pattern, - ACTIONS(3150), 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, - ACTIONS(3177), 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(3186), 2, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3195), 2, - anon_sym_0o, - anon_sym_0x, - STATE(1361), 2, - sym_comment, - aux_sym__ctrl_match_body_repeat1, - STATE(4213), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4804), 2, - sym_match_arm, - sym_default_arm, - STATE(5062), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3156), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4216), 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, - [8597] = 36, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [8105] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(914), 1, + ACTIONS(810), 1, anon_sym_DOLLAR, - ACTIONS(930), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(936), 1, + ACTIONS(832), 1, anon_sym_0b, - ACTIONS(956), 1, + ACTIONS(854), 1, aux_sym_unquoted_token1, - ACTIONS(958), 1, + ACTIONS(856), 1, sym_raw_string_begin, - ACTIONS(3218), 1, + ACTIONS(1250), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3106), 1, anon_sym_null, - ACTIONS(3222), 1, + ACTIONS(3110), 1, anon_sym_LBRACK, - ACTIONS(3224), 1, + ACTIONS(3112), 1, anon_sym_LPAREN, - ACTIONS(3226), 1, + ACTIONS(3114), 1, anon_sym_LBRACE, - ACTIONS(3228), 1, + ACTIONS(3116), 1, anon_sym_DOT_DOT, - ACTIONS(3230), 1, + ACTIONS(3118), 1, anon_sym_LPAREN2, - ACTIONS(3234), 1, + ACTIONS(3122), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3240), 1, + ACTIONS(3128), 1, sym_val_date, - ACTIONS(3242), 1, + ACTIONS(3130), 1, anon_sym_DQUOTE, - ACTIONS(3244), 1, + ACTIONS(3132), 1, anon_sym_SQUOTE, - ACTIONS(3246), 1, + ACTIONS(3134), 1, anon_sym_BQUOTE, - ACTIONS(3248), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3250), 1, + ACTIONS(3138), 1, anon_sym_DOLLAR_DQUOTE, - STATE(1362), 1, + STATE(1366), 1, sym_comment, - STATE(2475), 1, - sym__val_number_decimal, - STATE(2871), 1, - sym_val_bool, - STATE(3140), 1, + STATE(3072), 1, sym_unquoted, - STATE(3155), 1, + STATE(3094), 1, sym__inter_single_quotes, - STATE(3156), 1, + STATE(3095), 1, sym__inter_double_quotes, - STATE(3207), 1, + STATE(3192), 1, sym__val_number, - ACTIONS(938), 2, + STATE(3700), 1, + sym__val_number_decimal, + STATE(4092), 1, + sym_val_bool, + ACTIONS(834), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3216), 2, + ACTIONS(3104), 2, anon_sym_true, anon_sym_false, - ACTIONS(3232), 2, + ACTIONS(3120), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3236), 2, + ACTIONS(3124), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3138), 2, + STATE(3071), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(4924), 2, + STATE(5092), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3220), 3, + ACTIONS(3108), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3238), 3, + ACTIONS(3126), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2501), 4, + STATE(2483), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3205), 13, + STATE(3023), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -147085,20 +147634,14 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8731] = 8, + [8239] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2638), 1, - sym__newline, - ACTIONS(3256), 1, - anon_sym_SEMI, - STATE(1360), 1, - aux_sym__parenthesized_body_repeat1, - STATE(1363), 1, + ACTIONS(2146), 1, + anon_sym_PIPE, + STATE(1367), 1, sym_comment, - STATE(1381), 1, - aux_sym__repeat_newline, - ACTIONS(3252), 10, + ACTIONS(2955), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147109,7 +147652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3254), 45, + ACTIONS(2952), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147134,10 +147677,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147155,16 +147701,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8809] = 6, - ACTIONS(103), 1, + [8311] = 40, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2144), 1, - anon_sym_POUND_BANG, - ACTIONS(2927), 1, + 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(1368), 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(4679), 2, + sym_match_arm, + sym_default_arm, + STATE(5176), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(189), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(2867), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4489), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [8453] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2563), 1, sym__newline, - STATE(1364), 1, + ACTIONS(3144), 1, + anon_sym_SEMI, + STATE(1369), 1, sym_comment, - ACTIONS(3260), 10, + STATE(1383), 1, + aux_sym__parenthesized_body_repeat1, + STATE(1391), 1, + aux_sym__repeat_newline, + ACTIONS(3140), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147175,9 +147827,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3258), 47, + ACTIONS(3142), 45, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147201,7 +147852,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_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -147223,19 +147873,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8883] = 7, + [8531] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3056), 1, + ACTIONS(3098), 1, ts_builtin_sym_end, - STATE(1365), 1, + STATE(1370), 1, sym_comment, - STATE(1366), 1, + STATE(1374), 1, aux_sym__block_body_repeat1, ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3052), 10, + ACTIONS(3094), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147246,7 +147896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3054), 45, + ACTIONS(3096), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147292,16 +147942,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8959] = 5, + [8607] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3262), 2, - sym__newline, - anon_sym_SEMI, - STATE(1366), 2, + STATE(1371), 1, sym_comment, - aux_sym__block_body_repeat1, - ACTIONS(3058), 10, + ACTIONS(3146), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147312,9 +147958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3060), 46, + ACTIONS(3148), 49, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147338,10 +147983,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147359,19 +148008,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9031] = 7, + [8677] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3085), 1, + ACTIONS(3100), 1, ts_builtin_sym_end, - STATE(1366), 1, - aux_sym__block_body_repeat1, - STATE(1367), 1, + STATE(1372), 1, sym_comment, + STATE(1374), 1, + aux_sym__block_body_repeat1, ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3052), 10, + ACTIONS(3094), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147382,7 +148031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3054), 45, + ACTIONS(3096), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147428,258 +148077,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9107] = 7, + [8753] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3087), 1, - ts_builtin_sym_end, - STATE(1366), 1, - aux_sym__block_body_repeat1, - STATE(1368), 1, - sym_comment, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3052), 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(3054), 45, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + 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, - anon_sym_CARET, - [9183] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(810), 1, - anon_sym_DOLLAR, - ACTIONS(832), 1, - anon_sym_0b, - ACTIONS(854), 1, - aux_sym_unquoted_token1, - ACTIONS(856), 1, - sym_raw_string_begin, - ACTIONS(1250), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3267), 1, + ACTIONS(3152), 1, anon_sym_null, - ACTIONS(3271), 1, + ACTIONS(3156), 1, anon_sym_LBRACK, - ACTIONS(3273), 1, + ACTIONS(3158), 1, anon_sym_LPAREN, - ACTIONS(3275), 1, + ACTIONS(3160), 1, + anon_sym_DOLLAR, + ACTIONS(3162), 1, anon_sym_LBRACE, - ACTIONS(3277), 1, + ACTIONS(3164), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3283), 1, + ACTIONS(3170), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3172), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3289), 1, + ACTIONS(3176), 1, sym_val_date, - ACTIONS(3291), 1, - anon_sym_DQUOTE, - ACTIONS(3293), 1, - anon_sym_SQUOTE, - ACTIONS(3295), 1, - anon_sym_BQUOTE, - ACTIONS(3297), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3299), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(1369), 1, + ACTIONS(3178), 1, + aux_sym_unquoted_token1, + STATE(1373), 1, sym_comment, STATE(3048), 1, - sym_unquoted, - STATE(3061), 1, - sym__val_number, - STATE(3082), 1, sym__inter_single_quotes, - STATE(3083), 1, + STATE(3049), 1, sym__inter_double_quotes, - STATE(3550), 1, + STATE(3092), 1, + sym__val_number, + STATE(3714), 1, sym__val_number_decimal, - STATE(3946), 1, + STATE(4217), 1, sym_val_bool, - ACTIONS(834), 2, + STATE(4716), 1, + sym_unquoted, + ACTIONS(2996), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3265), 2, + ACTIONS(3150), 2, anon_sym_true, anon_sym_false, - ACTIONS(3281), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3285), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(3047), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(5041), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3269), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3287), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(2455), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3058), 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, - [9317] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(810), 1, - anon_sym_DOLLAR, - ACTIONS(826), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(832), 1, - anon_sym_0b, - ACTIONS(854), 1, - aux_sym_unquoted_token1, - ACTIONS(856), 1, - sym_raw_string_begin, - ACTIONS(3271), 1, - anon_sym_LBRACK, - ACTIONS(3273), 1, - anon_sym_LPAREN, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3277), 1, - anon_sym_DOT_DOT, - ACTIONS(3279), 1, - anon_sym_LPAREN2, - ACTIONS(3291), 1, - anon_sym_DQUOTE, - ACTIONS(3293), 1, - anon_sym_SQUOTE, - ACTIONS(3295), 1, - anon_sym_BQUOTE, - ACTIONS(3297), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3299), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3303), 1, - anon_sym_null, - ACTIONS(3307), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3311), 1, - sym_val_date, - STATE(1370), 1, - sym_comment, - STATE(2430), 1, - sym__val_number_decimal, - STATE(2767), 1, - sym_val_bool, - STATE(3048), 1, - sym_unquoted, - STATE(3061), 1, - sym__val_number, - STATE(3082), 1, - sym__inter_single_quotes, - STATE(3083), 1, - sym__inter_double_quotes, - ACTIONS(834), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3281), 2, + ACTIONS(3168), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3301), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3309), 2, + ACTIONS(3174), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3047), 2, + STATE(4712), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5041), 2, + STATE(5373), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3287), 3, + ACTIONS(2992), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3305), 3, + ACTIONS(3154), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2455), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3058), 13, + STATE(3091), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -147693,14 +148175,16 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9451] = 5, + [8887] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2144), 1, - anon_sym_PIPE, - STATE(1371), 1, + ACTIONS(3180), 2, + sym__newline, + anon_sym_SEMI, + STATE(1374), 2, sym_comment, - ACTIONS(2930), 10, + aux_sym__block_body_repeat1, + ACTIONS(3067), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147711,8 +148195,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2927), 48, + ACTIONS(3069), 46, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147736,13 +148221,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, @@ -147760,12 +148242,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9523] = 4, - ACTIONS(3), 1, + [8959] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1372), 1, + ACTIONS(2146), 1, + anon_sym_POUND_BANG, + ACTIONS(2952), 1, + sym__newline, + STATE(1375), 1, sym_comment, - ACTIONS(3260), 10, + ACTIONS(3146), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147776,8 +148262,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3258), 49, + ACTIONS(3148), 47, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147801,14 +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_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147826,12 +148310,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9593] = 4, + [9033] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1373), 1, + STATE(1376), 1, sym_comment, - ACTIONS(2146), 10, + ACTIONS(2148), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147842,7 +148326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2144), 49, + ACTIONS(2146), 49, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147892,100 +148376,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9663] = 40, + [9103] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(810), 1, + anon_sym_DOLLAR, + ACTIONS(826), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(832), 1, anon_sym_0b, - ACTIONS(1796), 1, + 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(1798), 1, + ACTIONS(3132), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, + 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(1924), 1, + ACTIONS(1936), 1, aux_sym_unquoted_token1, - ACTIONS(2768), 1, + ACTIONS(2694), 1, anon_sym_LPAREN, - ACTIONS(2889), 1, + ACTIONS(2865), 1, anon_sym_null, - ACTIONS(2895), 1, + ACTIONS(2871), 1, anon_sym_LBRACK, - ACTIONS(2897), 1, + ACTIONS(2873), 1, anon_sym_DOLLAR, - ACTIONS(2899), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(2903), 1, + ACTIONS(2879), 1, anon_sym__, - ACTIONS(2905), 1, + ACTIONS(2881), 1, anon_sym_DOT_DOT, - ACTIONS(2909), 1, + ACTIONS(2885), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2911), 1, + ACTIONS(2887), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2915), 1, + ACTIONS(2891), 1, sym_val_date, - STATE(700), 1, + STATE(707), 1, sym__val_number, - STATE(1361), 1, - aux_sym__ctrl_match_body_repeat1, - STATE(1374), 1, + STATE(1378), 1, sym_comment, - STATE(3495), 1, + STATE(1380), 1, + aux_sym__ctrl_match_body_repeat1, + STATE(3636), 1, sym__val_number_decimal, - STATE(3717), 1, - sym_expr_parenthesized, - STATE(3748), 1, + STATE(3808), 1, sym_val_variable, - STATE(3798), 1, + STATE(3865), 1, + sym_expr_parenthesized, + STATE(4028), 1, sym__match_pattern, - STATE(3999), 1, + STATE(4169), 1, sym_val_bool, - STATE(4208), 1, + STATE(4471), 1, sym__match_pattern_expression, - STATE(4214), 1, + STATE(4483), 1, sym__match_pattern_list, - STATE(4232), 1, + STATE(4503), 1, sym_unquoted, - STATE(5020), 1, + STATE(5194), 1, sym_match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2887), 2, + ACTIONS(2863), 2, anon_sym_true, anon_sym_false, - ACTIONS(2907), 2, + ACTIONS(2883), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2913), 2, + ACTIONS(2889), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4213), 2, + STATE(4475), 2, sym__match_pattern_value, sym_val_range, - STATE(4572), 2, + STATE(4729), 2, sym_match_arm, sym_default_arm, - STATE(5062), 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(2891), 3, + ACTIONS(2867), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2238), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4216), 8, + STATE(4489), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -147994,91 +148576,359 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [9805] = 36, + [9379] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(3102), 1, + ts_builtin_sym_end, + STATE(1374), 1, + aux_sym__block_body_repeat1, + STATE(1379), 1, + sym_comment, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3094), 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(3096), 45, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(3010), 1, - anon_sym_0b, - ACTIONS(3022), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3024), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3315), 1, + anon_sym_CARET, + [9455] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3198), 1, anon_sym_null, - ACTIONS(3319), 1, + ACTIONS(3204), 1, anon_sym_LBRACK, - ACTIONS(3321), 1, + ACTIONS(3207), 1, anon_sym_LPAREN, - ACTIONS(3323), 1, + ACTIONS(3210), 1, anon_sym_DOLLAR, - ACTIONS(3325), 1, + ACTIONS(3213), 1, anon_sym_LBRACE, - ACTIONS(3327), 1, + ACTIONS(3216), 1, + anon_sym__, + ACTIONS(3219), 1, anon_sym_DOT_DOT, - ACTIONS(3329), 1, - anon_sym_LPAREN2, - ACTIONS(3333), 1, + ACTIONS(3225), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3335), 1, + ACTIONS(3228), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3339), 1, + ACTIONS(3237), 1, + anon_sym_0b, + ACTIONS(3243), 1, sym_val_date, - ACTIONS(3341), 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, - STATE(1375), 1, - sym_comment, - STATE(3075), 1, + ACTIONS(3258), 1, + sym_raw_string_begin, + STATE(707), 1, sym__val_number, - STATE(3085), 1, - sym__inter_single_quotes, - STATE(3086), 1, - sym__inter_double_quotes, - STATE(3555), 1, + STATE(3636), 1, sym__val_number_decimal, - STATE(4144), 1, + 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(4426), 1, + STATE(4471), 1, + sym__match_pattern_expression, + STATE(4483), 1, + sym__match_pattern_list, + STATE(4503), 1, sym_unquoted, - ACTIONS(3012), 2, + STATE(5194), 1, + sym_match_pattern, + ACTIONS(3195), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3222), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3231), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3240), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3313), 2, + STATE(1380), 2, + sym_comment, + aux_sym__ctrl_match_body_repeat1, + STATE(4475), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4789), 2, + sym_match_arm, + sym_default_arm, + STATE(5176), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3201), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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(4489), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [9595] = 36, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3263), 1, + anon_sym_null, + ACTIONS(3267), 1, + anon_sym_LBRACK, + ACTIONS(3269), 1, + anon_sym_LPAREN, + ACTIONS(3271), 1, + anon_sym_DOLLAR, + ACTIONS(3273), 1, + anon_sym_LBRACE, + ACTIONS(3275), 1, + anon_sym_DOT_DOT, + ACTIONS(3277), 1, + anon_sym_LPAREN2, + ACTIONS(3281), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3283), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3289), 1, + anon_sym_0b, + ACTIONS(3293), 1, + sym_val_date, + ACTIONS(3295), 1, + anon_sym_DQUOTE, + ACTIONS(3297), 1, + anon_sym_SQUOTE, + ACTIONS(3299), 1, + anon_sym_BQUOTE, + ACTIONS(3301), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3303), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3305), 1, + aux_sym_unquoted_token1, + ACTIONS(3307), 1, + sym_raw_string_begin, + STATE(1381), 1, + sym_comment, + STATE(1863), 1, + sym__val_number_decimal, + STATE(2144), 1, + sym_val_bool, + STATE(2172), 1, + sym__inter_single_quotes, + STATE(2173), 1, + sym__inter_double_quotes, + STATE(2208), 1, + sym__val_number, + STATE(2232), 1, + sym_unquoted, + ACTIONS(3261), 2, anon_sym_true, anon_sym_false, - ACTIONS(3331), 2, + ACTIONS(3279), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3337), 2, + ACTIONS(3285), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4646), 2, + ACTIONS(3291), 2, + anon_sym_0o, + anon_sym_0x, + STATE(2230), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(4949), 2, + STATE(5227), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3008), 3, + ACTIONS(3265), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3287), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3317), 3, + STATE(2178), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2206), 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, + [9729] = 36, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(930), 1, + anon_sym_DOLLAR, + ACTIONS(946), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(952), 1, + anon_sym_0b, + ACTIONS(972), 1, + aux_sym_unquoted_token1, + ACTIONS(974), 1, + sym_raw_string_begin, + ACTIONS(3311), 1, + anon_sym_null, + ACTIONS(3315), 1, + anon_sym_LBRACK, + ACTIONS(3317), 1, + anon_sym_LPAREN, + ACTIONS(3319), 1, + anon_sym_LBRACE, + ACTIONS(3321), 1, + anon_sym_DOT_DOT, + ACTIONS(3323), 1, + anon_sym_LPAREN2, + ACTIONS(3327), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3333), 1, + sym_val_date, + 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, + STATE(1382), 1, + sym_comment, + STATE(2528), 1, + sym__val_number_decimal, + STATE(2950), 1, + sym_val_bool, + 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(3309), 2, + anon_sym_true, + anon_sym_false, + 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(3275), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5316), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3313), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2238), 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(3073), 13, + STATE(3355), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -148092,12 +148942,19 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9939] = 4, + [9863] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1376), 1, + ACTIONS(3349), 1, + sym__newline, + ACTIONS(3352), 1, + anon_sym_SEMI, + STATE(4562), 1, + aux_sym__repeat_newline, + STATE(1383), 2, sym_comment, - ACTIONS(3343), 10, + aux_sym__parenthesized_body_repeat1, + ACTIONS(3345), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148108,7 +148965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3345), 48, + ACTIONS(3347), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148133,13 +148990,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, @@ -148157,85 +149011,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10008] = 12, + [9939] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3347), 1, - anon_sym_DOT, - STATE(1377), 1, + ACTIONS(3148), 1, + anon_sym_RPAREN, + STATE(1384), 1, sym_comment, - STATE(1438), 1, - sym__immediate_decimal, - ACTIONS(3349), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3351), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(690), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1599), 41, - anon_sym_in, + ACTIONS(3359), 2, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [10093] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1378), 1, - sym_comment, - ACTIONS(3353), 10, + ACTIONS(3355), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148246,7 +149032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3355), 48, + ACTIONS(3357), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148271,13 +149057,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, @@ -148295,12 +149078,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10162] = 4, + [10012] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1379), 1, + STATE(1385), 1, sym_comment, - ACTIONS(3260), 10, + ACTIONS(3362), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148311,9 +149094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3258), 48, + ACTIONS(3364), 48, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148343,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, @@ -148360,12 +149143,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10231] = 4, + [10081] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1380), 1, + STATE(1386), 1, sym_comment, - ACTIONS(3357), 10, + ACTIONS(3368), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148376,8 +149159,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3359), 48, + ACTIONS(3366), 48, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148407,7 +149191,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, @@ -148425,18 +149208,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10300] = 7, + [10150] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2638), 1, - sym__newline, - ACTIONS(3365), 1, - anon_sym_SEMI, STATE(1357), 1, - aux_sym__repeat_newline, - STATE(1381), 1, + aux_sym__block_body_repeat1, + STATE(1387), 1, sym_comment, - ACTIONS(3361), 10, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3094), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148447,7 +149229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3363), 45, + ACTIONS(3096), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148493,12 +149275,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10375] = 4, + [10223] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(1382), 1, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(3370), 1, + anon_sym_DOT, + STATE(1388), 1, + sym_comment, + STATE(1444), 1, + sym__immediate_decimal, + ACTIONS(3372), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3374), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(688), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1602), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1598), 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, + [10308] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1389), 1, sym_comment, - ACTIONS(3369), 10, + ACTIONS(3146), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148509,7 +149364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3367), 48, + ACTIONS(3148), 48, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -148558,17 +149413,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10444] = 6, + [10377] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1350), 1, - aux_sym__block_body_repeat1, - STATE(1383), 1, + STATE(1390), 1, sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3052), 10, + ACTIONS(3376), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148579,7 +149429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3054), 45, + ACTIONS(3378), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148604,10 +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, + 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, @@ -148625,12 +149478,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10517] = 4, + [10446] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2563), 1, + sym__newline, + ACTIONS(3384), 1, + anon_sym_SEMI, + STATE(1356), 1, + aux_sym__repeat_newline, + STATE(1391), 1, sym_comment, - ACTIONS(3373), 10, + ACTIONS(3380), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148641,9 +149500,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3371), 48, + ACTIONS(3382), 45, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148667,8 +149525,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -148690,17 +149546,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10586] = 6, + [10521] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3258), 1, - anon_sym_RPAREN, - STATE(1385), 1, + STATE(1392), 1, sym_comment, - ACTIONS(3379), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3375), 10, + ACTIONS(3388), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148711,8 +149562,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3377), 45, + ACTIONS(3386), 48, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148736,6 +149588,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -148757,155 +149611,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10659] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1651), 1, - anon_sym_DOLLAR, - ACTIONS(1653), 1, - anon_sym_LPAREN2, - ACTIONS(3382), 1, - anon_sym_DOT, - STATE(1386), 1, - sym_comment, - STATE(1448), 1, - sym__immediate_decimal, - ACTIONS(3384), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3386), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(958), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1599), 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, - [10743] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(1387), 1, - sym_comment, - STATE(1464), 1, - sym__immediate_decimal, - ACTIONS(3388), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3390), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(780), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1599), 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] = 4, + [10590] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1388), 1, + STATE(1393), 1, sym_comment, - ACTIONS(3375), 10, + ACTIONS(3390), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148916,7 +149627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3377), 47, + ACTIONS(3392), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148947,6 +149658,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, @@ -148964,36 +149676,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10893] = 11, + [10659] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1691), 1, + ACTIONS(1679), 1, sym__unquoted_pattern, - STATE(1389), 1, + STATE(1394), 1, sym_comment, - STATE(1475), 1, + STATE(1491), 1, sym__immediate_decimal, - ACTIONS(3388), 2, + ACTIONS(3394), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3390), 2, + ACTIONS(3396), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(726), 2, + STATE(748), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1679), 6, + ACTIONS(1653), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1677), 41, + ACTIONS(1651), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149035,12 +149747,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10975] = 4, + [10741] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(1390), 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, - ACTIONS(3140), 10, + aux_sym_pipe_element_parenthesized_repeat2, + ACTIONS(3409), 6, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3407), 17, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(3401), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [10827] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1396), 1, + sym_comment, + ACTIONS(3345), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -149051,7 +149836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3142), 47, + ACTIONS(3347), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -149099,129 +149884,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11043] = 13, + [10895] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3398), 1, + STATE(1397), 1, + sym_comment, + ACTIONS(3355), 10, + anon_sym_export, aux_sym_cmd_identifier_token1, - ACTIONS(3405), 1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(3408), 1, - aux_sym__val_number_decimal_token2, - STATE(2106), 1, - sym__val_number_decimal, - STATE(4803), 1, - sym_env_var, - STATE(5131), 1, - sym_cmd_identifier, - ACTIONS(3392), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3411), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(1391), 2, - sym_comment, - aux_sym_pipe_element_repeat2, - ACTIONS(3403), 6, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3401), 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(3395), 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, - [11129] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3420), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3427), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3430), 1, - aux_sym__val_number_decimal_token2, - STATE(2106), 1, - sym__val_number_decimal, - STATE(4458), 1, - sym_env_var, - STATE(5131), 1, - sym_cmd_identifier, - ACTIONS(3414), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3433), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(1392), 2, - sym_comment, - aux_sym_pipe_element_parenthesized_repeat2, - ACTIONS(3425), 6, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3423), 17, + ACTIONS(3357), 47, 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(3417), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -149245,64 +149925,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [11215] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3438), 1, sym__newline, - ACTIONS(3441), 1, - sym__space, - ACTIONS(3444), 1, - sym_raw_string_begin, - STATE(1393), 2, - sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(3436), 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_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, @@ -149310,25 +149948,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11286] = 6, + [10963] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3446), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3448), 1, - aux_sym__immediate_decimal_token5, - STATE(1394), 1, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1635), 1, + sym__unquoted_pattern, + STATE(1398), 1, sym_comment, - ACTIONS(739), 8, + STATE(1468), 1, + sym__immediate_decimal, + ACTIONS(3394), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3396), 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(741), 46, + ACTIONS(1598), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149342,7 +149991,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, @@ -149362,7 +150010,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, @@ -149372,28 +150019,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [11357] = 6, + [11045] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3450), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(3420), 1, anon_sym_DOT, - ACTIONS(3452), 1, - aux_sym__immediate_decimal_token5, - STATE(1395), 1, + STATE(1399), 1, sym_comment, - ACTIONS(747), 8, + STATE(1453), 1, + sym__immediate_decimal, + ACTIONS(3422), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3424), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(929), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1602), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 46, + ACTIONS(1598), 40, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149406,9 +150064,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, @@ -149427,7 +150082,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, @@ -149437,29 +150091,60 @@ 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, - [11428] = 7, - ACTIONS(103), 1, + [11129] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3423), 1, - sym_raw_string_begin, - ACTIONS(3454), 1, - sym__newline, - ACTIONS(3456), 1, - sym__space, - STATE(1393), 1, - aux_sym_pipe_element_parenthesized_repeat1, - STATE(1396), 1, - sym_comment, - ACTIONS(3425), 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, @@ -149473,40 +150158,83 @@ 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_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, - [11501] = 37, + 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, @@ -149529,35 +150257,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__unquoted_in_list_token1, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(1572), 1, + ACTIONS(1576), 1, anon_sym_DOT_DOT, - ACTIONS(2732), 1, + ACTIONS(2674), 1, anon_sym_DOLLAR, - ACTIONS(2734), 1, + ACTIONS(2676), 1, anon_sym_LBRACE, - ACTIONS(2736), 1, + ACTIONS(2680), 1, sym_val_date, - ACTIONS(3458), 1, + ACTIONS(3452), 1, sym__newline, - ACTIONS(3460), 1, + ACTIONS(3454), 1, anon_sym_LBRACK, - STATE(1397), 1, + STATE(1402), 1, sym_comment, - STATE(1415), 1, + STATE(1421), 1, aux_sym__match_pattern_list_body_repeat1, - STATE(2251), 1, + STATE(2281), 1, aux_sym__types_body_repeat1, - STATE(3552), 1, + STATE(3727), 1, sym__val_number_decimal, - STATE(3791), 1, + STATE(4040), 1, sym_expr_parenthesized, - STATE(3792), 1, + STATE(4041), 1, sym_val_variable, - STATE(4099), 1, + STATE(4386), 1, sym__val_number, - STATE(4146), 1, + STATE(4490), 1, sym_val_bool, - STATE(4454), 1, + STATE(4737), 1, sym__match_pattern_list, ACTIONS(1384), 2, anon_sym_true, @@ -149571,13 +150299,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - STATE(4328), 2, + STATE(4338), 2, sym__match_pattern_expression, sym__unquoted_in_list, - STATE(4441), 2, + STATE(4736), 2, sym__match_pattern_value, sym_val_range, - STATE(5087), 2, + STATE(5140), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1388), 3, @@ -149588,12 +150316,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3594), 4, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4455), 8, + STATE(4742), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -149602,7 +150330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [11634] = 33, + [11429] = 33, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1396), 1, @@ -149629,29 +150357,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, ACTIONS(1588), 1, anon_sym_LBRACK, - ACTIONS(3462), 1, + ACTIONS(3456), 1, anon_sym_null, - ACTIONS(3464), 1, + ACTIONS(3458), 1, anon_sym_LBRACE, - ACTIONS(3466), 1, + ACTIONS(3460), 1, anon_sym_DOT_DOT, - ACTIONS(3470), 1, + ACTIONS(3464), 1, sym_val_date, - STATE(1398), 1, + STATE(1403), 1, sym_comment, - STATE(3665), 1, + STATE(3792), 1, sym__val_number_decimal, - STATE(3884), 1, + STATE(3965), 1, sym_val_variable, - STATE(4043), 1, + STATE(4078), 1, sym_expr_parenthesized, - STATE(4099), 1, + STATE(4386), 1, sym__val_number, - STATE(4537), 1, + STATE(4680), 1, sym__inter_single_quotes, - STATE(4539), 1, + STATE(4683), 1, sym__inter_double_quotes, - STATE(4789), 1, + STATE(4783), 1, sym_block, ACTIONS(1418), 2, anon_sym_0o, @@ -149662,13 +150390,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1492), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3468), 2, + ACTIONS(3462), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4791), 2, + STATE(4784), 2, sym_val_range, sym__value, - STATE(3594), 4, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, @@ -149680,7 +150408,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(4550), 13, + STATE(4538), 13, sym_val_nothing, sym_val_bool, sym_val_cellpath, @@ -149694,36 +150422,36 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [11759] = 11, + [11554] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1635), 1, sym__unquoted_pattern, - ACTIONS(1651), 1, + ACTIONS(1685), 1, anon_sym_DOLLAR, - ACTIONS(1653), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - STATE(1399), 1, + STATE(1404), 1, sym_comment, - STATE(1507), 1, + STATE(1513), 1, sym__immediate_decimal, - ACTIONS(3472), 2, + ACTIONS(3448), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3474), 2, + ACTIONS(3450), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1294), 2, + STATE(1299), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1603), 6, + ACTIONS(1602), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1599), 40, + ACTIONS(1598), 40, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -149764,129 +150492,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11840] = 33, + [11635] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1396), 1, - anon_sym_LPAREN, - ACTIONS(1400), 1, - anon_sym_DOLLAR, - ACTIONS(1416), 1, - anon_sym_0b, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1428), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1430), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(1488), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1490), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(3462), 1, - anon_sym_null, - ACTIONS(3464), 1, - anon_sym_LBRACE, ACTIONS(3466), 1, - anon_sym_DOT_DOT, - ACTIONS(3470), 1, - sym_val_date, - STATE(1400), 1, - sym_comment, - STATE(3665), 1, - sym__val_number_decimal, - STATE(3884), 1, - sym_val_variable, - STATE(4040), 1, - sym_expr_parenthesized, - STATE(4099), 1, - sym__val_number, - STATE(4537), 1, - sym__inter_single_quotes, - STATE(4539), 1, - sym__inter_double_quotes, - STATE(4785), 1, - sym_block, - ACTIONS(1418), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1468), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1492), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3468), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(4787), 2, - sym_val_range, - sym__value, - STATE(3594), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1414), 6, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(4550), 13, - sym_val_nothing, - sym_val_bool, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [11965] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_DOLLAR, - ACTIONS(1653), 1, - anon_sym_LPAREN2, - ACTIONS(1691), 1, - sym__unquoted_pattern, - STATE(1401), 1, + anon_sym_DOT, + ACTIONS(3468), 1, + aux_sym__immediate_decimal_token5, + STATE(1405), 1, sym_comment, - STATE(1489), 1, - sym__immediate_decimal, - ACTIONS(3472), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3474), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1302), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1679), 6, + ACTIONS(747), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1677), 40, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149899,6 +150523,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, @@ -149917,6 +150544,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, @@ -149926,18 +150554,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [12046] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [11706] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3401), 1, + ACTIONS(3407), 1, sym_raw_string_begin, - ACTIONS(3476), 1, + ACTIONS(3470), 1, + sym__newline, + ACTIONS(3472), 1, sym__space, - STATE(1402), 1, + STATE(1406), 1, sym_comment, - STATE(1410), 1, - aux_sym_pipe_element_repeat1, - ACTIONS(3403), 52, + STATE(1408), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(3409), 52, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -149990,14 +150623,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12116] = 5, + [11779] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3478), 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(763), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150006,7 +150641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(765), 46, + ACTIONS(741), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150053,23 +150688,190 @@ 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(3480), 1, + sym__newline, + ACTIONS(3483), 1, + sym__space, + ACTIONS(3486), 1, + sym_raw_string_begin, + STATE(1408), 2, + sym_comment, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(3478), 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, + [11921] = 33, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3452), 1, - aux_sym__immediate_decimal_token5, - STATE(1404), 1, + ACTIONS(1396), 1, + anon_sym_LPAREN, + ACTIONS(1400), 1, + anon_sym_DOLLAR, + ACTIONS(1416), 1, + anon_sym_0b, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1428), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1430), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(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, - ACTIONS(747), 8, + STATE(3792), 1, + sym__val_number_decimal, + STATE(3965), 1, + sym_val_variable, + STATE(4075), 1, + sym_expr_parenthesized, + STATE(4386), 1, + sym__val_number, + STATE(4680), 1, + sym__inter_single_quotes, + STATE(4683), 1, + sym__inter_double_quotes, + STATE(4780), 1, + sym_block, + ACTIONS(1418), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1468), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1492), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3462), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4782), 2, + sym_val_range, + sym__value, + STATE(3665), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1414), 6, + 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(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(1724), 1, + anon_sym_LPAREN2, + ACTIONS(1734), 1, + sym__unquoted_pattern, + ACTIONS(3488), 1, + anon_sym_DOT_DOT2, + ACTIONS(3492), 1, + sym_filesize_unit, + ACTIONS(3494), 1, + sym_duration_unit, + STATE(1410), 1, + sym_comment, + STATE(4801), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3490), 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), 46, + ACTIONS(886), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150103,7 +150905,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, @@ -150113,34 +150914,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [12252] = 5, - ACTIONS(3), 1, + [12126] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3480), 1, - sym__newline, - STATE(1405), 2, - aux_sym__repeat_newline, + STATE(1411), 1, sym_comment, - ACTIONS(1931), 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(1926), 43, + ACTIONS(3496), 2, sym_raw_string_begin, + sym__space, + ACTIONS(850), 53, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -150154,24 +150942,33 @@ 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, @@ -150179,16 +150976,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12320] = 6, + [12192] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3483), 1, - anon_sym_DOT, - ACTIONS(3485), 1, + ACTIONS(3498), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3500), 1, aux_sym__immediate_decimal_token5, - STATE(1406), 1, + STATE(1412), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150197,7 +150994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 45, + ACTIONS(741), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -150243,33 +151040,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12390] = 11, + [12262] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - ACTIONS(1776), 1, - sym__unquoted_pattern, - ACTIONS(3487), 1, - anon_sym_DOT_DOT2, - ACTIONS(3491), 1, - sym_filesize_unit, - ACTIONS(3493), 1, - sym_duration_unit, - STATE(1407), 1, + ACTIONS(3502), 1, + sym__newline, + STATE(1413), 2, + aux_sym__repeat_newline, sym_comment, - STATE(4712), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3489), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(858), 5, + ACTIONS(1971), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1966), 43, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [12330] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3505), 1, + anon_sym_DOT, + ACTIONS(3507), 1, + aux_sym__immediate_decimal_token5, + STATE(1414), 1, + sym_comment, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(884), 42, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150282,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, @@ -150303,6 +151154,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, @@ -150312,16 +151164,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [12470] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [12400] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3495), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3497), 1, + ACTIONS(3468), 1, aux_sym__immediate_decimal_token5, - STATE(1408), 1, + STATE(1415), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150330,8 +151183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 45, - ts_builtin_sym_end, + ACTIONS(749), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150344,7 +151196,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, @@ -150376,15 +151230,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12540] = 4, + [12468] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(1409), 1, - sym_comment, - ACTIONS(3499), 2, - sym_raw_string_begin, + ACTIONS(3511), 1, sym__space, - ACTIONS(850), 53, + 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, @@ -150411,7 +151267,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -150438,17 +151293,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12606] = 5, + [12536] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3503), 1, - sym__space, - ACTIONS(3506), 1, + ACTIONS(3435), 1, sym_raw_string_begin, - STATE(1410), 2, - sym_comment, + ACTIONS(3516), 1, + sym__space, + STATE(1416), 1, aux_sym_pipe_element_repeat1, - ACTIONS(3501), 52, + STATE(1417), 1, + sym_comment, + ACTIONS(3437), 52, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -150501,24 +151357,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12674] = 6, + [12606] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, + ACTIONS(3518), 1, aux_sym__immediate_decimal_token5, - STATE(1411), 1, + STATE(1418), 1, sym_comment, - ACTIONS(1756), 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(1754), 45, + ACTIONS(773), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150564,21 +151419,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [12743] = 4, + sym_duration_unit, + [12674] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(1412), 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(739), 8, + 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_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 46, + ACTIONS(886), 41, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150591,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, @@ -150612,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, @@ -150622,36 +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, - sym_duration_unit, - [12808] = 11, + [12753] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - ACTIONS(1828), 1, - sym__unquoted_pattern, - ACTIONS(3512), 1, - anon_sym_DOT_DOT2, - ACTIONS(3516), 1, - sym_filesize_unit, - ACTIONS(3518), 1, - sym_duration_unit, - STATE(1413), 1, + ACTIONS(3528), 1, + aux_sym__immediate_decimal_token5, + STATE(1420), 1, sym_comment, - STATE(4762), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3514), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(858), 5, + ACTIONS(771), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(884), 41, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(773), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -150684,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, @@ -150693,68 +151547,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [12887] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1414), 1, - sym_comment, - ACTIONS(2146), 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(2144), 44, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [12952] = 36, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [12820] = 36, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1386), 1, @@ -150777,35 +151573,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__unquoted_in_list_token1, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(1572), 1, + ACTIONS(1576), 1, anon_sym_DOT_DOT, - ACTIONS(2732), 1, + ACTIONS(2674), 1, anon_sym_DOLLAR, - ACTIONS(2734), 1, + ACTIONS(2676), 1, anon_sym_LBRACE, - ACTIONS(2736), 1, + ACTIONS(2680), 1, sym_val_date, - ACTIONS(3460), 1, + ACTIONS(3454), 1, anon_sym_LBRACK, - STATE(1415), 1, + STATE(1421), 1, sym_comment, - STATE(1418), 1, + STATE(1424), 1, aux_sym__match_pattern_list_body_repeat1, - STATE(3552), 1, + STATE(3727), 1, sym__val_number_decimal, - STATE(3791), 1, + STATE(4040), 1, sym_expr_parenthesized, - STATE(3792), 1, + STATE(4041), 1, sym_val_variable, - STATE(4099), 1, - sym__val_number, - STATE(4104), 1, + STATE(4243), 1, sym__match_pattern_expression, - STATE(4105), 1, + STATE(4244), 1, sym__unquoted_in_list, - STATE(4146), 1, + STATE(4386), 1, + sym__val_number, + STATE(4490), 1, sym_val_bool, - STATE(4454), 1, + STATE(4737), 1, sym__match_pattern_list, ACTIONS(1384), 2, anon_sym_true, @@ -150819,10 +151615,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1418), 2, anon_sym_0o, anon_sym_0x, - STATE(4441), 2, + STATE(4736), 2, sym__match_pattern_value, sym_val_range, - STATE(5087), 2, + STATE(5140), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1388), 3, @@ -150833,12 +151629,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3594), 4, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4455), 8, + STATE(4742), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -150847,73 +151643,75 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13081] = 4, + [12949] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1416), 1, + STATE(1422), 1, sym_comment, - ACTIONS(763), 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(765), 46, + ACTIONS(2148), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, 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_DOLLAR, anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_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, - [13146] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1417), 1, - sym_comment, - ACTIONS(789), 8, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2146), 44, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [13014] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3507), 1, + aux_sym__immediate_decimal_token5, + STATE(1423), 1, + sym_comment, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150922,7 +151720,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(791), 46, + ACTIONS(749), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150935,9 +151734,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, @@ -150969,89 +151766,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13211] = 34, + [13081] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3523), 1, + ACTIONS(3533), 1, anon_sym_null, - ACTIONS(3529), 1, + ACTIONS(3539), 1, anon_sym_LBRACK, - ACTIONS(3532), 1, + ACTIONS(3542), 1, anon_sym_LPAREN, - ACTIONS(3535), 1, + ACTIONS(3545), 1, anon_sym_DOLLAR, - ACTIONS(3538), 1, + ACTIONS(3548), 1, anon_sym_LBRACE, - ACTIONS(3541), 1, + ACTIONS(3551), 1, anon_sym_DOT_DOT, - ACTIONS(3547), 1, + ACTIONS(3557), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3550), 1, + ACTIONS(3560), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3559), 1, + ACTIONS(3569), 1, anon_sym_0b, - ACTIONS(3565), 1, + ACTIONS(3575), 1, sym_val_date, - ACTIONS(3568), 1, + ACTIONS(3578), 1, anon_sym_DQUOTE, - ACTIONS(3571), 1, + ACTIONS(3581), 1, anon_sym_SQUOTE, - ACTIONS(3574), 1, + ACTIONS(3584), 1, anon_sym_BQUOTE, - ACTIONS(3577), 1, + ACTIONS(3587), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(3580), 1, + ACTIONS(3590), 1, sym_raw_string_begin, - STATE(3715), 1, + STATE(3889), 1, sym__val_number_decimal, - STATE(4099), 1, + STATE(4356), 1, + sym_val_variable, + STATE(4386), 1, sym__val_number, - STATE(4121), 1, + STATE(4516), 1, sym_expr_parenthesized, - STATE(4122), 1, - sym_val_variable, - STATE(4454), 1, + STATE(4737), 1, sym__match_pattern_list, - STATE(4703), 1, + STATE(4901), 1, sym_val_bool, - ACTIONS(3520), 2, + ACTIONS(3530), 2, anon_sym_true, anon_sym_false, - ACTIONS(3544), 2, + ACTIONS(3554), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3553), 2, + ACTIONS(3563), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3562), 2, + ACTIONS(3572), 2, anon_sym_0o, anon_sym_0x, - STATE(1418), 2, + STATE(1424), 2, sym_comment, aux_sym__match_pattern_list_body_repeat1, - STATE(4441), 2, + STATE(4736), 2, sym__match_pattern_value, sym_val_range, - STATE(4746), 2, + STATE(4793), 2, sym__match_pattern_expression, sym__unquoted_in_list, - STATE(5087), 2, + STATE(5140), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3526), 3, + ACTIONS(3536), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3556), 3, + ACTIONS(3566), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3594), 4, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4455), 8, + STATE(4742), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -151060,210 +151857,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13336] = 36, - ACTIONS(3), 1, + [13206] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(1924), 1, - aux_sym_unquoted_token1, - ACTIONS(2768), 1, - anon_sym_LPAREN, - ACTIONS(2895), 1, - anon_sym_LBRACK, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - ACTIONS(2899), 1, - anon_sym_LBRACE, - ACTIONS(3585), 1, - anon_sym_null, - ACTIONS(3589), 1, - anon_sym_DOT_DOT, - ACTIONS(3593), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3595), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3599), 1, - sym_val_date, - STATE(700), 1, - sym__val_number, - STATE(1419), 1, + STATE(1425), 1, sym_comment, - STATE(3542), 1, - sym__val_number_decimal, - STATE(3717), 1, - sym_expr_parenthesized, - STATE(3748), 1, - sym_val_variable, - STATE(4177), 1, - sym_val_bool, - STATE(4208), 1, - sym__match_pattern_expression, - STATE(4214), 1, - sym__match_pattern_list, - STATE(4232), 1, - sym_unquoted, - STATE(4584), 1, - sym__match_pattern, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3583), 2, + 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, - ACTIONS(3591), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3597), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4213), 2, - sym__match_pattern_value, - sym_val_range, - STATE(5062), 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(3587), 3, + anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4216), 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, - [13465] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1386), 1, - anon_sym_null, - ACTIONS(1396), 1, + anon_sym_LBRACK, 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(1572), 1, - anon_sym_DOT_DOT, - ACTIONS(2732), 1, anon_sym_DOLLAR, - ACTIONS(2734), 1, + anon_sym_DASH2, anon_sym_LBRACE, - ACTIONS(2736), 1, - sym_val_date, - ACTIONS(3460), 1, - anon_sym_LBRACK, - STATE(1418), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(1420), 1, - sym_comment, - STATE(3552), 1, - sym__val_number_decimal, - STATE(3791), 1, - sym_expr_parenthesized, - STATE(3792), 1, - sym_val_variable, - STATE(4099), 1, - sym__val_number, - STATE(4146), 1, - sym_val_bool, - STATE(4329), 1, - sym__match_pattern_expression, - STATE(4330), 1, - sym__unquoted_in_list, - STATE(4454), 1, - sym__match_pattern_list, - ACTIONS(1384), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1406), 2, + anon_sym_DOT_DOT, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(1412), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(1418), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4441), 2, - sym__match_pattern_value, - sym_val_range, - STATE(5087), 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(3594), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4455), 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, - [13594] = 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, + [13271] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3601), 1, + ACTIONS(3597), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3599), 1, aux_sym__immediate_decimal_token5, - STATE(1421), 1, + STATE(1426), 1, sym_comment, - ACTIONS(763), 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(765), 45, - ts_builtin_sym_end, + ACTIONS(1770), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151276,7 +151948,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, @@ -151307,92 +151981,91 @@ 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, - [13661] = 36, + [13340] = 36, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1796), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1798), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(1924), 1, + ACTIONS(1936), 1, aux_sym_unquoted_token1, - ACTIONS(2768), 1, + ACTIONS(2694), 1, anon_sym_LPAREN, - ACTIONS(2895), 1, + ACTIONS(2871), 1, anon_sym_LBRACK, - ACTIONS(2897), 1, + ACTIONS(2873), 1, anon_sym_DOLLAR, - ACTIONS(2899), 1, + ACTIONS(2875), 1, anon_sym_LBRACE, - ACTIONS(3585), 1, + ACTIONS(3603), 1, anon_sym_null, - ACTIONS(3589), 1, + ACTIONS(3607), 1, anon_sym_DOT_DOT, - ACTIONS(3593), 1, + ACTIONS(3611), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3595), 1, + ACTIONS(3613), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3599), 1, + ACTIONS(3617), 1, sym_val_date, - STATE(700), 1, + STATE(707), 1, sym__val_number, - STATE(1422), 1, + STATE(1427), 1, sym_comment, - STATE(3542), 1, + STATE(3725), 1, sym__val_number_decimal, - STATE(3717), 1, - sym_expr_parenthesized, - STATE(3748), 1, + STATE(3808), 1, sym_val_variable, - STATE(4177), 1, + STATE(3865), 1, + sym_expr_parenthesized, + STATE(4219), 1, sym_val_bool, - STATE(4208), 1, + STATE(4471), 1, sym__match_pattern_expression, - STATE(4214), 1, + STATE(4483), 1, sym__match_pattern_list, - STATE(4232), 1, + STATE(4503), 1, sym_unquoted, - STATE(4562), 1, + STATE(4643), 1, sym__match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3583), 2, + ACTIONS(3601), 2, anon_sym_true, anon_sym_false, - ACTIONS(3591), 2, + ACTIONS(3609), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3597), 2, + ACTIONS(3615), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4213), 2, + STATE(4475), 2, sym__match_pattern_value, sym_val_range, - STATE(5062), 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(3587), 3, + ACTIONS(3605), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2238), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4216), 8, + STATE(4489), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -151401,75 +152074,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13790] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1423), 1, - sym_comment, - ACTIONS(3605), 2, - sym_raw_string_begin, - sym__space, - ACTIONS(3603), 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, - [13855] = 5, + [13469] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3485), 1, - aux_sym__immediate_decimal_token5, - STATE(1424), 1, + STATE(1428), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(860), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151478,8 +152088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 45, - ts_builtin_sym_end, + ACTIONS(862), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151492,7 +152101,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, @@ -151524,16 +152135,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13922] = 6, + [13534] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3607), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3609), 1, + ACTIONS(3619), 1, + anon_sym_DOT, + ACTIONS(3621), 1, aux_sym__immediate_decimal_token5, - STATE(1425), 1, + STATE(1429), 1, sym_comment, - ACTIONS(1748), 7, + ACTIONS(1746), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151541,7 +152152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1746), 45, + ACTIONS(1744), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151587,25 +152198,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13991] = 6, + [13603] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3611), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3613), 1, - aux_sym__immediate_decimal_token5, - STATE(1426), 1, + STATE(1430), 1, sym_comment, - ACTIONS(1748), 7, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1746), 44, - ts_builtin_sym_end, + ACTIONS(741), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151618,7 +152225,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, @@ -151649,22 +152258,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14059] = 5, + sym_duration_unit, + [13668] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3615), 1, - aux_sym__immediate_decimal_token5, - STATE(1427), 1, + 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(2871), 1, + anon_sym_LBRACK, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + ACTIONS(2875), 1, + anon_sym_LBRACE, + ACTIONS(3603), 1, + anon_sym_null, + ACTIONS(3607), 1, + anon_sym_DOT_DOT, + ACTIONS(3611), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3613), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3617), 1, + sym_val_date, + STATE(707), 1, + sym__val_number, + STATE(1431), 1, sym_comment, - ACTIONS(1814), 7, + STATE(3725), 1, + sym__val_number_decimal, + STATE(3808), 1, + sym_val_variable, + STATE(3865), 1, + sym_expr_parenthesized, + STATE(4219), 1, + sym_val_bool, + STATE(4471), 1, + sym__match_pattern_expression, + STATE(4483), 1, + sym__match_pattern_list, + STATE(4503), 1, + sym_unquoted, + STATE(4724), 1, + sym__match_pattern, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3601), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3609), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3615), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4475), 2, + sym__match_pattern_value, + sym_val_range, + 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(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(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, + [13797] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1432), 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(1812), 45, + ACTIONS(773), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151710,12 +152412,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14125] = 4, + sym_duration_unit, + [13862] = 36, ACTIONS(3), 1, anon_sym_POUND, - STATE(1428), 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, + 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(789), 8, + ACTIONS(860), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151724,7 +152520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(791), 45, + ACTIONS(862), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151770,22 +152566,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [14189] = 4, + [14055] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1429), 1, + ACTIONS(3621), 1, + aux_sym__immediate_decimal_token5, + STATE(1435), 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, @@ -151798,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, @@ -151829,13 +152627,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, - [14253] = 4, + [14121] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1430), 1, + STATE(1436), 1, sym_comment, - ACTIONS(763), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151844,7 +152641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(765), 45, + ACTIONS(741), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151890,16 +152687,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [14317] = 6, + [14185] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3617), 1, - anon_sym_DOT, - ACTIONS(3619), 1, + ACTIONS(3623), 1, aux_sym__immediate_decimal_token5, - STATE(1431), 1, + STATE(1437), 1, sym_comment, - ACTIONS(1756), 7, + ACTIONS(1854), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151907,8 +152702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1754), 44, - ts_builtin_sym_end, + ACTIONS(1852), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151921,7 +152715,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, @@ -151952,14 +152748,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14385] = 5, + [14251] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3510), 1, + ACTIONS(3625), 1, + anon_sym_DOT, + ACTIONS(3627), 1, aux_sym__immediate_decimal_token5, - STATE(1432), 1, + STATE(1438), 1, sym_comment, - ACTIONS(1756), 7, + ACTIONS(1746), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151967,7 +152765,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1754), 45, + ACTIONS(1744), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151980,9 +152779,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, @@ -152013,27 +152810,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14451] = 8, + [14319] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2015), 1, - anon_sym_LPAREN2, - ACTIONS(3621), 1, - anon_sym_DOT_DOT2, - STATE(1433), 1, + STATE(1439), 1, sym_comment, - ACTIONS(3623), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2013), 5, + ACTIONS(771), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2011), 42, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(773), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152046,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, @@ -152067,6 +152857,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, @@ -152076,12 +152867,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14522] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [14383] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1434), 1, + ACTIONS(3629), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3631), 1, + aux_sym__immediate_decimal_token5, + STATE(1440), 1, sym_comment, - ACTIONS(1902), 7, + ACTIONS(1772), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152089,7 +152887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1900), 45, + ACTIONS(1770), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152102,9 +152901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152135,14 +152932,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14585] = 5, + [14451] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3619), 1, + ACTIONS(3633), 1, aux_sym__immediate_decimal_token5, - STATE(1435), 1, + STATE(1441), 1, sym_comment, - ACTIONS(1756), 7, + ACTIONS(1854), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152150,7 +152947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1754), 44, + ACTIONS(1852), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152195,12 +152992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14650] = 4, + [14516] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1436), 1, + STATE(1442), 1, sym_comment, - ACTIONS(1814), 7, + ACTIONS(1854), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152208,7 +153005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1812), 45, + ACTIONS(1852), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152254,14 +153051,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14713] = 5, + [14579] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3625), 1, + ACTIONS(3627), 1, aux_sym__immediate_decimal_token5, - STATE(1437), 1, + STATE(1443), 1, sym_comment, - ACTIONS(1814), 7, + ACTIONS(1746), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152269,7 +153066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1812), 44, + ACTIONS(1744), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152314,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, - [14778] = 8, + [14644] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, + ACTIONS(1977), 1, anon_sym_LPAREN2, - ACTIONS(2031), 1, + ACTIONS(1983), 1, sym__unquoted_pattern, - ACTIONS(3627), 1, + ACTIONS(3635), 1, anon_sym_DOT_DOT2, - STATE(1438), 1, + STATE(1444), 1, sym_comment, - ACTIONS(3629), 2, + ACTIONS(3637), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2023), 5, + ACTIONS(1975), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2021), 42, + ACTIONS(1973), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152377,12 +153174,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14849] = 4, + [14715] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1439), 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(1748), 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, + ACTIONS(1956), 42, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [14786] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1446), 1, + sym_comment, + ACTIONS(1772), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152390,7 +153250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1746), 45, + ACTIONS(1770), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152436,28 +153296,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14912] = 8, + [14849] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2015), 1, - anon_sym_LPAREN2, - ACTIONS(3631), 1, - anon_sym_DOT_DOT2, - STATE(1440), 1, + STATE(1447), 1, sym_comment, - ACTIONS(3633), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2013), 5, + ACTIONS(1872), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2011), 41, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1870), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152470,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, @@ -152489,6 +153343,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, @@ -152498,99 +153353,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14982] = 22, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [14912] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3643), 1, - anon_sym_LBRACK, - ACTIONS(3645), 1, - anon_sym_STAR2, - STATE(1441), 1, + STATE(1448), 1, sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(4348), 1, - sym__command_name, - STATE(4349), 1, - sym_scope_pattern, - STATE(4351), 1, - sym_wild_card, - STATE(4352), 1, - sym_command_list, - ACTIONS(3635), 2, - anon_sym_export, + ACTIONS(1772), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1770), 44, + ts_builtin_sym_end, anon_sym_in, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3641), 4, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 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, - [15080] = 6, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [14974] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3651), 1, - anon_sym_DOT, - ACTIONS(3653), 1, - aux_sym__immediate_decimal_token5, - STATE(1442), 1, + STATE(1449), 1, sym_comment, - ACTIONS(1756), 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(1754), 43, + ACTIONS(1852), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152603,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, @@ -152634,26 +153469,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15146] = 9, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [15036] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1860), 1, - anon_sym_DOT2, - STATE(429), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(454), 1, - sym_path, - STATE(901), 1, - sym_cell_path, - STATE(1443), 1, + STATE(1450), 1, sym_comment, - ACTIONS(1865), 5, + ACTIONS(1872), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3655), 13, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1870), 44, + ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -152665,10 +153498,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(1862), 29, - anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -152688,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, @@ -152697,23 +153527,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15218] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [15098] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3659), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3661), 1, + ACTIONS(3643), 1, + anon_sym_DOT, + ACTIONS(3645), 1, aux_sym__immediate_decimal_token5, - STATE(1444), 1, + STATE(1451), 1, sym_comment, - ACTIONS(1748), 6, + ACTIONS(1746), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1746), 43, + ACTIONS(1744), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152757,59 +153589,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15284] = 22, + [15164] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1798), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3639), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3643), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3645), 1, + ACTIONS(3657), 1, anon_sym_STAR2, - STATE(1445), 1, + STATE(1452), 1, sym_comment, - STATE(2102), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(4299), 1, - sym_scope_pattern, - STATE(4348), 1, + STATE(3719), 1, + sym_val_string, + STATE(4379), 1, sym__command_name, - STATE(4351), 1, + STATE(4380), 1, + sym_scope_pattern, + STATE(4381), 1, sym_wild_card, - STATE(4352), 1, + STATE(4382), 1, sym_command_list, - ACTIONS(3635), 2, + ACTIONS(3647), 2, anon_sym_export, anon_sym_in, - ACTIONS(3647), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3663), 4, + ACTIONS(3653), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(2238), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 23, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -152833,20 +153665,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15382] = 4, + [15262] = 8, ACTIONS(3), 1, anon_sym_POUND, - 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(1748), 7, + 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, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1746), 44, + ACTIONS(1973), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152879,7 +153718,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, @@ -152889,24 +153727,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [15444] = 4, + [15332] = 22, ACTIONS(3), 1, anon_sym_POUND, - STATE(1447), 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, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3657), 1, + anon_sym_STAR2, + STATE(1454), 1, sym_comment, - ACTIONS(1902), 7, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(4379), 1, + sym__command_name, + STATE(4381), 1, + sym_wild_card, + STATE(4382), 1, + sym_command_list, + STATE(4466), 1, + sym_scope_pattern, + 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, + ACTIONS(3667), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + 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, + [15430] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1866), 1, + anon_sym_DOT2, + STATE(427), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(458), 1, + sym_path, + STATE(932), 1, + sym_cell_path, + STATE(1455), 1, + sym_comment, + ACTIONS(1885), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1900), 44, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(3669), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -152918,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, @@ -152937,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, @@ -152947,29 +153866,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [15506] = 8, + [15502] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, + ACTIONS(1635), 1, sym__unquoted_pattern, - ACTIONS(3665), 1, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + ACTIONS(3673), 1, anon_sym_DOT_DOT2, - STATE(1448), 1, + STATE(1456), 1, sym_comment, - ACTIONS(3667), 2, + ACTIONS(3675), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2023), 5, + ACTIONS(1958), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2021), 41, + ACTIONS(1956), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153011,21 +153928,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15576] = 4, + [15572] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1449), 1, + ACTIONS(3677), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3679), 1, + aux_sym__immediate_decimal_token5, + STATE(1457), 1, sym_comment, - ACTIONS(1814), 7, + ACTIONS(1772), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1812), 44, - ts_builtin_sym_end, + ACTIONS(1770), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153038,7 +153957,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, @@ -153067,127 +153988,50 @@ 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, - [15638] = 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(3673), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3675), 1, - anon_sym_LBRACK, - ACTIONS(3677), 1, - anon_sym_STAR2, - STATE(1450), 1, - sym_comment, - STATE(1998), 1, - sym__val_number_decimal, - STATE(4288), 1, - sym_cmd_identifier, - STATE(4289), 1, - sym_val_string, - STATE(4532), 1, - sym__command_name, - STATE(4534), 1, - sym_wild_card, - STATE(4535), 1, - sym_command_list, - STATE(4647), 1, - sym_scope_pattern, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3669), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3663), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - STATE(485), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3671), 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, - [15735] = 20, + [15638] = 20, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(251), 1, aux_sym_cmd_identifier_token1, ACTIONS(856), 1, sym_raw_string_begin, - ACTIONS(3291), 1, + ACTIONS(3130), 1, anon_sym_DQUOTE, - ACTIONS(3293), 1, + ACTIONS(3132), 1, anon_sym_SQUOTE, - ACTIONS(3295), 1, + ACTIONS(3134), 1, anon_sym_BQUOTE, - ACTIONS(3297), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3299), 1, + ACTIONS(3138), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3679), 1, - anon_sym_LPAREN, ACTIONS(3681), 1, + anon_sym_LPAREN, + ACTIONS(3683), 1, anon_sym_DOLLAR, - STATE(1451), 1, + STATE(1458), 1, sym_comment, - STATE(2105), 1, + STATE(2136), 1, sym__val_number_decimal, - STATE(3082), 1, + STATE(3094), 1, sym__inter_single_quotes, - STATE(3083), 1, + STATE(3095), 1, sym__inter_double_quotes, ACTIONS(277), 2, anon_sym_export, anon_sym_in, - ACTIONS(3647), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2455), 4, + STATE(2483), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3021), 5, + STATE(2905), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, @@ -153217,27 +154061,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15828] = 9, + [15731] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2391), 1, - anon_sym_DOT2, - STATE(532), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(791), 1, - sym_path, - STATE(1335), 1, - sym_cell_path, - STATE(1452), 1, + ACTIONS(3685), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3687), 1, + aux_sym__immediate_decimal_token5, + STATE(1459), 1, sym_comment, - ACTIONS(1865), 5, + ACTIONS(1772), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3655), 12, + sym__unquoted_pattern, + ACTIONS(1770), 42, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -153249,8 +154091,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(1862), 29, - anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -153270,6 +154110,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, @@ -153279,21 +154120,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15899] = 5, + [15796] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3653), 1, + ACTIONS(3689), 1, + anon_sym_DOT, + ACTIONS(3691), 1, aux_sym__immediate_decimal_token5, - STATE(1453), 1, + STATE(1460), 1, sym_comment, - ACTIONS(1756), 6, + ACTIONS(1746), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1754), 43, + ACTIONS(1744), 42, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153306,9 +154150,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, @@ -153337,50 +154179,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15962] = 20, + [15861] = 20, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(251), 1, aux_sym_cmd_identifier_token1, ACTIONS(856), 1, sym_raw_string_begin, - ACTIONS(3291), 1, + ACTIONS(3130), 1, anon_sym_DQUOTE, - ACTIONS(3293), 1, + ACTIONS(3132), 1, anon_sym_SQUOTE, - ACTIONS(3295), 1, + ACTIONS(3134), 1, anon_sym_BQUOTE, - ACTIONS(3297), 1, + ACTIONS(3136), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3299), 1, + ACTIONS(3138), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3679), 1, - anon_sym_LPAREN, ACTIONS(3681), 1, + anon_sym_LPAREN, + ACTIONS(3683), 1, anon_sym_DOLLAR, - STATE(1454), 1, + STATE(1461), 1, sym_comment, - STATE(2105), 1, + STATE(2136), 1, sym__val_number_decimal, - STATE(3082), 1, + STATE(3094), 1, sym__inter_single_quotes, - STATE(3083), 1, + STATE(3095), 1, sym__inter_double_quotes, ACTIONS(277), 2, anon_sym_export, anon_sym_in, - ACTIONS(3647), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2455), 4, + STATE(2483), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2916), 5, + STATE(3124), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, @@ -153410,24 +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, - [16055] = 6, + [15954] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3683), 1, - anon_sym_DOT, - ACTIONS(3685), 1, + ACTIONS(3693), 1, aux_sym__immediate_decimal_token5, - STATE(1455), 1, + STATE(1462), 1, sym_comment, - ACTIONS(1756), 6, + ACTIONS(1854), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1754), 42, - ts_builtin_sym_end, + ACTIONS(1852), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153440,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, @@ -153469,7 +154310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16120] = 22, + [16017] = 22, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(91), 1, @@ -153480,47 +154321,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(3673), 1, + ACTIONS(3699), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3675), 1, + ACTIONS(3701), 1, anon_sym_LBRACK, - ACTIONS(3677), 1, + ACTIONS(3703), 1, anon_sym_STAR2, - STATE(1456), 1, + STATE(1463), 1, sym_comment, - STATE(1998), 1, + STATE(2013), 1, sym__val_number_decimal, - STATE(4288), 1, + STATE(4301), 1, sym_cmd_identifier, - STATE(4289), 1, + STATE(4302), 1, sym_val_string, - STATE(4532), 1, + STATE(4640), 1, sym__command_name, - STATE(4533), 1, - sym_scope_pattern, - STATE(4534), 1, + STATE(4647), 1, sym_wild_card, - STATE(4535), 1, + STATE(4649), 1, sym_command_list, - ACTIONS(3647), 2, + STATE(4703), 1, + sym_scope_pattern, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3669), 2, + ACTIONS(3695), 2, anon_sym_export, anon_sym_in, - ACTIONS(3641), 3, + ACTIONS(3667), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - STATE(485), 4, + STATE(502), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3671), 23, + ACTIONS(3697), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -153544,25 +154385,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [16217] = 6, + [16114] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3687), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3689), 1, - aux_sym__immediate_decimal_token5, - STATE(1457), 1, + ACTIONS(19), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(974), 1, + sym_raw_string_begin, + ACTIONS(3335), 1, + anon_sym_DQUOTE, + ACTIONS(3337), 1, + anon_sym_SQUOTE, + ACTIONS(3339), 1, + anon_sym_BQUOTE, + ACTIONS(3341), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3343), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3705), 1, + anon_sym_LPAREN, + ACTIONS(3707), 1, + anon_sym_DOLLAR, + STATE(1464), 1, + sym_comment, + STATE(2121), 1, + sym__val_number_decimal, + STATE(3340), 1, + sym__inter_single_quotes, + STATE(3342), 1, + sym__inter_double_quotes, + ACTIONS(45), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2554), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3059), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(39), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [16207] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2280), 1, + anon_sym_DOT2, + STATE(622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(720), 1, + sym_path, + STATE(1273), 1, + sym_cell_path, + STATE(1465), 1, sym_comment, - ACTIONS(1748), 6, + ACTIONS(1885), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1746), 42, + ACTIONS(3669), 12, ts_builtin_sym_end, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -153574,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, @@ -153593,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, @@ -153603,21 +154520,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16282] = 5, + [16278] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3691), 1, + ACTIONS(3645), 1, aux_sym__immediate_decimal_token5, - STATE(1458), 1, + STATE(1466), 1, sym_comment, - ACTIONS(1814), 6, + ACTIONS(1746), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1812), 43, + ACTIONS(1744), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153661,217 +154578,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16345] = 20, + [16341] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(19), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(958), 1, - sym_raw_string_begin, - ACTIONS(3242), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(3244), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(3246), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(3248), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3250), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3693), 1, - anon_sym_LPAREN, - ACTIONS(3695), 1, - anon_sym_DOLLAR, - STATE(1459), 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(1467), 1, sym_comment, - STATE(2101), 1, + STATE(2013), 1, sym__val_number_decimal, - STATE(3155), 1, - sym__inter_single_quotes, - STATE(3156), 1, - sym__inter_double_quotes, - ACTIONS(45), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2501), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3028), 5, + STATE(4301), 1, sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, + STATE(4302), 1, sym_val_string, - sym_val_interpolated, - ACTIONS(39), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [16438] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1637), 1, - sym__entry_separator, - ACTIONS(3699), 1, - anon_sym_RBRACE, - ACTIONS(3701), 1, - sym_raw_string_begin, - STATE(1460), 1, - sym_comment, - STATE(1474), 1, - aux_sym__types_body_repeat2, - ACTIONS(3697), 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, + 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, - 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, - [16504] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1637), 1, - sym__entry_separator, - ACTIONS(3706), 1, - anon_sym_RBRACE, - ACTIONS(3709), 1, - sym_raw_string_begin, - STATE(1461), 1, - sym_comment, - STATE(1474), 1, - aux_sym__types_body_repeat2, - ACTIONS(3703), 45, + ACTIONS(3695), 2, 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, - [16570] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1637), 1, - sym__entry_separator, - ACTIONS(3709), 1, - sym_raw_string_begin, - ACTIONS(3712), 1, - anon_sym_RBRACE, - STATE(1462), 1, - sym_comment, - STATE(1474), 1, - aux_sym__types_body_repeat2, - ACTIONS(3703), 45, - anon_sym_export, + ACTIONS(3653), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + STATE(502), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3697), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -153885,45 +154647,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, - 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, - [16636] = 4, + [16438] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1463), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(1468), 1, sym_comment, - ACTIONS(2508), 6, + ACTIONS(1975), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2506), 43, + ACTIONS(1973), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153957,7 +154702,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, @@ -153967,22 +154711,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16696] = 6, + [16502] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, + ACTIONS(1635), 1, sym__unquoted_pattern, - STATE(1464), 1, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(1469), 1, sym_comment, - ACTIONS(2023), 5, + ACTIONS(1958), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2021), 42, + ACTIONS(1956), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154025,20 +154769,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16760] = 7, + [16566] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(3717), 1, + ACTIONS(3711), 1, anon_sym_RBRACE, - ACTIONS(3719), 1, + ACTIONS(3713), 1, sym_raw_string_begin, - STATE(1465), 1, + STATE(1470), 1, sym_comment, - STATE(1474), 1, + STATE(1472), 1, aux_sym__types_body_repeat2, - ACTIONS(3715), 45, + ACTIONS(3709), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154084,20 +154828,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16826] = 7, + [16632] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1471), 1, + sym_comment, + ACTIONS(1854), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1852), 43, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [16692] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(3717), 1, sym__entry_separator, - ACTIONS(3701), 1, + ACTIONS(3720), 1, sym_raw_string_begin, - ACTIONS(3721), 1, - anon_sym_RBRACE, - STATE(1466), 1, + STATE(1472), 2, sym_comment, - STATE(1474), 1, aux_sym__types_body_repeat2, - ACTIONS(3697), 45, + ACTIONS(3715), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154127,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, @@ -154143,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, - [16892] = 7, + [16754] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(3701), 1, - sym_raw_string_begin, - ACTIONS(3721), 1, + ACTIONS(3724), 1, anon_sym_RBRACE, - STATE(1467), 1, - sym_comment, - STATE(1474), 1, + ACTIONS(3726), 1, + sym_raw_string_begin, + STATE(1472), 1, aux_sym__types_body_repeat2, - ACTIONS(3697), 45, + STATE(1473), 1, + sym_comment, + ACTIONS(3722), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154202,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, - [16958] = 7, + [16820] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(3701), 1, + ACTIONS(3713), 1, sym_raw_string_begin, - ACTIONS(3723), 1, + ACTIONS(3728), 1, anon_sym_RBRACE, - STATE(1468), 1, - sym_comment, - STATE(1474), 1, + STATE(1472), 1, aux_sym__types_body_repeat2, - ACTIONS(3697), 45, + STATE(1474), 1, + sym_comment, + ACTIONS(3709), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154261,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, - [17024] = 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(1637), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(3719), 1, + ACTIONS(3713), 1, sym_raw_string_begin, - ACTIONS(3725), 1, + ACTIONS(3728), 1, anon_sym_RBRACE, - STATE(1469), 1, - sym_comment, - STATE(1474), 1, + STATE(1472), 1, aux_sym__types_body_repeat2, - ACTIONS(3715), 45, + STATE(1476), 1, + sym_comment, + ACTIONS(3709), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154320,19 +155176,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17090] = 4, + [17016] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1470), 1, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(1477), 1, sym_comment, - ACTIONS(1748), 6, + ACTIONS(1020), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1746), 43, + ACTIONS(1022), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154366,7 +155225,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, @@ -154376,22 +155234,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17150] = 6, + [17080] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, + ACTIONS(2652), 1, anon_sym_LPAREN2, - ACTIONS(2558), 1, + ACTIONS(2654), 1, sym__unquoted_pattern, - STATE(1471), 1, + STATE(1478), 1, sym_comment, - ACTIONS(1008), 5, + ACTIONS(2650), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1030), 42, + ACTIONS(2648), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154434,22 +155292,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17214] = 6, + [17144] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, + ACTIONS(2612), 1, anon_sym_LPAREN2, - ACTIONS(2558), 1, + ACTIONS(2614), 1, sym__unquoted_pattern, - STATE(1472), 1, + STATE(1479), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(1614), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 42, + ACTIONS(1713), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154492,20 +155350,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17278] = 7, + [17208] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(3701), 1, + ACTIONS(3713), 1, sym_raw_string_begin, - ACTIONS(3727), 1, + ACTIONS(3730), 1, anon_sym_RBRACE, - STATE(1473), 1, - sym_comment, - STATE(1474), 1, + STATE(1472), 1, aux_sym__types_body_repeat2, - ACTIONS(3697), 45, + STATE(1480), 1, + sym_comment, + ACTIONS(3709), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154551,17 +155409,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17344] = 5, + [17274] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(1481), 1, + sym_comment, + ACTIONS(2599), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2597), 42, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [17338] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3731), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(3734), 1, + ACTIONS(3713), 1, sym_raw_string_begin, - STATE(1474), 2, - sym_comment, + ACTIONS(3730), 1, + anon_sym_RBRACE, + STATE(1472), 1, aux_sym__types_body_repeat2, - ACTIONS(3729), 46, + STATE(1482), 1, + sym_comment, + ACTIONS(3709), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154591,7 +155510,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_PLUS2, anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_DOT_DOLLAR, @@ -154608,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, - [17406] = 6, + [17404] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2574), 1, - anon_sym_LPAREN2, - ACTIONS(2576), 1, - sym__unquoted_pattern, - STATE(1475), 1, + ACTIONS(3732), 1, + aux_sym__immediate_decimal_token5, + STATE(1483), 1, sym_comment, - ACTIONS(2572), 5, + ACTIONS(1854), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2570), 42, + sym__unquoted_pattern, + ACTIONS(1852), 42, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154636,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, @@ -154657,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, @@ -154666,22 +155583,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17470] = 6, + [17466] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(3726), 1, + sym_raw_string_begin, + ACTIONS(3734), 1, + anon_sym_RBRACE, + STATE(1472), 1, + aux_sym__types_body_repeat2, + STATE(1484), 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, + [17532] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(3726), 1, + sym_raw_string_begin, + ACTIONS(3736), 1, + anon_sym_RBRACE, + STATE(1472), 1, + aux_sym__types_body_repeat2, + STATE(1485), 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, + [17598] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(3726), 1, + sym_raw_string_begin, + ACTIONS(3738), 1, + anon_sym_RBRACE, + STATE(1472), 1, + aux_sym__types_body_repeat2, + STATE(1486), 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, + [17664] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(3713), 1, + sym_raw_string_begin, + ACTIONS(3740), 1, + anon_sym_RBRACE, + STATE(1472), 1, + aux_sym__types_body_repeat2, + STATE(1487), 1, + sym_comment, + ACTIONS(3709), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [17730] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1691), 1, + ACTIONS(1679), 1, sym__unquoted_pattern, - ACTIONS(2564), 1, + ACTIONS(2642), 1, anon_sym_LPAREN2, - STATE(1476), 1, + STATE(1488), 1, sym_comment, - ACTIONS(2562), 5, + ACTIONS(2543), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2560), 42, + ACTIONS(2541), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154724,22 +155877,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17534] = 6, + [17794] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern, - STATE(1477), 1, + STATE(1489), 1, sym_comment, - ACTIONS(2568), 5, + ACTIONS(1872), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2566), 42, + sym__unquoted_pattern, + ACTIONS(1870), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154773,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, @@ -154782,22 +155933,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17598] = 6, + [17854] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2015), 1, - anon_sym_LPAREN2, - STATE(1478), 1, + ACTIONS(3691), 1, + aux_sym__immediate_decimal_token5, + STATE(1490), 1, sym_comment, - ACTIONS(2013), 5, + ACTIONS(1746), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2011), 42, + sym__unquoted_pattern, + ACTIONS(1744), 42, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154810,9 +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_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -154831,6 +155980,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, @@ -154840,19 +155990,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17662] = 4, + [17916] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1479), 1, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(1491), 1, sym_comment, - ACTIONS(1814), 6, + ACTIONS(2591), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1812), 43, + ACTIONS(2589), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154886,7 +156039,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, @@ -154896,19 +156048,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17722] = 4, + [17980] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(3745), 1, + anon_sym_RBRACE, + ACTIONS(3748), 1, + sym_raw_string_begin, + STATE(1472), 1, + aux_sym__types_body_repeat2, + 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(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, + [18112] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1480), 1, + STATE(1494), 1, sym_comment, - ACTIONS(1902), 6, + ACTIONS(1772), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1900), 43, + ACTIONS(1770), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154952,22 +156222,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17782] = 6, + [18172] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2525), 1, - anon_sym_LPAREN2, - ACTIONS(2527), 1, - sym__unquoted_pattern, - STATE(1481), 1, + STATE(1495), 1, sym_comment, - ACTIONS(2523), 5, + ACTIONS(2527), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2521), 42, + sym__unquoted_pattern, + ACTIONS(2525), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155001,6 +156268,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, @@ -155010,21 +156278,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17846] = 5, + [18232] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3736), 1, - aux_sym__immediate_decimal_token5, - STATE(1482), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(2642), 1, + anon_sym_LPAREN2, + STATE(1496), 1, sym_comment, - ACTIONS(1814), 6, + ACTIONS(2543), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1812), 42, + ACTIONS(2541), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155057,7 +156326,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, @@ -155067,21 +156335,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17908] = 5, + [18295] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3685), 1, - aux_sym__immediate_decimal_token5, - STATE(1483), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(1497), 1, sym_comment, - ACTIONS(1756), 6, + ACTIONS(1958), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1754), 42, + ACTIONS(1956), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155114,7 +156383,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, @@ -155124,22 +156392,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17970] = 6, + [18358] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2594), 1, - anon_sym_LPAREN2, - ACTIONS(2596), 1, - sym__unquoted_pattern, - STATE(1484), 1, + STATE(1498), 1, sym_comment, - ACTIONS(1629), 5, + ACTIONS(2527), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1716), 42, + sym__unquoted_pattern, + ACTIONS(2525), 42, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155152,9 +156418,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, @@ -155173,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, @@ -155182,20 +156447,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18034] = 7, + [18417] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(3701), 1, + ACTIONS(3713), 1, sym_raw_string_begin, - ACTIONS(3727), 1, - anon_sym_RBRACE, - STATE(1474), 1, + STATE(1472), 1, aux_sym__types_body_repeat2, - STATE(1485), 1, + STATE(1499), 1, sym_comment, - ACTIONS(3697), 45, + ACTIONS(3709), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155241,140 +156504,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18100] = 7, - ACTIONS(103), 1, + [18480] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__entry_separator, - ACTIONS(3719), 1, - sym_raw_string_begin, - ACTIONS(3738), 1, - anon_sym_RBRACE, - STATE(1474), 1, - aux_sym__types_body_repeat2, - STATE(1486), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(1500), 1, sym_comment, - ACTIONS(3715), 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, + ACTIONS(2599), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [18166] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1637), 1, - sym__entry_separator, - ACTIONS(3719), 1, - sym_raw_string_begin, - ACTIONS(3740), 1, - anon_sym_RBRACE, - STATE(1474), 1, - aux_sym__types_body_repeat2, - STATE(1487), 1, - sym_comment, - ACTIONS(3715), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(2597), 41, + ts_builtin_sym_end, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [18232] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [18543] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2525), 1, + ACTIONS(2652), 1, anon_sym_LPAREN2, - ACTIONS(2527), 1, + ACTIONS(2654), 1, sym__unquoted_pattern, - STATE(1488), 1, + STATE(1501), 1, sym_comment, - ACTIONS(2523), 5, + ACTIONS(2650), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2521), 41, + ACTIONS(2648), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155416,22 +156618,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18295] = 6, + [18606] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2574), 1, + ACTIONS(2656), 1, anon_sym_LPAREN2, - ACTIONS(2576), 1, + ACTIONS(2658), 1, sym__unquoted_pattern, - STATE(1489), 1, + STATE(1502), 1, sym_comment, - ACTIONS(2572), 5, + ACTIONS(1020), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2570), 41, + ACTIONS(1022), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155473,22 +156675,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18358] = 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(2556), 1, - anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(1490), 1, + STATE(1505), 1, sym_comment, - ACTIONS(1008), 5, + ACTIONS(1772), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1030), 41, + sym__unquoted_pattern, + ACTIONS(1770), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155521,6 +156832,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, @@ -155530,14 +156842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18421] = 5, + [18850] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - STATE(1491), 1, + STATE(1506), 1, sym_comment, - ACTIONS(2506), 18, + ACTIONS(886), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -155556,7 +156868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(2508), 29, + ACTIONS(866), 29, anon_sym_in, anon_sym_GT2, anon_sym_DASH2, @@ -155586,22 +156898,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18482] = 6, + [18911] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, + ACTIONS(2656), 1, anon_sym_LPAREN2, - ACTIONS(2558), 1, + ACTIONS(2658), 1, sym__unquoted_pattern, - STATE(1492), 1, + STATE(1507), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(994), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 41, + ACTIONS(1030), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155643,15 +156955,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18545] = 4, + [18974] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(1493), 1, - sym_comment, - ACTIONS(3744), 2, - sym_raw_string_begin, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(3742), 46, + 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, @@ -155681,7 +156996,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_PLUS2, anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_DOT_DOLLAR, @@ -155698,74 +157012,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18604] = 5, + [19037] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3750), 1, - sym__newline, - STATE(1494), 2, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(1509), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3746), 7, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(2591), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2589), 41, + ts_builtin_sym_end, anon_sym_in, - anon_sym_DOLLAR, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, - anon_sym_PLUS2, - aux_sym__val_number_decimal_token1, - ACTIONS(3748), 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, - [18665] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [19100] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__entry_separator, - ACTIONS(3719), 1, - sym_raw_string_begin, - STATE(1474), 1, - aux_sym__types_body_repeat2, - STATE(1495), 1, + STATE(1510), 1, sym_comment, - ACTIONS(3715), 45, + ACTIONS(3756), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3754), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155795,6 +157107,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, @@ -155811,22 +157124,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18728] = 6, + [19159] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2594), 1, + ACTIONS(2612), 1, anon_sym_LPAREN2, - ACTIONS(2596), 1, + ACTIONS(2614), 1, sym__unquoted_pattern, - STATE(1496), 1, + STATE(1511), 1, sym_comment, - ACTIONS(1629), 5, + ACTIONS(1614), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1716), 41, + ACTIONS(1713), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155868,20 +157181,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18791] = 5, + [19222] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1776), 1, - sym__unquoted_pattern, - STATE(1497), 1, + STATE(1512), 1, sym_comment, - ACTIONS(858), 5, + ACTIONS(1854), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(884), 42, + sym__unquoted_pattern, + ACTIONS(1852), 42, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155894,9 +157207,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, @@ -155915,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, @@ -155924,14 +157236,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18852] = 5, - ACTIONS(103), 1, + [19281] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - STATE(1498), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(1513), 1, sym_comment, - ACTIONS(2521), 18, + ACTIONS(1975), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1973), 41, + ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -155943,18 +157265,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(2523), 29, - anon_sym_in, - anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155965,34 +157276,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18913] = 4, + [19344] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1499), 1, + STATE(1514), 1, sym_comment, - ACTIONS(2508), 6, + ACTIONS(1872), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(2506), 42, + ACTIONS(1870), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156035,20 +157348,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18972] = 4, + [19403] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1500), 1, + ACTIONS(1734), 1, + sym__unquoted_pattern, + STATE(1515), 1, sym_comment, - ACTIONS(1748), 6, + ACTIONS(866), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1746), 42, - ts_builtin_sym_end, + ACTIONS(886), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156061,7 +157374,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, @@ -156080,7 +157395,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, @@ -156090,22 +157404,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19031] = 4, + [19464] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1501), 1, + ACTIONS(3762), 1, + sym__newline, + STATE(1516), 2, sym_comment, - ACTIONS(1814), 6, - anon_sym_GT2, + 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, + 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_LT2, 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, - sym__unquoted_pattern, - ACTIONS(1812), 42, - ts_builtin_sym_end, + ACTIONS(2730), 36, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156116,6 +157494,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_and2, anon_sym_xor2, @@ -156135,31 +157514,23 @@ 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, - [19090] = 4, + [19593] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1502), 1, + STATE(1518), 1, sym_comment, - ACTIONS(1902), 6, + ACTIONS(2583), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1900), 42, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(3771), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -156171,6 +157542,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(2581), 29, + anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -156190,7 +157565,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, @@ -156200,14 +157574,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19149] = 5, + [19653] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, + ACTIONS(2829), 1, aux_sym_cmd_identifier_token2, - STATE(1503), 1, + STATE(1519), 1, sym_comment, - ACTIONS(884), 18, + ACTIONS(2525), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -156219,14 +157594,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(858), 29, + ACTIONS(2527), 29, anon_sym_in, anon_sym_GT2, anon_sym_DASH2, @@ -156256,81 +157629,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19210] = 6, + [19713] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__entry_separator, - ACTIONS(3701), 1, - sym_raw_string_begin, - STATE(1474), 1, - aux_sym__types_body_repeat2, - STATE(1504), 1, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + STATE(1520), 1, sym_comment, - ACTIONS(3697), 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, - [19273] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2015), 1, - anon_sym_LPAREN2, - STATE(1505), 1, - sym_comment, - ACTIONS(2013), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2011), 41, + ACTIONS(2648), 17, ts_builtin_sym_end, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -156342,7 +157649,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_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, @@ -156353,41 +157669,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19336] = 6, + [19773] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern, - STATE(1506), 1, + STATE(1521), 1, sym_comment, - ACTIONS(2568), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, + ACTIONS(2958), 7, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(2566), 41, + 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(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(1522), 1, + sym_comment, + STATE(4654), 1, + sym_block, + STATE(4817), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [19911] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1523), 1, + sym_comment, + STATE(4529), 1, + sym_block, + STATE(4868), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [19991] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1524), 1, + sym_comment, + STATE(4663), 1, + sym_block, + STATE(4847), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20071] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1525), 1, + sym_comment, + STATE(4658), 1, + sym_block, + STATE(4850), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20151] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + STATE(1526), 1, + sym_comment, + ACTIONS(886), 17, ts_builtin_sym_end, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -156399,7 +158018,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_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, @@ -156410,53 +158038,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, + anon_sym_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, - [19399] = 6, + [20211] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(2031), 1, + ACTIONS(1635), 1, sym__unquoted_pattern, - STATE(1507), 1, + ACTIONS(3788), 1, + anon_sym_DOT, + STATE(1527), 1, sym_comment, - ACTIONS(2023), 5, + STATE(1860), 1, + sym__immediate_decimal, + ACTIONS(3790), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3792), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(688), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1602), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2021), 41, - ts_builtin_sym_end, + ACTIONS(1598), 30, anon_sym_in, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156484,22 +158115,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19462] = 6, + [20285] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1691), 1, + ACTIONS(1820), 1, sym__unquoted_pattern, - ACTIONS(2564), 1, - anon_sym_LPAREN2, - STATE(1508), 1, + STATE(1528), 1, sym_comment, - ACTIONS(2562), 5, + ACTIONS(866), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2560), 41, + ACTIONS(886), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156541,52 +158170,701 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19525] = 20, - ACTIONS(103), 1, + [20345] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1529), 1, + sym_comment, + STATE(4714), 1, + sym_block, + STATE(4834), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20425] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1530), 1, + sym_comment, + STATE(4725), 1, + sym_block, + STATE(4837), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20505] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1531), 1, + sym_comment, + STATE(4726), 1, + sym_block, + STATE(4842), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20585] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1532), 1, + sym_comment, + STATE(4739), 1, + sym_block, + STATE(4843), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20665] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1533), 1, + sym_comment, + STATE(4700), 1, + sym_block, + STATE(4844), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20745] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1534), 1, + sym_comment, + STATE(4713), 1, + sym_block, + STATE(4845), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20825] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1535), 1, + sym_comment, + STATE(4715), 1, + sym_block, + STATE(4848), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20905] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1536), 1, + sym_comment, + STATE(4719), 1, + sym_block, + STATE(4849), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20985] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1537), 1, + sym_comment, + STATE(4652), 1, + sym_block, + STATE(4821), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21065] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1538), 1, + sym_comment, + STATE(4778), 1, + sym_block, + STATE(4825), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21145] = 18, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(3699), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3794), 1, + anon_sym_LBRACK, + ACTIONS(3796), 1, + anon_sym_DOLLAR, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(3800), 1, anon_sym_DQUOTE, - ACTIONS(1798), 1, + ACTIONS(3802), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, + ACTIONS(3804), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, + ACTIONS(3806), 1, sym_raw_string_begin, - ACTIONS(2738), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2740), 1, - anon_sym_COLON2, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3753), 1, - anon_sym_DASH_DASH, - STATE(1509), 1, + STATE(1539), 1, sym_comment, - STATE(1710), 1, - aux_sym_decl_def_repeat1, - STATE(2102), 1, + STATE(2013), 1, sym__val_number_decimal, - STATE(2186), 1, - sym_long_flag, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(3685), 1, - sym__command_name, - ACTIONS(3755), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3757), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2238), 4, + 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(3635), 25, - anon_sym_export, + ACTIONS(3697), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -156604,128 +158882,143 @@ 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, - [19615] = 5, + [21231] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1828), 1, - sym__unquoted_pattern, - STATE(1510), 1, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1540), 1, sym_comment, - ACTIONS(858), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(884), 41, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [19675] = 9, + STATE(4479), 1, + sym_block, + STATE(4894), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21311] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - STATE(1511), 1, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1541), 1, sym_comment, - STATE(1531), 1, - aux_sym__repeat_newline, - ACTIONS(3759), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2758), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2756), 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, - [19743] = 21, + STATE(4480), 1, + sym_block, + STATE(4895), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21391] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1422), 1, @@ -156736,43 +159029,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(3769), 1, + ACTIONS(3814), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3771), 1, + ACTIONS(3816), 1, sym__newline, - ACTIONS(3773), 1, + ACTIONS(3818), 1, anon_sym_RBRACK, - STATE(1512), 1, + STATE(1542), 1, sym_comment, - STATE(1702), 1, + STATE(1710), 1, aux_sym__types_body_repeat1, - STATE(1763), 1, + STATE(1789), 1, aux_sym__command_list_body_repeat1, - STATE(2108), 1, + STATE(2138), 1, sym__val_number_decimal, - STATE(4629), 1, + STATE(4636), 1, sym__command_name, - STATE(4737), 1, + STATE(4851), 1, sym_cmd_identifier, - STATE(4738), 1, + STATE(4852), 1, sym_val_string, - STATE(4863), 1, + STATE(5233), 1, sym__command_list_body, - ACTIONS(3647), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3765), 2, + ACTIONS(3810), 2, anon_sym_export, anon_sym_in, - STATE(3594), 4, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3767), 23, + ACTIONS(3812), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -156796,698 +159089,235 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [19835] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - STATE(1513), 1, - sym_comment, - STATE(1533), 1, - aux_sym__repeat_newline, - ACTIONS(3761), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2758), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2756), 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, - [19899] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - ACTIONS(3779), 1, - anon_sym_DASH2, - ACTIONS(3785), 1, - anon_sym_PLUS2, - ACTIONS(3789), 1, - anon_sym_bit_DASHand2, - ACTIONS(3791), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3793), 1, - anon_sym_bit_DASHor2, - STATE(1514), 1, - sym_comment, - STATE(1535), 1, - aux_sym__repeat_newline, - ACTIONS(3759), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3783), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3775), 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(2756), 14, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [19985] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - ACTIONS(3779), 1, - anon_sym_DASH2, - ACTIONS(3785), 1, - anon_sym_PLUS2, - ACTIONS(3789), 1, - anon_sym_bit_DASHand2, - ACTIONS(3791), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3793), 1, - anon_sym_bit_DASHor2, - ACTIONS(3795), 1, - anon_sym_and2, - STATE(1515), 1, - sym_comment, - STATE(1537), 1, - aux_sym__repeat_newline, - ACTIONS(3759), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3783), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3775), 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(2756), 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, - [20073] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(3779), 1, - anon_sym_DASH2, - ACTIONS(3785), 1, - anon_sym_PLUS2, - ACTIONS(3789), 1, - anon_sym_bit_DASHand2, - ACTIONS(3791), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3793), 1, - anon_sym_bit_DASHor2, - ACTIONS(3795), 1, - anon_sym_and2, - ACTIONS(3797), 1, - anon_sym_xor2, - STATE(1516), 1, - sym_comment, - STATE(1539), 1, - aux_sym__repeat_newline, - ACTIONS(3759), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3783), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3775), 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(2756), 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, - [20163] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - ACTIONS(3779), 1, - anon_sym_DASH2, - ACTIONS(3785), 1, - anon_sym_PLUS2, - STATE(1517), 1, - sym_comment, - STATE(1541), 1, - aux_sym__repeat_newline, - ACTIONS(3759), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3775), 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(2756), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_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, - [20241] = 11, + [21483] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - ACTIONS(3779), 1, - anon_sym_DASH2, - ACTIONS(3785), 1, - anon_sym_PLUS2, - STATE(1518), 1, - sym_comment, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, STATE(1543), 1, - aux_sym__repeat_newline, - ACTIONS(2758), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3759), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2756), 35, - anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [20313] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - ACTIONS(3779), 1, - anon_sym_DASH2, - ACTIONS(3785), 1, - anon_sym_PLUS2, - STATE(1519), 1, - sym_comment, - STATE(1545), 1, - aux_sym__repeat_newline, - ACTIONS(3759), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3783), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3775), 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(2756), 17, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [20393] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - ACTIONS(3779), 1, - anon_sym_DASH2, - ACTIONS(3785), 1, - anon_sym_PLUS2, - ACTIONS(3789), 1, - anon_sym_bit_DASHand2, - STATE(1520), 1, sym_comment, - STATE(1547), 1, - aux_sym__repeat_newline, - ACTIONS(3759), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3783), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3775), 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(2756), 16, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [20475] = 21, + STATE(4411), 1, + sym_block, + STATE(4885), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21563] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3769), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3771), 1, - sym__newline, - ACTIONS(3799), 1, - anon_sym_RBRACK, - STATE(1521), 1, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1544), 1, sym_comment, - STATE(1702), 1, - aux_sym__types_body_repeat1, - STATE(1763), 1, - aux_sym__command_list_body_repeat1, - STATE(2108), 1, - sym__val_number_decimal, - STATE(4629), 1, - sym__command_name, - STATE(4737), 1, - sym_cmd_identifier, - STATE(4738), 1, - sym_val_string, - STATE(4929), 1, - sym__command_list_body, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3765), 2, - anon_sym_export, - anon_sym_in, - STATE(3594), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3767), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [20567] = 17, + STATE(4412), 1, + sym_block, + STATE(4886), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21643] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - ACTIONS(3779), 1, - anon_sym_DASH2, - ACTIONS(3785), 1, - anon_sym_PLUS2, - ACTIONS(3789), 1, - anon_sym_bit_DASHand2, - ACTIONS(3791), 1, - anon_sym_bit_DASHxor2, - STATE(1522), 1, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1545), 1, sym_comment, - STATE(1549), 1, - aux_sym__repeat_newline, - ACTIONS(3759), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3783), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3775), 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(2756), 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, - [20651] = 15, + STATE(4491), 1, + sym_block, + STATE(4907), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21723] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3803), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3809), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1523), 1, + STATE(1546), 1, sym_comment, - STATE(4586), 1, + STATE(4492), 1, sym_block, - STATE(4820), 1, + STATE(4909), 1, sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, + STATE(5053), 1, sym__one_type, - STATE(5123), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3807), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157519,108 +159349,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20731] = 18, + [21803] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3769), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3815), 1, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3817), 1, - anon_sym_DOLLAR, - ACTIONS(3819), 1, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1524), 1, + STATE(1547), 1, sym_comment, - STATE(2108), 1, - sym__val_number_decimal, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3765), 2, - anon_sym_export, - anon_sym_in, - STATE(4797), 2, - sym_cmd_identifier, - sym_val_string, - STATE(4806), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(3594), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3767), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [20817] = 15, + STATE(4505), 1, + sym_block, + STATE(4913), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21883] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, + ACTIONS(3774), 1, anon_sym_COLON, - ACTIONS(3803), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3809), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(1525), 1, + STATE(1548), 1, sym_comment, - STATE(4588), 1, + STATE(4208), 1, sym_block, - STATE(4825), 1, + STATE(4917), 1, sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, + STATE(5053), 1, sym__one_type, - STATE(5123), 1, + STATE(5063), 1, sym__multiple_types, - ACTIONS(3807), 2, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157652,41 +159479,4563 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20897] = 13, + [21963] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, - sym__newline, - ACTIONS(3779), 1, - anon_sym_DASH2, - ACTIONS(3785), 1, - anon_sym_PLUS2, - STATE(1526), 1, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1549), 1, sym_comment, - STATE(1566), 1, - aux_sym__repeat_newline, - ACTIONS(3759), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, + STATE(4591), 1, + sym_block, + STATE(4898), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22043] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1550), 1, + sym_comment, + STATE(4613), 1, + sym_block, + STATE(4905), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22123] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1551), 1, + sym_comment, + STATE(4262), 1, + sym_block, + STATE(4863), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22203] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1552), 1, + sym_comment, + STATE(4263), 1, + sym_block, + STATE(4864), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22283] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1553), 1, + sym_comment, + STATE(4268), 1, + sym_block, + STATE(4865), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22363] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1554), 1, + sym_comment, + STATE(4269), 1, + sym_block, + STATE(4866), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22443] = 18, + ACTIONS(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(3820), 1, + anon_sym_LBRACK, + ACTIONS(3822), 1, + anon_sym_DOLLAR, + ACTIONS(3824), 1, + anon_sym_LBRACE, + STATE(1555), 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, + [22529] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1556), 1, + sym_comment, + STATE(4288), 1, + sym_block, + STATE(4873), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22609] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1557), 1, + sym_comment, + STATE(4290), 1, + sym_block, + STATE(4875), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22689] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1558), 1, + sym_comment, + STATE(4327), 1, + sym_block, + STATE(4928), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22769] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1559), 1, + sym_comment, + STATE(4328), 1, + sym_block, + STATE(4931), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22849] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1560), 1, + sym_comment, + STATE(4342), 1, + sym_block, + STATE(4944), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22929] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1561), 1, + sym_comment, + STATE(4343), 1, + sym_block, + STATE(4945), 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, + [23009] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1562), 1, + sym_comment, + STATE(4518), 1, + sym_block, + STATE(4795), 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, + [23089] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1563), 1, + sym_comment, + STATE(4359), 1, + sym_block, + STATE(4796), 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, + [23169] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1564), 1, + sym_comment, + STATE(4360), 1, + sym_block, + STATE(4798), 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, + [23249] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1565), 1, + sym_comment, + STATE(4362), 1, + sym_block, + STATE(4799), 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, + [23329] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1566), 1, + sym_comment, + STATE(4372), 1, + sym_block, + STATE(4813), 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, + [23409] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(1567), 1, + sym_comment, + 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_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(2860), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + STATE(1568), 1, + sym_comment, + STATE(1582), 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(2754), 29, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23565] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2860), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + STATE(1569), 1, + sym_comment, + STATE(1584), 1, + aux_sym__repeat_newline, + ACTIONS(2756), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3834), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2754), 33, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23639] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2860), 1, + sym__newline, + STATE(1570), 1, + sym_comment, + STATE(1586), 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(2756), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2754), 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, + [23707] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2860), 1, + sym__newline, + STATE(1571), 1, + sym_comment, + STATE(1588), 1, + aux_sym__repeat_newline, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2756), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2754), 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, + [23771] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2860), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + ACTIONS(3840), 1, + anon_sym_bit_DASHand2, + ACTIONS(3842), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3844), 1, + anon_sym_bit_DASHor2, + STATE(1572), 1, + sym_comment, + STATE(1590), 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(2754), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [23857] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2860), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + ACTIONS(3840), 1, + anon_sym_bit_DASHand2, + ACTIONS(3842), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3844), 1, + anon_sym_bit_DASHor2, + ACTIONS(3846), 1, + anon_sym_and2, + STATE(1573), 1, + sym_comment, + STATE(1592), 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(2754), 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, + [23945] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + ACTIONS(3840), 1, + anon_sym_bit_DASHand2, + ACTIONS(3842), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3844), 1, + anon_sym_bit_DASHor2, + ACTIONS(3846), 1, + anon_sym_and2, + ACTIONS(3848), 1, + anon_sym_xor2, + STATE(1574), 1, + sym_comment, + STATE(1594), 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(2754), 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, + [24035] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2860), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + STATE(1575), 1, + sym_comment, + STATE(1596), 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(2754), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [24113] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2860), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + STATE(1576), 1, + sym_comment, + STATE(1598), 1, + aux_sym__repeat_newline, + ACTIONS(2756), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2754), 35, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [24185] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2860), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + STATE(1577), 1, + sym_comment, + STATE(1600), 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(2754), 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [24265] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2860), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + ACTIONS(3840), 1, + anon_sym_bit_DASHand2, + STATE(1578), 1, + sym_comment, + STATE(1602), 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(2754), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [24347] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2860), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + ACTIONS(3840), 1, + anon_sym_bit_DASHand2, + ACTIONS(3842), 1, + anon_sym_bit_DASHxor2, + STATE(1579), 1, + sym_comment, + STATE(1604), 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(2754), 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, + [24431] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3000), 1, + anon_sym_DQUOTE, + ACTIONS(3002), 1, + anon_sym_SQUOTE, + ACTIONS(3004), 1, + anon_sym_BQUOTE, + ACTIONS(3012), 1, + sym_raw_string_begin, + ACTIONS(3854), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3856), 1, + anon_sym_LBRACK, + ACTIONS(3858), 1, + anon_sym_DOLLAR, + ACTIONS(3860), 1, + anon_sym_LBRACE, + STATE(1580), 1, + sym_comment, + STATE(2139), 1, + sym__val_number_decimal, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3850), 2, + anon_sym_export, + anon_sym_in, + STATE(3448), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3366), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2568), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3852), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [24517] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2804), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + STATE(1581), 1, + sym_comment, + STATE(1619), 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(2720), 29, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [24593] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3864), 1, + anon_sym_DASH2, + ACTIONS(3874), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(1582), 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(2724), 30, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [24667] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2804), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + STATE(1583), 1, + sym_comment, + STATE(1620), 1, + aux_sym__repeat_newline, + ACTIONS(2722), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3834), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2720), 33, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [24741] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3864), 1, + anon_sym_DASH2, + ACTIONS(3874), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(1584), 1, + sym_comment, + ACTIONS(2726), 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(2724), 34, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + 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, + [24813] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2804), 1, + sym__newline, + STATE(1585), 1, + sym_comment, + STATE(1621), 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(2722), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2720), 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, + [24881] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(1586), 1, + sym_comment, + 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(2726), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2724), 37, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [24947] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2804), 1, + sym__newline, + STATE(1587), 1, + sym_comment, + STATE(1622), 1, + aux_sym__repeat_newline, + ACTIONS(3767), 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(2720), 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, + [25011] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(1588), 1, + sym_comment, + ACTIONS(3870), 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), 39, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [25073] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2804), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + ACTIONS(3840), 1, + anon_sym_bit_DASHand2, + ACTIONS(3842), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3844), 1, + anon_sym_bit_DASHor2, + STATE(1589), 1, + sym_comment, + STATE(1623), 1, + aux_sym__repeat_newline, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3830), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3838), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3836), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2720), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [25159] = 17, + 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, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(1590), 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), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [25243] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2804), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + ACTIONS(3840), 1, + anon_sym_bit_DASHand2, + ACTIONS(3842), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3844), 1, + anon_sym_bit_DASHor2, + ACTIONS(3846), 1, + anon_sym_and2, + STATE(1591), 1, + sym_comment, + STATE(1624), 1, + aux_sym__repeat_newline, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3830), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3838), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3836), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2720), 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, + [25331] = 18, + 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, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(1592), 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), 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, + [25417] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + ACTIONS(3840), 1, + anon_sym_bit_DASHand2, + ACTIONS(3842), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3844), 1, + anon_sym_bit_DASHor2, + ACTIONS(3846), 1, + anon_sym_and2, + ACTIONS(3848), 1, + anon_sym_xor2, + STATE(1593), 1, + sym_comment, + STATE(1625), 1, + aux_sym__repeat_newline, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3830), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3838), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3836), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2720), 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, + [25507] = 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, + STATE(1594), 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), 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, + [25595] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2804), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + STATE(1595), 1, + sym_comment, + STATE(1626), 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(2720), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [25673] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3864), 1, + anon_sym_DASH2, + ACTIONS(3874), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(1596), 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(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, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [25749] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2804), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + STATE(1597), 1, + sym_comment, + STATE(1627), 1, + aux_sym__repeat_newline, + ACTIONS(2722), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2720), 35, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [25821] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3864), 1, + anon_sym_DASH2, + ACTIONS(3874), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(1598), 1, + sym_comment, + ACTIONS(2726), 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(2724), 36, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [25891] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2804), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + STATE(1599), 1, + sym_comment, + STATE(1628), 1, + aux_sym__repeat_newline, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3830), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3838), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3836), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2720), 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [25971] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3864), 1, + anon_sym_DASH2, + ACTIONS(3874), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(1600), 1, + sym_comment, + ACTIONS(3862), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3866), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3870), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3872), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3876), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3868), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3880), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3878), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2724), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [26049] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2804), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + ACTIONS(3840), 1, + anon_sym_bit_DASHand2, + STATE(1601), 1, + sym_comment, + STATE(1629), 1, + aux_sym__repeat_newline, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3830), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3838), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3836), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2720), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [26131] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3864), 1, + anon_sym_DASH2, + ACTIONS(3874), 1, + anon_sym_PLUS2, + ACTIONS(3882), 1, + anon_sym_bit_DASHand2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(1602), 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), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [26211] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2804), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + ACTIONS(3840), 1, + anon_sym_bit_DASHand2, + ACTIONS(3842), 1, + anon_sym_bit_DASHxor2, + STATE(1603), 1, + sym_comment, + STATE(1630), 1, + aux_sym__repeat_newline, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3830), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3838), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3836), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2720), 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(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(2730), 29, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [26453] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2831), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + STATE(1606), 1, + sym_comment, + STATE(1634), 1, + aux_sym__repeat_newline, + ACTIONS(2732), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3834), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2730), 33, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [26527] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(3699), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3892), 1, + anon_sym_LBRACK, + ACTIONS(3894), 1, + anon_sym_DOLLAR, + ACTIONS(3896), 1, + anon_sym_LBRACE, + STATE(1607), 1, + sym_comment, + STATE(2013), 1, + sym__val_number_decimal, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3695), 2, + anon_sym_export, + anon_sym_in, + STATE(3346), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3256), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(502), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3697), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [26613] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2831), 1, + sym__newline, + STATE(1608), 1, + sym_comment, + STATE(1638), 1, + aux_sym__repeat_newline, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2732), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2730), 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, + [26677] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_LBRACK, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(1609), 1, + sym_comment, + STATE(4610), 1, + sym_block, + STATE(4862), 1, + sym_returns, + STATE(5053), 1, + sym__one_type, + STATE(5063), 1, + sym__multiple_types, + STATE(5066), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [26757] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2831), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + ACTIONS(3840), 1, + anon_sym_bit_DASHand2, + ACTIONS(3842), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3844), 1, + anon_sym_bit_DASHor2, + STATE(1610), 1, + sym_comment, + STATE(1640), 1, + aux_sym__repeat_newline, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3830), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3838), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3836), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2730), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [26843] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2831), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + ACTIONS(3840), 1, + anon_sym_bit_DASHand2, + ACTIONS(3842), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3844), 1, + anon_sym_bit_DASHor2, + ACTIONS(3846), 1, + anon_sym_and2, + STATE(1611), 1, + sym_comment, + STATE(1642), 1, + aux_sym__repeat_newline, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3830), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3838), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3836), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2730), 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, + [26931] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + ACTIONS(3840), 1, + anon_sym_bit_DASHand2, + ACTIONS(3842), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3844), 1, + anon_sym_bit_DASHor2, + ACTIONS(3846), 1, + anon_sym_and2, + ACTIONS(3848), 1, + anon_sym_xor2, + STATE(1612), 1, + sym_comment, + STATE(1644), 1, + aux_sym__repeat_newline, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3830), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3838), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3836), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2730), 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, + [27021] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2831), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + STATE(1613), 1, + sym_comment, + STATE(1646), 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(2730), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_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, + [27099] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2831), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + STATE(1614), 1, + sym_comment, + STATE(1648), 1, + aux_sym__repeat_newline, + ACTIONS(2732), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2730), 35, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [27171] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2831), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + STATE(1615), 1, + sym_comment, + STATE(1650), 1, + aux_sym__repeat_newline, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3830), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3838), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3836), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2730), 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [27251] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2831), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + ACTIONS(3840), 1, + anon_sym_bit_DASHand2, + STATE(1616), 1, + sym_comment, + STATE(1652), 1, + aux_sym__repeat_newline, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3830), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3838), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3836), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2730), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [27333] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2831), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + ACTIONS(3840), 1, + anon_sym_bit_DASHand2, + ACTIONS(3842), 1, + anon_sym_bit_DASHxor2, + STATE(1617), 1, + sym_comment, + STATE(1654), 1, + aux_sym__repeat_newline, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3826), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3834), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3830), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3838), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3836), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2730), 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, + [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(3864), 1, + anon_sym_DASH2, + ACTIONS(3874), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(1619), 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(2688), 29, + ACTIONS(2738), 30, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -157715,38 +164064,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20973] = 12, + [27583] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(507), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1527), 1, + STATE(1620), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(2740), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, + ACTIONS(2738), 34, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + 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, + [27655] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(1621), 1, + sym_comment, + 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(2740), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2738), 37, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2692), 30, + 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, + [27721] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(1622), 1, + sym_comment, + ACTIONS(3870), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2740), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2738), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -157760,6 +164213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -157770,43 +164224,314 @@ 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, - [21047] = 12, + [27783] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, + 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, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(1623), 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(2738), 15, sym__newline, - ACTIONS(3779), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [27867] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(1528), 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, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(1624), 1, sym_comment, - STATE(1567), 1, + 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(2738), 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, + [27953] = 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, + STATE(1625), 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(2738), 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, + [28041] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3864), 1, + anon_sym_DASH2, + ACTIONS(3874), 1, + anon_sym_PLUS2, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(2690), 2, + STATE(1626), 1, + sym_comment, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3759), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3787), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2688), 33, + 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(2738), 22, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [28117] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3864), 1, + anon_sym_DASH2, + ACTIONS(3874), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(1627), 1, + sym_comment, + ACTIONS(2740), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3866), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3870), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3872), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2738), 36, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -157836,36 +164561,420 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [21121] = 11, + [28187] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(507), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1529), 1, + STATE(1628), 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(2738), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [28265] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3864), 1, + anon_sym_DASH2, + ACTIONS(3874), 1, + anon_sym_PLUS2, + ACTIONS(3882), 1, + anon_sym_bit_DASHand2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(1629), 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(2738), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [28345] = 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(1630), 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(2738), 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, + [28427] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2941), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + STATE(1631), 1, + sym_comment, + STATE(1655), 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(2746), 29, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [28503] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3864), 1, + anon_sym_DASH2, + ACTIONS(3874), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(1632), 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(2750), 30, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [28577] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2941), 1, + sym__newline, + ACTIONS(3828), 1, + anon_sym_DASH2, + ACTIONS(3832), 1, + anon_sym_PLUS2, + STATE(1633), 1, + sym_comment, + STATE(1656), 1, + aux_sym__repeat_newline, + ACTIONS(2748), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3765), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3767), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3769), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3834), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2746), 33, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [28651] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3864), 1, + anon_sym_DASH2, + ACTIONS(3874), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(1634), 1, sym_comment, - ACTIONS(2694), 2, + ACTIONS(2752), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2692), 34, + ACTIONS(2750), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -157900,29 +165009,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [21193] = 9, + [28723] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, + ACTIONS(2941), 1, sym__newline, - STATE(1530), 1, + STATE(1635), 1, sym_comment, - STATE(1568), 1, + STATE(1657), 1, aux_sym__repeat_newline, - ACTIONS(3759), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2690), 3, + ACTIONS(2748), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2688), 36, + ACTIONS(2746), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -157959,27 +165068,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [21261] = 8, + [28791] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1531), 1, + STATE(1636), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2694), 3, + ACTIONS(2752), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2692), 37, + ACTIONS(2750), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -158017,25 +165126,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [21327] = 7, + [28857] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, + ACTIONS(2941), 1, sym__newline, - STATE(1532), 1, + STATE(1637), 1, sym_comment, - STATE(1569), 1, + STATE(1658), 1, aux_sym__repeat_newline, - ACTIONS(3761), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2690), 5, + ACTIONS(2748), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2688), 38, + ACTIONS(2746), 38, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -158074,23 +165183,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [21391] = 6, + [28921] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1533), 1, + STATE(1638), 1, sym_comment, - ACTIONS(3829), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2694), 5, + ACTIONS(2752), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2692), 39, + ACTIONS(2750), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -158130,51 +165239,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [21453] = 18, + [28983] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3779), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3789), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - ACTIONS(3791), 1, + ACTIONS(3842), 1, anon_sym_bit_DASHxor2, - ACTIONS(3793), 1, + ACTIONS(3844), 1, anon_sym_bit_DASHor2, - STATE(1534), 1, + STATE(1639), 1, sym_comment, - STATE(1570), 1, + STATE(1659), 1, aux_sym__repeat_newline, - ACTIONS(3759), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, + ACTIONS(3826), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3787), 2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3783), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3775), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -158183,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(2688), 14, + ACTIONS(2746), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -158198,49 +165307,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [21539] = 17, + [29069] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3841), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3843), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3845), 1, + ACTIONS(3886), 1, anon_sym_bit_DASHor2, - STATE(507), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1535), 1, + STATE(1640), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3839), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3837), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -158249,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(2692), 15, + ACTIONS(2750), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -158265,53 +165374,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [21623] = 19, + [29153] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3779), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3789), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - ACTIONS(3791), 1, + ACTIONS(3842), 1, anon_sym_bit_DASHxor2, - ACTIONS(3793), 1, + ACTIONS(3844), 1, anon_sym_bit_DASHor2, - ACTIONS(3795), 1, + ACTIONS(3846), 1, anon_sym_and2, - STATE(1536), 1, + STATE(1641), 1, sym_comment, - STATE(1571), 1, + STATE(1660), 1, aux_sym__repeat_newline, - ACTIONS(3759), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, + ACTIONS(3826), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3787), 2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3783), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3775), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -158320,7 +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(2688), 13, + ACTIONS(2746), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -158334,51 +165443,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [21711] = 18, + [29241] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3841), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3843), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3845), 1, + ACTIONS(3886), 1, anon_sym_bit_DASHor2, - ACTIONS(3847), 1, + ACTIONS(3888), 1, anon_sym_and2, - STATE(507), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1537), 1, + STATE(1642), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3839), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3837), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -158387,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(2692), 14, + ACTIONS(2750), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -158402,55 +165511,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [21797] = 20, + [29327] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3779), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3789), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - ACTIONS(3791), 1, + ACTIONS(3842), 1, anon_sym_bit_DASHxor2, - ACTIONS(3793), 1, + ACTIONS(3844), 1, anon_sym_bit_DASHor2, - ACTIONS(3795), 1, + ACTIONS(3846), 1, anon_sym_and2, - ACTIONS(3797), 1, + ACTIONS(3848), 1, anon_sym_xor2, - STATE(1538), 1, + STATE(1643), 1, sym_comment, - STATE(1572), 1, + STATE(1661), 1, aux_sym__repeat_newline, - ACTIONS(3759), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, + ACTIONS(3826), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3787), 2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3783), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3775), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -158459,7 +165568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2688), 12, + ACTIONS(2746), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -158472,53 +165581,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [21887] = 19, + [29417] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3841), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3843), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3845), 1, + ACTIONS(3886), 1, anon_sym_bit_DASHor2, - ACTIONS(3847), 1, + ACTIONS(3888), 1, anon_sym_and2, - ACTIONS(3849), 1, + ACTIONS(3890), 1, anon_sym_xor2, - STATE(507), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1539), 1, + STATE(1644), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3839), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3837), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -158527,7 +165636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2692), 13, + ACTIONS(2750), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -158541,40 +165650,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [21975] = 14, + [29505] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3779), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1540), 1, + STATE(1645), 1, sym_comment, - STATE(1573), 1, + STATE(1662), 1, aux_sym__repeat_newline, - ACTIONS(3759), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, + ACTIONS(3826), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3787), 2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3775), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -158583,7 +165692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2688), 21, + ACTIONS(2746), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -158605,38 +165714,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [22053] = 13, + [29583] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(507), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1541), 1, + STATE(1646), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3837), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -158645,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(2692), 22, + ACTIONS(2750), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -158668,32 +165777,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [22129] = 11, + [29659] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3779), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1542), 1, + STATE(1647), 1, sym_comment, - STATE(1574), 1, + STATE(1663), 1, aux_sym__repeat_newline, - ACTIONS(2690), 2, + ACTIONS(2748), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3759), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2688), 35, + ACTIONS(2746), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -158729,30 +165838,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [22201] = 10, + [29731] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(507), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1543), 1, + STATE(1648), 1, sym_comment, - ACTIONS(2694), 2, + ACTIONS(2752), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2692), 36, + ACTIONS(2750), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -158789,45 +165898,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [22271] = 15, + [29801] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3779), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - STATE(1544), 1, + STATE(1649), 1, sym_comment, - STATE(1575), 1, + STATE(1664), 1, aux_sym__repeat_newline, - ACTIONS(3759), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, + ACTIONS(3826), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3787), 2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3783), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3775), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -158836,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(2688), 17, + ACTIONS(2746), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -158854,43 +165963,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [22351] = 14, + [29881] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(507), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1545), 1, + STATE(1650), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3839), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3837), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -158899,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(2692), 18, + ACTIONS(2750), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -158918,47 +166027,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [22429] = 16, + [29959] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3779), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3789), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - STATE(1546), 1, + STATE(1651), 1, sym_comment, - STATE(1576), 1, + STATE(1665), 1, aux_sym__repeat_newline, - ACTIONS(3759), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, + ACTIONS(3826), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3787), 2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3783), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3775), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -158967,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(2688), 16, + ACTIONS(2746), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -158984,45 +166093,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [22511] = 15, + [30041] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3841), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - STATE(507), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1547), 1, + STATE(1652), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3839), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3837), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -159031,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(2692), 17, + ACTIONS(2750), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -159049,49 +166158,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [22591] = 17, + [30121] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, + ACTIONS(2941), 1, sym__newline, - ACTIONS(3779), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(3789), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - ACTIONS(3791), 1, + ACTIONS(3842), 1, anon_sym_bit_DASHxor2, - STATE(1548), 1, + STATE(1653), 1, sym_comment, - STATE(1577), 1, + STATE(1666), 1, aux_sym__repeat_newline, - ACTIONS(3759), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, + ACTIONS(3826), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3787), 2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3783), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3775), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -159100,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(2688), 15, + ACTIONS(2746), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159116,47 +166225,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [22675] = 16, + [30205] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3841), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3843), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - STATE(507), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(1549), 1, + STATE(1654), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(3862), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3839), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3837), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -159165,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(2692), 16, + ACTIONS(2750), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -159182,41 +166291,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [22757] = 13, + [30287] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, - sym__newline, - ACTIONS(3779), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(1550), 1, - sym_comment, - STATE(1579), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(3759), 2, + STATE(1655), 1, + sym_comment, + ACTIONS(3862), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2702), 29, + ACTIONS(2762), 30, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159245,36 +166353,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [22833] = 12, + [30361] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, - sym__newline, - ACTIONS(3779), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(1551), 1, - sym_comment, - STATE(1581), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, + STATE(1656), 1, + sym_comment, + ACTIONS(2764), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3759), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3787), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 33, + ACTIONS(2762), 34, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159307,30 +166414,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [22907] = 9, + [30433] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, - sym__newline, - STATE(1552), 1, - sym_comment, - STATE(1583), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(3759), 2, + STATE(1657), 1, + sym_comment, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2704), 3, + ACTIONS(2764), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2702), 36, + ACTIONS(2762), 37, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159366,26 +166472,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [22975] = 7, + [30499] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, - sym__newline, - STATE(1553), 1, - sym_comment, - STATE(1585), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(3761), 2, + STATE(1658), 1, + sym_comment, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2704), 5, + ACTIONS(2764), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2702), 38, + ACTIONS(2762), 39, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159423,51 +166528,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23039] = 18, + [30561] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, - sym__newline, - ACTIONS(3779), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3789), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3791), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3793), 1, + ACTIONS(3886), 1, anon_sym_bit_DASHor2, - STATE(1554), 1, - sym_comment, - STATE(1587), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(3759), 2, + STATE(1659), 1, + sym_comment, + ACTIONS(3862), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3783), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3775), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -159476,7 +166579,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 14, + ACTIONS(2762), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159491,53 +166595,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [23125] = 19, + [30645] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, - sym__newline, - ACTIONS(3779), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3789), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3791), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3793), 1, + ACTIONS(3886), 1, anon_sym_bit_DASHor2, - ACTIONS(3795), 1, + ACTIONS(3888), 1, anon_sym_and2, - STATE(1555), 1, - sym_comment, - STATE(1589), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(3759), 2, + STATE(1660), 1, + sym_comment, + ACTIONS(3862), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3783), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3775), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -159546,7 +166648,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 13, + ACTIONS(2762), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159560,55 +166663,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [23213] = 20, + [30731] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(3779), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3789), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3791), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(3793), 1, + ACTIONS(3886), 1, anon_sym_bit_DASHor2, - ACTIONS(3795), 1, + ACTIONS(3888), 1, anon_sym_and2, - ACTIONS(3797), 1, + ACTIONS(3890), 1, anon_sym_xor2, - STATE(1556), 1, - sym_comment, - STATE(1591), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(3759), 2, + STATE(1661), 1, + sym_comment, + ACTIONS(3862), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3783), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3775), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -159617,7 +166718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 12, + ACTIONS(2762), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159630,40 +166732,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [23303] = 14, + [30819] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, - sym__newline, - ACTIONS(3779), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(1557), 1, - sym_comment, - STATE(1593), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(3759), 2, + STATE(1662), 1, + sym_comment, + ACTIONS(3862), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3775), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -159672,7 +166772,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 21, + ACTIONS(2762), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159694,33 +166795,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23381] = 11, + [30895] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, - sym__newline, - ACTIONS(3779), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(1558), 1, - sym_comment, - STATE(1595), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, + STATE(1663), 1, + sym_comment, + ACTIONS(2764), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3759), 2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2702), 35, + ACTIONS(2762), 36, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159755,45 +166855,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23453] = 15, + [30965] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, - sym__newline, - ACTIONS(3779), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - STATE(1559), 1, - sym_comment, - STATE(1597), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(3759), 2, + STATE(1664), 1, + sym_comment, + ACTIONS(3862), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3783), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3775), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -159802,7 +166900,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 17, + ACTIONS(2762), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159820,47 +166919,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23533] = 16, + [31043] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, - sym__newline, - ACTIONS(3779), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3789), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - STATE(1560), 1, - sym_comment, - STATE(1599), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(3759), 2, + STATE(1665), 1, + sym_comment, + ACTIONS(3862), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3783), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3775), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -159869,7 +166966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 16, + ACTIONS(2762), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159886,114 +166984,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23615] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1561), 1, - sym_comment, - STATE(4459), 1, - sym_block, - STATE(4763), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23695] = 17, + [31123] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, - sym__newline, - ACTIONS(3779), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(3789), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(3791), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - STATE(1562), 1, - sym_comment, - STATE(1601), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(3759), 2, + STATE(1666), 1, + sym_comment, + ACTIONS(3862), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3783), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3775), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160002,7 +167033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 15, + ACTIONS(2762), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160018,233 +167050,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [23779] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1563), 1, - sym_comment, - STATE(4467), 1, - sym_block, - STATE(4764), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23859] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1564), 1, - sym_comment, - STATE(4451), 1, - sym_block, - STATE(4734), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23939] = 15, - ACTIONS(3), 1, + [31205] = 20, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1565), 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(4308), 1, - sym_block, - STATE(4779), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [24019] = 12, + 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(3823), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1566), 1, + STATE(1668), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2710), 30, + ACTIONS(2551), 31, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -160258,6 +167163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -160275,33 +167181,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24093] = 11, + [31367] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1567), 1, + STATE(1669), 1, sym_comment, - ACTIONS(2712), 2, + ACTIONS(2553), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2710), 34, + ACTIONS(2551), 35, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -160315,6 +167219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -160336,27 +167241,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24165] = 8, + [31437] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1568), 1, + STATE(1670), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2712), 3, + ACTIONS(2553), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2710), 37, + ACTIONS(2551), 38, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -160371,6 +167274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -160394,23 +167298,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24231] = 6, + [31501] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1569), 1, + STATE(1671), 1, sym_comment, - ACTIONS(3829), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2712), 5, + ACTIONS(2553), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2710), 39, + ACTIONS(2551), 40, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -160425,6 +167327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -160450,49 +167353,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24293] = 17, + [31561] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(3841), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHand2, - ACTIONS(3843), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHxor2, - ACTIONS(3845), 1, + ACTIONS(3930), 1, anon_sym_bit_DASHor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1570), 1, + STATE(1672), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3839), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3837), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160501,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(2710), 15, + ACTIONS(2551), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -160514,54 +167415,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [24377] = 18, + [31643] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(3841), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHand2, - ACTIONS(3843), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHxor2, - ACTIONS(3845), 1, + ACTIONS(3930), 1, anon_sym_bit_DASHor2, - ACTIONS(3847), 1, + ACTIONS(3932), 1, anon_sym_and2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1571), 1, + STATE(1673), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3839), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3837), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160570,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(2710), 14, + ACTIONS(2551), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -160583,55 +167483,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [24463] = 19, + [31727] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(3841), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHand2, - ACTIONS(3843), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHxor2, - ACTIONS(3845), 1, + ACTIONS(3930), 1, anon_sym_bit_DASHor2, - ACTIONS(3847), 1, + ACTIONS(3932), 1, anon_sym_and2, - ACTIONS(3849), 1, + ACTIONS(3934), 1, anon_sym_xor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1572), 1, + STATE(1674), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3839), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3837), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160640,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(2710), 13, + ACTIONS(2551), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -160653,39 +167552,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or2, - [24551] = 13, + [31813] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1573), 1, + STATE(1675), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3837), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160694,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(2710), 22, + ACTIONS(2551), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -160707,6 +167605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -160717,30 +167616,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24627] = 10, + [31887] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1574), 1, + STATE(1676), 1, sym_comment, - ACTIONS(2712), 2, + ACTIONS(2553), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2710), 36, + ACTIONS(2551), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -160754,6 +167651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -160777,43 +167675,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24697] = 14, + [31955] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1575), 1, + STATE(1677), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3839), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3837), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160822,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(2710), 18, + ACTIONS(2551), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -160835,51 +167731,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24775] = 15, + [32031] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(3841), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHand2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1576), 1, + STATE(1678), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3839), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3837), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160888,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(2710), 17, + ACTIONS(2551), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -160901,52 +167796,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24855] = 16, + [32109] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(3841), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHand2, - ACTIONS(3843), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHxor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1577), 1, + STATE(1679), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3839), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3837), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160955,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(2710), 16, + ACTIONS(2551), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -160968,176 +167862,771 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [24937] = 13, + [32189] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, - sym__newline, - ACTIONS(3779), 1, - anon_sym_DASH2, - ACTIONS(3785), 1, - anon_sym_PLUS2, - STATE(1578), 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(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(1606), 1, - aux_sym__repeat_newline, - ACTIONS(3759), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2718), 29, + STATE(2133), 1, + sym__val_number_decimal, + ACTIONS(3647), 2, + anon_sym_export, anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [25013] = 12, + 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(3823), 1, - anon_sym_DASH2, - ACTIONS(3833), 1, - anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1579), 1, + 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, - ACTIONS(3821), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3825), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3829), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2722), 30, + 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(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOLLAR, + ACTIONS(3944), 1, + anon_sym_LBRACE, + STATE(1683), 1, + sym_comment, + STATE(2138), 1, + sym__val_number_decimal, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3810), 2, + anon_sym_export, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [25087] = 12, + STATE(4804), 2, + sym_cmd_identifier, + sym_val_string, + STATE(4805), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(3665), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3812), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [32521] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, - sym__newline, - ACTIONS(3779), 1, - anon_sym_DASH2, - ACTIONS(3785), 1, - anon_sym_PLUS2, - STATE(1580), 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, - STATE(1607), 1, - aux_sym__repeat_newline, - ACTIONS(2720), 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(3759), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3787), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2718), 33, + anon_sym_PLUS2, + ACTIONS(1598), 30, anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -161156,49 +168645,48 @@ 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, - [25161] = 11, + [33164] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, - anon_sym_DASH2, - ACTIONS(3833), 1, - anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1581), 1, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1679), 1, + sym__unquoted_pattern, + STATE(1692), 1, sym_comment, - ACTIONS(2724), 2, + STATE(1967), 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(748), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1653), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3825), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3829), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2722), 34, + anon_sym_PLUS2, + ACTIONS(1651), 30, anon_sym_in, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -161217,33 +168705,116 @@ 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, - [25233] = 9, + [33235] = 19, + 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(2829), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3900), 1, + anon_sym_DASH_DASH, + STATE(1693), 1, + sym_comment, + STATE(1712), 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(3820), 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, + [33322] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, - sym__newline, - STATE(1582), 1, + ACTIONS(3962), 1, + anon_sym_DASH2, + ACTIONS(3972), 1, + anon_sym_PLUS2, + STATE(1694), 1, sym_comment, - STATE(1608), 1, - aux_sym__repeat_newline, - ACTIONS(3759), 2, + ACTIONS(3960), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2720), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2718), 36, + ACTIONS(3974), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3966), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2551), 30, + ts_builtin_sym_end, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161254,8 +168825,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_and2, anon_sym_xor2, anon_sym_or2, @@ -161266,40 +168835,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25301] = 8, + [33393] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1583), 1, + ACTIONS(3962), 1, + anon_sym_DASH2, + ACTIONS(3972), 1, + anon_sym_PLUS2, + STATE(1695), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(2553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2724), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2722), 37, + ACTIONS(3974), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2551), 34, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -161312,8 +168880,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_and2, anon_sym_xor2, anon_sym_or2, @@ -161332,31 +168898,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25367] = 7, + [33462] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, - sym__newline, - STATE(1584), 1, + STATE(1696), 1, sym_comment, - STATE(1609), 1, - aux_sym__repeat_newline, - ACTIONS(3761), 2, + ACTIONS(3964), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2720), 5, + ACTIONS(3970), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2553), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2718), 38, + ACTIONS(2551), 37, + ts_builtin_sym_end, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161367,7 +168933,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_and2, anon_sym_xor2, @@ -161387,30 +168952,27 @@ 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, - [25431] = 6, + [33525] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1585), 1, + STATE(1697), 1, sym_comment, - ACTIONS(3829), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2724), 5, + ACTIONS(2553), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2722), 39, + ACTIONS(2551), 39, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -161423,7 +168985,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_and2, anon_sym_xor2, @@ -161450,51 +169011,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25493] = 18, + [33584] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, - sym__newline, - ACTIONS(3779), 1, + ACTIONS(3962), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3972), 1, anon_sym_PLUS2, - ACTIONS(3789), 1, + ACTIONS(3980), 1, anon_sym_bit_DASHand2, - ACTIONS(3791), 1, + ACTIONS(3982), 1, anon_sym_bit_DASHxor2, - ACTIONS(3793), 1, + ACTIONS(3984), 1, anon_sym_bit_DASHor2, - STATE(1586), 1, + STATE(1698), 1, sym_comment, - STATE(1610), 1, - aux_sym__repeat_newline, - ACTIONS(3759), 2, + ACTIONS(3960), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, + ACTIONS(3974), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, + ACTIONS(3966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3783), 4, + ACTIONS(3978), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3775), 8, + ACTIONS(3976), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161503,7 +169060,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2718), 14, + ACTIONS(2551), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161514,53 +169073,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25579] = 17, + [33665] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3962), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3972), 1, anon_sym_PLUS2, - ACTIONS(3841), 1, + ACTIONS(3980), 1, anon_sym_bit_DASHand2, - ACTIONS(3843), 1, + ACTIONS(3982), 1, anon_sym_bit_DASHxor2, - ACTIONS(3845), 1, + ACTIONS(3984), 1, anon_sym_bit_DASHor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1587), 1, + ACTIONS(3986), 1, + anon_sym_and2, + STATE(1699), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(3960), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3974), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, + ACTIONS(3966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3839), 4, + ACTIONS(3978), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3837), 8, + ACTIONS(3976), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161569,7 +169127,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2722), 15, + ACTIONS(2551), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161581,57 +169140,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25663] = 19, + [33748] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, - sym__newline, - ACTIONS(3779), 1, + ACTIONS(3962), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3972), 1, anon_sym_PLUS2, - ACTIONS(3789), 1, + ACTIONS(3980), 1, anon_sym_bit_DASHand2, - ACTIONS(3791), 1, + ACTIONS(3982), 1, anon_sym_bit_DASHxor2, - ACTIONS(3793), 1, + ACTIONS(3984), 1, anon_sym_bit_DASHor2, - ACTIONS(3795), 1, + ACTIONS(3986), 1, anon_sym_and2, - STATE(1588), 1, + ACTIONS(3988), 1, + anon_sym_xor2, + STATE(1700), 1, sym_comment, - STATE(1611), 1, - aux_sym__repeat_newline, - ACTIONS(3759), 2, + ACTIONS(3960), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, + ACTIONS(3974), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, + ACTIONS(3966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3783), 4, + ACTIONS(3978), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3775), 8, + ACTIONS(3976), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161640,7 +169195,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2718), 13, + ACTIONS(2551), 13, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161651,54 +169208,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [25751] = 18, + [33833] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3962), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3972), 1, anon_sym_PLUS2, - ACTIONS(3841), 1, - anon_sym_bit_DASHand2, - ACTIONS(3843), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3845), 1, - anon_sym_bit_DASHor2, - ACTIONS(3847), 1, - anon_sym_and2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1589), 1, + STATE(1701), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(3960), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3974), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, + ACTIONS(3966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3839), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3837), 8, + ACTIONS(3976), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161707,7 +169247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2722), 14, + ACTIONS(2551), 22, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161719,67 +169260,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25837] = 20, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33906] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(3779), 1, + ACTIONS(3962), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3972), 1, anon_sym_PLUS2, - ACTIONS(3789), 1, - anon_sym_bit_DASHand2, - ACTIONS(3791), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3793), 1, - anon_sym_bit_DASHor2, - ACTIONS(3795), 1, - anon_sym_and2, - ACTIONS(3797), 1, - anon_sym_xor2, - STATE(1590), 1, + STATE(1702), 1, sym_comment, - STATE(1612), 1, - aux_sym__repeat_newline, - ACTIONS(3759), 2, + ACTIONS(2553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3783), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3775), 8, + ACTIONS(2551), 36, + ts_builtin_sym_end, 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(2718), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161790,55 +169305,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [25927] = 19, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [33973] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3962), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3972), 1, anon_sym_PLUS2, - ACTIONS(3841), 1, - anon_sym_bit_DASHand2, - ACTIONS(3843), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3845), 1, - anon_sym_bit_DASHor2, - ACTIONS(3847), 1, - anon_sym_and2, - ACTIONS(3849), 1, - anon_sym_xor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1591), 1, + STATE(1703), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(3960), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3974), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, + ACTIONS(3966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3839), 4, + ACTIONS(3978), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3837), 8, + ACTIONS(3976), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161847,7 +169371,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2722), 13, + ACTIONS(2551), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161859,42 +169384,112 @@ static const uint16_t ts_small_parse_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, - [26015] = 14, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [34048] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3990), 1, sym__newline, - ACTIONS(3779), 1, + 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(3962), 1, anon_sym_DASH2, - ACTIONS(3785), 1, + ACTIONS(3972), 1, anon_sym_PLUS2, - STATE(1592), 1, + ACTIONS(3980), 1, + anon_sym_bit_DASHand2, + STATE(1705), 1, sym_comment, - STATE(1613), 1, - aux_sym__repeat_newline, - ACTIONS(3759), 2, + ACTIONS(3960), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3761), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, + ACTIONS(3974), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, + ACTIONS(3966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3775), 8, + ACTIONS(3978), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3976), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161903,7 +169498,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2718), 21, + ACTIONS(2551), 17, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161914,49 +169511,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_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, - [26093] = 13, + [34202] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(3962), 1, anon_sym_DASH2, - ACTIONS(3833), 1, + ACTIONS(3972), 1, anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1593), 1, + ACTIONS(3980), 1, + anon_sym_bit_DASHand2, + ACTIONS(3982), 1, + anon_sym_bit_DASHxor2, + STATE(1706), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(3960), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, + ACTIONS(3974), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, + ACTIONS(3966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3837), 8, + ACTIONS(3978), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3976), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161965,7 +169563,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2722), 22, + ACTIONS(2551), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161977,55 +169576,471 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, + [34281] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1707), 1, + sym_comment, + ACTIONS(2583), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(3771), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + 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(2581), 29, + anon_sym_in, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26169] = 11, + [34340] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, - sym__newline, - ACTIONS(3779), 1, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(3994), 1, + anon_sym_DOT, + STATE(1708), 1, + sym_comment, + STATE(1908), 1, + sym__immediate_decimal, + ACTIONS(3996), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3998), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1972), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1602), 6, + anon_sym_GT2, anon_sym_DASH2, - ACTIONS(3785), 1, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - STATE(1594), 1, + ACTIONS(1598), 29, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [34413] = 19, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + 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, + ACTIONS(3900), 1, + anon_sym_DASH_DASH, + STATE(1709), 1, sym_comment, - STATE(1614), 1, - aux_sym__repeat_newline, - ACTIONS(2720), 2, + 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, + [34500] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3814), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3816), 1, + sym__newline, + STATE(1710), 1, + sym_comment, + STATE(1770), 1, + aux_sym__command_list_body_repeat1, + STATE(2138), 1, + sym__val_number_decimal, + STATE(2159), 1, + aux_sym__types_body_repeat1, + STATE(4633), 1, + sym__command_name, + STATE(4851), 1, + sym_cmd_identifier, + STATE(4852), 1, + sym_val_string, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3810), 2, + anon_sym_export, + anon_sym_in, + STATE(3665), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3812), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [34586] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4000), 1, + anon_sym_DASH_DASH, + STATE(1711), 1, + sym_comment, + STATE(2126), 1, + aux_sym_decl_def_repeat1, + STATE(2133), 1, + sym__val_number_decimal, + STATE(2168), 1, + sym_long_flag, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(3789), 1, + sym__command_name, + ACTIONS(3647), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2266), 4, + 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, + [34672] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4000), 1, + anon_sym_DASH_DASH, + STATE(1712), 1, + sym_comment, + STATE(2126), 1, + aux_sym_decl_def_repeat1, + STATE(2133), 1, + sym__val_number_decimal, + STATE(2168), 1, + sym_long_flag, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(3878), 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, + [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_LT2, - ACTIONS(3759), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3761), 2, + 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, - ACTIONS(3763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2718), 35, + 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, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -162044,48 +170059,303 @@ 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, - [26241] = 10, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [34878] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4000), 1, + anon_sym_DASH_DASH, + STATE(1715), 1, + sym_comment, + STATE(1716), 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(3884), 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, + [34964] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4000), 1, + anon_sym_DASH_DASH, + STATE(1716), 1, + sym_comment, + STATE(2126), 1, + aux_sym_decl_def_repeat1, + STATE(2133), 1, + sym__val_number_decimal, + STATE(2168), 1, + sym_long_flag, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(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(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, + [35050] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1606), 1, + anon_sym_DOT, + STATE(1717), 1, + sym_comment, + STATE(1959), 1, + sym__immediate_decimal, + ACTIONS(3996), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3998), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1972), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1602), 6, + anon_sym_GT2, anon_sym_DASH2, - ACTIONS(3833), 1, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1595), 1, + ACTIONS(1598), 29, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [35120] = 11, + 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(1718), 1, sym_comment, - ACTIONS(2724), 2, + 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_LT2, - ACTIONS(3825), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3829), 2, + anon_sym_PLUS2, + ACTIONS(1598), 29, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2722), 36, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [35190] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1679), 1, + sym__unquoted_pattern, + STATE(1719), 1, + sym_comment, + STATE(2001), 1, + sym__immediate_decimal, + ACTIONS(4010), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4012), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(748), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1653), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1651), 29, + anon_sym_in, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -162104,51 +170374,50 @@ 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, - [26311] = 15, + [35260] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, - sym__newline, - ACTIONS(3779), 1, - anon_sym_DASH2, - ACTIONS(3785), 1, - anon_sym_PLUS2, - STATE(1596), 1, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1643), 1, + anon_sym_DOT, + STATE(1720), 1, sym_comment, - STATE(1615), 1, - aux_sym__repeat_newline, - ACTIONS(3759), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, + STATE(1996), 1, + sym__immediate_decimal, + ACTIONS(3996), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3998), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1970), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1641), 6, anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(3787), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3783), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3775), 8, + 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, @@ -162156,194 +170425,449 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2718), 17, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26391] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3823), 1, - anon_sym_DASH2, - ACTIONS(3833), 1, - anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1597), 1, - sym_comment, - ACTIONS(3821), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3825), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3829), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3837), 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(2722), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26469] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2837), 1, - sym__newline, - ACTIONS(3779), 1, - anon_sym_DASH2, - ACTIONS(3785), 1, - anon_sym_PLUS2, - ACTIONS(3789), 1, - anon_sym_bit_DASHand2, - STATE(1598), 1, - sym_comment, - STATE(1616), 1, - aux_sym__repeat_newline, - ACTIONS(3759), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3761), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3783), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3775), 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(2718), 16, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26551] = 15, + [35330] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, - anon_sym_DASH2, - ACTIONS(3833), 1, - anon_sym_PLUS2, - ACTIONS(3841), 1, - anon_sym_bit_DASHand2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1599), 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, + ACTIONS(4000), 1, + anon_sym_DASH_DASH, + STATE(1721), 1, + sym_comment, + STATE(2126), 1, + aux_sym_decl_def_repeat1, + STATE(2133), 1, + sym__val_number_decimal, + STATE(2168), 1, + sym_long_flag, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(3855), 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, + [35416] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4000), 1, + anon_sym_DASH_DASH, + STATE(1722), 1, + sym_comment, + STATE(1724), 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(3858), 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, + [35502] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4000), 1, + anon_sym_DASH_DASH, + STATE(1723), 1, + sym_comment, + STATE(2126), 1, + aux_sym_decl_def_repeat1, + STATE(2133), 1, + sym__val_number_decimal, + STATE(2168), 1, + sym_long_flag, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(3863), 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, + [35588] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4000), 1, + anon_sym_DASH_DASH, + STATE(1724), 1, + sym_comment, + STATE(2126), 1, + aux_sym_decl_def_repeat1, + STATE(2133), 1, + sym__val_number_decimal, + STATE(2168), 1, + sym_long_flag, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(3875), 1, + sym__command_name, + ACTIONS(3647), 2, + 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, + [35674] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4000), 1, + anon_sym_DASH_DASH, + STATE(1711), 1, + aux_sym_decl_def_repeat1, + STATE(1725), 1, + sym_comment, + STATE(2133), 1, + sym__val_number_decimal, + STATE(2168), 1, + sym_long_flag, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(3803), 1, + sym__command_name, + ACTIONS(3647), 2, + 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, + [35760] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4000), 1, + anon_sym_DASH_DASH, + STATE(1721), 1, + aux_sym_decl_def_repeat1, + STATE(1726), 1, + sym_comment, + STATE(2133), 1, + sym__val_number_decimal, + STATE(2168), 1, + sym_long_flag, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(3833), 1, + sym__command_name, + ACTIONS(3647), 2, + 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, + [35846] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4014), 1, + aux_sym__immediate_decimal_token5, + STATE(1727), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(771), 8, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3825), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3829), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3839), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3837), 8, + 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, @@ -162351,191 +170875,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2722), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26631] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2837), 1, - sym__newline, - ACTIONS(3779), 1, - anon_sym_DASH2, - ACTIONS(3785), 1, - anon_sym_PLUS2, - ACTIONS(3789), 1, - anon_sym_bit_DASHand2, - ACTIONS(3791), 1, - anon_sym_bit_DASHxor2, - STATE(1600), 1, - sym_comment, - STATE(1617), 1, - aux_sym__repeat_newline, - ACTIONS(3759), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3783), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3775), 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(2718), 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, - [26715] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3823), 1, - anon_sym_DASH2, - ACTIONS(3833), 1, - anon_sym_PLUS2, - ACTIONS(3841), 1, - anon_sym_bit_DASHand2, - ACTIONS(3843), 1, - anon_sym_bit_DASHxor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1601), 1, - sym_comment, - ACTIONS(3821), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3825), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3829), 2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3839), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3837), 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(2722), 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_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26797] = 15, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [35903] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, + ACTIONS(3990), 1, + sym__newline, + ACTIONS(4020), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(4022), 1, anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1602), 1, + STATE(1728), 1, sym_comment, - STATE(4309), 1, - sym_block, - STATE(4780), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, + STATE(1750), 1, + aux_sym__types_body_repeat1, + STATE(1857), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4533), 1, + sym__all_type, + STATE(5115), 1, + sym__composite_argument_body, + ACTIONS(4018), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(4673), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(4016), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162567,181 +170955,313 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [26877] = 15, + [35974] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, + ACTIONS(4024), 1, + anon_sym_DOT2, + STATE(1729), 1, + sym_comment, + STATE(1777), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1866), 1, + sym_path, + STATE(1899), 1, + sym_cell_path, + ACTIONS(1659), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1657), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1603), 1, + 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, - STATE(4311), 1, - sym_block, - STATE(4783), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [26957] = 15, + 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, + ACTIONS(1598), 29, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [36104] = 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(1731), 1, + sym_comment, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(5011), 1, + sym__command_name, + ACTIONS(3902), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3904), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3647), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [36185] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1604), 1, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + STATE(930), 1, + sym__immediate_decimal, + STATE(1732), 1, sym_comment, - STATE(4312), 1, - sym_block, - STATE(4784), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [27037] = 18, + ACTIONS(4010), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4012), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(748), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1653), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1651), 29, + 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, + [36252] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3016), 1, + ACTIONS(4024), 1, + anon_sym_DOT2, + STATE(1733), 1, + sym_comment, + STATE(1777), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1866), 1, + sym_path, + STATE(1880), 1, + sym_cell_path, + ACTIONS(1647), 3, + 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, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(3018), 1, anon_sym_SQUOTE, - ACTIONS(3020), 1, anon_sym_BQUOTE, - ACTIONS(3028), 1, - sym_raw_string_begin, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3853), 1, - anon_sym_LBRACK, - ACTIONS(3855), 1, - anon_sym_DOLLAR, - ACTIONS(3857), 1, - anon_sym_LBRACE, - STATE(1605), 1, + [36315] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4024), 1, + anon_sym_DOT2, + STATE(1734), 1, sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - ACTIONS(3635), 2, + 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(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(3163), 2, - sym_cmd_identifier, - sym_val_string, - STATE(3210), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2576), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 23, + ACTIONS(1444), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -162765,164 +171285,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [27123] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3823), 1, - anon_sym_DASH2, - ACTIONS(3833), 1, - anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1606), 1, - sym_comment, - ACTIONS(3821), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3825), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3829), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2746), 30, - anon_sym_in, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [27197] = 11, + 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(3823), 1, - anon_sym_DASH2, - ACTIONS(3833), 1, - anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1607), 1, + ACTIONS(4026), 1, + anon_sym_QMARK2, + ACTIONS(4028), 1, + anon_sym_BANG, + STATE(1735), 1, sym_comment, - ACTIONS(2748), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3825), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3829), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2746), 34, + 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_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_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, - [27269] = 8, + 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, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1608), 1, + ACTIONS(4004), 1, + aux_sym__immediate_decimal_token5, + STATE(1736), 1, sym_comment, - ACTIONS(3825), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3829), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2748), 3, + ACTIONS(747), 8, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2746), 37, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 35, 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_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -162941,42 +171391,109 @@ 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, - [27335] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [36496] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1609), 1, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(3990), 1, + sym__newline, + STATE(1737), 1, sym_comment, - ACTIONS(3829), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2748), 5, + STATE(1813), 1, + aux_sym__types_body_repeat3, + STATE(1951), 1, + aux_sym__types_body_repeat1, + STATE(4548), 1, + sym__one_type, + STATE(5109), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [36567] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(1734), 1, + sym__unquoted_pattern, + ACTIONS(4030), 1, + anon_sym_DOT_DOT2, + ACTIONS(4034), 1, + sym_filesize_unit, + ACTIONS(4036), 1, + sym_duration_unit, + STATE(1738), 1, + sym_comment, + STATE(4801), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4032), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2746), 39, + ACTIONS(886), 31, 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_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -162995,6 +171512,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, @@ -163002,119 +171521,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27397] = 17, - ACTIONS(3), 1, + [36636] = 17, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3823), 1, - anon_sym_DASH2, - ACTIONS(3833), 1, - anon_sym_PLUS2, - ACTIONS(3841), 1, - anon_sym_bit_DASHand2, - ACTIONS(3843), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3845), 1, - anon_sym_bit_DASHor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1610), 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, + STATE(1739), 1, sym_comment, - ACTIONS(3821), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3825), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3829), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3839), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3837), 8, + 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_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2746), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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, - [27481] = 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, + [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, + 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(3823), 1, - anon_sym_DASH2, - ACTIONS(3833), 1, - anon_sym_PLUS2, - ACTIONS(3841), 1, - anon_sym_bit_DASHand2, - ACTIONS(3843), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3845), 1, - anon_sym_bit_DASHor2, - ACTIONS(3847), 1, - anon_sym_and2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1611), 1, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + STATE(729), 1, + sym__immediate_decimal, + STATE(1741), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(4010), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4012), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(728), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1641), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3825), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3829), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3839), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3837), 8, + 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, @@ -163122,190 +171689,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2746), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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, - [27567] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3823), 1, - anon_sym_DASH2, - ACTIONS(3833), 1, - anon_sym_PLUS2, - ACTIONS(3841), 1, - anon_sym_bit_DASHand2, - ACTIONS(3843), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3845), 1, - anon_sym_bit_DASHor2, - ACTIONS(3847), 1, - anon_sym_and2, - ACTIONS(3849), 1, - anon_sym_xor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1612), 1, - sym_comment, - ACTIONS(3821), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3825), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3829), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3839), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3837), 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), 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, - [27655] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3823), 1, - anon_sym_DASH2, - ACTIONS(3833), 1, - anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1613), 1, - sym_comment, - ACTIONS(3821), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3825), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3829), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3837), 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), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27731] = 10, + [36865] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, - anon_sym_DASH2, - ACTIONS(3833), 1, - anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1614), 1, + ACTIONS(4038), 1, + anon_sym_DOT, + ACTIONS(4040), 1, + aux_sym__immediate_decimal_token5, + STATE(1742), 1, sym_comment, - ACTIONS(2748), 2, + ACTIONS(747), 8, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3825), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3829), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2746), 36, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 34, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163324,496 +171746,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [27801] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3823), 1, - anon_sym_DASH2, - ACTIONS(3833), 1, - anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1615), 1, - sym_comment, - ACTIONS(3821), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3825), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3829), 2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3839), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3837), 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), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27879] = 15, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [36924] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3823), 1, - anon_sym_DASH2, - ACTIONS(3833), 1, - anon_sym_PLUS2, - ACTIONS(3841), 1, - anon_sym_bit_DASHand2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1616), 1, + ACTIONS(4042), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4044), 1, + aux_sym__immediate_decimal_token5, + STATE(1743), 1, sym_comment, - ACTIONS(3821), 2, + ACTIONS(739), 8, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3825), 2, anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3829), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3839), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3837), 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), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [27959] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3823), 1, - anon_sym_DASH2, - ACTIONS(3833), 1, - anon_sym_PLUS2, - ACTIONS(3841), 1, - anon_sym_bit_DASHand2, - ACTIONS(3843), 1, - anon_sym_bit_DASHxor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(1617), 1, - sym_comment, - ACTIONS(3821), 2, - anon_sym_GT2, anon_sym_LT2, - ACTIONS(3825), 2, - anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3829), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3839), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3837), 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), 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, - [28041] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1618), 1, - sym_comment, - STATE(4323), 1, - sym_block, - STATE(4800), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [28121] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1619), 1, - sym_comment, - STATE(4324), 1, - sym_block, - STATE(4801), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [28201] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1620), 1, - sym_comment, - STATE(4264), 1, - sym_block, - STATE(4707), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [28281] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1621), 1, - sym_comment, - STATE(4452), 1, - sym_block, - STATE(4741), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [28361] = 5, - ACTIONS(103), 1, + 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(2950), 1, - aux_sym_cmd_identifier_token2, - STATE(1622), 1, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + STATE(743), 1, + sym__immediate_decimal, + STATE(1744), 1, sym_comment, - ACTIONS(884), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + 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(742), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1669), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1667), 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, - ACTIONS(858), 29, - anon_sym_in, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [37050] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + STATE(745), 1, + sym__immediate_decimal, + STATE(1745), 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(744), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1683), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1681), 29, + anon_sym_in, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163824,120 +171909,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_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, - [28421] = 15, + [37117] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1623), 1, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + STATE(747), 1, + sym__immediate_decimal, + STATE(1746), 1, sym_comment, - STATE(4598), 1, - sym_block, - STATE(4832), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [28501] = 15, + 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(746), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1665), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1663), 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, + [37184] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, + ACTIONS(3990), 1, + sym__newline, + ACTIONS(4020), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(4022), 1, anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1624), 1, + STATE(1747), 1, sym_comment, - STATE(4600), 1, - sym_block, - STATE(4835), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, + STATE(1750), 1, + aux_sym__types_body_repeat1, + STATE(1857), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4533), 1, + sym__all_type, + STATE(5097), 1, + sym__composite_argument_body, + ACTIONS(4018), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(4673), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(4016), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -163969,40 +172042,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [28581] = 15, + [37255] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, + ACTIONS(3990), 1, + sym__newline, + ACTIONS(4020), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(4022), 1, anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1625), 1, + STATE(1748), 1, sym_comment, - STATE(4469), 1, - sym_block, - STATE(4766), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, + STATE(1750), 1, + aux_sym__types_body_repeat1, + STATE(1857), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4533), 1, + sym__all_type, + STATE(4984), 1, + sym__composite_argument_body, + ACTIONS(4018), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(4673), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(4016), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -164034,40 +172101,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [28661] = 15, + [37326] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, + ACTIONS(3990), 1, + sym__newline, + ACTIONS(4020), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(4022), 1, anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1626), 1, + STATE(1749), 1, sym_comment, - STATE(4471), 1, - sym_block, - STATE(4768), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, + 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(4316), 4, + STATE(4673), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(4016), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -164099,40 +172160,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [28741] = 15, + [37397] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, + ACTIONS(3990), 1, + sym__newline, + ACTIONS(4020), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(4022), 1, anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1627), 1, + STATE(1750), 1, sym_comment, - STATE(4579), 1, - sym_block, - STATE(4716), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, + 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(4316), 4, + STATE(4673), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(4016), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -164164,105 +172217,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [28821] = 15, + [37465] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1628), 1, + ACTIONS(4046), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4048), 1, + aux_sym__immediate_decimal_token5, + STATE(1751), 1, sym_comment, - STATE(4615), 1, - sym_block, - STATE(4694), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [28901] = 15, + ACTIONS(739), 7, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(741), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_filesize_unit, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [37523] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + STATE(1752), 1, + sym_comment, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(4408), 1, + sym__command_name, + ACTIONS(3902), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3904), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3647), 25, + 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, + [37601] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1629), 1, + ACTIONS(4050), 1, + anon_sym_GT2, + ACTIONS(4052), 1, + anon_sym_AT2, + STATE(1753), 1, sym_comment, - STATE(4644), 1, - sym_block, - STATE(4751), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, + STATE(4553), 1, + sym__all_type, + STATE(5093), 1, + sym_param_completer, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(4869), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -164294,365 +172388,510 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [28981] = 15, + [37669] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1630), 1, + STATE(1754), 1, sym_comment, - STATE(4343), 1, - sym_block, - STATE(4690), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [29061] = 15, + ACTIONS(1519), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1521), 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, + 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, + [37723] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, + STATE(1755), 1, + sym_comment, + ACTIONS(1523), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1525), 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, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1631), 1, + 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, + [37777] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1756), 1, sym_comment, - STATE(4344), 1, - sym_block, - STATE(4691), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [29141] = 15, + 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, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_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, + anon_sym_QMARK2, + anon_sym_BANG, + [37831] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, + STATE(1757), 1, + sym_comment, + ACTIONS(1531), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1533), 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, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1632), 1, + 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, + [37885] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1758), 1, sym_comment, - STATE(4357), 1, - sym_block, - STATE(4695), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [29221] = 15, + ACTIONS(1535), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1537), 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, + 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, + [37939] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, + STATE(1759), 1, + sym_comment, + ACTIONS(1539), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1541), 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, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1633), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [37993] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + 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, - STATE(4358), 1, - sym_block, - STATE(4696), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [29301] = 15, + 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(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, + 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, + ACTIONS(1657), 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(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1634), 1, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [38133] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + STATE(1762), 1, sym_comment, - STATE(4381), 1, - sym_block, - STATE(4709), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [29381] = 15, + 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(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1635), 1, + ACTIONS(4052), 1, + anon_sym_AT2, + ACTIONS(4083), 1, + anon_sym_GT2, + STATE(1763), 1, sym_comment, - STATE(4551), 1, - sym_block, - STATE(4697), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, + STATE(4690), 1, + sym__all_type, + STATE(4983), 1, + sym_param_completer, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(4869), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -164684,214 +172923,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [29461] = 11, + [38279] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3861), 1, - anon_sym_DASH2, - ACTIONS(3871), 1, - anon_sym_PLUS2, - STATE(1636), 1, + ACTIONS(4081), 1, + anon_sym_DOT2, + STATE(1764), 1, sym_comment, - ACTIONS(3859), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3863), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3867), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3869), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3873), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3865), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2578), 31, + 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, + ACTIONS(1645), 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_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_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_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [29533] = 10, - ACTIONS(3), 1, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [38341] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3861), 1, - anon_sym_DASH2, - ACTIONS(3871), 1, - anon_sym_PLUS2, - STATE(1637), 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(2580), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3863), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3867), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3869), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3873), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2578), 35, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(5011), 1, + sym__command_name, + ACTIONS(3902), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3904), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3647), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, 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_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [29603] = 7, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [38419] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1638), 1, + ACTIONS(4085), 1, + anon_sym_QMARK2, + ACTIONS(4087), 1, + anon_sym_BANG, + STATE(1766), 1, sym_comment, - ACTIONS(3863), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3867), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3869), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2580), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2578), 38, + STATE(1896), 1, + sym__path_suffix, + ACTIONS(1456), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + anon_sym_DOT2, + ACTIONS(1458), 36, + 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_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [29667] = 5, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [38479] = 16, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3699), 1, + aux_sym_cmd_identifier_token1, + STATE(1767), 1, + sym_comment, + 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, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_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, + [38557] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1639), 1, + ACTIONS(4040), 1, + aux_sym__immediate_decimal_token5, + STATE(1768), 1, sym_comment, - ACTIONS(3867), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2580), 5, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2578), 40, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 34, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -164910,6 +173192,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, @@ -164917,364 +173202,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29727] = 16, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [38613] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3861), 1, - anon_sym_DASH2, - ACTIONS(3871), 1, - anon_sym_PLUS2, - ACTIONS(3879), 1, - anon_sym_bit_DASHand2, - ACTIONS(3881), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3883), 1, - anon_sym_bit_DASHor2, - STATE(1640), 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(1769), 1, sym_comment, - ACTIONS(3859), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3863), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3867), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3869), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3873), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3865), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3877), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3875), 8, + 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, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_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_not_DASHin2, - anon_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(2578), 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, - [29809] = 17, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [38691] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3861), 1, - anon_sym_DASH2, - ACTIONS(3871), 1, - anon_sym_PLUS2, - ACTIONS(3879), 1, - anon_sym_bit_DASHand2, - ACTIONS(3881), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3883), 1, - anon_sym_bit_DASHor2, - ACTIONS(3885), 1, - anon_sym_and2, - STATE(1641), 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, + STATE(1760), 1, + aux_sym__command_list_body_repeat1, + STATE(1770), 1, sym_comment, - ACTIONS(3859), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3863), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3867), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3869), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3873), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3865), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3877), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3875), 8, + STATE(2138), 1, + sym__val_number_decimal, + STATE(4627), 1, + sym__command_name, + STATE(4851), 1, + sym_cmd_identifier, + STATE(4852), 1, + sym_val_string, + ACTIONS(3659), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3661), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3810), 2, + anon_sym_export, 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(2578), 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_xor2, - anon_sym_or2, - [29893] = 18, + STATE(3665), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3812), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [38771] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3861), 1, - anon_sym_DASH2, - ACTIONS(3871), 1, - anon_sym_PLUS2, - ACTIONS(3879), 1, - anon_sym_bit_DASHand2, - ACTIONS(3881), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3883), 1, - anon_sym_bit_DASHor2, - ACTIONS(3885), 1, - anon_sym_and2, - ACTIONS(3887), 1, - anon_sym_xor2, - STATE(1642), 1, + ACTIONS(4081), 1, + anon_sym_DOT2, + STATE(1771), 1, sym_comment, - ACTIONS(3859), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3863), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3867), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3869), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3873), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3865), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3877), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3875), 8, + 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_not_DASHin2, - anon_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(2578), 14, + ACTIONS(1444), 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_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_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, - [29979] = 12, - ACTIONS(3), 1, + 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, + [38833] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3861), 1, - anon_sym_DASH2, - ACTIONS(3871), 1, - anon_sym_PLUS2, - STATE(1643), 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(1772), 1, sym_comment, - ACTIONS(3859), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3863), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3867), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3869), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3873), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3865), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3875), 8, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(5317), 1, + sym__command_name, + ACTIONS(3902), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3904), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3647), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_in, - anon_sym_not_DASHin2, - anon_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(2578), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_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, - [30053] = 9, - ACTIONS(3), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [38911] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3861), 1, - anon_sym_DASH2, - ACTIONS(3871), 1, - anon_sym_PLUS2, - STATE(1644), 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(1773), 1, sym_comment, - ACTIONS(2580), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3863), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3867), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3869), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2578), 37, + 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, + 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, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_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_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30121] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3861), 1, - anon_sym_DASH2, - ACTIONS(3871), 1, - anon_sym_PLUS2, - STATE(1645), 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, + [38989] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(1734), 1, + sym__unquoted_pattern, + ACTIONS(4089), 1, + anon_sym_DOT_DOT2, + ACTIONS(4093), 1, + sym_filesize_unit, + ACTIONS(4095), 1, + sym_duration_unit, + STATE(1774), 1, sym_comment, - ACTIONS(3859), 2, + 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_LT2, - ACTIONS(3863), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3867), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3869), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3873), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3865), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3877), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3875), 8, + 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, @@ -165282,189 +173548,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2578), 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_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30197] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3861), 1, - anon_sym_DASH2, - ACTIONS(3871), 1, - anon_sym_PLUS2, - ACTIONS(3879), 1, - anon_sym_bit_DASHand2, - STATE(1646), 1, - sym_comment, - ACTIONS(3859), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3863), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3867), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3869), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3873), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3865), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3877), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3875), 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(2578), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30275] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3861), 1, - anon_sym_DASH2, - ACTIONS(3871), 1, - anon_sym_PLUS2, - ACTIONS(3879), 1, - anon_sym_bit_DASHand2, - ACTIONS(3881), 1, - anon_sym_bit_DASHxor2, - STATE(1647), 1, - sym_comment, - ACTIONS(3859), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3863), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3867), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3869), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3873), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3865), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3877), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3875), 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(2578), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30355] = 15, + [39057] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1648), 1, + ACTIONS(4052), 1, + anon_sym_AT2, + ACTIONS(4097), 1, + anon_sym_GT2, + STATE(1775), 1, sym_comment, - STATE(4419), 1, - sym_block, - STATE(4700), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, + STATE(4688), 1, + sym__all_type, + STATE(4948), 1, + sym_param_completer, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(4869), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -165496,181 +173622,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [30435] = 15, + [39125] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1649), 1, + ACTIONS(4099), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4101), 1, + aux_sym__immediate_decimal_token5, + STATE(1776), 1, sym_comment, - STATE(4421), 1, - sym_block, - STATE(4704), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [30515] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3813), 1, + 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, + sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, - STATE(1650), 1, - sym_comment, - STATE(4433), 1, - sym_block, - STATE(4705), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [30595] = 18, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [39183] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(4024), 1, + anon_sym_DOT2, + STATE(1777), 1, + sym_comment, + STATE(1780), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1866), 1, + sym_path, + ACTIONS(1504), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1506), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, anon_sym_BQUOTE, + [39243] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1800), 1, + anon_sym_DQUOTE, ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3639), 1, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3889), 1, - anon_sym_LBRACK, - ACTIONS(3891), 1, - anon_sym_DOLLAR, - ACTIONS(3893), 1, - anon_sym_LBRACE, - STATE(1651), 1, + STATE(1778), 1, sym_comment, - STATE(2102), 1, + STATE(2133), 1, sym__val_number_decimal, - ACTIONS(3635), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3647), 2, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(5172), 1, + sym__command_name, + ACTIONS(3902), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, + ACTIONS(3904), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3163), 2, - sym_cmd_identifier, - sym_val_string, - STATE(3210), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2238), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 23, + ACTIONS(3647), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -165688,46 +173782,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, - [30681] = 15, + [39321] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, + ACTIONS(3776), 1, anon_sym_LBRACK, - ACTIONS(3809), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1652), 1, + STATE(1779), 1, sym_comment, - STATE(4382), 1, - sym_block, - STATE(4710), 1, - sym_returns, - STATE(4916), 1, + STATE(5066), 1, sym__type_annotation, - STATE(5119), 1, + STATE(5073), 1, sym__one_type, - STATE(5123), 1, + STATE(5074), 1, sym__multiple_types, - ACTIONS(3807), 2, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -165759,116 +173846,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [30761] = 15, + [39389] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1653), 1, + ACTIONS(4103), 1, + anon_sym_DOT2, + STATE(1866), 1, + sym_path, + STATE(1780), 2, sym_comment, - STATE(4383), 1, - sym_block, - STATE(4711), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [30841] = 18, - ACTIONS(3), 1, + 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, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_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, + [39447] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1422), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1424), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1426), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1436), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3769), 1, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3895), 1, - anon_sym_LBRACK, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(3899), 1, - anon_sym_LBRACE, - STATE(1654), 1, + STATE(1781), 1, sym_comment, - STATE(2108), 1, + STATE(2133), 1, sym__val_number_decimal, - ACTIONS(3647), 2, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(5222), 1, + sym__command_name, + ACTIONS(3902), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, + ACTIONS(3904), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3765), 2, - anon_sym_export, - anon_sym_in, - STATE(4797), 2, - sym_cmd_identifier, - sym_val_string, - STATE(4806), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(3594), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3767), 23, + ACTIONS(3647), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -165886,306 +173953,91 @@ 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, - [30927] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1655), 1, - sym_comment, - STATE(4453), 1, - sym_block, - STATE(4761), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31007] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1656), 1, - sym_comment, - STATE(4384), 1, - sym_block, - STATE(4714), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31087] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1657), 1, - sym_comment, - STATE(4514), 1, - sym_block, - STATE(4753), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31167] = 15, + [39525] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1658), 1, + ACTIONS(4106), 1, + anon_sym_DOT, + ACTIONS(4108), 1, + aux_sym__immediate_decimal_token5, + STATE(1782), 1, sym_comment, - STATE(4517), 1, - sym_block, - STATE(4756), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31247] = 15, + 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, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_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, + [39583] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1659), 1, + ACTIONS(4052), 1, + anon_sym_AT2, + ACTIONS(4110), 1, + anon_sym_GT2, + STATE(1783), 1, sym_comment, - STATE(4399), 1, - sym_block, - STATE(4719), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, + STATE(4662), 1, + sym__all_type, + STATE(5107), 1, + sym_param_completer, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(4869), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -166217,34 +174069,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [31327] = 5, + [39651] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1660), 1, + STATE(1784), 1, sym_comment, - ACTIONS(2537), 5, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3901), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2535), 29, + 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, @@ -166263,6 +174106,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, @@ -166272,101 +174116,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31387] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1661), 1, - sym_comment, - STATE(4403), 1, - sym_block, - STATE(4720), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31467] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [39705] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2950), 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, - STATE(1662), 1, + ACTIONS(3651), 1, + aux_sym_cmd_identifier_token1, + STATE(1785), 1, sym_comment, - ACTIONS(2506), 17, - ts_builtin_sym_end, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(5100), 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, + [39783] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4112), 1, + anon_sym_DOT, + ACTIONS(4114), 1, + aux_sym__immediate_decimal_token5, + STATE(1786), 1, + sym_comment, + ACTIONS(1746), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1744), 34, + 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, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_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(2508), 29, + anon_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, + STATE(1787), 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, - anon_sym_GT2, + sym__newline, anon_sym_DASH2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -166377,51 +174262,160 @@ 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, - [31527] = 5, - ACTIONS(103), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [39895] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2950), 1, - aux_sym_cmd_identifier_token2, - STATE(1663), 1, + STATE(1788), 1, sym_comment, - ACTIONS(2521), 17, - ts_builtin_sym_end, + 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, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_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(2523), 29, + anon_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(1422), 1, + anon_sym_DQUOTE, + ACTIONS(1424), 1, + anon_sym_SQUOTE, + ACTIONS(1426), 1, + anon_sym_BQUOTE, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3814), 1, + aux_sym_cmd_identifier_token1, + STATE(1760), 1, + aux_sym__command_list_body_repeat1, + STATE(1789), 1, + sym_comment, + STATE(2138), 1, + sym__val_number_decimal, + STATE(4635), 1, + sym__command_name, + STATE(4851), 1, + sym_cmd_identifier, + STATE(4852), 1, + sym_val_string, + ACTIONS(3659), 2, + 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, + [40029] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4116), 1, + aux_sym__immediate_decimal_token5, + STATE(1790), 1, + sym_comment, + ACTIONS(771), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(773), 34, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -166432,120 +174426,222 @@ 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, - [31587] = 15, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [40085] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, + STATE(1791), 1, + sym_comment, + ACTIONS(1531), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1533), 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, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1664), 1, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [40138] = 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(1792), 1, sym_comment, - STATE(4578), 1, - sym_block, - STATE(4717), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31667] = 15, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(4415), 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, + [40215] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 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, + 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, + anon_sym_in, + 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, + [40292] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4118), 1, + sym__newline, + ACTIONS(4124), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(4126), 1, anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1665), 1, + STATE(1794), 1, sym_comment, - STATE(4603), 1, - sym_block, - STATE(4758), 1, - sym_returns, - STATE(4916), 1, + STATE(2012), 1, + aux_sym__repeat_newline, + STATE(2909), 1, sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, + ACTIONS(4122), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(3162), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(4120), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -166577,40 +174673,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [31747] = 15, + [40357] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1666), 1, + ACTIONS(4118), 1, + sym__newline, + STATE(1795), 1, sym_comment, - STATE(4630), 1, - sym_block, - STATE(4767), 1, - sym_returns, - STATE(4916), 1, + STATE(1831), 1, + aux_sym__repeat_newline, + STATE(4707), 1, sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -166642,40 +174728,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [31827] = 15, + [40422] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, + ACTIONS(4118), 1, + sym__newline, + ACTIONS(4132), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(4134), 1, anon_sym_oneof, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1667), 1, + STATE(1796), 1, sym_comment, - STATE(4576), 1, - sym_block, - STATE(4808), 1, - sym_returns, - STATE(4916), 1, + STATE(2012), 1, + aux_sym__repeat_newline, + STATE(3047), 1, sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, + ACTIONS(4130), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(3327), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(4128), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -166707,41 +174783,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [31907] = 12, + [40487] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3904), 1, + ACTIONS(4136), 1, anon_sym_DOT, - STATE(1668), 1, + ACTIONS(4138), 1, + aux_sym__immediate_decimal_token5, + STATE(1797), 1, sym_comment, - STATE(1838), 1, - sym__immediate_decimal, - ACTIONS(3906), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3908), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(690), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 6, + ACTIONS(1746), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1599), 30, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1744), 33, anon_sym_in, - sym__newline, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -166760,6 +174822,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, @@ -166769,40 +174832,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31981] = 15, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [40544] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, + ACTIONS(4118), 1, + sym__newline, + ACTIONS(4132), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(4134), 1, anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1669), 1, + STATE(1796), 1, + aux_sym__repeat_newline, + STATE(1798), 1, sym_comment, - STATE(4130), 1, - sym_block, - STATE(4730), 1, - sym_returns, - STATE(4916), 1, + STATE(3060), 1, sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, + ACTIONS(4130), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(3327), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(4128), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -166834,40 +174889,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [32061] = 15, + [40609] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, + STATE(1799), 1, + sym_comment, + ACTIONS(4140), 42, + sym__newline, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(3803), 1, anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1670), 1, - sym_comment, - STATE(4243), 1, - sym_block, - STATE(4682), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -166897,105 +174929,90 @@ 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, - [32141] = 13, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [40660] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - ACTIONS(3779), 1, - anon_sym_DASH2, - ACTIONS(3785), 1, - anon_sym_PLUS2, - STATE(1527), 1, - aux_sym__repeat_newline, - STATE(1671), 1, + ACTIONS(4081), 1, + anon_sym_DOT2, + STATE(1800), 1, sym_comment, - ACTIONS(3759), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2756), 29, + 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, + ACTIONS(1506), 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_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [32217] = 15, + 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, + [40719] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, + ACTIONS(4118), 1, + sym__newline, + ACTIONS(4124), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(4126), 1, anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1672), 1, + STATE(1801), 1, sym_comment, - STATE(4246), 1, - sym_block, - STATE(4683), 1, - sym_returns, - STATE(4916), 1, + STATE(1828), 1, + aux_sym__repeat_newline, + STATE(2964), 1, sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, + ACTIONS(4122), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(3162), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(4120), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -167027,40 +175044,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [32297] = 15, + [40784] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, + STATE(1802), 1, + sym_comment, + ACTIONS(4142), 42, + sym__newline, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(3803), 1, anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1673), 1, - sym_comment, - STATE(4260), 1, - sym_block, - STATE(4699), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -167090,104 +175084,131 @@ 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, - [32377] = 12, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [40835] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - ACTIONS(3779), 1, - anon_sym_DASH2, - ACTIONS(3785), 1, - anon_sym_PLUS2, - STATE(1529), 1, - aux_sym__repeat_newline, - STATE(1674), 1, + ACTIONS(4144), 1, + anon_sym_DOT2, + STATE(1889), 1, + sym_path, + STATE(1803), 2, sym_comment, - ACTIONS(2758), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3759), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3787), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2756), 33, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1508), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + ACTIONS(1510), 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_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [32451] = 15, + 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(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, + ACTIONS(4118), 1, + sym__newline, + ACTIONS(4132), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(4134), 1, anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1675), 1, + STATE(1804), 1, sym_comment, - STATE(4262), 1, - sym_block, - STATE(4701), 1, - sym_returns, - STATE(4916), 1, + STATE(1820), 1, + aux_sym__repeat_newline, + STATE(3087), 1, sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, + ACTIONS(4130), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(3327), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(4128), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [40957] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1805), 1, + sym_comment, + ACTIONS(4147), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -167217,23 +175238,273 @@ 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, - [32531] = 4, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [41008] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1806), 1, + sym_comment, + 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_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, + [41061] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1807), 1, + sym_comment, + 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, + STATE(1808), 1, + sym_comment, + ACTIONS(1527), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1529), 38, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_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, + [41167] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4149), 1, + anon_sym_QMARK2, + STATE(1809), 1, + sym_comment, + ACTIONS(1448), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1450), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + [41222] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1810), 1, + sym_comment, + ACTIONS(1535), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1537), 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, + [41275] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1676), 1, + STATE(1811), 1, sym_comment, - ACTIONS(2933), 7, + ACTIONS(1539), 4, 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(2935), 40, + anon_sym_DOT2, + ACTIONS(1541), 38, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -167258,55 +175529,29 @@ static const uint16_t ts_small_parse_table[] = { 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, + 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, - 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, - [32589] = 15, + anon_sym_QMARK2, + anon_sym_BANG, + [41328] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, + STATE(1812), 1, + sym_comment, + ACTIONS(4151), 42, + sym__newline, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(3803), 1, anon_sym_LBRACK, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1677), 1, - sym_comment, - STATE(4263), 1, - sym_block, - STATE(4706), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, - sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -167336,42 +175581,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, + anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [32669] = 15, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [41379] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3801), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(3784), 1, anon_sym_oneof, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1678), 1, + STATE(1813), 1, sym_comment, - STATE(4133), 1, - sym_block, - STATE(4731), 1, - sym_returns, - STATE(4916), 1, - sym__type_annotation, - STATE(5119), 1, + STATE(1815), 1, + aux_sym__types_body_repeat3, + STATE(4592), 1, sym__one_type, - STATE(5123), 1, - sym__multiple_types, - ACTIONS(3807), 2, + STATE(5109), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -167403,290 +175644,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [32749] = 17, + [41444] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_DASH2, - ACTIONS(3918), 1, - anon_sym_and2, - ACTIONS(3928), 1, - anon_sym_PLUS2, - ACTIONS(3932), 1, - anon_sym_bit_DASHand2, - ACTIONS(3934), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3936), 1, - anon_sym_bit_DASHor2, - STATE(1679), 1, + ACTIONS(4108), 1, + aux_sym__immediate_decimal_token5, + STATE(1814), 1, sym_comment, - ACTIONS(3912), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3916), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3924), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3926), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3930), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3920), 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(3910), 8, + ACTIONS(747), 6, + anon_sym_export, + aux_sym_cmd_identifier_token1, 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(2578), 14, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [32832] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, + anon_sym_DOT_DOT2, + sym_duration_unit, sym__unquoted_pattern, - STATE(1680), 1, - sym_comment, - STATE(1941), 1, - sym__immediate_decimal, - ACTIONS(3938), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3940), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(780), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1599), 30, - anon_sym_in, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [32903] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_DASH2, - ACTIONS(3928), 1, - anon_sym_PLUS2, - STATE(1681), 1, - sym_comment, - ACTIONS(3912), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3916), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3924), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3926), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3930), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3920), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2578), 30, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [32974] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1682), 1, - sym_comment, - ACTIONS(2537), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3901), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2535), 29, - anon_sym_in, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [33033] = 19, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, + ACTIONS(749), 35, sym_raw_string_begin, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3753), 1, - anon_sym_DASH_DASH, - STATE(1683), 1, - sym_comment, - STATE(1710), 1, - aux_sym_decl_def_repeat1, - STATE(2102), 1, - sym__val_number_decimal, - STATE(2186), 1, - sym_long_flag, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(3685), 1, - sym__command_name, - ACTIONS(3755), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3757), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3635), 25, - anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -167704,214 +175677,46 @@ 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, - [33120] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1684), 1, - sym_comment, - ACTIONS(3924), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2580), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2578), 39, - 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_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [33179] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_DASH2, - ACTIONS(3928), 1, - anon_sym_PLUS2, - STATE(1685), 1, - sym_comment, - ACTIONS(2580), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3916), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3924), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3926), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3930), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2578), 34, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [33248] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1686), 1, - sym_comment, - ACTIONS(3916), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3924), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3926), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2580), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2578), 37, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [33311] = 14, + 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(3809), 1, + ACTIONS(4159), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(4162), 1, anon_sym_oneof, - ACTIONS(3942), 1, - sym__newline, - ACTIONS(3944), 1, - anon_sym_RBRACK, - STATE(1687), 1, - sym_comment, - STATE(1728), 1, - aux_sym__types_body_repeat1, - STATE(1799), 1, - aux_sym__types_body_repeat3, - STATE(4461), 1, + STATE(4846), 1, sym__one_type, - STATE(4884), 1, + STATE(5109), 1, sym__type_annotation, - STATE(5093), 1, - sym__types_body, - ACTIONS(3807), 2, + ACTIONS(4156), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(1815), 2, + sym_comment, + aux_sym__types_body_repeat3, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(4153), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -167943,115 +175748,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [33388] = 16, + [41562] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_DASH2, - ACTIONS(3928), 1, - anon_sym_PLUS2, - ACTIONS(3932), 1, - anon_sym_bit_DASHand2, - ACTIONS(3934), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3936), 1, - anon_sym_bit_DASHor2, - STATE(1688), 1, + ACTIONS(4149), 1, + anon_sym_BANG, + STATE(1816), 1, sym_comment, - ACTIONS(3912), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3916), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3924), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3926), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3930), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3920), 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(3910), 8, + ACTIONS(1448), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, 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(2578), 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, - [33469] = 19, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, + anon_sym_DOT2, + ACTIONS(1450), 37, sym_raw_string_begin, - ACTIONS(2950), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3753), 1, - anon_sym_DASH_DASH, - STATE(1689), 1, - sym_comment, - STATE(1706), 1, - aux_sym_decl_def_repeat1, - STATE(2102), 1, - sym__val_number_decimal, - STATE(2186), 1, - sym_long_flag, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(3705), 1, - sym__command_name, - ACTIONS(3755), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3757), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3635), 25, - anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168069,553 +175779,113 @@ 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, - [33556] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_DASH2, - ACTIONS(3918), 1, - anon_sym_and2, - ACTIONS(3928), 1, - anon_sym_PLUS2, - ACTIONS(3932), 1, - anon_sym_bit_DASHand2, - ACTIONS(3934), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3936), 1, - anon_sym_bit_DASHor2, - ACTIONS(3946), 1, - anon_sym_xor2, - STATE(1690), 1, - sym_comment, - ACTIONS(3912), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3916), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3924), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3926), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3930), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3920), 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(3910), 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(2578), 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, - [33641] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_DASH2, - ACTIONS(3928), 1, - anon_sym_PLUS2, - STATE(1691), 1, - sym_comment, - ACTIONS(3912), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3916), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3924), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3926), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3930), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3920), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3910), 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(2578), 22, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_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, - [33714] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_DASH2, - ACTIONS(3928), 1, - anon_sym_PLUS2, - STATE(1692), 1, - sym_comment, - ACTIONS(2580), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3916), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3924), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3926), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2578), 36, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [33781] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_DASH2, - ACTIONS(3928), 1, - anon_sym_PLUS2, - STATE(1693), 1, - sym_comment, - ACTIONS(3912), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3916), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3924), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3926), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3930), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3920), 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(3910), 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(2578), 18, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [33856] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_DASH2, - ACTIONS(3928), 1, - anon_sym_PLUS2, - ACTIONS(3932), 1, - anon_sym_bit_DASHand2, - STATE(1694), 1, - sym_comment, - ACTIONS(3912), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3916), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3924), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3926), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3930), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3920), 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(3910), 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(2578), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [33933] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_DASH2, - ACTIONS(3928), 1, - anon_sym_PLUS2, - ACTIONS(3932), 1, - anon_sym_bit_DASHand2, - ACTIONS(3934), 1, - anon_sym_bit_DASHxor2, - STATE(1695), 1, - sym_comment, - ACTIONS(3912), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3916), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3924), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3926), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3930), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3920), 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(3910), 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(2578), 16, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [34012] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1691), 1, - sym__unquoted_pattern, - STATE(1696), 1, - sym_comment, - STATE(1919), 1, - sym__immediate_decimal, - ACTIONS(3938), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3940), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(726), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1679), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1677), 30, - anon_sym_in, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [34083] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3948), 1, - anon_sym_DOT, - STATE(1697), 1, - sym_comment, - STATE(1879), 1, - sym__immediate_decimal, - ACTIONS(3950), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3952), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1965), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1599), 29, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [34156] = 19, + 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, + [41617] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(4165), 1, + aux_sym__immediate_decimal_token5, + STATE(1817), 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, - ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, anon_sym_BQUOTE, + [41672] = 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(3639), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3954), 1, - anon_sym_DASH_DASH, - STATE(1698), 1, + STATE(1818), 1, sym_comment, - STATE(1994), 1, - aux_sym_decl_def_repeat1, - STATE(2102), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(2186), 1, - sym_long_flag, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3739), 1, + STATE(3719), 1, + sym_val_string, + STATE(3986), 1, sym__command_name, - ACTIONS(3635), 2, + ACTIONS(3647), 2, anon_sym_export, anon_sym_in, - ACTIONS(3647), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2238), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 23, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168639,16 +175909,232 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34242] = 6, + [41749] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3956), 1, - anon_sym_DOT, - ACTIONS(3958), 1, - aux_sym__immediate_decimal_token5, - STATE(1699), 1, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(4118), 1, + sym__newline, + STATE(1819), 1, sym_comment, - ACTIONS(747), 8, + STATE(1844), 1, + aux_sym__repeat_newline, + STATE(2899), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [41814] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4118), 1, + sym__newline, + ACTIONS(4132), 1, + anon_sym_list, + ACTIONS(4134), 1, + anon_sym_oneof, + STATE(1820), 1, + sym_comment, + STATE(2012), 1, + aux_sym__repeat_newline, + STATE(3103), 1, + sym__type_annotation, + ACTIONS(4130), 2, + anon_sym_table, + anon_sym_record, + STATE(3327), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4128), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [41879] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + 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, + 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(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(4118), 1, + sym__newline, + STATE(1822), 1, + sym_comment, + STATE(2012), 1, + aux_sym__repeat_newline, + STATE(4686), 1, + sym__type_annotation, + ACTIONS(3780), 2, + anon_sym_table, + anon_sym_record, + STATE(2651), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3778), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + 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, + STATE(1823), 1, + sym_comment, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -168657,11 +176143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 35, + ACTIONS(741), 34, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -168693,83 +176178,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [34302] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3954), 1, - anon_sym_DASH_DASH, - STATE(1700), 1, - sym_comment, - STATE(1994), 1, - aux_sym_decl_def_repeat1, - STATE(2102), 1, - sym__val_number_decimal, - STATE(2186), 1, - sym_long_flag, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(3699), 1, - sym__command_name, - ACTIONS(3635), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 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, - [34388] = 6, + [42062] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3960), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3962), 1, - aux_sym__immediate_decimal_token5, - STATE(1701), 1, + STATE(1824), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(771), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -168778,11 +176192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 35, + ACTIONS(773), 34, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -168814,104 +176227,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [34448] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3769), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3771), 1, - sym__newline, - STATE(1702), 1, - sym_comment, - STATE(1758), 1, - aux_sym__command_list_body_repeat1, - STATE(2108), 1, - sym__val_number_decimal, - STATE(2116), 1, - aux_sym__types_body_repeat1, - STATE(4516), 1, - sym__command_name, - STATE(4737), 1, - sym_cmd_identifier, - STATE(4738), 1, - sym_val_string, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3765), 2, - anon_sym_export, - anon_sym_in, - STATE(3594), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3767), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [34534] = 11, + [42115] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1691), 1, - sym__unquoted_pattern, - STATE(1703), 1, + STATE(1825), 1, sym_comment, - STATE(1983), 1, - sym__immediate_decimal, - ACTIONS(3964), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3966), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(726), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1679), 6, + ACTIONS(860), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1677), 29, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(862), 34, anon_sym_in, + anon_sym_DASH2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -168931,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, @@ -168940,38 +176273,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34604] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [42168] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1621), 1, - anon_sym_DOT, - STATE(1704), 1, + ACTIONS(4118), 1, + sym__newline, + ACTIONS(4124), 1, + anon_sym_list, + ACTIONS(4126), 1, + anon_sym_oneof, + STATE(1826), 1, sym_comment, - STATE(1964), 1, - sym__immediate_decimal, - ACTIONS(3950), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3952), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1963), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1619), 6, + 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(1746), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1617), 29, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1744), 34, anon_sym_in, - anon_sym_EQ_GT, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -168990,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, @@ -168999,172 +176379,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34674] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3954), 1, - anon_sym_DASH_DASH, - STATE(1698), 1, - aux_sym_decl_def_repeat1, - STATE(1705), 1, - sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(2186), 1, - sym_long_flag, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(3688), 1, - sym__command_name, - ACTIONS(3635), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 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, - [34760] = 19, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [42288] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3954), 1, - anon_sym_DASH_DASH, - STATE(1706), 1, + ACTIONS(4118), 1, + sym__newline, + ACTIONS(4124), 1, + anon_sym_list, + ACTIONS(4126), 1, + anon_sym_oneof, + STATE(1828), 1, sym_comment, - STATE(1994), 1, - aux_sym_decl_def_repeat1, - STATE(2102), 1, - sym__val_number_decimal, - STATE(2186), 1, - sym_long_flag, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(3690), 1, - sym__command_name, - ACTIONS(3635), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 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, - [34846] = 11, + STATE(2012), 1, + aux_sym__repeat_newline, + STATE(2923), 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, + [42353] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1607), 1, - anon_sym_DOT, - STATE(1707), 1, + ACTIONS(4167), 1, + aux_sym__immediate_decimal_token5, + STATE(1829), 1, sym_comment, - STATE(1962), 1, - sym__immediate_decimal, - ACTIONS(3950), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3952), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1965), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 6, + ACTIONS(1854), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1599), 29, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1852), 34, anon_sym_in, - anon_sym_EQ_GT, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -169183,6 +176474,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, @@ -169192,184 +176484,259 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34916] = 19, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [42408] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3954), 1, - anon_sym_DASH_DASH, - STATE(1700), 1, - aux_sym_decl_def_repeat1, - STATE(1708), 1, + 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, - STATE(2102), 1, - sym__val_number_decimal, - STATE(2186), 1, - sym_long_flag, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(3760), 1, - sym__command_name, - ACTIONS(3635), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 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, - [35002] = 19, + 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(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3954), 1, - anon_sym_DASH_DASH, - STATE(1709), 1, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(4118), 1, + sym__newline, + STATE(1831), 1, sym_comment, - STATE(1711), 1, - aux_sym_decl_def_repeat1, - STATE(2102), 1, - sym__val_number_decimal, - STATE(2186), 1, - sym_long_flag, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(3706), 1, - sym__command_name, - ACTIONS(3635), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 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, - [35088] = 19, + STATE(2012), 1, + aux_sym__repeat_newline, + STATE(4606), 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, + [42538] = 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(1822), 1, + aux_sym__repeat_newline, + STATE(1832), 1, + sym_comment, + 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(1796), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1798), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3639), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3954), 1, - anon_sym_DASH_DASH, - STATE(1710), 1, + STATE(1834), 1, sym_comment, - STATE(1994), 1, - aux_sym_decl_def_repeat1, - STATE(2102), 1, - sym__val_number_decimal, - STATE(2186), 1, - sym_long_flag, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, sym_cmd_identifier, - STATE(3711), 1, + STATE(3719), 1, + sym_val_string, + STATE(5186), 1, sym__command_name, - ACTIONS(3635), 2, + ACTIONS(3647), 2, anon_sym_export, anon_sym_in, - ACTIONS(3647), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2238), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 23, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169393,50 +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, - [35174] = 19, + [42731] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1798), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3639), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3954), 1, - anon_sym_DASH_DASH, - STATE(1711), 1, + STATE(1835), 1, sym_comment, - STATE(1994), 1, - aux_sym_decl_def_repeat1, - STATE(2102), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(2186), 1, - sym_long_flag, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3727), 1, + STATE(3719), 1, + sym_val_string, + STATE(4393), 1, sym__command_name, - ACTIONS(3635), 2, + ACTIONS(3647), 2, anon_sym_export, anon_sym_in, - ACTIONS(3647), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2238), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 23, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169460,50 +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, - [35260] = 19, + [42808] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1836), 1, + sym_comment, + ACTIONS(4171), 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, + [42859] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4118), 1, + sym__newline, + ACTIONS(4124), 1, + anon_sym_list, + ACTIONS(4126), 1, + anon_sym_oneof, + STATE(1837), 1, + sym_comment, + 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(1796), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1798), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3639), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3954), 1, - anon_sym_DASH_DASH, - STATE(1712), 1, + STATE(1838), 1, sym_comment, - STATE(1713), 1, - aux_sym_decl_def_repeat1, - STATE(2102), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(2186), 1, - sym_long_flag, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3732), 1, + STATE(3719), 1, + sym_val_string, + STATE(4319), 1, sym__command_name, - ACTIONS(3635), 2, + ACTIONS(3647), 2, anon_sym_export, anon_sym_in, - ACTIONS(3647), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2238), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 23, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169527,50 +176985,154 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35346] = 19, + [43001] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4118), 1, + sym__newline, + ACTIONS(4124), 1, + anon_sym_list, + ACTIONS(4126), 1, + anon_sym_oneof, + STATE(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(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, + 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(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, + [43131] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1798), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(3639), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3954), 1, - anon_sym_DASH_DASH, - STATE(1713), 1, + STATE(1841), 1, sym_comment, - STATE(1994), 1, - aux_sym_decl_def_repeat1, - STATE(2102), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(2186), 1, - sym_long_flag, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3746), 1, + STATE(3719), 1, + sym_val_string, + STATE(5232), 1, sym__command_name, - ACTIONS(3635), 2, + ACTIONS(3647), 2, anon_sym_export, anon_sym_in, - ACTIONS(3647), 2, + ACTIONS(3659), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2238), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 23, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169594,37 +177156,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35432] = 11, + [43208] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(1714), 1, - sym_comment, - STATE(1981), 1, - sym__immediate_decimal, - ACTIONS(3964), 2, + ACTIONS(4173), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3966), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(780), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 6, + ACTIONS(4175), 1, + aux_sym__immediate_decimal_token5, + STATE(1842), 1, + sym_comment, + ACTIONS(1772), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1599), 29, + 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, @@ -169644,6 +177195,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, @@ -169653,46 +177205,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35502] = 17, - ACTIONS(103), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [43265] = 16, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1798), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(2738), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2740), 1, - anon_sym_COLON2, - ACTIONS(3639), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - STATE(1715), 1, + STATE(1843), 1, sym_comment, - STATE(2102), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(3883), 1, + STATE(3719), 1, + sym_val_string, + STATE(5251), 1, sym__command_name, - ACTIONS(3755), 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(3757), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2238), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 25, - anon_sym_export, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169710,98 +177262,36 @@ 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, - [35583] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - STATE(725), 1, - sym__immediate_decimal, - STATE(1716), 1, - sym_comment, - ACTIONS(3964), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3966), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(724), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1675), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1673), 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, - [35650] = 12, + [43342] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3942), 1, - sym__newline, - ACTIONS(3972), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3974), 1, + ACTIONS(3784), 1, anon_sym_oneof, - STATE(1717), 1, + ACTIONS(4118), 1, + sym__newline, + STATE(1844), 1, sym_comment, - STATE(1748), 1, - aux_sym__types_body_repeat1, - STATE(1830), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4465), 1, - sym__all_type, - STATE(5058), 1, - sym__composite_argument_body, - ACTIONS(3970), 2, + STATE(2012), 1, + aux_sym__repeat_newline, + STATE(2900), 1, + sym__type_annotation, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4522), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3968), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -169833,46 +177323,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [35721] = 17, - ACTIONS(103), 1, + [43407] = 16, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(1800), 1, anon_sym_DQUOTE, - ACTIONS(1798), 1, + ACTIONS(1802), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, + ACTIONS(1804), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, + ACTIONS(1806), 1, sym_raw_string_begin, - ACTIONS(2738), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2740), 1, - anon_sym_COLON2, - ACTIONS(3639), 1, + ACTIONS(3651), 1, aux_sym_cmd_identifier_token1, - STATE(1718), 1, + STATE(1845), 1, sym_comment, - STATE(2102), 1, + STATE(2133), 1, sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, + STATE(3713), 1, sym_cmd_identifier, - STATE(4986), 1, + STATE(3719), 1, + sym_val_string, + STATE(5136), 1, sym__command_name, - ACTIONS(3755), 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(3757), 2, + ACTIONS(3661), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2238), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3635), 25, - anon_sym_export, + ACTIONS(3649), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169890,137 +177378,111 @@ 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, - [35802] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3976), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3978), 1, - aux_sym__immediate_decimal_token5, - STATE(1719), 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, - [35861] = 5, + [43484] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3958), 1, - aux_sym__immediate_decimal_token5, - STATE(1720), 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(1846), 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, + STATE(2133), 1, + sym__val_number_decimal, + STATE(3713), 1, + sym_cmd_identifier, + STATE(3719), 1, + sym_val_string, + STATE(5111), 1, + sym__command_name, + ACTIONS(3647), 2, + anon_sym_export, anon_sym_in, - 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, - [35918] = 8, + 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, + [43561] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1721), 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(1847), 1, sym_comment, - STATE(1738), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1833), 1, - sym_path, - STATE(1861), 1, - sym_cell_path, - ACTIONS(1683), 3, + 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, - ACTIONS(1681), 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, @@ -170044,146 +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, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [35981] = 10, + 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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - STATE(777), 1, - sym__immediate_decimal, - STATE(1722), 1, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(4118), 1, + sym__newline, + STATE(1849), 1, sym_comment, - ACTIONS(3964), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3966), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(776), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1619), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1617), 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, - [36048] = 5, + 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(3982), 1, - aux_sym__immediate_decimal_token5, - STATE(1723), 1, + ACTIONS(3782), 1, + anon_sym_list, + ACTIONS(3784), 1, + anon_sym_oneof, + ACTIONS(4118), 1, + sym__newline, + STATE(1850), 1, sym_comment, - ACTIONS(763), 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(765), 35, - anon_sym_in, + 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, - 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, - [36105] = 7, + 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(3984), 1, - anon_sym_QMARK2, - ACTIONS(3986), 1, - anon_sym_BANG, - STATE(1724), 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(1852), 1, sym_comment, - STATE(1829), 1, - sym__path_suffix, - ACTIONS(1442), 4, + 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, - anon_sym_DOT2, - ACTIONS(1444), 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, @@ -170207,47 +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, - [36166] = 12, + 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(3942), 1, + ACTIONS(4118), 1, sym__newline, - ACTIONS(3972), 1, + ACTIONS(4124), 1, anon_sym_list, - ACTIONS(3974), 1, + ACTIONS(4126), 1, anon_sym_oneof, - STATE(1725), 1, + STATE(1826), 1, + aux_sym__repeat_newline, + STATE(1854), 1, sym_comment, - STATE(1748), 1, - aux_sym__types_body_repeat1, - STATE(1830), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4465), 1, - sym__all_type, - STATE(4961), 1, - sym__composite_argument_body, - ACTIONS(3970), 2, + STATE(3099), 1, + sym__type_annotation, + ACTIONS(4122), 2, anon_sym_table, anon_sym_record, - STATE(4522), 4, + STATE(3162), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3968), 31, + ACTIONS(4120), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170279,33 +177897,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [36237] = 11, + [44105] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4177), 1, + aux_sym__immediate_decimal_token5, + STATE(1855), 1, + sym_comment, + ACTIONS(1854), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1852), 33, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [44159] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - ACTIONS(1776), 1, + ACTIONS(1635), 1, sym__unquoted_pattern, - ACTIONS(3988), 1, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + ACTIONS(4179), 1, anon_sym_DOT_DOT2, - ACTIONS(3992), 1, - sym_filesize_unit, - ACTIONS(3994), 1, - sym_duration_unit, - STATE(1726), 1, + STATE(1856), 1, sym_comment, - STATE(4712), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3990), 2, + ACTIONS(4181), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(858), 5, + ACTIONS(1958), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(884), 31, + ACTIONS(1956), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -170337,89 +177998,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36306] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1727), 1, - sym_comment, - STATE(1738), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1833), 1, - sym_path, - STATE(1877), 1, - sym_cell_path, - ACTIONS(1450), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1452), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [36369] = 12, + [44219] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, + ACTIONS(4020), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(4022), 1, anon_sym_oneof, - ACTIONS(3942), 1, - sym__newline, - STATE(1728), 1, + STATE(1857), 1, sym_comment, - STATE(1822), 1, - aux_sym__types_body_repeat3, - STATE(1956), 1, - aux_sym__types_body_repeat1, - STATE(4501), 1, - sym__one_type, - STATE(4884), 1, - sym__type_annotation, - ACTIONS(3807), 2, + 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(4316), 4, + STATE(4673), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(4016), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170451,34 +178051,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [36440] = 12, + [44281] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3942), 1, - sym__newline, - ACTIONS(3972), 1, + ACTIONS(4020), 1, anon_sym_list, - ACTIONS(3974), 1, + ACTIONS(4022), 1, anon_sym_oneof, - STATE(1729), 1, + STATE(1858), 1, sym_comment, - STATE(1748), 1, - aux_sym__types_body_repeat1, - STATE(1830), 1, + STATE(1859), 1, aux_sym__composite_argument_body_repeat1, - STATE(4465), 1, + STATE(4681), 1, sym__all_type, - STATE(4867), 1, - sym__composite_argument_body, - ACTIONS(3970), 2, + ACTIONS(4018), 2, anon_sym_table, anon_sym_record, - STATE(4522), 4, + STATE(4673), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3968), 31, + ACTIONS(4016), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170510,100 +178104,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [36511] = 17, - ACTIONS(103), 1, + [44343] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(2738), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2740), 1, - anon_sym_COLON2, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - STATE(1730), 1, + 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, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(4273), 1, - sym__command_name, - ACTIONS(3755), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3757), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3635), 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, - [36592] = 10, + 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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(1977), 1, anon_sym_LPAREN2, - STATE(926), 1, - sym__immediate_decimal, - STATE(1731), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(4195), 1, + anon_sym_DOT_DOT2, + STATE(1860), 1, sym_comment, - ACTIONS(3964), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3966), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(780), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 6, + ACTIONS(4197), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1975), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1599), 29, + ACTIONS(1973), 31, anon_sym_in, - anon_sym_EQ_GT, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -170631,36 +178208,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36659] = 10, + [44463] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - STATE(723), 1, - sym__immediate_decimal, - STATE(1732), 1, + ACTIONS(874), 1, + anon_sym_DOT_DOT2, + ACTIONS(4199), 1, + sym_filesize_unit, + ACTIONS(4201), 1, + sym_duration_unit, + STATE(1861), 1, sym_comment, - ACTIONS(3964), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3966), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(722), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 6, + ACTIONS(876), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1669), 29, + ACTIONS(886), 31, anon_sym_in, - anon_sym_EQ_GT, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -170688,36 +178260,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36726] = 10, + [44523] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - STATE(953), 1, - sym__immediate_decimal, - STATE(1733), 1, + STATE(1862), 1, sym_comment, - ACTIONS(3964), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3966), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(726), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1679), 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(1770), 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, + [44575] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + 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(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(886), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [44637] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1864), 1, + sym_comment, + ACTIONS(1854), 7, + anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1677), 29, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1852), 34, anon_sym_in, - anon_sym_EQ_GT, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -170736,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, @@ -170745,24 +178407,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36793] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [44689] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3980), 1, + STATE(1865), 1, + sym_comment, + ACTIONS(1496), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOT2, - STATE(1734), 1, + ACTIONS(1498), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [44741] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1866), 1, sym_comment, - STATE(1738), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1833), 1, - sym_path, - STATE(1864), 1, - sym_cell_path, - ACTIONS(1689), 3, + ACTIONS(1547), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1687), 37, + anon_sym_DOT2, + ACTIONS(1549), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -170800,36 +178505,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [36856] = 10, + [44793] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - STATE(718), 1, - sym__immediate_decimal, - STATE(1735), 1, + ACTIONS(4213), 1, + anon_sym_QMARK2, + STATE(1867), 1, sym_comment, - ACTIONS(3964), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3966), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(717), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 6, + ACTIONS(1448), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1450), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [44847] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1868), 1, + sym_comment, + ACTIONS(1562), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1564), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [44899] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1869), 1, + sym_comment, + ACTIONS(1872), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1661), 29, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1870), 34, anon_sym_in, - anon_sym_EQ_GT, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -170848,6 +178638,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, @@ -170857,25 +178648,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36923] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [44951] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3996), 1, - anon_sym_DOT, - ACTIONS(3998), 1, + ACTIONS(4138), 1, aux_sym__immediate_decimal_token5, - STATE(1736), 1, + STATE(1870), 1, sym_comment, - ACTIONS(747), 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(749), 34, + ACTIONS(1744), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -170909,45 +178699,165 @@ 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, - [36982] = 16, - ACTIONS(103), 1, + [45005] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, + STATE(1871), 1, + sym_comment, + ACTIONS(739), 6, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(741), 35, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_filesize_unit, anon_sym_DQUOTE, - ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3639), 1, + [45057] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1872), 1, + sym_comment, + ACTIONS(771), 6, + anon_sym_export, aux_sym_cmd_identifier_token1, - STATE(1737), 1, + anon_sym_in, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(773), 35, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_filesize_unit, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [45109] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1873), 1, sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(5002), 1, - sym__command_name, - ACTIONS(3755), 2, + ACTIONS(860), 6, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(862), 35, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3757), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3635), 25, + sym_filesize_unit, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [45161] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4213), 1, + anon_sym_BANG, + STATE(1874), 1, + sym_comment, + ACTIONS(1448), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1450), 36, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170965,29 +178875,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [45215] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1875), 1, + sym_comment, + ACTIONS(1527), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + ACTIONS(1529), 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, - [37060] = 7, + 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, + [45266] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1738), 1, + ACTIONS(4020), 1, + anon_sym_list, + ACTIONS(4022), 1, + anon_sym_oneof, + STATE(1876), 1, sym_comment, - STATE(1740), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1833), 1, - sym_path, - ACTIONS(1515), 3, + 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(1877), 1, + sym_comment, + ACTIONS(2296), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1517), 37, + ACTIONS(2294), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171025,33 +179037,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37120] = 11, + [45376] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - ACTIONS(1776), 1, - sym__unquoted_pattern, - ACTIONS(4000), 1, - anon_sym_DOT_DOT2, - ACTIONS(4004), 1, - sym_filesize_unit, - ACTIONS(4006), 1, - sym_duration_unit, - STATE(1739), 1, + STATE(1878), 1, sym_comment, - STATE(4712), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4002), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(858), 5, + ACTIONS(1872), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(884), 30, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1870), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -171073,6 +179072,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, @@ -171082,21 +179082,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [37188] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [45427] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4008), 1, - anon_sym_DOT2, - STATE(1833), 1, - sym_path, - STATE(1740), 2, + STATE(1879), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1508), 3, + ACTIONS(2288), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1510), 37, + ACTIONS(2286), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171134,17 +179131,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37246] = 4, + [45478] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1741), 1, + STATE(1880), 1, sym_comment, - ACTIONS(1527), 4, + ACTIONS(1860), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1529), 39, + ACTIONS(1858), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171182,27 +179178,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37300] = 4, + [45529] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4215), 1, + sym__entry_separator, + STATE(1881), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3715), 38, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_GT2, + anon_sym_oneof, + [45580] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1742), 1, + ACTIONS(4199), 1, + sym_filesize_unit, + ACTIONS(4201), 1, + sym_duration_unit, + ACTIONS(4218), 1, + anon_sym_DOT_DOT2, + STATE(1882), 1, sym_comment, - ACTIONS(763), 8, + 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, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(765), 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, @@ -171221,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, @@ -171231,81 +179276,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [37354] = 6, - ACTIONS(3), 1, + [45639] = 28, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4011), 1, - anon_sym_DOT, - ACTIONS(4013), 1, - aux_sym__immediate_decimal_token5, - STATE(1743), 1, - sym_comment, - 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, + 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, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - 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(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, - 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(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, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [37412] = 8, + 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, - ACTIONS(4015), 1, - anon_sym_DOT2, - STATE(1744), 1, + STATE(1884), 1, sym_comment, - STATE(1800), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1865), 1, - sym_path, - STATE(1885), 1, - sym_cell_path, - ACTIONS(1450), 3, + ACTIONS(1580), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1452), 36, + ACTIONS(1582), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171332,6 +179384,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, @@ -171340,81 +179394,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37474] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(4017), 1, - anon_sym_GT2, - ACTIONS(4019), 1, - anon_sym_AT2, - STATE(1745), 1, - sym_comment, - STATE(4518), 1, - sym__all_type, - STATE(5055), 1, - sym_param_completer, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4725), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [37542] = 6, + [45789] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4021), 1, - anon_sym_DOT, - ACTIONS(4023), 1, + ACTIONS(4250), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4252), 1, aux_sym__immediate_decimal_token5, - STATE(1746), 1, + STATE(1885), 1, sym_comment, - ACTIONS(1756), 7, + ACTIONS(1772), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1754), 34, + ACTIONS(1770), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -171447,86 +179443,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [37600] = 6, + [45844] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4025), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4027), 1, - aux_sym__immediate_decimal_token5, - STATE(1747), 1, + STATE(1886), 1, sym_comment, - ACTIONS(1748), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1746), 34, + ACTIONS(1531), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + ACTIONS(1533), 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_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, - [37658] = 11, + 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, + [45895] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3942), 1, - sym__newline, - ACTIONS(3972), 1, + ACTIONS(4020), 1, anon_sym_list, - ACTIONS(3974), 1, + ACTIONS(4022), 1, anon_sym_oneof, - STATE(1748), 1, + STATE(1887), 1, sym_comment, - STATE(1837), 1, - aux_sym__composite_argument_body_repeat1, - STATE(1956), 1, - aux_sym__types_body_repeat1, - STATE(4492), 1, - sym__all_type, - ACTIONS(3970), 2, + STATE(4828), 1, + sym__type_annotation, + ACTIONS(4018), 2, anon_sym_table, anon_sym_record, - STATE(4522), 4, + STATE(4882), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3968), 31, + ACTIONS(4016), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -171558,26 +179541,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [37726] = 8, + [45954] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4015), 1, - anon_sym_DOT2, - STATE(1749), 1, + STATE(1888), 1, sym_comment, - STATE(1800), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1865), 1, - sym_path, - STATE(1895), 1, - sym_cell_path, - ACTIONS(1689), 3, + ACTIONS(1535), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1687), 36, + ACTIONS(1537), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171604,6 +179578,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, @@ -171612,25 +179588,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37788] = 6, + [46005] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4029), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4031), 1, - aux_sym__immediate_decimal_token5, - STATE(1750), 1, + STATE(1889), 1, sym_comment, - ACTIONS(739), 7, + ACTIONS(1547), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(741), 34, + anon_sym_DOT2, + ACTIONS(1549), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171654,54 +179624,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37846] = 16, - ACTIONS(103), 1, + [46056] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(2950), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - STATE(1751), 1, + STATE(1890), 1, sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(4844), 1, - sym__command_name, - ACTIONS(3755), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3757), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3635), 25, + ACTIONS(1539), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1541), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171719,265 +179663,45 @@ 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, - [37924] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(2950), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - STATE(1752), 1, - sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(4159), 1, - sym__command_name, - ACTIONS(3755), 2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3757), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3635), 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, - [38002] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1753), 1, - sym_comment, - ACTIONS(789), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(791), 35, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [38056] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(4019), 1, - anon_sym_AT2, - ACTIONS(4033), 1, - anon_sym_GT2, - STATE(1754), 1, - sym_comment, - STATE(4437), 1, - sym__all_type, - STATE(4957), 1, - sym_param_completer, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4725), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [38124] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(4019), 1, - anon_sym_AT2, - ACTIONS(4035), 1, - anon_sym_GT2, - STATE(1755), 1, - sym_comment, - STATE(4462), 1, - sym__all_type, - STATE(4862), 1, - sym_param_completer, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4725), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [38192] = 11, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [46107] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACK, - ACTIONS(3809), 1, + ACTIONS(3782), 1, anon_sym_list, - ACTIONS(3811), 1, + ACTIONS(3784), 1, anon_sym_oneof, - STATE(1756), 1, + STATE(1891), 1, sym_comment, - STATE(4916), 1, + STATE(5143), 1, sym__type_annotation, - STATE(5070), 1, - sym__multiple_types, - STATE(5142), 1, - sym__one_type, - ACTIONS(3807), 2, + ACTIONS(3780), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(2651), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(3778), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -172009,23 +179733,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [38260] = 5, + [46166] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3998), 1, - aux_sym__immediate_decimal_token5, - STATE(1757), 1, + STATE(1892), 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), 34, + ACTIONS(1770), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -172059,47 +179780,17 @@ 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, - [38316] = 17, + [46217] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3769), 1, - aux_sym_cmd_identifier_token1, - STATE(1758), 1, + STATE(1893), 1, sym_comment, - STATE(1759), 1, - aux_sym__command_list_body_repeat1, - STATE(2108), 1, - sym__val_number_decimal, - STATE(4519), 1, - sym__command_name, - STATE(4737), 1, - sym_cmd_identifier, - STATE(4738), 1, - sym_val_string, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3765), 2, + ACTIONS(2284), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - STATE(3594), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3767), 23, + ACTIONS(2282), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172123,141 +179814,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38396] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4043), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(4052), 1, - anon_sym_DQUOTE, - ACTIONS(4055), 1, - anon_sym_SQUOTE, - ACTIONS(4058), 1, - anon_sym_BQUOTE, - ACTIONS(4061), 1, - sym_raw_string_begin, - STATE(2108), 1, - sym__val_number_decimal, - STATE(4737), 1, - sym_cmd_identifier, - STATE(4738), 1, - sym_val_string, - STATE(4759), 1, - sym__command_name, - ACTIONS(4037), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(4046), 2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4049), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(1759), 2, - sym_comment, - aux_sym__command_list_body_repeat1, - STATE(3594), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4040), 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, - [38474] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1796), 1, anon_sym_DQUOTE, - ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - STATE(1760), 1, + [46268] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1894), 1, sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(4986), 1, - sym__command_name, - ACTIONS(3755), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3757), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3635), 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(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_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [38552] = 4, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_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(1761), 1, + STATE(1895), 1, sym_comment, - ACTIONS(1496), 4, + ACTIONS(2278), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1498), 39, + ACTIONS(2276), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -172295,207 +179921,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [38606] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - STATE(1762), 1, - sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(4273), 1, - sym__command_name, - ACTIONS(3755), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3757), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3635), 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, - [38684] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3769), 1, - aux_sym_cmd_identifier_token1, - STATE(1759), 1, - aux_sym__command_list_body_repeat1, - STATE(1763), 1, - sym_comment, - STATE(2108), 1, - sym__val_number_decimal, - STATE(4627), 1, - sym__command_name, - STATE(4737), 1, - sym_cmd_identifier, - STATE(4738), 1, - sym_val_string, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3765), 2, - anon_sym_export, - anon_sym_in, - STATE(3594), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3767), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [38764] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - STATE(1764), 1, - sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(3883), 1, - sym__command_name, - ACTIONS(3755), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3757), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3635), 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, - [38842] = 4, + [46370] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1765), 1, + STATE(1896), 1, sym_comment, - ACTIONS(1519), 4, + ACTIONS(1562), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1521), 39, + ACTIONS(1564), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172522,8 +179960,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, @@ -172532,19 +179968,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [38896] = 4, + [46421] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1766), 1, + STATE(1897), 1, sym_comment, - ACTIONS(1500), 4, + ACTIONS(2278), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1502), 39, + ACTIONS(2276), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -172582,20 +180015,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [38950] = 4, + [46472] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1767), 1, + STATE(1898), 1, sym_comment, - ACTIONS(1504), 4, + ACTIONS(1496), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1506), 39, + ACTIONS(1498), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172622,8 +180054,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, @@ -172632,69 +180062,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [39004] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1768), 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, - [39058] = 4, + [46523] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1769), 1, + STATE(1899), 1, sym_comment, - ACTIONS(1523), 4, + ACTIONS(1647), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1525), 39, + ACTIONS(1645), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -172732,28 +180109,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [39112] = 8, + [46574] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4015), 1, - anon_sym_DOT2, - STATE(1770), 1, + STATE(1900), 1, sym_comment, - STATE(1800), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1865), 1, - sym_path, - STATE(1901), 1, - sym_cell_path, - ACTIONS(1683), 3, + ACTIONS(1523), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1681), 36, + ACTIONS(1525), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172780,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, @@ -172788,88 +180156,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [39174] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - STATE(1771), 1, - sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(5113), 1, - sym__command_name, - ACTIONS(3755), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3757), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3635), 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, - [39252] = 5, + [46625] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4064), 1, + ACTIONS(4254), 1, + anon_sym_DOT, + ACTIONS(4256), 1, aux_sym__immediate_decimal_token5, - STATE(1772), 1, + STATE(1901), 1, sym_comment, - ACTIONS(763), 8, + ACTIONS(1746), 6, 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(765), 34, + 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, @@ -172898,47 +180205,68 @@ 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, - [39308] = 16, - ACTIONS(103), 1, + [46680] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - STATE(1773), 1, + ACTIONS(4020), 1, + anon_sym_list, + ACTIONS(4022), 1, + anon_sym_oneof, + STATE(1902), 1, sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(5035), 1, - sym__command_name, - ACTIONS(3755), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3757), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3635), 25, + 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, + STATE(1903), 1, + sym_comment, + ACTIONS(1519), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1521), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172956,94 +180284,36 @@ 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, - [39386] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - STATE(1774), 1, - sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(5213), 1, - sym__command_name, - ACTIONS(3755), 2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3757), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3635), 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, - [39464] = 7, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [46790] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4066), 1, - anon_sym_QMARK2, - ACTIONS(4068), 1, - anon_sym_BANG, - STATE(1775), 1, + STATE(1904), 1, sym_comment, - STATE(1868), 1, - sym__path_suffix, - ACTIONS(1442), 4, + ACTIONS(2292), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1444), 36, + ACTIONS(2290), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173070,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, @@ -173078,44 +180350,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [39524] = 16, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - anon_sym_SQUOTE, - ACTIONS(95), 1, - anon_sym_BQUOTE, + [46841] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(2950), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3673), 1, - aux_sym_cmd_identifier_token1, - STATE(1776), 1, + ACTIONS(4258), 1, + anon_sym_DOT, + ACTIONS(4260), 1, + aux_sym__immediate_decimal_token5, + STATE(1905), 1, sym_comment, - STATE(1998), 1, - sym__val_number_decimal, - STATE(4062), 1, - sym__command_name, - STATE(4288), 1, - sym_cmd_identifier, - STATE(4289), 1, - sym_val_string, - ACTIONS(3755), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3757), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(485), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3669), 25, + 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(1906), 1, + sym_comment, + ACTIONS(2176), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2174), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173133,191 +180427,100 @@ 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, - [39602] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1777), 1, - sym_comment, - ACTIONS(4070), 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, - [39653] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4072), 1, - sym__newline, - ACTIONS(4078), 1, - anon_sym_list, - ACTIONS(4080), 1, - anon_sym_oneof, - STATE(1778), 1, - sym_comment, - STATE(1975), 1, - aux_sym__repeat_newline, - STATE(3071), 1, - sym__type_annotation, - ACTIONS(4076), 2, - anon_sym_table, - anon_sym_record, - STATE(3128), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4074), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [39718] = 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, + [46947] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4072), 1, - sym__newline, - ACTIONS(4078), 1, - anon_sym_list, - ACTIONS(4080), 1, - anon_sym_oneof, - STATE(1779), 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, - STATE(1795), 1, - aux_sym__repeat_newline, - STATE(3050), 1, - sym__type_annotation, - ACTIONS(4076), 2, - anon_sym_table, - anon_sym_record, - STATE(3128), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4074), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [39783] = 5, + ACTIONS(4264), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1958), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1956), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [47006] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4082), 1, - aux_sym__immediate_decimal_token5, - STATE(1780), 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(1814), 7, + 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, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1812), 34, + 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, @@ -173336,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, @@ -173346,21 +180548,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [39838] = 5, + [47065] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4270), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4272), 1, + aux_sym__immediate_decimal_token5, + STATE(1909), 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, + [47120] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4084), 1, - anon_sym_BANG, - STATE(1781), 1, + STATE(1910), 1, sym_comment, - ACTIONS(1456), 4, + ACTIONS(2144), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1458), 37, + ACTIONS(2142), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -173398,22 +180644,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [39893] = 5, + [47171] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4086), 1, - aux_sym__immediate_decimal_token5, - STATE(1782), 1, + STATE(1911), 1, sym_comment, - ACTIONS(763), 6, + ACTIONS(2278), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(765), 35, + ACTIONS(2276), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173437,79 +180679,27 @@ 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, - [39948] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4088), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4090), 1, - aux_sym__immediate_decimal_token5, - STATE(1783), 1, - sym_comment, - ACTIONS(1748), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1746), 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, - [40005] = 4, + [47221] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1784), 1, + STATE(1912), 1, sym_comment, - ACTIONS(1523), 4, + ACTIONS(2144), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1525), 38, + ACTIONS(2142), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -173546,46 +180736,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [40058] = 16, + [47271] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - STATE(1785), 1, + ACTIONS(4274), 1, + anon_sym_DOT2, + STATE(1913), 1, sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(5049), 1, - sym__command_name, - ACTIONS(3635), 2, + STATE(1990), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2158), 1, + sym_path, + STATE(2233), 1, + sym_cell_path, + ACTIONS(1864), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3647), 2, + 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, - ACTIONS(3649), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 23, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47329] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4276), 1, + anon_sym_QMARK2, + ACTIONS(4278), 1, + anon_sym_BANG, + STATE(1914), 1, + sym_comment, + STATE(2165), 1, + sym__path_suffix, + ACTIONS(1456), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1458), 32, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173609,30 +180827,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [40135] = 10, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47385] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(4072), 1, - sym__newline, - STATE(1786), 1, + ACTIONS(3756), 1, + sym__entry_separator, + STATE(1915), 1, sym_comment, - STATE(1975), 1, - aux_sym__repeat_newline, - STATE(4499), 1, - sym__type_annotation, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(3754), 38, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173662,80 +180874,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, - [40200] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3809), 1, + anon_sym_record, anon_sym_list, - ACTIONS(3811), 1, + anon_sym_GT2, anon_sym_oneof, - ACTIONS(4072), 1, - sym__newline, - STATE(1787), 1, - sym_comment, - STATE(1793), 1, - aux_sym__repeat_newline, - STATE(4587), 1, - sym__type_annotation, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [40265] = 6, + [47435] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4092), 1, + ACTIONS(4274), 1, anon_sym_DOT2, - STATE(1865), 1, - sym_path, - STATE(1788), 2, + STATE(1916), 1, sym_comment, + STATE(1990), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1508), 3, + 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(1510), 36, + ACTIONS(1888), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173759,10 +180923,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -173770,119 +180931,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [40322] = 9, + [47493] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4101), 1, - anon_sym_list, - ACTIONS(4104), 1, - anon_sym_oneof, - STATE(4829), 1, - sym__one_type, - STATE(4884), 1, - sym__type_annotation, - ACTIONS(4098), 2, - anon_sym_table, - anon_sym_record, - STATE(1789), 2, + ACTIONS(4274), 1, + anon_sym_DOT2, + STATE(1917), 1, sym_comment, - aux_sym__types_body_repeat3, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4095), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [40385] = 3, - ACTIONS(3), 1, + STATE(1990), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2158), 1, + sym_path, + STATE(2166), 1, + sym_cell_path, + ACTIONS(1914), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1912), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47551] = 27, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1790), 1, + 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, - ACTIONS(4107), 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, - [40436] = 4, + 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(4280), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4282), 1, + aux_sym__immediate_decimal_token5, + STATE(1919), 1, + sym_comment, + ACTIONS(739), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(741), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [47701] = 5, + ACTIONS(103), 1, + 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(1791), 1, + STATE(1921), 1, sym_comment, - ACTIONS(1527), 4, + ACTIONS(1647), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1529), 38, + ACTIONS(1645), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -173919,21 +181191,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [40489] = 5, + [47803] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4284), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4286), 1, + aux_sym__immediate_decimal_token5, + STATE(1922), 1, + 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(4084), 1, - anon_sym_QMARK2, - STATE(1792), 1, + ACTIONS(4274), 1, + anon_sym_DOT2, + STATE(1924), 1, sym_comment, - ACTIONS(1456), 4, + 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, - anon_sym_DOT2, - ACTIONS(1458), 37, + ACTIONS(1896), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -173958,12 +181328,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, @@ -173971,79 +181336,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [40544] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(4072), 1, - sym__newline, - STATE(1793), 1, - sym_comment, - STATE(1975), 1, - aux_sym__repeat_newline, - STATE(4485), 1, - sym__type_annotation, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [40609] = 6, + [47967] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4109), 1, + ACTIONS(4290), 1, anon_sym_DOT, - ACTIONS(4111), 1, + ACTIONS(4292), 1, aux_sym__immediate_decimal_token5, - STATE(1794), 1, + STATE(1925), 1, sym_comment, - ACTIONS(1756), 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(1754), 33, + ACTIONS(1744), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -174075,122 +181384,62 @@ 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, - [40666] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4072), 1, - sym__newline, - ACTIONS(4078), 1, - anon_sym_list, - ACTIONS(4080), 1, - anon_sym_oneof, - STATE(1795), 1, - sym_comment, - STATE(1975), 1, - aux_sym__repeat_newline, - STATE(2950), 1, - sym__type_annotation, - ACTIONS(4076), 2, - anon_sym_table, - anon_sym_record, - STATE(3128), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4074), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [40731] = 3, + [48021] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1796), 1, + STATE(1926), 1, sym_comment, - ACTIONS(4113), 42, + ACTIONS(1531), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1533), 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_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, - [40782] = 4, + 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, + [48071] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1797), 1, + STATE(1927), 1, sym_comment, - ACTIONS(1519), 4, + ACTIONS(1519), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1521), 38, + ACTIONS(1521), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -174227,46 +181476,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [40835] = 16, + [48121] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - STATE(1798), 1, + STATE(1928), 1, sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(4161), 1, - sym__command_name, - ACTIONS(3635), 2, + ACTIONS(2284), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 23, + ACTIONS(2282), 36, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174290,77 +181511,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [40912] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - STATE(1789), 1, - aux_sym__types_body_repeat3, - STATE(1799), 1, - sym_comment, - STATE(4508), 1, - sym__one_type, - STATE(4884), 1, - sym__type_annotation, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [40977] = 7, + 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, + [48171] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4015), 1, - anon_sym_DOT2, - STATE(1788), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1800), 1, + STATE(1929), 1, sym_comment, - STATE(1865), 1, - sym_path, - ACTIONS(1515), 3, + ACTIONS(1580), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1517), 36, + ACTIONS(1582), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -174397,44 +181568,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [41036] = 16, + [48221] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - anon_sym_SQUOTE, - ACTIONS(95), 1, - anon_sym_BQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(3673), 1, - aux_sym_cmd_identifier_token1, - STATE(1801), 1, + STATE(1930), 1, sym_comment, - STATE(1998), 1, - sym__val_number_decimal, - STATE(4065), 1, - sym__command_name, - STATE(4288), 1, - sym_cmd_identifier, - STATE(4289), 1, - sym_val_string, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3669), 2, + ACTIONS(2176), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - STATE(485), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3671), 23, + ACTIONS(2174), 36, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174458,24 +181603,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [41113] = 4, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [48271] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1802), 1, + ACTIONS(4256), 1, + aux_sym__immediate_decimal_token5, + STATE(1931), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(1746), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 34, + ACTIONS(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, @@ -174504,97 +181661,87 @@ 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, - [41166] = 5, - ACTIONS(3), 1, + [48323] = 27, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4013), 1, - aux_sym__immediate_decimal_token5, - STATE(1803), 1, - sym_comment, - 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, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_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(2829), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4222), 1, anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [41221] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1796), 1, + 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(1798), 1, + ACTIONS(4306), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, + ACTIONS(4308), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, + 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(3639), 1, - aux_sym_cmd_identifier_token1, - STATE(1804), 1, + STATE(1911), 1, + sym__inter_double_quotes, + STATE(1932), 1, sym_comment, - STATE(2102), 1, + STATE(1944), 1, + sym__inter_single_quotes, + STATE(3923), 1, sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(5039), 1, - sym__command_name, - ACTIONS(3635), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3647), 2, + 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(3649), 2, + ACTIONS(3060), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2238), 4, + 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, - ACTIONS(3637), 23, + 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, @@ -174618,113 +181765,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [41298] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1805), 1, - sym_comment, - ACTIONS(4115), 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, - [41349] = 3, - ACTIONS(3), 1, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [48469] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1806), 1, + ACTIONS(4318), 1, + anon_sym_DOT, + ACTIONS(4320), 1, + aux_sym__immediate_decimal_token5, + STATE(1934), 1, sym_comment, - ACTIONS(4117), 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, - [41400] = 4, + 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(1807), 1, + STATE(1935), 1, sym_comment, - ACTIONS(1496), 4, + ACTIONS(1860), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1498), 38, + ACTIONS(1858), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -174761,19 +181870,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [41453] = 4, + [48573] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1808), 1, + STATE(1936), 1, sym_comment, - ACTIONS(1500), 4, + ACTIONS(2288), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1502), 38, + ACTIONS(2286), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -174810,21 +181916,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [41506] = 4, + [48623] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1809), 1, + ACTIONS(4274), 1, + anon_sym_DOT2, + STATE(1937), 1, sym_comment, - ACTIONS(1504), 4, + 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, - anon_sym_DOT2, - ACTIONS(1506), 38, + ACTIONS(1882), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174848,10 +181958,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -174859,101 +181966,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [41559] = 10, + [48681] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4072), 1, - sym__newline, - ACTIONS(4078), 1, - anon_sym_list, - ACTIONS(4080), 1, - anon_sym_oneof, - STATE(1778), 1, - aux_sym__repeat_newline, - STATE(1810), 1, + ACTIONS(4322), 1, + aux_sym__immediate_decimal_token5, + STATE(1938), 1, sym_comment, - STATE(3068), 1, - sym__type_annotation, - ACTIONS(4076), 2, - anon_sym_table, - anon_sym_record, - STATE(3128), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4074), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [41624] = 16, + 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, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [48733] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - STATE(1811), 1, + STATE(1939), 1, sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(4871), 1, - sym__command_name, - ACTIONS(3635), 2, + ACTIONS(2292), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 23, + ACTIONS(2290), 36, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174977,44 +182048,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [41701] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1796), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - STATE(1812), 1, + [48783] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4274), 1, + anon_sym_DOT2, + STATE(1940), 1, sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(4125), 1, - sym__command_name, - ACTIONS(3635), 2, + 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(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 23, + ACTIONS(1900), 32, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175038,44 +182101,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [41778] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1796), 1, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - STATE(1813), 1, + [48841] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1941), 1, sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(4237), 1, - sym__command_name, - ACTIONS(3635), 2, + ACTIONS(2296), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 23, + ACTIONS(2294), 36, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175099,44 +182144,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [41855] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1796), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - STATE(1814), 1, + [48891] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1942), 1, sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(3898), 1, - sym__command_name, - ACTIONS(3635), 2, + ACTIONS(1535), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 23, + ACTIONS(1537), 36, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175156,147 +182186,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [41932] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1815), 1, - sym_comment, - ACTIONS(763), 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(765), 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, - [41985] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4023), 1, - aux_sym__immediate_decimal_token5, - STATE(1816), 1, - sym_comment, - ACTIONS(1756), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1754), 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, - [42040] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - STATE(1817), 1, - sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(5237), 1, - sym__command_name, - ACTIONS(3635), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3647), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 23, + 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, @@ -175320,148 +182243,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42117] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1818), 1, - sym_comment, - ACTIONS(789), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(791), 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, - [42170] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - ACTIONS(4072), 1, - sym__newline, - STATE(1786), 1, - aux_sym__repeat_newline, - STATE(1819), 1, - sym_comment, - STATE(4435), 1, - sym__type_annotation, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [42235] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1796), 1, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - STATE(1820), 1, + [48999] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1944), 1, sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(5246), 1, - sym__command_name, - ACTIONS(3635), 2, + ACTIONS(2278), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 23, + ACTIONS(2276), 36, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175485,44 +182286,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42312] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1796), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - STATE(1821), 1, + [49049] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1945), 1, sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(4407), 1, - sym__command_name, - ACTIONS(3635), 2, + ACTIONS(1539), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 23, + ACTIONS(1541), 36, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175546,99 +182332,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42389] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_list, - ACTIONS(3811), 1, - anon_sym_oneof, - STATE(1789), 1, - aux_sym__types_body_repeat3, - STATE(1822), 1, - sym_comment, - STATE(4560), 1, - sym__one_type, - STATE(4884), 1, - sym__type_annotation, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [42454] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1796), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(1798), 1, anon_sym_SQUOTE, - ACTIONS(1800), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(3639), 1, - aux_sym_cmd_identifier_token1, - STATE(1823), 1, + [49099] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1946), 1, sym_comment, - STATE(2102), 1, - sym__val_number_decimal, - STATE(3563), 1, - sym_val_string, - STATE(3600), 1, - sym_cmd_identifier, - STATE(5012), 1, - sym__command_name, - ACTIONS(3635), 2, + ACTIONS(1527), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3647), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 23, + ACTIONS(1529), 36, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175662,17 +182378,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42531] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1824), 1, - sym_comment, - ACTIONS(4119), 42, sym__newline, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RPAREN, + 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(4326), 1, + anon_sym_GT2, + ACTIONS(4328), 1, + sym__entry_separator, + STATE(1881), 1, + aux_sym__types_body_repeat2, + STATE(1947), 1, + sym_comment, + ACTIONS(4324), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -175708,26 +182436,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [42582] = 4, + [49202] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1825), 1, + ACTIONS(4330), 1, + aux_sym__immediate_decimal_token5, + STATE(1948), 1, sym_comment, - ACTIONS(1748), 7, + ACTIONS(1854), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1746), 34, + 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, @@ -175756,22 +182482,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [42634] = 4, + [49253] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1826), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(1949), 1, sym_comment, - ACTIONS(1814), 7, + 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(1812), 34, + ACTIONS(1973), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -175794,7 +182520,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, @@ -175804,72 +182529,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, - [42686] = 4, + [49306] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1827), 1, - sym_comment, - ACTIONS(1902), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(4332), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1900), 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, + STATE(1950), 1, + sym_comment, + ACTIONS(4334), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [42738] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4111), 1, - aux_sym__immediate_decimal_token5, - STATE(1828), 1, - sym_comment, - ACTIONS(1756), 7, + ACTIONS(1614), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1754), 33, + ACTIONS(1713), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -175891,7 +182567,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, @@ -175901,78 +182576,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [42792] = 4, + [49359] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1829), 1, - sym_comment, - ACTIONS(1537), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1539), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, + ACTIONS(4336), 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, - [42844] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3972), 1, - anon_sym_list, - ACTIONS(3974), 1, - anon_sym_oneof, - STATE(1830), 1, + STATE(1951), 2, sym_comment, - STATE(1839), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4496), 1, - sym__all_type, - ACTIONS(3970), 2, - anon_sym_table, - anon_sym_record, - STATE(4522), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3968), 31, + aux_sym__types_body_repeat1, + ACTIONS(3760), 36, + anon_sym_LBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176002,21 +182615,68 @@ 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, - [42906] = 4, + 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(1831), 1, + STATE(1953), 1, sym_comment, - ACTIONS(763), 6, + ACTIONS(1519), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(765), 35, + anon_sym_DOT2, + ACTIONS(1521), 34, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176042,79 +182702,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [42958] = 8, - ACTIONS(3), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [49506] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(866), 1, - anon_sym_DOT_DOT2, - ACTIONS(4121), 1, + 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(4123), 1, + 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, - STATE(1832), 1, - sym_comment, - ACTIONS(868), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(858), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(884), 31, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [43018] = 4, + [49557] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1833), 1, + STATE(1955), 1, sym_comment, - ACTIONS(1533), 4, + ACTIONS(1523), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1535), 37, + ACTIONS(1525), 34, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176139,12 +182792,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, @@ -176152,74 +182800,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43070] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4125), 1, + anon_sym_QMARK2, anon_sym_BANG, - STATE(1834), 1, + [49606] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4328), 1, + sym__entry_separator, + ACTIONS(4341), 1, + anon_sym_RBRACK, + STATE(1881), 1, + aux_sym__types_body_repeat2, + STATE(1956), 1, sym_comment, - ACTIONS(1456), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1458), 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, - [43124] = 5, + 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, + [49659] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4127), 1, - aux_sym__immediate_decimal_token5, - STATE(1835), 1, + ACTIONS(2166), 1, + anon_sym_EQ_GT, + ACTIONS(4332), 1, + anon_sym_DOT_DOT2, + STATE(1957), 1, sym_comment, - ACTIONS(1814), 7, + 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, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1812), 33, + ACTIONS(2162), 29, anon_sym_in, anon_sym_DASH2, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -176238,7 +182888,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, @@ -176248,134 +182897,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43178] = 4, + [49714] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1836), 1, - sym_comment, - ACTIONS(789), 6, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(4345), 1, anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(791), 35, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + STATE(1958), 1, + sym_comment, + ACTIONS(4347), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43230] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3972), 1, - anon_sym_list, - ACTIONS(3974), 1, - anon_sym_oneof, - STATE(1837), 1, - sym_comment, - STATE(1839), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4515), 1, - sym__all_type, - ACTIONS(3970), 2, - anon_sym_table, - anon_sym_record, - STATE(4522), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3968), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [43292] = 8, + ACTIONS(1958), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1956), 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, + [49767] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern, - ACTIONS(4129), 1, + ACTIONS(4349), 1, anon_sym_DOT_DOT2, - STATE(1838), 1, + STATE(1959), 1, sym_comment, - ACTIONS(4131), 2, + ACTIONS(4351), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2023), 5, + ACTIONS(1975), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2021), 31, + 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, @@ -176403,79 +182991,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [43352] = 8, - ACTIONS(3), 1, + [49820] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4139), 1, - anon_sym_list, - ACTIONS(4142), 1, - anon_sym_oneof, - STATE(4794), 1, - sym__all_type, - ACTIONS(4136), 2, - anon_sym_table, - anon_sym_record, - STATE(1839), 2, + ACTIONS(4320), 1, + aux_sym__immediate_decimal_token5, + STATE(1960), 1, sym_comment, - aux_sym__composite_argument_body_repeat1, - STATE(4522), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4133), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [43412] = 8, + 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(1615), 1, + ACTIONS(1679), 1, sym__unquoted_pattern, - ACTIONS(2015), 1, + ACTIONS(2642), 1, anon_sym_LPAREN2, - ACTIONS(4145), 1, - anon_sym_DOT_DOT2, - STATE(1840), 1, + STATE(1961), 1, sym_comment, - ACTIONS(4147), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2013), 5, + ACTIONS(2543), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2011), 31, + ACTIONS(2541), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -176507,22 +183084,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [43472] = 4, + [49924] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1841), 1, + ACTIONS(4357), 1, + sym_long_flag_identifier, + ACTIONS(4359), 1, + anon_sym_EQ2, + STATE(1962), 1, sym_comment, - ACTIONS(1541), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1543), 37, + STATE(2203), 1, + sym__flag_equals_value, + ACTIONS(4355), 9, sym_raw_string_begin, + aux_sym_cmd_identifier_token4, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + ACTIONS(4353), 26, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -176536,38 +183125,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_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, - [43524] = 4, + [49979] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1842), 1, + STATE(1963), 1, sym_comment, - ACTIONS(739), 6, + ACTIONS(1527), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, + anon_sym_DOT2, + ACTIONS(1529), 34, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176593,84 +183168,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43576] = 9, + anon_sym_QMARK2, + anon_sym_BANG, + [50028] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_DOT_DOT2, - ACTIONS(4153), 1, - sym_filesize_unit, - ACTIONS(4155), 1, - sym_duration_unit, - ACTIONS(4157), 1, - sym__unquoted_pattern, - STATE(1843), 1, - sym_comment, - ACTIONS(4151), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(858), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(884), 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, + ACTIONS(3058), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4226), 1, + anon_sym_LPAREN, + ACTIONS(4228), 1, + anon_sym_DOLLAR, + ACTIONS(4230), 1, + anon_sym_DOT_DOT, + ACTIONS(4236), 1, + anon_sym_DQUOTE, + ACTIONS(4238), 1, + anon_sym_SQUOTE, + ACTIONS(4240), 1, + anon_sym_BQUOTE, + ACTIONS(4242), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4244), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4246), 1, + aux_sym_unquoted_token1, + ACTIONS(4248), 1, + sym_raw_string_begin, + ACTIONS(4363), 1, + anon_sym_null, + ACTIONS(4367), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4371), 1, + sym_val_date, + STATE(1895), 1, + sym__inter_single_quotes, + STATE(1897), 1, + sym__inter_double_quotes, + STATE(1964), 1, + sym_comment, + STATE(3902), 1, + sym__val_number_decimal, + STATE(5101), 1, + sym_val_bool, + ACTIONS(4232), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4361), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(4369), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5177), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4365), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - 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, - [43638] = 5, + STATE(1903), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1454), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [50123] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4125), 1, - anon_sym_QMARK2, - STATE(1844), 1, + STATE(1965), 1, sym_comment, - ACTIONS(1456), 4, + ACTIONS(1531), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1458), 36, + ACTIONS(1533), 34, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176694,10 +183280,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -176705,16 +183288,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43692] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [50172] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1845), 1, + STATE(1966), 1, sym_comment, - ACTIONS(2272), 3, + ACTIONS(1535), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2270), 37, + anon_sym_DOT2, + ACTIONS(1537), 34, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176739,12 +183325,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, @@ -176752,23 +183333,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43743] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + [50221] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4159), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4161), 1, - aux_sym__immediate_decimal_token5, - STATE(1846), 1, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(1967), 1, sym_comment, - ACTIONS(1748), 6, + ACTIONS(2591), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1746), 32, + ACTIONS(2589), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -176791,7 +183373,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, @@ -176801,16 +183382,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [43798] = 4, + [50274] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1847), 1, + STATE(1968), 1, sym_comment, - ACTIONS(2142), 3, + ACTIONS(1539), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2140), 37, + anon_sym_DOT2, + ACTIONS(1541), 34, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176835,12 +183417,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, @@ -176848,20 +183425,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43849] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [50323] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1848), 1, + ACTIONS(4373), 1, + anon_sym_DOT_DOT2, + STATE(1969), 1, sym_comment, - ACTIONS(1748), 7, + ACTIONS(4375), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2156), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1746), 33, + ACTIONS(2154), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -176883,7 +183465,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, @@ -176893,119 +183474,209 @@ 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, - [43900] = 4, + [50376] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1849), 1, + ACTIONS(4377), 1, + anon_sym_DOT_DOT2, + STATE(1970), 1, sym_comment, - ACTIONS(2290), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2288), 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(4379), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2104), 5, + anon_sym_GT2, anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43951] = 4, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2102), 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, + [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, - STATE(1850), 1, + ACTIONS(4383), 1, + anon_sym_DOT_DOT2, + STATE(1972), 1, sym_comment, - ACTIONS(1523), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1525), 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(4385), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2120), 5, + anon_sym_GT2, anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [44002] = 4, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2118), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [50535] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1973), 1, + sym_comment, + ACTIONS(771), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(773), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [50584] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1851), 1, + STATE(1974), 1, sym_comment, - ACTIONS(1814), 7, + ACTIONS(1772), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1812), 33, + 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, @@ -177034,193 +183705,86 @@ 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, - [44053] = 28, - ACTIONS(103), 1, + [50633] = 27, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2740), 1, - anon_sym_COLON2, - ACTIONS(4163), 1, - anon_sym_null, - ACTIONS(4167), 1, + ACTIONS(3058), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4296), 1, anon_sym_LPAREN, - ACTIONS(4169), 1, + ACTIONS(4298), 1, anon_sym_DOLLAR, - ACTIONS(4171), 1, + ACTIONS(4300), 1, anon_sym_DOT_DOT, - ACTIONS(4175), 1, - sym_val_date, - ACTIONS(4177), 1, + ACTIONS(4304), 1, anon_sym_DQUOTE, - ACTIONS(4179), 1, + ACTIONS(4306), 1, anon_sym_SQUOTE, - ACTIONS(4181), 1, + ACTIONS(4308), 1, anon_sym_BQUOTE, - ACTIONS(4183), 1, + ACTIONS(4310), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4185), 1, + ACTIONS(4312), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4314), 1, aux_sym_unquoted_token1, - ACTIONS(4189), 1, + ACTIONS(4316), 1, sym_raw_string_begin, - STATE(1852), 1, - sym_comment, - STATE(1859), 1, + 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(1874), 1, + STATE(1944), 1, sym__inter_single_quotes, - STATE(3787), 1, + STATE(1975), 1, + sym_comment, + STATE(3923), 1, sym__val_number_decimal, - STATE(5027), 1, + STATE(5101), 1, sym_val_bool, - ACTIONS(3036), 2, + ACTIONS(4302), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4361), 2, anon_sym_true, anon_sym_false, - ACTIONS(3046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3048), 2, + ACTIONS(4369), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(4173), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5124), 2, + STATE(4991), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4165), 3, + ACTIONS(4387), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(1871), 4, + STATE(1927), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(1441), 5, + STATE(1463), 5, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, sym_unquoted, - [44152] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1853), 1, - sym_comment, - ACTIONS(1500), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1502), 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, - [44203] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1854), 1, - sym_comment, - ACTIONS(1504), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1506), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [44254] = 8, - ACTIONS(3), 1, + [50728] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3972), 1, - anon_sym_list, - ACTIONS(3974), 1, - anon_sym_oneof, - STATE(1855), 1, + 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, - STATE(4196), 1, - sym__all_type, - ACTIONS(3970), 2, - anon_sym_table, - anon_sym_record, - STATE(4522), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3968), 31, + ACTIONS(4324), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177250,28 +183814,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, - [44313] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3809), 1, + anon_sym_record, anon_sym_list, - ACTIONS(3811), 1, anon_sym_oneof, - STATE(1856), 1, + [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, - STATE(4969), 1, - sym__type_annotation, - ACTIONS(3807), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3805), 31, + ACTIONS(4343), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177301,32 +183861,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, - [44372] = 8, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [50834] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4121), 1, - sym_filesize_unit, - ACTIONS(4123), 1, - sym_duration_unit, - ACTIONS(4191), 1, - anon_sym_DOT_DOT2, - STATE(1857), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(1978), 1, sym_comment, - ACTIONS(4193), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(858), 5, + ACTIONS(1958), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(884), 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, @@ -177354,262 +183914,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44431] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4195), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4197), 1, - aux_sym__immediate_decimal_token5, - STATE(1858), 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, - [44486] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1859), 1, - sym_comment, - ACTIONS(2260), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2258), 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, - [44537] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4199), 1, - anon_sym_DOT, - ACTIONS(4201), 1, - aux_sym__immediate_decimal_token5, - STATE(1860), 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, - [44592] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1861), 1, - sym_comment, - ACTIONS(1689), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1687), 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(1541), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1543), 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, - [44694] = 4, + [50887] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1863), 1, + STATE(1979), 1, sym_comment, - ACTIONS(1902), 7, + ACTIONS(2527), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1900), 33, + 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, @@ -177638,166 +183959,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [44745] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1864), 1, - sym_comment, - ACTIONS(1848), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1846), 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, - [44796] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1865), 1, - sym_comment, - ACTIONS(1533), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1535), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [44847] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1866), 1, - sym_comment, - ACTIONS(1496), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1498), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [44898] = 6, + [50936] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4203), 1, - anon_sym_DOT, - ACTIONS(4205), 1, - aux_sym__immediate_decimal_token5, - STATE(1867), 1, + STATE(1980), 1, sym_comment, - ACTIONS(1756), 6, + ACTIONS(1854), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1754), 32, + ACTIONS(1852), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -177830,124 +184004,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44953] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1868), 1, - sym_comment, - ACTIONS(1537), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1539), 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, - [45004] = 4, - ACTIONS(3), 1, + [50985] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1869), 1, + 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(1527), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1529), 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, - [45055] = 8, + 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(1615), 1, - sym__unquoted_pattern, - ACTIONS(2015), 1, + ACTIONS(2652), 1, anon_sym_LPAREN2, - ACTIONS(4207), 1, - anon_sym_DOT_DOT2, - STATE(1870), 1, + ACTIONS(2654), 1, + sym__unquoted_pattern, + STATE(1982), 1, sym_comment, - ACTIONS(4209), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2013), 5, + ACTIONS(2650), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2011), 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, @@ -177975,111 +184098,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [45114] = 4, + [51091] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1871), 1, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(1983), 1, sym_comment, - ACTIONS(1519), 3, - 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, - ACTIONS(1521), 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, - [45165] = 4, - ACTIONS(3), 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_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + 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(1872), 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(2150), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2148), 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, - [45216] = 4, + 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(4211), 1, + ACTIONS(4328), 1, sym__entry_separator, - STATE(1873), 2, - sym_comment, + ACTIONS(4399), 1, + anon_sym_GT2, + STATE(1881), 1, aux_sym__types_body_repeat2, - ACTIONS(3729), 38, - anon_sym_LBRACK, - anon_sym_RBRACK, + STATE(1985), 1, + sym_comment, + ACTIONS(4324), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178114,122 +184240,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - anon_sym_GT2, anon_sym_oneof, - [45267] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1874), 1, - sym_comment, - ACTIONS(2260), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2258), 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, - [45318] = 4, - ACTIONS(3), 1, + [51254] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1875), 1, + STATE(1986), 1, sym_comment, - ACTIONS(2268), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2266), 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, - [45369] = 8, - ACTIONS(3), 1, + 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(3972), 1, - anon_sym_list, - ACTIONS(3974), 1, - anon_sym_oneof, - STATE(1876), 1, + 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, - STATE(4669), 1, - sym__all_type, - ACTIONS(3970), 2, - anon_sym_table, - anon_sym_record, - STATE(4522), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3968), 31, + ACTIONS(4343), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -178259,65 +184327,120 @@ 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, - [45428] = 4, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [51356] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1877), 1, + ACTIONS(4332), 1, + anon_sym_DOT_DOT2, + STATE(1988), 1, sym_comment, - ACTIONS(1580), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(4334), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2164), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2162), 30, anon_sym_in, - ACTIONS(1582), 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_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [51409] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1989), 1, + sym_comment, + ACTIONS(1872), 6, + 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, - [45479] = 4, + 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, + 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, + [51458] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1878), 1, + ACTIONS(4274), 1, + anon_sym_DOT2, + STATE(1990), 1, sym_comment, - ACTIONS(2286), 3, + 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(2284), 37, + ACTIONS(1506), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178342,12 +184465,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, @@ -178355,30 +184473,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45530] = 8, + [51513] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, + ACTIONS(2656), 1, anon_sym_LPAREN2, - ACTIONS(2031), 1, + ACTIONS(2658), 1, sym__unquoted_pattern, - ACTIONS(4214), 1, - anon_sym_DOT_DOT2, - STATE(1879), 1, + STATE(1991), 1, sym_comment, - ACTIONS(4216), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2023), 5, + ACTIONS(994), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2021), 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, @@ -178406,69 +184520,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [45589] = 8, + [51566] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3972), 1, - anon_sym_list, - ACTIONS(3974), 1, - anon_sym_oneof, - STATE(1880), 1, + ACTIONS(4292), 1, + aux_sym__immediate_decimal_token5, + STATE(1992), 1, sym_comment, - STATE(4807), 1, - sym__type_annotation, - ACTIONS(3970), 2, - anon_sym_table, - anon_sym_record, - STATE(4715), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3968), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [45648] = 4, + ACTIONS(1746), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1744), 31, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [51617] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1881), 1, + ACTIONS(4403), 1, + anon_sym_DOT2, + STATE(2158), 1, + sym_path, + STATE(1993), 2, sym_comment, - ACTIONS(1504), 3, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1508), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1506), 36, + ACTIONS(1510), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178492,10 +184605,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178503,230 +184613,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45698] = 4, + [51670] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1882), 1, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(1994), 1, sym_comment, - ACTIONS(1496), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1020), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1022), 31, anon_sym_in, - ACTIONS(1498), 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, - [45748] = 27, - 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_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [51723] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2950), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4163), 1, - anon_sym_null, - ACTIONS(4175), 1, - sym_val_date, - ACTIONS(4220), 1, - anon_sym_LPAREN, - ACTIONS(4222), 1, - anon_sym_DOLLAR, - ACTIONS(4224), 1, - anon_sym_DOT_DOT, - ACTIONS(4228), 1, - anon_sym_DQUOTE, - ACTIONS(4230), 1, - anon_sym_SQUOTE, - ACTIONS(4232), 1, - anon_sym_BQUOTE, - ACTIONS(4234), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4236), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4238), 1, - aux_sym_unquoted_token1, - ACTIONS(4240), 1, - sym_raw_string_begin, - STATE(1883), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(1995), 1, sym_comment, - STATE(1903), 1, - sym__inter_single_quotes, - STATE(1914), 1, - sym__inter_double_quotes, - STATE(3838), 1, - sym__val_number_decimal, - STATE(5027), 1, - sym_val_bool, - ACTIONS(3036), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3048), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4226), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(4915), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4218), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1899), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1456), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [45844] = 4, + ACTIONS(2599), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2597), 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, + [51776] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1884), 1, + ACTIONS(4406), 1, + anon_sym_DOT_DOT2, + STATE(1996), 1, sym_comment, - ACTIONS(1523), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + 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(2110), 30, 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, + 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, + [51829] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2804), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + STATE(1997), 1, + sym_comment, + STATE(2072), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, 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, - [45894] = 4, + anon_sym_SLASH2, + ACTIONS(4412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2722), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2720), 26, + anon_sym_in, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [51887] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1885), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(1998), 1, sym_comment, - ACTIONS(1580), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - 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, + ACTIONS(2599), 5, + anon_sym_GT2, anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [45944] = 6, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2597), 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, + [51939] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4242), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4244), 1, - aux_sym__immediate_decimal_token5, - STATE(1886), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(1999), 1, + sym_comment, + ACTIONS(1975), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1973), 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, + [51991] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(2642), 1, + anon_sym_LPAREN2, + STATE(2000), 1, sym_comment, - ACTIONS(1748), 6, + ACTIONS(2543), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1746), 31, + ACTIONS(2541), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -178748,7 +184932,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, @@ -178758,75 +184941,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [45998] = 8, + [52043] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4246), 1, - anon_sym_DOT2, - STATE(1887), 1, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(2001), 1, sym_comment, - STATE(1936), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2126), 1, - sym_path, - STATE(2153), 1, - sym_cell_path, - ACTIONS(1858), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(2591), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2589), 30, anon_sym_in, - ACTIONS(1856), 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, - [46056] = 5, + 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, + [52095] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4205), 1, - aux_sym__immediate_decimal_token5, - STATE(1888), 1, + STATE(2002), 1, sym_comment, - ACTIONS(1756), 6, + ACTIONS(2527), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1754), 32, + ACTIONS(2525), 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, @@ -178855,330 +185031,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [46108] = 8, + [52143] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4246), 1, - anon_sym_DOT2, - STATE(1889), 1, + STATE(2003), 1, sym_comment, - STATE(1936), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2126), 1, - sym_path, - STATE(2184), 1, - sym_cell_path, - ACTIONS(1882), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(2650), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2648), 32, anon_sym_in, - ACTIONS(1880), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_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, - [46166] = 4, + 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, + [52191] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1890), 1, + ACTIONS(2652), 1, + anon_sym_LPAREN2, + ACTIONS(2654), 1, + sym__unquoted_pattern, + STATE(2004), 1, sym_comment, - ACTIONS(1500), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1502), 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(2650), 5, + anon_sym_GT2, anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [46216] = 4, + anon_sym_LT2, + anon_sym_SLASH2, + 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, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [52243] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1891), 1, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(2005), 1, sym_comment, - ACTIONS(2286), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2284), 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(1020), 5, + anon_sym_GT2, anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [46266] = 7, + 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, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [52295] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4248), 1, - anon_sym_QMARK2, - ACTIONS(4250), 1, - anon_sym_BANG, - STATE(1892), 1, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(2006), 1, sym_comment, - STATE(2122), 1, - sym__path_suffix, - ACTIONS(1442), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, + 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_DOT2, - 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, - [46322] = 27, + 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, + [52347] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4163), 1, - anon_sym_null, - ACTIONS(4167), 1, - anon_sym_LPAREN, - ACTIONS(4169), 1, - anon_sym_DOLLAR, - ACTIONS(4171), 1, - anon_sym_DOT_DOT, - ACTIONS(4175), 1, - sym_val_date, - ACTIONS(4177), 1, - anon_sym_DQUOTE, - ACTIONS(4179), 1, - anon_sym_SQUOTE, - ACTIONS(4181), 1, - anon_sym_BQUOTE, - ACTIONS(4183), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4185), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4187), 1, - aux_sym_unquoted_token1, - ACTIONS(4189), 1, + ACTIONS(4418), 1, + anon_sym_RBRACK, + ACTIONS(4420), 1, + sym__entry_separator, + ACTIONS(4422), 1, sym_raw_string_begin, - STATE(1859), 1, - sym__inter_double_quotes, - STATE(1874), 1, - sym__inter_single_quotes, - STATE(1893), 1, - sym_comment, - STATE(3787), 1, - sym__val_number_decimal, - STATE(5027), 1, - sym_val_bool, - ACTIONS(3036), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3046), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3048), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4173), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5124), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4165), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1871), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1441), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [46418] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4252), 1, - anon_sym_DOT, - ACTIONS(4254), 1, - aux_sym__immediate_decimal_token5, - STATE(1894), 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, - [46472] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1895), 1, + STATE(2007), 1, sym_comment, - ACTIONS(1848), 3, + STATE(2123), 1, + aux_sym__types_body_repeat2, + ACTIONS(4416), 33, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1846), 36, - sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -179192,16 +185246,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, - 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, @@ -179209,117 +185260,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46522] = 4, + [52401] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1896), 1, + ACTIONS(4424), 1, + sym__newline, + ACTIONS(4428), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_DOT_DOT, + STATE(2008), 1, sym_comment, - ACTIONS(1527), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1529), 36, + 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, - 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, + 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, - [46572] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [52457] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1897), 1, + STATE(2009), 1, sym_comment, - ACTIONS(2150), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2148), 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(1772), 6, + 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, - [46622] = 5, + 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, + [52505] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4256), 1, - aux_sym__immediate_decimal_token5, - STATE(1898), 1, + STATE(2010), 1, sym_comment, - ACTIONS(1814), 6, + ACTIONS(1854), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1812), 32, + 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, @@ -179348,62 +185396,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [46674] = 4, + [52553] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1899), 1, + STATE(2011), 1, sym_comment, - ACTIONS(1519), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1521), 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(1872), 6, + 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, - [46724] = 4, - ACTIONS(103), 1, + 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, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [52601] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3744), 1, - sym__entry_separator, - STATE(1900), 1, + ACTIONS(4436), 1, + sym__newline, + STATE(2012), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(3742), 38, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1966), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -179438,214 +185483,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - anon_sym_GT2, anon_sym_oneof, - [46774] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1901), 1, - sym_comment, - ACTIONS(1689), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1687), 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, - [46824] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4246), 1, - anon_sym_DOT2, - STATE(1902), 1, - sym_comment, - STATE(1936), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2126), 1, - sym_path, - STATE(2196), 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, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [46882] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1903), 1, - sym_comment, - ACTIONS(2260), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2258), 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, - [46932] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1904), 1, - sym_comment, - ACTIONS(2290), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2288), 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, - [46982] = 6, + [52649] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4258), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4260), 1, - aux_sym__immediate_decimal_token5, - STATE(1905), 1, + 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(739), 7, + ACTIONS(4441), 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(741), 30, + ACTIONS(4439), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -179675,262 +185531,414 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_duration_unit, - [47036] = 8, + [52703] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4246), 1, - anon_sym_DOT2, - STATE(1906), 1, - sym_comment, - STATE(1936), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2126), 1, - sym_path, - STATE(2160), 1, - sym_cell_path, - ACTIONS(1450), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1452), 32, + ACTIONS(2280), 1, + anon_sym_DOT2, + STATE(428), 1, + sym_cell_path, + STATE(622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(720), 1, + sym_path, + STATE(2014), 1, + sym_comment, + ACTIONS(1442), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1444), 31, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + [52759] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4328), 1, + sym__entry_separator, + STATE(1881), 1, + aux_sym__types_body_repeat2, + STATE(2015), 1, + sym_comment, + ACTIONS(4343), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [52809] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3720), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - 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(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_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47094] = 4, - ACTIONS(3), 1, + 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, - STATE(1907), 1, - sym_comment, - ACTIONS(2268), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2266), 36, + ACTIONS(4454), 1, + anon_sym_RBRACK, + ACTIONS(4456), 1, + sym__entry_separator, + ACTIONS(4458), 1, sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + STATE(2016), 1, + aux_sym__types_body_repeat2, + STATE(2017), 1, + sym_comment, + ACTIONS(4452), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR2, + 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, - [47144] = 4, - ACTIONS(3), 1, + 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, - STATE(1908), 1, - sym_comment, - ACTIONS(2272), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2270), 36, + ACTIONS(4456), 1, + sym__entry_separator, + ACTIONS(4458), 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, + ACTIONS(4460), 1, + anon_sym_RBRACK, + STATE(2016), 1, + aux_sym__types_body_repeat2, + STATE(2018), 1, + sym_comment, + ACTIONS(4452), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR2, + 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, - [47194] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [52967] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(1909), 1, + ACTIONS(2860), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2019), 1, sym_comment, - ACTIONS(2142), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + STATE(2035), 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(2754), 19, anon_sym_in, - ACTIONS(2140), 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, + 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, + [53033] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2860), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2020), 1, + sym_comment, + STATE(2037), 1, + aux_sym__repeat_newline, + ACTIONS(2756), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4410), 2, 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, - [47244] = 5, - ACTIONS(103), 1, + 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(2754), 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, + [53097] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4262), 1, - aux_sym__immediate_decimal_token5, - STATE(1910), 1, + ACTIONS(2860), 1, + sym__newline, + STATE(2021), 1, sym_comment, - ACTIONS(763), 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(765), 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, - [47296] = 6, + STATE(2038), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2756), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2754), 26, + anon_sym_in, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [53155] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - anon_sym_DOT, - ACTIONS(4266), 1, - aux_sym__immediate_decimal_token5, - STATE(1911), 1, + ACTIONS(2860), 1, + sym__newline, + STATE(2022), 1, sym_comment, - ACTIONS(1756), 6, + STATE(2040), 1, + aux_sym__repeat_newline, + ACTIONS(4412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2756), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1754), 31, + ACTIONS(2754), 28, anon_sym_in, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -179949,9 +185957,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -179959,29 +185964,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47350] = 8, - ACTIONS(3), 1, + [53209] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4246), 1, - anon_sym_DOT2, - STATE(1912), 1, + 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(1936), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2126), 1, - sym_path, - STATE(2204), 1, - sym_cell_path, - ACTIONS(1874), 3, + STATE(2123), 1, + aux_sym__types_body_repeat2, + ACTIONS(4416), 33, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1872), 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, @@ -179995,13 +185997,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, @@ -180009,125 +186011,521 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47408] = 8, + [53263] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4246), 1, - anon_sym_DOT2, - STATE(1913), 1, + ACTIONS(2860), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + ACTIONS(4478), 1, + anon_sym_bit_DASHand2, + ACTIONS(4480), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4482), 1, + anon_sym_bit_DASHor2, + STATE(2024), 1, sym_comment, - STATE(1936), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2126), 1, - sym_path, - STATE(2191), 1, - sym_cell_path, - ACTIONS(1894), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + STATE(2042), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2754), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4466), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4476), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4474), 8, anon_sym_in, - ACTIONS(1892), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [47466] = 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, + [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, - STATE(1914), 1, + ACTIONS(2860), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + ACTIONS(4478), 1, + anon_sym_bit_DASHand2, + ACTIONS(4480), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4482), 1, + anon_sym_bit_DASHor2, + ACTIONS(4484), 1, + anon_sym_and2, + STATE(2026), 1, sym_comment, - ACTIONS(2260), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + STATE(2044), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2754), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4466), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4476), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4474), 8, anon_sym_in, - ACTIONS(2258), 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, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [53467] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + ACTIONS(4478), 1, + anon_sym_bit_DASHand2, + ACTIONS(4480), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4482), 1, + anon_sym_bit_DASHor2, + ACTIONS(4484), 1, + anon_sym_and2, + ACTIONS(4486), 1, + anon_sym_xor2, + STATE(2027), 1, + sym_comment, + STATE(2046), 1, + aux_sym__repeat_newline, + ACTIONS(2754), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4410), 2, 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, - [47516] = 8, + anon_sym_SLASH2, + ACTIONS(4412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4470), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4466), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4476), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4474), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [53547] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4246), 1, - anon_sym_DOT2, - STATE(1915), 1, + ACTIONS(2860), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2028), 1, sym_comment, - STATE(1936), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2126), 1, - sym_path, - STATE(2205), 1, - sym_cell_path, - ACTIONS(1865), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + STATE(2048), 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(4474), 8, anon_sym_in, - ACTIONS(1862), 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, + 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(2860), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + 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, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [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, + 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, + 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, + 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(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, @@ -180141,13 +186539,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, @@ -180155,73 +186553,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47574] = 5, - ACTIONS(103), 1, + [53947] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4201), 1, - aux_sym__immediate_decimal_token5, - STATE(1916), 1, + ACTIONS(2804), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2034), 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, - [47626] = 6, + STATE(2070), 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(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(4268), 1, - anon_sym_DOT_DOT2, - STATE(1917), 1, + 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(4270), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 5, + ACTIONS(4490), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4496), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(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_STAR2, anon_sym_LT2, + ACTIONS(4410), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2152), 30, + 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_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -180240,31 +186707,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + 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, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, - [47679] = 6, + [54203] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1691), 1, - sym__unquoted_pattern, - ACTIONS(2564), 1, - anon_sym_LPAREN2, - STATE(1918), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2038), 1, sym_comment, - ACTIONS(2562), 5, - anon_sym_GT2, + ACTIONS(4494), 2, anon_sym_STAR2, - anon_sym_LT2, 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(2560), 31, + ACTIONS(2724), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180287,33 +186804,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, - [47732] = 6, + [54259] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2574), 1, - anon_sym_LPAREN2, - ACTIONS(2576), 1, - sym__unquoted_pattern, - STATE(1919), 1, + ACTIONS(2804), 1, + sym__newline, + STATE(2039), 1, sym_comment, - ACTIONS(2572), 5, + 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(2570), 31, + ACTIONS(2720), 28, anon_sym_in, - sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -180334,8 +186849,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, @@ -180343,69 +186856,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47785] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4274), 1, - anon_sym_GT2, - ACTIONS(4276), 1, - sym__entry_separator, - STATE(1873), 1, - aux_sym__types_body_repeat2, - STATE(1920), 1, - sym_comment, - ACTIONS(4272), 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, - [47838] = 6, + [54313] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2525), 1, - anon_sym_LPAREN2, - ACTIONS(2527), 1, - sym__unquoted_pattern, - STATE(1921), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2040), 1, sym_comment, - ACTIONS(2523), 5, + 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(2521), 31, + ACTIONS(2724), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180428,8 +186895,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, @@ -180437,29 +186902,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47891] = 6, + [54365] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2594), 1, - anon_sym_LPAREN2, - ACTIONS(2596), 1, - sym__unquoted_pattern, - STATE(1922), 1, + 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, - ACTIONS(1629), 5, - anon_sym_GT2, + STATE(2074), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1716), 31, + 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(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, - sym__newline, + anon_sym_not_DASHin2, + anon_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(4494), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4496), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4508), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(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, anon_sym_not_DASHhas2, @@ -180467,136 +187017,376 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [54515] = 19, + 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, + ACTIONS(4484), 1, + anon_sym_and2, + 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, + 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(2044), 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), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + 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, + [54669] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + ACTIONS(4478), 1, anon_sym_bit_DASHand2, + ACTIONS(4480), 1, anon_sym_bit_DASHxor2, + ACTIONS(4482), 1, anon_sym_bit_DASHor2, - [47944] = 6, - ACTIONS(103), 1, + ACTIONS(4484), 1, + anon_sym_and2, + ACTIONS(4486), 1, + anon_sym_xor2, + STATE(2045), 1, + sym_comment, + STATE(2076), 1, + aux_sym__repeat_newline, + 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(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(4276), 1, - sym__entry_separator, - ACTIONS(4278), 1, - anon_sym_RBRACK, - STATE(1873), 1, - aux_sym__types_body_repeat2, - STATE(1923), 1, + 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(4280), 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, - [47997] = 6, - ACTIONS(103), 1, + 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(4276), 1, - sym__entry_separator, - ACTIONS(4282), 1, - anon_sym_RBRACK, - STATE(1873), 1, - aux_sym__types_body_repeat2, - STATE(1924), 1, + ACTIONS(2804), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2047), 1, sym_comment, - ACTIONS(4280), 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, - [48050] = 6, + STATE(2077), 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(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, + ACTIONS(2720), 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, + [54895] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, - anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(1925), 1, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2048), 1, sym_comment, - ACTIONS(1008), 5, + ACTIONS(4490), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1030), 31, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4496), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4506), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2724), 12, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [54961] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2804), 1, sym__newline, + ACTIONS(4464), 1, anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2049), 1, + sym_comment, + STATE(2078), 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(2720), 25, + anon_sym_in, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -180616,34 +187406,37 @@ 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, - [48103] = 6, + [55023] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, - anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(1926), 1, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2050), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(2726), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(994), 31, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2724), 26, anon_sym_in, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -180663,260 +187456,379 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [55083] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2804), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2051), 1, + sym_comment, + STATE(2079), 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(2720), 7, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48156] = 4, - ACTIONS(103), 1, + 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, + [55153] = 14, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1927), 1, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2052), 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, - [48205] = 4, - ACTIONS(103), 1, + ACTIONS(4490), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4496), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4508), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2724), 8, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4506), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [55221] = 16, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1928), 1, + ACTIONS(2804), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + ACTIONS(4478), 1, + anon_sym_bit_DASHand2, + STATE(2053), 1, sym_comment, - ACTIONS(763), 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(765), 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, - [48254] = 4, - ACTIONS(103), 1, + STATE(2080), 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(2720), 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, + [55293] = 15, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1929), 1, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + ACTIONS(4510), 1, + anon_sym_bit_DASHand2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2054), 1, sym_comment, - ACTIONS(789), 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(791), 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, - [48303] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4276), 1, - sym__entry_separator, - ACTIONS(4284), 1, + ACTIONS(4490), 2, anon_sym_GT2, - STATE(1873), 1, - aux_sym__types_body_repeat2, - STATE(1930), 1, - sym_comment, - ACTIONS(4272), 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, - [48356] = 6, - ACTIONS(103), 1, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4496), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4508), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2724), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4506), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [55363] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4276), 1, - sym__entry_separator, - ACTIONS(4286), 1, - anon_sym_GT2, - STATE(1873), 1, - aux_sym__types_body_repeat2, - STATE(1931), 1, + 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, + STATE(2055), 1, sym_comment, - ACTIONS(4272), 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, - [48409] = 4, + STATE(2081), 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(2720), 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, + [55437] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1932), 1, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + ACTIONS(4510), 1, + anon_sym_bit_DASHand2, + ACTIONS(4512), 1, + anon_sym_bit_DASHxor2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2056), 1, sym_comment, - ACTIONS(1748), 6, + ACTIONS(4490), 2, anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4496), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4508), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2724), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4506), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [55509] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2831), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2057), 1, + sym_comment, + STATE(2083), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1746), 32, + 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(2730), 19, anon_sym_in, - sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -180928,87 +187840,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_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, - [48458] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4276), 1, - sym__entry_separator, - ACTIONS(4288), 1, - anon_sym_RBRACK, - STATE(1873), 1, - aux_sym__types_body_repeat2, - STATE(1933), 1, - sym_comment, - ACTIONS(4280), 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, - [48511] = 4, + [55575] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(1934), 1, + ACTIONS(2831), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2058), 1, sym_comment, - ACTIONS(1814), 6, + STATE(2141), 1, + aux_sym__repeat_newline, + ACTIONS(2732), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4410), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1812), 32, + 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(2730), 23, anon_sym_in, - sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -181028,31 +187896,33 @@ 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, - [48560] = 4, + [55639] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1935), 1, + ACTIONS(2831), 1, + sym__newline, + STATE(2059), 1, sym_comment, - ACTIONS(1902), 6, - anon_sym_GT2, + STATE(2087), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, anon_sym_STAR2, - anon_sym_LT2, 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(2732), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1900), 32, + ACTIONS(2730), 26, anon_sym_in, - sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -181073,266 +187943,31 @@ 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, - [48609] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4246), 1, - anon_sym_DOT2, - STATE(1936), 1, - sym_comment, - STATE(1937), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2126), 1, - sym_path, - ACTIONS(1515), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1517), 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, - [48664] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4290), 1, - anon_sym_DOT2, - STATE(2126), 1, - sym_path, - STATE(1937), 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, - [48717] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4276), 1, - sym__entry_separator, - ACTIONS(4293), 1, - anon_sym_GT2, - STATE(1873), 1, - aux_sym__types_body_repeat2, - STATE(1938), 1, - sym_comment, - ACTIONS(4272), 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, - [48770] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1939), 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, - [48819] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1940), 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, - [48868] = 6, + [55697] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern, - STATE(1941), 1, + ACTIONS(2831), 1, + sym__newline, + STATE(2060), 1, sym_comment, - ACTIONS(2023), 5, + STATE(2089), 1, + aux_sym__repeat_newline, + ACTIONS(4412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2732), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2021), 31, + ACTIONS(2730), 28, anon_sym_in, - sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -181353,8 +187988,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, @@ -181362,207 +187995,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48921] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1942), 1, - sym_comment, - ACTIONS(1496), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1498), 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, - [48970] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1943), 1, - sym_comment, - ACTIONS(1500), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1502), 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, - [49019] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1944), 1, - sym_comment, - ACTIONS(1504), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1506), 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, - [49068] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4254), 1, - aux_sym__immediate_decimal_token5, - STATE(1945), 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, - [49119] = 4, + [55751] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(1946), 1, + ACTIONS(2831), 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(2061), 1, sym_comment, - ACTIONS(2508), 6, - anon_sym_GT2, + STATE(2091), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2506), 32, - anon_sym_in, - sym__newline, - anon_sym_DASH2, + 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(2730), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(4466), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4476), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4474), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -181570,162 +188053,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [55827] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2831), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + ACTIONS(4478), 1, + anon_sym_bit_DASHand2, + ACTIONS(4480), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4482), 1, + anon_sym_bit_DASHor2, + ACTIONS(4484), 1, + anon_sym_and2, + STATE(2062), 1, + sym_comment, + STATE(2093), 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(2730), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4466), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, + 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, + [55905] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + ACTIONS(4478), 1, + anon_sym_bit_DASHand2, + ACTIONS(4480), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4482), 1, + anon_sym_bit_DASHor2, + ACTIONS(4484), 1, + anon_sym_and2, + ACTIONS(4486), 1, + anon_sym_xor2, + STATE(2063), 1, + sym_comment, + STATE(2095), 1, + aux_sym__repeat_newline, + ACTIONS(2730), 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(4470), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [49168] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(858), 1, - anon_sym_COLON2, - ACTIONS(864), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4295), 1, - sym_filesize_unit, - ACTIONS(4297), 1, - sym_duration_unit, - STATE(1947), 1, - sym_comment, - ACTIONS(862), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(860), 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, - [49225] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3046), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4220), 1, - anon_sym_LPAREN, - ACTIONS(4222), 1, - anon_sym_DOLLAR, - ACTIONS(4224), 1, - anon_sym_DOT_DOT, - ACTIONS(4228), 1, - anon_sym_DQUOTE, - ACTIONS(4230), 1, - anon_sym_SQUOTE, - ACTIONS(4232), 1, - anon_sym_BQUOTE, - ACTIONS(4234), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4236), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4238), 1, - aux_sym_unquoted_token1, - ACTIONS(4240), 1, - sym_raw_string_begin, - ACTIONS(4301), 1, - anon_sym_null, - ACTIONS(4305), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4309), 1, - sym_val_date, - STATE(1903), 1, - sym__inter_single_quotes, - STATE(1914), 1, - sym__inter_double_quotes, - STATE(1948), 1, - sym_comment, - STATE(3838), 1, - sym__val_number_decimal, - STATE(5027), 1, - sym_val_bool, - ACTIONS(4226), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4299), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4307), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4915), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4303), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1899), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1450), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [49320] = 5, + 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, + [55985] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4266), 1, - aux_sym__immediate_decimal_token5, - STATE(1949), 1, + ACTIONS(2831), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2064), 1, sym_comment, - ACTIONS(1756), 6, - anon_sym_GT2, + STATE(2097), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1754), 31, + 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(4474), 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, @@ -181733,42 +188214,46 @@ 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(2730), 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_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, - [49371] = 5, + [56053] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4311), 1, - aux_sym__immediate_decimal_token5, - STATE(1950), 1, + ACTIONS(2831), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2065), 1, sym_comment, - ACTIONS(1814), 6, + STATE(2099), 1, + aux_sym__repeat_newline, + ACTIONS(2732), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4410), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1812), 31, + ACTIONS(4412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2730), 25, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -181787,200 +188272,59 @@ 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, - [49422] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4313), 1, - aux_sym__immediate_decimal_token5, - STATE(1951), 1, - sym_comment, - ACTIONS(763), 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(765), 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, - [49473] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3046), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4167), 1, - anon_sym_LPAREN, - ACTIONS(4169), 1, - anon_sym_DOLLAR, - ACTIONS(4171), 1, - anon_sym_DOT_DOT, - ACTIONS(4177), 1, - anon_sym_DQUOTE, - ACTIONS(4179), 1, - anon_sym_SQUOTE, - ACTIONS(4181), 1, - anon_sym_BQUOTE, - ACTIONS(4183), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4185), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4187), 1, - aux_sym_unquoted_token1, - ACTIONS(4189), 1, - sym_raw_string_begin, - ACTIONS(4301), 1, - anon_sym_null, - ACTIONS(4305), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4309), 1, - sym_val_date, - STATE(1859), 1, - sym__inter_double_quotes, - STATE(1874), 1, - sym__inter_single_quotes, - STATE(1952), 1, - sym_comment, - STATE(3787), 1, - sym__val_number_decimal, - STATE(5027), 1, - sym_val_bool, - ACTIONS(4173), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4299), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4307), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(5124), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4315), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1871), 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, - [49568] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4276), 1, - sym__entry_separator, - ACTIONS(4317), 1, - anon_sym_RBRACK, - STATE(1873), 1, - aux_sym__types_body_repeat2, - STATE(1953), 1, - sym_comment, - ACTIONS(4280), 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, - [49621] = 6, + [56115] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern, - STATE(1954), 1, + ACTIONS(2831), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2066), 1, sym_comment, - ACTIONS(2568), 5, - anon_sym_GT2, + STATE(2101), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2566), 31, - anon_sym_in, - sym__newline, - anon_sym_DASH2, + 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(2730), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4474), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -181988,46 +188332,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + [56185] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2831), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + ACTIONS(4478), 1, + anon_sym_bit_DASHand2, + STATE(2067), 1, + sym_comment, + STATE(2103), 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, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [49674] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4319), 1, - anon_sym_DOT_DOT2, - STATE(1955), 1, - sym_comment, - ACTIONS(4321), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2104), 5, + ACTIONS(4462), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2100), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + 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(2730), 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, @@ -182035,90 +188388,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [56257] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2831), 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(2068), 1, + sym_comment, + STATE(2105), 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, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(2730), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [49727] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4323), 1, - sym__newline, - STATE(1956), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3748), 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, - [49776] = 7, - ACTIONS(3), 1, + 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, + [56331] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4330), 1, - sym_long_flag_identifier, - ACTIONS(4332), 1, - anon_sym_EQ2, - STATE(1957), 1, - sym_comment, - STATE(2140), 1, - sym__flag_equals_value, - ACTIONS(4328), 9, + ACTIONS(4420), 1, + sym__entry_separator, + ACTIONS(4422), 1, sym_raw_string_begin, - aux_sym_cmd_identifier_token4, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - ACTIONS(4326), 26, + 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, @@ -182143,28 +188483,50 @@ static const uint16_t ts_small_parse_table[] = { 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, - [49831] = 6, + aux_sym__val_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(4319), 1, - anon_sym_DOT_DOT2, - STATE(1958), 1, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2070), 1, sym_comment, - ACTIONS(4321), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1629), 5, + ACTIONS(4490), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1716), 30, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4496), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2738), 20, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182175,42 +188537,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, - [49884] = 6, + [56449] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2015), 1, - anon_sym_LPAREN2, - STATE(1959), 1, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2071), 1, sym_comment, - ACTIONS(2013), 5, + ACTIONS(2740), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2011), 31, + 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(2738), 24, anon_sym_in, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -182230,36 +188592,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, - [49937] = 7, + [56511] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2102), 1, - anon_sym_EQ_GT, - ACTIONS(4319), 1, - anon_sym_DOT_DOT2, - STATE(1960), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2072), 1, sym_comment, - ACTIONS(4321), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2104), 5, - anon_sym_GT2, + ACTIONS(4494), 2, anon_sym_STAR2, - anon_sym_LT2, 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(2740), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2100), 29, + ACTIONS(2738), 27, anon_sym_in, + sym__newline, anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182278,35 +188638,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49992] = 6, + [56567] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4334), 1, - anon_sym_DOT_DOT2, - STATE(1961), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2073), 1, sym_comment, - ACTIONS(4336), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2013), 5, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2740), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2011), 30, + ACTIONS(2738), 29, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182325,8 +188682,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, @@ -182334,29 +188689,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50045] = 6, + [56619] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4338), 1, - anon_sym_DOT_DOT2, - STATE(1962), 1, + 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(2074), 1, sym_comment, - ACTIONS(4340), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2023), 5, + ACTIONS(4490), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2021), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4496), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4508), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2738), 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, anon_sym_not_DASHhas2, @@ -182364,46 +188746,57 @@ 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, + [56693] = 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, - [50098] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4342), 1, - anon_sym_DOT_DOT2, - STATE(1963), 1, + ACTIONS(4516), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2075), 1, sym_comment, - ACTIONS(4344), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2110), 5, + ACTIONS(4490), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2108), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, + 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(2738), 4, + sym__newline, + anon_sym_LBRACE, anon_sym_xor2, 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, @@ -182411,46 +188804,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [56769] = 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(2076), 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(2738), 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, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50151] = 6, + 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, + [56847] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4346), 1, - anon_sym_DOT_DOT2, - STATE(1964), 1, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2077), 1, sym_comment, - ACTIONS(4348), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2118), 5, + ACTIONS(4490), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2116), 30, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4496), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4506), 8, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -182458,43 +188903,46 @@ 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(2738), 12, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50204] = 6, + [56913] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4350), 1, - anon_sym_DOT_DOT2, - STATE(1965), 1, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2078), 1, sym_comment, - ACTIONS(4352), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2126), 5, + ACTIONS(2740), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2124), 30, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2738), 26, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182513,89 +188961,58 @@ 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, - [50257] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1966), 1, - sym_comment, - ACTIONS(1527), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1529), 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, - [50306] = 9, + [56973] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, - sym__newline, - STATE(1967), 1, - sym_comment, - STATE(2054), 1, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(4354), 2, + STATE(2079), 1, + sym_comment, + ACTIONS(4490), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2690), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2688), 26, - anon_sym_in, - anon_sym_DASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4496), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4508), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2738), 8, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4506), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -182603,39 +189020,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [57041] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + ACTIONS(4510), 1, + anon_sym_bit_DASHand2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2080), 1, + sym_comment, + ACTIONS(4490), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50364] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1968), 1, - sym_comment, - ACTIONS(2523), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2521), 32, - anon_sym_in, + ACTIONS(2738), 7, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4506), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -182643,358 +189075,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [57111] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + ACTIONS(4510), 1, + anon_sym_bit_DASHand2, + ACTIONS(4512), 1, + anon_sym_bit_DASHxor2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2081), 1, + sym_comment, + ACTIONS(4490), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50412] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4360), 1, - anon_sym_QMARK2, - STATE(1969), 1, - sym_comment, - ACTIONS(1456), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1458), 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, - [50462] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4276), 1, - sym__entry_separator, - STATE(1873), 1, - aux_sym__types_body_repeat2, - STATE(1970), 1, - sym_comment, - ACTIONS(4280), 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] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4360), 1, - anon_sym_BANG, - STATE(1971), 1, - sym_comment, - ACTIONS(1456), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1458), 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, - [50562] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4276), 1, - sym__entry_separator, - STATE(1873), 1, - aux_sym__types_body_repeat2, - STATE(1972), 1, - sym_comment, - ACTIONS(4272), 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, - [50612] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3734), 1, - sym_raw_string_begin, - ACTIONS(4362), 1, - sym__entry_separator, - STATE(1973), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3729), 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, + ACTIONS(2738), 6, + sym__newline, 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, - [50662] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4367), 1, - anon_sym_RBRACK, - ACTIONS(4369), 1, - sym__entry_separator, - ACTIONS(4371), 1, - sym_raw_string_begin, - STATE(1974), 1, - sym_comment, - STATE(2104), 1, - aux_sym__types_body_repeat2, - ACTIONS(4365), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4506), 8, 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, - [50716] = 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, + [57183] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4373), 1, + ACTIONS(2941), 1, sym__newline, - STATE(1975), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1926), 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, - [50764] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2594), 1, - anon_sym_LPAREN2, - ACTIONS(2596), 1, - sym__unquoted_pattern, - STATE(1976), 1, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2082), 1, sym_comment, - ACTIONS(1629), 5, - anon_sym_GT2, + STATE(2107), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1716), 30, + 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(2746), 19, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -183005,136 +189177,48 @@ 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, - [50816] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4378), 1, - anon_sym_RBRACK, - ACTIONS(4380), 1, - sym__entry_separator, - ACTIONS(4382), 1, - sym_raw_string_begin, - STATE(1973), 1, - aux_sym__types_body_repeat2, - STATE(1977), 1, - sym_comment, - ACTIONS(4376), 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, - [50870] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4380), 1, - sym__entry_separator, - ACTIONS(4382), 1, - sym_raw_string_begin, - ACTIONS(4384), 1, - anon_sym_RBRACK, - STATE(1973), 1, - aux_sym__types_body_repeat2, - STATE(1978), 1, - sym_comment, - ACTIONS(4376), 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, - [50924] = 6, + [57249] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2015), 1, - anon_sym_LPAREN2, - STATE(1979), 1, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2083), 1, sym_comment, - ACTIONS(2013), 5, + ACTIONS(4490), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2011), 30, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4496), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2750), 20, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -183145,42 +189229,44 @@ 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, - [50976] = 6, + [57313] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern, - STATE(1980), 1, + ACTIONS(2941), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2084), 1, sym_comment, - ACTIONS(2568), 5, + STATE(2108), 1, + aux_sym__repeat_newline, + ACTIONS(2748), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4410), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2566), 30, + 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(2746), 23, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -183199,31 +189285,25 @@ 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, - [51028] = 6, + [57377] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, + ACTIONS(1635), 1, sym__unquoted_pattern, - STATE(1981), 1, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(2085), 1, sym_comment, - ACTIONS(2023), 5, + ACTIONS(1958), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2021), 30, + ACTIONS(1956), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -183254,25 +189334,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51080] = 6, + [57429] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1691), 1, - sym__unquoted_pattern, - ACTIONS(2564), 1, - anon_sym_LPAREN2, - STATE(1982), 1, + ACTIONS(2941), 1, + sym__newline, + STATE(2086), 1, sym_comment, - ACTIONS(2562), 5, - anon_sym_GT2, + STATE(2109), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, anon_sym_STAR2, - anon_sym_LT2, 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(2748), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2560), 30, + ACTIONS(2746), 26, anon_sym_in, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -183291,34 +189378,36 @@ 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, - [51132] = 6, + [57487] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2574), 1, - anon_sym_LPAREN2, - ACTIONS(2576), 1, - sym__unquoted_pattern, - STATE(1983), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2087), 1, sym_comment, - ACTIONS(2572), 5, - anon_sym_GT2, + ACTIONS(4494), 2, anon_sym_STAR2, - anon_sym_LT2, 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(2752), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2570), 30, + ACTIONS(2750), 27, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -183337,31 +189426,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51184] = 4, + [57543] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1984), 1, + ACTIONS(2941), 1, + sym__newline, + STATE(2088), 1, sym_comment, - ACTIONS(2508), 6, + STATE(2110), 1, + aux_sym__repeat_newline, + ACTIONS(4412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2748), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2506), 31, + ACTIONS(2746), 28, anon_sym_in, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -183380,9 +189471,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -183390,25 +189478,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51232] = 6, + [57597] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2525), 1, - anon_sym_LPAREN2, - ACTIONS(2527), 1, - sym__unquoted_pattern, - STATE(1985), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2089), 1, sym_comment, - ACTIONS(2523), 5, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2752), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2521), 30, + ACTIONS(2750), 29, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -183427,8 +189517,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, @@ -183436,28 +189524,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51284] = 6, + [57649] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, - anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(1986), 1, + ACTIONS(2941), 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(2090), 1, sym_comment, - ACTIONS(1008), 5, - anon_sym_GT2, + STATE(2111), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, 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, + 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(2746), 4, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(4466), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4476), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4474), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -183465,45 +189582,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [57725] = 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(2091), 1, + sym_comment, + ACTIONS(4490), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + ACTIONS(2750), 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, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [57799] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2941), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + ACTIONS(4478), 1, + anon_sym_bit_DASHand2, + ACTIONS(4480), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4482), 1, + anon_sym_bit_DASHor2, + ACTIONS(4484), 1, + anon_sym_and2, + STATE(2092), 1, + sym_comment, + STATE(2112), 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(2746), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4466), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4476), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4474), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [57877] = 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, - [51336] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2556), 1, - anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(1987), 1, + ACTIONS(4516), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2093), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(4490), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(994), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, + 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), 4, + sym__newline, + anon_sym_LBRACE, anon_sym_xor2, 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, @@ -183511,179 +189756,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [57953] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + ACTIONS(4478), 1, + anon_sym_bit_DASHand2, + ACTIONS(4480), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4482), 1, + anon_sym_bit_DASHor2, + ACTIONS(4484), 1, + anon_sym_and2, + ACTIONS(4486), 1, + anon_sym_xor2, + STATE(2094), 1, + sym_comment, + STATE(2113), 1, + aux_sym__repeat_newline, + ACTIONS(2746), 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(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, + [58033] = 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(2095), 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, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [51388] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4386), 1, + ACTIONS(2750), 3, sym__newline, - ACTIONS(4390), 1, - anon_sym_LBRACK, - STATE(1988), 1, - sym_comment, - ACTIONS(4393), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2933), 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(2935), 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, - [51442] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1989), 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, - [51490] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4332), 1, - anon_sym_EQ2, - STATE(1990), 1, - sym_comment, - STATE(2187), 1, - sym__flag_equals_value, - ACTIONS(4395), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + 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, - ACTIONS(4397), 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, - [51542] = 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, + [58111] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(1991), 1, + ACTIONS(2941), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2096), 1, sym_comment, - ACTIONS(1748), 6, - anon_sym_GT2, + STATE(2114), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1746), 31, + 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(4474), 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, @@ -183691,43 +189917,51 @@ 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(2746), 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_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, - [51590] = 4, + [58179] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(1992), 1, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2097), 1, sym_comment, - ACTIONS(1814), 6, + ACTIONS(4490), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1812), 31, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4496), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4506), 8, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -183735,40 +189969,47 @@ 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(2750), 12, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_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, - [51638] = 4, + [58245] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(1993), 1, + ACTIONS(2941), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2098), 1, sym_comment, - ACTIONS(1902), 6, + STATE(2115), 1, + aux_sym__repeat_newline, + ACTIONS(2748), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4410), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1900), 31, + ACTIONS(4412), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4414), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2746), 25, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -183787,123 +190028,38 @@ 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, - [51686] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4403), 1, - anon_sym_DASH_DASH, - STATE(2186), 1, - sym_long_flag, - STATE(1994), 2, - sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(4399), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4401), 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, - [51738] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1995), 1, - sym_comment, - ACTIONS(763), 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(765), 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, - [51786] = 4, + [58307] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1996), 1, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2099), 1, sym_comment, - ACTIONS(1008), 5, + ACTIONS(2752), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1030), 32, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2750), 26, anon_sym_in, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -183922,35 +190078,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [58367] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2941), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + STATE(2100), 1, + sym_comment, + STATE(2116), 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(2746), 7, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51834] = 4, + 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, + [58437] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(1997), 1, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2101), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(4490), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(994), 32, - anon_sym_in, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4496), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4508), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2750), 8, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, - 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(4506), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -183958,103 +190192,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [58505] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2941), 1, + sym__newline, + ACTIONS(4464), 1, + anon_sym_DASH2, + ACTIONS(4468), 1, + anon_sym_PLUS2, + ACTIONS(4478), 1, + anon_sym_bit_DASHand2, + STATE(2102), 1, + sym_comment, + STATE(2117), 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(2746), 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, + [58577] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + ACTIONS(4510), 1, + anon_sym_bit_DASHand2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2103), 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, - anon_sym_bit_DASHand2, + 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(2750), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51882] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4410), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4412), 1, - sym_filesize_unit, - ACTIONS(4414), 1, - sym_duration_unit, - STATE(1998), 1, - sym_comment, - ACTIONS(4408), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4406), 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, - [51936] = 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, + [58647] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2391), 1, - anon_sym_DOT2, - STATE(443), 1, - sym_cell_path, - STATE(532), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(791), 1, - sym_path, - STATE(1999), 1, + ACTIONS(2941), 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(2104), 1, sym_comment, - ACTIONS(1450), 2, + STATE(2118), 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(1452), 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, + 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(2746), 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, @@ -184062,25 +190360,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [58721] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + ACTIONS(4510), 1, + anon_sym_bit_DASHand2, + ACTIONS(4512), 1, + anon_sym_bit_DASHxor2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2105), 1, + sym_comment, + ACTIONS(4490), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4498), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4500), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4504), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4496), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - [51992] = 6, + ACTIONS(2750), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4506), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [58793] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4416), 1, + ACTIONS(4424), 1, sym__newline, - STATE(2000), 1, + ACTIONS(4428), 1, + anon_sym_LBRACK, + STATE(2106), 1, sym_comment, - ACTIONS(4393), 2, + ACTIONS(4431), 2, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(2933), 7, + ACTIONS(2958), 7, anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -184088,7 +190436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2935), 27, + ACTIONS(2960), 26, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -184096,7 +190444,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_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DOT_DOT_DOT_LPAREN, @@ -184116,135 +190463,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, - [52044] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4369), 1, - sym__entry_separator, - ACTIONS(4371), 1, - sym_raw_string_begin, - ACTIONS(4419), 1, - anon_sym_RBRACK, - STATE(2001), 1, - sym_comment, - STATE(2104), 1, - aux_sym__types_body_repeat2, - ACTIONS(4365), 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, - [52098] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4369), 1, - sym__entry_separator, - ACTIONS(4371), 1, - sym_raw_string_begin, - ACTIONS(4421), 1, - anon_sym_RBRACK, - STATE(2002), 1, - sym_comment, - STATE(2104), 1, - aux_sym__types_body_repeat2, - ACTIONS(4365), 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, - [52152] = 13, + [58847] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - ACTIONS(4425), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4429), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(2003), 1, - sym_comment, - STATE(2019), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(4354), 2, + STATE(2107), 1, + sym_comment, + ACTIONS(4490), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 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(2756), 19, + ACTIONS(2762), 20, anon_sym_in, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184263,36 +190515,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52218] = 12, + [58911] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - ACTIONS(4425), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4429), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(2004), 1, - sym_comment, - STATE(2021), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(2758), 2, + STATE(2108), 1, + sym_comment, + ACTIONS(2764), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4354), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4431), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2756), 23, + ACTIONS(2762), 24, anon_sym_in, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184315,77 +190566,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52282] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4380), 1, - sym__entry_separator, - ACTIONS(4382), 1, - sym_raw_string_begin, - ACTIONS(4433), 1, - anon_sym_RBRACK, - STATE(1973), 1, - aux_sym__types_body_repeat2, - STATE(2005), 1, - sym_comment, - ACTIONS(4376), 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, - [52336] = 9, + [58973] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - STATE(2006), 1, - sym_comment, - STATE(2022), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(4354), 2, + STATE(2109), 1, + sym_comment, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2758), 3, + ACTIONS(2764), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2756), 26, + ACTIONS(2762), 27, anon_sym_in, + sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -184411,69 +190614,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52394] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2007), 1, - sym_comment, - ACTIONS(2935), 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, - [52440] = 7, + [59029] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - STATE(2008), 1, - sym_comment, - STATE(2024), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(4356), 2, + STATE(2110), 1, + sym_comment, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2758), 5, + ACTIONS(2764), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2756), 28, + ACTIONS(2762), 29, anon_sym_in, + sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -184501,56 +190660,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52494] = 18, + [59081] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - ACTIONS(4425), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4429), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4439), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4441), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - ACTIONS(4443), 1, + ACTIONS(4514), 1, anon_sym_bit_DASHor2, - STATE(2009), 1, - sym_comment, - STATE(2026), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(4354), 2, + STATE(2111), 1, + sym_comment, + ACTIONS(4490), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2756), 4, - anon_sym_LBRACE, - anon_sym_and2, - 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(4437), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4435), 8, + ACTIONS(2762), 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, @@ -184559,57 +190717,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52570] = 19, + [59155] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - ACTIONS(4425), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4429), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4439), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4441), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - ACTIONS(4443), 1, + ACTIONS(4514), 1, anon_sym_bit_DASHor2, - ACTIONS(4445), 1, + ACTIONS(4516), 1, anon_sym_and2, - STATE(2010), 1, - sym_comment, - STATE(2028), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(4354), 2, + STATE(2112), 1, + sym_comment, + ACTIONS(4490), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2756), 3, + 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(4437), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4435), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184618,58 +190775,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52648] = 20, + [59231] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(4425), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4429), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4439), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4441), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - ACTIONS(4443), 1, + ACTIONS(4514), 1, anon_sym_bit_DASHor2, - ACTIONS(4445), 1, + ACTIONS(4516), 1, anon_sym_and2, - ACTIONS(4447), 1, + ACTIONS(4518), 1, anon_sym_xor2, - STATE(2011), 1, - sym_comment, - STATE(2030), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(2756), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4354), 2, + STATE(2113), 1, + sym_comment, + ACTIONS(4490), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, + ACTIONS(4504), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(2762), 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(4437), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4435), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184678,40 +190834,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52728] = 14, + [59309] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - ACTIONS(4425), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4429), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(2012), 1, - sym_comment, - STATE(2032), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(4354), 2, + STATE(2114), 1, + sym_comment, + ACTIONS(4490), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 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(4435), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184720,7 +190874,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2756), 11, + ACTIONS(2762), 12, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184732,33 +190887,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52796] = 11, + [59375] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - ACTIONS(4425), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4429), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(2013), 1, - sym_comment, - STATE(2034), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(2758), 2, + STATE(2115), 1, + sym_comment, + ACTIONS(2764), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4354), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2756), 25, + ACTIONS(2762), 26, anon_sym_in, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184783,45 +190937,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52858] = 15, + [59435] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - ACTIONS(4425), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4429), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - STATE(2014), 1, - sym_comment, - STATE(2036), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(4354), 2, + STATE(2116), 1, + sym_comment, + ACTIONS(4490), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 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), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2756), 7, + ACTIONS(2762), 8, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184829,7 +190982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4435), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184838,54 +190991,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52928] = 16, + [59503] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - ACTIONS(4425), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4429), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4439), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - STATE(2015), 1, - sym_comment, - STATE(2038), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(4354), 2, + STATE(2117), 1, + sym_comment, + ACTIONS(4490), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 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), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2756), 6, + ACTIONS(2762), 7, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4435), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184894,55 +191046,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53000] = 17, + [59573] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2937), 1, - sym__newline, - ACTIONS(4425), 1, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4429), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4439), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4441), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - STATE(2016), 1, - sym_comment, - STATE(2040), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(4354), 2, + STATE(2118), 1, + sym_comment, + ACTIONS(4490), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 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), 4, + ACTIONS(4508), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2756), 5, + ACTIONS(2762), 6, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4435), 8, + ACTIONS(4506), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184951,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, - [53074] = 4, + [59645] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2017), 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(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(789), 7, + ACTIONS(739), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -184964,7 +191162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(791), 30, + ACTIONS(741), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -184995,141 +191193,385 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [53122] = 13, + [59747] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(892), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4524), 1, + sym_filesize_unit, + ACTIONS(4526), 1, + sym_duration_unit, + STATE(2121), 1, + sym_comment, + ACTIONS(890), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(888), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [59801] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, - sym__newline, - ACTIONS(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - STATE(2018), 1, + ACTIONS(4359), 1, + anon_sym_EQ2, + STATE(2122), 1, sym_comment, - STATE(2052), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2688), 19, + STATE(2229), 1, + sym__flag_equals_value, + ACTIONS(4528), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, 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, - [53188] = 12, + ACTIONS(4530), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [59853] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3720), 1, + sym_raw_string_begin, + ACTIONS(4532), 1, + sym__entry_separator, + STATE(2123), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3715), 34, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_RBRACK, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [59903] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2124), 1, + sym_comment, + ACTIONS(860), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(862), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [59951] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, - anon_sym_DASH2, - ACTIONS(4461), 1, - anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2019), 1, + ACTIONS(4535), 1, + anon_sym_QMARK2, + STATE(2125), 1, sym_comment, - ACTIONS(4449), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4453), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2692), 20, + ACTIONS(1448), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, 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, - [53252] = 12, + anon_sym_DOT2, + ACTIONS(1450), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [60001] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, - sym__newline, - ACTIONS(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - STATE(2020), 1, + ACTIONS(4541), 1, + anon_sym_DASH_DASH, + STATE(2168), 1, + sym_long_flag, + STATE(2126), 2, sym_comment, - STATE(2053), 1, - aux_sym__repeat_newline, - ACTIONS(2690), 2, + aux_sym_decl_def_repeat1, + ACTIONS(4537), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4539), 31, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [60053] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2127), 1, + sym_comment, + ACTIONS(771), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(773), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [60101] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4535), 1, + anon_sym_BANG, + STATE(2128), 1, + sym_comment, + ACTIONS(1448), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1450), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [60151] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1734), 1, + sym__unquoted_pattern, + STATE(2129), 1, + sym_comment, + ACTIONS(866), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4354), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4431), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2688), 23, + anon_sym_PLUS2, + ACTIONS(886), 31, anon_sym_in, + sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -185149,39 +191591,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53316] = 11, + [60201] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, - anon_sym_DASH2, - ACTIONS(4461), 1, - anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2021), 1, + STATE(2130), 1, sym_comment, - ACTIONS(2694), 2, + ACTIONS(1020), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4453), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2692), 24, + anon_sym_PLUS2, + ACTIONS(1022), 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, @@ -185200,34 +191635,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53378] = 8, + [60249] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2022), 1, + STATE(2131), 1, sym_comment, - ACTIONS(4453), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2694), 3, + ACTIONS(994), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2692), 27, + 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, @@ -185246,33 +191679,405 @@ 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, - [53434] = 7, + [60297] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4544), 1, + sym__newline, + STATE(2132), 1, + sym_comment, + ACTIONS(4431), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2958), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2960), 27, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [60349] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4551), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4553), 1, + sym_filesize_unit, + ACTIONS(4555), 1, + sym_duration_unit, + STATE(2133), 1, + sym_comment, + ACTIONS(4549), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4547), 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, + [60403] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4456), 1, + sym__entry_separator, + ACTIONS(4458), 1, + sym_raw_string_begin, + ACTIONS(4557), 1, + anon_sym_RBRACK, + STATE(2016), 1, + aux_sym__types_body_repeat2, + STATE(2134), 1, + sym_comment, + ACTIONS(4452), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [60457] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2135), 1, + sym_comment, + ACTIONS(2960), 37, + sym__newline, + anon_sym_LBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [60503] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(906), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4559), 1, + sym_filesize_unit, + ACTIONS(4561), 1, + sym_duration_unit, + STATE(2136), 1, + sym_comment, + ACTIONS(904), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(902), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [60557] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4567), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4569), 1, + sym_filesize_unit, + ACTIONS(4571), 1, + sym_duration_unit, + STATE(2137), 1, + sym_comment, + ACTIONS(4565), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4563), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [60611] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4577), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4579), 1, + sym_filesize_unit, + ACTIONS(4581), 1, + sym_duration_unit, + STATE(2138), 1, + sym_comment, + ACTIONS(4575), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4573), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [60665] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4587), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4589), 1, + sym_filesize_unit, + ACTIONS(4591), 1, + sym_duration_unit, + STATE(2139), 1, + sym_comment, + ACTIONS(4585), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4583), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [60719] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, - sym__newline, - STATE(2023), 1, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(2140), 1, sym_comment, - STATE(2055), 1, - aux_sym__repeat_newline, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2690), 5, + ACTIONS(1614), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2688), 28, + ACTIONS(1713), 30, anon_sym_in, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -185291,6 +192096,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, @@ -185298,26 +192105,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53488] = 6, + [60771] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, + ACTIONS(4492), 1, + anon_sym_DASH2, + ACTIONS(4502), 1, + anon_sym_PLUS2, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2024), 1, + STATE(2141), 1, sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2694), 5, + ACTIONS(2752), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4494), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2692), 29, + 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_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -185337,237 +192153,192 @@ 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, - [53540] = 18, + [60833] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, - sym__newline, - ACTIONS(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - ACTIONS(4439), 1, - anon_sym_bit_DASHand2, - ACTIONS(4441), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4443), 1, - anon_sym_bit_DASHor2, - STATE(2025), 1, + ACTIONS(2654), 1, + sym__unquoted_pattern, + STATE(2142), 1, sym_comment, - STATE(2056), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2688), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4437), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4435), 8, + ACTIONS(2650), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, 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, - [53616] = 17, + ACTIONS(2648), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [60882] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, - anon_sym_DASH2, - ACTIONS(4461), 1, - anon_sym_PLUS2, - ACTIONS(4469), 1, - anon_sym_bit_DASHand2, - ACTIONS(4471), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4473), 1, - anon_sym_bit_DASHor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2026), 1, + ACTIONS(4211), 1, + sym__unquoted_pattern, + STATE(2143), 1, sym_comment, - ACTIONS(4449), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4453), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4467), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2692), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4465), 8, + ACTIONS(866), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, 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, - [53690] = 19, + ACTIONS(886), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [60931] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, - sym__newline, - ACTIONS(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - ACTIONS(4439), 1, - anon_sym_bit_DASHand2, - ACTIONS(4441), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4443), 1, - anon_sym_bit_DASHor2, - ACTIONS(4445), 1, - anon_sym_and2, - STATE(2027), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(2144), 1, sym_comment, - STATE(2057), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2688), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4437), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4435), 8, + ACTIONS(1614), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, 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, - [53768] = 18, + ACTIONS(1713), 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, + [60980] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(2913), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(2923), 1, anon_sym_PLUS2, - ACTIONS(4469), 1, + ACTIONS(2931), 1, anon_sym_bit_DASHand2, - ACTIONS(4471), 1, + ACTIONS(2933), 1, anon_sym_bit_DASHxor2, - ACTIONS(4473), 1, + ACTIONS(2935), 1, anon_sym_bit_DASHor2, - ACTIONS(4475), 1, + ACTIONS(2937), 1, anon_sym_and2, - STATE(507), 1, + ACTIONS(2939), 1, + anon_sym_xor2, + ACTIONS(4593), 1, + anon_sym_or2, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2028), 1, + STATE(2145), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(2911), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(2915), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(2919), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(2921), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(2925), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2692), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4455), 4, + ACTIONS(2917), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4467), 4, + ACTIONS(2929), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4465), 8, + ACTIONS(2927), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185576,545 +192347,537 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53844] = 20, - ACTIONS(3), 1, + [61059] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - ACTIONS(4439), 1, - anon_sym_bit_DASHand2, - ACTIONS(4441), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4443), 1, - anon_sym_bit_DASHor2, - ACTIONS(4445), 1, - anon_sym_and2, - ACTIONS(4447), 1, - anon_sym_xor2, - STATE(2029), 1, + 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, - STATE(2058), 1, - aux_sym__repeat_newline, - ACTIONS(2688), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4437), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4435), 8, + 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_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [53924] = 19, - ACTIONS(3), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [61110] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4451), 1, - anon_sym_DASH2, - ACTIONS(4461), 1, - anon_sym_PLUS2, - ACTIONS(4469), 1, - anon_sym_bit_DASHand2, - ACTIONS(4471), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4473), 1, - anon_sym_bit_DASHor2, - ACTIONS(4475), 1, - anon_sym_and2, - ACTIONS(4477), 1, - anon_sym_xor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2030), 1, + ACTIONS(4456), 1, + sym__entry_separator, + ACTIONS(4458), 1, + sym_raw_string_begin, + STATE(2016), 1, + aux_sym__types_body_repeat2, + STATE(2147), 1, sym_comment, - ACTIONS(4449), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4453), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2692), 3, - sym__newline, + 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_or2, - ACTIONS(4455), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4467), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4465), 8, + 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, + [61161] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2148), 1, + sym_comment, + 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, + anon_sym_extern, + anon_sym_module, + anon_sym_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_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [54002] = 14, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_RBRACK, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [61208] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2149), 1, + sym_comment, + ACTIONS(3756), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3754), 34, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [61255] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, - sym__newline, - ACTIONS(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - STATE(2031), 1, + ACTIONS(4595), 1, + anon_sym_LBRACK2, + STATE(2150), 1, sym_comment, - STATE(2059), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4435), 8, + ACTIONS(2090), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2688), 11, - 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, - [54070] = 13, + 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_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, + [61304] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, - anon_sym_DASH2, - ACTIONS(4461), 1, - anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2032), 1, + STATE(2151), 1, sym_comment, - ACTIONS(4449), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4453), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4465), 8, + ACTIONS(1496), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, 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(2692), 12, + anon_sym_DOT2, + ACTIONS(1498), 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, + [61351] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2152), 1, + sym_comment, + ACTIONS(2146), 36, sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [54136] = 11, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + 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(2848), 1, + ACTIONS(4597), 1, sym__newline, - ACTIONS(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - STATE(2033), 1, + STATE(2153), 2, sym_comment, - STATE(2060), 1, - aux_sym__repeat_newline, - ACTIONS(2690), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2688), 25, - anon_sym_in, + 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, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [54198] = 10, + 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(4451), 1, - anon_sym_DASH2, - ACTIONS(4461), 1, - anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2034), 1, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(2154), 1, sym_comment, - ACTIONS(2694), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4453), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2692), 26, + ACTIONS(1020), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [54258] = 15, + ACTIONS(1022), 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, + [61494] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, - sym__newline, - ACTIONS(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - STATE(2035), 1, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(2155), 1, sym_comment, - STATE(2061), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4437), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2688), 7, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4435), 8, + ACTIONS(994), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, 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, - [54328] = 14, + ACTIONS(1030), 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, + [61543] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, - anon_sym_DASH2, - ACTIONS(4461), 1, - anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2036), 1, + STATE(2156), 1, sym_comment, - ACTIONS(4449), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4453), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4467), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2692), 8, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4465), 8, + ACTIONS(2527), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, 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, - [54396] = 16, + sym__unquoted_pattern, + ACTIONS(2525), 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, + [61590] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, - sym__newline, - ACTIONS(4425), 1, + ACTIONS(2809), 1, anon_sym_DASH2, - ACTIONS(4429), 1, + ACTIONS(2819), 1, anon_sym_PLUS2, - ACTIONS(4439), 1, + ACTIONS(2899), 1, anon_sym_bit_DASHand2, - STATE(2037), 1, - sym_comment, - STATE(2062), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4437), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2688), 6, - anon_sym_LBRACE, + ACTIONS(2901), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2903), 1, + anon_sym_bit_DASHor2, + ACTIONS(2905), 1, anon_sym_and2, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(2909), 1, anon_sym_xor2, + ACTIONS(4600), 1, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4435), 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, - [54468] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4451), 1, - anon_sym_DASH2, - ACTIONS(4461), 1, - anon_sym_PLUS2, - ACTIONS(4469), 1, - anon_sym_bit_DASHand2, - STATE(507), 1, + STATE(2145), 1, aux_sym__repeat_newline, - STATE(2038), 1, + STATE(2157), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(2807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(2811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(2815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(2817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(2821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, + ACTIONS(2813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4467), 4, + ACTIONS(2897), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2692), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4465), 8, + ACTIONS(2895), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186123,55 +192886,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54538] = 17, + [61669] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2158), 1, + sym_comment, + ACTIONS(1547), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1549), 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, + [61716] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4602), 1, + sym__newline, + STATE(2159), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3758), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(3760), 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, + [61765] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2848), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(4425), 1, + ACTIONS(4464), 1, anon_sym_DASH2, - ACTIONS(4429), 1, + ACTIONS(4468), 1, anon_sym_PLUS2, - ACTIONS(4439), 1, + ACTIONS(4478), 1, anon_sym_bit_DASHand2, - ACTIONS(4441), 1, + ACTIONS(4480), 1, anon_sym_bit_DASHxor2, - STATE(2039), 1, + ACTIONS(4482), 1, + anon_sym_bit_DASHor2, + ACTIONS(4484), 1, + anon_sym_and2, + ACTIONS(4486), 1, + anon_sym_xor2, + ACTIONS(4605), 1, + anon_sym_or2, + STATE(2160), 1, sym_comment, - STATE(2063), 1, + STATE(2161), 1, aux_sym__repeat_newline, - ACTIONS(4354), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(4412), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(4414), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, + ACTIONS(4462), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4431), 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(4437), 4, + ACTIONS(4476), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2688), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4435), 8, + ACTIONS(4474), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186180,196 +193032,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54612] = 16, + [61844] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(4492), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(4502), 1, anon_sym_PLUS2, - ACTIONS(4469), 1, + ACTIONS(4510), 1, anon_sym_bit_DASHand2, - ACTIONS(4471), 1, + ACTIONS(4512), 1, anon_sym_bit_DASHxor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2040), 1, - sym_comment, - ACTIONS(4449), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4453), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4467), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2692), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(4514), 1, anon_sym_bit_DASHor2, - ACTIONS(4465), 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, - [54684] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2822), 1, - sym__newline, - ACTIONS(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - STATE(2041), 1, - sym_comment, - STATE(2065), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 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, + ACTIONS(4516), 1, anon_sym_and2, + ACTIONS(4518), 1, anon_sym_xor2, + ACTIONS(4607), 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_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [54750] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2822), 1, - sym__newline, - ACTIONS(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - STATE(2042), 1, - sym_comment, - STATE(2067), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, + STATE(2161), 1, + sym_comment, + ACTIONS(4490), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4354), 2, + ACTIONS(4494), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(4498), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(4500), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4431), 2, + ACTIONS(4504), 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, + 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, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [54814] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2822), 1, - sym__newline, - STATE(2043), 1, - sym_comment, - STATE(2069), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2704), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2702), 26, + ACTIONS(4506), 8, 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, @@ -186377,41 +193091,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [54872] = 7, + [61923] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, - sym__newline, - STATE(2044), 1, + ACTIONS(1734), 1, + sym__unquoted_pattern, + STATE(2162), 1, sym_comment, - STATE(2071), 1, - aux_sym__repeat_newline, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2704), 5, + ACTIONS(866), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2702), 28, + ACTIONS(886), 30, anon_sym_in, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -186430,6 +193126,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, @@ -186437,56 +193135,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54926] = 18, + [61972] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(4425), 1, + ACTIONS(3828), 1, anon_sym_DASH2, - ACTIONS(4429), 1, + ACTIONS(3832), 1, anon_sym_PLUS2, - ACTIONS(4439), 1, + ACTIONS(3840), 1, anon_sym_bit_DASHand2, - ACTIONS(4441), 1, + ACTIONS(3842), 1, anon_sym_bit_DASHxor2, - ACTIONS(4443), 1, + ACTIONS(3844), 1, anon_sym_bit_DASHor2, - STATE(2045), 1, + ACTIONS(3846), 1, + anon_sym_and2, + ACTIONS(3848), 1, + anon_sym_xor2, + ACTIONS(4609), 1, + anon_sym_or2, + STATE(2163), 1, sym_comment, - STATE(2073), 1, + STATE(2164), 1, aux_sym__repeat_newline, - ACTIONS(4354), 2, + ACTIONS(3765), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(3767), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(3769), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, + ACTIONS(3826), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4431), 2, + ACTIONS(3834), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(3830), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 4, + ACTIONS(3838), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4435), 8, + ACTIONS(3836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186495,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, - [55002] = 19, + [62051] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(4425), 1, + ACTIONS(3864), 1, anon_sym_DASH2, - ACTIONS(4429), 1, + ACTIONS(3874), 1, anon_sym_PLUS2, - ACTIONS(4439), 1, + ACTIONS(3882), 1, anon_sym_bit_DASHand2, - ACTIONS(4441), 1, + ACTIONS(3884), 1, anon_sym_bit_DASHxor2, - ACTIONS(4443), 1, + ACTIONS(3886), 1, anon_sym_bit_DASHor2, - ACTIONS(4445), 1, + ACTIONS(3888), 1, anon_sym_and2, - STATE(2046), 1, - sym_comment, - STATE(2075), 1, + ACTIONS(3890), 1, + anon_sym_xor2, + ACTIONS(4611), 1, + anon_sym_or2, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(4354), 2, + STATE(2164), 1, + sym_comment, + ACTIONS(3862), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3866), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(3870), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(3872), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, + ACTIONS(3876), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 4, + ACTIONS(3880), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4435), 8, + ACTIONS(3878), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186554,314 +193253,650 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55080] = 14, + [62130] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, - sym__newline, - ACTIONS(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - STATE(2047), 1, + STATE(2165), 1, sym_comment, - STATE(2079), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4435), 8, + ACTIONS(1562), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, 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), 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, - [55148] = 11, + anon_sym_DOT2, + ACTIONS(1564), 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, + [62177] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, - sym__newline, - ACTIONS(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - STATE(2048), 1, + STATE(2166), 1, sym_comment, - STATE(2081), 1, - aux_sym__repeat_newline, - ACTIONS(2704), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2702), 25, + ACTIONS(2539), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [55210] = 15, + ACTIONS(2537), 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, + [62223] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, - sym__newline, - ACTIONS(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - STATE(2049), 1, + STATE(2167), 1, sym_comment, - STATE(2083), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4437), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2702), 7, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4435), 8, + ACTIONS(2610), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, 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, - [55280] = 16, + 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, - ACTIONS(2822), 1, - sym__newline, - ACTIONS(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - ACTIONS(4439), 1, - anon_sym_bit_DASHand2, - STATE(2050), 1, + STATE(2168), 1, sym_comment, - STATE(2085), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4437), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2702), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4435), 8, + ACTIONS(4613), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, 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, - [55352] = 17, + ACTIONS(4615), 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, + [62315] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2822), 1, - sym__newline, - ACTIONS(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - ACTIONS(4439), 1, - anon_sym_bit_DASHand2, - ACTIONS(4441), 1, - anon_sym_bit_DASHxor2, - STATE(2051), 1, + STATE(2169), 1, sym_comment, - STATE(2087), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, + 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(2296), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2294), 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, + [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, - anon_sym_LT2, - ACTIONS(4431), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4437), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2702), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4435), 8, + 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, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [55426] = 12, + 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, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [62821] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2052), 1, + STATE(2179), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(4639), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(4653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, + ACTIONS(4645), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2710), 20, + ACTIONS(2551), 19, anon_sym_in, - sym__newline, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -186879,36 +193914,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55490] = 11, + [62881] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2053), 1, + STATE(2180), 1, sym_comment, - ACTIONS(2712), 2, + ACTIONS(2553), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(4653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2710), 24, + ACTIONS(2551), 23, anon_sym_in, - sym__newline, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -186930,31 +193962,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55552] = 8, + [62939] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2054), 1, + STATE(2181), 1, sym_comment, - ACTIONS(4453), 2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2712), 3, + ACTIONS(2553), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2710), 27, + ACTIONS(2551), 26, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -186978,27 +194007,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55608] = 6, + [62991] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2055), 1, + STATE(2182), 1, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2712), 5, + ACTIONS(2553), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2710), 29, + ACTIONS(2551), 28, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -187024,55 +194050,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55660] = 17, + [63039] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - ACTIONS(4469), 1, + ACTIONS(4659), 1, anon_sym_bit_DASHand2, - ACTIONS(4471), 1, + ACTIONS(4661), 1, anon_sym_bit_DASHxor2, - ACTIONS(4473), 1, + ACTIONS(4663), 1, anon_sym_bit_DASHor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2056), 1, + STATE(2183), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(4639), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(4653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, + ACTIONS(2551), 4, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4645), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4467), 4, + ACTIONS(4657), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2710), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4465), 8, + ACTIONS(4655), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187081,56 +194104,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55734] = 18, + [63109] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - ACTIONS(4469), 1, + ACTIONS(4659), 1, anon_sym_bit_DASHand2, - ACTIONS(4471), 1, + ACTIONS(4661), 1, anon_sym_bit_DASHxor2, - ACTIONS(4473), 1, + ACTIONS(4663), 1, anon_sym_bit_DASHor2, - ACTIONS(4475), 1, + ACTIONS(4665), 1, anon_sym_and2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2057), 1, + STATE(2184), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(4639), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(4653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2710), 4, - sym__newline, - anon_sym_LBRACE, + ACTIONS(2551), 3, + anon_sym_EQ_GT, anon_sym_xor2, anon_sym_or2, - ACTIONS(4455), 4, + ACTIONS(4645), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4467), 4, + ACTIONS(4657), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4465), 8, + ACTIONS(4655), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187139,57 +194159,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55810] = 19, + [63181] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - ACTIONS(4469), 1, + ACTIONS(4659), 1, anon_sym_bit_DASHand2, - ACTIONS(4471), 1, + ACTIONS(4661), 1, anon_sym_bit_DASHxor2, - ACTIONS(4473), 1, + ACTIONS(4663), 1, anon_sym_bit_DASHor2, - ACTIONS(4475), 1, + ACTIONS(4665), 1, anon_sym_and2, - ACTIONS(4477), 1, + ACTIONS(4667), 1, anon_sym_xor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2058), 1, + STATE(2185), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(2551), 2, + anon_sym_EQ_GT, + anon_sym_or2, + ACTIONS(4639), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(4653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2710), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4455), 4, + ACTIONS(4645), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4467), 4, + ACTIONS(4657), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4465), 8, + ACTIONS(4655), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187198,38 +194215,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55888] = 13, + [63255] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2059), 1, + STATE(2186), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(4639), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(4653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, + ACTIONS(4645), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4465), 8, + ACTIONS(4655), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187238,9 +194253,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2710), 12, - sym__newline, - anon_sym_LBRACE, + ACTIONS(2551), 11, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -187251,33 +194265,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55954] = 10, + [63317] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2060), 1, + STATE(2187), 1, sym_comment, - ACTIONS(2712), 2, + ACTIONS(2553), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2710), 26, + ACTIONS(2551), 25, anon_sym_in, - sym__newline, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -187301,52 +194312,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56014] = 14, + [63373] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2061), 1, + STATE(2188), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(4639), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(4653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, + ACTIONS(4645), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4467), 4, + ACTIONS(4657), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2710), 8, - sym__newline, - anon_sym_LBRACE, + ACTIONS(2551), 7, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4465), 8, + ACTIONS(4655), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187355,53 +194363,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56082] = 15, + [63437] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - ACTIONS(4469), 1, + ACTIONS(4659), 1, anon_sym_bit_DASHand2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2062), 1, + STATE(2189), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(4639), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(4653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, + ACTIONS(4645), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4467), 4, + ACTIONS(4657), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2710), 7, - sym__newline, - anon_sym_LBRACE, + 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(4465), 8, + ACTIONS(4655), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187410,54 +194415,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56152] = 16, + [63503] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - ACTIONS(4469), 1, + ACTIONS(4659), 1, anon_sym_bit_DASHand2, - ACTIONS(4471), 1, + ACTIONS(4661), 1, anon_sym_bit_DASHxor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2063), 1, + STATE(2190), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(4639), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(4653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, + ACTIONS(4645), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4467), 4, + ACTIONS(4657), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2710), 6, - sym__newline, - anon_sym_LBRACE, + ACTIONS(2551), 5, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4465), 8, + ACTIONS(4655), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187466,140 +194468,944 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56224] = 13, + [63571] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2191), 1, + sym_comment, + ACTIONS(2288), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2286), 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, + [63617] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2192), 1, + sym_comment, + ACTIONS(2958), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2960), 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, + sym__newline, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [63663] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, + ACTIONS(4669), 1, sym__newline, - ACTIONS(4425), 1, + STATE(2193), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1971), 8, + anon_sym_DOLLAR, anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - STATE(2064), 1, + 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(1028), 1, + aux_sym_cmd_identifier_token6, + STATE(2194), 1, sym_comment, - STATE(2088), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2718), 19, + ACTIONS(1026), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1024), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [63759] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2195), 1, + sym_comment, + ACTIONS(1523), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1525), 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, + [63805] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2196), 1, + sym_comment, + ACTIONS(1527), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1529), 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, + [63851] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2197), 1, + sym_comment, + ACTIONS(1531), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1533), 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, + [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(2199), 1, + sym_comment, + ACTIONS(1535), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + ACTIONS(1537), 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, + [63991] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_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, - [56290] = 12, + 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, + [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(3092), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4619), 1, + anon_sym_null, + ACTIONS(4623), 1, + sym__newline, + ACTIONS(4627), 1, + anon_sym_DOT_DOT, + ACTIONS(4631), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4633), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4637), 1, + sym_val_date, + ACTIONS(4678), 1, + anon_sym_GT2, + STATE(2201), 1, + sym_comment, + STATE(2254), 1, + aux_sym__types_body_repeat1, + STATE(2280), 1, + aux_sym__collection_body_repeat1, + STATE(3961), 1, + sym__val_number_decimal, + STATE(4752), 1, + sym__collection_entry, + STATE(4974), 1, + sym__collection_body, + STATE(5170), 1, + sym_val_bool, + ACTIONS(4617), 2, + 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, + [64129] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2202), 1, + sym_comment, + ACTIONS(1539), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1541), 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, + [64175] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2203), 1, + sym_comment, + ACTIONS(4680), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4682), 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, + [64221] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2204), 1, + sym_comment, + ACTIONS(866), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(886), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [64267] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2205), 1, + sym_comment, + ACTIONS(2176), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2174), 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, + [64313] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2206), 1, + sym_comment, + 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, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_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, + [64359] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2207), 1, + sym_comment, + ACTIONS(2246), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2244), 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, + [64405] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2208), 1, + sym_comment, + ACTIONS(2172), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2170), 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, + [64451] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2209), 1, + sym_comment, + ACTIONS(1580), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1582), 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, + [64497] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2210), 1, + sym_comment, + ACTIONS(2531), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2529), 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, + [64543] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + 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(4451), 1, + ACTIONS(4686), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2065), 1, + STATE(2212), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(4684), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(4698), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, + ACTIONS(4690), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2722), 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, - [56354] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2837), 1, - sym__newline, - ACTIONS(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - STATE(2066), 1, - sym_comment, - STATE(2089), 1, - aux_sym__repeat_newline, - ACTIONS(2720), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4431), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2718), 23, + ACTIONS(2551), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -187612,10 +195418,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -187623,82 +195425,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56418] = 11, + [64649] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(4686), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2067), 1, + STATE(2213), 1, sym_comment, - ACTIONS(2724), 2, + ACTIONS(2553), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(4698), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2722), 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, - [56480] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2837), 1, - sym__newline, - STATE(2068), 1, - sym_comment, - STATE(2090), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2720), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2718), 26, + ACTIONS(2551), 23, anon_sym_in, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -187718,78 +195470,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56538] = 8, + [64707] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2069), 1, + STATE(2214), 1, sym_comment, - ACTIONS(4453), 2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2724), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2722), 27, - 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_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [56594] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2837), 1, - sym__newline, - STATE(2070), 1, - sym_comment, - STATE(2091), 1, - aux_sym__repeat_newline, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2720), 5, + ACTIONS(2553), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2718), 28, + ACTIONS(2551), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -187811,32 +195513,27 @@ 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, - [56648] = 6, + [64759] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2071), 1, + STATE(2215), 1, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2724), 5, + ACTIONS(2553), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2722), 29, + ACTIONS(2551), 28, anon_sym_in, - sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -187864,56 +195561,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56700] = 18, + [64807] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, - sym__newline, - ACTIONS(4425), 1, + ACTIONS(4686), 1, anon_sym_DASH2, - ACTIONS(4429), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - ACTIONS(4439), 1, + ACTIONS(4704), 1, anon_sym_bit_DASHand2, - ACTIONS(4441), 1, + ACTIONS(4706), 1, anon_sym_bit_DASHxor2, - ACTIONS(4443), 1, + ACTIONS(4708), 1, anon_sym_bit_DASHor2, - STATE(2072), 1, + STATE(2216), 1, sym_comment, - STATE(2092), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, + ACTIONS(4684), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, + ACTIONS(4698), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2718), 4, + ACTIONS(2551), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4690), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 4, + ACTIONS(4702), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4435), 8, + ACTIONS(4700), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187922,55 +195615,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56776] = 17, + [64877] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2217), 1, + sym_comment, + ACTIONS(2144), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2142), 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, + [64923] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(4686), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - ACTIONS(4469), 1, + ACTIONS(4704), 1, anon_sym_bit_DASHand2, - ACTIONS(4471), 1, + ACTIONS(4706), 1, anon_sym_bit_DASHxor2, - ACTIONS(4473), 1, + ACTIONS(4708), 1, anon_sym_bit_DASHor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2073), 1, + ACTIONS(4710), 1, + anon_sym_and2, + STATE(2218), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(4684), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(4698), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, + ACTIONS(2551), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4690), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4467), 4, + ACTIONS(4702), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2722), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4465), 8, + ACTIONS(4700), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187979,57 +195712,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56850] = 19, + [64995] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, - sym__newline, - ACTIONS(4425), 1, + ACTIONS(4686), 1, anon_sym_DASH2, - ACTIONS(4429), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - ACTIONS(4439), 1, + ACTIONS(4704), 1, anon_sym_bit_DASHand2, - ACTIONS(4441), 1, + ACTIONS(4706), 1, anon_sym_bit_DASHxor2, - ACTIONS(4443), 1, + ACTIONS(4708), 1, anon_sym_bit_DASHor2, - ACTIONS(4445), 1, + ACTIONS(4710), 1, anon_sym_and2, - STATE(2074), 1, + ACTIONS(4712), 1, + anon_sym_xor2, + STATE(2219), 1, sym_comment, - STATE(2093), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, + ACTIONS(2551), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4684), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, + ACTIONS(4698), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2718), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4690), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 4, + ACTIONS(4702), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4435), 8, + ACTIONS(4700), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188038,56 +195768,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56928] = 18, + [65069] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2220), 1, + sym_comment, + ACTIONS(1864), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1862), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [65115] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(4686), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - ACTIONS(4469), 1, - anon_sym_bit_DASHand2, - ACTIONS(4471), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4473), 1, - anon_sym_bit_DASHor2, - ACTIONS(4475), 1, - anon_sym_and2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2075), 1, + STATE(2221), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(4684), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(4698), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2722), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4455), 4, + ACTIONS(4690), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4467), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4465), 8, + ACTIONS(4700), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188096,59 +195848,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57004] = 20, + ACTIONS(2551), 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, + [65177] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(4425), 1, + ACTIONS(4686), 1, anon_sym_DASH2, - ACTIONS(4429), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - ACTIONS(4439), 1, - anon_sym_bit_DASHand2, - ACTIONS(4441), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4443), 1, - anon_sym_bit_DASHor2, - ACTIONS(4445), 1, - anon_sym_and2, - ACTIONS(4447), 1, - anon_sym_xor2, - STATE(2076), 1, + STATE(2222), 1, sym_comment, - STATE(2094), 1, - aux_sym__repeat_newline, - ACTIONS(2718), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4354), 2, + ACTIONS(2553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4437), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4435), 8, + ACTIONS(2551), 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, @@ -188156,57 +195894,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57084] = 19, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_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, + [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(4451), 1, + ACTIONS(4686), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - ACTIONS(4469), 1, - anon_sym_bit_DASHand2, - ACTIONS(4471), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4473), 1, - anon_sym_bit_DASHor2, - ACTIONS(4475), 1, - anon_sym_and2, - ACTIONS(4477), 1, - anon_sym_xor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2077), 1, + STATE(2224), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(4684), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(4698), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2722), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4455), 4, + ACTIONS(4690), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4467), 4, + ACTIONS(4702), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4465), 8, + ACTIONS(2551), 7, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4700), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188215,40 +196001,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57162] = 14, + [65345] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 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(4425), 1, + 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(4429), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - STATE(2078), 1, + ACTIONS(4704), 1, + anon_sym_bit_DASHand2, + STATE(2226), 1, sym_comment, - STATE(2095), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, + ACTIONS(4684), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, + ACTIONS(4698), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4690), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4435), 8, + ACTIONS(4702), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2551), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4700), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188257,50 +196118,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2718), 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, - [57230] = 13, + [65503] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(4686), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2079), 1, + ACTIONS(4704), 1, + anon_sym_bit_DASHand2, + ACTIONS(4706), 1, + anon_sym_bit_DASHxor2, + STATE(2227), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(4684), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(4698), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, + ACTIONS(4690), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4465), 8, + ACTIONS(4702), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2551), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4700), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188309,389 +196171,878 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2722), 12, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [57296] = 11, + [65571] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1036), 1, + aux_sym_cmd_identifier_token6, + STATE(2228), 1, + sym_comment, + ACTIONS(1034), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1032), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [65619] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2229), 1, + sym_comment, + ACTIONS(4716), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4718), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [65665] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2230), 1, + sym_comment, + ACTIONS(4720), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4722), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [65711] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4728), 1, + aux_sym_cmd_identifier_token6, + STATE(2231), 1, + sym_comment, + ACTIONS(4726), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4724), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [65759] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2232), 1, + sym_comment, + ACTIONS(4730), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4732), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [65805] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2233), 1, + sym_comment, + ACTIONS(2622), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2620), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [65851] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4738), 1, + aux_sym_cmd_identifier_token6, + STATE(2234), 1, + sym_comment, + ACTIONS(4736), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4734), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [65899] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4744), 1, + aux_sym_cmd_identifier_token6, + STATE(2235), 1, + sym_comment, + ACTIONS(4742), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4740), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [65947] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2236), 1, + sym_comment, + ACTIONS(1914), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1912), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [65993] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 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(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - STATE(2080), 1, + ACTIONS(4627), 1, + anon_sym_DOT_DOT, + ACTIONS(4631), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4633), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4637), 1, + sym_val_date, + ACTIONS(4746), 1, + anon_sym_GT2, + STATE(2237), 1, + sym_comment, + STATE(2254), 1, + aux_sym__types_body_repeat1, + STATE(2280), 1, + aux_sym__collection_body_repeat1, + STATE(3961), 1, + sym__val_number_decimal, + STATE(4752), 1, + sym__collection_entry, + STATE(5067), 1, + sym__collection_body, + STATE(5170), 1, + sym_val_bool, + ACTIONS(4617), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4629), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4635), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4292), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5033), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4621), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3665), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [66085] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2238), 1, + sym_comment, + ACTIONS(2583), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2581), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [66131] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2239), 1, + sym_comment, + ACTIONS(1880), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1878), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [66177] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2240), 1, sym_comment, - STATE(2096), 1, - aux_sym__repeat_newline, - ACTIONS(2720), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2718), 25, + ACTIONS(2595), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [57358] = 10, + ACTIONS(2593), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [66223] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, - anon_sym_DASH2, - ACTIONS(4461), 1, - anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2081), 1, + STATE(2241), 1, sym_comment, - ACTIONS(2724), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4453), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2722), 26, + ACTIONS(1894), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [57418] = 15, + ACTIONS(1892), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [66269] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, - sym__newline, - ACTIONS(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - STATE(2082), 1, + STATE(2242), 1, sym_comment, - STATE(2097), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4437), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2718), 7, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4435), 8, + ACTIONS(2198), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, 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, - [57488] = 14, + ACTIONS(2196), 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, + [66315] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, - anon_sym_DASH2, - ACTIONS(4461), 1, - anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2083), 1, + STATE(2243), 1, sym_comment, - ACTIONS(4449), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4453), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4467), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2722), 8, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4465), 8, + ACTIONS(2206), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, 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, - [57556] = 16, + ACTIONS(2204), 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, + [66361] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, - sym__newline, - ACTIONS(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - ACTIONS(4439), 1, - anon_sym_bit_DASHand2, - STATE(2084), 1, + STATE(2244), 1, sym_comment, - STATE(2098), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4437), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2718), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4435), 8, + ACTIONS(2666), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, 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, - [57628] = 15, + ACTIONS(2664), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_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, + [66407] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4752), 1, + aux_sym_cmd_identifier_token6, + STATE(2245), 1, + sym_comment, + ACTIONS(4750), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4748), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [66455] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, - anon_sym_DASH2, - ACTIONS(4461), 1, - anon_sym_PLUS2, - ACTIONS(4469), 1, - anon_sym_bit_DASHand2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2085), 1, + STATE(2246), 1, sym_comment, - ACTIONS(4449), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4453), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4467), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2722), 7, + ACTIONS(2148), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2146), 26, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4465), 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, - [57698] = 17, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [66500] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, - sym__newline, - ACTIONS(4425), 1, + ACTIONS(2840), 1, anon_sym_DASH2, - ACTIONS(4429), 1, + ACTIONS(2846), 1, anon_sym_PLUS2, - ACTIONS(4439), 1, + ACTIONS(2850), 1, anon_sym_bit_DASHand2, - ACTIONS(4441), 1, + ACTIONS(2852), 1, anon_sym_bit_DASHxor2, - STATE(2086), 1, + 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, - STATE(2099), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, + ACTIONS(2823), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4356), 2, + ACTIONS(2825), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, + ACTIONS(2827), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, + ACTIONS(2838), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4431), 2, + ACTIONS(2848), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(2842), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 4, + ACTIONS(2844), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2718), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4435), 8, + ACTIONS(2836), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188700,54 +197051,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57772] = 16, + [66573] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, - anon_sym_DASH2, - ACTIONS(4461), 1, - anon_sym_PLUS2, - ACTIONS(4469), 1, - anon_sym_bit_DASHand2, - ACTIONS(4471), 1, - anon_sym_bit_DASHxor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2087), 1, + STATE(2248), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(4760), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, + ACTIONS(4762), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4467), 4, + ACTIONS(4764), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2722), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4465), 8, + ACTIONS(4756), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188756,252 +197078,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57844] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4451), 1, - anon_sym_DASH2, - ACTIONS(4461), 1, - anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2088), 1, - sym_comment, - ACTIONS(4449), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4453), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2746), 20, - anon_sym_in, + ACTIONS(4758), 16, sym__newline, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_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_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [57908] = 11, + [66624] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(4461), 1, - anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2089), 1, - sym_comment, - ACTIONS(2748), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4453), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2746), 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, - [57970] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2090), 1, - sym_comment, - ACTIONS(4453), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2748), 3, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(2746), 27, - 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_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(3926), 1, anon_sym_bit_DASHand2, + ACTIONS(3928), 1, anon_sym_bit_DASHxor2, + ACTIONS(3930), 1, anon_sym_bit_DASHor2, - [58026] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2091), 1, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2748), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2746), 29, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, + ACTIONS(3932), 1, anon_sym_and2, + ACTIONS(3934), 1, anon_sym_xor2, + ACTIONS(4766), 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, - [58078] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4451), 1, - anon_sym_DASH2, - ACTIONS(4461), 1, - anon_sym_PLUS2, - ACTIONS(4469), 1, - anon_sym_bit_DASHand2, - ACTIONS(4471), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4473), 1, - anon_sym_bit_DASHor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2092), 1, + STATE(2249), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4467), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2746), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4465), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189010,56 +197150,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58152] = 18, + [66697] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(4641), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(4651), 1, anon_sym_PLUS2, - ACTIONS(4469), 1, + ACTIONS(4659), 1, anon_sym_bit_DASHand2, - ACTIONS(4471), 1, + ACTIONS(4661), 1, anon_sym_bit_DASHxor2, - ACTIONS(4473), 1, + ACTIONS(4663), 1, anon_sym_bit_DASHor2, - ACTIONS(4475), 1, + ACTIONS(4665), 1, anon_sym_and2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2093), 1, + ACTIONS(4667), 1, + anon_sym_xor2, + ACTIONS(4768), 1, + anon_sym_or2, + STATE(2250), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(4639), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(4643), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(4647), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(4649), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(4653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2746), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4455), 4, + ACTIONS(4645), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4467), 4, + ACTIONS(4657), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4465), 8, + ACTIONS(4655), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189068,57 +197205,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58228] = 19, + [66770] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(3962), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(3972), 1, anon_sym_PLUS2, - ACTIONS(4469), 1, + ACTIONS(3980), 1, anon_sym_bit_DASHand2, - ACTIONS(4471), 1, + ACTIONS(3982), 1, anon_sym_bit_DASHxor2, - ACTIONS(4473), 1, + ACTIONS(3984), 1, anon_sym_bit_DASHor2, - ACTIONS(4475), 1, + ACTIONS(3986), 1, anon_sym_and2, - ACTIONS(4477), 1, + ACTIONS(3988), 1, anon_sym_xor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2094), 1, + ACTIONS(4770), 1, + anon_sym_or2, + STATE(2251), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(3960), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(3964), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(3968), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(3970), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(3974), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2746), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4455), 4, + ACTIONS(3966), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4467), 4, + ACTIONS(3978), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4465), 8, + ACTIONS(3976), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189127,155 +197260,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58306] = 13, + [66843] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(3018), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(3030), 1, anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2095), 1, - sym_comment, - ACTIONS(4449), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4453), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4465), 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, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(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, - [58372] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4451), 1, - anon_sym_DASH2, - ACTIONS(4461), 1, - anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2096), 1, - sym_comment, - ACTIONS(2748), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4453), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2746), 26, - anon_sym_in, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, + ACTIONS(3046), 1, anon_sym_xor2, + ACTIONS(4772), 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_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [58432] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4451), 1, - anon_sym_DASH2, - ACTIONS(4461), 1, - anon_sym_PLUS2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2097), 1, + STATE(2252), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(3016), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(3020), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(3026), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(3028), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(3032), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, + ACTIONS(3022), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4467), 4, + ACTIONS(3024), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2746), 8, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4465), 8, + ACTIONS(3014), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189284,109 +197315,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58500] = 15, + [66916] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4451), 1, + ACTIONS(4686), 1, anon_sym_DASH2, - ACTIONS(4461), 1, + ACTIONS(4696), 1, anon_sym_PLUS2, - ACTIONS(4469), 1, + ACTIONS(4704), 1, anon_sym_bit_DASHand2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2098), 1, - sym_comment, - ACTIONS(4449), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4453), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4467), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2746), 7, - sym__newline, - anon_sym_LBRACE, + ACTIONS(4706), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4708), 1, + anon_sym_bit_DASHor2, + ACTIONS(4710), 1, anon_sym_and2, + ACTIONS(4712), 1, anon_sym_xor2, + ACTIONS(4774), 1, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4465), 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, - [58570] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4451), 1, - anon_sym_DASH2, - ACTIONS(4461), 1, - anon_sym_PLUS2, - ACTIONS(4469), 1, - anon_sym_bit_DASHand2, - ACTIONS(4471), 1, - anon_sym_bit_DASHxor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2099), 1, + STATE(2253), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(4684), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4453), 2, + ACTIONS(4688), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4457), 2, + ACTIONS(4692), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, + ACTIONS(4694), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, + ACTIONS(4698), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, + ACTIONS(4690), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4467), 4, + ACTIONS(4702), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2746), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4465), 8, + ACTIONS(4700), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189395,440 +197370,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58642] = 8, + [66989] = 25, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4386), 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(4390), 1, - anon_sym_LBRACK, - ACTIONS(4479), 1, + ACTIONS(4627), 1, anon_sym_DOT_DOT, - STATE(2100), 1, - sym_comment, - ACTIONS(4393), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2933), 6, - anon_sym_DOLLAR, + ACTIONS(4631), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2935), 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, + ACTIONS(4633), 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(4637), 1, 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, - [58698] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(890), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4482), 1, - sym_filesize_unit, - ACTIONS(4484), 1, - sym_duration_unit, - STATE(2101), 1, - sym_comment, - ACTIONS(888), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(886), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [58752] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4490), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4492), 1, - sym_filesize_unit, - ACTIONS(4494), 1, - sym_duration_unit, - STATE(2102), 1, + STATE(2254), 1, sym_comment, - ACTIONS(4488), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4486), 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, - [58806] = 7, + 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(4369), 1, + ACTIONS(4778), 1, + anon_sym_RBRACE, + ACTIONS(4780), 1, sym__entry_separator, - ACTIONS(4371), 1, + ACTIONS(4782), 1, sym_raw_string_begin, - ACTIONS(4496), 1, - anon_sym_RBRACK, - STATE(2103), 1, + STATE(2255), 1, sym_comment, - STATE(2104), 1, + STATE(2260), 1, aux_sym__types_body_repeat2, - ACTIONS(4365), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, + ACTIONS(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, - [58860] = 5, + aux_sym_unquoted_token1, + [67125] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3734), 1, - sym_raw_string_begin, - ACTIONS(4498), 1, + ACTIONS(4780), 1, sym__entry_separator, - STATE(2104), 2, + 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(3729), 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, + 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_RBRACK, + 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, - [58910] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(972), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4501), 1, - sym_filesize_unit, - ACTIONS(4503), 1, - sym_duration_unit, - STATE(2105), 1, - sym_comment, - ACTIONS(970), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(968), 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, - [58964] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4509), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4511), 1, - sym_filesize_unit, - ACTIONS(4513), 1, - sym_duration_unit, - STATE(2106), 1, - sym_comment, - ACTIONS(4507), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4505), 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, - [59018] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1776), 1, - sym__unquoted_pattern, - STATE(2107), 1, - sym_comment, - ACTIONS(858), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(884), 31, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [59068] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4519), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4521), 1, - sym_filesize_unit, - ACTIONS(4523), 1, - sym_duration_unit, - STATE(2108), 1, - sym_comment, - ACTIONS(4517), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4515), 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, - [59122] = 7, + aux_sym_unquoted_token1, + [67175] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4380), 1, + ACTIONS(4780), 1, sym__entry_separator, - ACTIONS(4382), 1, + ACTIONS(4782), 1, sym_raw_string_begin, - ACTIONS(4525), 1, - anon_sym_RBRACK, - STATE(1973), 1, - aux_sym__types_body_repeat2, - STATE(2109), 1, + ACTIONS(4786), 1, + anon_sym_RBRACE, + STATE(2257), 1, sym_comment, - ACTIONS(4376), 33, + STATE(2260), 1, + aux_sym__types_body_repeat2, + ACTIONS(4776), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -189839,11 +197541,10 @@ 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_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, @@ -189858,62 +197559,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [59176] = 20, + aux_sym_unquoted_token1, + [67225] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - ACTIONS(4439), 1, - anon_sym_bit_DASHand2, - ACTIONS(4441), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4443), 1, - anon_sym_bit_DASHor2, - ACTIONS(4445), 1, - anon_sym_and2, - ACTIONS(4447), 1, - anon_sym_xor2, - STATE(2077), 1, - aux_sym__repeat_newline, - STATE(2110), 1, + STATE(2258), 1, sym_comment, - ACTIONS(2702), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, + ACTIONS(4790), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4431), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4792), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 4, + ACTIONS(4794), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4435), 8, + ACTIONS(4788), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189922,292 +197587,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59256] = 4, + ACTIONS(4758), 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, + [67275] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2111), 1, + ACTIONS(4796), 1, + sym__newline, + STATE(2259), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(2508), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - sym__unquoted_pattern, - ACTIONS(2506), 32, + 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_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, - [59303] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1776), 1, - sym__unquoted_pattern, - STATE(2112), 1, - sym_comment, - ACTIONS(858), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(884), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [59352] = 5, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [67321] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4157), 1, - sym__unquoted_pattern, - STATE(2113), 1, - sym_comment, - ACTIONS(858), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(884), 32, + ACTIONS(3720), 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, + ACTIONS(4799), 1, + sym__entry_separator, + STATE(2260), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3715), 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_DASH_DASH, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59401] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2825), 1, - anon_sym_DASH2, - ACTIONS(2833), 1, - anon_sym_PLUS2, - ACTIONS(2851), 1, - anon_sym_bit_DASHand2, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(2877), 1, - anon_sym_and2, - ACTIONS(2879), 1, - anon_sym_xor2, - ACTIONS(2881), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2883), 1, - anon_sym_bit_DASHor2, - ACTIONS(4527), 1, - anon_sym_or2, - STATE(2114), 1, - sym_comment, - STATE(2119), 1, - aux_sym__repeat_newline, - ACTIONS(2827), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2829), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2831), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2840), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2844), 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(2846), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2835), 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, - [59480] = 4, + aux_sym_unquoted_token1, + [67367] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2115), 1, - sym_comment, - ACTIONS(3744), 2, - sym_raw_string_begin, + ACTIONS(4806), 1, sym__entry_separator, - ACTIONS(3742), 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, + ACTIONS(4808), 1, + sym_raw_string_begin, + STATE(2261), 1, + sym_comment, + STATE(2276), 1, + aux_sym__types_body_repeat2, + ACTIONS(4804), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4802), 27, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_RBRACK, + 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, - [59527] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [67416] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4529), 1, - sym__newline, - STATE(2116), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3746), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(3748), 31, + ACTIONS(4806), 1, + sym__entry_separator, + ACTIONS(4808), 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(2262), 1, + sym_comment, + 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, 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, - [59576] = 4, + aux_sym__unquoted_in_list_token1, + [67465] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2117), 1, - sym_comment, - ACTIONS(3744), 2, - sym_raw_string_begin, + ACTIONS(4806), 1, sym__entry_separator, - ACTIONS(3742), 34, + ACTIONS(4808), 1, + sym_raw_string_begin, + STATE(2263), 1, + sym_comment, + STATE(2276), 1, + aux_sym__types_body_repeat2, + ACTIONS(4812), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4802), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -190215,15 +197791,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_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, @@ -190238,131 +197810,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, aux_sym__unquoted_in_list_token1, - [59623] = 6, + [67514] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4369), 1, + ACTIONS(4780), 1, sym__entry_separator, - ACTIONS(4371), 1, + ACTIONS(4782), 1, sym_raw_string_begin, - STATE(2104), 1, + STATE(2260), 1, aux_sym__types_body_repeat2, - STATE(2118), 1, + STATE(2264), 1, sym_comment, - ACTIONS(4365), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, + ACTIONS(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, - [59674] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2796), 1, - anon_sym_DASH2, - ACTIONS(2800), 1, - anon_sym_and2, - ACTIONS(2802), 1, - anon_sym_xor2, - ACTIONS(2812), 1, - anon_sym_PLUS2, - ACTIONS(2816), 1, - anon_sym_bit_DASHand2, - ACTIONS(2818), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2820), 1, - anon_sym_bit_DASHor2, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(4532), 1, - anon_sym_or2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2119), 1, - sym_comment, - ACTIONS(2794), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2798), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2808), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2810), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2814), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2806), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2792), 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, - [59753] = 5, + aux_sym_unquoted_token1, + [67561] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4534), 1, + ACTIONS(4424), 1, sym__newline, - STATE(2120), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3746), 7, - anon_sym_DOLLAR, + ACTIONS(4428), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, anon_sym_DOT_DOT, + STATE(2265), 1, + sym_comment, + ACTIONS(4431), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2958), 5, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(3748), 27, + ACTIONS(2960), 22, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -190370,13 +197880,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -190387,589 +197895,727 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [59802] = 5, + [67612] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_LBRACK2, - STATE(2121), 1, + STATE(2266), 1, sym_comment, - ACTIONS(2092), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1519), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1521), 29, + anon_sym_if, anon_sym_in, - ACTIONS(2090), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_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, + [67655] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2267), 1, + sym_comment, + ACTIONS(3756), 2, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + sym__entry_separator, + ACTIONS(3754), 30, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59851] = 4, + aux_sym_unquoted_token1, + [67698] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2122), 1, + STATE(2268), 1, sym_comment, - ACTIONS(1537), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(1523), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1539), 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, + ACTIONS(1525), 29, 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_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, + [67741] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4806), 1, + sym__entry_separator, + ACTIONS(4808), 1, + sym_raw_string_begin, + STATE(2269), 1, + sym_comment, + STATE(2276), 1, + aux_sym__types_body_repeat2, + ACTIONS(4814), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4802), 27, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + 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, - [59898] = 5, + aux_sym__unquoted_in_list_token1, + [67790] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2527), 1, - sym__unquoted_pattern, - STATE(2123), 1, + ACTIONS(4816), 1, + sym__newline, + STATE(2270), 2, sym_comment, - ACTIONS(2523), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2521), 32, + aux_sym__types_body_repeat1, + ACTIONS(3758), 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(3760), 23, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, - [59947] = 4, - ACTIONS(3), 1, + [67835] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2124), 1, + ACTIONS(4806), 1, + sym__entry_separator, + ACTIONS(4808), 1, + sym_raw_string_begin, + STATE(2271), 1, sym_comment, - ACTIONS(1541), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1543), 32, + STATE(2276), 1, + aux_sym__types_body_repeat2, + ACTIONS(4804), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4802), 27, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + [67884] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4806), 1, + sym__entry_separator, + ACTIONS(4808), 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(2272), 1, + sym_comment, + STATE(2276), 1, + aux_sym__types_body_repeat2, + ACTIONS(4814), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4802), 27, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + 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, - [59994] = 5, + aux_sym__unquoted_in_list_token1, + [67933] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2596), 1, - sym__unquoted_pattern, - STATE(2125), 1, - sym_comment, - ACTIONS(1629), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1716), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + STATE(2273), 1, + sym_comment, + ACTIONS(2148), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_record_token1, + ACTIONS(2146), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_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, - [60043] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [67976] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2126), 1, + STATE(2274), 1, sym_comment, - ACTIONS(1533), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1531), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1533), 29, + anon_sym_if, anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + [68019] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2275), 1, + sym_comment, + ACTIONS(1535), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1535), 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, + ACTIONS(1537), 29, 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_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, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_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, - [60090] = 3, + aux_sym__unquoted_in_list_token1, + [68107] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2127), 1, + STATE(2277), 1, sym_comment, - ACTIONS(2144), 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, - [60135] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(1539), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1541), 29, + anon_sym_if, + anon_sym_in, sym__newline, - ACTIONS(4425), 1, - anon_sym_DASH2, - ACTIONS(4429), 1, - anon_sym_PLUS2, - ACTIONS(4439), 1, - anon_sym_bit_DASHand2, - ACTIONS(4441), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4443), 1, - anon_sym_bit_DASHor2, - ACTIONS(4445), 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_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, - ACTIONS(4447), 1, anon_sym_xor2, - ACTIONS(4539), 1, anon_sym_or2, - STATE(2128), 1, - sym_comment, - STATE(2130), 1, - aux_sym__repeat_newline, - ACTIONS(4354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4423), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4431), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4437), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4435), 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, - [60214] = 20, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + [68150] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(3823), 1, - anon_sym_DASH2, - ACTIONS(3833), 1, - anon_sym_PLUS2, - ACTIONS(3841), 1, - anon_sym_bit_DASHand2, - ACTIONS(3843), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3845), 1, - anon_sym_bit_DASHor2, - ACTIONS(3847), 1, - anon_sym_and2, - ACTIONS(3849), 1, - anon_sym_xor2, - ACTIONS(4541), 1, - anon_sym_or2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2129), 1, + STATE(2278), 1, sym_comment, - ACTIONS(3821), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3825), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3829), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3831), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3835), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3827), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3839), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3837), 8, + ACTIONS(1527), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1529), 29, + anon_sym_if, 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, - [60293] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2875), 1, sym__newline, - ACTIONS(4451), 1, - anon_sym_DASH2, - ACTIONS(4461), 1, - anon_sym_PLUS2, - ACTIONS(4469), 1, - anon_sym_bit_DASHand2, - ACTIONS(4471), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4473), 1, - anon_sym_bit_DASHor2, - ACTIONS(4475), 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_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, - ACTIONS(4477), 1, anon_sym_xor2, - ACTIONS(4543), 1, anon_sym_or2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2130), 1, - sym_comment, - ACTIONS(4449), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4453), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4457), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4459), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4463), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4455), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4467), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4465), 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, - [60372] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + [68193] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(2131), 1, + STATE(2279), 1, sym_comment, - ACTIONS(1008), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1030), 32, + 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_token1, + ACTIONS(2960), 24, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_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_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, - [60421] = 5, + [68235] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(2132), 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(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(2280), 1, sym_comment, - ACTIONS(996), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(994), 32, + STATE(2285), 1, + aux_sym__collection_body_repeat1, + STATE(3961), 1, + sym__val_number_decimal, + STATE(4545), 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, + [68315] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4822), 1, + sym__newline, + STATE(2281), 2, + sym_comment, + aux_sym__types_body_repeat1, + 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(3760), 23, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_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, + [68359] = 23, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1422), 1, anon_sym_DQUOTE, + ACTIONS(1424), 1, anon_sym_SQUOTE, + ACTIONS(1426), 1, anon_sym_BQUOTE, - [60470] = 6, + ACTIONS(1436), 1, + sym_raw_string_begin, + ACTIONS(3092), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4619), 1, + anon_sym_null, + ACTIONS(4627), 1, + anon_sym_DOT_DOT, + ACTIONS(4631), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4633), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4637), 1, + sym_val_date, + STATE(2282), 1, + sym_comment, + STATE(2285), 1, + aux_sym__collection_body_repeat1, + STATE(3961), 1, + sym__val_number_decimal, + STATE(4756), 1, + sym__collection_entry, + STATE(5170), 1, + sym_val_bool, + ACTIONS(4617), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4629), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4635), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4292), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(5033), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4621), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3665), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [68439] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4380), 1, + ACTIONS(4806), 1, sym__entry_separator, - ACTIONS(4382), 1, + ACTIONS(4808), 1, sym_raw_string_begin, - STATE(1973), 1, + STATE(2276), 1, aux_sym__types_body_repeat2, - STATE(2133), 1, + STATE(2283), 1, sym_comment, - ACTIONS(4376), 33, + ACTIONS(4802), 28, anon_sym_true, anon_sym_false, anon_sym_null, @@ -190981,10 +198627,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -190999,4019 +198643,4035 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, aux_sym__unquoted_in_list_token1, - [60521] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(3779), 1, - anon_sym_DASH2, - ACTIONS(3785), 1, - anon_sym_PLUS2, - ACTIONS(3789), 1, - anon_sym_bit_DASHand2, - ACTIONS(3791), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3793), 1, - anon_sym_bit_DASHor2, - ACTIONS(3795), 1, - anon_sym_and2, - ACTIONS(3797), 1, - anon_sym_xor2, - ACTIONS(4545), 1, - anon_sym_or2, - STATE(2129), 1, - aux_sym__repeat_newline, - STATE(2134), 1, - sym_comment, - ACTIONS(3759), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3763), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3777), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3787), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3781), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3783), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3775), 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, - [60600] = 4, - ACTIONS(3), 1, + [68485] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2135), 1, + STATE(2284), 1, sym_comment, - ACTIONS(858), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(884), 32, + ACTIONS(3756), 2, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + sym__entry_separator, + ACTIONS(3754), 29, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_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, - [60646] = 4, + aux_sym__unquoted_in_list_token1, + [68527] = 22, ACTIONS(3), 1, anon_sym_POUND, - STATE(2136), 1, - sym_comment, - ACTIONS(2504), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2502), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, + ACTIONS(4828), 1, anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + 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, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + ACTIONS(4849), 1, + sym_val_date, + ACTIONS(4852), 1, anon_sym_DQUOTE, + ACTIONS(4855), 1, anon_sym_SQUOTE, + ACTIONS(4858), 1, anon_sym_BQUOTE, - [60692] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2137), 1, - sym_comment, - ACTIONS(2600), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2598), 32, + ACTIONS(4861), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4864), 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(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, - anon_sym_null, + 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, - 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, - [60738] = 4, + 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(2138), 1, + STATE(2286), 1, sym_comment, - ACTIONS(1523), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1525), 32, + 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(2958), 6, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2960), 24, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_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_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, - [60784] = 5, - ACTIONS(103), 1, + [68691] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4551), 1, - aux_sym_cmd_identifier_token6, - STATE(2139), 1, + STATE(2288), 1, sym_comment, - ACTIONS(4549), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4547), 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, - [60832] = 4, + STATE(3255), 1, + sym_redirection, + ACTIONS(4869), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4871), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(4873), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [68736] = 25, ACTIONS(3), 1, anon_sym_POUND, - STATE(2140), 1, - sym_comment, - ACTIONS(4553), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4555), 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, + ACTIONS(197), 1, anon_sym_DQUOTE, + ACTIONS(199), 1, anon_sym_SQUOTE, + ACTIONS(201), 1, anon_sym_BQUOTE, - [60878] = 4, + 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, + 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(2808), 1, + sym__binary_predicate_parenthesized, + STATE(2811), 1, + sym_where_predicate, + STATE(3036), 1, + aux_sym__repeat_newline, + STATE(3238), 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, + [68818] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2290), 1, + sym_comment, + 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, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [68862] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2291), 1, + sym_comment, + STATE(3506), 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(4887), 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, + [68906] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2292), 1, + sym_comment, + STATE(3429), 1, + sym_redirection, + ACTIONS(4889), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4891), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(4867), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [68950] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2141), 1, + STATE(2293), 1, sym_comment, - ACTIONS(2933), 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(2935), 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, + 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_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_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(4889), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4891), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(4873), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [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, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [60924] = 4, + 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, - STATE(2142), 1, + ACTIONS(4893), 1, + anon_sym_QMARK2, + ACTIONS(4895), 1, + anon_sym_BANG, + STATE(444), 1, + sym__path_suffix, + STATE(2296), 1, sym_comment, - ACTIONS(2142), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1456), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1458), 23, + anon_sym_if, anon_sym_in, - ACTIONS(2140), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [69161] = 23, + ACTIONS(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, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - 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(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(4881), 1, + anon_sym_LBRACE, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2297), 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(2826), 1, + sym__binary_predicate, + STATE(2827), 1, + sym_where_predicate, + STATE(3361), 1, + sym_val_closure, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(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, + [69237] = 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, - [60970] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2143), 1, - sym_comment, - ACTIONS(1527), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1529), 32, + ACTIONS(211), 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, + 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, + ACTIONS(4903), 1, + anon_sym_LBRACE, + STATE(1290), 1, + sym__expr_unary_minus, + STATE(2298), 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(2968), 1, + sym__binary_predicate, + STATE(2970), 1, + sym_where_predicate, + STATE(3439), 1, + sym_val_closure, + ACTIONS(2208), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(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, + [69313] = 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, - [61016] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2144), 1, - sym_comment, - ACTIONS(2604), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2602), 32, + ACTIONS(211), 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, + 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(2299), 1, + sym_comment, + STATE(2305), 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(2839), 1, + sym__binary_predicate_parenthesized, + STATE(2841), 1, + sym_where_predicate, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(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, + [69389] = 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, - [61062] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2145), 1, - sym_comment, - ACTIONS(2608), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2606), 32, + ACTIONS(211), 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, + 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(2300), 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(2730), 1, + sym__binary_predicate_parenthesized, + STATE(2731), 1, + sym_where_predicate, + STATE(3036), 1, + aux_sym__repeat_newline, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(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, + [69465] = 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, - [61108] = 11, + 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, + 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(2738), 1, + sym__binary_predicate_parenthesized, + STATE(2739), 1, + sym_where_predicate, + STATE(3036), 1, + aux_sym__repeat_newline, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(2248), 2, + sym_expr_parenthesized, + 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, + [69541] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4559), 1, - anon_sym_DASH2, - ACTIONS(4569), 1, - anon_sym_PLUS2, - STATE(2146), 1, + 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, - ACTIONS(4557), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4561), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4565), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4567), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4571), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4563), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2578), 19, + 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_not_DASHin2, - anon_sym_has2, - anon_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, - [61168] = 10, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [69587] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4559), 1, - anon_sym_DASH2, - ACTIONS(4569), 1, - anon_sym_PLUS2, - STATE(2147), 1, + 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, - ACTIONS(2580), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4561), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4565), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4567), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4571), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2578), 23, - anon_sym_in, - anon_sym_LBRACE, + 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, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_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, - [61226] = 7, + [69639] = 23, ACTIONS(3), 1, anon_sym_POUND, - STATE(2148), 1, - sym_comment, - ACTIONS(4561), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4565), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4567), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2580), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2578), 26, - anon_sym_in, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(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, - 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, - [61278] = 5, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2304), 1, + sym_comment, + STATE(2306), 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(2843), 1, + sym__binary_predicate_parenthesized, + STATE(2844), 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, + [69715] = 23, ACTIONS(3), 1, anon_sym_POUND, - STATE(2149), 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(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(2305), 1, sym_comment, - ACTIONS(4565), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2580), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2578), 28, - anon_sym_in, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2606), 1, + sym__where_predicate_lhs, + STATE(2861), 1, + sym__binary_predicate_parenthesized, + STATE(2862), 1, + sym_where_predicate, + STATE(3036), 1, + aux_sym__repeat_newline, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(2248), 2, + sym_expr_parenthesized, + 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, + [69791] = 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, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [61326] = 16, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2306), 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(2869), 1, + sym__binary_predicate_parenthesized, + STATE(2887), 1, + sym_where_predicate, + STATE(3036), 1, + aux_sym__repeat_newline, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(2248), 2, + sym_expr_parenthesized, + 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, + [69867] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4559), 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(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(4569), 1, - anon_sym_PLUS2, - ACTIONS(4577), 1, - anon_sym_bit_DASHand2, - ACTIONS(4579), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4581), 1, - anon_sym_bit_DASHor2, - STATE(2150), 1, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2307), 1, sym_comment, - ACTIONS(4557), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4561), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4565), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4567), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4571), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2578), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4563), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4575), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4573), 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, - [61396] = 17, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2606), 1, + sym__where_predicate_lhs, + STATE(2893), 1, + sym__binary_predicate_parenthesized, + STATE(2894), 1, + sym_where_predicate, + STATE(3036), 1, + aux_sym__repeat_newline, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(2248), 2, + sym_expr_parenthesized, + 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, + [69943] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4559), 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(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(4569), 1, - anon_sym_PLUS2, - ACTIONS(4577), 1, - anon_sym_bit_DASHand2, - ACTIONS(4579), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4581), 1, - anon_sym_bit_DASHor2, - ACTIONS(4583), 1, - anon_sym_and2, - STATE(2151), 1, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2300), 1, + aux_sym__repeat_newline, + STATE(2308), 1, sym_comment, - ACTIONS(4557), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4561), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4565), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4567), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4571), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2578), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4563), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4575), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4573), 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, - [61468] = 18, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2606), 1, + sym__where_predicate_lhs, + STATE(2716), 1, + sym__binary_predicate_parenthesized, + STATE(2720), 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, + [70019] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4559), 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(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(4569), 1, - anon_sym_PLUS2, - ACTIONS(4577), 1, - anon_sym_bit_DASHand2, - ACTIONS(4579), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4581), 1, - anon_sym_bit_DASHor2, - ACTIONS(4583), 1, - anon_sym_and2, - ACTIONS(4585), 1, - anon_sym_xor2, - STATE(2152), 1, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2309), 1, sym_comment, - ACTIONS(2578), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4557), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4561), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4565), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4567), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4571), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4563), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4575), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4573), 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, - [61542] = 4, + STATE(2315), 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(2721), 1, + sym__binary_predicate_parenthesized, + STATE(2751), 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, + [70095] = 23, ACTIONS(3), 1, anon_sym_POUND, - STATE(2153), 1, - sym_comment, - ACTIONS(2612), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2610), 32, + 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, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - 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(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(2310), 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(2752), 1, + sym__binary_predicate_parenthesized, + STATE(2753), 1, + sym_where_predicate, + STATE(3036), 1, + aux_sym__repeat_newline, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(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, + [70171] = 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, - [61588] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4559), 1, + 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(4569), 1, - anon_sym_PLUS2, - STATE(2154), 1, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2311), 1, sym_comment, - ACTIONS(4557), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4561), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4565), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4567), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4571), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4563), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4573), 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(2578), 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, - [61650] = 9, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2606), 1, + sym__where_predicate_lhs, + STATE(2764), 1, + sym__binary_predicate_parenthesized, + STATE(2765), 1, + sym_where_predicate, + STATE(3036), 1, + aux_sym__repeat_newline, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(2248), 2, + sym_expr_parenthesized, + 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, + [70247] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4559), 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(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(4569), 1, - anon_sym_PLUS2, - STATE(2155), 1, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2312), 1, sym_comment, - ACTIONS(2580), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4561), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4565), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4567), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2578), 25, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [61706] = 13, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2606), 1, + sym__where_predicate_lhs, + STATE(2768), 1, + sym__binary_predicate_parenthesized, + STATE(2769), 1, + sym_where_predicate, + STATE(3036), 1, + aux_sym__repeat_newline, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(2248), 2, + sym_expr_parenthesized, + 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, + [70323] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4559), 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(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(4569), 1, - anon_sym_PLUS2, - STATE(2156), 1, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2307), 1, + aux_sym__repeat_newline, + STATE(2313), 1, sym_comment, - ACTIONS(4557), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4561), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4565), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4567), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4571), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4563), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4575), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2578), 7, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4573), 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, - [61770] = 14, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2606), 1, + sym__where_predicate_lhs, + STATE(2846), 1, + sym__binary_predicate_parenthesized, + STATE(2847), 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, + [70399] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4559), 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(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(4569), 1, - anon_sym_PLUS2, - ACTIONS(4577), 1, - anon_sym_bit_DASHand2, - STATE(2157), 1, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2314), 1, sym_comment, - ACTIONS(4557), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4561), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4565), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4567), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4571), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4563), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4575), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2578), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4573), 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, - [61836] = 15, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2606), 1, + sym__where_predicate_lhs, + STATE(2777), 1, + sym__binary_predicate_parenthesized, + STATE(2783), 1, + sym_where_predicate, + STATE(3036), 1, + aux_sym__repeat_newline, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(2248), 2, + sym_expr_parenthesized, + 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, + [70475] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4559), 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(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(4569), 1, - anon_sym_PLUS2, - ACTIONS(4577), 1, - anon_sym_bit_DASHand2, - ACTIONS(4579), 1, - anon_sym_bit_DASHxor2, - STATE(2158), 1, - sym_comment, - ACTIONS(4557), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4561), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4565), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4567), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4571), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4563), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4575), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2578), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4573), 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, - [61904] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4591), 1, - aux_sym_cmd_identifier_token6, - STATE(2159), 1, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2315), 1, sym_comment, - ACTIONS(4589), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4587), 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, - [61952] = 4, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2606), 1, + sym__where_predicate_lhs, + STATE(2734), 1, + sym__binary_predicate_parenthesized, + STATE(2735), 1, + sym_where_predicate, + STATE(3036), 1, + aux_sym__repeat_newline, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(2248), 2, + sym_expr_parenthesized, + 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, + [70551] = 23, ACTIONS(3), 1, anon_sym_POUND, - STATE(2160), 1, - sym_comment, - ACTIONS(1580), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1582), 32, + 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, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - 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(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(2311), 1, + aux_sym__repeat_newline, + STATE(2316), 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(2848), 1, + sym__binary_predicate_parenthesized, + STATE(2849), 1, + sym_where_predicate, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(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, + [70627] = 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, - [61998] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2161), 1, - sym_comment, - ACTIONS(1878), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1876), 32, + ACTIONS(211), 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, + 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(2317), 1, + sym_comment, + 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, - 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, + 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, + [70703] = 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, - [62044] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2162), 1, - sym_comment, - ACTIONS(2588), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2586), 32, + ACTIONS(211), 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, + 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(2312), 1, + aux_sym__repeat_newline, + STATE(2318), 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(2850), 1, + sym__binary_predicate_parenthesized, + STATE(2851), 1, + sym_where_predicate, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(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, + [70779] = 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, - [62090] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2163), 1, - sym_comment, - ACTIONS(1496), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1498), 32, + ACTIONS(211), 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, + 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(2310), 1, + aux_sym__repeat_newline, + STATE(2319), 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(2798), 1, + sym__binary_predicate_parenthesized, + STATE(2800), 1, + sym_where_predicate, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(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, + [70855] = 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, - [62136] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2164), 1, - sym_comment, - ACTIONS(1500), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1502), 32, + ACTIONS(211), 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, + 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(2320), 1, + sym_comment, + STATE(2321), 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(2802), 1, + sym__binary_predicate_parenthesized, + STATE(2803), 1, + sym_where_predicate, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - 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(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, + [70931] = 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, - [62182] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4595), 1, + 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(4605), 1, - anon_sym_PLUS2, - STATE(2165), 1, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2321), 1, sym_comment, - ACTIONS(4593), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4597), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4601), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4603), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4607), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4599), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2578), 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, - [62242] = 10, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2606), 1, + sym__where_predicate_lhs, + STATE(2756), 1, + sym__binary_predicate_parenthesized, + STATE(2757), 1, + sym_where_predicate, + STATE(3036), 1, + aux_sym__repeat_newline, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(2248), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2828), 2, + sym_expr_unary, + sym_val_bool, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71007] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4595), 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(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(4605), 1, - anon_sym_PLUS2, - STATE(2166), 1, + ACTIONS(4883), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(2322), 1, sym_comment, - ACTIONS(2580), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4597), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4601), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4603), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4607), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2578), 23, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62300] = 7, + STATE(2417), 1, + sym_val_string, + STATE(2427), 1, + sym__where_predicate_lhs_path_head, + STATE(2606), 1, + sym__where_predicate_lhs, + STATE(2748), 1, + sym__binary_predicate_parenthesized, + STATE(2749), 1, + sym_where_predicate, + STATE(3036), 1, + aux_sym__repeat_newline, + ACTIONS(1938), 2, + anon_sym_true, + anon_sym_false, + STATE(2248), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2828), 2, + sym_expr_unary, + sym_val_bool, + STATE(426), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71083] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2167), 1, + ACTIONS(1504), 1, + anon_sym_DOT_DOT2, + ACTIONS(4905), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(2323), 1, sym_comment, - ACTIONS(4597), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4601), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4603), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2580), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2578), 26, + STATE(2324), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1506), 23, + anon_sym_if, anon_sym_in, - anon_sym_DASH2, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_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, - [62352] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [71127] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2168), 1, + ACTIONS(1508), 1, + anon_sym_DOT_DOT2, + ACTIONS(4913), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(2324), 2, sym_comment, - ACTIONS(4601), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2580), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2578), 28, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 23, + anon_sym_if, anon_sym_in, - anon_sym_DASH2, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_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, - [62400] = 16, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [71169] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4595), 1, - anon_sym_DASH2, - ACTIONS(4605), 1, - anon_sym_PLUS2, - ACTIONS(4613), 1, - anon_sym_bit_DASHand2, - ACTIONS(4615), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4617), 1, - anon_sym_bit_DASHor2, - STATE(2169), 1, + 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(4593), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4597), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4601), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4603), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4607), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2578), 4, + 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, - ACTIONS(4599), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4611), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4609), 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, - [62470] = 17, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [71215] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4595), 1, - anon_sym_DASH2, - ACTIONS(4605), 1, - anon_sym_PLUS2, - ACTIONS(4613), 1, - anon_sym_bit_DASHand2, - ACTIONS(4615), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4617), 1, - anon_sym_bit_DASHor2, - ACTIONS(4619), 1, - anon_sym_and2, - STATE(2170), 1, + 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(4593), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4597), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4601), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4603), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4607), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2578), 3, + 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, - ACTIONS(4599), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4611), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4609), 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, - [62542] = 18, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [71261] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4595), 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(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(4605), 1, - anon_sym_PLUS2, - ACTIONS(4613), 1, - anon_sym_bit_DASHand2, - ACTIONS(4615), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4617), 1, - anon_sym_bit_DASHor2, - ACTIONS(4619), 1, - anon_sym_and2, - ACTIONS(4621), 1, - anon_sym_xor2, - STATE(2171), 1, + 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, - ACTIONS(2578), 2, - anon_sym_EQ_GT, - anon_sym_or2, - ACTIONS(4593), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4597), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4601), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4603), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4607), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4599), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4611), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4609), 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, - [62616] = 12, + 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(4595), 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(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(4605), 1, - anon_sym_PLUS2, - STATE(2172), 1, + 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, - ACTIONS(4593), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4597), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4601), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4603), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4607), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4599), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4609), 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(2578), 11, - anon_sym_EQ_GT, + 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, - 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, - [62678] = 9, + [71464] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4595), 1, - anon_sym_DASH2, - ACTIONS(4605), 1, - anon_sym_PLUS2, - STATE(2173), 1, + ACTIONS(1717), 1, + anon_sym_BANG, + STATE(2330), 1, sym_comment, - ACTIONS(2580), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4597), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4601), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4603), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2578), 25, + 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_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_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, - [62734] = 13, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [71503] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4595), 1, - anon_sym_DASH2, - ACTIONS(4605), 1, - anon_sym_PLUS2, - STATE(2174), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(2331), 1, sym_comment, - ACTIONS(4593), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4597), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4601), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4603), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4607), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4599), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4611), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2578), 7, - anon_sym_EQ_GT, + 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, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4609), 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, - [62798] = 14, + [71552] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4595), 1, - anon_sym_DASH2, - ACTIONS(4605), 1, - anon_sym_PLUS2, - ACTIONS(4613), 1, - anon_sym_bit_DASHand2, - STATE(2175), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1643), 1, + anon_sym_DOT, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(2332), 1, sym_comment, - ACTIONS(4593), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4597), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4601), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4603), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4607), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4599), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4611), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2578), 6, - anon_sym_EQ_GT, + 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, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4609), 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, - [62864] = 15, + [71601] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4595), 1, - anon_sym_DASH2, - ACTIONS(4605), 1, - anon_sym_PLUS2, - ACTIONS(4613), 1, - anon_sym_bit_DASHand2, - ACTIONS(4615), 1, - anon_sym_bit_DASHxor2, - STATE(2176), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(2333), 1, sym_comment, - ACTIONS(4593), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4597), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4601), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4603), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4607), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4599), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4611), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2578), 5, - anon_sym_EQ_GT, + 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, - anon_sym_bit_DASHor2, - ACTIONS(4609), 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, - [62932] = 4, + [71650] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(2177), 1, - sym_comment, - 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, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_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, - [62978] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1002), 1, - aux_sym_cmd_identifier_token6, - STATE(2178), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(743), 1, + sym__immediate_decimal, + STATE(2334), 1, sym_comment, - ACTIONS(1000), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(998), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [63026] = 27, + 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(1422), 1, + ACTIONS(197), 1, anon_sym_DQUOTE, - ACTIONS(1424), 1, + ACTIONS(199), 1, anon_sym_SQUOTE, - ACTIONS(1426), 1, + ACTIONS(201), 1, anon_sym_BQUOTE, - ACTIONS(1436), 1, + ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(3083), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4625), 1, - anon_sym_null, - ACTIONS(4629), 1, - sym__newline, - ACTIONS(4631), 1, - anon_sym_GT2, - ACTIONS(4633), 1, - anon_sym_DOT_DOT, - ACTIONS(4637), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4639), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4643), 1, - sym_val_date, - STATE(2179), 1, + 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(2223), 1, - aux_sym__types_body_repeat1, - STATE(2246), 1, - aux_sym__collection_body_repeat1, - STATE(3879), 1, - sym__val_number_decimal, - STATE(4448), 1, - sym__collection_entry, - STATE(4897), 1, - sym_val_bool, - STATE(4951), 1, - sym__collection_body, - ACTIONS(4623), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4635), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4641), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4280), 2, + STATE(2417), 1, sym_val_string, - sym__unquoted_in_record, - STATE(5104), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4627), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3594), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [63118] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2180), 1, - sym_comment, - ACTIONS(2150), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2148), 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, - [63164] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2181), 1, - sym_comment, - ACTIONS(2389), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2387), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + STATE(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, - 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, - [63210] = 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(3083), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4625), 1, - anon_sym_null, - ACTIONS(4629), 1, - sym__newline, - ACTIONS(4633), 1, - anon_sym_DOT_DOT, - ACTIONS(4637), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4639), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4643), 1, - sym_val_date, - ACTIONS(4645), 1, - anon_sym_GT2, - STATE(2182), 1, - sym_comment, - STATE(2223), 1, - aux_sym__types_body_repeat1, - STATE(2246), 1, - aux_sym__collection_body_repeat1, - STATE(3879), 1, - sym__val_number_decimal, - STATE(4448), 1, - sym__collection_entry, - STATE(4897), 1, + STATE(2258), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2999), 2, + sym_expr_unary, sym_val_bool, - STATE(5214), 1, - sym__collection_body, - ACTIONS(4623), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4635), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4641), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4280), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5104), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4627), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3594), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [63302] = 4, + [71766] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2183), 1, + ACTIONS(4926), 1, + anon_sym_DOT, + ACTIONS(4928), 1, + aux_sym__immediate_decimal_token5, + STATE(2336), 1, sym_comment, - ACTIONS(2933), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2935), 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, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 21, sym__newline, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [63348] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2184), 1, - sym_comment, - ACTIONS(2365), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2363), 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, - [63394] = 27, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_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(1422), 1, + ACTIONS(197), 1, anon_sym_DQUOTE, - ACTIONS(1424), 1, + ACTIONS(199), 1, anon_sym_SQUOTE, - ACTIONS(1426), 1, + ACTIONS(201), 1, anon_sym_BQUOTE, - ACTIONS(1436), 1, + ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(3083), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4625), 1, - anon_sym_null, - ACTIONS(4629), 1, - sym__newline, - ACTIONS(4633), 1, - anon_sym_DOT_DOT, - ACTIONS(4637), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4639), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4643), 1, - sym_val_date, - ACTIONS(4647), 1, - anon_sym_GT2, - STATE(2185), 1, + 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(2223), 1, - aux_sym__types_body_repeat1, - STATE(2246), 1, - aux_sym__collection_body_repeat1, - STATE(3879), 1, - sym__val_number_decimal, - STATE(4448), 1, - sym__collection_entry, - STATE(4897), 1, - sym_val_bool, - STATE(5053), 1, - sym__collection_body, - ACTIONS(4623), 2, + 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, - ACTIONS(4635), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4641), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4280), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5104), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4627), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3594), 4, + 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, - [63486] = 4, + [71876] = 21, ACTIONS(3), 1, anon_sym_POUND, - STATE(2186), 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, + ACTIONS(197), 1, anon_sym_DQUOTE, + ACTIONS(199), 1, anon_sym_SQUOTE, + ACTIONS(201), 1, anon_sym_BQUOTE, - [63532] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2187), 1, - sym_comment, - ACTIONS(4653), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4655), 32, + ACTIONS(211), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - [63578] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2188), 1, + 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, - ACTIONS(4657), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4659), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + STATE(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, - 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, - [63624] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1014), 1, - aux_sym_cmd_identifier_token6, - STATE(2189), 1, - sym_comment, - ACTIONS(1012), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1010), 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, - [63672] = 4, + 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, - STATE(2190), 1, - sym_comment, - ACTIONS(2290), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2288), 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, + ACTIONS(197), 1, anon_sym_DQUOTE, + ACTIONS(199), 1, anon_sym_SQUOTE, + ACTIONS(201), 1, anon_sym_BQUOTE, - [63718] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2191), 1, - sym_comment, - ACTIONS(1890), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1888), 32, + ACTIONS(211), 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, + 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, - 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, - [63764] = 4, + 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, - STATE(2192), 1, + ACTIONS(4930), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4932), 1, + aux_sym__immediate_decimal_token5, + STATE(2340), 1, sym_comment, - ACTIONS(1629), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1716), 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, - [63810] = 4, + 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, - STATE(2193), 1, - sym_comment, - ACTIONS(4661), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4663), 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, + ACTIONS(197), 1, anon_sym_DQUOTE, + ACTIONS(199), 1, anon_sym_SQUOTE, + ACTIONS(201), 1, anon_sym_BQUOTE, - [63856] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2194), 1, - sym_comment, - ACTIONS(2162), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2160), 32, + ACTIONS(211), 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, + 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, - 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, - [63902] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1036), 1, - aux_sym_cmd_identifier_token6, - STATE(2195), 1, - sym_comment, - ACTIONS(1034), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1032), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [63950] = 4, + 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, - STATE(2196), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(3894), 1, + anon_sym_DOLLAR, + STATE(2342), 1, sym_comment, - ACTIONS(2584), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2582), 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, - [63996] = 4, + 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, - STATE(2197), 1, - sym_comment, - ACTIONS(2519), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2517), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + ACTIONS(197), 1, anon_sym_DQUOTE, + ACTIONS(199), 1, anon_sym_SQUOTE, + ACTIONS(201), 1, anon_sym_BQUOTE, - [64042] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2198), 1, - sym_comment, - ACTIONS(2554), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2552), 32, + ACTIONS(211), 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, + 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, - 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, - [64088] = 5, - ACTIONS(103), 1, + 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(4669), 1, - aux_sym_cmd_identifier_token6, - STATE(2199), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(3894), 1, + anon_sym_DOLLAR, + STATE(2344), 1, sym_comment, - ACTIONS(4667), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4665), 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, - [64136] = 5, - ACTIONS(103), 1, + 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(4675), 1, - aux_sym_cmd_identifier_token6, - STATE(2200), 1, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(1701), 1, + anon_sym_DOT, + ACTIONS(3894), 1, + anon_sym_DOLLAR, + STATE(2345), 1, sym_comment, - ACTIONS(4673), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4671), 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, - [64184] = 4, + 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, - STATE(2201), 1, - sym_comment, - ACTIONS(2260), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2258), 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, + ACTIONS(197), 1, anon_sym_DQUOTE, + ACTIONS(199), 1, anon_sym_SQUOTE, + ACTIONS(201), 1, anon_sym_BQUOTE, - [64230] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2202), 1, - sym_comment, - ACTIONS(2260), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2258), 32, + ACTIONS(211), 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, + 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, - 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, - [64276] = 4, + 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, - STATE(2203), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(729), 1, + sym__immediate_decimal, + STATE(2347), 1, sym_comment, - ACTIONS(2268), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2266), 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, + 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, - [64322] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2204), 1, - sym_comment, - ACTIONS(2431), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2429), 32, + ACTIONS(211), 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, + 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, - 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, - [64368] = 4, + 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, - STATE(2205), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(745), 1, + sym__immediate_decimal, + STATE(2349), 1, sym_comment, - ACTIONS(1858), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1856), 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, - [64414] = 4, + 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, - STATE(2206), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(747), 1, + sym__immediate_decimal, + STATE(2350), 1, sym_comment, - ACTIONS(2537), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2535), 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, + 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, - [64460] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2207), 1, - sym_comment, - ACTIONS(2272), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2270), 32, + ACTIONS(211), 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, + 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, - 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, + 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, - [64506] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4677), 1, - sym__newline, - STATE(2208), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1931), 8, + 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, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1926), 25, - sym_raw_string_begin, + 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, - 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, + 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, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [64554] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2209), 1, - sym_comment, - ACTIONS(2286), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2284), 32, + ACTIONS(211), 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, + 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, - 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, + 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, - [64600] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2210), 1, - sym_comment, - ACTIONS(2616), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2614), 32, + ACTIONS(211), 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, + 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, - 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, - [64646] = 4, + 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, - STATE(2211), 1, + 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, - ACTIONS(1852), 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, - [64692] = 4, + 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, - STATE(2212), 1, + ACTIONS(4954), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4956), 1, + aux_sym__immediate_decimal_token5, + STATE(2357), 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, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [64738] = 18, + 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(3914), 1, - anon_sym_DASH2, - ACTIONS(3918), 1, + 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, - ACTIONS(3928), 1, - anon_sym_PLUS2, - ACTIONS(3932), 1, - anon_sym_bit_DASHand2, - ACTIONS(3934), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3936), 1, - anon_sym_bit_DASHor2, - ACTIONS(3946), 1, anon_sym_xor2, - ACTIONS(4680), 1, anon_sym_or2, - STATE(2213), 1, + 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(3912), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3916), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3924), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3926), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3930), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3920), 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(3910), 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, - [64811] = 18, + 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(2954), 1, - anon_sym_DASH2, - ACTIONS(2962), 1, - anon_sym_PLUS2, - ACTIONS(2974), 1, - anon_sym_bit_DASHand2, - ACTIONS(2976), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2978), 1, - anon_sym_bit_DASHor2, - ACTIONS(2980), 1, + 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, - ACTIONS(3030), 1, anon_sym_xor2, - ACTIONS(4682), 1, anon_sym_or2, - STATE(2214), 1, + 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, - ACTIONS(2956), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2958), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2960), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2964), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2968), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2966), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2972), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2970), 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, - [64884] = 18, + 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(2857), 1, - anon_sym_DASH2, - ACTIONS(2869), 1, - anon_sym_PLUS2, - ACTIONS(2873), 1, - anon_sym_bit_DASHand2, - ACTIONS(2885), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2944), 1, - anon_sym_bit_DASHor2, - ACTIONS(2946), 1, + 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, - ACTIONS(2948), 1, anon_sym_xor2, - ACTIONS(4684), 1, anon_sym_or2, - STATE(2215), 1, + [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(2855), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2859), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2865), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2867), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2871), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2861), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2863), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2853), 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, - [64957] = 18, + 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, - ACTIONS(4559), 1, - anon_sym_DASH2, - ACTIONS(4569), 1, - anon_sym_PLUS2, - ACTIONS(4577), 1, - anon_sym_bit_DASHand2, - ACTIONS(4579), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4581), 1, - anon_sym_bit_DASHor2, - ACTIONS(4583), 1, + 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, - ACTIONS(4585), 1, anon_sym_xor2, - ACTIONS(4686), 1, anon_sym_or2, - STATE(2216), 1, + 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, - ACTIONS(4557), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4561), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4565), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4567), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4571), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4563), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4575), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4573), 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, - [65030] = 18, + 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(4595), 1, - anon_sym_DASH2, - ACTIONS(4605), 1, - anon_sym_PLUS2, - ACTIONS(4613), 1, - anon_sym_bit_DASHand2, - ACTIONS(4615), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4617), 1, - anon_sym_bit_DASHor2, - ACTIONS(4619), 1, + 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, - ACTIONS(4621), 1, anon_sym_xor2, - ACTIONS(4688), 1, anon_sym_or2, - STATE(2217), 1, - sym_comment, - ACTIONS(4593), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4597), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4601), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4603), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4607), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4599), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4611), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4609), 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, - [65103] = 4, - ACTIONS(3), 1, + 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, - STATE(2218), 1, + 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, - ACTIONS(2146), 8, + 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, - 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(2144), 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, + 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_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, - [65148] = 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + 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(3861), 1, - anon_sym_DASH2, - ACTIONS(3871), 1, - anon_sym_PLUS2, - ACTIONS(3879), 1, - anon_sym_bit_DASHand2, - ACTIONS(3881), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3883), 1, - anon_sym_bit_DASHor2, - ACTIONS(3885), 1, + 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, - ACTIONS(3887), 1, anon_sym_xor2, - ACTIONS(4690), 1, anon_sym_or2, - STATE(2219), 1, - sym_comment, - ACTIONS(3859), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3863), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3867), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3869), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3873), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3865), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3877), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3875), 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, - [65221] = 7, + [73839] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2220), 1, + ACTIONS(5002), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5004), 1, + aux_sym__immediate_decimal_token5, + STATE(2376), 1, sym_comment, - ACTIONS(4696), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4698), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4700), 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, - ACTIONS(4694), 16, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1770), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -195028,182 +202688,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [65272] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_RBRACE, - ACTIONS(4706), 1, - sym__entry_separator, - ACTIONS(4708), 1, - sym_raw_string_begin, - STATE(2221), 1, - sym_comment, - STATE(2225), 1, - aux_sym__types_body_repeat2, - ACTIONS(4702), 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, - [65322] = 7, - ACTIONS(103), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [73877] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4706), 1, - sym__entry_separator, - ACTIONS(4708), 1, - sym_raw_string_begin, - ACTIONS(4710), 1, - anon_sym_RBRACE, - STATE(2222), 1, + 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(2225), 1, - aux_sym__types_body_repeat2, - ACTIONS(4702), 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, - [65372] = 25, + 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(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(3083), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4625), 1, - anon_sym_null, - ACTIONS(4629), 1, - sym__newline, - ACTIONS(4633), 1, - anon_sym_DOT_DOT, - ACTIONS(4637), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4639), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4643), 1, - sym_val_date, - STATE(2223), 1, + ACTIONS(5008), 1, + aux_sym__immediate_decimal_token5, + STATE(2378), 1, sym_comment, - STATE(2250), 1, - aux_sym__collection_body_repeat1, - STATE(2405), 1, - aux_sym__types_body_repeat1, - STATE(3879), 1, - sym__val_number_decimal, - STATE(4460), 1, - sym__collection_entry, - STATE(4897), 1, - sym_val_bool, - ACTIONS(4623), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4635), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4641), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4280), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5104), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4627), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3594), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [65458] = 7, + 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(2224), 1, + STATE(2379), 1, sym_comment, - ACTIONS(4714), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4716), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4718), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4712), 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(4694), 15, + 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, @@ -195215,272 +202778,296 @@ static const uint16_t 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, - [65508] = 5, + 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(3734), 1, - sym_raw_string_begin, - ACTIONS(4720), 1, - sym__entry_separator, - STATE(2225), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3729), 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(1667), 1, + sym__space, + ACTIONS(3118), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, + 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, - 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, - [65554] = 5, - ACTIONS(3), 1, + [74037] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4723), 1, - sym__newline, - STATE(2226), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1931), 7, + ACTIONS(1681), 1, + sym__space, + ACTIONS(3118), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, 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(1926), 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, - [65600] = 7, + 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(4706), 1, - sym__entry_separator, - ACTIONS(4708), 1, - sym_raw_string_begin, - ACTIONS(4726), 1, + 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, - STATE(2225), 1, - aux_sym__types_body_repeat2, - STATE(2227), 1, + [74133] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2383), 1, sym_comment, - ACTIONS(4702), 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, - [65650] = 7, - ACTIONS(103), 1, + 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(4732), 1, - sym__entry_separator, - ACTIONS(4734), 1, - sym_raw_string_begin, - STATE(2228), 1, + 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, - STATE(2243), 1, - aux_sym__types_body_repeat2, - ACTIONS(4730), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4728), 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, + 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_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, - [65699] = 7, - ACTIONS(103), 1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [74207] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4732), 1, - sym__entry_separator, - ACTIONS(4734), 1, - sym_raw_string_begin, - STATE(2229), 1, + STATE(2385), 1, sym_comment, - STATE(2243), 1, - aux_sym__types_body_repeat2, - ACTIONS(4736), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4728), 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, - [65748] = 7, - ACTIONS(103), 1, + 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(4732), 1, - sym__entry_separator, - ACTIONS(4734), 1, - sym_raw_string_begin, - STATE(2230), 1, + 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, - STATE(2243), 1, - aux_sym__types_body_repeat2, - ACTIONS(4730), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4728), 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, + 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_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, - [65797] = 4, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [74281] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2231), 1, + ACTIONS(5012), 1, + anon_sym_DOT, + ACTIONS(5014), 1, + aux_sym__immediate_decimal_token5, + STATE(2387), 1, sym_comment, - ACTIONS(1523), 3, - anon_sym_EQ, + ACTIONS(1746), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1525), 29, - anon_sym_if, - anon_sym_in, + 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, @@ -195492,76 +203079,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_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_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_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [65840] = 7, - ACTIONS(103), 1, + [74441] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4732), 1, - sym__entry_separator, - ACTIONS(4734), 1, - sym_raw_string_begin, - STATE(2232), 1, + ACTIONS(5022), 1, + anon_sym_QMARK2, + ACTIONS(5024), 1, + anon_sym_BANG, + STATE(712), 1, + sym__path_suffix, + STATE(2391), 1, sym_comment, - STATE(2243), 1, - aux_sym__types_body_repeat2, - ACTIONS(4738), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4728), 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, - [65889] = 4, + 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(2233), 1, + STATE(2392), 1, sym_comment, - ACTIONS(1527), 3, - anon_sym_EQ, + ACTIONS(739), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1529), 29, - anon_sym_if, - anon_sym_in, + sym__unquoted_pattern, + ACTIONS(741), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -195573,199 +203208,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_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_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - [65932] = 6, - ACTIONS(103), 1, + sym_filesize_unit, + sym_duration_unit, + [74515] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4706), 1, - sym__entry_separator, - ACTIONS(4708), 1, - sym_raw_string_begin, - STATE(2225), 1, - aux_sym__types_body_repeat2, - STATE(2234), 1, + STATE(2393), 1, sym_comment, - ACTIONS(4702), 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, - [65979] = 8, + 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, - ACTIONS(4386), 1, - sym__newline, - ACTIONS(4390), 1, - anon_sym_LBRACK, - ACTIONS(4479), 1, - anon_sym_DOT_DOT, - STATE(2235), 1, + STATE(2394), 1, sym_comment, - ACTIONS(4393), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2933), 5, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2935), 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, - [66030] = 7, + 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(4732), 1, - sym__entry_separator, - ACTIONS(4734), 1, - sym_raw_string_begin, - STATE(2236), 1, + ACTIONS(5026), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5028), 1, + aux_sym__immediate_decimal_token5, + STATE(2395), 1, sym_comment, - STATE(2243), 1, - aux_sym__types_body_repeat2, - ACTIONS(4740), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4728), 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, - [66079] = 4, + 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(2237), 1, + STATE(2396), 1, sym_comment, - ACTIONS(2146), 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(2144), 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, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 21, 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, - [66122] = 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + 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, - STATE(2238), 1, + ACTIONS(5030), 1, + anon_sym_DOT2, + STATE(2293), 1, + sym_cell_path, + STATE(2397), 1, sym_comment, - ACTIONS(1519), 3, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + ACTIONS(1444), 18, anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1521), 29, - anon_sym_if, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -195782,29 +203371,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_GT2, anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + [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, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - [66165] = 4, + [74729] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2239), 1, - sym_comment, - ACTIONS(1504), 3, - anon_sym_EQ, + ACTIONS(1659), 1, anon_sym_DOT_DOT2, + ACTIONS(5006), 1, anon_sym_DOT2, - ACTIONS(1506), 29, - anon_sym_if, - anon_sym_in, + 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, @@ -195816,43 +203430,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_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, - [66208] = 4, + [74770] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2240), 1, - sym_comment, - ACTIONS(3744), 2, - sym_raw_string_begin, + ACTIONS(5034), 1, + anon_sym_GT2, + ACTIONS(5036), 1, sym__entry_separator, - ACTIONS(3742), 30, + 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_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -195860,121 +203462,129 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__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, - [66251] = 7, + aux_sym__unquoted_in_record_token1, + [74809] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4732), 1, - sym__entry_separator, - ACTIONS(4734), 1, + ACTIONS(3720), 1, sym_raw_string_begin, - STATE(2241), 1, + ACTIONS(5040), 1, + sym__entry_separator, + STATE(2401), 2, sym_comment, - STATE(2243), 1, aux_sym__types_body_repeat2, - ACTIONS(4738), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4728), 27, + 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_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, + 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, - 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, - [66300] = 5, + aux_sym__unquoted_in_record_token1, + [74844] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4742), 1, + 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, - STATE(2242), 2, + 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, - aux_sym__types_body_repeat1, - ACTIONS(3746), 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(3748), 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, - [66345] = 5, + 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(3734), 1, - sym_raw_string_begin, - ACTIONS(4745), 1, + ACTIONS(5036), 1, sym__entry_separator, - STATE(2243), 2, - sym_comment, + ACTIONS(5038), 1, + sym_raw_string_begin, + ACTIONS(5053), 1, + anon_sym_GT2, + STATE(2401), 1, aux_sym__types_body_repeat2, - ACTIONS(3729), 29, + 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_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, @@ -195982,29 +203592,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__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, - [66390] = 4, + aux_sym__unquoted_in_record_token1, + [74969] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2244), 1, + STATE(2405), 1, sym_comment, - ACTIONS(1496), 3, - anon_sym_EQ, + ACTIONS(739), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1498), 29, - anon_sym_if, - anon_sym_in, + sym__unquoted_pattern, + ACTIONS(741), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196016,34 +203618,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - anon_sym_QMARK2, - anon_sym_BANG, - [66433] = 4, + sym_filesize_unit, + sym_duration_unit, + [75002] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2245), 1, + ACTIONS(5055), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5057), 1, + aux_sym__immediate_decimal_token5, + STATE(2406), 1, sym_comment, - ACTIONS(1500), 3, - anon_sym_EQ, + ACTIONS(1772), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1502), 29, - anon_sym_if, - anon_sym_in, + sym__unquoted_pattern, + ACTIONS(1770), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196055,373 +203651,169 @@ static const uint16_t 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_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, - anon_sym_QMARK2, - anon_sym_BANG, - [66476] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1422), 1, - anon_sym_DQUOTE, - ACTIONS(1424), 1, - anon_sym_SQUOTE, - ACTIONS(1426), 1, - anon_sym_BQUOTE, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(3083), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4625), 1, - anon_sym_null, - ACTIONS(4633), 1, - anon_sym_DOT_DOT, - ACTIONS(4637), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4639), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4643), 1, - sym_val_date, - STATE(2246), 1, - sym_comment, - STATE(2247), 1, - aux_sym__collection_body_repeat1, - STATE(3879), 1, - sym__val_number_decimal, - STATE(4463), 1, - sym__collection_entry, - STATE(4897), 1, - sym_val_bool, - ACTIONS(4623), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4635), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4641), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4280), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5104), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4627), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3594), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [66556] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4751), 1, - anon_sym_null, - ACTIONS(4757), 1, - anon_sym_DOT_DOT, - ACTIONS(4763), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4766), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4772), 1, - sym_val_date, - ACTIONS(4775), 1, - anon_sym_DQUOTE, - ACTIONS(4778), 1, - anon_sym_SQUOTE, - ACTIONS(4781), 1, - anon_sym_BQUOTE, - ACTIONS(4784), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4787), 1, - sym_raw_string_begin, - STATE(3879), 1, - sym__val_number_decimal, - STATE(4792), 1, - sym__collection_entry, - STATE(4897), 1, - sym_val_bool, - ACTIONS(4748), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4760), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4769), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2247), 2, - sym_comment, - aux_sym__collection_body_repeat1, - STATE(4667), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5104), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4754), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3594), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [66634] = 4, + [75039] = 11, ACTIONS(103), 1, anon_sym_POUND, - STATE(2248), 1, - sym_comment, - ACTIONS(3744), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3742), 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, + ACTIONS(3323), 1, + anon_sym_LPAREN2, + ACTIONS(3707), 1, 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, - [66676] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2249), 1, + ACTIONS(5059), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5061), 1, + aux_sym__immediate_decimal_token2, + STATE(2407), 1, sym_comment, - ACTIONS(2933), 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(2935), 24, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, + STATE(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_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, - [66718] = 23, - ACTIONS(3), 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, + [75086] = 11, + ACTIONS(103), 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(3083), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4625), 1, - anon_sym_null, - ACTIONS(4633), 1, - anon_sym_DOT_DOT, - ACTIONS(4637), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4639), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4643), 1, - sym_val_date, - STATE(2247), 1, - aux_sym__collection_body_repeat1, - STATE(2250), 1, + 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(3879), 1, - sym__val_number_decimal, - STATE(4500), 1, - sym__collection_entry, - STATE(4897), 1, - sym_val_bool, - ACTIONS(4623), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4635), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4641), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4280), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5104), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4627), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3594), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [66798] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4790), 1, + 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, - STATE(2251), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3746), 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(3748), 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, - [66842] = 6, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [75133] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4732), 1, - sym__entry_separator, - ACTIONS(4734), 1, - sym_raw_string_begin, - STATE(2243), 1, - aux_sym__types_body_repeat2, - STATE(2252), 1, + 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, - ACTIONS(4728), 28, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [66888] = 6, + 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, - STATE(2253), 1, + ACTIONS(5073), 1, + anon_sym_DOT, + ACTIONS(5075), 1, + aux_sym__immediate_decimal_token5, + STATE(2410), 1, sym_comment, - STATE(3151), 1, - sym_redirection, - ACTIONS(4795), 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(4797), 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(4793), 13, + 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, @@ -196433,71 +203825,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [66933] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75254] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2254), 1, - sym_comment, - ACTIONS(2933), 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(2935), 24, + 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, + 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, - 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, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66974] = 6, + aux_sym__unquoted_in_record_token1, + [75293] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2255), 1, + ACTIONS(5083), 1, + aux_sym__immediate_decimal_token5, + STATE(2413), 1, sym_comment, - STATE(3173), 1, - sym_redirection, - ACTIONS(4795), 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(4797), 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(4799), 13, + ACTIONS(1854), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1852), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196511,32 +203883,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [67019] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75328] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2256), 1, + ACTIONS(1504), 1, + anon_sym_DOT_DOT2, + ACTIONS(5006), 1, + anon_sym_DOT2, + STATE(720), 1, + sym_path, + STATE(2414), 1, sym_comment, - STATE(3291), 1, - sym_redirection, - ACTIONS(4795), 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(4797), 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(4801), 12, + STATE(2424), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1506), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196548,18 +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, - [67063] = 4, + anon_sym_COLON, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75367] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2257), 1, - sym_comment, - ACTIONS(1580), 2, - anon_sym_EQ, + ACTIONS(1647), 1, anon_sym_DOT_DOT2, - ACTIONS(1582), 27, - anon_sym_if, - anon_sym_in, + ACTIONS(5006), 1, + anon_sym_DOT2, + STATE(720), 1, + sym_path, + STATE(938), 1, + sym_cell_path, + STATE(2414), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2415), 1, + sym_comment, + ACTIONS(1645), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196571,46 +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_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, - [67103] = 6, + [75408] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2258), 1, + STATE(2416), 1, sym_comment, - STATE(3289), 1, - sym_redirection, - ACTIONS(4795), 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(4797), 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(4803), 12, + 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, @@ -196622,91 +203975,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [67147] = 25, + 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, + [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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, - sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4811), 1, - anon_sym_LBRACE, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2259), 1, + ACTIONS(5089), 1, + anon_sym_GT2, + STATE(2401), 1, + aux_sym__types_body_repeat2, + STATE(2418), 1, sym_comment, - STATE(2262), 1, - aux_sym__repeat_newline, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2708), 1, - sym__binary_predicate_parenthesized, - STATE(2709), 1, - sym_where_predicate, - STATE(3187), 1, - sym_val_closure, - ACTIONS(1904), 2, + ACTIONS(5032), 18, anon_sym_true, anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [67229] = 6, - ACTIONS(3), 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_record_token1, + [75519] = 11, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2260), 1, + 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(2419), 1, sym_comment, - STATE(3305), 1, - sym_redirection, - ACTIONS(4815), 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(4817), 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(4793), 12, + 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, + ACTIONS(1641), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196718,33 +204083,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, - [67273] = 6, - ACTIONS(3), 1, + [75566] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2261), 1, + ACTIONS(4982), 1, + aux_sym__immediate_decimal_token5, + STATE(2420), 1, sym_comment, - STATE(3304), 1, - sym_redirection, - ACTIONS(4815), 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(4817), 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(4799), 12, - ts_builtin_sym_end, + 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, @@ -196756,80 +204109,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, - [67317] = 25, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75601] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, - sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4811), 1, - anon_sym_LBRACE, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2262), 1, + ACTIONS(5091), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5093), 1, + aux_sym__immediate_decimal_token5, + STATE(2421), 1, sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2766), 1, - sym__binary_predicate_parenthesized, - STATE(2770), 1, - sym_where_predicate, - STATE(3109), 1, - aux_sym__repeat_newline, - STATE(3200), 1, - sym_val_closure, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [67399] = 7, + ACTIONS(741), 7, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(739), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75638] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4819), 1, - anon_sym_QMARK2, - ACTIONS(4821), 1, - anon_sym_BANG, - STATE(448), 1, - sym__path_suffix, - STATE(2263), 1, + STATE(2422), 1, sym_comment, - ACTIONS(1442), 2, + ACTIONS(860), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1444), 23, - anon_sym_if, - anon_sym_in, + sym__unquoted_pattern, + ACTIONS(862), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196841,94 +204165,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_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, - [67444] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, - sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2264), 1, - sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2732), 1, - sym__binary_predicate_parenthesized, - STATE(2737), 1, - sym_where_predicate, - STATE(3109), 1, - aux_sym__repeat_newline, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [67520] = 11, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [75671] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(3323), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2897), 1, + ACTIONS(3707), 1, anon_sym_DOLLAR, - ACTIONS(4823), 1, - anon_sym_DOT, - STATE(2265), 1, - sym_comment, - STATE(2406), 1, - sym__immediate_decimal, - ACTIONS(4825), 2, + ACTIONS(5059), 1, aux_sym__immediate_decimal_token1, + ACTIONS(5061), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4827), 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(2515), 2, + STATE(3290), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1599), 16, + ACTIONS(1665), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196940,400 +204209,372 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + [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, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, - [67572] = 23, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75755] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, - sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2266), 1, + ACTIONS(5098), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5100), 1, + aux_sym__immediate_decimal_token5, + STATE(2425), 1, sym_comment, - STATE(2283), 1, - aux_sym__repeat_newline, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2747), 1, - sym__binary_predicate_parenthesized, - STATE(2842), 1, - sym_where_predicate, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [67648] = 23, + 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, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75791] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, - sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, + 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, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2267), 1, + 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, + [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(2290), 1, - aux_sym__repeat_newline, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2780), 1, - sym__binary_predicate_parenthesized, - STATE(2782), 1, - sym_where_predicate, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [67724] = 23, + 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(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1601), 1, + ACTIONS(5110), 1, + aux_sym__immediate_decimal_token1, + 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, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, + 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, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2268), 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_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(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2795), 1, - sym__binary_predicate_parenthesized, - STATE(2797), 1, - sym_where_predicate, - STATE(3109), 1, - aux_sym__repeat_newline, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [67800] = 23, + 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(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, - sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2269), 1, + 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, - STATE(2284), 1, - aux_sym__repeat_newline, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2663), 1, - sym__binary_predicate_parenthesized, - STATE(2664), 1, - sym_where_predicate, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [67876] = 23, + 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, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, + STATE(2432), 1, + sym_comment, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1770), 19, sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2270), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76045] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5120), 1, + aux_sym__immediate_decimal_token5, + STATE(2433), 1, sym_comment, - STATE(2286), 1, - aux_sym__repeat_newline, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2772), 1, - sym__binary_predicate_parenthesized, - STATE(2773), 1, - sym_where_predicate, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [67952] = 23, + 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, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [76079] = 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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, + STATE(2434), 1, + sym_comment, + ACTIONS(1854), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1852), 19, sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2264), 1, - aux_sym__repeat_newline, - STATE(2271), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76111] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2435), 1, sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2677), 1, - sym__binary_predicate_parenthesized, - STATE(2678), 1, - sym_where_predicate, - ACTIONS(1904), 2, + ACTIONS(3756), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3754), 19, anon_sym_true, anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [68028] = 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_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, - ACTIONS(199), 1, anon_sym_SQUOTE, - ACTIONS(201), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, - sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2272), 1, - sym_comment, - STATE(2289), 1, - aux_sym__repeat_newline, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2765), 1, - sym__binary_predicate_parenthesized, - STATE(2768), 1, - sym_where_predicate, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [68104] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1450), 1, - anon_sym_DOT_DOT2, - ACTIONS(4829), 1, - anon_sym_DOT2, - STATE(454), 1, - sym_path, - STATE(2257), 1, - sym_cell_path, - STATE(2273), 1, + aux_sym__unquoted_in_record_token1, + [76143] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2436), 1, sym_comment, - STATE(2277), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1452), 22, - anon_sym_if, - anon_sym_in, + ACTIONS(1872), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1870), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -197346,189 +204587,92 @@ static 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, - [68150] = 23, - ACTIONS(3), 1, + [76175] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, - sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2274), 1, + ACTIONS(5114), 1, + anon_sym_DOT2, + STATE(2437), 1, sym_comment, - STATE(2288), 1, - aux_sym__repeat_newline, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2757), 1, - sym__binary_predicate_parenthesized, - STATE(2761), 1, - sym_where_predicate, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [68226] = 23, + 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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, + ACTIONS(5122), 1, sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2275), 1, + STATE(2438), 2, sym_comment, - STATE(2276), 1, - aux_sym__repeat_newline, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2811), 1, - sym__binary_predicate_parenthesized, - STATE(2825), 1, - sym_where_predicate, - ACTIONS(1904), 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(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [68302] = 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_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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, - sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2276), 1, - sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2786), 1, - sym__binary_predicate_parenthesized, - STATE(2791), 1, - sym_where_predicate, - STATE(3109), 1, - aux_sym__repeat_newline, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [68378] = 7, - ACTIONS(3), 1, + [76249] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1515), 1, - anon_sym_DOT_DOT2, - ACTIONS(4829), 1, + ACTIONS(5114), 1, anon_sym_DOT2, - STATE(454), 1, - sym_path, - STATE(2277), 1, + STATE(2439), 1, sym_comment, - STATE(2278), 1, + STATE(2466), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1517), 23, - anon_sym_if, - anon_sym_in, + 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, @@ -197541,30 +204685,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_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, - [68422] = 6, + anon_sym_DOT_DOT2, + [76289] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1508), 1, - anon_sym_DOT_DOT2, - ACTIONS(4831), 1, - anon_sym_DOT2, - STATE(454), 1, - sym_path, - STATE(2278), 2, + ACTIONS(5125), 1, + anon_sym_BANG, + STATE(2440), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1510), 23, - anon_sym_if, - anon_sym_in, + ACTIONS(1450), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -197576,86 +204707,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_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_DOT2, + [76321] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2441), 1, + sym_comment, + ACTIONS(741), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [68464] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(739), 15, sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2279), 1, - sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2762), 1, - sym__binary_predicate_parenthesized, - STATE(2831), 1, - sym_where_predicate, - STATE(3109), 1, - aux_sym__repeat_newline, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [68540] = 8, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76353] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_DOT_DOT2, - ACTIONS(4829), 1, - anon_sym_DOT2, - STATE(454), 1, - sym_path, - STATE(470), 1, - sym_cell_path, - STATE(2277), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2280), 1, + ACTIONS(5075), 1, + aux_sym__immediate_decimal_token5, + STATE(2442), 1, sym_comment, - ACTIONS(1681), 22, - anon_sym_if, + 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, @@ -197667,33 +204766,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [68586] = 8, + [76387] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1689), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + ACTIONS(5127), 1, anon_sym_DOT_DOT2, - ACTIONS(4829), 1, - anon_sym_DOT2, - STATE(454), 1, - sym_path, - STATE(475), 1, - sym_cell_path, - STATE(2277), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2281), 1, + STATE(2443), 1, sym_comment, - ACTIONS(1687), 22, - anon_sym_if, + ACTIONS(5129), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1956), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -197706,780 +204799,309 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [68632] = 23, - ACTIONS(3), 1, + [76425] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(5036), 1, + sym__entry_separator, + ACTIONS(5038), 1, sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, - sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2282), 1, + STATE(2401), 1, + aux_sym__types_body_repeat2, + STATE(2444), 1, sym_comment, - STATE(2295), 1, - aux_sym__repeat_newline, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2667), 1, - sym__binary_predicate_parenthesized, - STATE(2669), 1, - sym_where_predicate, - ACTIONS(1904), 2, + ACTIONS(5032), 18, anon_sym_true, anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [68708] = 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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, - sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2283), 1, - sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2662), 1, - sym_where_predicate, - STATE(2836), 1, - sym__binary_predicate_parenthesized, - STATE(3109), 1, - aux_sym__repeat_newline, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [68784] = 23, - ACTIONS(3), 1, + aux_sym__unquoted_in_record_token1, + [76461] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, - sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2284), 1, + ACTIONS(5131), 1, + anon_sym_QMARK2, + ACTIONS(5133), 1, + anon_sym_BANG, + STATE(2445), 1, sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2689), 1, - sym__binary_predicate_parenthesized, - STATE(2711), 1, - sym_where_predicate, - STATE(3109), 1, - aux_sym__repeat_newline, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [68860] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, + 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, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2268), 1, - aux_sym__repeat_newline, - STATE(2285), 1, - sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2834), 1, - sym__binary_predicate_parenthesized, - STATE(2838), 1, - sym_where_predicate, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [68936] = 23, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [76499] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, - sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2286), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(5135), 1, + anon_sym_DOT_DOT2, + STATE(2446), 1, sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2700), 1, - sym__binary_predicate_parenthesized, - STATE(2702), 1, - sym_where_predicate, - STATE(3109), 1, - aux_sym__repeat_newline, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69012] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, + ACTIONS(5137), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1973), 16, sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2279), 1, - aux_sym__repeat_newline, - STATE(2287), 1, - sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2660), 1, - sym_where_predicate, - STATE(2755), 1, - sym__binary_predicate_parenthesized, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69088] = 23, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [76537] = 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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, - sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2288), 1, + ACTIONS(5139), 1, + aux_sym__immediate_decimal_token5, + STATE(2447), 1, sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2746), 1, - sym__binary_predicate_parenthesized, - STATE(2829), 1, - sym_where_predicate, - STATE(3109), 1, - aux_sym__repeat_newline, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69164] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, + ACTIONS(1854), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1852), 18, + ts_builtin_sym_end, sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2289), 1, - sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2723), 1, - sym__binary_predicate_parenthesized, - STATE(2733), 1, - sym_where_predicate, - STATE(3109), 1, - aux_sym__repeat_newline, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69240] = 23, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76571] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, - sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2290), 1, + STATE(2448), 1, sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2785), 1, - sym__binary_predicate_parenthesized, - STATE(2787), 1, - sym_where_predicate, - STATE(3109), 1, - aux_sym__repeat_newline, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69316] = 23, - ACTIONS(3), 1, + 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, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76603] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2676), 1, - aux_sym_expr_unary_token1, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4834), 1, - anon_sym_LPAREN, - ACTIONS(4836), 1, - anon_sym_DOLLAR, - ACTIONS(4838), 1, - anon_sym_DASH2, - ACTIONS(4840), 1, - anon_sym_LBRACE, - STATE(1328), 1, - sym__expr_unary_minus, - STATE(2291), 1, + STATE(2449), 1, sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2550), 1, - sym__where_predicate_lhs, - STATE(2849), 1, - sym__binary_predicate, - STATE(2854), 1, - sym_where_predicate, - STATE(3273), 1, - sym_val_closure, - ACTIONS(2238), 2, - anon_sym_true, - anon_sym_false, - STATE(2224), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2856), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69392] = 23, + 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, + [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(1601), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3858), 1, anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4811), 1, - anon_sym_LBRACE, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2292), 1, + ACTIONS(5141), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5143), 1, + aux_sym__immediate_decimal_token2, + STATE(2450), 1, sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2659), 1, - sym_where_predicate, - STATE(2763), 1, - sym__binary_predicate, - STATE(3117), 1, - sym_val_closure, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69468] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, - sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, + STATE(3134), 1, + sym__immediate_decimal, + ACTIONS(1602), 2, + sym_identifier, anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2293), 1, - sym_comment, - STATE(2294), 1, - aux_sym__repeat_newline, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2710), 1, - sym_where_predicate, - STATE(2839), 1, - sym__binary_predicate_parenthesized, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 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(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69544] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, + ACTIONS(1598), 9, + anon_sym_EQ, sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2294), 1, - sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2742), 1, - sym_where_predicate, - STATE(2789), 1, - sym__binary_predicate_parenthesized, - STATE(3109), 1, - aux_sym__repeat_newline, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69620] = 23, + 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(1601), 1, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(3858), 1, anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4805), 1, - sym__newline, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2295), 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(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2805), 1, - sym__binary_predicate_parenthesized, - STATE(2807), 1, - sym_where_predicate, - STATE(3109), 1, - aux_sym__repeat_newline, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69696] = 10, + STATE(2922), 1, + sym__immediate_decimal, + ACTIONS(1641), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5049), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2921), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1639), 9, + anon_sym_EQ, + 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(1605), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2897), 1, + ACTIONS(3858), 1, anon_sym_DOLLAR, - STATE(2296), 1, - sym_comment, - STATE(2532), 1, - sym__immediate_decimal, - ACTIONS(4842), 2, + ACTIONS(5141), 1, aux_sym__immediate_decimal_token1, + ACTIONS(5143), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4844), 2, + STATE(2452), 1, + sym_comment, + STATE(3136), 1, + sym__immediate_decimal, + ACTIONS(1653), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5145), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(780), 2, + STATE(3479), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1599), 16, + 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, @@ -198492,23 +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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69745] = 5, + [76817] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1693), 1, - anon_sym_BANG, - STATE(2297), 1, - sym_comment, - ACTIONS(1456), 2, - anon_sym_DOT_DOT2, + ACTIONS(5010), 1, anon_sym_DOT2, - ACTIONS(1458), 23, - anon_sym_if, - anon_sym_in, + 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, + ACTIONS(1882), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198523,36 +205147,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [69784] = 10, + [76855] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1621), 1, - anon_sym_DOT, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - STATE(2298), 1, + ACTIONS(5125), 1, + anon_sym_QMARK2, + STATE(2455), 1, sym_comment, - STATE(2514), 1, - sym__immediate_decimal, - ACTIONS(1609), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1611), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2513), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1617), 16, + ACTIONS(1450), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198564,37 +205170,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_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [69833] = 11, + anon_sym_DOT2, + [76887] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1653), 1, - anon_sym_LPAREN2, - ACTIONS(4846), 1, - anon_sym_DOLLAR, - ACTIONS(4848), 1, - anon_sym_DOT, - STATE(2299), 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, - STATE(2464), 1, - sym__immediate_decimal, - ACTIONS(4850), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4852), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2588), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1599), 15, - ts_builtin_sym_end, + ACTIONS(1862), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198606,32 +205203,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69884] = 10, + [76925] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1691), 1, - sym__unquoted_pattern, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - STATE(2300), 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, - STATE(2536), 1, - sym__immediate_decimal, - ACTIONS(4842), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4844), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(726), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 16, + ACTIONS(1912), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198644,80 +205235,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69933] = 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(2676), 1, - aux_sym_expr_unary_token1, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4834), 1, - anon_sym_LPAREN, - ACTIONS(4836), 1, - anon_sym_DOLLAR, - ACTIONS(4838), 1, - anon_sym_DASH2, - STATE(1328), 1, - sym__expr_unary_minus, - STATE(2301), 1, - sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2550), 1, - sym__where_predicate_lhs, - STATE(2890), 1, - sym__binary_predicate, - STATE(2891), 1, - sym_where_predicate, - ACTIONS(2238), 2, - anon_sym_true, - anon_sym_false, - STATE(2224), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2856), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70003] = 9, + [76963] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - STATE(725), 1, - sym__immediate_decimal, - STATE(2302), 1, + ACTIONS(2081), 1, + anon_sym_BANG, + STATE(2458), 1, sym_comment, - ACTIONS(1611), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1665), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(724), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 16, + ACTIONS(1448), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1450), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198729,39 +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_RPAREN, - anon_sym_RBRACE, + anon_sym_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70049] = 13, - ACTIONS(103), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76997] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1599), 1, - sym__space, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3279), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4854), 1, - anon_sym_DOT, - ACTIONS(4856), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, - aux_sym__immediate_decimal_token2, - STATE(2303), 1, + ACTIONS(5030), 1, + anon_sym_DOT2, + STATE(2459), 1, sym_comment, - STATE(2498), 1, - sym__immediate_decimal, - ACTIONS(4860), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2644), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 13, + 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, @@ -198773,21 +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, - [70103] = 6, + [77033] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4862), 1, - anon_sym_DOT, - ACTIONS(4864), 1, - aux_sym__immediate_decimal_token5, - STATE(2304), 1, + ACTIONS(5149), 1, + anon_sym_DOT2, + STATE(2500), 1, + sym_path, + STATE(2460), 2, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 21, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198799,29 +205322,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_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, + [77067] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1724), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(5152), 1, + anon_sym_DOT_DOT2, + ACTIONS(5156), 1, sym_filesize_unit, + ACTIONS(5158), 1, sym_duration_unit, - [70143] = 6, - ACTIONS(3), 1, + ACTIONS(5160), 1, + sym__unquoted_pattern, + STATE(2461), 1, + sym_comment, + STATE(4806), 1, + sym__expr_parenthesized_immediate, + ACTIONS(886), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5154), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [77113] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4866), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4868), 1, + ACTIONS(5162), 1, + anon_sym_DOT, + ACTIONS(5164), 1, aux_sym__immediate_decimal_token5, - STATE(2305), 1, + STATE(2462), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 21, + 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, @@ -198835,576 +205391,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [70183] = 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(2676), 1, - aux_sym_expr_unary_token1, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4834), 1, - anon_sym_LPAREN, - ACTIONS(4836), 1, - anon_sym_DOLLAR, - ACTIONS(4838), 1, - anon_sym_DASH2, - STATE(1328), 1, - sym__expr_unary_minus, - STATE(2306), 1, - sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2550), 1, - sym__where_predicate_lhs, - STATE(2892), 1, - sym__binary_predicate, - STATE(2893), 1, - sym_where_predicate, - ACTIONS(2238), 2, - anon_sym_true, - anon_sym_false, - STATE(2224), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2856), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70253] = 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(2676), 1, - aux_sym_expr_unary_token1, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4834), 1, - anon_sym_LPAREN, - ACTIONS(4836), 1, - anon_sym_DOLLAR, - ACTIONS(4838), 1, - anon_sym_DASH2, - STATE(1328), 1, - sym__expr_unary_minus, - STATE(2307), 1, - sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2550), 1, - sym__where_predicate_lhs, - STATE(2894), 1, - sym__binary_predicate, - STATE(2895), 1, - sym_where_predicate, - ACTIONS(2238), 2, - anon_sym_true, - anon_sym_false, - STATE(2224), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2856), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70323] = 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(2676), 1, - aux_sym_expr_unary_token1, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4834), 1, - anon_sym_LPAREN, - ACTIONS(4836), 1, - anon_sym_DOLLAR, - ACTIONS(4838), 1, - anon_sym_DASH2, - STATE(1328), 1, - sym__expr_unary_minus, - STATE(2308), 1, - sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2550), 1, - sym__where_predicate_lhs, - STATE(2896), 1, - sym__binary_predicate, - STATE(2897), 1, - sym_where_predicate, - ACTIONS(2238), 2, - anon_sym_true, - anon_sym_false, - STATE(2224), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2856), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70393] = 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(2676), 1, - aux_sym_expr_unary_token1, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4834), 1, - anon_sym_LPAREN, - ACTIONS(4836), 1, - anon_sym_DOLLAR, - ACTIONS(4838), 1, - anon_sym_DASH2, - STATE(1328), 1, - sym__expr_unary_minus, - STATE(2309), 1, - sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2550), 1, - sym__where_predicate_lhs, - STATE(2898), 1, - sym__binary_predicate, - STATE(2947), 1, - sym_where_predicate, - ACTIONS(2238), 2, - anon_sym_true, - anon_sym_false, - STATE(2224), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2856), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70463] = 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(2676), 1, - aux_sym_expr_unary_token1, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4834), 1, - anon_sym_LPAREN, - ACTIONS(4836), 1, - anon_sym_DOLLAR, - ACTIONS(4838), 1, - anon_sym_DASH2, - STATE(1328), 1, - sym__expr_unary_minus, - STATE(2310), 1, - sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2550), 1, - sym__where_predicate_lhs, - STATE(2902), 1, - sym__binary_predicate, - STATE(2903), 1, - sym_where_predicate, - ACTIONS(2238), 2, - anon_sym_true, - anon_sym_false, - STATE(2224), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2856), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70533] = 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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2311), 1, - sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2692), 1, - sym__binary_predicate, - STATE(2693), 1, - sym_where_predicate, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70603] = 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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2312), 1, - sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2694), 1, - sym__binary_predicate, - STATE(2696), 1, - sym_where_predicate, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70673] = 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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2313), 1, - sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2697), 1, - sym__binary_predicate, - STATE(2698), 1, - sym_where_predicate, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70743] = 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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2314), 1, - sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2699), 1, - sym__binary_predicate, - STATE(2701), 1, - sym_where_predicate, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70813] = 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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2315), 1, - sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2703), 1, - sym__binary_predicate, - STATE(2704), 1, - sym_where_predicate, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70883] = 21, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [77149] = 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(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2776), 1, - aux_sym_expr_unary_token1, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - ACTIONS(4813), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(911), 1, - sym__expr_unary_minus, - STATE(2316), 1, + STATE(2463), 1, sym_comment, - STATE(2368), 1, - sym_val_string, - STATE(2410), 1, - sym__where_predicate_lhs_path_head, - STATE(2556), 1, - sym__where_predicate_lhs, - STATE(2706), 1, - sym__binary_predicate, - STATE(2707), 1, - sym_where_predicate, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(2220), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2823), 2, - sym_expr_unary, - sym_val_bool, - STATE(424), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70953] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1872), 2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1653), 1, - anon_sym_LPAREN2, - ACTIONS(4846), 1, - anon_sym_DOLLAR, - STATE(2317), 1, - sym_comment, - STATE(2647), 1, - sym__immediate_decimal, - ACTIONS(4870), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4872), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1294), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1599), 15, + ACTIONS(1870), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -199420,30 +205417,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71001] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1653), 1, anon_sym_LPAREN2, - ACTIONS(1691), 1, - sym__unquoted_pattern, - ACTIONS(4846), 1, - anon_sym_DOLLAR, - STATE(2318), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77180] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5166), 1, + anon_sym_QMARK2, + ACTIONS(5168), 1, + anon_sym_BANG, + STATE(2464), 1, sym_comment, - STATE(2650), 1, - sym__immediate_decimal, - ACTIONS(4870), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4872), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1302), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 15, + 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, @@ -199455,32 +205448,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, - [71049] = 10, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [77217] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1653), 1, + ACTIONS(1977), 1, anon_sym_LPAREN2, - ACTIONS(1698), 1, - anon_sym_DOT, - ACTIONS(4846), 1, - anon_sym_DOLLAR, - STATE(2319), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(5170), 1, + anon_sym_DOT_DOT2, + STATE(2465), 1, sym_comment, - STATE(2587), 1, - sym__immediate_decimal, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1659), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2586), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1617), 15, + 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, @@ -199496,27 +205480,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71097] = 9, - ACTIONS(3), 1, + [77254] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - STATE(777), 1, - sym__immediate_decimal, - STATE(2320), 1, + ACTIONS(5114), 1, + anon_sym_DOT2, + STATE(2466), 1, sym_comment, - ACTIONS(1611), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1665), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(776), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1617), 16, + 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(1504), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199530,30 +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, - [71143] = 9, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [77291] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - STATE(718), 1, - sym__immediate_decimal, - STATE(2321), 1, - sym_comment, - ACTIONS(1611), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1665), 2, + ACTIONS(5174), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(717), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1661), 16, + 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, @@ -199565,32 +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_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [71189] = 9, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [77326] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - STATE(723), 1, - sym__immediate_decimal, - STATE(2322), 1, + ACTIONS(5178), 1, + anon_sym_DOT2, + STATE(2468), 1, sym_comment, - ACTIONS(1611), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1665), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(722), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1669), 16, + 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, @@ -199602,25 +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_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [71235] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [77365] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4874), 1, - anon_sym_DOT, - ACTIONS(4876), 1, - aux_sym__immediate_decimal_token5, - STATE(2323), 1, + ACTIONS(5180), 1, + anon_sym_DOT2, + STATE(2583), 1, + sym_path, + STATE(2469), 2, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 20, - 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, @@ -199632,40 +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, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71274] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [77400] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1599), 1, - sym__space, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3279), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4878), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4880), 1, - aux_sym__immediate_decimal_token2, - STATE(2324), 1, + STATE(2470), 1, sym_comment, - STATE(2833), 1, - sym__immediate_decimal, - ACTIONS(4882), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2949), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 13, + 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, @@ -199679,27 +205622,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [71325] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - ACTIONS(1776), 1, - sym__unquoted_pattern, - ACTIONS(4884), 1, anon_sym_DOT_DOT2, - ACTIONS(4888), 1, - sym_filesize_unit, - ACTIONS(4890), 1, - sym_duration_unit, - STATE(2325), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77431] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2471), 1, sym_comment, - STATE(4712), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4886), 2, + ACTIONS(1537), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(884), 16, + ACTIONS(1535), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199713,35 +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, - [71372] = 12, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77462] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1677), 1, - sym__space, - ACTIONS(1691), 1, - sym__unquoted_pattern, - ACTIONS(3279), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4878), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4880), 1, - aux_sym__immediate_decimal_token2, - STATE(2326), 1, + STATE(2472), 1, sym_comment, - STATE(2821), 1, - sym__immediate_decimal, - ACTIONS(4882), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2998), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1679), 13, + 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, @@ -199754,18 +205675,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [71423] = 5, + anon_sym_RBRACE, + 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, + [77526] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + 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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77559] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4864), 1, + ACTIONS(1746), 1, + sym__unquoted_pattern, + ACTIONS(5185), 1, + anon_sym_DOT, + ACTIONS(5187), 1, aux_sym__immediate_decimal_token5, - STATE(2327), 1, + STATE(2475), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 21, + ACTIONS(1744), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199783,24 +205765,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, + [77594] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2476), 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, - [71460] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4892), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4894), 1, - aux_sym__immediate_decimal_token5, - STATE(2328), 1, - sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 20, - ts_builtin_sym_end, + ACTIONS(771), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199812,25 +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_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, - [71499] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [77625] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4896), 1, - aux_sym__immediate_decimal_token5, - STATE(2329), 1, + STATE(2477), 1, sym_comment, - ACTIONS(763), 2, + ACTIONS(1772), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(765), 21, + ACTIONS(1770), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199842,84 +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, - [71536] = 12, - ACTIONS(103), 1, + [77656] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1617), 1, - sym__space, - ACTIONS(3279), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3858), 1, anon_sym_DOLLAR, - ACTIONS(4856), 1, + ACTIONS(5189), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, + ACTIONS(5191), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4898), 1, - anon_sym_DOT, - STATE(2330), 1, + STATE(2478), 1, sym_comment, - STATE(2643), 1, + STATE(3421), 1, sym__immediate_decimal, - ACTIONS(4860), 2, + ACTIONS(1669), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5049), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2594), 2, + STATE(3413), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1619), 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, - [71587] = 13, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [77701] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1635), 1, sym__unquoted_pattern, - ACTIONS(3230), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - ACTIONS(3695), 1, - anon_sym_DOLLAR, - ACTIONS(4900), 1, - anon_sym_DOT, - ACTIONS(4902), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4904), 1, - aux_sym__immediate_decimal_token2, - STATE(2331), 1, + ACTIONS(5193), 1, + anon_sym_DOT_DOT2, + STATE(2479), 1, sym_comment, - STATE(2518), 1, - sym__immediate_decimal, - ACTIONS(1599), 2, + ACTIONS(5195), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1956), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(4906), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2728), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199931,63 +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, - [71640] = 9, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [77738] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1653), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(4846), 1, + ACTIONS(3858), 1, anon_sym_DOLLAR, - STATE(1291), 1, - sym__immediate_decimal, - STATE(2332), 1, + ACTIONS(5189), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5191), 1, + aux_sym__immediate_decimal_token2, + STATE(2480), 1, sym_comment, - ACTIONS(1659), 2, + STATE(3427), 1, + sym__immediate_decimal, + ACTIONS(1683), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5049), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1730), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1290), 2, + STATE(3425), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1617), 15, - ts_builtin_sym_end, + 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_and2, - anon_sym_xor2, - anon_sym_or2, - [71685] = 9, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [77783] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1653), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(4846), 1, + ACTIONS(3858), 1, anon_sym_DOLLAR, - STATE(1297), 1, - sym__immediate_decimal, - STATE(2333), 1, + ACTIONS(5189), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5191), 1, + aux_sym__immediate_decimal_token2, + STATE(2481), 1, sym_comment, - ACTIONS(1659), 2, + STATE(3478), 1, + sym__immediate_decimal, + ACTIONS(1665), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5049), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1730), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1296), 2, + STATE(3434), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1661), 15, + ACTIONS(1663), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [77828] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2482), 1, + sym_comment, + ACTIONS(1854), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1852), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200003,28 +205975,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71730] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1653), 1, anon_sym_LPAREN2, - ACTIONS(4846), 1, - anon_sym_DOLLAR, - STATE(1299), 1, - sym__immediate_decimal, - STATE(2334), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77859] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2483), 1, sym_comment, - ACTIONS(1659), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1730), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1298), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1669), 15, - ts_builtin_sym_end, + 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, @@ -200036,31 +205999,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, - [71775] = 9, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77890] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1653), 1, - anon_sym_LPAREN2, - ACTIONS(4846), 1, - anon_sym_DOLLAR, - STATE(1301), 1, - sym__immediate_decimal, - STATE(2335), 1, + STATE(2484), 1, sym_comment, - ACTIONS(1659), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1730), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1300), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 15, - ts_builtin_sym_end, + 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, @@ -200072,58 +206026,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_and2, - anon_sym_xor2, - anon_sym_or2, - [71820] = 12, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77921] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3230), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3695), 1, + ACTIONS(3858), 1, anon_sym_DOLLAR, - ACTIONS(4902), 1, + ACTIONS(5189), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4904), 1, + ACTIONS(5191), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4908), 1, - anon_sym_DOT, - STATE(2336), 1, + STATE(2485), 1, sym_comment, - STATE(2727), 1, + STATE(3393), 1, sym__immediate_decimal, - ACTIONS(1617), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4906), 2, + ACTIONS(1641), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5049), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2726), 2, + STATE(3369), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1619), 11, + ACTIONS(1639), 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, - [71870] = 4, - ACTIONS(3), 1, + 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(2337), 1, + STATE(2486), 1, sym_comment, - ACTIONS(1496), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1498), 21, + ACTIONS(862), 7, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(860), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200135,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_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, - [71904] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2338), 1, - sym_comment, - ACTIONS(1500), 2, anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [77997] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5178), 1, anon_sym_DOT2, - ACTIONS(1502), 21, + STATE(2487), 1, + sym_comment, + STATE(2516), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2689), 1, + sym_path, + STATE(2875), 1, + sym_cell_path, + ACTIONS(1645), 4, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1647), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200165,25 +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_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, - [71938] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2339), 1, - sym_comment, - ACTIONS(1504), 2, anon_sym_DOT_DOT2, + [78036] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5178), 1, anon_sym_DOT2, - ACTIONS(1506), 21, + STATE(2488), 1, + sym_comment, + STATE(2516), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2689), 1, + sym_path, + STATE(2817), 1, + sym_cell_path, + ACTIONS(1444), 4, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1442), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200195,26 +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_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, - [71972] = 5, + anon_sym_DOT_DOT2, + [78075] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4910), 1, + 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(5164), 1, aux_sym__immediate_decimal_token5, - STATE(2340), 1, + STATE(2490), 1, sym_comment, - ACTIONS(763), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(765), 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, @@ -200226,36 +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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [78139] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2491), 1, + sym_comment, + ACTIONS(741), 7, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [72008] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - ACTIONS(1828), 1, - sym__unquoted_pattern, - ACTIONS(4912), 1, - anon_sym_DOT_DOT2, - ACTIONS(4916), 1, - sym_filesize_unit, - ACTIONS(4918), 1, - sym_duration_unit, - STATE(2341), 1, - sym_comment, - STATE(4762), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4914), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(884), 15, - ts_builtin_sym_end, + ACTIONS(739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200267,65 +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, - [72054] = 6, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [78170] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4920), 1, - anon_sym_DOT, - ACTIONS(4922), 1, - aux_sym__immediate_decimal_token5, - STATE(2342), 1, - sym_comment, - ACTIONS(1756), 2, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(5199), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1754), 19, + ACTIONS(5203), 1, + sym_filesize_unit, + ACTIONS(5205), 1, + sym_duration_unit, + 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_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [72092] = 11, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [78215] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1617), 1, + ACTIONS(886), 1, sym__space, - ACTIONS(3279), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4924), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4926), 1, - aux_sym__immediate_decimal_token2, - STATE(2343), 1, + 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, - STATE(3108), 1, - sym__immediate_decimal, - ACTIONS(4860), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3107), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1619), 13, + ACTIONS(4205), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200339,30 +206303,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72140] = 11, + [78256] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1661), 1, + ACTIONS(5209), 1, + aux_sym__immediate_decimal_token5, + STATE(2494), 1, + sym_comment, + ACTIONS(1852), 4, sym__space, - ACTIONS(3279), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4924), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4926), 1, - aux_sym__immediate_decimal_token2, - STATE(2344), 1, - sym_comment, - STATE(2995), 1, - sym__immediate_decimal, - ACTIONS(4860), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2992), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 13, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1854), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200376,30 +206329,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72188] = 11, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [78289] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1669), 1, + ACTIONS(5211), 1, + anon_sym_DOT, + ACTIONS(5213), 1, + aux_sym__immediate_decimal_token5, + STATE(2495), 1, + sym_comment, + ACTIONS(1744), 5, + ts_builtin_sym_end, sym__space, - ACTIONS(3279), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4924), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4926), 1, - aux_sym__immediate_decimal_token2, - STATE(2345), 1, - sym_comment, - STATE(3091), 1, - sym__immediate_decimal, - ACTIONS(4860), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3074), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 13, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1746), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200411,32 +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, - anon_sym_RPAREN, - anon_sym_RBRACE, - [72236] = 11, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [78324] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1673), 1, - sym__space, - ACTIONS(3279), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4924), 1, + ACTIONS(1772), 1, + sym__unquoted_pattern, + ACTIONS(5215), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4926), 1, - aux_sym__immediate_decimal_token2, - STATE(2346), 1, + ACTIONS(5217), 1, + aux_sym__immediate_decimal_token5, + STATE(2496), 1, sym_comment, - STATE(2994), 1, - sym__immediate_decimal, - ACTIONS(4860), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3094), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1675), 13, + ACTIONS(1770), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200450,18 +206385,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72284] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [78359] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_QMARK2, - ACTIONS(4930), 1, - anon_sym_BANG, - STATE(2347), 1, + STATE(2497), 1, sym_comment, - STATE(2461), 1, - sym__path_suffix, - ACTIONS(1444), 20, + ACTIONS(1564), 20, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -200482,33 +206415,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_DOT2, - [72322] = 12, + [78388] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3230), 1, - anon_sym_LPAREN2, - ACTIONS(3695), 1, - anon_sym_DOLLAR, - ACTIONS(4932), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4934), 1, - aux_sym__immediate_decimal_token2, - STATE(2348), 1, + STATE(2498), 1, sym_comment, - STATE(2901), 1, - sym__immediate_decimal, - ACTIONS(1599), 2, - ts_builtin_sym_end, + ACTIONS(1529), 3, sym__space, - ACTIONS(4936), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3121), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1527), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200520,33 +206436,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, - [72372] = 12, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [78419] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1691), 1, - sym__unquoted_pattern, - ACTIONS(3230), 1, - anon_sym_LPAREN2, - ACTIONS(3695), 1, - anon_sym_DOLLAR, - ACTIONS(4932), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4934), 1, - aux_sym__immediate_decimal_token2, - STATE(2349), 1, + STATE(2499), 1, sym_comment, - STATE(2906), 1, - sym__immediate_decimal, - ACTIONS(1677), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4936), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3150), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1679), 11, + ACTIONS(1498), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200558,23 +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, - [72422] = 6, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT2, + [78448] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4938), 1, - anon_sym_DOT, - ACTIONS(4940), 1, - aux_sym__immediate_decimal_token5, - STATE(2350), 1, + STATE(2500), 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(1549), 20, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200586,27 +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_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [72460] = 6, - ACTIONS(103), 1, + anon_sym_DOT2, + [78477] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4942), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4944), 1, - aux_sym__immediate_decimal_token5, - STATE(2351), 1, + ACTIONS(5219), 1, + anon_sym_DOT_DOT2, + STATE(2501), 1, sym_comment, - ACTIONS(741), 6, - sym__space, - anon_sym_LPAREN2, + ACTIONS(5221), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 15, + ACTIONS(2110), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200620,49 +206518,50 @@ 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, - [72498] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [78509] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4948), 1, - aux_sym__immediate_decimal_token5, - STATE(2352), 1, + ACTIONS(5223), 1, + anon_sym_DOT2, + STATE(2502), 1, sym_comment, - ACTIONS(1748), 2, + STATE(2622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2871), 1, + sym_path, + STATE(2943), 1, + sym_cell_path, + ACTIONS(1442), 2, + anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1746), 19, + ACTIONS(1444), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, + 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, - [72536] = 4, + [78547] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2353), 1, - sym_comment, - ACTIONS(763), 2, + ACTIONS(5227), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(765), 21, + STATE(2503), 1, + sym_comment, + ACTIONS(5229), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5225), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200679,22 +206578,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [72570] = 4, - ACTIONS(3), 1, + [78579] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2354), 1, + ACTIONS(5213), 1, + aux_sym__immediate_decimal_token5, + STATE(2504), 1, sym_comment, - ACTIONS(1519), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1521), 21, + ACTIONS(1744), 5, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1746), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200706,55 +206603,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [72604] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [78611] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4876), 1, + ACTIONS(5231), 1, + anon_sym_DOT, + ACTIONS(5233), 1, aux_sym__immediate_decimal_token5, - STATE(2355), 1, + STATE(2505), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(1746), 4, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 20, - ts_builtin_sym_end, + sym__unquoted_pattern_in_record, + ACTIONS(1744), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + 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, - sym_filesize_unit, - sym_duration_unit, - [72640] = 4, + [78645] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2356), 1, + STATE(2506), 1, sym_comment, - ACTIONS(1523), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1525), 21, - ts_builtin_sym_end, + ACTIONS(5235), 19, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -200767,25 +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_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, - [72674] = 4, + 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, - STATE(2357), 1, - sym_comment, - ACTIONS(1527), 2, - anon_sym_DOT_DOT2, + ACTIONS(5237), 1, anon_sym_DOT2, - ACTIONS(1529), 21, + 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(1896), 15, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200797,23 +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_COLON, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + [78709] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5223), 1, + anon_sym_DOT2, + STATE(2508), 1, + sym_comment, + 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, + ACTIONS(1657), 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, - anon_sym_QMARK2, - anon_sym_BANG, - [72708] = 4, + [78747] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2358), 1, + STATE(2509), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 21, + ACTIONS(5239), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200825,25 +206735,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - 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, - [72742] = 4, + [78775] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2359), 1, - sym_comment, - ACTIONS(789), 2, - anon_sym_DOT_DOT2, + ACTIONS(1746), 1, sym__unquoted_pattern, - ACTIONS(791), 21, + 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, anon_sym_PIPE, @@ -200855,31 +206766,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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [72776] = 7, + [78809] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4950), 1, - anon_sym_DOT2, - STATE(454), 1, - sym_path, - STATE(784), 1, - sym_cell_path, - STATE(2277), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2360), 1, + ACTIONS(5247), 1, + anon_sym_LT, + STATE(2511), 1, sym_comment, - ACTIONS(1880), 19, - anon_sym_if, + ACTIONS(5245), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200891,28 +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_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [72816] = 7, + [78839] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4950), 1, - anon_sym_DOT2, - STATE(454), 1, - sym_path, - STATE(869), 1, - sym_cell_path, - STATE(2277), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2361), 1, + ACTIONS(5249), 1, + anon_sym_LT, + STATE(2512), 1, sym_comment, - ACTIONS(1872), 19, - anon_sym_if, + ACTIONS(5245), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200924,28 +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, + anon_sym_DASH_GT, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [72856] = 5, + [78869] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4952), 1, - aux_sym__immediate_decimal_token5, - STATE(2362), 1, + STATE(2513), 1, sym_comment, - ACTIONS(765), 6, + ACTIONS(1529), 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(763), 15, + ACTIONS(1527), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200957,111 +206844,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, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [72891] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_GT2, - ACTIONS(4958), 1, - sym__entry_separator, - ACTIONS(4960), 1, - sym_raw_string_begin, - STATE(2363), 1, - sym_comment, - STATE(2370), 1, - aux_sym__types_body_repeat2, - ACTIONS(4954), 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, - [72930] = 5, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [78899] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4962), 1, - aux_sym__immediate_decimal_token5, - STATE(2364), 1, + STATE(2514), 1, sym_comment, - ACTIONS(1814), 2, + ACTIONS(860), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1812), 19, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(862), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + 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, - [72965] = 4, + [78929] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2365), 1, + ACTIONS(5251), 1, + anon_sym_QMARK2, + ACTIONS(5253), 1, + anon_sym_BANG, + STATE(2515), 1, sym_comment, - ACTIONS(763), 2, + STATE(2876), 1, + sym__path_suffix, + ACTIONS(1456), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(765), 20, - ts_builtin_sym_end, + 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [72998] = 4, - ACTIONS(3), 1, + [78965] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2366), 1, + ACTIONS(5178), 1, + anon_sym_DOT2, + STATE(2516), 1, sym_comment, - ACTIONS(789), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(791), 20, + STATE(2541), 1, + aux_sym__where_predicate_lhs_repeat1, + 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, @@ -201073,28 +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_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [73031] = 6, + anon_sym_DOT_DOT2, + [79001] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4964), 1, - anon_sym_DOT, - ACTIONS(4966), 1, - aux_sym__immediate_decimal_token5, - STATE(2367), 1, + STATE(2517), 1, sym_comment, - ACTIONS(1756), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1754), 18, - ts_builtin_sym_end, + ACTIONS(5255), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201106,27 +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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73068] = 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [79029] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1643), 1, - anon_sym_QMARK2, - ACTIONS(1645), 1, - anon_sym_BANG, - STATE(2368), 1, + STATE(2518), 1, sym_comment, - STATE(2488), 1, - sym__path_suffix, - ACTIONS(4970), 2, + ACTIONS(5259), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4968), 17, + ACTIONS(5257), 17, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -201144,123 +206983,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_DOT2, - [73107] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4958), 1, - sym__entry_separator, - ACTIONS(4960), 1, - sym_raw_string_begin, - ACTIONS(4972), 1, - anon_sym_GT2, - STATE(2369), 1, - sym_comment, - STATE(2370), 1, - aux_sym__types_body_repeat2, - ACTIONS(4954), 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, - [73146] = 5, + [79059] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3734), 1, - sym_raw_string_begin, - ACTIONS(4974), 1, - sym__entry_separator, - STATE(2370), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3729), 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, - [73181] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3329), 1, - anon_sym_LPAREN2, - ACTIONS(3855), 1, - anon_sym_DOLLAR, - ACTIONS(4977), 1, - anon_sym_DOT, - ACTIONS(4979), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4981), 1, - aux_sym__immediate_decimal_token2, - STATE(2371), 1, - sym_comment, - STATE(2602), 1, - sym__immediate_decimal, - ACTIONS(1603), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(4983), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2873), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1599), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [73232] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_DOT_DOT2, - ACTIONS(4985), 1, - anon_sym_DOT2, - STATE(791), 1, - sym_path, - STATE(957), 1, - sym_cell_path, - STATE(2372), 1, + ACTIONS(5261), 1, + anon_sym_QMARK2, + STATE(2519), 1, sym_comment, - STATE(2411), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1687), 17, - 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, @@ -201272,27 +207006,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, - [73273] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [79091] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1450), 1, - anon_sym_DOT_DOT2, - ACTIONS(4985), 1, + ACTIONS(5237), 1, anon_sym_DOT2, - STATE(443), 1, - sym_cell_path, - STATE(791), 1, + STATE(720), 1, sym_path, - STATE(2373), 1, - sym_comment, - STATE(2411), 1, + STATE(1338), 1, + sym_cell_path, + STATE(2414), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1452), 17, + STATE(2520), 1, + sym_comment, + ACTIONS(1900), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201308,21 +207039,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73314] = 6, + [79127] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4987), 1, + ACTIONS(1772), 1, + sym__unquoted_pattern, + ACTIONS(5263), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4989), 1, + ACTIONS(5265), 1, aux_sym__immediate_decimal_token5, - STATE(2374), 1, + STATE(2521), 1, sym_comment, - ACTIONS(1748), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1746), 18, + ACTIONS(1770), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201339,17 +207067,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, - [73351] = 4, + [79161] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2375), 1, + ACTIONS(5237), 1, + anon_sym_DOT2, + STATE(720), 1, + sym_path, + STATE(1275), 1, + sym_cell_path, + STATE(2414), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2522), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 20, + ACTIONS(1862), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201365,58 +207096,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [73384] = 7, + [79197] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4991), 1, - anon_sym_QMARK2, - ACTIONS(4993), 1, - anon_sym_BANG, - STATE(894), 1, - sym__path_suffix, - STATE(2376), 1, + STATE(2523), 1, sym_comment, - ACTIONS(1442), 2, + ACTIONS(771), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1444), 17, - ts_builtin_sym_end, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(773), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + 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, - [73423] = 5, + [79227] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4940), 1, - aux_sym__immediate_decimal_token5, - STATE(2377), 1, + ACTIONS(5261), 1, + anon_sym_BANG, + STATE(2524), 1, sym_comment, - ACTIONS(749), 6, + ACTIONS(1450), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(747), 15, + ACTIONS(1448), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201431,32 +207148,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [73458] = 11, - ACTIONS(103), 1, + anon_sym_DOT2, + [79259] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3230), 1, - anon_sym_LPAREN2, - ACTIONS(3695), 1, - anon_sym_DOLLAR, - ACTIONS(4995), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4997), 1, - aux_sym__immediate_decimal_token2, - STATE(2378), 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, - STATE(3149), 1, - sym__immediate_decimal, - ACTIONS(1673), 2, + ACTIONS(1888), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(4906), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3148), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1675), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201468,31 +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, - [73505] = 11, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79295] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3230), 1, - anon_sym_LPAREN2, - ACTIONS(3695), 1, - anon_sym_DOLLAR, - ACTIONS(4995), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4997), 1, - aux_sym__immediate_decimal_token2, - STATE(2379), 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, - STATE(3145), 1, - sym__immediate_decimal, - ACTIONS(1661), 2, + ACTIONS(1882), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(4906), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3144), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201504,31 +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, - [73552] = 11, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79331] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3230), 1, - anon_sym_LPAREN2, - ACTIONS(3695), 1, + ACTIONS(5223), 1, + anon_sym_DOT2, + STATE(2527), 1, + sym_comment, + 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, - ACTIONS(4995), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4997), 1, - aux_sym__immediate_decimal_token2, - STATE(2380), 1, + 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, + STATE(2528), 1, sym_comment, - STATE(3119), 1, - sym__immediate_decimal, - ACTIONS(1617), 2, + ACTIONS(886), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4906), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3118), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1619), 11, + ACTIONS(4205), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201540,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, - [73599] = 8, + [79409] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_DOT_DOT2, - ACTIONS(4985), 1, - anon_sym_DOT2, - STATE(791), 1, - sym_path, - STATE(916), 1, - sym_cell_path, - STATE(2381), 1, + ACTIONS(1854), 1, + sym__unquoted_pattern, + ACTIONS(5267), 1, + aux_sym__immediate_decimal_token5, + STATE(2529), 1, sym_comment, - STATE(2411), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1681), 17, - ts_builtin_sym_end, + ACTIONS(1852), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201568,29 +207289,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73640] = 6, + anon_sym_LPAREN2, + [79441] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(97), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(5269), 1, + anon_sym_LPAREN, + ACTIONS(5271), 1, + anon_sym_DOLLAR, + ACTIONS(5273), 1, + sym__unquoted_naive, + STATE(1306), 1, + sym__inter_single_quotes, + STATE(1317), 1, + sym__inter_double_quotes, + STATE(2530), 1, + sym_comment, + STATE(502), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3502), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [79493] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4999), 1, - anon_sym_DOT, - ACTIONS(5001), 1, - aux_sym__immediate_decimal_token5, - STATE(2382), 1, + STATE(2531), 1, sym_comment, - ACTIONS(749), 7, + ACTIONS(1537), 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(747), 13, + ACTIONS(1535), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201603,32 +207355,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, - sym__unquoted_pattern, - [73677] = 11, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79523] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3230), 1, - anon_sym_LPAREN2, - ACTIONS(3695), 1, - anon_sym_DOLLAR, - ACTIONS(4995), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4997), 1, - aux_sym__immediate_decimal_token2, - STATE(2383), 1, + STATE(2532), 1, sym_comment, - STATE(3147), 1, - sym__immediate_decimal, - ACTIONS(1669), 2, + ACTIONS(1541), 4, ts_builtin_sym_end, sym__space, - ACTIONS(4906), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3146), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1539), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201640,24 +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, - [73724] = 6, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79553] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5003), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5005), 1, - aux_sym__immediate_decimal_token5, - STATE(2384), 1, + STATE(2533), 1, sym_comment, - ACTIONS(741), 7, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 13, + ACTIONS(5275), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201669,63 +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_DOT_DOT2, - sym__unquoted_pattern, - [73761] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4958), 1, - sym__entry_separator, - ACTIONS(4960), 1, - sym_raw_string_begin, - ACTIONS(5007), 1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_GT2, - STATE(2370), 1, - aux_sym__types_body_repeat2, - STATE(2385), 1, - sym_comment, - ACTIONS(4954), 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, - [73800] = 11, - ACTIONS(103), 1, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [79581] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(884), 1, - sym__space, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - ACTIONS(5009), 1, - anon_sym_DOT_DOT2, - ACTIONS(5013), 1, - sym_filesize_unit, - ACTIONS(5015), 1, - sym_duration_unit, - ACTIONS(5017), 1, - sym__unquoted_pattern, - STATE(2386), 1, + ACTIONS(5277), 1, + anon_sym_DOT2, + STATE(2293), 1, + sym_cell_path, + STATE(2500), 1, + sym_path, + STATE(2534), 1, sym_comment, - STATE(4671), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5011), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(858), 13, + STATE(2608), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1444), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201737,51 +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, - [73847] = 7, - ACTIONS(103), 1, + [79617] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4958), 1, - sym__entry_separator, - ACTIONS(4960), 1, + ACTIONS(974), 1, sym_raw_string_begin, - ACTIONS(5019), 1, - anon_sym_GT2, - STATE(2370), 1, - aux_sym__types_body_repeat2, - STATE(2387), 1, - sym_comment, - ACTIONS(4954), 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(3335), 1, anon_sym_DQUOTE, + ACTIONS(3337), 1, anon_sym_SQUOTE, + ACTIONS(3339), 1, anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [73886] = 5, + 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(4922), 1, - aux_sym__immediate_decimal_token5, - STATE(2388), 1, - sym_comment, - ACTIONS(1756), 2, + ACTIONS(5227), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1754), 19, + STATE(2536), 1, + sym_comment, + ACTIONS(5229), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5225), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201798,22 +207502,17 @@ 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, - [73921] = 4, + [79701] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2389), 1, + STATE(2537), 1, sym_comment, - ACTIONS(765), 6, + ACTIONS(1770), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(763), 15, + ACTIONS(1772), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201829,51 +207528,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [73953] = 12, + [79731] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1691), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3329), 1, - anon_sym_LPAREN2, - ACTIONS(3855), 1, - anon_sym_DOLLAR, - ACTIONS(5021), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5023), 1, - aux_sym__immediate_decimal_token2, - STATE(2390), 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, - STATE(3069), 1, - sym__immediate_decimal, - ACTIONS(1679), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5025), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3343), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 9, - anon_sym_EQ, + ACTIONS(1912), 15, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [74001] = 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, + [79767] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2391), 1, + STATE(2539), 1, sym_comment, - ACTIONS(1902), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1900), 19, + ACTIONS(5281), 19, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201885,32 +207575,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_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + [79795] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1973), 1, + sym__space, + ACTIONS(1977), 1, anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(5283), 1, + anon_sym_DOT_DOT2, + STATE(2540), 1, + sym_comment, + ACTIONS(5285), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74033] = 8, + ACTIONS(1975), 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, + [79833] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(5287), 1, anon_sym_DOT2, - STATE(2392), 1, + STATE(2689), 1, + sym_path, + STATE(2541), 2, sym_comment, - STATE(2443), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2549), 1, - sym_path, - STATE(2638), 1, - sym_cell_path, - ACTIONS(1452), 3, + ACTIONS(1510), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1450), 14, + ACTIONS(1508), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201922,21 +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, - [74073] = 5, - ACTIONS(3), 1, + [79867] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5029), 1, - aux_sym__immediate_decimal_token5, - STATE(2393), 1, + STATE(2542), 1, sym_comment, - ACTIONS(1814), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1812), 18, - ts_builtin_sym_end, + 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, @@ -201948,27 +207662,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_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74107] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [79897] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5031), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5033), 1, - aux_sym__immediate_decimal_token5, - STATE(2394), 1, + STATE(2543), 1, sym_comment, - ACTIONS(1746), 4, + ACTIONS(1870), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1748), 15, + ACTIONS(1872), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201984,15 +207692,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [74143] = 4, + [79927] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5035), 1, - anon_sym_BANG, - STATE(2395), 1, + ACTIONS(5227), 1, + anon_sym_DOT_DOT2, + STATE(2544), 1, sym_comment, - ACTIONS(1458), 20, - anon_sym_EQ, + ACTIONS(5229), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5225), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202004,29 +207714,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT2, - [74175] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79959] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1746), 1, sym__unquoted_pattern, - ACTIONS(2015), 1, - anon_sym_LPAREN2, - ACTIONS(5037), 1, - anon_sym_DOT_DOT2, - STATE(2396), 1, + ACTIONS(5187), 1, + aux_sym__immediate_decimal_token5, + STATE(2545), 1, sym_comment, - ACTIONS(5039), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2011), 16, + ACTIONS(1744), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202043,45 +207745,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74213] = 7, + anon_sym_LPAREN2, + [79991] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1860), 1, - anon_sym_DOT2, - STATE(414), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(454), 1, - sym_path, - STATE(2397), 1, + ACTIONS(5290), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5292), 1, + aux_sym__immediate_decimal_token5, + STATE(2546), 1, sym_comment, - ACTIONS(5043), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5041), 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, - [74251] = 4, + ACTIONS(1772), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1770), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [80025] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5035), 1, - anon_sym_QMARK2, - STATE(2398), 1, + STATE(2547), 1, sym_comment, - ACTIONS(1458), 20, + ACTIONS(5294), 19, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -202094,30 +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_COLON, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_GT2, anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, - [74283] = 7, + [80053] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5045), 1, - anon_sym_QMARK2, - ACTIONS(5047), 1, - anon_sym_BANG, - STATE(2399), 1, + STATE(2548), 1, sym_comment, - STATE(2568), 1, - sym__path_suffix, - ACTIONS(1444), 3, + ACTIONS(1525), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1442), 15, + ACTIONS(1523), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202129,19 +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, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - [74321] = 4, + [80083] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2400), 1, - sym_comment, - ACTIONS(1748), 2, + ACTIONS(5227), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1746), 19, + 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, @@ -202158,22 +207852,90 @@ 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, - [74353] = 4, - ACTIONS(103), 1, + [80115] = 14, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2401), 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(5304), 1, + anon_sym_LPAREN, + ACTIONS(5306), 1, + anon_sym_DASH2, + STATE(2550), 1, sym_comment, - ACTIONS(741), 6, - sym__space, - anon_sym_LPAREN2, + 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(5310), 1, + anon_sym_DOT_DOT2, + STATE(2552), 1, + sym_comment, + ACTIONS(5312), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 15, + ACTIONS(2154), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202187,26 +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, - [74385] = 8, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80249] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5027), 1, - anon_sym_DOT2, - STATE(2402), 1, + ACTIONS(5314), 1, + anon_sym_DOT_DOT2, + STATE(2553), 1, sym_comment, - STATE(2443), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2549), 1, - sym_path, - STATE(2598), 1, - sym_cell_path, - ACTIONS(1687), 3, - sym__space, + ACTIONS(5316), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1689), 14, + ACTIONS(2102), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202220,52 +207976,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, - [74425] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4958), 1, - sym__entry_separator, - ACTIONS(4960), 1, - sym_raw_string_begin, - STATE(2370), 1, - aux_sym__types_body_repeat2, - STATE(2403), 1, - sym_comment, - ACTIONS(4954), 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, - [74461] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80281] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5049), 1, - anon_sym_DOT, - ACTIONS(5051), 1, - aux_sym__immediate_decimal_token5, - STATE(2404), 1, + STATE(2554), 1, sym_comment, - ACTIONS(1754), 4, + ACTIONS(1521), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1756), 15, + ACTIONS(1519), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202277,54 +208001,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, - [74497] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5053), 1, - sym__newline, - STATE(2405), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3746), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3748), 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, - [74531] = 7, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [80311] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern, - ACTIONS(5056), 1, + ACTIONS(5318), 1, anon_sym_DOT_DOT2, - STATE(2406), 1, + STATE(2555), 1, sym_comment, - ACTIONS(5058), 2, + ACTIONS(5320), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2021), 16, + ACTIONS(2118), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202341,22 +208032,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74569] = 5, + [80343] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1788), 1, + anon_sym_LPAREN, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + anon_sym_SQUOTE, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(5322), 1, + anon_sym_DOLLAR, + ACTIONS(5324), 1, + sym__unquoted_naive, + STATE(749), 1, + sym__inter_single_quotes, + STATE(750), 1, + sym__inter_double_quotes, + STATE(2556), 1, + sym_comment, + STATE(2266), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3277), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [80395] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2557), 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, + [80425] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5001), 1, + ACTIONS(5326), 1, aux_sym__immediate_decimal_token5, - STATE(2407), 1, + STATE(2558), 1, sym_comment, - ACTIONS(749), 7, + ACTIONS(1852), 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(1854), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202370,15 +208122,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [74603] = 4, - ACTIONS(3), 1, + [80457] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2408), 1, - sym_comment, - ACTIONS(1814), 2, - anon_sym_DOT_DOT2, + ACTIONS(1635), 1, sym__unquoted_pattern, - ACTIONS(1812), 19, + 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(1958), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202392,94 +208152,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74635] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3329), 1, - anon_sym_LPAREN2, - ACTIONS(3855), 1, - anon_sym_DOLLAR, - ACTIONS(5021), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5023), 1, - aux_sym__immediate_decimal_token2, - STATE(2409), 1, - sym_comment, - STATE(3000), 1, - sym__immediate_decimal, - ACTIONS(1603), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5025), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3360), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1599), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [74683] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1860), 1, - anon_sym_DOT2, - STATE(454), 1, - sym_path, - STATE(2397), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2410), 1, - sym_comment, - ACTIONS(5062), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5060), 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, - [74721] = 7, - ACTIONS(3), 1, + [80495] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1515), 1, - anon_sym_DOT_DOT2, - ACTIONS(4985), 1, - anon_sym_DOT2, - STATE(791), 1, - sym_path, - STATE(2411), 1, + STATE(2560), 1, sym_comment, - STATE(2421), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1517), 17, + ACTIONS(1533), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1531), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202491,25 +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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74759] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [80525] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4950), 1, + ACTIONS(1896), 1, + sym__space, + ACTIONS(5114), 1, anon_sym_DOT2, - STATE(454), 1, - sym_path, - STATE(938), 1, - sym_cell_path, - STATE(2277), 1, + STATE(2466), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2412), 1, + STATE(2561), 1, sym_comment, - ACTIONS(1892), 17, + STATE(2583), 1, + sym_path, + STATE(3065), 1, + sym_cell_path, + ACTIONS(1898), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202522,25 +208206,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_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [74797] = 7, + [80562] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4950), 1, - anon_sym_DOT2, - STATE(454), 1, - sym_path, - STATE(901), 1, - sym_cell_path, - STATE(2277), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2413), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(2562), 1, sym_comment, - ACTIONS(1862), 17, + ACTIONS(1973), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202553,35 +208229,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, - [74835] = 11, - ACTIONS(103), 1, + [80593] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - ACTIONS(5064), 1, - anon_sym_DOT_DOT2, - ACTIONS(5068), 1, - sym_filesize_unit, - ACTIONS(5070), 1, - sym_duration_unit, - ACTIONS(5072), 1, + ACTIONS(1679), 1, sym__unquoted_pattern, - STATE(2414), 1, + ACTIONS(2642), 1, + anon_sym_LPAREN2, + STATE(2563), 1, sym_comment, - STATE(4836), 1, - sym__expr_parenthesized_immediate, - ACTIONS(884), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5066), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(858), 11, + ACTIONS(2541), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202593,20 +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, - [74881] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80624] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4950), 1, - anon_sym_DOT2, - STATE(454), 1, - sym_path, - STATE(930), 1, - sym_cell_path, - STATE(2277), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2415), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + STATE(2564), 1, sym_comment, - ACTIONS(1888), 17, + STATE(4802), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5332), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202619,27 +208281,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_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74919] = 5, - ACTIONS(103), 1, + [80655] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5074), 1, - aux_sym__immediate_decimal_token5, - STATE(2416), 1, + STATE(2565), 1, sym_comment, - ACTIONS(765), 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(763), 13, + ACTIONS(5334), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202651,22 +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, - [74953] = 7, + 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, - ACTIONS(4950), 1, - anon_sym_DOT2, - STATE(454), 1, - sym_path, - STATE(940), 1, - sym_cell_path, - STATE(2277), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2417), 1, + ACTIONS(1854), 1, + sym__unquoted_pattern, + STATE(2566), 1, sym_comment, - ACTIONS(1856), 17, + ACTIONS(1852), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202679,24 +208329,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74991] = 4, - ACTIONS(103), 1, + anon_sym_LPAREN2, + [80711] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2418), 1, - sym_comment, - ACTIONS(791), 6, - sym__space, + ACTIONS(2644), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(789), 15, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(2567), 1, + sym_comment, + ACTIONS(2589), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202710,54 +208357,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, - [75023] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2419), 1, - sym_comment, - ACTIONS(3744), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3742), 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, - [75055] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80742] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5076), 1, - anon_sym_DOT, - ACTIONS(5078), 1, - aux_sym__immediate_decimal_token5, - STATE(2420), 1, + STATE(2568), 1, sym_comment, - ACTIONS(747), 6, - sym_identifier, + ACTIONS(1519), 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(1521), 15, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -202767,23 +208381,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, - [75091] = 6, - ACTIONS(3), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [80771] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1508), 1, - anon_sym_DOT_DOT2, - ACTIONS(5080), 1, + ACTIONS(1882), 1, + sym__space, + ACTIONS(5114), 1, anon_sym_DOT2, - STATE(791), 1, - sym_path, - STATE(2421), 2, - sym_comment, + STATE(2466), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1510), 17, - ts_builtin_sym_end, + 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, @@ -202795,53 +208412,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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75127] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5083), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5085), 1, - aux_sym__immediate_decimal_token5, - STATE(2422), 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, - [75163] = 5, + anon_sym_RBRACE, + [80808] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4966), 1, - aux_sym__immediate_decimal_token5, - STATE(2423), 1, - sym_comment, - ACTIONS(1756), 2, - anon_sym_DOT_DOT2, + ACTIONS(1872), 1, sym__unquoted_pattern, - ACTIONS(1754), 18, - ts_builtin_sym_end, + STATE(2570), 1, + sym_comment, + ACTIONS(1870), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202853,66 +208433,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75197] = 12, + [80837] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3329), 1, - anon_sym_LPAREN2, - ACTIONS(3855), 1, - anon_sym_DOLLAR, - ACTIONS(4979), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4981), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5087), 1, - anon_sym_DOT, - STATE(2424), 1, - sym_comment, - STATE(2869), 1, - sym__immediate_decimal, - ACTIONS(1619), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(4983), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2868), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1617), 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, - [75245] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(5336), 1, anon_sym_DOT2, - STATE(2425), 1, + STATE(2571), 1, sym_comment, - STATE(2443), 1, + STATE(2710), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2549), 1, + STATE(2936), 1, sym_path, - STATE(2626), 1, + STATE(3106), 1, sym_cell_path, - ACTIONS(1681), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1683), 14, + ACTIONS(1444), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202924,50 +208466,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [75285] = 4, + anon_sym_COLON, + [80872] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2426), 1, - sym_comment, - ACTIONS(2933), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(2935), 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, - [75316] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2427), 1, + STATE(2572), 1, sym_comment, - ACTIONS(741), 7, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 13, + ACTIONS(5338), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202979,56 +208485,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, - sym__unquoted_pattern, - [75347] = 11, - ACTIONS(3), 1, + anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [80899] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3329), 1, - anon_sym_LPAREN2, - ACTIONS(3855), 1, - anon_sym_DOLLAR, - ACTIONS(5089), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5091), 1, - aux_sym__immediate_decimal_token2, - STATE(2428), 1, + ACTIONS(5114), 1, + anon_sym_DOT2, + ACTIONS(5342), 1, + sym__space, + STATE(2466), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2573), 1, sym_comment, - STATE(3355), 1, - sym__immediate_decimal, - ACTIONS(1619), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(4983), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3351), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1617), 9, - anon_sym_EQ, + STATE(2583), 1, + sym_path, + STATE(3165), 1, + sym_cell_path, + ACTIONS(5340), 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_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [75392] = 4, + anon_sym_RBRACE, + [80936] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2429), 1, + STATE(2574), 1, sym_comment, - ACTIONS(765), 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(763), 13, + ACTIONS(1872), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203042,25 +208545,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [75423] = 9, + [80965] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(884), 1, - sym__space, - ACTIONS(4149), 1, - anon_sym_DOT_DOT2, - ACTIONS(5013), 1, - sym_filesize_unit, - ACTIONS(5015), 1, - sym_duration_unit, - ACTIONS(5017), 1, - sym__unquoted_pattern, - STATE(2430), 1, + STATE(2575), 1, sym_comment, - ACTIONS(4151), 2, + ACTIONS(1498), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(858), 13, + ACTIONS(1496), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203074,20 +208568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [75464] = 4, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [80994] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2431), 1, + STATE(2576), 1, sym_comment, - ACTIONS(791), 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(789), 13, + ACTIONS(1521), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203099,24 +208588,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, - [75495] = 6, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [81021] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5093), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5095), 1, + ACTIONS(5344), 1, + anon_sym_DOT, + ACTIONS(5346), 1, aux_sym__immediate_decimal_token5, - STATE(2432), 1, + STATE(2577), 1, sym_comment, - ACTIONS(1746), 5, - ts_builtin_sym_end, + ACTIONS(1744), 2, sym__space, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1748), 13, + ACTIONS(1746), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203128,17 +208618,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_RPAREN, + anon_sym_RBRACE, sym__unquoted_pattern, - [75530] = 4, + [81054] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2433), 1, - sym_comment, - ACTIONS(1748), 2, - anon_sym_DOT_DOT2, + ACTIONS(1746), 1, sym__unquoted_pattern, - ACTIONS(1746), 18, + ACTIONS(5243), 1, + aux_sym__immediate_decimal_token5, + STATE(2578), 1, + sym_comment, + ACTIONS(1744), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203155,47 +208647,39 @@ 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, - [75561] = 6, - ACTIONS(103), 1, + [81085] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5097), 1, - anon_sym_DOT, - ACTIONS(5099), 1, + ACTIONS(5233), 1, aux_sym__immediate_decimal_token5, - STATE(2434), 1, + STATE(2579), 1, sym_comment, - ACTIONS(1754), 5, - ts_builtin_sym_end, - sym__space, + ACTIONS(1746), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1744), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1756), 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, - [75596] = 4, - ACTIONS(103), 1, + [81116] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2435), 1, + STATE(2580), 1, sym_comment, - ACTIONS(1529), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1527), 17, + ACTIONS(5348), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203207,27 +208691,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_GT, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [75627] = 7, + [81143] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2015), 1, - anon_sym_LPAREN2, - ACTIONS(5101), 1, + ACTIONS(5350), 1, anon_sym_DOT_DOT2, - STATE(2436), 1, + STATE(2581), 1, sym_comment, - ACTIONS(5103), 2, + ACTIONS(5352), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2011), 15, + ACTIONS(5225), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203243,16 +208723,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [75664] = 4, - ACTIONS(103), 1, + [81174] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2437), 1, + STATE(2582), 1, sym_comment, - ACTIONS(1498), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1496), 17, + ACTIONS(5245), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203264,29 +208741,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_GT, anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [75695] = 7, + [81201] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5105), 1, - anon_sym_QMARK2, - ACTIONS(5107), 1, - anon_sym_BANG, - STATE(2438), 1, + STATE(2583), 1, sym_comment, - STATE(2625), 1, - sym__path_suffix, - ACTIONS(1444), 4, - ts_builtin_sym_end, + ACTIONS(1549), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1442), 13, + ACTIONS(1547), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203298,18 +208768,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [75732] = 4, - ACTIONS(103), 1, + [81230] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2439), 1, + STATE(2584), 1, sym_comment, - ACTIONS(1502), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1500), 17, + ACTIONS(1525), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203321,22 +208790,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [75763] = 4, + [81257] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2440), 1, + STATE(2585), 1, sym_comment, - ACTIONS(1506), 3, + ACTIONS(1770), 5, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1504), 17, + ACTIONS(1772), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203348,22 +208819,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [75794] = 4, + sym__unquoted_pattern, + [81286] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2441), 1, + STATE(2586), 1, sym_comment, - ACTIONS(1814), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1812), 18, - ts_builtin_sym_end, + ACTIONS(1529), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203375,24 +208839,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75825] = 6, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [81313] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1748), 1, - sym__unquoted_pattern, - ACTIONS(5109), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5111), 1, - aux_sym__immediate_decimal_token5, - STATE(2442), 1, + ACTIONS(5030), 1, + anon_sym_DOT2, + STATE(2459), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2500), 1, + sym_path, + STATE(2587), 1, sym_comment, - ACTIONS(1746), 17, + STATE(3055), 1, + sym_cell_path, + ACTIONS(5354), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203406,26 +208873,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, - anon_sym_LPAREN2, - [75860] = 7, - ACTIONS(103), 1, + [81348] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5027), 1, - anon_sym_DOT2, - STATE(2443), 1, + ACTIONS(5350), 1, + anon_sym_DOT_DOT2, + STATE(2588), 1, sym_comment, - STATE(2444), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2549), 1, - sym_path, - ACTIONS(1517), 3, - sym__space, + ACTIONS(5352), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1515), 14, + ACTIONS(5225), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203437,24 +208896,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, - [75897] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81379] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5113), 1, - anon_sym_DOT2, - STATE(2549), 1, - sym_path, - STATE(2444), 2, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + ACTIONS(5356), 1, + anon_sym_DOT_DOT2, + STATE(2589), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1510), 3, + ACTIONS(1956), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(5358), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1508), 14, + ACTIONS(1958), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203466,19 +208928,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [75932] = 4, + [81416] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2445), 1, - sym_comment, - ACTIONS(1902), 2, - anon_sym_DOT_DOT2, + ACTIONS(2652), 1, + anon_sym_LPAREN2, + ACTIONS(2654), 1, sym__unquoted_pattern, - ACTIONS(1900), 18, - ts_builtin_sym_end, + STATE(2590), 1, + sym_comment, + ACTIONS(2648), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203490,24 +208949,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75963] = 6, + [81447] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, - sym__unquoted_pattern, - ACTIONS(5116), 1, - anon_sym_DOT, - ACTIONS(5118), 1, - aux_sym__immediate_decimal_token5, - STATE(2446), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + STATE(2591), 1, sym_comment, - ACTIONS(1754), 17, + STATE(4802), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5332), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203524,79 +208980,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [75998] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5078), 1, - aux_sym__immediate_decimal_token5, - STATE(2447), 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, - [76031] = 8, + [81478] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5120), 1, + ACTIONS(1888), 1, + sym__space, + ACTIONS(5114), 1, anon_sym_DOT2, - STATE(2448), 1, - sym_comment, - STATE(2473), 1, + STATE(2466), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, + STATE(2583), 1, sym_path, - STATE(2790), 1, - sym_cell_path, - ACTIONS(1452), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1450), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [76070] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5051), 1, - aux_sym__immediate_decimal_token5, - STATE(2449), 1, + STATE(2592), 1, sym_comment, - ACTIONS(1754), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1756), 15, + STATE(3077), 1, + sym_cell_path, + ACTIONS(1890), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203610,54 +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, - [76103] = 11, + [81515] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3329), 1, - anon_sym_LPAREN2, - ACTIONS(3855), 1, - anon_sym_DOLLAR, - ACTIONS(5089), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5091), 1, - aux_sym__immediate_decimal_token2, - STATE(2450), 1, + STATE(2593), 1, sym_comment, - STATE(3333), 1, - sym__immediate_decimal, - ACTIONS(1663), 2, - sym_identifier, + ACTIONS(1531), 3, anon_sym_DASH2, - ACTIONS(4983), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3332), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1661), 9, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1533), 15, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [76148] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [81544] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2170), 1, - anon_sym_BANG, - STATE(2451), 1, + STATE(2594), 1, sym_comment, - ACTIONS(1456), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1458), 17, - ts_builtin_sym_end, + ACTIONS(1533), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203669,92 +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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76181] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3329), 1, - anon_sym_LPAREN2, - ACTIONS(3855), 1, - anon_sym_DOLLAR, - ACTIONS(5089), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5091), 1, - aux_sym__immediate_decimal_token2, - STATE(2452), 1, - sym_comment, - STATE(3337), 1, - sym__immediate_decimal, - ACTIONS(1671), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(4983), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3335), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1669), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [76226] = 11, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [81571] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3329), 1, - anon_sym_LPAREN2, - ACTIONS(3855), 1, - anon_sym_DOLLAR, - ACTIONS(5089), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5091), 1, - aux_sym__immediate_decimal_token2, - STATE(2453), 1, + STATE(2595), 1, sym_comment, - STATE(3339), 1, - sym__immediate_decimal, - ACTIONS(1675), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(4983), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3338), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 9, + ACTIONS(1537), 18, 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, - [76271] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5122), 1, - aux_sym__immediate_decimal_token5, - STATE(2454), 1, - sym_comment, - ACTIONS(1812), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1814), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203766,20 +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_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76304] = 4, - ACTIONS(103), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [81598] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2455), 1, + STATE(2596), 1, sym_comment, - ACTIONS(1521), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1519), 17, + 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, + ACTIONS(5360), 1, + anon_sym_QMARK2, + ACTIONS(5362), 1, + anon_sym_BANG, + STATE(2597), 1, + sym_comment, + STATE(2969), 1, + sym__path_suffix, + ACTIONS(1458), 15, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203791,31 +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_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, + anon_sym_COLON, anon_sym_DOT2, - [76335] = 8, + [81664] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5120), 1, + ACTIONS(1862), 1, + sym__space, + ACTIONS(5114), 1, anon_sym_DOT2, - STATE(2456), 1, - sym_comment, - STATE(2473), 1, + STATE(2466), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, + STATE(2583), 1, sym_path, - STATE(2817), 1, + STATE(2598), 1, + sym_comment, + STATE(3204), 1, sym_cell_path, - ACTIONS(1681), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1683), 12, + ACTIONS(1864), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203827,41 +209163,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [76374] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5124), 1, - aux_sym__immediate_decimal_token5, - STATE(2457), 1, - sym_comment, - ACTIONS(763), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(765), 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, - [76407] = 3, + anon_sym_RBRACE, + [81701] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2458), 1, + STATE(2599), 1, sym_comment, - ACTIONS(1535), 20, + ACTIONS(5364), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -203874,58 +209183,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_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_GT2, - anon_sym_DASH_DASH, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT2, - [76436] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5126), 1, - anon_sym_LPAREN2, - ACTIONS(5128), 1, - anon_sym_DOT_DOT2, - ACTIONS(5132), 1, - sym_filesize_unit, - ACTIONS(5134), 1, - sym_duration_unit, - ACTIONS(5136), 1, - sym__unquoted_pattern_in_record, - STATE(2459), 1, - sym_comment, - STATE(4773), 1, - sym__expr_parenthesized_immediate, - ACTIONS(858), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5130), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(884), 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, - [76481] = 4, + [81728] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2460), 1, - sym_comment, - ACTIONS(1525), 3, + ACTIONS(1912), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1523), 17, + 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, @@ -203939,16 +209218,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + [81765] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5366), 1, + aux_sym__immediate_decimal_token5, + STATE(2601), 1, + sym_comment, + ACTIONS(1854), 4, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76512] = 3, + 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, + [81796] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2461), 1, + STATE(2602), 1, sym_comment, - ACTIONS(1539), 20, + ACTIONS(1541), 18, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -203962,20 +209263,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - [76541] = 3, - ACTIONS(3), 1, + [81823] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2462), 1, + STATE(2603), 1, sym_comment, - ACTIONS(1543), 20, - anon_sym_EQ, + 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, @@ -203987,33 +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_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, anon_sym_RBRACE, + anon_sym_DOT_DOT2, anon_sym_DOT2, - [76570] = 8, - ACTIONS(103), 1, + [81852] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5120), 1, - anon_sym_DOT2, - STATE(2463), 1, + ACTIONS(1854), 1, + sym__unquoted_pattern, + ACTIONS(5368), 1, + aux_sym__immediate_decimal_token5, + STATE(2604), 1, sym_comment, - STATE(2473), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2803), 1, - sym_cell_path, - ACTIONS(1687), 4, + ACTIONS(1852), 16, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1689), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204025,22 +209315,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, - [76609] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [81883] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern, - ACTIONS(5138), 1, + ACTIONS(5350), 1, anon_sym_DOT_DOT2, - STATE(2464), 1, + STATE(2605), 1, sym_comment, - ACTIONS(5140), 2, + ACTIONS(5352), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2021), 15, + ACTIONS(1713), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204056,17 +209345,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76646] = 5, + [81914] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5144), 1, - anon_sym_DOT_DOT2, - STATE(2465), 1, + STATE(2606), 1, sym_comment, - ACTIONS(5146), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5142), 16, + 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(2527), 1, + sym__unquoted_pattern, + STATE(2607), 1, + sym_comment, + ACTIONS(2525), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204083,43 +209396,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76678] = 4, + anon_sym_LPAREN2, + [81976] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2466), 1, + ACTIONS(5277), 1, + anon_sym_DOT2, + STATE(2500), 1, + sym_path, + STATE(2608), 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, + STATE(2609), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1506), 15, anon_sym_EQ, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_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, - [76708] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [82009] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2467), 1, + ACTIONS(5370), 1, + anon_sym_DOT2, + STATE(2500), 1, + sym_path, + STATE(2609), 2, sym_comment, - ACTIONS(1498), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1496), 15, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204131,25 +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_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76738] = 7, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACE, + [82040] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5148), 1, - anon_sym_DOT2, - STATE(791), 1, - sym_path, - STATE(1335), 1, - sym_cell_path, - STATE(2411), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2468), 1, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(2610), 1, sym_comment, - ACTIONS(1862), 15, - ts_builtin_sym_end, + ACTIONS(1022), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204161,22 +209471,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, - [76774] = 6, + [82071] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, sym__unquoted_pattern, - ACTIONS(5150), 1, - anon_sym_DOT, - ACTIONS(5152), 1, - aux_sym__immediate_decimal_token5, - STATE(2469), 1, + STATE(2611), 1, sym_comment, - ACTIONS(1754), 16, - ts_builtin_sym_end, + ACTIONS(1030), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204188,21 +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, - anon_sym_LPAREN2, - [76808] = 4, - ACTIONS(103), 1, + [82102] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2470), 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(1502), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1500), 15, + STATE(3084), 1, + sym_cell_path, + ACTIONS(1862), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204214,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_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76838] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [82137] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2471), 1, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(2613), 1, sym_comment, - ACTIONS(1506), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1504), 15, + ACTIONS(1713), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204240,64 +209551,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82168] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2614), 1, + sym_comment, + ACTIONS(1535), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1537), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - anon_sym_DOT2, - [76868] = 15, + [82197] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(958), 1, - sym_raw_string_begin, - ACTIONS(3242), 1, - anon_sym_DQUOTE, - ACTIONS(3244), 1, - anon_sym_SQUOTE, - ACTIONS(3246), 1, - anon_sym_BQUOTE, - ACTIONS(3248), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3250), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3693), 1, - anon_sym_LPAREN, - ACTIONS(3695), 1, + STATE(2615), 1, + sym_comment, + ACTIONS(1539), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1541), 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, - ACTIONS(5154), 1, - sym__unquoted_naive, - STATE(2472), 1, + 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, + [82226] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + STATE(2616), 1, sym_comment, - STATE(3155), 1, - sym__inter_single_quotes, - STATE(3156), 1, - sym__inter_double_quotes, - STATE(2501), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3169), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [76920] = 7, + STATE(4802), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5332), 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, + [82257] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5120), 1, + ACTIONS(5114), 1, anon_sym_DOT2, - STATE(2473), 1, - sym_comment, - STATE(2478), 1, + ACTIONS(5375), 1, + sym__space, + STATE(2466), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, + STATE(2583), 1, sym_path, - ACTIONS(1517), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1515), 12, + STATE(2617), 1, + sym_comment, + STATE(3154), 1, + sym_cell_path, + ACTIONS(5373), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204309,18 +209659,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, - [76956] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [82294] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2618), 1, + sym_comment, + ACTIONS(5377), 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, + [82321] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2474), 1, + STATE(2619), 1, sym_comment, - ACTIONS(1529), 4, + ACTIONS(1852), 5, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1527), 15, + ACTIONS(1854), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204333,29 +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, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76986] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_DOT_DOT2, - ACTIONS(5068), 1, - sym_filesize_unit, - ACTIONS(5070), 1, - sym_duration_unit, - ACTIONS(5072), 1, sym__unquoted_pattern, - STATE(2475), 1, + [82350] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2620), 1, sym_comment, - ACTIONS(884), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4151), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(858), 11, + ACTIONS(5379), 18, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204367,17 +209728,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, - [77026] = 4, + 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, - STATE(2476), 1, - sym_comment, - ACTIONS(1746), 4, + ACTIONS(5114), 1, + anon_sym_DOT2, + ACTIONS(5383), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1748), 15, + 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, @@ -204391,25 +209763,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, - [77056] = 8, + [82414] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5156), 1, + ACTIONS(5223), 1, anon_sym_DOT2, - STATE(2477), 1, + STATE(2622), 1, sym_comment, - STATE(2529), 1, + STATE(2626), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2725), 1, + STATE(2871), 1, sym_path, - STATE(2930), 1, - sym_cell_path, - ACTIONS(1689), 2, + ACTIONS(1504), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1687), 13, + ACTIONS(1506), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -204423,22 +209791,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77094] = 6, + [82449] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5158), 1, - anon_sym_DOT2, - STATE(2611), 1, - sym_path, - STATE(2478), 2, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(5385), 1, + anon_sym_DOT_DOT2, + STATE(2623), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1510), 4, + ACTIONS(1973), 2, ts_builtin_sym_end, sym__space, + ACTIONS(5387), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1508), 12, + ACTIONS(1975), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204450,23 +209820,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, - [77128] = 6, + [82486] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5161), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5163), 1, - aux_sym__immediate_decimal_token5, - STATE(2479), 1, + STATE(2624), 1, sym_comment, - ACTIONS(1748), 4, + ACTIONS(1523), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1525), 15, + anon_sym_EQ, sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [82515] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2625), 1, + sym_comment, + ACTIONS(1527), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1746), 13, + anon_sym_DOT2, + ACTIONS(1529), 15, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -204476,47 +209866,50 @@ 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, - [77162] = 5, + anon_sym_QMARK2, + anon_sym_BANG, + [82544] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, - sym__unquoted_pattern, - ACTIONS(5165), 1, - aux_sym__immediate_decimal_token5, - STATE(2480), 1, + ACTIONS(5389), 1, + anon_sym_DOT2, + STATE(2871), 1, + sym_path, + ACTIONS(1508), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + STATE(2626), 2, sym_comment, - ACTIONS(1812), 17, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [77194] = 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, + [82577] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2481), 1, + ACTIONS(5392), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5394), 1, + aux_sym__immediate_decimal_token5, + STATE(2627), 1, sym_comment, - ACTIONS(1812), 4, + ACTIONS(1770), 2, sym__space, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1814), 15, + ACTIONS(1772), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204530,19 +209923,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, - [77224] = 4, + [82610] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2482), 1, + ACTIONS(5396), 1, + anon_sym_BANG, + STATE(2628), 1, sym_comment, - ACTIONS(1900), 4, + ACTIONS(1450), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1902), 15, + ACTIONS(1448), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204554,60 +209948,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [77254] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1480), 1, - anon_sym_COMMA, - ACTIONS(5169), 1, - anon_sym_EQ, - ACTIONS(5171), 1, - sym__newline, - ACTIONS(5173), 1, - anon_sym_COLON, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_DASH2, - STATE(2483), 1, - sym_comment, - STATE(2595), 1, - sym_flag_capsule, - STATE(2596), 1, - aux_sym_parameter_repeat1, - STATE(3410), 1, - aux_sym_parameter_repeat2, - STATE(4244), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5167), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [77304] = 7, + anon_sym_DOT2, + [82641] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5148), 1, - anon_sym_DOT2, - STATE(791), 1, - sym_path, - STATE(1306), 1, - sym_cell_path, - STATE(2411), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2484), 1, + ACTIONS(5398), 1, + anon_sym_DOT_DOT2, + STATE(2629), 1, sym_comment, - ACTIONS(1888), 15, + ACTIONS(5400), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2154), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204623,55 +209976,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77340] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(856), 1, - sym_raw_string_begin, - ACTIONS(3291), 1, - anon_sym_DQUOTE, - ACTIONS(3293), 1, - anon_sym_SQUOTE, - ACTIONS(3295), 1, - anon_sym_BQUOTE, - ACTIONS(3297), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3299), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3679), 1, - anon_sym_LPAREN, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(5179), 1, - sym__unquoted_naive, - STATE(2485), 1, - sym_comment, - STATE(3082), 1, - sym__inter_single_quotes, - STATE(3083), 1, - sym__inter_double_quotes, - STATE(2455), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3052), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [77392] = 5, + [82672] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5181), 1, - anon_sym_BANG, - STATE(2486), 1, - sym_comment, - ACTIONS(1458), 3, + ACTIONS(1900), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1456), 15, + 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, + STATE(3159), 1, + sym_cell_path, + ACTIONS(1902), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204685,22 +210005,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [77424] = 7, + [82709] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5148), 1, - anon_sym_DOT2, - STATE(791), 1, - sym_path, - STATE(1307), 1, - sym_cell_path, - STATE(2411), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2487), 1, + ACTIONS(5402), 1, + anon_sym_DOT_DOT2, + STATE(2631), 1, sym_comment, - ACTIONS(1880), 15, + ACTIONS(5404), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2102), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204716,46 +210031,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77460] = 4, + [82740] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2488), 1, - sym_comment, - ACTIONS(5185), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5183), 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, - [77490] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5099), 1, - aux_sym__immediate_decimal_token5, - STATE(2489), 1, + ACTIONS(5406), 1, + anon_sym_DOT_DOT2, + STATE(2632), 1, sym_comment, - ACTIONS(1754), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + ACTIONS(5408), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1756), 13, + ACTIONS(2110), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204767,22 +210054,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, - [77522] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82771] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5148), 1, - anon_sym_DOT2, - STATE(791), 1, - sym_path, - STATE(1327), 1, - sym_cell_path, - STATE(2411), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2490), 1, + ACTIONS(5410), 1, + anon_sym_DOT_DOT2, + STATE(2633), 1, sym_comment, - ACTIONS(1856), 15, + ACTIONS(5412), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2118), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204798,45 +210083,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77558] = 4, + [82802] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2491), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(2634), 1, sym_comment, - ACTIONS(763), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(765), 13, - anon_sym_EQ, + ACTIONS(1956), 16, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [77588] = 6, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82833] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1748), 1, + ACTIONS(1772), 1, sym__unquoted_pattern, - ACTIONS(5187), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5189), 1, - aux_sym__immediate_decimal_token5, - STATE(2492), 1, + STATE(2635), 1, sym_comment, - ACTIONS(1746), 16, - ts_builtin_sym_end, + ACTIONS(1770), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204848,25 +210128,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [77622] = 7, - ACTIONS(3), 1, + [82862] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5148), 1, + ACTIONS(5114), 1, anon_sym_DOT2, - STATE(791), 1, - sym_path, - STATE(1345), 1, - sym_cell_path, - STATE(2411), 1, + ACTIONS(5416), 1, + sym__space, + STATE(2466), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2493), 1, + STATE(2583), 1, + sym_path, + STATE(2636), 1, sym_comment, - ACTIONS(1892), 15, - ts_builtin_sym_end, + STATE(3109), 1, + sym_cell_path, + ACTIONS(5414), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204878,148 +210161,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [77658] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5191), 1, - anon_sym_QMARK2, - ACTIONS(5193), 1, - anon_sym_BANG, - STATE(2494), 1, - sym_comment, - STATE(2749), 1, - sym__path_suffix, - ACTIONS(1442), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_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, - [77694] = 8, + anon_sym_RBRACE, + [82899] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5156), 1, + ACTIONS(5030), 1, anon_sym_DOT2, - STATE(2495), 1, - sym_comment, - STATE(2529), 1, + STATE(2459), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2725), 1, + STATE(2500), 1, sym_path, - STATE(2883), 1, + STATE(2637), 1, + sym_comment, + STATE(3081), 1, sym_cell_path, - ACTIONS(1683), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1681), 13, + ACTIONS(1900), 14, anon_sym_EQ, - sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [77732] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [82934] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2496), 1, + ACTIONS(5114), 1, + anon_sym_DOT2, + ACTIONS(5420), 1, + sym__space, + STATE(2466), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2583), 1, + sym_path, + STATE(2638), 1, sym_comment, - ACTIONS(789), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(791), 13, - anon_sym_EQ, + STATE(3113), 1, + sym_cell_path, + ACTIONS(5418), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [77762] = 15, + anon_sym_RBRACE, + [82971] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1784), 1, - anon_sym_LPAREN, - ACTIONS(1796), 1, - anon_sym_DQUOTE, - ACTIONS(1798), 1, - anon_sym_SQUOTE, - ACTIONS(1800), 1, - anon_sym_BQUOTE, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(5195), 1, - anon_sym_DOLLAR, - ACTIONS(5197), 1, - sym__unquoted_naive, - STATE(728), 1, - sym__inter_single_quotes, - STATE(729), 1, - sym__inter_double_quotes, - STATE(2497), 1, - sym_comment, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3159), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [77814] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2021), 1, - sym__space, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern, - ACTIONS(5199), 1, + ACTIONS(5350), 1, anon_sym_DOT_DOT2, - STATE(2498), 1, + STATE(2639), 1, sym_comment, - ACTIONS(5201), 2, + ACTIONS(5352), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2023), 13, + ACTIONS(5225), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205031,60 +210243,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, - [77852] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - anon_sym_SQUOTE, - ACTIONS(95), 1, - anon_sym_BQUOTE, - ACTIONS(97), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(5203), 1, - anon_sym_LPAREN, - ACTIONS(5205), 1, - anon_sym_DOLLAR, - ACTIONS(5207), 1, - sym__unquoted_naive, - STATE(1342), 1, - sym__inter_single_quotes, - STATE(1343), 1, - sym__inter_double_quotes, - STATE(2499), 1, - sym_comment, - STATE(485), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3284), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [77904] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83002] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5148), 1, + ACTIONS(5030), 1, anon_sym_DOT2, - STATE(791), 1, - sym_path, - STATE(1339), 1, - sym_cell_path, - STATE(2411), 1, + STATE(2459), 1, aux_sym__where_predicate_lhs_repeat1, STATE(2500), 1, + sym_path, + STATE(2640), 1, sym_comment, - ACTIONS(1872), 15, - ts_builtin_sym_end, + STATE(3063), 1, + sym_cell_path, + ACTIONS(1912), 14, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [83037] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(2641), 1, + sym_comment, + ACTIONS(2597), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205096,20 +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, - [77940] = 4, + [83068] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2501), 1, + ACTIONS(5396), 1, + anon_sym_QMARK2, + STATE(2642), 1, sym_comment, - ACTIONS(1521), 4, + ACTIONS(1450), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1519), 15, + ACTIONS(1448), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205122,54 +210325,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, anon_sym_DOT2, - [77970] = 6, + [83099] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5209), 1, - anon_sym_DOT, - ACTIONS(5211), 1, - aux_sym__immediate_decimal_token5, - STATE(2502), 1, + STATE(2643), 1, sym_comment, - ACTIONS(1756), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1754), 13, + ACTIONS(5422), 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, - [78004] = 8, - ACTIONS(103), 1, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [83126] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1772), 1, sym__unquoted_pattern, - ACTIONS(2011), 1, - sym__space, - ACTIONS(2015), 1, + STATE(2644), 1, + sym_comment, + ACTIONS(1770), 16, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - ACTIONS(5213), 1, - anon_sym_DOT_DOT2, - STATE(2503), 1, + [83154] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2645), 1, sym_comment, - ACTIONS(5215), 2, + ACTIONS(1878), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2013), 13, + ACTIONS(1880), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205183,23 +210397,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [78042] = 8, + anon_sym_DOT_DOT2, + [83182] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5156), 1, - anon_sym_DOT2, - STATE(2504), 1, - sym_comment, - STATE(2529), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2725), 1, - sym_path, - STATE(2844), 1, - sym_cell_path, - ACTIONS(1450), 2, + STATE(2646), 1, + sym_comment, + ACTIONS(1872), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1452), 13, + sym__unquoted_pattern_in_record, + ACTIONS(1870), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -205211,18 +210419,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, - [78080] = 5, - ACTIONS(3), 1, + [83210] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1756), 1, - sym__unquoted_pattern, - ACTIONS(5118), 1, - aux_sym__immediate_decimal_token5, - STATE(2505), 1, + STATE(2647), 1, sym_comment, - ACTIONS(1754), 17, + 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, @@ -205234,23 +210444,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, - anon_sym_LPAREN2, - [78112] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [83238] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5144), 1, - anon_sym_DOT_DOT2, - STATE(2506), 1, + ACTIONS(1854), 1, + sym__unquoted_pattern, + STATE(2648), 1, sym_comment, - ACTIONS(5146), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5142), 16, + ACTIONS(1852), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205262,22 +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, - [78144] = 5, + anon_sym_LPAREN2, + [83266] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5144), 1, - anon_sym_DOT_DOT2, - STATE(2507), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + STATE(2649), 1, sym_comment, - ACTIONS(5146), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5142), 16, + STATE(4884), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5332), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205289,26 +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, - [78176] = 7, - ACTIONS(3), 1, + [83296] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5217), 1, + ACTIONS(5178), 1, anon_sym_DOT2, - STATE(2257), 1, - sym_cell_path, - STATE(2458), 1, - sym_path, - STATE(2508), 1, - sym_comment, - STATE(2573), 1, + STATE(2516), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1452), 15, - anon_sym_EQ, + STATE(2650), 1, + sym_comment, + STATE(2689), 1, + sym_path, + STATE(3228), 1, + sym_cell_path, + ACTIONS(1912), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1914), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205320,21 +210523,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, - [78212] = 5, - ACTIONS(103), 1, + [83332] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5181), 1, - anon_sym_QMARK2, - STATE(2509), 1, + STATE(2651), 1, sym_comment, - ACTIONS(1458), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1456), 15, + ACTIONS(5424), 17, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205346,24 +210541,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_DASH_GT, anon_sym_RPAREN, + anon_sym_AT2, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [78244] = 5, + [83358] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5219), 1, + ACTIONS(5426), 1, + anon_sym_DOT, + ACTIONS(5428), 1, aux_sym__immediate_decimal_token5, - STATE(2510), 1, + STATE(2652), 1, sym_comment, - ACTIONS(1812), 5, + ACTIONS(1744), 3, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1814), 13, + ACTIONS(1746), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205375,19 +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, - [78276] = 5, + [83390] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5144), 1, - anon_sym_DOT_DOT2, - STATE(2511), 1, + ACTIONS(1872), 1, + sym__unquoted_pattern, + STATE(2653), 1, sym_comment, - ACTIONS(5146), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1716), 16, + ACTIONS(1870), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205399,22 +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_and2, anon_sym_xor2, anon_sym_or2, - [78308] = 5, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [83418] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5221), 1, + ACTIONS(1713), 1, + sym__space, + ACTIONS(5430), 1, anon_sym_DOT_DOT2, - STATE(2512), 1, + STATE(2654), 1, sym_comment, - ACTIONS(5223), 2, + ACTIONS(5432), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 16, + ACTIONS(1614), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205428,20 +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, - [78340] = 5, - ACTIONS(3), 1, + [83450] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5225), 1, + ACTIONS(2154), 1, + sym__space, + ACTIONS(5434), 1, anon_sym_DOT_DOT2, - STATE(2513), 1, + STATE(2655), 1, sym_comment, - ACTIONS(5227), 2, + ACTIONS(5436), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2108), 16, + ACTIONS(2156), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205455,20 +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, - [78372] = 5, - ACTIONS(3), 1, + [83482] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5229), 1, + ACTIONS(2102), 1, + sym__space, + ACTIONS(5438), 1, anon_sym_DOT_DOT2, - STATE(2514), 1, + STATE(2656), 1, sym_comment, - ACTIONS(5231), 2, + ACTIONS(5440), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2116), 16, + ACTIONS(2104), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205482,20 +210674,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, - [78404] = 5, - ACTIONS(3), 1, + [83514] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5233), 1, + ACTIONS(2110), 1, + sym__space, + ACTIONS(5442), 1, anon_sym_DOT_DOT2, - STATE(2515), 1, + STATE(2657), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5444), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2124), 16, + ACTIONS(2112), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205509,20 +210700,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, - [78436] = 4, + [83546] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2516), 1, - sym_comment, - ACTIONS(1525), 4, - ts_builtin_sym_end, + ACTIONS(2118), 1, sym__space, + ACTIONS(5446), 1, + anon_sym_DOT_DOT2, + STATE(2658), 1, + sym_comment, + ACTIONS(5448), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1523), 15, + ACTIONS(2120), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205534,22 +210724,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, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [78466] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [83578] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_DOT_DOT2, - STATE(2517), 1, + ACTIONS(5178), 1, + anon_sym_DOT2, + STATE(2516), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2659), 1, sym_comment, - ACTIONS(5239), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5142), 15, + STATE(2689), 1, + sym_path, + STATE(3274), 1, + sym_cell_path, + ACTIONS(1862), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1864), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205561,27 +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_and2, - anon_sym_xor2, - anon_sym_or2, - [78497] = 8, - ACTIONS(103), 1, + [83614] = 12, + 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(5452), 1, + anon_sym_DASH2, + STATE(2660), 1, + sym_comment, + STATE(2860), 1, + aux_sym_parameter_repeat1, + STATE(3561), 1, + aux_sym_parameter_repeat2, + STATE(4242), 1, + aux_sym__repeat_newline, + STATE(3398), 2, + sym_param_type, + sym_param_value, + ACTIONS(5450), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [83658] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, + ACTIONS(1977), 1, anon_sym_LPAREN2, - ACTIONS(2031), 1, + ACTIONS(1983), 1, sym__unquoted_pattern, - ACTIONS(5241), 1, - anon_sym_DOT_DOT2, - STATE(2518), 1, + STATE(2661), 1, sym_comment, - ACTIONS(2021), 2, + ACTIONS(1973), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(5243), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2023), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205593,22 +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, - [78534] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83688] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(5178), 1, anon_sym_DOT2, - ACTIONS(5247), 1, - sym__space, - STATE(2443), 1, + STATE(2516), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2519), 1, + STATE(2662), 1, sym_comment, - STATE(2549), 1, + STATE(2689), 1, sym_path, - STATE(3016), 1, + STATE(3245), 1, sym_cell_path, - ACTIONS(5245), 13, + ACTIONS(5416), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5414), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205620,24 +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, - [78571] = 8, + [83724] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5027), 1, - anon_sym_DOT2, - ACTIONS(5251), 1, - sym__space, - STATE(2443), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2520), 1, + STATE(2663), 1, sym_comment, - STATE(2549), 1, - sym_path, - STATE(3017), 1, - sym_cell_path, - ACTIONS(5249), 13, + ACTIONS(1582), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1580), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205651,39 +210862,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [78608] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5255), 1, - anon_sym_DASH2, - STATE(2521), 1, - sym_comment, - ACTIONS(5253), 17, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [78637] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [83752] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1748), 1, - sym__unquoted_pattern, - STATE(2522), 1, + ACTIONS(5178), 1, + anon_sym_DOT2, + STATE(2516), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2664), 1, sym_comment, - ACTIONS(1746), 17, + 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, @@ -205695,19 +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, - anon_sym_LPAREN2, - [78666] = 3, + [83788] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2523), 1, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(2665), 1, sym_comment, - ACTIONS(1521), 18, - anon_sym_EQ, + ACTIONS(1713), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205719,49 +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_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [78693] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5259), 1, - anon_sym_DASH2, - STATE(2524), 1, - sym_comment, - ACTIONS(5257), 17, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [78722] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83818] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2525), 1, + STATE(2666), 1, sym_comment, - ACTIONS(1900), 5, + ACTIONS(1498), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1902), 13, + ACTIONS(1496), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205774,49 +210939,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [78751] = 5, + anon_sym_DOT2, + [83846] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5261), 1, - anon_sym_BANG, - STATE(2526), 1, + STATE(2667), 1, sym_comment, - ACTIONS(1458), 4, - ts_builtin_sym_end, + ACTIONS(1858), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1456), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [78782] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1888), 1, - sym__space, - ACTIONS(5027), 1, - anon_sym_DOT2, - STATE(2443), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2527), 1, - sym_comment, - STATE(2549), 1, - sym_path, - STATE(3103), 1, - sym_cell_path, - ACTIONS(1890), 13, + ACTIONS(1860), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205830,16 +210963,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [78819] = 5, + anon_sym_DOT_DOT2, + [83874] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern, - STATE(2528), 1, + ACTIONS(5454), 1, + anon_sym_DOT2, + STATE(2936), 1, + sym_path, + STATE(2668), 2, sym_comment, - ACTIONS(2566), 16, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205851,26 +210988,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, - [78850] = 7, + anon_sym_COLON, + [83904] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5156), 1, - anon_sym_DOT2, - STATE(2529), 1, - sym_comment, - STATE(2533), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2725), 1, - sym_path, - ACTIONS(1515), 2, + 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, - ACTIONS(1517), 13, + 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, @@ -205882,41 +211017,47 @@ 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, - [78885] = 4, + [83940] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5265), 1, - anon_sym_DASH2, - STATE(2530), 1, + STATE(2670), 1, sym_comment, - ACTIONS(5263), 17, + ACTIONS(1772), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1770), 14, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_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, - [78914] = 4, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [83968] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1902), 1, - sym__unquoted_pattern, - STATE(2531), 1, + ACTIONS(5178), 1, + anon_sym_DOT2, + STATE(2516), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2671), 1, sym_comment, - ACTIONS(1900), 17, + STATE(2689), 1, + sym_path, + STATE(3221), 1, + sym_cell_path, + ACTIONS(1900), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1902), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205928,22 +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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [78943] = 5, + [84004] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, + ACTIONS(2656), 1, anon_sym_LPAREN2, - ACTIONS(2031), 1, + ACTIONS(2658), 1, sym__unquoted_pattern, - STATE(2532), 1, + STATE(2672), 1, sym_comment, - ACTIONS(2021), 16, + ACTIONS(1022), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205955,51 +211091,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78974] = 6, - ACTIONS(3), 1, + [84034] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5267), 1, + ACTIONS(5178), 1, anon_sym_DOT2, - STATE(2725), 1, - sym_path, - ACTIONS(1508), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - STATE(2533), 2, - sym_comment, + STATE(2516), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1510), 13, - anon_sym_EQ, - sym_identifier, + STATE(2673), 1, + sym_comment, + STATE(2689), 1, + sym_path, + STATE(3294), 1, + sym_cell_path, + ACTIONS(5342), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5340), 11, 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, - [79007] = 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, + [84070] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5270), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5272), 1, - aux_sym__immediate_decimal_token5, - STATE(2534), 1, + STATE(2674), 1, sym_comment, - ACTIONS(1746), 2, + ACTIONS(1645), 3, sym__space, - anon_sym_LPAREN2, - ACTIONS(1748), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1647), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206013,17 +211145,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [79040] = 5, + anon_sym_DOT_DOT2, + [84098] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1691), 1, - sym__unquoted_pattern, - ACTIONS(2564), 1, - anon_sym_LPAREN2, - STATE(2535), 1, + ACTIONS(5336), 1, + anon_sym_DOT2, + STATE(2675), 1, + sym_comment, + STATE(2710), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2936), 1, + sym_path, + STATE(3283), 1, + sym_cell_path, + ACTIONS(1912), 13, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [84132] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5178), 1, + anon_sym_DOT2, + STATE(2516), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2676), 1, sym_comment, - ACTIONS(2560), 16, + STATE(2689), 1, + sym_path, + STATE(3249), 1, + sym_cell_path, + ACTIONS(5420), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5418), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206035,21 +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_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [79071] = 5, + [84168] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2574), 1, + ACTIONS(2656), 1, anon_sym_LPAREN2, - ACTIONS(2576), 1, + ACTIONS(2658), 1, sym__unquoted_pattern, - STATE(2536), 1, + STATE(2677), 1, sym_comment, - ACTIONS(2570), 16, + ACTIONS(1030), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206061,54 +211223,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79102] = 5, + [84198] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5211), 1, - aux_sym__immediate_decimal_token5, - STATE(2537), 1, + STATE(2678), 1, sym_comment, - ACTIONS(1756), 4, - sym_identifier, + ACTIONS(1894), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1754), 13, + 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, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [79133] = 7, - ACTIONS(3), 1, + [84226] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5274), 1, - anon_sym_DOT2, - STATE(2538), 1, - sym_comment, - STATE(2623), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2924), 1, - sym_path, - STATE(3079), 1, - sym_cell_path, - ACTIONS(1452), 14, - ts_builtin_sym_end, - anon_sym_EQ, + 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, @@ -206119,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_COLON, - [79168] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5278), 1, - anon_sym_DASH2, - STATE(2539), 1, - sym_comment, - ACTIONS(5276), 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, - [79197] = 8, + [84264] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1880), 1, + ACTIONS(5430), 1, + anon_sym_DOT_DOT2, + ACTIONS(5473), 1, sym__space, - ACTIONS(5027), 1, - anon_sym_DOT2, - STATE(2443), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2540), 1, + STATE(2680), 1, sym_comment, - STATE(2549), 1, - sym_path, - STATE(2983), 1, - sym_cell_path, - ACTIONS(1882), 13, + ACTIONS(5432), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5471), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206174,13 +211305,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79234] = 3, - ACTIONS(3), 1, + [84296] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2541), 1, + ACTIONS(5178), 1, + anon_sym_DOT2, + STATE(2516), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2681), 1, sym_comment, - ACTIONS(1529), 18, - anon_sym_EQ, + STATE(2689), 1, + sym_path, + STATE(3216), 1, + sym_cell_path, + ACTIONS(1888), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1890), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206192,25 +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, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [79261] = 6, - ACTIONS(103), 1, + [84332] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5280), 1, - anon_sym_DOT, - ACTIONS(5282), 1, - aux_sym__immediate_decimal_token5, - STATE(2542), 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(1754), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1756), 14, + ACTIONS(5354), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206224,19 +211360,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [79294] = 4, - ACTIONS(103), 1, + [84366] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2543), 1, + ACTIONS(5336), 1, + anon_sym_DOT2, + STATE(2683), 1, sym_comment, - ACTIONS(1746), 5, + 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, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1748), 13, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206248,18 +211387,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [79323] = 5, + [84400] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, - sym__unquoted_pattern, - ACTIONS(5152), 1, - aux_sym__immediate_decimal_token5, - STATE(2544), 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(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_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [84444] = 12, + 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(5481), 1, + anon_sym_DASH2, + STATE(2685), 1, + sym_comment, + 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, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [84488] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + STATE(2686), 1, sym_comment, - ACTIONS(1754), 16, + STATE(4884), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5332), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206275,17 +211476,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [79354] = 4, - ACTIONS(103), 1, + [84518] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2545), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(2642), 1, + anon_sym_LPAREN2, + STATE(2687), 1, sym_comment, - ACTIONS(1543), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1541), 15, + ACTIONS(2541), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206297,26 +211498,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, - [79383] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84548] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1856), 1, - sym__space, - ACTIONS(5027), 1, + ACTIONS(5178), 1, anon_sym_DOT2, - STATE(2443), 1, + STATE(2516), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2546), 1, + STATE(2688), 1, sym_comment, - STATE(2549), 1, + STATE(2689), 1, sym_path, - STATE(2989), 1, + STATE(3214), 1, sym_cell_path, - ACTIONS(1858), 13, + ACTIONS(1882), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1885), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206328,15 +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, - [79420] = 3, - ACTIONS(3), 1, + [84584] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2547), 1, + STATE(2689), 1, sym_comment, - ACTIONS(1498), 18, - anon_sym_EQ, + ACTIONS(1549), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1547), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206348,46 +211551,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_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_BANG, + anon_sym_DOT_DOT2, anon_sym_DOT2, - [79447] = 3, + [84612] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2548), 1, + ACTIONS(5483), 1, + anon_sym_BANG, + STATE(2690), 1, sym_comment, - ACTIONS(1525), 18, + ACTIONS(1448), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1450), 13, anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [79474] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2549), 1, - sym_comment, - ACTIONS(1535), 3, - sym__space, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1533), 15, + [84642] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5336), 1, + anon_sym_DOT2, + STATE(2691), 1, + sym_comment, + STATE(2710), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2936), 1, + sym_path, + STATE(3246), 1, + sym_cell_path, + ACTIONS(5354), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206399,44 +211605,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [79503] = 6, + [84676] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2550), 1, + ACTIONS(5483), 1, + anon_sym_QMARK2, + STATE(2692), 1, sym_comment, - ACTIONS(4714), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4716), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4718), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4712), 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, - [79536] = 3, + ACTIONS(1448), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1450), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [84706] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2551), 1, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(2693), 1, sym_comment, - ACTIONS(1502), 18, - anon_sym_EQ, + ACTIONS(2589), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206448,18 +211652,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [79563] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84736] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2552), 1, + ACTIONS(5336), 1, + anon_sym_DOT2, + STATE(2694), 1, sym_comment, - ACTIONS(1506), 18, + STATE(2710), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2936), 1, + sym_path, + STATE(3269), 1, + sym_cell_path, + ACTIONS(1862), 13, + ts_builtin_sym_end, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -206472,24 +211682,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [79590] = 4, - ACTIONS(103), 1, + [84770] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2553), 1, + ACTIONS(2527), 1, + sym__unquoted_pattern, + STATE(2695), 1, sym_comment, - ACTIONS(1812), 5, + ACTIONS(2525), 16, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1814), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206501,18 +211702,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [79619] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [84798] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2525), 1, - anon_sym_LPAREN2, - ACTIONS(2527), 1, - sym__unquoted_pattern, - STATE(2554), 1, + STATE(2696), 1, + sym_comment, + 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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [84826] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5178), 1, + anon_sym_DOT2, + STATE(2516), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2689), 1, + sym_path, + STATE(2697), 1, sym_comment, - ACTIONS(2521), 16, + STATE(3293), 1, + sym_cell_path, + ACTIONS(5375), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5373), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206524,27 +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, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [79650] = 8, + [84862] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, - sym__space, - ACTIONS(5027), 1, + ACTIONS(5178), 1, anon_sym_DOT2, - STATE(2443), 1, + STATE(2516), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2549), 1, + STATE(2689), 1, sym_path, - STATE(2555), 1, + STATE(2698), 1, sym_comment, - STATE(3076), 1, + STATE(3212), 1, sym_cell_path, - ACTIONS(1865), 13, + ACTIONS(5383), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5381), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206556,45 +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, - [79687] = 6, - ACTIONS(3), 1, + [84898] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2556), 1, + ACTIONS(5485), 1, + aux_sym__immediate_decimal_token5, + STATE(2699), 1, sym_comment, - ACTIONS(4696), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4698), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4700), 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, - [79720] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2015), 1, + ACTIONS(1852), 2, + sym__space, anon_sym_LPAREN2, - STATE(2557), 1, - sym_comment, - ACTIONS(2011), 16, + ACTIONS(1854), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206608,27 +211810,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, - [79751] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1615), 1, sym__unquoted_pattern, - ACTIONS(2015), 1, + [84928] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1977), 1, anon_sym_LPAREN2, - ACTIONS(5284), 1, - anon_sym_DOT_DOT2, - STATE(2558), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(2700), 1, sym_comment, - ACTIONS(2011), 2, + ACTIONS(2597), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(5286), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2013), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206640,14 +211833,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, - [79788] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84958] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, + ACTIONS(2652), 1, + anon_sym_LPAREN2, + ACTIONS(2654), 1, sym__unquoted_pattern, - STATE(2559), 1, + STATE(2701), 1, sym_comment, - ACTIONS(1812), 17, + ACTIONS(2648), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206659,25 +211858,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [79817] = 5, - ACTIONS(103), 1, + [84988] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5261), 1, - anon_sym_QMARK2, - STATE(2560), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1958), 1, + anon_sym_DASH2, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + ACTIONS(5487), 1, + anon_sym_DOT_DOT2, + STATE(2702), 1, sym_comment, - ACTIONS(1458), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(5489), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1456), 13, + ACTIONS(1956), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [85024] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4355), 1, + sym__space, + ACTIONS(5491), 1, + sym_long_flag_identifier, + ACTIONS(5493), 1, + anon_sym_EQ2, + STATE(2703), 1, + sym_comment, + STATE(3040), 1, + sym__flag_equals_value, + ACTIONS(4353), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206689,24 +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_DOT_DOT2, - anon_sym_DOT2, - [79848] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [85058] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__space, - ACTIONS(5027), 1, - anon_sym_DOT2, - STATE(2443), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2549), 1, - sym_path, - STATE(2561), 1, + ACTIONS(5495), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5497), 1, + aux_sym__immediate_decimal_token5, + STATE(2704), 1, sym_comment, - STATE(3054), 1, - sym_cell_path, - ACTIONS(1874), 13, + ACTIONS(1770), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1772), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206718,18 +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, - anon_sym_RPAREN, - anon_sym_RBRACE, - [79885] = 5, + sym__unquoted_pattern, + [85090] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, - sym__unquoted_pattern, - ACTIONS(5288), 1, - aux_sym__immediate_decimal_token5, - STATE(2562), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + STATE(2705), 1, sym_comment, - ACTIONS(1812), 16, + STATE(4884), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5332), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206745,23 +211967,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [79916] = 8, - ACTIONS(103), 1, + [85120] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5027), 1, - anon_sym_DOT2, - ACTIONS(5292), 1, - sym__space, - STATE(2443), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2549), 1, - sym_path, - STATE(2563), 1, + ACTIONS(1734), 1, + sym__unquoted_pattern, + STATE(2706), 1, sym_comment, - STATE(3009), 1, - sym_cell_path, - ACTIONS(5290), 13, + ACTIONS(886), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206775,22 +211988,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79953] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85148] = 12, + 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(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_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [85192] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5027), 1, - anon_sym_DOT2, - ACTIONS(5296), 1, - sym__space, - STATE(2443), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2549), 1, - sym_path, - STATE(2564), 1, + STATE(2708), 1, sym_comment, - STATE(3010), 1, - sym_cell_path, - ACTIONS(5294), 13, + ACTIONS(1892), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1894), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206804,22 +212046,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79990] = 8, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + [85220] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5027), 1, - anon_sym_DOT2, + ACTIONS(1480), 1, + anon_sym_COMMA, + ACTIONS(5298), 1, + anon_sym_EQ, ACTIONS(5300), 1, - sym__space, - STATE(2443), 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(2668), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2549), 1, - sym_path, - STATE(2565), 1, + STATE(2710), 1, sym_comment, - STATE(3011), 1, - sym_cell_path, - ACTIONS(5298), 13, + STATE(2936), 1, + sym_path, + ACTIONS(1506), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206831,18 +212104,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + [85296] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + 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_RBRACE, - [80027] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [85324] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1960), 1, anon_sym_LPAREN2, - STATE(2566), 1, + STATE(2712), 1, sym_comment, - STATE(4713), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5302), 16, + ACTIONS(1956), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206854,27 +212151,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, - [80058] = 8, + [85354] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1892), 1, + ACTIONS(5493), 1, + anon_sym_EQ2, + ACTIONS(5509), 1, sym__space, - ACTIONS(5027), 1, - anon_sym_DOT2, - STATE(2443), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2549), 1, - sym_path, - STATE(2567), 1, + ACTIONS(5511), 1, + sym_short_flag_identifier, + STATE(2713), 1, sym_comment, - STATE(3008), 1, - sym_cell_path, - ACTIONS(1894), 13, + STATE(3032), 1, + sym__flag_equals_value, + ACTIONS(5507), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206888,16 +212181,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [80095] = 4, + [85388] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2568), 1, + ACTIONS(5346), 1, + aux_sym__immediate_decimal_token5, + STATE(2714), 1, sym_comment, - ACTIONS(1539), 3, + ACTIONS(1744), 2, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 15, + anon_sym_LPAREN2, + ACTIONS(1746), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206911,20 +212205,15 @@ 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, - [80124] = 5, + sym__unquoted_pattern, + [85418] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_DOT_DOT2, - STATE(2569), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2715), 1, sym_comment, - ACTIONS(5239), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1716), 15, - ts_builtin_sym_end, + ACTIONS(5513), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206936,17 +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, - [80155] = 4, + [85445] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2508), 1, - sym__unquoted_pattern, - STATE(2570), 1, + STATE(2716), 1, sym_comment, - ACTIONS(2506), 17, + STATE(2732), 1, + aux_sym__repeat_newline, + ACTIONS(5515), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206959,21 +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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [80184] = 5, + [85472] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - STATE(2571), 1, + STATE(2717), 1, sym_comment, - STATE(4713), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5302), 16, + ACTIONS(5517), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206990,44 +212274,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80215] = 4, - ACTIONS(3), 1, + [85497] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2572), 1, + STATE(2718), 1, sym_comment, - ACTIONS(1504), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1506), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(1892), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [80244] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5217), 1, - anon_sym_DOT2, - STATE(2458), 1, - sym_path, - STATE(2573), 1, - sym_comment, - STATE(2574), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1517), 15, - anon_sym_EQ, + ACTIONS(1894), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207039,20 +212296,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, - [80277] = 5, + anon_sym_DOT_DOT2, + [85524] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5304), 1, - anon_sym_DOT2, - STATE(2458), 1, - sym_path, - STATE(2574), 2, + ACTIONS(5519), 1, + anon_sym_BANG, + STATE(2719), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1510), 15, + ACTIONS(1450), 15, + ts_builtin_sym_end, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -207066,22 +212319,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACE, - [80308] = 6, + anon_sym_DOT2, + [85551] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5307), 1, - anon_sym_QMARK2, - ACTIONS(5309), 1, - anon_sym_BANG, - STATE(2575), 1, + STATE(2720), 1, sym_comment, - STATE(2864), 1, - sym__path_suffix, - ACTIONS(1444), 15, - ts_builtin_sym_end, - anon_sym_EQ, + STATE(2733), 1, + aux_sym__repeat_newline, + ACTIONS(5521), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207093,46 +212339,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_DOT2, - [80341] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2576), 1, - sym_comment, - ACTIONS(1519), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1521), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [80370] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85578] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_DOT_DOT2, - STATE(2577), 1, - sym_comment, - ACTIONS(5239), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5142), 15, - ts_builtin_sym_end, + 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, @@ -207143,19 +212365,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_RPAREN, anon_sym_xor2, anon_sym_or2, - [80401] = 5, - ACTIONS(3), 1, + [85609] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2556), 1, - anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(2578), 1, + STATE(2722), 1, sym_comment, - ACTIONS(1030), 16, + ACTIONS(1878), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1880), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207167,98 +212390,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, - [80432] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2579), 1, - sym_comment, - ACTIONS(1523), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1525), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [80461] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2580), 1, - sym_comment, - ACTIONS(1527), 3, - anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1529), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [80490] = 4, + [85636] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5313), 1, - anon_sym_DASH2, - STATE(2581), 1, + ACTIONS(5528), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5530), 1, + aux_sym__immediate_decimal_token5, + STATE(2723), 1, sym_comment, - ACTIONS(5311), 17, - anon_sym_EQ, + ACTIONS(1772), 3, 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, - [80519] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2582), 1, - sym_comment, - ACTIONS(1496), 3, anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1498), 15, + sym__unquoted_pattern_in_record, + ACTIONS(1770), 11, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -207268,20 +212415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [80548] = 5, + anon_sym_LPAREN2, + [85667] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, - anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(2583), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2724), 1, sym_comment, - ACTIONS(994), 16, + ACTIONS(5532), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207294,47 +212436,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, - [80579] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2584), 1, - sym_comment, - ACTIONS(1500), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1502), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_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, - [80608] = 5, + [85694] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5315), 1, - anon_sym_DOT_DOT2, - STATE(2585), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2725), 1, sym_comment, - ACTIONS(5317), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 15, - ts_builtin_sym_end, + ACTIONS(5534), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207346,21 +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, - [80639] = 5, + [85721] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5319), 1, - anon_sym_DOT_DOT2, - STATE(2586), 1, + ACTIONS(5536), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2726), 1, sym_comment, - ACTIONS(5321), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2108), 15, - ts_builtin_sym_end, + ACTIONS(5532), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207372,21 +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, - [80670] = 5, + [85750] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5323), 1, - anon_sym_DOT_DOT2, - STATE(2587), 1, + ACTIONS(5538), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2727), 1, sym_comment, - ACTIONS(5325), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2116), 15, - ts_builtin_sym_end, + ACTIONS(5534), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207398,21 +212507,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, - [80701] = 5, + [85779] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5327), 1, - anon_sym_DOT_DOT2, - STATE(2588), 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(5329), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2124), 15, - ts_builtin_sym_end, + ACTIONS(5532), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207424,19 +212533,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_RPAREN, anon_sym_or2, - [80732] = 5, + [85810] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2594), 1, - anon_sym_LPAREN2, - ACTIONS(2596), 1, - sym__unquoted_pattern, - STATE(2589), 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, - ACTIONS(1716), 16, + ACTIONS(5534), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207449,20 +212559,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [80763] = 5, + [85841] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - STATE(2590), 1, + STATE(2730), 1, sym_comment, - STATE(4713), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5302), 16, + STATE(2778), 1, + aux_sym__repeat_newline, + ACTIONS(5544), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207475,22 +212580,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, - [80794] = 5, + [85868] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_DOT_DOT2, - STATE(2591), 1, + STATE(2731), 1, sym_comment, - ACTIONS(5239), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5142), 15, - ts_builtin_sym_end, + STATE(2779), 1, + aux_sym__repeat_newline, + ACTIONS(5546), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207502,73 +212602,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80825] = 4, + [85895] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5333), 1, - anon_sym_DASH2, - STATE(2592), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2732), 1, sym_comment, - ACTIONS(5331), 17, - anon_sym_EQ, - sym_identifier, + ACTIONS(5548), 15, 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, - anon_sym_LBRACE, - anon_sym_RBRACE, - [80854] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85922] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5335), 1, - aux_sym__immediate_decimal_token5, - STATE(2593), 1, - sym_comment, - ACTIONS(1814), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1812), 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, - [80885] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2108), 1, - sym__space, - ACTIONS(5337), 1, - anon_sym_DOT_DOT2, - STATE(2594), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2733), 1, sym_comment, - ACTIONS(5339), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2110), 13, + ACTIONS(5550), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207581,105 +212649,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [80917] = 12, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85949] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1480), 1, - anon_sym_COMMA, - ACTIONS(5169), 1, - anon_sym_EQ, - ACTIONS(5171), 1, + ACTIONS(5526), 1, + anon_sym_and2, + ACTIONS(5552), 1, sym__newline, - ACTIONS(5173), 1, - anon_sym_COLON, - ACTIONS(5343), 1, - anon_sym_DASH2, - STATE(2595), 1, + STATE(2734), 1, sym_comment, - STATE(2607), 1, - aux_sym_parameter_repeat1, - STATE(3439), 1, - aux_sym_parameter_repeat2, - STATE(4244), 1, + STATE(2780), 1, aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5341), 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, - [80961] = 12, + anon_sym_xor2, + anon_sym_or2, + [85980] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1480), 1, - anon_sym_COMMA, - ACTIONS(5169), 1, - anon_sym_EQ, - ACTIONS(5171), 1, + ACTIONS(5555), 1, sym__newline, - ACTIONS(5173), 1, - anon_sym_COLON, - ACTIONS(5347), 1, - anon_sym_DASH2, - STATE(2596), 1, + ACTIONS(5558), 1, + anon_sym_and2, + STATE(2735), 1, sym_comment, - STATE(2705), 1, - aux_sym_parameter_repeat1, - STATE(3436), 1, - aux_sym_parameter_repeat2, - STATE(4244), 1, + STATE(2781), 1, aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5345), 7, - sym_identifier, + ACTIONS(5546), 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, - [81005] = 4, + anon_sym_xor2, + anon_sym_or2, + [86011] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2597), 1, + ACTIONS(5536), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2736), 1, sym_comment, - ACTIONS(1878), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1876), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(5548), 14, 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, - [81033] = 4, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [86040] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2598), 1, + ACTIONS(5538), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2737), 1, sym_comment, - ACTIONS(1846), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1848), 14, + ACTIONS(5550), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207692,79 +212748,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [81061] = 12, + anon_sym_xor2, + anon_sym_or2, + [86069] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1480), 1, - anon_sym_COMMA, - ACTIONS(5169), 1, - anon_sym_EQ, - ACTIONS(5171), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(5173), 1, - anon_sym_COLON, - ACTIONS(5351), 1, - anon_sym_DASH2, - STATE(2599), 1, + ACTIONS(5526), 1, + anon_sym_and2, + ACTIONS(5560), 1, + anon_sym_xor2, + STATE(2738), 1, sym_comment, - STATE(2633), 1, - aux_sym_parameter_repeat1, - STATE(3415), 1, - aux_sym_parameter_repeat2, - STATE(4244), 1, + STATE(2782), 1, aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5349), 7, - sym_identifier, + ACTIONS(5544), 12, + 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, - [81105] = 8, + anon_sym_or2, + [86102] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2013), 1, - anon_sym_DASH2, - ACTIONS(2015), 1, - anon_sym_LPAREN2, - ACTIONS(5353), 1, - anon_sym_DOT_DOT2, - STATE(2600), 1, - sym_comment, - ACTIONS(5355), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2011), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2907), 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, - [81141] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2601), 1, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5562), 1, + anon_sym_xor2, + STATE(2739), 1, sym_comment, - ACTIONS(1876), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1878), 14, - sym__newline, + STATE(2785), 1, + aux_sym__repeat_newline, + ACTIONS(5546), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -207776,47 +212801,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_DOT_DOT2, - [81169] = 8, + anon_sym_or2, + [86135] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2023), 1, - anon_sym_DASH2, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern_in_record, - ACTIONS(5357), 1, - anon_sym_DOT_DOT2, - STATE(2602), 1, - sym_comment, - ACTIONS(5359), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2021), 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, - [81205] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2603), 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, - ACTIONS(1543), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1541), 13, + ACTIONS(5548), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207828,19 +212825,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [81233] = 5, + anon_sym_RPAREN, + anon_sym_or2, + [86166] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - STATE(2604), 1, + ACTIONS(5538), 1, + anon_sym_and2, + ACTIONS(5542), 1, + anon_sym_xor2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2741), 1, sym_comment, - STATE(4680), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5302), 15, - ts_builtin_sym_end, + ACTIONS(5550), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207852,20 +212850,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_RPAREN, anon_sym_or2, - [81263] = 5, + [86197] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - STATE(2605), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2742), 1, sym_comment, - STATE(4680), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5302), 15, - ts_builtin_sym_end, + ACTIONS(5564), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207877,20 +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, - [81293] = 5, + [86224] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - STATE(2606), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2743), 1, sym_comment, - STATE(4680), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5302), 15, - ts_builtin_sym_end, + ACTIONS(5566), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207902,50 +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, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81323] = 12, + [86251] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1480), 1, - anon_sym_COMMA, - ACTIONS(5169), 1, - anon_sym_EQ, - ACTIONS(5171), 1, - sym__newline, - ACTIONS(5173), 1, - anon_sym_COLON, - ACTIONS(5363), 1, - anon_sym_DASH2, - STATE(2607), 1, - sym_comment, - STATE(2705), 1, - aux_sym_parameter_repeat1, - STATE(3420), 1, - aux_sym_parameter_repeat2, - STATE(4244), 1, + ACTIONS(5536), 1, + anon_sym_and2, + STATE(527), 1, aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5361), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [81367] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1814), 1, - sym__unquoted_pattern, - STATE(2608), 1, + STATE(2744), 1, sym_comment, - ACTIONS(1812), 16, - ts_builtin_sym_end, + ACTIONS(5564), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207957,19 +212919,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, - anon_sym_LPAREN2, - [81395] = 4, + [86280] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1902), 1, - sym__unquoted_pattern, - STATE(2609), 1, + ACTIONS(5538), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2745), 1, sym_comment, - ACTIONS(1900), 16, - ts_builtin_sym_end, + ACTIONS(5566), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207981,27 +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, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [81423] = 8, - ACTIONS(103), 1, + [86309] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5120), 1, - anon_sym_DOT2, - STATE(2473), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2610), 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(2611), 1, - sym_path, - STATE(3186), 1, - sym_cell_path, - ACTIONS(1862), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1865), 11, + ACTIONS(5564), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208013,17 +212969,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, - [81459] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_or2, + [86340] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2611), 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(1535), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1533), 13, + ACTIONS(5566), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208035,25 +212994,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [81487] = 8, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_or2, + [86371] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5120), 1, - anon_sym_DOT2, - STATE(2473), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2612), 1, + STATE(2748), 1, sym_comment, - STATE(3127), 1, - sym_cell_path, - ACTIONS(1880), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1882), 11, + STATE(2786), 1, + aux_sym__repeat_newline, + ACTIONS(5568), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208065,23 +213015,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, - [81523] = 8, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86398] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5120), 1, - anon_sym_DOT2, - STATE(2473), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2613), 1, + STATE(2749), 1, sym_comment, - STATE(3132), 1, - sym_cell_path, - ACTIONS(1856), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1858), 11, + STATE(2787), 1, + aux_sym__repeat_newline, + ACTIONS(5570), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208093,23 +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, - [81559] = 8, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86425] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5120), 1, - anon_sym_DOT2, - STATE(2473), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2614), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2750), 1, sym_comment, - STATE(3141), 1, - sym_cell_path, - ACTIONS(1872), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1874), 11, + ACTIONS(5572), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208121,18 +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, - [81595] = 5, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86452] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5282), 1, - aux_sym__immediate_decimal_token5, - STATE(2615), 1, - sym_comment, - ACTIONS(1754), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1756), 14, + 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, @@ -208144,18 +213088,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [81625] = 4, + anon_sym_xor2, + anon_sym_or2, + [86483] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2508), 1, - sym__unquoted_pattern, - STATE(2616), 1, - sym_comment, - ACTIONS(2506), 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, @@ -208166,72 +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, - [81653] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_BANG, - STATE(2617), 1, - sym_comment, - 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_PIPE, - 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, - [81683] = 5, + [86514] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_QMARK2, - STATE(2618), 1, - sym_comment, - ACTIONS(1456), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1458), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5580), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [81713] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5367), 1, - aux_sym__immediate_decimal_token5, - STATE(2619), 1, + STATE(2753), 1, sym_comment, - ACTIONS(1812), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1814), 14, - sym__newline, + STATE(2789), 1, + aux_sym__repeat_newline, + ACTIONS(5570), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208243,22 +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_RBRACE, - sym__unquoted_pattern, - [81743] = 7, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [86545] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4328), 1, - sym__space, - ACTIONS(5369), 1, - sym_long_flag_identifier, - ACTIONS(5371), 1, - anon_sym_EQ2, - STATE(2620), 1, + ACTIONS(5536), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2754), 1, sym_comment, - STATE(3034), 1, - sym__flag_equals_value, - ACTIONS(4326), 13, + ACTIONS(5572), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208271,24 +213162,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, - [81777] = 8, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [86574] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5120), 1, - anon_sym_DOT2, - STATE(2473), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2621), 1, + ACTIONS(5538), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2755), 1, sym_comment, - STATE(3184), 1, - sym_cell_path, - ACTIONS(1892), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1894), 11, + ACTIONS(5513), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208300,16 +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, - [81813] = 4, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [86603] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1748), 1, - sym__unquoted_pattern, - STATE(2622), 1, - sym_comment, - ACTIONS(1746), 16, - ts_builtin_sym_end, + ACTIONS(2907), 1, sym__newline, + ACTIONS(5526), 1, + anon_sym_and2, + ACTIONS(5560), 1, + anon_sym_xor2, + STATE(2756), 1, + sym_comment, + STATE(2790), 1, + aux_sym__repeat_newline, + ACTIONS(5568), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208320,25 +213212,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, + anon_sym_RPAREN, anon_sym_or2, - anon_sym_LPAREN2, - [81841] = 6, + [86636] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5274), 1, - anon_sym_DOT2, - STATE(2623), 1, - sym_comment, - STATE(2649), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2924), 1, - sym_path, - ACTIONS(1517), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(2907), 1, sym__newline, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5562), 1, + anon_sym_xor2, + STATE(2757), 1, + sym_comment, + STATE(2792), 1, + aux_sym__repeat_newline, + ACTIONS(5570), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208349,42 +213238,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, - [81873] = 4, + anon_sym_RPAREN, + anon_sym_or2, + [86669] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2624), 1, + ACTIONS(5536), 1, + anon_sym_and2, + ACTIONS(5540), 1, + anon_sym_xor2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2758), 1, sym_comment, - ACTIONS(1748), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1746), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(5572), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [81901] = 4, + anon_sym_or2, + [86700] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2625), 1, - sym_comment, - ACTIONS(1539), 4, - ts_builtin_sym_end, + ACTIONS(1744), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1537), 13, + ACTIONS(5164), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5583), 1, + anon_sym_DOT, + STATE(2759), 1, + sym_comment, + ACTIONS(1746), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208396,18 +213288,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [81929] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [86731] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2626), 1, + ACTIONS(5538), 1, + anon_sym_and2, + ACTIONS(5542), 1, + anon_sym_xor2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2760), 1, sym_comment, - ACTIONS(1687), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1689), 14, + ACTIONS(5513), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208420,20 +213314,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, - [81957] = 4, + anon_sym_or2, + [86762] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2627), 1, + ACTIONS(5585), 1, + anon_sym_DOT, + ACTIONS(5587), 1, + aux_sym__immediate_decimal_token5, + STATE(2761), 1, sym_comment, - ACTIONS(1814), 3, + ACTIONS(1746), 3, + sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1812), 14, + ACTIONS(1744), 11, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -208444,20 +213340,20 @@ 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, - [81985] = 5, + [86793] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2594), 1, - anon_sym_LPAREN2, - ACTIONS(2596), 1, - sym__unquoted_pattern, - STATE(2628), 1, - sym_comment, - ACTIONS(1716), 15, - ts_builtin_sym_end, + ACTIONS(2907), 1, sym__newline, + ACTIONS(5526), 1, + anon_sym_and2, + ACTIONS(5560), 1, + anon_sym_xor2, + STATE(2740), 1, + aux_sym__repeat_newline, + STATE(2762), 1, + sym_comment, + ACTIONS(5515), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208468,44 +213364,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, + anon_sym_RPAREN, anon_sym_or2, - [82015] = 4, + [86826] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2629), 1, - sym_comment, - ACTIONS(1902), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1900), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(2907), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [82043] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2630), 1, + 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(1850), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1852), 14, - sym__newline, + ACTIONS(5521), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208517,50 +213391,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [82071] = 4, + anon_sym_or2, + [86859] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2631), 1, + STATE(2742), 1, + aux_sym__repeat_newline, + STATE(2764), 1, sym_comment, - ACTIONS(1852), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1850), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [82099] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5373), 1, + ACTIONS(5589), 15, sym__newline, - ACTIONS(5375), 1, - sym__space, - ACTIONS(5379), 1, - anon_sym_COLON2, - ACTIONS(5381), 1, - anon_sym_EQ2, - STATE(2632), 1, - sym_comment, - STATE(2919), 1, - aux_sym_attribute_repeat1, - STATE(4147), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5377), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208571,50 +213411,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [82137] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1480), 1, - anon_sym_COMMA, - ACTIONS(5169), 1, - anon_sym_EQ, - ACTIONS(5171), 1, - sym__newline, - ACTIONS(5173), 1, - anon_sym_COLON, - ACTIONS(5385), 1, - anon_sym_DASH2, - STATE(2633), 1, - sym_comment, - STATE(2705), 1, - aux_sym_parameter_repeat1, - STATE(3402), 1, - aux_sym_parameter_repeat2, - STATE(4244), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5383), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [82181] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86886] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2015), 1, - anon_sym_LPAREN2, - STATE(2634), 1, + STATE(2743), 1, + aux_sym__repeat_newline, + STATE(2765), 1, sym_comment, - ACTIONS(2011), 15, - ts_builtin_sym_end, + ACTIONS(5591), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208626,23 +213434,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, - [82211] = 7, - ACTIONS(103), 1, + [86913] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5371), 1, - anon_sym_EQ2, - ACTIONS(5389), 1, - sym__space, - ACTIONS(5391), 1, - sym_short_flag_identifier, - STATE(2635), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2766), 1, sym_comment, - STATE(3057), 1, - sym__flag_equals_value, - ACTIONS(5387), 13, + ACTIONS(5593), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208655,20 +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_RBRACE, - [82245] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86940] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5395), 1, - sym__space, - ACTIONS(5397), 1, - anon_sym_DOT_DOT2, - STATE(2636), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2767), 1, sym_comment, - ACTIONS(5399), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5393), 13, + ACTIONS(5595), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208681,25 +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_RBRACE, - [82277] = 8, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86967] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5120), 1, - anon_sym_DOT2, - STATE(2473), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2637), 1, - sym_comment, - STATE(3202), 1, - sym_cell_path, - ACTIONS(5292), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5290), 11, + ACTIONS(5526), 1, + anon_sym_and2, + ACTIONS(5597), 1, sym__newline, + STATE(2744), 1, + aux_sym__repeat_newline, + STATE(2768), 1, + sym_comment, + ACTIONS(5589), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208710,17 +213506,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, - [82313] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [86998] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2638), 1, - sym_comment, - ACTIONS(1582), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1580), 14, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5600), 1, sym__newline, + STATE(2745), 1, + aux_sym__repeat_newline, + STATE(2769), 1, + sym_comment, + ACTIONS(5591), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208732,25 +213532,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [82341] = 8, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [87029] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5120), 1, - anon_sym_DOT2, - STATE(2473), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2639), 1, + ACTIONS(5605), 1, + anon_sym_and2, + STATE(2770), 1, sym_comment, - STATE(3206), 1, - sym_cell_path, - ACTIONS(5296), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5294), 11, + ACTIONS(5603), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208762,23 +213553,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, - [82377] = 8, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_xor2, + anon_sym_or2, + [87056] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5120), 1, - anon_sym_DOT2, - STATE(2473), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2640), 1, + ACTIONS(5607), 1, + anon_sym_and2, + STATE(2771), 1, sym_comment, - STATE(3209), 1, - sym_cell_path, - ACTIONS(5300), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5298), 11, + ACTIONS(5517), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208790,19 +213576,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, - [82413] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_xor2, + anon_sym_or2, + [87083] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1716), 1, - sym__space, - ACTIONS(5397), 1, - anon_sym_DOT_DOT2, - STATE(2641), 1, + ACTIONS(5536), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2772), 1, sym_comment, - ACTIONS(5399), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1629), 13, + ACTIONS(5593), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208815,20 +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_RBRACE, - [82445] = 6, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [87112] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2152), 1, - sym__space, - ACTIONS(5401), 1, - anon_sym_DOT_DOT2, - STATE(2642), 1, + ACTIONS(5605), 1, + anon_sym_and2, + ACTIONS(5609), 1, + anon_sym_xor2, + STATE(2773), 1, sym_comment, - ACTIONS(5403), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 13, + ACTIONS(5603), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208842,19 +213627,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82477] = 6, - ACTIONS(103), 1, + anon_sym_or2, + [87141] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2116), 1, - sym__space, - ACTIONS(5405), 1, - anon_sym_DOT_DOT2, - STATE(2643), 1, + ACTIONS(5607), 1, + anon_sym_and2, + ACTIONS(5611), 1, + anon_sym_xor2, + STATE(2774), 1, sym_comment, - ACTIONS(5407), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2118), 13, + ACTIONS(5517), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208868,19 +213651,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82509] = 6, - ACTIONS(103), 1, + anon_sym_or2, + [87170] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2124), 1, - sym__space, - ACTIONS(5409), 1, - anon_sym_DOT_DOT2, - STATE(2644), 1, + STATE(2775), 1, sym_comment, - ACTIONS(5411), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2126), 13, + ACTIONS(5225), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208894,20 +213671,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82541] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [87195] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5413), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5415), 1, - aux_sym__immediate_decimal_token5, - STATE(2645), 1, + ACTIONS(5538), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2776), 1, sym_comment, - ACTIONS(1746), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1748), 12, + ACTIONS(5595), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208919,19 +213695,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, - sym__unquoted_pattern, - [82573] = 5, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [87224] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern, - STATE(2646), 1, - sym_comment, - ACTIONS(2566), 15, - ts_builtin_sym_end, + ACTIONS(2907), 1, sym__newline, + ACTIONS(5526), 1, + anon_sym_and2, + ACTIONS(5560), 1, + anon_sym_xor2, + STATE(2746), 1, + aux_sym__repeat_newline, + STATE(2777), 1, + sym_comment, + ACTIONS(5589), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208942,20 +213722,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_RPAREN, anon_sym_or2, - [82603] = 5, + [87257] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern, - STATE(2647), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2778), 1, sym_comment, - ACTIONS(2021), 15, - ts_builtin_sym_end, + ACTIONS(5613), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208967,20 +213743,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, - [82633] = 5, + [87284] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1691), 1, - sym__unquoted_pattern, - ACTIONS(2564), 1, - anon_sym_LPAREN2, - STATE(2648), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2779), 1, sym_comment, - ACTIONS(2560), 15, - ts_builtin_sym_end, + ACTIONS(5615), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208992,22 +213766,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, - [82663] = 5, + [87311] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5417), 1, - anon_sym_DOT2, - STATE(2924), 1, - sym_path, - STATE(2649), 2, + ACTIONS(5536), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2780), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1510), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(5613), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209019,18 +213791,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - [82693] = 5, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [87340] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2574), 1, - anon_sym_LPAREN2, - ACTIONS(2576), 1, - sym__unquoted_pattern, - STATE(2650), 1, + ACTIONS(5538), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2781), 1, sym_comment, - ACTIONS(2570), 15, - ts_builtin_sym_end, + ACTIONS(5615), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209042,20 +213815,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, - [82723] = 5, + [87369] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2525), 1, - anon_sym_LPAREN2, - ACTIONS(2527), 1, - sym__unquoted_pattern, - STATE(2651), 1, + ACTIONS(5536), 1, + anon_sym_and2, + ACTIONS(5540), 1, + anon_sym_xor2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2782), 1, sym_comment, - ACTIONS(2521), 15, - ts_builtin_sym_end, + ACTIONS(5613), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209067,18 +213841,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, + anon_sym_RPAREN, anon_sym_or2, - [82753] = 4, + [87400] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1776), 1, - sym__unquoted_pattern, - STATE(2652), 1, - sym_comment, - ACTIONS(884), 16, + ACTIONS(2907), 1, sym__newline, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5562), 1, + anon_sym_xor2, + STATE(2747), 1, + aux_sym__repeat_newline, + STATE(2783), 1, + sym_comment, + ACTIONS(5591), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209090,24 +213868,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [82781] = 6, + [87433] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5420), 1, - anon_sym_DOT, - ACTIONS(5422), 1, - aux_sym__immediate_decimal_token5, - STATE(2653), 1, + ACTIONS(5617), 1, + anon_sym_DOT_DOT2, + STATE(2784), 1, sym_comment, - ACTIONS(1754), 3, + ACTIONS(1713), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1756), 12, + ACTIONS(5619), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1614), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209119,18 +213894,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [82813] = 5, + [87464] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, - anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(2654), 1, + ACTIONS(5538), 1, + anon_sym_and2, + ACTIONS(5542), 1, + anon_sym_xor2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2785), 1, sym_comment, - ACTIONS(1030), 15, - ts_builtin_sym_end, + ACTIONS(5615), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209142,20 +213917,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_RPAREN, anon_sym_or2, - [82843] = 5, + [87495] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, - anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(2655), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2786), 1, sym_comment, - ACTIONS(994), 15, - ts_builtin_sym_end, + ACTIONS(5621), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209167,26 +213938,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, - [82873] = 8, - ACTIONS(103), 1, + [87522] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5120), 1, - anon_sym_DOT2, - STATE(2473), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2656), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2787), 1, sym_comment, - STATE(3170), 1, - sym_cell_path, - ACTIONS(5247), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5245), 11, + ACTIONS(5623), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209198,23 +213961,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, - [82909] = 8, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [87549] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5120), 1, - anon_sym_DOT2, - STATE(2473), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2657), 1, + ACTIONS(5536), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2788), 1, sym_comment, - STATE(3226), 1, - sym_cell_path, - ACTIONS(5251), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5249), 11, + ACTIONS(5621), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209226,23 +213986,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, - [82945] = 8, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [87578] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5120), 1, - anon_sym_DOT2, - STATE(2473), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2658), 1, + ACTIONS(5538), 1, + anon_sym_and2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2789), 1, sym_comment, - STATE(3199), 1, - sym_cell_path, - ACTIONS(1888), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1890), 11, + ACTIONS(5623), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209254,18 +214010,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, - [82981] = 6, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [87607] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(5536), 1, anon_sym_and2, - ACTIONS(5428), 1, + ACTIONS(5540), 1, anon_sym_xor2, - ACTIONS(5430), 1, - anon_sym_or2, - STATE(2659), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2790), 1, sym_comment, - ACTIONS(5424), 13, + ACTIONS(5621), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209278,15 +214037,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, - [83012] = 4, + anon_sym_or2, + [87638] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2660), 1, - sym_comment, - STATE(2668), 1, + ACTIONS(5536), 1, + anon_sym_and2, + ACTIONS(5540), 1, + anon_sym_xor2, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(5432), 15, + STATE(2791), 1, + sym_comment, + ACTIONS(5593), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209299,48 +214062,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [83039] = 8, + [87669] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5156), 1, - anon_sym_DOT2, - ACTIONS(5436), 1, - anon_sym_DASH2, - STATE(2529), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2661), 1, + ACTIONS(5538), 1, + anon_sym_and2, + ACTIONS(5542), 1, + anon_sym_xor2, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2792), 1, sym_comment, - STATE(2725), 1, - sym_path, - STATE(2859), 1, - sym_cell_path, - ACTIONS(5434), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5623), 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, - [83074] = 6, + anon_sym_or2, + [87700] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5438), 1, - sym__newline, - ACTIONS(5443), 1, + ACTIONS(5538), 1, anon_sym_and2, - STATE(2662), 1, - sym_comment, - STATE(2802), 1, + ACTIONS(5542), 1, + anon_sym_xor2, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(5441), 13, + STATE(2793), 1, + sym_comment, + ACTIONS(5595), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209352,20 +214112,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, - [83105] = 6, - ACTIONS(3), 1, + [87731] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5445), 1, - sym__newline, - ACTIONS(5450), 1, - anon_sym_and2, - STATE(2663), 1, + ACTIONS(1713), 1, + sym__space, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(2794), 1, sym_comment, - STATE(2722), 1, - aux_sym__repeat_newline, - ACTIONS(5448), 13, + ACTIONS(1614), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209377,20 +214137,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [83136] = 6, + anon_sym_RBRACE, + [87762] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5443), 1, - anon_sym_and2, - ACTIONS(5452), 1, - sym__newline, - STATE(2664), 1, - sym_comment, - STATE(2729), 1, + STATE(2750), 1, aux_sym__repeat_newline, - ACTIONS(5432), 13, + STATE(2795), 1, + sym_comment, + ACTIONS(5625), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209402,14 +214158,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, - [83167] = 3, - ACTIONS(3), 1, + [87789] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2665), 1, + ACTIONS(5428), 1, + aux_sym__immediate_decimal_token5, + STATE(2796), 1, sym_comment, - ACTIONS(5142), 16, + ACTIONS(1744), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1746), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209421,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_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [83192] = 4, + sym__unquoted_pattern, + [87818] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, + STATE(2715), 1, aux_sym__repeat_newline, - STATE(2666), 1, + STATE(2797), 1, sym_comment, - ACTIONS(5455), 15, + ACTIONS(5627), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209449,20 +214208,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83219] = 7, + [87845] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(5450), 1, + ACTIONS(5526), 1, anon_sym_and2, - ACTIONS(5459), 1, - anon_sym_xor2, - STATE(2667), 1, - sym_comment, - STATE(2808), 1, + ACTIONS(5629), 1, + sym__newline, + STATE(2754), 1, aux_sym__repeat_newline, - ACTIONS(5457), 12, + STATE(2798), 1, + sym_comment, + ACTIONS(5625), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209474,15 +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, - [83252] = 4, - ACTIONS(3), 1, + [87876] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2668), 1, + ACTIONS(5632), 1, + anon_sym_DOT_DOT2, + STATE(2799), 1, sym_comment, - ACTIONS(5461), 15, + 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, @@ -209494,24 +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_and2, - anon_sym_xor2, - anon_sym_or2, - [83279] = 7, + [87907] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(5443), 1, + ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5465), 1, - anon_sym_xor2, - STATE(2669), 1, - sym_comment, - STATE(2810), 1, + ACTIONS(5636), 1, + sym__newline, + STATE(2755), 1, aux_sym__repeat_newline, - ACTIONS(5463), 12, + STATE(2800), 1, + sym_comment, + ACTIONS(5627), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209523,175 +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_xor2, anon_sym_or2, - [83312] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1865), 1, - anon_sym_DASH2, - ACTIONS(5156), 1, - anon_sym_DOT2, - STATE(2529), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2670), 1, - sym_comment, - STATE(2725), 1, - sym_path, - STATE(2859), 1, - sym_cell_path, - ACTIONS(1862), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [83347] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1882), 1, - anon_sym_DASH2, - ACTIONS(5156), 1, - anon_sym_DOT2, - STATE(2529), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2671), 1, - sym_comment, - STATE(2725), 1, - sym_path, - STATE(2953), 1, - sym_cell_path, - ACTIONS(1880), 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, - [83382] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1858), 1, - anon_sym_DASH2, - ACTIONS(5156), 1, - anon_sym_DOT2, - STATE(2529), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2672), 1, - sym_comment, - STATE(2725), 1, - sym_path, - STATE(2866), 1, - sym_cell_path, - ACTIONS(1856), 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, - [83417] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1874), 1, - anon_sym_DASH2, - ACTIONS(5156), 1, - anon_sym_DOT2, - STATE(2529), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2673), 1, - sym_comment, - STATE(2725), 1, - sym_path, - STATE(2966), 1, - sym_cell_path, - ACTIONS(1872), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [83452] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1894), 1, - anon_sym_DASH2, - ACTIONS(5156), 1, - anon_sym_DOT2, - STATE(2529), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2674), 1, - sym_comment, - STATE(2725), 1, - sym_path, - STATE(2881), 1, - sym_cell_path, - ACTIONS(1892), 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, - [83487] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1890), 1, - anon_sym_DASH2, - ACTIONS(5156), 1, - anon_sym_DOT2, - STATE(2529), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2675), 1, - sym_comment, - STATE(2725), 1, - sym_path, - STATE(2929), 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, - [83522] = 3, - ACTIONS(3), 1, + [87938] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2676), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1956), 1, + sym__space, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(2801), 1, sym_comment, - ACTIONS(5302), 16, + ACTIONS(1958), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209705,23 +214308,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, - [83547] = 7, + [87969] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(5450), 1, + ACTIONS(5526), 1, anon_sym_and2, - ACTIONS(5459), 1, + ACTIONS(5560), 1, anon_sym_xor2, - STATE(2677), 1, - sym_comment, - STATE(2760), 1, + STATE(2758), 1, aux_sym__repeat_newline, - ACTIONS(5448), 12, + STATE(2802), 1, + sym_comment, + ACTIONS(5625), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209734,20 +214334,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83580] = 7, + [88002] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(5443), 1, + ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5465), 1, + ACTIONS(5562), 1, anon_sym_xor2, - STATE(2678), 1, - sym_comment, - STATE(2764), 1, + STATE(2760), 1, aux_sym__repeat_newline, - ACTIONS(5432), 12, + STATE(2803), 1, + sym_comment, + ACTIONS(5627), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209760,16 +214360,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83613] = 5, - ACTIONS(3), 1, + [88035] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5469), 1, - anon_sym_and2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2679), 1, + ACTIONS(5639), 1, + sym_long_flag_identifier, + ACTIONS(5641), 1, + anon_sym_EQ2, + STATE(2804), 1, sym_comment, - ACTIONS(5467), 14, + 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, @@ -209781,15 +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_xor2, - anon_sym_or2, - [83642] = 3, - ACTIONS(3), 1, + [88068] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2680), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(2597), 1, + sym__space, + STATE(2805), 1, sym_comment, - ACTIONS(5142), 16, + ACTIONS(2599), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209803,17 +214411,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, - [83667] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2681), 1, + [88099] = 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(2806), 1, sym_comment, - ACTIONS(5471), 15, + ACTIONS(1975), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209826,19 +214435,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, - [83694] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [88130] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5473), 1, - anon_sym_BANG, - STATE(2682), 1, + ACTIONS(5643), 1, + aux_sym__immediate_decimal_token5, + STATE(2807), 1, sym_comment, - ACTIONS(1458), 15, + ACTIONS(1852), 3, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1854), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209850,24 +214459,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_DOT2, - [83721] = 8, + sym__unquoted_pattern, + [88159] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5475), 1, - anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(5482), 1, - anon_sym_COLON, - STATE(2683), 1, + ACTIONS(5526), 1, + anon_sym_and2, + ACTIONS(5560), 1, + anon_sym_xor2, + ACTIONS(5647), 1, + anon_sym_or2, + STATE(2808), 1, sym_comment, - STATE(4634), 1, + STATE(2837), 1, aux_sym__repeat_newline, - STATE(5059), 1, - sym_param_type, - ACTIONS(5480), 11, + ACTIONS(5645), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209879,15 +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, - [83756] = 4, + [88194] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2684), 1, - sym_comment, - ACTIONS(2506), 2, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(2541), 1, sym__space, + ACTIONS(2642), 1, anon_sym_LPAREN2, - ACTIONS(2508), 14, + STATE(2809), 1, + sym_comment, + ACTIONS(2543), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209901,19 +214512,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [83783] = 6, + [88225] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - ACTIONS(5486), 1, + ACTIONS(2589), 1, sym__space, - STATE(2685), 1, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(2810), 1, sym_comment, - STATE(4672), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5484), 13, + ACTIONS(2591), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209927,12 +214537,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [83814] = 3, + [88256] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2686), 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, + 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(5302), 16, + STATE(3020), 1, + aux_sym_attribute_repeat1, + ACTIONS(5465), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209946,15 +214589,15 @@ 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, - [83839] = 3, - ACTIONS(3), 1, + [88322] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2687), 1, + STATE(2813), 1, sym_comment, - ACTIONS(5142), 16, + ACTIONS(2525), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2527), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209968,21 +214611,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, - [83864] = 6, + sym__unquoted_pattern, + [88349] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2521), 1, + ACTIONS(2648), 1, sym__space, - ACTIONS(2525), 1, + ACTIONS(2652), 1, anon_sym_LPAREN2, - ACTIONS(2527), 1, + ACTIONS(2654), 1, sym__unquoted_pattern, - STATE(2688), 1, + STATE(2814), 1, sym_comment, - ACTIONS(2523), 13, + ACTIONS(2650), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209996,18 +214637,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [83895] = 6, + [88380] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5450), 1, + ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5488), 1, - sym__newline, - STATE(2689), 1, - sym_comment, - STATE(2724), 1, + ACTIONS(5542), 1, + anon_sym_xor2, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(5491), 13, + STATE(2815), 1, + sym_comment, + ACTIONS(5655), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210019,14 +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, - [83926] = 3, - ACTIONS(3), 1, + [88411] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2690), 1, + ACTIONS(1030), 1, + sym__space, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(2816), 1, sym_comment, - ACTIONS(5302), 16, + ACTIONS(994), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210040,17 +214687,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [83951] = 4, - ACTIONS(3), 1, + [88442] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2691), 1, + STATE(2817), 1, sym_comment, - ACTIONS(5493), 15, + ACTIONS(1582), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1580), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210062,16 +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, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [83978] = 3, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [88469] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2692), 1, + ACTIONS(5657), 1, + anon_sym_DOT_DOT2, + STATE(2818), 1, sym_comment, - ACTIONS(5495), 16, + ACTIONS(2102), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5659), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2104), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210083,17 +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, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [84003] = 3, + [88500] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2693), 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(5497), 16, + ACTIONS(5354), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210105,19 +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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [84028] = 4, - ACTIONS(3), 1, + [88533] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5499), 1, - anon_sym_and2, - STATE(2694), 1, + ACTIONS(5661), 1, + anon_sym_DOT_DOT2, + STATE(2820), 1, sym_comment, - ACTIONS(5495), 15, + 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, @@ -210129,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, - anon_sym_xor2, - anon_sym_or2, - [84055] = 5, - ACTIONS(3), 1, + [88564] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_and2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2695), 1, + ACTIONS(5665), 1, + anon_sym_DOT_DOT2, + STATE(2821), 1, sym_comment, - ACTIONS(5501), 14, + ACTIONS(2118), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5667), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2120), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210154,17 +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, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [84084] = 4, + [88595] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5426), 1, - anon_sym_and2, - STATE(2696), 1, + ACTIONS(1820), 1, + sym__unquoted_pattern, + STATE(2822), 1, sym_comment, - ACTIONS(5497), 15, + ACTIONS(886), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210176,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, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [84111] = 5, + [88622] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5499), 1, - anon_sym_and2, - ACTIONS(5505), 1, - anon_sym_xor2, - STATE(2697), 1, + STATE(2823), 1, sym_comment, - ACTIONS(5495), 14, + ACTIONS(5669), 16, + anon_sym_EQ, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210201,19 +214853,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_or2, - [84140] = 5, + [88647] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5426), 1, - anon_sym_and2, - ACTIONS(5428), 1, - anon_sym_xor2, - STATE(2698), 1, + ACTIONS(5671), 1, + anon_sym_EQ, + ACTIONS(5675), 1, + anon_sym_COLON, + STATE(2824), 1, sym_comment, - ACTIONS(5497), 14, + STATE(3304), 1, + sym_param_type, + STATE(4776), 1, + aux_sym__repeat_newline, + ACTIONS(5673), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210225,15 +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_RBRACE, - anon_sym_or2, - [84169] = 3, + [88680] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2699), 1, + STATE(2825), 1, sym_comment, - ACTIONS(5507), 16, + ACTIONS(5677), 16, + anon_sym_EQ, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210245,25 +214901,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [84194] = 7, + [88705] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(5450), 1, + ACTIONS(5605), 1, anon_sym_and2, - ACTIONS(5459), 1, + ACTIONS(5609), 1, anon_sym_xor2, - STATE(2700), 1, + ACTIONS(5681), 1, + anon_sym_or2, + STATE(2826), 1, sym_comment, - STATE(2818), 1, - aux_sym__repeat_newline, - ACTIONS(5509), 12, + ACTIONS(5679), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210275,13 +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_or2, - [84227] = 3, + anon_sym_RBRACE, + [88736] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2701), 1, + ACTIONS(5607), 1, + anon_sym_and2, + ACTIONS(5611), 1, + anon_sym_xor2, + ACTIONS(5685), 1, + anon_sym_or2, + STATE(2827), 1, sym_comment, - ACTIONS(5511), 16, + ACTIONS(5683), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210295,23 +214954,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, - [84252] = 7, + [88767] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(5443), 1, - anon_sym_and2, - ACTIONS(5465), 1, - anon_sym_xor2, - STATE(2702), 1, + STATE(2828), 1, sym_comment, - STATE(2837), 1, - aux_sym__repeat_newline, - ACTIONS(5441), 12, + ACTIONS(4758), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210323,15 +214972,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [84285] = 4, + [88792] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5499), 1, - anon_sym_and2, - STATE(2703), 1, + STATE(2829), 1, sym_comment, - ACTIONS(5507), 15, + ACTIONS(5225), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210345,16 +214995,15 @@ 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, - [84312] = 4, + [88817] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5426), 1, - anon_sym_and2, - STATE(2704), 1, + STATE(2830), 1, sym_comment, - ACTIONS(5511), 15, + ACTIONS(5603), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210368,100 +215017,186 @@ 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, - [84339] = 9, + [88842] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5515), 1, + 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, - ACTIONS(5518), 1, + sym_identifier, sym__newline, - ACTIONS(5521), 1, + anon_sym_PIPE, anon_sym_COLON, - ACTIONS(5524), 1, + 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, - STATE(4244), 1, - aux_sym__repeat_newline, - STATE(2705), 2, + ACTIONS(5223), 1, + anon_sym_DOT2, + STATE(2622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2832), 1, sym_comment, - aux_sym_parameter_repeat1, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5513), 8, + 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, - [84376] = 5, + [88912] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5499), 1, - anon_sym_and2, - ACTIONS(5505), 1, - anon_sym_xor2, - STATE(2706), 1, + 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, - ACTIONS(5507), 14, + STATE(2871), 1, + sym_path, + STATE(2990), 1, + sym_cell_path, + ACTIONS(1912), 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, - anon_sym_or2, - [84405] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [88947] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5426), 1, - anon_sym_and2, - ACTIONS(5428), 1, - anon_sym_xor2, - STATE(2707), 1, + 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, - ACTIONS(5511), 14, + STATE(2871), 1, + sym_path, + STATE(3029), 1, + sym_cell_path, + ACTIONS(1896), 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, - anon_sym_or2, - [84434] = 8, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [88982] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(1902), 1, + anon_sym_DASH2, + ACTIONS(5223), 1, + anon_sym_DOT2, + STATE(2622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2835), 1, + sym_comment, + STATE(2871), 1, + sym_path, + STATE(2914), 1, + sym_cell_path, + ACTIONS(1900), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [89017] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1864), 1, + anon_sym_DASH2, + ACTIONS(5223), 1, + anon_sym_DOT2, + STATE(2622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2836), 1, + sym_comment, + STATE(2871), 1, + sym_path, + STATE(2925), 1, + sym_cell_path, + ACTIONS(1862), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(5450), 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(5459), 1, + ACTIONS(5540), 1, anon_sym_xor2, - ACTIONS(5528), 1, + ACTIONS(5689), 1, anon_sym_or2, - STATE(2708), 1, - sym_comment, - STATE(2792), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(5526), 11, + STATE(2837), 1, + sym_comment, + ACTIONS(5687), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210473,22 +215208,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [84469] = 8, + [89085] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(5443), 1, + ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5465), 1, + ACTIONS(5542), 1, anon_sym_xor2, - ACTIONS(5532), 1, + ACTIONS(5693), 1, anon_sym_or2, - STATE(2709), 1, - sym_comment, - STATE(2824), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(5530), 11, + STATE(2838), 1, + sym_comment, + ACTIONS(5691), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210500,14 +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, - [84504] = 4, + [89118] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2710), 1, + STATE(2839), 1, sym_comment, - STATE(2835), 1, + STATE(2865), 1, aux_sym__repeat_newline, - ACTIONS(5534), 15, + ACTIONS(5695), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210523,45 +215257,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [84531] = 6, + [89145] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5443), 1, - anon_sym_and2, ACTIONS(5536), 1, - sym__newline, - STATE(2711), 1, - sym_comment, - STATE(2730), 1, - aux_sym__repeat_newline, - ACTIONS(5539), 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_and2, + ACTIONS(5540), 1, anon_sym_xor2, + ACTIONS(5689), 1, anon_sym_or2, - [84562] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5541), 1, - anon_sym_DOT_DOT2, - STATE(2712), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(2840), 1, sym_comment, - ACTIONS(1716), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5543), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1629), 11, + ACTIONS(5697), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210573,18 +215282,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, - [84593] = 6, + anon_sym_RPAREN, + [89178] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5469), 1, - anon_sym_and2, - ACTIONS(5547), 1, - anon_sym_xor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2713), 1, + STATE(2841), 1, sym_comment, - ACTIONS(5545), 13, + STATE(2866), 1, + aux_sym__repeat_newline, + ACTIONS(5699), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210597,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_or2, - [84624] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5503), 1, anon_sym_and2, - ACTIONS(5551), 1, anon_sym_xor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2714), 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(5549), 13, + STATE(5171), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2190), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210622,18 +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, - [84655] = 5, + anon_sym_RBRACE, + [89236] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5469), 1, + ACTIONS(5526), 1, anon_sym_and2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2715), 1, - sym_comment, - ACTIONS(5545), 14, + 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, @@ -210647,17 +215356,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [84684] = 5, + [89267] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5503), 1, + ACTIONS(5558), 1, anon_sym_and2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2716), 1, - sym_comment, - ACTIONS(5549), 14, + 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, @@ -210671,20 +215381,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [84713] = 6, + [89298] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5553), 1, - anon_sym_DOT_DOT2, - STATE(2717), 1, - sym_comment, - ACTIONS(2152), 2, - ts_builtin_sym_end, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(2178), 1, sym__space, - ACTIONS(5555), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 11, + STATE(2845), 1, + sym_comment, + STATE(5171), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2180), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210696,23 +215404,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, - [84744] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [89329] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5477), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(5482), 1, - anon_sym_COLON, - ACTIONS(5557), 1, - anon_sym_EQ, - STATE(2718), 1, + ACTIONS(5526), 1, + anon_sym_and2, + ACTIONS(5560), 1, + anon_sym_xor2, + STATE(2846), 1, sym_comment, - STATE(4634), 1, + STATE(2895), 1, aux_sym__repeat_newline, - STATE(4878), 1, - sym_param_type, - ACTIONS(5480), 11, - ts_builtin_sym_end, + ACTIONS(5695), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210723,16 +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, - [84779] = 4, + anon_sym_RPAREN, + anon_sym_or2, + [89362] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1828), 1, - sym__unquoted_pattern, - STATE(2719), 1, - sym_comment, - ACTIONS(884), 15, - ts_builtin_sym_end, + ACTIONS(2907), 1, sym__newline, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5562), 1, + anon_sym_xor2, + STATE(2815), 1, + aux_sym__repeat_newline, + STATE(2847), 1, + sym_comment, + ACTIONS(5699), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210743,17 +215456,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_RPAREN, anon_sym_or2, - [84806] = 4, + [89395] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, + STATE(2766), 1, aux_sym__repeat_newline, - STATE(2720), 1, + STATE(2848), 1, sym_comment, - ACTIONS(5559), 15, + ACTIONS(5707), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210769,14 +215481,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [84833] = 4, + [89422] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, + STATE(2767), 1, aux_sym__repeat_newline, - STATE(2721), 1, + STATE(2849), 1, sym_comment, - ACTIONS(5561), 15, + ACTIONS(5709), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210792,17 +215504,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [84860] = 5, + [89449] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5469), 1, + ACTIONS(5526), 1, anon_sym_and2, - STATE(507), 1, + ACTIONS(5711), 1, + sym__newline, + STATE(2772), 1, aux_sym__repeat_newline, - STATE(2722), 1, + STATE(2850), 1, sym_comment, - ACTIONS(5455), 14, - sym__newline, + ACTIONS(5707), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210816,18 +215529,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [84889] = 6, + [89480] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5450), 1, + ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5563), 1, + ACTIONS(5714), 1, sym__newline, - STATE(2715), 1, + STATE(2776), 1, aux_sym__repeat_newline, - STATE(2723), 1, + STATE(2851), 1, sym_comment, - ACTIONS(5566), 13, + ACTIONS(5709), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210841,17 +215554,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [84920] = 5, + [89511] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5469), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(5526), 1, anon_sym_and2, - STATE(507), 1, + ACTIONS(5560), 1, + anon_sym_xor2, + STATE(2791), 1, aux_sym__repeat_newline, - STATE(2724), 1, + STATE(2852), 1, sym_comment, - ACTIONS(5559), 14, - sym__newline, + ACTIONS(5707), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210863,46 +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_xor2, anon_sym_or2, - [84949] = 4, + [89544] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2725), 1, - sym_comment, - ACTIONS(1533), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1535), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(2907), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [84976] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5568), 1, - anon_sym_DOT_DOT2, - STATE(2726), 1, + ACTIONS(5558), 1, + anon_sym_and2, + ACTIONS(5562), 1, + anon_sym_xor2, + STATE(2793), 1, + aux_sym__repeat_newline, + STATE(2853), 1, sym_comment, - ACTIONS(2108), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5570), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2110), 11, - sym__newline, + ACTIONS(5709), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210913,20 +215604,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, - [85007] = 6, + anon_sym_RPAREN, + anon_sym_or2, + [89577] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5572), 1, - anon_sym_DOT_DOT2, - STATE(2727), 1, - sym_comment, - ACTIONS(2116), 2, - ts_builtin_sym_end, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(2130), 1, sym__space, - ACTIONS(5574), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2118), 11, + STATE(2854), 1, + sym_comment, + STATE(5171), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2132), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210938,20 +215629,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, - [85038] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [89608] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5576), 1, - anon_sym_DOT_DOT2, - STATE(2728), 1, - sym_comment, - ACTIONS(2124), 2, - ts_builtin_sym_end, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(2184), 1, sym__space, - ACTIONS(5578), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2126), 11, + STATE(2855), 1, + sym_comment, + STATE(5171), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2186), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210963,16 +215654,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, - [85069] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [89639] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_and2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2729), 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, + anon_sym_PIPE, + 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(5461), 14, + ACTIONS(5332), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210985,18 +215701,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85098] = 5, + [89699] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_and2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2730), 1, + STATE(2858), 1, sym_comment, - ACTIONS(5561), 14, + ACTIONS(5332), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211009,20 +215723,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85127] = 6, + [89724] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5469), 1, + ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5547), 1, + ACTIONS(5542), 1, anon_sym_xor2, - STATE(507), 1, + ACTIONS(5693), 1, + anon_sym_or2, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2731), 1, + STATE(2859), 1, sym_comment, - ACTIONS(5559), 13, + ACTIONS(5719), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211035,45 +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_or2, - [85158] = 7, + [89757] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(5723), 1, + anon_sym_EQ, + ACTIONS(5726), 1, sym__newline, - ACTIONS(5450), 1, - anon_sym_and2, - ACTIONS(5459), 1, - anon_sym_xor2, - STATE(2731), 1, + ACTIONS(5729), 1, + anon_sym_COLON, + ACTIONS(5732), 1, + anon_sym_DASH2, + STATE(4242), 1, aux_sym__repeat_newline, - STATE(2732), 1, + STATE(2860), 2, sym_comment, - ACTIONS(5491), 12, - anon_sym_SEMI, + aux_sym_parameter_repeat1, + STATE(3398), 2, + sym_param_type, + sym_param_value, + ACTIONS(5721), 8, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_or2, - [85191] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [89794] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5443), 1, - anon_sym_and2, - ACTIONS(5580), 1, - sym__newline, - STATE(2716), 1, + STATE(2724), 1, aux_sym__repeat_newline, - STATE(2733), 1, + STATE(2861), 1, sym_comment, - ACTIONS(5583), 13, + ACTIONS(5734), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211085,18 +215801,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, - [85222] = 5, + [89821] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5469), 1, - anon_sym_and2, - STATE(507), 1, + STATE(2725), 1, aux_sym__repeat_newline, - STATE(2734), 1, + STATE(2862), 1, sym_comment, - ACTIONS(5471), 14, + ACTIONS(5736), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211109,20 +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_and2, anon_sym_xor2, anon_sym_or2, - [85251] = 6, + [89848] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - ACTIONS(2180), 1, - sym__space, - STATE(2735), 1, + STATE(2863), 1, sym_comment, - STATE(5092), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2182), 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, @@ -211134,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, - [85282] = 6, + anon_sym_DOT_DOT2, + [89875] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - ACTIONS(2132), 1, - sym__space, - STATE(2736), 1, + ACTIONS(5641), 1, + anon_sym_EQ2, + ACTIONS(5738), 1, + sym_short_flag_identifier, + STATE(2864), 1, sym_comment, - STATE(5092), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2134), 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, @@ -211159,46 +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, - [85313] = 7, + [89908] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(5443), 1, - anon_sym_and2, - ACTIONS(5465), 1, - anon_sym_xor2, - STATE(2737), 1, - sym_comment, - STATE(2769), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(5539), 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, - [85346] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - ACTIONS(2136), 1, - sym__space, - STATE(2738), 1, + STATE(2865), 1, sym_comment, - STATE(5092), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2138), 13, + ACTIONS(5740), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211211,15 +215896,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, - [85377] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89935] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2739), 1, + STATE(2866), 1, sym_comment, - ACTIONS(5585), 15, + ACTIONS(5655), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211235,20 +215922,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85404] = 7, - ACTIONS(3), 1, + [89962] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5469), 1, - anon_sym_and2, - ACTIONS(5547), 1, - anon_sym_xor2, - ACTIONS(5589), 1, - anon_sym_or2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2740), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(5744), 1, + sym__space, + STATE(2867), 1, sym_comment, - ACTIONS(5587), 12, + STATE(4930), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5742), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211261,18 +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, - [85437] = 6, + anon_sym_RBRACE, + [89993] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - ACTIONS(2176), 1, - sym__space, - STATE(2741), 1, + ACTIONS(5617), 1, + anon_sym_DOT_DOT2, + STATE(2868), 1, sym_comment, - STATE(5092), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2178), 13, + 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, @@ -211284,17 +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_RBRACE, - [85468] = 4, + [90024] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2742), 1, - sym_comment, - STATE(2796), 1, - aux_sym__repeat_newline, - ACTIONS(5441), 15, + ACTIONS(5526), 1, + anon_sym_and2, + ACTIONS(5746), 1, sym__newline, + STATE(2726), 1, + aux_sym__repeat_newline, + STATE(2869), 1, + sym_comment, + ACTIONS(5734), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211306,18 +215995,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, - [85495] = 4, - ACTIONS(103), 1, + [90055] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2743), 1, + ACTIONS(5519), 1, + anon_sym_QMARK2, + STATE(2870), 1, sym_comment, - ACTIONS(1746), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1748), 14, + ACTIONS(1450), 15, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211329,47 +216018,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, - sym__unquoted_pattern, - [85522] = 5, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_DOT2, + [90082] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5591), 1, - aux_sym__immediate_decimal_token5, - STATE(2744), 1, + STATE(2871), 1, sym_comment, - ACTIONS(1812), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1814), 12, + ACTIONS(1547), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1549), 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, - sym__unquoted_pattern, - [85551] = 7, + 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(5503), 1, - anon_sym_and2, - ACTIONS(5551), 1, - anon_sym_xor2, - ACTIONS(5595), 1, - anon_sym_or2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2745), 1, + ACTIONS(5749), 1, + anon_sym_EQ, + ACTIONS(5751), 1, + anon_sym_COLON, + STATE(2872), 1, sym_comment, - ACTIONS(5593), 12, + STATE(3315), 1, + sym_param_type, + STATE(4602), 1, + aux_sym__repeat_newline, + ACTIONS(5673), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211381,15 +216069,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, - [85584] = 4, - ACTIONS(3), 1, + [90142] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2746), 1, + STATE(2873), 1, sym_comment, - STATE(2840), 1, - aux_sym__repeat_newline, - ACTIONS(5566), 15, + ACTIONS(1770), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1772), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211402,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_and2, - anon_sym_xor2, - anon_sym_or2, - [85611] = 6, + anon_sym_RBRACE, + sym__unquoted_pattern, + [90169] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5450), 1, - anon_sym_and2, - ACTIONS(5597), 1, - sym__newline, - STATE(2679), 1, - aux_sym__repeat_newline, - STATE(2747), 1, + ACTIONS(5753), 1, + anon_sym_COLON, + STATE(2874), 1, sym_comment, - ACTIONS(5600), 13, + 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, @@ -211428,20 +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_xor2, - anon_sym_or2, - [85642] = 6, + anon_sym_RBRACE, + [90200] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5381), 1, - anon_sym_EQ2, - ACTIONS(5602), 1, - sym__space, - STATE(2748), 1, + STATE(2875), 1, sym_comment, - STATE(2919), 1, - aux_sym_attribute_repeat1, - ACTIONS(5377), 13, + 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, @@ -211453,18 +216139,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, - [85673] = 4, + anon_sym_DOT_DOT2, + [90227] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2749), 1, + STATE(2876), 1, sym_comment, - ACTIONS(1537), 3, + ACTIONS(1562), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1539), 13, + ACTIONS(1564), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -211478,18 +216163,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [85700] = 6, + [90254] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5469), 1, - anon_sym_and2, - ACTIONS(5547), 1, - anon_sym_xor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2750), 1, + STATE(2877), 1, sym_comment, - ACTIONS(5467), 13, + ACTIONS(5755), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211502,41 +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_or2, - [85731] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5503), 1, + anon_sym_RBRACE, anon_sym_and2, - ACTIONS(5551), 1, anon_sym_xor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2751), 1, - sym_comment, - ACTIONS(5501), 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, - [85762] = 4, + [90279] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2752), 1, + STATE(2878), 1, sym_comment, - ACTIONS(1812), 2, + ACTIONS(1852), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1814), 14, + ACTIONS(1854), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211551,16 +216208,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, sym__unquoted_pattern, - [85789] = 4, + [90306] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2753), 1, + STATE(2879), 1, sym_comment, - ACTIONS(1541), 3, + ACTIONS(1496), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1543), 13, + ACTIONS(1498), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -211573,85 +216230,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [85816] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2754), 1, - sym_comment, - ACTIONS(1900), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1902), 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, - [85843] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2666), 1, - aux_sym__repeat_newline, - STATE(2755), 1, - sym_comment, - ACTIONS(5448), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [85870] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_and2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2756), 1, - sym_comment, - ACTIONS(5604), 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, - [85899] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT_LT2, + [90333] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2681), 1, - aux_sym__repeat_newline, - STATE(2757), 1, + STATE(2880), 1, sym_comment, - ACTIONS(5606), 15, + ACTIONS(1870), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1872), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211664,21 +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, - [85926] = 6, + anon_sym_RBRACE, + sym__unquoted_pattern, + [90360] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5469), 1, - anon_sym_and2, - ACTIONS(5547), 1, - anon_sym_xor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2758), 1, + STATE(2881), 1, sym_comment, - ACTIONS(5585), 13, + ACTIONS(5757), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211691,45 +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_or2, - [85957] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5503), 1, + anon_sym_RBRACE, anon_sym_and2, - ACTIONS(5551), 1, anon_sym_xor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2759), 1, - sym_comment, - ACTIONS(5604), 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, - [85988] = 6, + [90385] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5469), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(5526), 1, anon_sym_and2, - ACTIONS(5547), 1, + ACTIONS(5560), 1, anon_sym_xor2, - STATE(507), 1, + ACTIONS(5647), 1, + anon_sym_or2, + STATE(2840), 1, aux_sym__repeat_newline, - STATE(2760), 1, + STATE(2882), 1, sym_comment, - ACTIONS(5455), 13, - sym__newline, + ACTIONS(5759), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211741,15 +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_or2, - [86019] = 4, + [90420] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2691), 1, - aux_sym__repeat_newline, - STATE(2761), 1, + ACTIONS(5675), 1, + anon_sym_COLON, + ACTIONS(5761), 1, + anon_sym_EQ, + STATE(2883), 1, sym_comment, - ACTIONS(5608), 15, + STATE(3311), 1, + sym_param_type, + STATE(4776), 1, + aux_sym__repeat_newline, + ACTIONS(5673), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211762,17 +216329,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, - [86046] = 4, - ACTIONS(3), 1, + [90453] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2720), 1, - aux_sym__repeat_newline, - STATE(2762), 1, + ACTIONS(5493), 1, + anon_sym_EQ2, + ACTIONS(5765), 1, + sym__space, + STATE(2884), 1, sym_comment, - ACTIONS(5491), 15, + STATE(3164), 1, + sym__flag_equals_value, + ACTIONS(5763), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211785,21 +216353,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, - [86073] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [90484] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5499), 1, - anon_sym_and2, - ACTIONS(5505), 1, - anon_sym_xor2, - ACTIONS(5612), 1, - anon_sym_or2, - STATE(2763), 1, + ACTIONS(4530), 1, + sym__space, + ACTIONS(5493), 1, + anon_sym_EQ2, + STATE(2885), 1, sym_comment, - ACTIONS(5610), 13, + STATE(3070), 1, + sym__flag_equals_value, + ACTIONS(4528), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211813,18 +216379,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [86104] = 6, + [90515] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5503), 1, + ACTIONS(5605), 1, anon_sym_and2, - ACTIONS(5551), 1, - anon_sym_xor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2764), 1, + STATE(2886), 1, sym_comment, - ACTIONS(5461), 13, + ACTIONS(5755), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211837,19 +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, + anon_sym_RBRACE, + anon_sym_xor2, anon_sym_or2, - [86135] = 6, + [90542] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5450), 1, + ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5614), 1, + ACTIONS(5767), 1, sym__newline, - STATE(2734), 1, + STATE(2727), 1, aux_sym__repeat_newline, - STATE(2765), 1, + STATE(2887), 1, sym_comment, - ACTIONS(5606), 13, + ACTIONS(5736), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211863,22 +216427,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [86166] = 8, + [90573] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(5450), 1, + ACTIONS(5536), 1, anon_sym_and2, - ACTIONS(5459), 1, - anon_sym_xor2, - ACTIONS(5528), 1, - anon_sym_or2, - STATE(2740), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2766), 1, + STATE(2888), 1, sym_comment, - ACTIONS(5617), 11, + ACTIONS(5740), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211890,18 +216449,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86201] = 6, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [90602] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1716), 1, - sym__space, - ACTIONS(2594), 1, - anon_sym_LPAREN2, - ACTIONS(2596), 1, - sym__unquoted_pattern, - STATE(2767), 1, + STATE(2889), 1, sym_comment, - ACTIONS(1629), 13, + ACTIONS(5332), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211915,43 +216470,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [86232] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5443), 1, anon_sym_and2, - ACTIONS(5619), 1, - sym__newline, - STATE(2768), 1, - sym_comment, - STATE(2775), 1, - aux_sym__repeat_newline, - ACTIONS(5608), 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, - [86263] = 6, + [90627] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5503), 1, + ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5551), 1, - anon_sym_xor2, - STATE(507), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2769), 1, + STATE(2890), 1, sym_comment, - ACTIONS(5561), 13, + ACTIONS(5655), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211964,23 +216495,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [86294] = 8, + [90656] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(5443), 1, + ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5465), 1, + ACTIONS(5562), 1, anon_sym_xor2, - ACTIONS(5532), 1, + ACTIONS(5651), 1, anon_sym_or2, - STATE(2745), 1, + STATE(2859), 1, aux_sym__repeat_newline, - STATE(2770), 1, + STATE(2891), 1, sym_comment, - ACTIONS(5622), 11, + ACTIONS(5770), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211992,21 +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, - [86329] = 7, - ACTIONS(103), 1, + [90691] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5624), 1, - anon_sym_EQ2, - ACTIONS(5626), 1, - sym_short_flag_identifier, - STATE(2771), 1, + ACTIONS(5607), 1, + anon_sym_and2, + STATE(2892), 1, sym_comment, - STATE(3179), 1, - sym__flag_equals_value, - ACTIONS(5389), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5387), 11, + ACTIONS(5757), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212018,20 +216543,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, - [86362] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_xor2, + anon_sym_or2, + [90718] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(5450), 1, + ACTIONS(5526), 1, anon_sym_and2, - ACTIONS(5459), 1, + ACTIONS(5560), 1, anon_sym_xor2, - STATE(2750), 1, + STATE(2728), 1, aux_sym__repeat_newline, - STATE(2772), 1, + STATE(2893), 1, sym_comment, - ACTIONS(5600), 12, + ACTIONS(5734), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212044,20 +216573,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [86395] = 7, + [90751] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(5443), 1, + ACTIONS(5558), 1, anon_sym_and2, - ACTIONS(5465), 1, + ACTIONS(5562), 1, anon_sym_xor2, - STATE(2751), 1, + STATE(2729), 1, aux_sym__repeat_newline, - STATE(2773), 1, + STATE(2894), 1, sym_comment, - ACTIONS(5534), 12, + ACTIONS(5736), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212070,14 +216599,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [86428] = 4, + [90784] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, + ACTIONS(5536), 1, + anon_sym_and2, + ACTIONS(5540), 1, + anon_sym_xor2, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2774), 1, + STATE(2895), 1, sym_comment, - ACTIONS(5628), 15, + ACTIONS(5740), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212090,19 +216623,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, - [86455] = 5, + [90815] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_and2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2775), 1, + ACTIONS(5774), 1, + anon_sym_AT2, + STATE(2896), 1, sym_comment, - ACTIONS(5493), 14, + STATE(3107), 1, + sym_param_completer, + ACTIONS(5772), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212115,22 +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_xor2, - anon_sym_or2, - [86484] = 6, - ACTIONS(103), 1, + anon_sym_RBRACE, + [90844] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5541), 1, - anon_sym_DOT_DOT2, - STATE(2776), 1, + ACTIONS(5774), 1, + anon_sym_AT2, + STATE(2897), 1, sym_comment, - ACTIONS(5395), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5543), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5393), 11, + STATE(3168), 1, + sym_param_completer, + ACTIONS(5776), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212142,18 +216670,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, - [86515] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90873] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1030), 1, - sym__space, - ACTIONS(2556), 1, - anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(2777), 1, + ACTIONS(5605), 1, + anon_sym_and2, + ACTIONS(5609), 1, + anon_sym_xor2, + STATE(2898), 1, sym_comment, - ACTIONS(1008), 13, + ACTIONS(5755), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212167,21 +216695,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [86546] = 7, - ACTIONS(103), 1, + anon_sym_or2, + [90902] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5624), 1, - anon_sym_EQ2, - ACTIONS(5630), 1, - sym_long_flag_identifier, - STATE(2778), 1, + ACTIONS(5774), 1, + anon_sym_AT2, + STATE(2899), 1, sym_comment, - STATE(3183), 1, - sym__flag_equals_value, - ACTIONS(4328), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4326), 11, + STATE(3163), 1, + sym_param_completer, + ACTIONS(5776), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212193,18 +216718,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, - [86579] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90931] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__space, - ACTIONS(2556), 1, - anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(2779), 1, + ACTIONS(5774), 1, + anon_sym_AT2, + STATE(2900), 1, sym_comment, - ACTIONS(996), 13, + STATE(3195), 1, + sym_param_completer, + ACTIONS(5778), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212218,20 +216744,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [86610] = 7, + [90960] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(5450), 1, + ACTIONS(5607), 1, anon_sym_and2, - ACTIONS(5459), 1, + ACTIONS(5611), 1, anon_sym_xor2, - STATE(2780), 1, + STATE(2901), 1, sym_comment, - STATE(2814), 1, - aux_sym__repeat_newline, - ACTIONS(5606), 12, + ACTIONS(5757), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212243,19 +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, + anon_sym_RBRACE, anon_sym_or2, - [86643] = 5, - ACTIONS(103), 1, + [90989] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5422), 1, - aux_sym__immediate_decimal_token5, - STATE(2781), 1, + ACTIONS(5675), 1, + anon_sym_COLON, + ACTIONS(5780), 1, + anon_sym_EQ, + STATE(2902), 1, sym_comment, - ACTIONS(1754), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1756), 12, + STATE(3318), 1, + sym_param_type, + STATE(4776), 1, + aux_sym__repeat_newline, + ACTIONS(5673), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212267,21 +216793,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, - [86672] = 7, + anon_sym_RPAREN, + [91022] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(5443), 1, - anon_sym_and2, - ACTIONS(5465), 1, - anon_sym_xor2, - STATE(2782), 1, + STATE(2903), 1, sym_comment, - STATE(2820), 1, - aux_sym__repeat_newline, - ACTIONS(5608), 12, + ACTIONS(5225), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212293,23 +216812,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [86705] = 8, - ACTIONS(3), 1, + [91047] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5477), 1, - sym__newline, - ACTIONS(5482), 1, - anon_sym_COLON, - ACTIONS(5632), 1, - anon_sym_EQ, - STATE(2783), 1, + ACTIONS(1022), 1, + sym__space, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(2904), 1, sym_comment, - STATE(4634), 1, - aux_sym__repeat_newline, - STATE(5242), 1, - sym_param_type, - ACTIONS(5480), 11, + ACTIONS(1020), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212321,16 +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, - [86740] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [91078] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5469), 1, - anon_sym_and2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2784), 1, + ACTIONS(5653), 1, + sym__space, + STATE(2905), 1, sym_comment, - ACTIONS(5585), 14, + STATE(2944), 1, + aux_sym_attribute_repeat1, + ACTIONS(5782), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212343,22 +216863,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, - [86769] = 7, + anon_sym_RBRACE, + [91106] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(5450), 1, - anon_sym_and2, - ACTIONS(5459), 1, - anon_sym_xor2, - STATE(2713), 1, - aux_sym__repeat_newline, - STATE(2785), 1, + STATE(2906), 1, sym_comment, - ACTIONS(5566), 12, + ACTIONS(5517), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212369,16 +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_and2, + anon_sym_xor2, anon_sym_or2, - [86802] = 4, + [91130] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2739), 1, - aux_sym__repeat_newline, - STATE(2786), 1, + STATE(2907), 1, sym_comment, - ACTIONS(5634), 15, + ACTIONS(5332), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212390,24 +216903,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86829] = 7, + [91154] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(5443), 1, - anon_sym_and2, - ACTIONS(5465), 1, - anon_sym_xor2, - STATE(2714), 1, - aux_sym__repeat_newline, - STATE(2787), 1, + STATE(2908), 1, sym_comment, - ACTIONS(5583), 12, + ACTIONS(5784), 15, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212419,19 +216925,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, - [86862] = 6, - ACTIONS(103), 1, + anon_sym_GT2, + anon_sym_RBRACE, + [91178] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1691), 1, - sym__unquoted_pattern, - ACTIONS(2560), 1, - sym__space, - ACTIONS(2564), 1, - anon_sym_LPAREN2, - STATE(2788), 1, + ACTIONS(5786), 1, + anon_sym_AT2, + STATE(2909), 1, sym_comment, - ACTIONS(2562), 13, + STATE(3351), 1, + sym_param_completer, + ACTIONS(5778), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212443,16 +216950,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, - [86893] = 4, - ACTIONS(3), 1, + [91206] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2774), 1, - aux_sym__repeat_newline, - STATE(2789), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(2910), 1, sym_comment, - ACTIONS(5509), 15, + ACTIONS(2597), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2599), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212464,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, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [86920] = 4, - ACTIONS(103), 1, + [91236] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2790), 1, + ACTIONS(5790), 1, + anon_sym_DASH2, + ACTIONS(5792), 1, + anon_sym_DOT_DOT2, + STATE(2911), 1, sym_comment, - ACTIONS(1582), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(5794), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1580), 12, + ACTIONS(5788), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [91266] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2912), 1, + sym_comment, + ACTIONS(5796), 15, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212490,15 +217016,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, - [86947] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_RBRACE, + [91290] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2791), 1, + STATE(2913), 1, sym_comment, - STATE(2832), 1, - aux_sym__repeat_newline, - ACTIONS(5636), 15, + ACTIONS(2142), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2144), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212511,23 +217040,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [86974] = 7, + anon_sym_RBRACE, + [91316] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5469), 1, - anon_sym_and2, - ACTIONS(5547), 1, - anon_sym_xor2, - ACTIONS(5589), 1, - anon_sym_or2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2792), 1, + ACTIONS(1864), 1, + anon_sym_DASH2, + STATE(2914), 1, + sym_comment, + 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, + [91342] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2915), 1, + sym_comment, + 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, + [91368] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(2916), 1, sym_comment, - ACTIONS(5638), 12, + ACTIONS(1973), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1975), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212539,15 +217109,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, - [87007] = 4, - ACTIONS(3), 1, + [91398] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2793), 1, + STATE(2917), 1, sym_comment, - ACTIONS(5640), 15, + ACTIONS(5275), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5798), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212560,17 +217130,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, - [87034] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [91424] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2794), 1, + STATE(2918), 1, sym_comment, - ACTIONS(5642), 15, + ACTIONS(1770), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1772), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212582,23 +217152,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [87061] = 6, + sym__unquoted_pattern, + [91450] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5450), 1, - anon_sym_and2, - ACTIONS(5644), 1, + ACTIONS(5800), 1, sym__newline, - STATE(2784), 1, - aux_sym__repeat_newline, - STATE(2795), 1, + STATE(882), 1, + aux_sym__pipe_separator, + STATE(2919), 1, sym_comment, - ACTIONS(5634), 13, + STATE(3546), 1, + aux_sym__repeat_newline, + ACTIONS(5803), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2325), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -212608,17 +217178,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, - [87092] = 4, - ACTIONS(3), 1, + [91482] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2796), 1, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(2920), 1, sym_comment, - ACTIONS(5647), 15, + ACTIONS(2589), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2591), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212630,47 +217202,66 @@ static const uint16_t ts_small_parse_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, - [87119] = 6, + [91512] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5443), 1, - anon_sym_and2, - ACTIONS(5649), 1, + ACTIONS(2104), 1, + anon_sym_DASH2, + ACTIONS(5805), 1, + anon_sym_DOT_DOT2, + STATE(2921), 1, + sym_comment, + ACTIONS(5807), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2102), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(2756), 1, - aux_sym__repeat_newline, - STATE(2797), 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, + [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, - ACTIONS(5636), 13, - anon_sym_SEMI, + ACTIONS(5811), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2110), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [87150] = 6, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [91572] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5371), 1, - anon_sym_EQ2, - ACTIONS(5654), 1, - sym__space, - STATE(2798), 1, + ACTIONS(5786), 1, + anon_sym_AT2, + STATE(2923), 1, sym_comment, - STATE(2952), 1, - sym__flag_equals_value, - ACTIONS(5652), 13, + STATE(3268), 1, + sym_param_completer, + ACTIONS(5776), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212682,18 +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, - [87181] = 5, + [91600] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5469), 1, - anon_sym_and2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2799), 1, + STATE(2924), 1, sym_comment, - ACTIONS(5640), 14, + ACTIONS(5813), 15, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212706,44 +217293,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_xor2, - anon_sym_or2, - [87210] = 6, + anon_sym_RBRACE, + [91624] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5656), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5658), 1, - aux_sym__immediate_decimal_token5, - STATE(2800), 1, - sym_comment, - ACTIONS(1748), 3, - sym_identifier, + ACTIONS(2622), 1, anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1746), 11, + STATE(2925), 1, + sym_comment, + ACTIONS(2620), 14, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [87241] = 5, - ACTIONS(3), 1, + [91650] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5469), 1, - anon_sym_and2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2801), 1, + ACTIONS(5255), 1, + anon_sym_EQ2, + STATE(2926), 1, sym_comment, - ACTIONS(5628), 14, + ACTIONS(5815), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212754,19 +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_xor2, - anon_sym_or2, - [87270] = 5, + anon_sym_RBRACE, + anon_sym_COLON2, + [91676] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_and2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2802), 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(5647), 14, + ACTIONS(5255), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5815), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212779,19 +217381,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, - [87299] = 4, + anon_sym_RBRACE, + [91728] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2803), 1, + STATE(2929), 1, sym_comment, - ACTIONS(1846), 4, + ACTIONS(1852), 3, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1848), 12, + anon_sym_LPAREN2, + ACTIONS(1854), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212803,18 +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_DOT_DOT2, - [87326] = 5, - ACTIONS(3), 1, + sym__unquoted_pattern, + [91754] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_and2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2804), 1, + ACTIONS(5281), 1, + anon_sym_EQ2, + STATE(2930), 1, sym_comment, - ACTIONS(5642), 14, + ACTIONS(5817), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212825,23 +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_xor2, - anon_sym_or2, - [87355] = 7, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_COLON2, + [91780] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(5450), 1, - anon_sym_and2, - ACTIONS(5459), 1, - anon_sym_xor2, - STATE(2758), 1, - aux_sym__repeat_newline, - STATE(2805), 1, + STATE(2931), 1, sym_comment, - ACTIONS(5634), 12, + 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, @@ -212852,20 +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_or2, - [87388] = 6, + sym__unquoted_pattern, + [91806] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4397), 1, + ACTIONS(5653), 1, sym__space, - ACTIONS(5371), 1, - anon_sym_EQ2, - STATE(2806), 1, + STATE(2932), 1, sym_comment, - STATE(3046), 1, - sym__flag_equals_value, - ACTIONS(4395), 13, + STATE(3020), 1, + aux_sym_attribute_repeat1, + ACTIONS(5465), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212879,20 +217471,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [87419] = 7, + [91834] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5821), 1, sym__newline, - ACTIONS(5443), 1, - anon_sym_and2, - ACTIONS(5465), 1, - anon_sym_xor2, - STATE(2759), 1, + 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(2807), 1, + 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, + 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(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(5794), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + 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, + [91968] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2936), 1, sym_comment, - ACTIONS(5636), 12, + ACTIONS(1549), 15, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212903,21 +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_or2, - [87452] = 6, + anon_sym_COLON, + anon_sym_DOT2, + [91992] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5469), 1, - anon_sym_and2, - ACTIONS(5547), 1, - anon_sym_xor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2808), 1, + ACTIONS(1914), 1, + anon_sym_DASH2, + STATE(2937), 1, + sym_comment, + ACTIONS(1912), 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, + [92018] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5275), 1, + anon_sym_EQ2, + STATE(2938), 1, sym_comment, - ACTIONS(5640), 13, + ACTIONS(5798), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212928,19 +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_RBRACE, + anon_sym_COLON2, + [92044] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5839), 1, + sym_identifier, + ACTIONS(5844), 1, + anon_sym_DOLLAR, + ACTIONS(5847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5850), 1, + anon_sym_DASH_DASH, + ACTIONS(5853), 1, + anon_sym_DASH2, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3761), 1, + sym_parameter, + STATE(2939), 2, + sym_comment, + aux_sym_parameter_parens_repeat1, + ACTIONS(5842), 3, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_or2, - [87483] = 4, - ACTIONS(103), 1, + [92090] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2809), 1, + ACTIONS(5786), 1, + anon_sym_AT2, + STATE(2940), 1, sym_comment, - ACTIONS(1850), 4, + STATE(3263), 1, + sym_param_completer, + ACTIONS(5776), 13, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1852), 12, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212952,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_DOT_DOT2, - [87510] = 6, - ACTIONS(3), 1, + [92118] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_and2, - ACTIONS(5551), 1, - anon_sym_xor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2810), 1, + ACTIONS(2652), 1, + anon_sym_LPAREN2, + ACTIONS(2654), 1, + sym__unquoted_pattern, + STATE(2941), 1, sym_comment, - ACTIONS(5642), 13, + ACTIONS(2648), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2650), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212976,16 +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_or2, - [87541] = 4, - ACTIONS(3), 1, + [92148] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2793), 1, - aux_sym__repeat_newline, - STATE(2811), 1, + ACTIONS(5641), 1, + anon_sym_EQ2, + STATE(2942), 1, sym_comment, - ACTIONS(5457), 15, + 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, @@ -212997,25 +217733,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [87568] = 6, + [92178] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5660), 1, - anon_sym_DOT, - ACTIONS(5662), 1, - aux_sym__immediate_decimal_token5, - STATE(2812), 1, + STATE(2943), 1, sym_comment, - ACTIONS(1756), 3, - sym_identifier, + ACTIONS(1580), 2, anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1754), 11, + anon_sym_DOT_DOT2, + ACTIONS(1582), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -213025,19 +217753,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [87599] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [92204] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2011), 1, + ACTIONS(5653), 1, sym__space, - ACTIONS(2015), 1, - anon_sym_LPAREN2, - STATE(2813), 1, + STATE(2944), 1, sym_comment, - ACTIONS(2013), 13, + STATE(3004), 1, + aux_sym_attribute_repeat1, + ACTIONS(5856), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213051,43 +217778,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [87630] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5469), 1, - anon_sym_and2, - ACTIONS(5547), 1, - anon_sym_xor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2814), 1, - sym_comment, - ACTIONS(5471), 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, - [87661] = 6, + [92232] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1754), 1, - sym__space, - ACTIONS(5051), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5664), 1, - anon_sym_DOT, - STATE(2815), 1, + STATE(2945), 1, sym_comment, - ACTIONS(1756), 13, + ACTIONS(1870), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1872), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213099,19 +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_RPAREN, - anon_sym_RBRACE, - [87692] = 4, + sym__unquoted_pattern, + [92258] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2816), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(2946), 1, sym_comment, - ACTIONS(1876), 4, + ACTIONS(1956), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1878), 12, + ACTIONS(1958), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213123,18 +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, - anon_sym_DOT_DOT2, - [87719] = 4, + [92288] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2817), 1, - sym_comment, - ACTIONS(1687), 4, + ACTIONS(5469), 1, + anon_sym_EQ2, + ACTIONS(5858), 1, ts_builtin_sym_end, + ACTIONS(5860), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1689), 12, + STATE(2947), 1, + sym_comment, + STATE(3064), 1, + aux_sym_attribute_repeat1, + ACTIONS(5465), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213146,44 +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, - anon_sym_DOT_DOT2, - [87746] = 6, + [92320] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5469), 1, - anon_sym_and2, - ACTIONS(5547), 1, - anon_sym_xor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2818), 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(5862), 1, + anon_sym_RBRACK, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2948), 1, sym_comment, - ACTIONS(5628), 13, + STATE(3001), 1, + aux_sym__repeat_newline, + 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, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - 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(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_or2, - [87777] = 6, + 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, - ACTIONS(2025), 1, + ACTIONS(2612), 1, anon_sym_LPAREN2, - ACTIONS(2031), 1, + ACTIONS(2614), 1, sym__unquoted_pattern, - ACTIONS(2566), 1, - sym__space, - STATE(2819), 1, + STATE(2950), 1, sym_comment, - ACTIONS(2568), 13, + ACTIONS(1713), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1614), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213195,20 +217943,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, + [92454] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2120), 1, + anon_sym_DASH2, + ACTIONS(5866), 1, + anon_sym_DOT_DOT2, + STATE(2951), 1, + sym_comment, + ACTIONS(5868), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2118), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [87808] = 6, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [92484] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_and2, - ACTIONS(5551), 1, - anon_sym_xor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2820), 1, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(2952), 1, sym_comment, - ACTIONS(5493), 13, + ACTIONS(1022), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1020), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213220,20 +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_or2, - [87839] = 6, + [92514] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2570), 1, - sym__space, - ACTIONS(2574), 1, + ACTIONS(2656), 1, anon_sym_LPAREN2, - ACTIONS(2576), 1, + ACTIONS(2658), 1, sym__unquoted_pattern, - STATE(2821), 1, + STATE(2953), 1, sym_comment, - ACTIONS(2572), 13, + ACTIONS(1030), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(994), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213245,16 +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, - anon_sym_RPAREN, - anon_sym_RBRACE, - [87870] = 4, + [92544] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2822), 1, + STATE(2954), 1, sym_comment, - ACTIONS(5467), 15, + ACTIONS(5755), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213266,16 +218033,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87897] = 3, + [92568] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2823), 1, + STATE(2955), 1, sym_comment, - ACTIONS(4694), 16, + ACTIONS(5225), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213287,27 +218054,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, - [87922] = 7, + [92592] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_and2, - ACTIONS(5551), 1, - anon_sym_xor2, - ACTIONS(5595), 1, - anon_sym_or2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2824), 1, - sym_comment, - ACTIONS(5666), 12, + ACTIONS(5870), 1, sym__newline, + 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_RBRACE, + ACTIONS(2325), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -213317,15 +218082,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, - [87955] = 4, + [92624] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2794), 1, - aux_sym__repeat_newline, - STATE(2825), 1, + ACTIONS(5875), 1, + anon_sym_COLON, + STATE(2957), 1, sym_comment, - ACTIONS(5463), 15, + 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, anon_sym_PIPE, @@ -213337,19 +218106,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [87982] = 3, + [92654] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2826), 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(5877), 1, + anon_sym_PIPE, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2958), 1, sym_comment, - ACTIONS(5668), 16, - anon_sym_EQ, - anon_sym_in, + STATE(3356), 1, + aux_sym_parameter_parens_repeat1, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3400), 1, + aux_sym__repeat_newline, + STATE(3761), 1, + sym_parameter, + [92706] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5235), 1, + anon_sym_EQ2, + STATE(2959), 1, + sym_comment, + ACTIONS(5879), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213360,25 +218161,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_RBRACE, - [88007] = 8, - ACTIONS(3), 1, + anon_sym_COLON2, + [92732] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5477), 1, - sym__newline, - ACTIONS(5482), 1, - anon_sym_COLON, - ACTIONS(5670), 1, - anon_sym_EQ, - STATE(2827), 1, + ACTIONS(5213), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(2960), 1, sym_comment, - STATE(4634), 1, - aux_sym__repeat_newline, - STATE(4922), 1, - sym_param_type, - ACTIONS(5480), 11, + ACTIONS(1744), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1746), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213389,16 +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, - anon_sym_RBRACE, - [88042] = 3, - ACTIONS(3), 1, + [92762] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2828), 1, + ACTIONS(5239), 1, + anon_sym_EQ2, + STATE(2961), 1, sym_comment, - ACTIONS(5672), 16, - anon_sym_EQ, - anon_sym_in, + ACTIONS(5883), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213409,17 +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_COLON, - anon_sym_RPAREN, anon_sym_RBRACE, - [88067] = 4, + anon_sym_COLON2, + [92788] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2829), 1, + ACTIONS(5885), 1, + anon_sym_LT, + STATE(2962), 1, sym_comment, - STATE(2841), 1, - aux_sym__repeat_newline, - ACTIONS(5583), 15, + ACTIONS(5245), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213431,18 +218230,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88094] = 4, + anon_sym_AT2, + [92814] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5473), 1, - anon_sym_QMARK2, - STATE(2830), 1, + ACTIONS(5887), 1, + anon_sym_LT, + STATE(2963), 1, sym_comment, - ACTIONS(1458), 15, + ACTIONS(5245), 14, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -213456,16 +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_COLON, - anon_sym_DOT2, - [88121] = 4, + anon_sym_AT2, + [92840] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2721), 1, - aux_sym__repeat_newline, - STATE(2831), 1, + ACTIONS(5786), 1, + anon_sym_AT2, + STATE(2964), 1, sym_comment, - ACTIONS(5539), 15, + STATE(3287), 1, + sym_param_completer, + ACTIONS(5772), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213477,18 +218276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88148] = 4, + [92868] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2832), 1, + STATE(2965), 1, sym_comment, - ACTIONS(5604), 15, + ACTIONS(5603), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213500,47 +218294,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88175] = 6, - ACTIONS(103), 1, + [92892] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2021), 1, - sym__space, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern, - STATE(2833), 1, - sym_comment, - ACTIONS(2023), 13, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5821), 1, sym__newline, - anon_sym_SEMI, + 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, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [88206] = 6, + 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, - ACTIONS(5450), 1, - anon_sym_and2, - ACTIONS(5674), 1, - sym__newline, - STATE(2799), 1, - aux_sym__repeat_newline, - STATE(2834), 1, + STATE(2967), 1, sym_comment, - ACTIONS(5457), 13, + ACTIONS(5757), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213551,17 +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, - anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88237] = 4, + [92968] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2835), 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(5501), 15, + ACTIONS(5679), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213573,22 +218377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88264] = 6, + [92998] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5450), 1, - anon_sym_and2, - ACTIONS(5677), 1, - sym__newline, - STATE(2801), 1, - aux_sym__repeat_newline, - STATE(2836), 1, + STATE(2969), 1, sym_comment, - ACTIONS(5509), 13, + ACTIONS(1564), 15, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213599,21 +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, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [88295] = 6, + anon_sym_COLON, + anon_sym_DOT2, + [93022] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5503), 1, + ACTIONS(5897), 1, anon_sym_and2, - ACTIONS(5551), 1, + ACTIONS(5899), 1, anon_sym_xor2, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2837), 1, + ACTIONS(5901), 1, + anon_sym_or2, + STATE(2970), 1, sym_comment, - ACTIONS(5647), 13, + ACTIONS(5683), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213625,41 +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_or2, - [88326] = 6, + [93052] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5443), 1, - anon_sym_and2, - ACTIONS(5680), 1, - sym__newline, - STATE(2804), 1, - aux_sym__repeat_newline, - STATE(2838), 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, - ACTIONS(5463), 13, - anon_sym_SEMI, + 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_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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, - [88357] = 4, + anon_sym_EQ_GT, + [93092] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(2822), 1, - aux_sym__repeat_newline, - STATE(2839), 1, + 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, - ACTIONS(5600), 15, + 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, @@ -213671,18 +218502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88384] = 4, + [93162] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2840), 1, + STATE(2974), 1, sym_comment, - ACTIONS(5545), 15, + ACTIONS(5225), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213694,18 +218522,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88411] = 4, + [93186] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(2841), 1, + STATE(2975), 1, sym_comment, - ACTIONS(5549), 15, + ACTIONS(5911), 15, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213718,21 +218545,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88438] = 6, + anon_sym_RBRACE, + [93210] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5443), 1, - anon_sym_and2, - ACTIONS(5683), 1, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5821), 1, sym__newline, - STATE(2695), 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(5913), 1, + anon_sym_RBRACK, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2976), 1, + sym_comment, + STATE(3319), 1, + aux_sym_parameter_parens_repeat1, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3400), 1, aux_sym__repeat_newline, - STATE(2842), 1, + 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(5534), 13, + 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_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + 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, @@ -213744,16 +218625,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [88469] = 3, + anon_sym_RBRACE, + [93316] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2843), 1, + STATE(2979), 1, sym_comment, - ACTIONS(1543), 15, + ACTIONS(5332), 15, ts_builtin_sym_end, - anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213765,43 +218644,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_DOT2, - [88493] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [93340] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2844), 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, - [88519] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - STATE(2845), 1, + STATE(2980), 1, sym_comment, - STATE(5092), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2180), 2, + ACTIONS(5225), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(2182), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213813,19 +218665,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, - [88549] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [93364] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - STATE(2846), 1, + STATE(2981), 1, sym_comment, - STATE(5092), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2132), 2, + ACTIONS(1498), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(2134), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213837,89 +218687,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, - [88579] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5686), 1, - sym_identifier, - ACTIONS(5688), 1, - sym__newline, - ACTIONS(5690), 1, - anon_sym_RBRACK, - ACTIONS(5692), 1, - anon_sym_DOLLAR, - ACTIONS(5694), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5696), 1, - anon_sym_DASH_DASH, - ACTIONS(5698), 1, - anon_sym_DASH2, - STATE(2483), 1, - sym_param_long_flag, - STATE(2599), 1, - sym__param_name, - STATE(2847), 1, - sym_comment, - STATE(2851), 1, - aux_sym__repeat_newline, - STATE(3234), 1, - aux_sym_parameter_parens_repeat1, - STATE(3334), 1, - sym_param_rest, - STATE(3336), 1, - sym_param_opt, - STATE(3377), 1, - sym_param_short_flag, - STATE(3652), 1, - sym_parameter, - [88631] = 17, + anon_sym_COLON, + anon_sym_DOT2, + [93388] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5686), 1, + ACTIONS(5819), 1, sym_identifier, - ACTIONS(5688), 1, + ACTIONS(5821), 1, sym__newline, - ACTIONS(5692), 1, + ACTIONS(5825), 1, anon_sym_DOLLAR, - ACTIONS(5694), 1, + ACTIONS(5827), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5696), 1, + ACTIONS(5829), 1, anon_sym_DASH_DASH, - ACTIONS(5698), 1, + ACTIONS(5831), 1, anon_sym_DASH2, - ACTIONS(5700), 1, + ACTIONS(5917), 1, anon_sym_RPAREN, - STATE(2483), 1, + STATE(2550), 1, sym_param_long_flag, - STATE(2599), 1, + STATE(2684), 1, sym__param_name, - STATE(2848), 1, + STATE(2982), 1, sym_comment, - STATE(2852), 1, - aux_sym__repeat_newline, - STATE(3240), 1, + STATE(3321), 1, aux_sym_parameter_parens_repeat1, - STATE(3334), 1, + STATE(3374), 1, sym_param_rest, - STATE(3336), 1, + STATE(3375), 1, sym_param_opt, - STATE(3377), 1, + STATE(3385), 1, sym_param_short_flag, - STATE(3652), 1, + STATE(3400), 1, + aux_sym__repeat_newline, + STATE(3761), 1, sym_parameter, - [88683] = 6, + [93440] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5702), 1, - anon_sym_and2, - ACTIONS(5704), 1, - anon_sym_xor2, - ACTIONS(5706), 1, - anon_sym_or2, - STATE(2849), 1, + ACTIONS(5675), 1, + anon_sym_COLON, + ACTIONS(5919), 1, + anon_sym_EQ, + STATE(2983), 1, sym_comment, - ACTIONS(5610), 12, - ts_builtin_sym_end, + STATE(3459), 1, + sym_param_type, + STATE(4776), 1, + aux_sym__repeat_newline, + ACTIONS(5673), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213931,15 +218749,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, - [88713] = 3, - ACTIONS(3), 1, + [93472] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2850), 1, + ACTIONS(5294), 1, + anon_sym_EQ2, + STATE(2984), 1, sym_comment, - ACTIONS(5708), 15, - anon_sym_else, - anon_sym_catch, + ACTIONS(5921), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213950,122 +218769,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, - [88737] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5686), 1, - sym_identifier, - ACTIONS(5688), 1, - sym__newline, - ACTIONS(5692), 1, - anon_sym_DOLLAR, - ACTIONS(5694), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5696), 1, - anon_sym_DASH_DASH, - ACTIONS(5698), 1, - anon_sym_DASH2, - ACTIONS(5710), 1, - anon_sym_RBRACK, - STATE(2483), 1, - sym_param_long_flag, - STATE(2599), 1, - sym__param_name, - STATE(2851), 1, - sym_comment, - STATE(3139), 1, - aux_sym_parameter_parens_repeat1, - STATE(3334), 1, - sym_param_rest, - STATE(3336), 1, - sym_param_opt, - STATE(3344), 1, - aux_sym__repeat_newline, - STATE(3377), 1, - sym_param_short_flag, - STATE(3652), 1, - sym_parameter, - [88789] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5686), 1, - sym_identifier, - ACTIONS(5688), 1, - sym__newline, - ACTIONS(5692), 1, - anon_sym_DOLLAR, - ACTIONS(5694), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5696), 1, - anon_sym_DASH_DASH, - ACTIONS(5698), 1, - anon_sym_DASH2, - ACTIONS(5712), 1, - anon_sym_RPAREN, - STATE(2483), 1, - sym_param_long_flag, - STATE(2599), 1, - sym__param_name, - STATE(2852), 1, - sym_comment, - STATE(3143), 1, - aux_sym_parameter_parens_repeat1, - STATE(3334), 1, - sym_param_rest, - STATE(3336), 1, - sym_param_opt, - STATE(3344), 1, - aux_sym__repeat_newline, - STATE(3377), 1, - sym_param_short_flag, - STATE(3652), 1, - sym_parameter, - [88841] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5714), 1, - sym_identifier, - ACTIONS(5719), 1, - anon_sym_DOLLAR, - ACTIONS(5722), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5725), 1, - anon_sym_DASH_DASH, - ACTIONS(5728), 1, - anon_sym_DASH2, - STATE(2483), 1, - sym_param_long_flag, - STATE(2599), 1, - sym__param_name, - STATE(3334), 1, - sym_param_rest, - STATE(3336), 1, - sym_param_opt, - STATE(3377), 1, - sym_param_short_flag, - STATE(3652), 1, - sym_parameter, - STATE(2853), 2, - sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(5717), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - [88887] = 6, + anon_sym_COLON2, + [93498] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5731), 1, + ACTIONS(5891), 1, anon_sym_and2, - ACTIONS(5733), 1, - anon_sym_xor2, - ACTIONS(5735), 1, - anon_sym_or2, - STATE(2854), 1, + STATE(2985), 1, sym_comment, - ACTIONS(5424), 12, + ACTIONS(5603), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -214078,15 +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, - [88917] = 4, + anon_sym_xor2, + anon_sym_or2, + [93524] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + 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, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93554] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2855), 1, + STATE(2987), 1, sym_comment, - ACTIONS(2148), 2, + ACTIONS(5239), 2, sym__space, - anon_sym_LPAREN2, - ACTIONS(2150), 13, + anon_sym_EQ2, + ACTIONS(5883), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214100,12 +218839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88943] = 3, + [93580] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2856), 1, + STATE(2988), 1, sym_comment, - ACTIONS(4694), 15, + ACTIONS(5332), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -214121,45 +218860,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88967] = 11, + [93604] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - ACTIONS(5737), 1, - anon_sym_DOT, - STATE(2857), 1, - sym_comment, - STATE(3631), 1, - sym__immediate_decimal, - ACTIONS(5739), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5741), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3681), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1599), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [89007] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2090), 1, - sym__space, - ACTIONS(5743), 1, - anon_sym_LBRACK2, - STATE(2858), 1, + ACTIONS(5927), 1, + anon_sym_AT2, + STATE(2989), 1, sym_comment, - ACTIONS(2092), 13, + STATE(3107), 1, + sym_param_completer, + ACTIONS(5772), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214173,14 +218883,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89035] = 4, + [93632] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1858), 1, + ACTIONS(2539), 1, anon_sym_DASH2, - STATE(2859), 1, + STATE(2990), 1, sym_comment, - ACTIONS(1856), 14, + ACTIONS(2537), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -214195,22 +218905,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89061] = 7, + [93658] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5745), 1, - sym__newline, - STATE(788), 1, - aux_sym__pipe_separator, - STATE(2860), 1, + ACTIONS(5927), 1, + anon_sym_AT2, + STATE(2991), 1, sym_comment, - STATE(3418), 1, - aux_sym__repeat_newline, - ACTIONS(5748), 3, + STATE(3168), 1, + sym_param_completer, + ACTIONS(5776), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2377), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -214220,75 +218926,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, - [89093] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5686), 1, - sym_identifier, - ACTIONS(5688), 1, - sym__newline, - ACTIONS(5692), 1, - anon_sym_DOLLAR, - ACTIONS(5694), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5696), 1, - anon_sym_DASH_DASH, - ACTIONS(5698), 1, - anon_sym_DASH2, - ACTIONS(5750), 1, anon_sym_RPAREN, - STATE(2483), 1, - sym_param_long_flag, - STATE(2599), 1, - sym__param_name, - STATE(2861), 1, - sym_comment, - STATE(3242), 1, - aux_sym_parameter_parens_repeat1, - STATE(3334), 1, - sym_param_rest, - STATE(3336), 1, - sym_param_opt, - STATE(3344), 1, - aux_sym__repeat_newline, - STATE(3377), 1, - sym_param_short_flag, - STATE(3652), 1, - sym_parameter, - [89145] = 6, + anon_sym_RBRACE, + [93686] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5754), 1, - anon_sym_DASH2, - ACTIONS(5756), 1, - anon_sym_DOT_DOT2, - STATE(2862), 1, + ACTIONS(5927), 1, + anon_sym_AT2, + STATE(2992), 1, sym_comment, - ACTIONS(5758), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5752), 11, - anon_sym_EQ, - sym_identifier, + STATE(3163), 1, + sym_param_completer, + ACTIONS(5776), 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, - [89175] = 5, - ACTIONS(103), 1, + anon_sym_RBRACE, + [93714] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5602), 1, - sym__space, - STATE(2863), 1, + ACTIONS(5927), 1, + anon_sym_AT2, + STATE(2993), 1, sym_comment, - STATE(2919), 1, - aux_sym_attribute_repeat1, - ACTIONS(5377), 13, + STATE(3195), 1, + sym_param_completer, + ACTIONS(5778), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214302,14 +218974,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89203] = 3, - ACTIONS(3), 1, + [93742] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2864), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + STATE(2994), 1, sym_comment, - ACTIONS(1539), 15, + STATE(5171), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2130), 2, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + ACTIONS(2132), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214321,64 +218998,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_COLON, - anon_sym_DOT2, - [89227] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1629), 1, - anon_sym_DASH2, - ACTIONS(5756), 1, - anon_sym_DOT_DOT2, - STATE(2865), 1, - sym_comment, - ACTIONS(5758), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1716), 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, - [89257] = 4, - ACTIONS(3), 1, + [93772] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2612), 1, - anon_sym_DASH2, - STATE(2866), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + STATE(2995), 1, sym_comment, - ACTIONS(2610), 14, - anon_sym_EQ, - sym_identifier, + 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, - 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, - [89283] = 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, + [93802] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5257), 1, - anon_sym_EQ2, - STATE(2867), 1, + STATE(2996), 1, sym_comment, - ACTIONS(5259), 14, - sym__newline, + ACTIONS(5281), 2, sym__space, + anon_sym_EQ2, + ACTIONS(5817), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214389,69 +219042,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COLON2, - [89309] = 6, + [93828] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2110), 1, - anon_sym_DASH2, - ACTIONS(5760), 1, - anon_sym_DOT_DOT2, - STATE(2868), 1, + ACTIONS(5897), 1, + anon_sym_and2, + STATE(2997), 1, sym_comment, - ACTIONS(5762), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2108), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5517), 14, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [89339] = 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_xor2, + anon_sym_or2, + [93854] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_DASH2, - ACTIONS(5764), 1, - anon_sym_DOT_DOT2, - STATE(2869), 1, - sym_comment, - ACTIONS(5766), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2116), 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, - [89369] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2525), 1, - anon_sym_LPAREN2, - ACTIONS(2527), 1, - sym__unquoted_pattern, - STATE(2870), 1, + ACTIONS(5891), 1, + anon_sym_and2, + ACTIONS(5893), 1, + anon_sym_xor2, + STATE(2998), 1, sym_comment, - ACTIONS(2521), 2, + ACTIONS(5603), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2523), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214463,19 +219088,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, - [89399] = 6, - ACTIONS(103), 1, + anon_sym_or2, + [93882] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2594), 1, - anon_sym_LPAREN2, - ACTIONS(2596), 1, - sym__unquoted_pattern, - STATE(2871), 1, + STATE(2999), 1, sym_comment, - ACTIONS(1716), 2, + ACTIONS(4758), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1629), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214487,16 +219107,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, - [89429] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [93906] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(884), 1, + ACTIONS(2088), 1, sym__space, - ACTIONS(5017), 1, - sym__unquoted_pattern, - STATE(2872), 1, + ACTIONS(5929), 1, + anon_sym_LBRACK2, + STATE(3000), 1, sym_comment, - ACTIONS(858), 13, + ACTIONS(2090), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214510,103 +219133,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89457] = 6, + [93934] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2126), 1, - anon_sym_DASH2, - ACTIONS(5768), 1, - anon_sym_DOT_DOT2, - STATE(2873), 1, - sym_comment, - ACTIONS(5770), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2124), 11, - anon_sym_EQ, + ACTIONS(5819), 1, sym_identifier, + ACTIONS(5821), 1, 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, - [89487] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2154), 1, + ACTIONS(5831), 1, anon_sym_DASH2, - ACTIONS(5772), 1, - anon_sym_DOT_DOT2, - STATE(2874), 1, - sym_comment, - ACTIONS(5774), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(5931), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [89517] = 17, + 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(5686), 1, + ACTIONS(5819), 1, sym_identifier, - ACTIONS(5688), 1, + ACTIONS(5821), 1, sym__newline, - ACTIONS(5692), 1, + ACTIONS(5825), 1, anon_sym_DOLLAR, - ACTIONS(5694), 1, + ACTIONS(5827), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5696), 1, + ACTIONS(5829), 1, anon_sym_DASH_DASH, - ACTIONS(5698), 1, + ACTIONS(5831), 1, anon_sym_DASH2, - ACTIONS(5776), 1, - anon_sym_PIPE, - STATE(2483), 1, + ACTIONS(5933), 1, + anon_sym_RPAREN, + STATE(2550), 1, sym_param_long_flag, - STATE(2599), 1, + STATE(2684), 1, sym__param_name, - STATE(2875), 1, + STATE(3002), 1, sym_comment, - STATE(2942), 1, - aux_sym__repeat_newline, - STATE(3162), 1, + STATE(3218), 1, aux_sym_parameter_parens_repeat1, - STATE(3334), 1, + STATE(3374), 1, sym_param_rest, - STATE(3336), 1, + STATE(3375), 1, sym_param_opt, - STATE(3377), 1, + STATE(3385), 1, sym_param_short_flag, - STATE(3652), 1, + STATE(3400), 1, + aux_sym__repeat_newline, + STATE(3761), 1, sym_parameter, - [89569] = 7, - ACTIONS(103), 1, + [94038] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5381), 1, - anon_sym_EQ2, - ACTIONS(5778), 1, + ACTIONS(5675), 1, + anon_sym_COLON, + ACTIONS(5935), 1, + anon_sym_EQ, + STATE(3003), 1, + sym_comment, + STATE(3500), 1, + sym_param_type, + STATE(4776), 1, + aux_sym__repeat_newline, + ACTIONS(5673), 11, sym__newline, - ACTIONS(5780), 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, + [94070] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5939), 1, sym__space, - STATE(2876), 1, + STATE(3004), 2, sym_comment, - STATE(3025), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5782), 11, + aux_sym_attribute_repeat1, + ACTIONS(5937), 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, + [94096] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + STATE(3005), 1, + sym_comment, + STATE(5171), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2188), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2190), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214617,20 +219274,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, - [89601] = 6, + [94126] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5624), 1, - anon_sym_EQ2, - STATE(2877), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + STATE(3006), 1, sym_comment, - STATE(3133), 1, - sym__flag_equals_value, - ACTIONS(4397), 2, + STATE(5171), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2178), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4395), 11, + ACTIONS(2180), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214642,19 +219298,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, - [89631] = 6, - ACTIONS(103), 1, + [94156] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2015), 1, - anon_sym_LPAREN2, - STATE(2878), 1, + ACTIONS(1614), 1, + anon_sym_DASH2, + ACTIONS(5792), 1, + anon_sym_DOT_DOT2, + 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, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [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(2011), 2, + ACTIONS(5517), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2013), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214666,20 +219344,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, - [89661] = 6, + anon_sym_or2, + [94214] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2556), 1, - anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(2879), 1, - sym_comment, - ACTIONS(1030), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1008), 11, + ACTIONS(5469), 1, + anon_sym_EQ2, + 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, @@ -214690,19 +219369,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, - [89691] = 6, + anon_sym_RPAREN, + [94246] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2556), 1, + ACTIONS(1724), 1, anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(2880), 1, + STATE(3010), 1, sym_comment, - ACTIONS(994), 2, + STATE(4807), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5744), 2, ts_builtin_sym_end, sym__space, - ACTIONS(996), 11, + ACTIONS(5742), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214714,35 +219394,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, - [89721] = 4, + [94276] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1890), 1, + ACTIONS(2156), 1, anon_sym_DASH2, - STATE(2881), 1, + ACTIONS(5948), 1, + anon_sym_DOT_DOT2, + STATE(3011), 1, sym_comment, - ACTIONS(1888), 14, + ACTIONS(5950), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2154), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_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, - [89747] = 3, - ACTIONS(3), 1, + [94306] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2882), 1, + ACTIONS(5641), 1, + anon_sym_EQ2, + STATE(3012), 1, sym_comment, - ACTIONS(5142), 15, + STATE(3341), 1, + sym__flag_equals_value, + ACTIONS(5765), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5763), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214754,38 +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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [89771] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2883), 1, - sym_comment, - ACTIONS(1689), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1687), 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, - [89797] = 3, - ACTIONS(3), 1, + [94336] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2884), 1, + STATE(3013), 1, sym_comment, - ACTIONS(5302), 15, - ts_builtin_sym_end, + ACTIONS(5294), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5921), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214797,15 +219462,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, - [89821] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94362] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2885), 1, + ACTIONS(5897), 1, + anon_sym_and2, + STATE(3014), 1, sym_comment, - ACTIONS(5142), 15, + ACTIONS(5757), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -214818,15 +219484,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, - [89845] = 3, + [94388] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2886), 1, + ACTIONS(5891), 1, + anon_sym_and2, + ACTIONS(5893), 1, + anon_sym_xor2, + STATE(3015), 1, sym_comment, - ACTIONS(5302), 15, + ACTIONS(5755), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -214839,15 +219508,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, - [89869] = 3, + [94416] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2887), 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(5142), 15, + ACTIONS(5757), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -214860,18 +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, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [89893] = 4, + [94472] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5786), 1, - sym__space, - STATE(2888), 2, + STATE(3018), 1, sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(5784), 13, + ACTIONS(2174), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2176), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214885,13 +219577,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89919] = 3, - ACTIONS(3), 1, + [94498] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2889), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(2642), 1, + anon_sym_LPAREN2, + STATE(3019), 1, sym_comment, - ACTIONS(5302), 15, + ACTIONS(2541), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2543), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214903,16 +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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [89943] = 3, - ACTIONS(3), 1, + [94528] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2890), 1, + ACTIONS(5653), 1, + sym__space, + STATE(3004), 1, + aux_sym_attribute_repeat1, + STATE(3020), 1, sym_comment, - ACTIONS(5495), 15, - ts_builtin_sym_end, + ACTIONS(5954), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214924,16 +219622,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, - [89967] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94556] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2891), 1, + ACTIONS(886), 1, + sym__space, + ACTIONS(5071), 1, + sym__unquoted_pattern, + STATE(3021), 1, sym_comment, - ACTIONS(5497), 15, - ts_builtin_sym_end, + ACTIONS(866), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214945,18 +219645,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [89991] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94584] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5702), 1, - anon_sym_and2, - STATE(2892), 1, + ACTIONS(5587), 1, + aux_sym__immediate_decimal_token5, + STATE(3022), 1, sym_comment, - ACTIONS(5495), 14, - ts_builtin_sym_end, + ACTIONS(1746), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1744), 11, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [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, @@ -214968,18 +219689,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_xor2, - anon_sym_or2, - [90017] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94637] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5731), 1, - anon_sym_and2, - STATE(2893), 1, + ACTIONS(2535), 1, + anon_sym_DASH2, + STATE(3024), 1, sym_comment, - ACTIONS(5497), 14, - ts_builtin_sym_end, + 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, + [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, @@ -214990,19 +219734,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_xor2, - anon_sym_or2, - [90043] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + [94691] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5702), 1, - anon_sym_and2, - ACTIONS(5704), 1, - anon_sym_xor2, - STATE(2894), 1, + STATE(3026), 1, sym_comment, - ACTIONS(5495), 13, + ACTIONS(2174), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2176), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215014,17 +219756,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [90071] = 5, + [94716] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5731), 1, - anon_sym_and2, - ACTIONS(5733), 1, - anon_sym_xor2, - STATE(2895), 1, + ACTIONS(2242), 1, + anon_sym_DASH2, + STATE(3027), 1, + sym_comment, + 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, + [94741] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5959), 1, + anon_sym_AT2, + STATE(3028), 1, sym_comment, - ACTIONS(5497), 13, + STATE(3287), 1, + sym_param_completer, + ACTIONS(5772), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -215037,14 +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, - anon_sym_or2, - [90099] = 3, + [94768] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2896), 1, + ACTIONS(2246), 1, + anon_sym_DASH2, + STATE(3029), 1, + sym_comment, + ACTIONS(2244), 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, + [94793] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2575), 1, + anon_sym_DASH2, + STATE(3030), 1, + sym_comment, + 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, + STATE(3031), 1, sym_comment, - ACTIONS(5507), 15, + ACTIONS(5255), 14, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215056,16 +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_and2, - anon_sym_xor2, - anon_sym_or2, - [90123] = 3, - ACTIONS(3), 1, + anon_sym_LBRACE, + [94841] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2897), 1, + ACTIONS(5963), 1, + sym__space, + STATE(3032), 1, sym_comment, - ACTIONS(5511), 15, - ts_builtin_sym_end, + ACTIONS(5961), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215077,18 +219880,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, - [90147] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94866] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5702), 1, - anon_sym_and2, - STATE(2898), 1, + ACTIONS(1912), 1, + sym__space, + STATE(3033), 1, sym_comment, - ACTIONS(5507), 14, - ts_builtin_sym_end, + ACTIONS(1914), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215100,18 +219901,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_xor2, - anon_sym_or2, - [90173] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94891] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5276), 1, - anon_sym_EQ2, - STATE(2899), 1, + ACTIONS(2581), 1, + sym__space, + STATE(3034), 1, sym_comment, - ACTIONS(5278), 14, + ACTIONS(2583), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215122,21 +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, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COLON2, - [90199] = 6, - ACTIONS(103), 1, + [94916] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern, - STATE(2900), 1, + ACTIONS(5959), 1, + anon_sym_AT2, + STATE(3035), 1, sym_comment, - ACTIONS(2566), 2, + STATE(3268), 1, + sym_param_completer, + ACTIONS(5776), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2568), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215148,19 +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, - [90229] = 6, - ACTIONS(103), 1, + [94943] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern, - STATE(2901), 1, + 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(2021), 2, - ts_builtin_sym_end, + ACTIONS(1966), 11, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [94970] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2593), 1, sym__space, - ACTIONS(2023), 11, + STATE(3037), 1, + sym_comment, + ACTIONS(2595), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215172,18 +219987,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, - [90259] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94995] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5702), 1, - anon_sym_and2, - ACTIONS(5704), 1, - anon_sym_xor2, - STATE(2902), 1, - sym_comment, - ACTIONS(5507), 13, - ts_builtin_sym_end, + 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, @@ -215194,18 +220011,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [90287] = 5, + anon_sym_RPAREN, + [95024] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5731), 1, - anon_sym_and2, - ACTIONS(5733), 1, - anon_sym_xor2, - STATE(2903), 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(5511), 13, - ts_builtin_sym_end, + 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_EQ_GT, + [95061] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4682), 1, + sym__space, + STATE(3040), 1, + sym_comment, + ACTIONS(4680), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215217,20 +220058,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, - [90315] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95086] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1691), 1, - sym__unquoted_pattern, - ACTIONS(2564), 1, - anon_sym_LPAREN2, - STATE(2904), 1, + STATE(3041), 1, sym_comment, - ACTIONS(2560), 2, + ACTIONS(2142), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2562), 11, + anon_sym_LPAREN2, + ACTIONS(2144), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215242,20 +220081,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, - [90345] = 6, - ACTIONS(103), 1, + [95111] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5624), 1, - anon_sym_EQ2, - STATE(2905), 1, - sym_comment, - STATE(3125), 1, - sym__flag_equals_value, - ACTIONS(5654), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5652), 11, + ACTIONS(5979), 1, + anon_sym_catch, + ACTIONS(5981), 1, sym__newline, + STATE(3042), 1, + sym_comment, + STATE(3086), 1, + aux_sym__repeat_newline, + ACTIONS(5984), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215266,20 +220103,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, - [90375] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + [95140] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2574), 1, - anon_sym_LPAREN2, - ACTIONS(2576), 1, - sym__unquoted_pattern, - STATE(2906), 1, - sym_comment, - ACTIONS(2570), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2572), 11, + ACTIONS(5986), 1, + anon_sym_catch, + ACTIONS(5988), 1, sym__newline, + STATE(3043), 1, + sym_comment, + STATE(3088), 1, + aux_sym__repeat_newline, + ACTIONS(5991), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215290,15 +220126,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [90405] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + [95169] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2907), 1, + STATE(3044), 1, sym_comment, - ACTIONS(5263), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5265), 13, + ACTIONS(5281), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215310,17 +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, - anon_sym_RPAREN, - anon_sym_RBRACE, - [90431] = 4, + anon_sym_LBRACE, + [95192] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2908), 1, - sym_comment, - ACTIONS(5311), 2, + ACTIONS(2196), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5313), 13, + STATE(3045), 1, + sym_comment, + ACTIONS(2198), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215334,15 +220168,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90457] = 4, + [95217] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2909), 1, - sym_comment, - ACTIONS(5331), 2, + ACTIONS(5858), 1, + ts_builtin_sym_end, + ACTIONS(5860), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5333), 13, + STATE(3046), 1, + sym_comment, + STATE(3064), 1, + aux_sym_attribute_repeat1, + ACTIONS(5465), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215354,49 +220191,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [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_RBRACE, - [90483] = 13, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95275] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(856), 1, - sym_raw_string_begin, - ACTIONS(3291), 1, - anon_sym_DQUOTE, - ACTIONS(3293), 1, - anon_sym_SQUOTE, - ACTIONS(3295), 1, - anon_sym_BQUOTE, - ACTIONS(3297), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3299), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5789), 1, - aux_sym_env_var_token1, - STATE(2910), 1, + ACTIONS(2278), 1, + anon_sym_DASH2, + STATE(3048), 1, sym_comment, - STATE(3082), 1, - sym__inter_single_quotes, - STATE(3083), 1, - sym__inter_double_quotes, - STATE(4798), 2, - sym_val_string, - sym_val_interpolated, - STATE(2455), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [90527] = 4, - ACTIONS(103), 1, + 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, + [95300] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2911), 1, + ACTIONS(2278), 1, + anon_sym_DASH2, + STATE(3049), 1, sym_comment, - ACTIONS(1746), 3, - ts_builtin_sym_end, + 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, + [95325] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2240), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1748), 12, + STATE(3050), 1, + sym_comment, + ACTIONS(2242), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215408,20 +220275,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, - sym__unquoted_pattern, - [90553] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95350] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5099), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5791), 1, - anon_sym_DOT, - STATE(2912), 1, + STATE(3051), 1, sym_comment, - ACTIONS(1754), 2, + ACTIONS(5677), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(1756), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215433,39 +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, - [90583] = 5, + anon_sym_COLON, + [95373] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5662), 1, - aux_sym__immediate_decimal_token5, - STATE(2913), 1, + ACTIONS(2284), 1, + anon_sym_DASH2, + STATE(3052), 1, sym_comment, - ACTIONS(1756), 3, + 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, + [95398] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2288), 1, anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1754), 11, + STATE(3053), 1, + sym_comment, + ACTIONS(2286), 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, - [90611] = 4, - ACTIONS(103), 1, + [95423] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2914), 1, - sym_comment, - ACTIONS(5253), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5255), 13, + ACTIONS(5997), 1, + anon_sym_catch, + ACTIONS(5999), 1, sym__newline, + STATE(3043), 1, + aux_sym__repeat_newline, + STATE(3054), 1, + sym_comment, + ACTIONS(6002), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215477,16 +220362,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [90637] = 4, - ACTIONS(103), 1, + [95452] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2915), 1, + STATE(3055), 1, sym_comment, - ACTIONS(5276), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5278), 13, + ACTIONS(1912), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215500,61 +220382,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90663] = 5, - ACTIONS(103), 1, + [95475] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5602), 1, - sym__space, - STATE(2916), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(3056), 1, sym_comment, - STATE(2944), 1, - aux_sym_attribute_repeat1, - ACTIONS(5793), 13, + 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_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [90691] = 5, + anon_sym_EQ_GT, + [95512] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5795), 1, - aux_sym__immediate_decimal_token5, - STATE(2917), 1, + ACTIONS(2292), 1, + anon_sym_DASH2, + STATE(3057), 1, sym_comment, - ACTIONS(1814), 3, + 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, + [95537] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2296), 1, anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1812), 11, + STATE(3058), 1, + sym_comment, + ACTIONS(2294), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [90719] = 4, + [95562] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2918), 1, - sym_comment, - ACTIONS(5257), 2, + ACTIONS(5860), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5259), 13, + 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, @@ -215566,18 +220474,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, + [95591] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5993), 1, + anon_sym_AT2, + ACTIONS(6006), 1, + anon_sym_DASH2, + STATE(3060), 1, + sym_comment, + STATE(3480), 1, + sym_param_completer, + ACTIONS(5772), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [90745] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95620] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5602), 1, - sym__space, - STATE(2888), 1, - aux_sym_attribute_repeat1, - STATE(2919), 1, + STATE(3061), 1, sym_comment, - ACTIONS(5797), 13, + ACTIONS(5281), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5817), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215589,19 +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, - anon_sym_RBRACE, - [90773] = 4, - ACTIONS(103), 1, + [95645] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5263), 1, - anon_sym_EQ2, - STATE(2920), 1, - sym_comment, - ACTIONS(5265), 14, + ACTIONS(5800), 1, sym__newline, - sym__space, + STATE(882), 1, + aux_sym__pipe_separator, + STATE(3062), 1, + sym_comment, + STATE(3546), 1, + aux_sym__repeat_newline, + ACTIONS(5803), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2325), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -215611,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, - anon_sym_RBRACE, - anon_sym_COLON2, - [90799] = 4, - ACTIONS(103), 1, + [95676] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5311), 1, - anon_sym_EQ2, - STATE(2921), 1, + STATE(3063), 1, sym_comment, - ACTIONS(5313), 14, + ACTIONS(2537), 14, + anon_sym_EQ, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215633,18 +220560,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_COLON2, - [90825] = 4, + [95699] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2922), 1, - sym_comment, - ACTIONS(2506), 3, - ts_builtin_sym_end, + ACTIONS(5860), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(2508), 12, + ACTIONS(6008), 1, + ts_builtin_sym_end, + STATE(3064), 1, + sym_comment, + STATE(3097), 1, + aux_sym_attribute_repeat1, + ACTIONS(5954), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215656,21 +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, - sym__unquoted_pattern, - [90851] = 7, + [95728] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5381), 1, - anon_sym_EQ2, - ACTIONS(5799), 1, - ts_builtin_sym_end, - ACTIONS(5801), 1, + ACTIONS(2244), 1, sym__space, - STATE(2923), 1, + STATE(3065), 1, sym_comment, - STATE(3033), 1, - aux_sym_attribute_repeat1, - ACTIONS(5377), 11, + ACTIONS(2246), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215682,14 +220604,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, - [90883] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95753] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2924), 1, + STATE(3066), 1, sym_comment, - ACTIONS(1535), 15, + ACTIONS(5255), 3, ts_builtin_sym_end, - anon_sym_EQ, + sym__space, + anon_sym_EQ2, + ACTIONS(5815), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215701,53 +220627,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_DOT2, - [90907] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5686), 1, - sym_identifier, - ACTIONS(5688), 1, - sym__newline, - ACTIONS(5692), 1, - anon_sym_DOLLAR, - ACTIONS(5694), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5696), 1, - anon_sym_DASH_DASH, - ACTIONS(5698), 1, - anon_sym_DASH2, - ACTIONS(5803), 1, - anon_sym_RBRACK, - STATE(2483), 1, - sym_param_long_flag, - STATE(2599), 1, - sym__param_name, - STATE(2925), 1, - sym_comment, - STATE(3237), 1, - aux_sym_parameter_parens_repeat1, - STATE(3334), 1, - sym_param_rest, - STATE(3336), 1, - sym_param_opt, - STATE(3344), 1, - aux_sym__repeat_newline, - STATE(3377), 1, - sym_param_short_flag, - STATE(3652), 1, - sym_parameter, - [90959] = 4, + [95778] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5331), 1, - anon_sym_EQ2, - STATE(2926), 1, + ACTIONS(2573), 1, + sym__space, + STATE(3067), 1, sym_comment, - ACTIONS(5333), 14, + ACTIONS(2575), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215758,21 +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, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COLON2, - [90985] = 6, + [95803] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5756), 1, - anon_sym_DOT_DOT2, - ACTIONS(5807), 1, + ACTIONS(6010), 1, + anon_sym_LT, + ACTIONS(6012), 1, anon_sym_DASH2, - STATE(2927), 1, + STATE(3068), 1, sym_comment, - ACTIONS(5758), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5805), 11, + ACTIONS(5245), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -215782,93 +220667,40 @@ 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, - [91015] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5809), 1, - sym__newline, - STATE(788), 1, - aux_sym__pipe_separator, - STATE(2928), 1, - sym_comment, - STATE(3418), 1, - aux_sym__repeat_newline, - ACTIONS(5812), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2377), 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, - [91047] = 4, + [95830] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2584), 1, + ACTIONS(6012), 1, anon_sym_DASH2, - STATE(2929), 1, + ACTIONS(6014), 1, + anon_sym_LT, + STATE(3069), 1, sym_comment, - ACTIONS(2582), 14, + ACTIONS(5245), 12, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91073] = 4, - ACTIONS(3), 1, + [95857] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2930), 1, + ACTIONS(4718), 1, + sym__space, + STATE(3070), 1, sym_comment, - ACTIONS(1848), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1846), 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, - [91099] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5477), 1, + ACTIONS(4716), 13, sym__newline, - ACTIONS(5482), 1, - anon_sym_COLON, - ACTIONS(5814), 1, - anon_sym_EQ, - STATE(2931), 1, - sym_comment, - STATE(4634), 1, - aux_sym__repeat_newline, - STATE(5013), 1, - sym_param_type, - ACTIONS(5480), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215879,37 +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, - [91133] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5816), 1, - anon_sym_LBRACK2, - STATE(2932), 1, - sym_comment, - ACTIONS(2092), 2, - anon_sym_LBRACK, - anon_sym_DASH2, - ACTIONS(2090), 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, - [91161] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [95882] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2933), 1, + ACTIONS(4722), 1, + sym__space, + STATE(3071), 1, sym_comment, - ACTIONS(5818), 15, - anon_sym_else, - anon_sym_catch, + ACTIONS(4720), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215923,16 +220734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91185] = 4, + [95907] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2934), 1, - sym_comment, - ACTIONS(1812), 3, - ts_builtin_sym_end, + ACTIONS(4732), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1814), 12, + STATE(3072), 1, + sym_comment, + ACTIONS(4730), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215944,17 +220753,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, - sym__unquoted_pattern, - [91211] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95932] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2935), 1, + ACTIONS(6016), 1, + anon_sym_catch, + STATE(3073), 1, sym_comment, - ACTIONS(1900), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1902), 12, + ACTIONS(6018), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215966,20 +220774,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [91237] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95957] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - STATE(2936), 1, + ACTIONS(5160), 1, + sym__unquoted_pattern, + STATE(3074), 1, sym_comment, - STATE(4670), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5486), 2, + ACTIONS(886), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5484), 11, + ACTIONS(866), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215991,87 +220798,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, - [91267] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5686), 1, - sym_identifier, - ACTIONS(5688), 1, - sym__newline, - ACTIONS(5692), 1, - anon_sym_DOLLAR, - ACTIONS(5694), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5696), 1, - anon_sym_DASH_DASH, - ACTIONS(5698), 1, - anon_sym_DASH2, - ACTIONS(5820), 1, - anon_sym_RBRACK, - STATE(2483), 1, - sym_param_long_flag, - STATE(2599), 1, - sym__param_name, - STATE(2925), 1, - aux_sym__repeat_newline, - STATE(2937), 1, - sym_comment, - STATE(3229), 1, - aux_sym_parameter_parens_repeat1, - STATE(3334), 1, - sym_param_rest, - STATE(3336), 1, - sym_param_opt, - STATE(3377), 1, - sym_param_short_flag, - STATE(3652), 1, - sym_parameter, - [91319] = 17, + [95984] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5686), 1, - sym_identifier, - ACTIONS(5688), 1, + ACTIONS(6020), 1, sym__newline, - ACTIONS(5692), 1, - anon_sym_DOLLAR, - ACTIONS(5694), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5696), 1, - anon_sym_DASH_DASH, - ACTIONS(5698), 1, - anon_sym_DASH2, - ACTIONS(5822), 1, - anon_sym_RPAREN, - STATE(2483), 1, - sym_param_long_flag, - STATE(2599), 1, - sym__param_name, - STATE(2861), 1, - aux_sym__repeat_newline, - STATE(2938), 1, - sym_comment, - STATE(3176), 1, - aux_sym_parameter_parens_repeat1, - STATE(3334), 1, - sym_param_rest, - STATE(3336), 1, - sym_param_opt, - STATE(3377), 1, - sym_param_short_flag, - STATE(3652), 1, - sym_parameter, - [91371] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2939), 1, + STATE(791), 1, + aux_sym__pipe_separator, + STATE(3075), 1, sym_comment, - ACTIONS(2140), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2142), 13, - sym__newline, + 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, @@ -216081,22 +220822,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, - [91397] = 6, - ACTIONS(103), 1, + [96015] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - STATE(2940), 1, - sym_comment, - STATE(5092), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2136), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2138), 11, + 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_err_GT_PIPE, @@ -216107,19 +220844,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, - [91427] = 6, + anon_sym_RPAREN, + [96044] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - STATE(2941), 1, - sym_comment, - STATE(5092), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2176), 2, - ts_builtin_sym_end, + ACTIONS(2204), 1, sym__space, - ACTIONS(2178), 11, + STATE(3077), 1, + sym_comment, + ACTIONS(2206), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216131,57 +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, - [91457] = 17, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96069] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5686), 1, - sym_identifier, - ACTIONS(5688), 1, - sym__newline, - ACTIONS(5692), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1643), 1, + anon_sym_DOT, + ACTIONS(2873), 1, anon_sym_DOLLAR, - ACTIONS(5694), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5696), 1, - anon_sym_DASH_DASH, - ACTIONS(5698), 1, - anon_sym_DASH2, - ACTIONS(5824), 1, - anon_sym_PIPE, - STATE(2483), 1, - sym_param_long_flag, - STATE(2599), 1, - sym__param_name, - STATE(2942), 1, + STATE(3078), 1, sym_comment, - STATE(3230), 1, - aux_sym_parameter_parens_repeat1, - STATE(3334), 1, - sym_param_rest, - STATE(3336), 1, - sym_param_opt, - STATE(3344), 1, - aux_sym__repeat_newline, - STATE(3377), 1, - sym_param_short_flag, - STATE(3652), 1, - sym_parameter, - [91509] = 8, + STATE(3879), 1, + sym__immediate_decimal, + ACTIONS(5905), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5907), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3876), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1639), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [96106] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5477), 1, + ACTIONS(6032), 1, + anon_sym_else, + ACTIONS(6034), 1, sym__newline, - ACTIONS(5482), 1, - anon_sym_COLON, - ACTIONS(5826), 1, - anon_sym_EQ, - STATE(2943), 1, + STATE(3079), 1, sym_comment, - STATE(4634), 1, + STATE(3090), 1, aux_sym__repeat_newline, - STATE(5248), 1, - sym_param_type, - ACTIONS(5480), 10, + ACTIONS(6037), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216192,17 +220915,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, - [91543] = 5, - ACTIONS(103), 1, + anon_sym_RPAREN, + [96135] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5602), 1, - sym__space, - STATE(2888), 1, - aux_sym_attribute_repeat1, - STATE(2944), 1, - sym_comment, - ACTIONS(5828), 13, + ACTIONS(6039), 1, + anon_sym_else, + ACTIONS(6041), 1, sym__newline, + STATE(3080), 1, + sym_comment, + STATE(3111), 1, + aux_sym__repeat_newline, + ACTIONS(6044), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216214,41 +220939,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [91571] = 6, + [96164] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5756), 1, - anon_sym_DOT_DOT2, - ACTIONS(5832), 1, - anon_sym_DASH2, - STATE(2945), 1, + STATE(3081), 1, sym_comment, - ACTIONS(5758), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5830), 11, + ACTIONS(1862), 14, anon_sym_EQ, - sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91601] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [96187] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5253), 1, - anon_sym_EQ2, - STATE(2946), 1, - sym_comment, - ACTIONS(5255), 14, + ACTIONS(6046), 1, + anon_sym_else, + ACTIONS(6048), 1, sym__newline, - sym__space, + 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, @@ -216259,18 +220981,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, - [91627] = 4, + anon_sym_RPAREN, + [96216] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5731), 1, - anon_sym_and2, - STATE(2947), 1, - sym_comment, - ACTIONS(5511), 14, - ts_builtin_sym_end, + 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_err_GT_PIPE, @@ -216281,37 +221004,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [91653] = 4, + anon_sym_RPAREN, + [96245] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2948), 1, + STATE(3084), 1, sym_comment, - ACTIONS(2508), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(2506), 12, + ACTIONS(2620), 14, anon_sym_EQ, - sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [91678] = 4, + anon_sym_RBRACE, + [96268] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2124), 1, + ACTIONS(6062), 1, sym__space, - STATE(2949), 1, + STATE(3085), 1, sym_comment, - ACTIONS(2126), 13, + ACTIONS(6060), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216325,18 +221046,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91703] = 6, + [96293] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6064), 1, + anon_sym_catch, + ACTIONS(6066), 1, + sym__newline, + STATE(3086), 1, + sym_comment, + STATE(3118), 1, + aux_sym__repeat_newline, + ACTIONS(6069), 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, + [96322] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5836), 1, + ACTIONS(5993), 1, anon_sym_AT2, - ACTIONS(5838), 1, + ACTIONS(5995), 1, anon_sym_DASH2, - STATE(2950), 1, + STATE(3087), 1, sym_comment, - STATE(3311), 1, + STATE(3437), 1, sym_param_completer, - ACTIONS(5834), 11, + ACTIONS(5776), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216348,38 +221092,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91732] = 6, + [96351] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1928), 1, + ACTIONS(1968), 1, sym__newline, - ACTIONS(5840), 1, + ACTIONS(6071), 1, anon_sym_catch, - STATE(507), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2951), 1, - sym_comment, - ACTIONS(1926), 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, - [91761] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5845), 1, - sym__space, - STATE(2952), 1, + STATE(3088), 1, sym_comment, - ACTIONS(5843), 13, - sym__newline, + ACTIONS(1966), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216391,15 +221115,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, - [91786] = 4, + [96380] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2365), 1, + ACTIONS(866), 1, anon_sym_DASH2, - STATE(2953), 1, + STATE(3089), 1, sym_comment, - ACTIONS(2363), 13, + ACTIONS(886), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -216413,14 +221136,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91811] = 4, + [96405] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6074), 1, + anon_sym_else, + ACTIONS(6076), 1, + sym__newline, + STATE(3025), 1, + aux_sym__repeat_newline, + STATE(3090), 1, + sym_comment, + ACTIONS(6079), 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, + [96434] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2600), 1, + ACTIONS(1614), 1, anon_sym_DASH2, - STATE(2954), 1, + STATE(3091), 1, sym_comment, - ACTIONS(2598), 13, + ACTIONS(1713), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -216434,14 +221180,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91836] = 4, + [96459] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2604), 1, + ACTIONS(2172), 1, anon_sym_DASH2, - STATE(2955), 1, + STATE(3092), 1, sym_comment, - ACTIONS(2602), 13, + ACTIONS(2170), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -216455,39 +221201,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91861] = 4, + [96484] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2608), 1, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(6083), 1, anon_sym_DASH2, - STATE(2956), 1, + STATE(3093), 1, sym_comment, - ACTIONS(2606), 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, - [91886] = 6, + [96513] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5778), 1, - sym__newline, - ACTIONS(5780), 1, + ACTIONS(2276), 1, sym__space, - STATE(2957), 1, + STATE(3094), 1, sym_comment, - STATE(2968), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5847), 11, + ACTIONS(2278), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216499,18 +221244,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91915] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [96538] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5849), 1, - anon_sym_else, - ACTIONS(5851), 1, - sym__newline, - STATE(2958), 1, + ACTIONS(2276), 1, + sym__space, + STATE(3095), 1, sym_comment, - STATE(3089), 1, - aux_sym__repeat_newline, - ACTIONS(5854), 11, + ACTIONS(2278), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216522,15 +221265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91944] = 3, + anon_sym_RBRACE, + [96563] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2959), 1, + STATE(3096), 1, sym_comment, - ACTIONS(5708), 14, + ACTIONS(5294), 14, ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216542,14 +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, - [91967] = 4, - ACTIONS(3), 1, + anon_sym_LBRACE, + [96586] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5856), 1, - anon_sym_catch, - STATE(2960), 1, + ACTIONS(6085), 1, + ts_builtin_sym_end, + ACTIONS(6087), 1, + sym__space, + STATE(3097), 2, sym_comment, - ACTIONS(5858), 13, + aux_sym_attribute_repeat1, + ACTIONS(5937), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216561,19 +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, - anon_sym_RPAREN, - anon_sym_RBRACE, - [91992] = 5, + [96613] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5072), 1, - sym__unquoted_pattern, - STATE(2961), 1, + STATE(3098), 1, sym_comment, - ACTIONS(884), 2, + ACTIONS(5275), 3, ts_builtin_sym_end, sym__space, - ACTIONS(858), 11, + anon_sym_EQ2, + ACTIONS(5798), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216585,14 +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, - [92019] = 4, - ACTIONS(103), 1, + [96638] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2502), 1, - sym__space, - STATE(2962), 1, + ACTIONS(5959), 1, + anon_sym_AT2, + STATE(3099), 1, sym_comment, - ACTIONS(2504), 13, + STATE(3263), 1, + sym_param_completer, + ACTIONS(5776), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216604,37 +221351,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, - [92044] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2389), 1, - anon_sym_DASH2, - STATE(2963), 1, - sym_comment, - ACTIONS(2387), 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, - [92069] = 4, + [96665] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2517), 1, + ACTIONS(2664), 1, sym__space, - STATE(2964), 1, + STATE(3100), 1, sym_comment, - ACTIONS(2519), 13, + ACTIONS(2666), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216648,16 +221372,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92094] = 4, + [96690] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2965), 1, + STATE(3101), 1, sym_comment, - ACTIONS(5331), 3, + ACTIONS(5294), 3, ts_builtin_sym_end, sym__space, anon_sym_EQ2, - ACTIONS(5333), 11, + ACTIONS(5921), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216669,14 +221393,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, - [92119] = 4, + [96715] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2431), 1, + ACTIONS(2531), 1, anon_sym_DASH2, - STATE(2966), 1, + STATE(3102), 1, sym_comment, - ACTIONS(2429), 13, + ACTIONS(2529), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -216690,107 +221414,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92144] = 4, + [96740] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2588), 1, + ACTIONS(5993), 1, + anon_sym_AT2, + ACTIONS(6090), 1, anon_sym_DASH2, - STATE(2967), 1, + STATE(3103), 1, sym_comment, - ACTIONS(2586), 13, + STATE(3442), 1, + sym_param_completer, + ACTIONS(5778), 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, - [92169] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5860), 1, - sym__newline, - ACTIONS(5863), 1, - sym__space, - STATE(2968), 2, - sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5866), 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, - [92196] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2552), 1, - sym__space, - STATE(2969), 1, - sym_comment, - ACTIONS(2554), 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, - [92221] = 6, + [96769] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5126), 1, - anon_sym_LPAREN2, - ACTIONS(5870), 1, - anon_sym_DASH2, - STATE(2970), 1, + ACTIONS(5231), 1, + anon_sym_DOT, + ACTIONS(5233), 1, + aux_sym__immediate_decimal_token5, + STATE(3104), 1, sym_comment, - STATE(4904), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5868), 11, - anon_sym_EQ, + ACTIONS(1746), 2, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [92250] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5126), 1, - anon_sym_LPAREN2, - ACTIONS(5874), 1, anon_sym_DASH2, - STATE(2971), 1, - sym_comment, - STATE(4904), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5872), 11, + ACTIONS(1744), 10, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -216800,60 +221460,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92279] = 6, + [96798] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5126), 1, - anon_sym_LPAREN2, - ACTIONS(5878), 1, + ACTIONS(2634), 1, anon_sym_DASH2, - STATE(2972), 1, + STATE(3105), 1, sym_comment, - STATE(4904), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5876), 11, + 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, - [92308] = 6, + [96823] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5126), 1, - anon_sym_LPAREN2, - ACTIONS(5882), 1, - anon_sym_DASH2, - STATE(2973), 1, + STATE(3106), 1, sym_comment, - STATE(4904), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5880), 11, + ACTIONS(1582), 14, + ts_builtin_sym_end, anon_sym_EQ, - sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [92337] = 4, - ACTIONS(103), 1, + [96846] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, - sym__space, - STATE(2974), 1, + STATE(3107), 1, sym_comment, - ACTIONS(2268), 13, + ACTIONS(6092), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216867,18 +221521,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92362] = 6, + [96869] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1629), 1, - anon_sym_DASH2, - ACTIONS(2594), 1, + ACTIONS(5197), 1, anon_sym_LPAREN2, - ACTIONS(2596), 1, - sym__unquoted_pattern_in_record, - STATE(2975), 1, + ACTIONS(6096), 1, + anon_sym_DASH2, + STATE(3108), 1, sym_comment, - ACTIONS(1716), 11, + STATE(5178), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6094), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216890,14 +221544,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92391] = 4, + [96898] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2270), 1, + ACTIONS(6100), 1, sym__space, - STATE(2976), 1, + STATE(3109), 1, sym_comment, - ACTIONS(2272), 13, + ACTIONS(6098), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216911,66 +221565,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92416] = 4, + [96923] = 13, ACTIONS(103), 1, anon_sym_POUND, - STATE(2977), 1, - sym_comment, - ACTIONS(5263), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5265), 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, - [92441] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 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(1621), 1, + ACTIONS(6104), 1, anon_sym_DOT, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - STATE(2978), 1, - sym_comment, - STATE(3680), 1, - sym__immediate_decimal, - ACTIONS(5739), 2, + ACTIONS(6106), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6108), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5741), 2, + STATE(3110), 1, + sym_comment, + STATE(3752), 1, + sym__immediate_decimal, + ACTIONS(1602), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6110), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3679), 2, + STATE(4023), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1617), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [92478] = 6, + [96966] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5884), 1, - anon_sym_catch, - ACTIONS(5886), 1, + ACTIONS(1968), 1, sym__newline, - STATE(2951), 1, + ACTIONS(6112), 1, + anon_sym_else, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2979), 1, + STATE(3111), 1, sym_comment, - ACTIONS(5889), 11, + ACTIONS(1966), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216982,43 +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, - [92507] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - ACTIONS(5891), 1, - anon_sym_DOT, - STATE(2980), 1, - sym_comment, - STATE(3701), 1, - sym__immediate_decimal, - ACTIONS(5893), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5895), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3681), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1599), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [92546] = 4, + [96995] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2367), 1, + ACTIONS(5942), 1, + sym__newline, + ACTIONS(5944), 1, sym__space, - STATE(2981), 1, + STATE(3112), 1, sym_comment, - ACTIONS(2369), 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, @@ -217030,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, - [92571] = 4, + [97024] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2379), 1, + ACTIONS(6119), 1, sym__space, - STATE(2982), 1, + STATE(3113), 1, sym_comment, - ACTIONS(2381), 13, + ACTIONS(6117), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217052,14 +221662,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92596] = 4, + [97049] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2363), 1, + ACTIONS(2608), 1, sym__space, - STATE(2983), 1, + STATE(3114), 1, sym_comment, - ACTIONS(2365), 13, + ACTIONS(2610), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217073,21 +221683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92621] = 7, - ACTIONS(3), 1, + [97074] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5809), 1, + ACTIONS(5942), 1, sym__newline, - STATE(788), 1, - aux_sym__pipe_separator, - STATE(2984), 1, + ACTIONS(5944), 1, + sym__space, + STATE(3115), 1, sym_comment, - STATE(3418), 1, - aux_sym__repeat_newline, - ACTIONS(5812), 2, - ts_builtin_sym_end, + STATE(3178), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6121), 11, anon_sym_SEMI, - ACTIONS(2377), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -217097,81 +221705,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, - [92652] = 6, + anon_sym_RPAREN, + [97103] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5897), 1, - anon_sym_else, - ACTIONS(5899), 1, + ACTIONS(6123), 1, sym__newline, - STATE(2985), 1, + STATE(791), 1, + aux_sym__pipe_separator, + STATE(3116), 1, sym_comment, - STATE(2990), 1, + STATE(3546), 1, aux_sym__repeat_newline, - ACTIONS(5902), 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, - [92681] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2598), 1, - sym__space, - STATE(2986), 1, - sym_comment, - ACTIONS(2600), 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, - [92706] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2602), 1, - sym__space, - STATE(2987), 1, - sym_comment, - ACTIONS(2604), 13, - sym__newline, + ACTIONS(6126), 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_RPAREN, - anon_sym_RBRACE, - [92731] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2606), 1, - sym__space, - STATE(2988), 1, - sym_comment, - ACTIONS(2608), 13, - sym__newline, - anon_sym_SEMI, + ACTIONS(2325), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -217181,41 +221730,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [92756] = 4, - ACTIONS(103), 1, + [97134] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2610), 1, - sym__space, - STATE(2989), 1, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(5837), 1, + anon_sym_DASH2, + STATE(3117), 1, sym_comment, - ACTIONS(2612), 13, + STATE(4855), 1, + sym__expr_parenthesized_immediate, + 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_RBRACE, - [92781] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [97163] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1928), 1, + ACTIONS(1968), 1, sym__newline, - ACTIONS(5904), 1, - anon_sym_else, - STATE(507), 1, + ACTIONS(6128), 1, + anon_sym_catch, + STATE(527), 1, aux_sym__repeat_newline, - STATE(2990), 1, + STATE(3118), 1, sym_comment, - ACTIONS(1926), 11, + ACTIONS(1966), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217227,18 +221776,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [92810] = 6, + [97192] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5907), 1, + STATE(3119), 1, + sym_comment, + ACTIONS(5813), 14, + ts_builtin_sym_end, + anon_sym_else, anon_sym_catch, - ACTIONS(5909), 1, sym__newline, - STATE(2991), 1, - sym_comment, - STATE(3045), 1, - aux_sym__repeat_newline, - ACTIONS(5912), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217249,15 +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, - anon_sym_RPAREN, - [92839] = 4, + [97215] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2210), 1, + ACTIONS(2154), 1, sym__space, - STATE(2992), 1, + STATE(3120), 1, sym_comment, - ACTIONS(2212), 13, + ACTIONS(2156), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217271,38 +221817,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92864] = 7, + [97240] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5745), 1, - sym__newline, - STATE(788), 1, - aux_sym__pipe_separator, - STATE(2993), 1, + ACTIONS(2610), 1, + anon_sym_DASH2, + STATE(3121), 1, sym_comment, - STATE(3418), 1, - aux_sym__repeat_newline, - ACTIONS(5748), 2, - ts_builtin_sym_end, - anon_sym_SEMI, - ACTIONS(2377), 9, + ACTIONS(2608), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [92895] = 4, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [97265] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2230), 1, + ACTIONS(2282), 1, sym__space, - STATE(2994), 1, + STATE(3122), 1, sym_comment, - ACTIONS(2232), 13, + ACTIONS(2284), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217316,14 +221859,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92920] = 4, + [97290] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2214), 1, + ACTIONS(2286), 1, sym__space, - STATE(2995), 1, + STATE(3123), 1, sym_comment, - ACTIONS(2216), 13, + ACTIONS(2288), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217337,15 +221880,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92945] = 4, + [97315] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2387), 1, + ACTIONS(5942), 1, + sym__newline, + ACTIONS(5944), 1, sym__space, - STATE(2996), 1, + STATE(3112), 1, + aux_sym__command_parenthesized_repeat1, + STATE(3124), 1, sym_comment, - ACTIONS(2389), 13, - sym__newline, + ACTIONS(6131), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217357,36 +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, - [92970] = 4, + [97344] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2554), 1, - anon_sym_DASH2, - STATE(2997), 1, + STATE(3125), 1, sym_comment, - ACTIONS(2552), 13, + 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_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, - [92995] = 4, - ACTIONS(103), 1, + anon_sym_LPAREN2, + [97369] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2234), 1, - sym__space, - STATE(2998), 1, + STATE(3126), 1, sym_comment, - ACTIONS(2236), 13, + ACTIONS(5275), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217398,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, - [93020] = 6, + anon_sym_LBRACE, + [97392] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, + ACTIONS(1614), 1, + anon_sym_DASH2, + ACTIONS(2612), 1, anon_sym_LPAREN2, - ACTIONS(2031), 1, + ACTIONS(2614), 1, sym__unquoted_pattern_in_record, - ACTIONS(2568), 1, - anon_sym_DASH2, - STATE(2999), 1, + STATE(3127), 1, sym_comment, - ACTIONS(2566), 11, + ACTIONS(1713), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217423,18 +221967,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93049] = 6, + [97421] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2023), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1958), 1, anon_sym_DASH2, - ACTIONS(2025), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern_in_record, - STATE(3000), 1, + STATE(3128), 1, sym_comment, - ACTIONS(2021), 11, + ACTIONS(1956), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217446,94 +221990,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93078] = 6, - ACTIONS(3), 1, + [97450] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1691), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2562), 1, - anon_sym_DASH2, - ACTIONS(2564), 1, - anon_sym_LPAREN2, - STATE(3001), 1, + ACTIONS(2533), 1, + sym__space, + STATE(3129), 1, sym_comment, - ACTIONS(2560), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2535), 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, - [93107] = 13, + anon_sym_RBRACE, + [97475] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1599), 1, + ACTIONS(6135), 1, sym__space, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3279), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(5914), 1, - anon_sym_DOT, - ACTIONS(5916), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5918), 1, - aux_sym__immediate_decimal_token2, - STATE(3002), 1, + STATE(3130), 1, sym_comment, - STATE(3647), 1, - sym__immediate_decimal, - ACTIONS(1603), 2, + ACTIONS(6133), 13, sym__newline, anon_sym_SEMI, - ACTIONS(5920), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3901), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [93150] = 6, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97500] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2013), 1, - anon_sym_DASH2, - ACTIONS(2015), 1, - anon_sym_LPAREN2, - STATE(3003), 1, + ACTIONS(5860), 1, + sym__space, + ACTIONS(6137), 1, + ts_builtin_sym_end, + STATE(3097), 1, + aux_sym_attribute_repeat1, + STATE(3131), 1, sym_comment, - ACTIONS(2011), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5856), 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, - [93179] = 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, + [97529] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5922), 1, - anon_sym_else, - ACTIONS(5924), 1, - sym__newline, - STATE(2985), 1, - aux_sym__repeat_newline, - STATE(3004), 1, + ACTIONS(2537), 1, + sym__space, + STATE(3132), 1, sym_comment, - ACTIONS(5927), 11, + ACTIONS(2539), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217545,18 +222075,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [93208] = 6, + anon_sym_RBRACE, + [97554] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2523), 1, - anon_sym_DASH2, - ACTIONS(2525), 1, + ACTIONS(1977), 1, anon_sym_LPAREN2, - ACTIONS(2527), 1, + ACTIONS(1983), 1, sym__unquoted_pattern_in_record, - STATE(3005), 1, + ACTIONS(2599), 1, + anon_sym_DASH2, + STATE(3133), 1, sym_comment, - ACTIONS(2521), 11, + ACTIONS(2597), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217568,16 +222099,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93237] = 5, + [97583] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5931), 1, - anon_sym_LT, - ACTIONS(5933), 1, + ACTIONS(1975), 1, anon_sym_DASH2, - STATE(3006), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern_in_record, + STATE(3134), 1, sym_comment, - ACTIONS(5929), 12, + ACTIONS(1973), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217587,19 +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, - [93264] = 5, + [97612] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5933), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2543), 1, anon_sym_DASH2, - ACTIONS(5935), 1, - anon_sym_LT, - STATE(3007), 1, + ACTIONS(2642), 1, + anon_sym_LPAREN2, + STATE(3135), 1, sym_comment, - ACTIONS(5929), 12, + ACTIONS(2541), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217609,38 +222143,39 @@ 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, - [93291] = 4, - ACTIONS(103), 1, + [97641] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1888), 1, - sym__space, - STATE(3008), 1, + ACTIONS(2591), 1, + anon_sym_DASH2, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern_in_record, + STATE(3136), 1, sym_comment, - ACTIONS(1890), 13, + ACTIONS(2589), 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, - [93316] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [97670] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5247), 1, + ACTIONS(5473), 1, sym__space, - STATE(3009), 1, + STATE(3137), 1, sym_comment, - ACTIONS(5245), 13, + ACTIONS(5471), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217654,14 +222189,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93341] = 4, + [97695] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5939), 1, + ACTIONS(6141), 1, sym__space, - STATE(3010), 1, + STATE(3138), 1, sym_comment, - ACTIONS(5937), 13, + ACTIONS(6139), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217675,14 +222210,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93366] = 4, + [97720] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(6145), 1, sym__space, - STATE(3011), 1, + STATE(3139), 1, sym_comment, - ACTIONS(5249), 13, + ACTIONS(6143), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217696,41 +222231,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93391] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - STATE(3012), 1, - sym_comment, - STATE(3985), 1, - sym__immediate_decimal, - ACTIONS(5941), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5943), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(780), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1599), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [93428] = 4, + [97745] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2383), 1, + ACTIONS(6149), 1, sym__space, - STATE(3013), 1, + STATE(3140), 1, sym_comment, - ACTIONS(2385), 13, + ACTIONS(6147), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217744,48 +222252,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93453] = 13, + [97770] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1599), 1, - sym__entry_separator, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1786), 1, - anon_sym_DOLLAR, - ACTIONS(5945), 1, - anon_sym_LPAREN2, - ACTIONS(5947), 1, - anon_sym_DOT, - ACTIONS(5949), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5951), 1, - aux_sym__immediate_decimal_token2, - STATE(3014), 1, + ACTIONS(6153), 1, + sym__space, + STATE(3141), 1, sym_comment, - STATE(3617), 1, - sym__immediate_decimal, - ACTIONS(1603), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(5953), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3905), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [93496] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5955), 1, - anon_sym_else, - ACTIONS(5957), 1, + ACTIONS(6151), 13, sym__newline, - STATE(3015), 1, - sym_comment, - STATE(3059), 1, - aux_sym__repeat_newline, - ACTIONS(5960), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217797,14 +222272,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [93525] = 4, + anon_sym_RBRACE, + [97795] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5964), 1, + ACTIONS(6157), 1, sym__space, - STATE(3016), 1, + STATE(3142), 1, sym_comment, - ACTIONS(5962), 13, + ACTIONS(6155), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217818,14 +222294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93550] = 4, + [97820] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5968), 1, + ACTIONS(5744), 1, sym__space, - STATE(3017), 1, + STATE(3143), 1, sym_comment, - ACTIONS(5966), 13, + ACTIONS(5742), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217839,18 +222315,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93575] = 6, + [97845] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1008), 1, - anon_sym_DASH2, - ACTIONS(2556), 1, + ACTIONS(5197), 1, anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern_in_record, - STATE(3018), 1, + ACTIONS(5790), 1, + anon_sym_DASH2, + STATE(3144), 1, sym_comment, - ACTIONS(1030), 11, + STATE(4855), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5788), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217862,62 +222338,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93604] = 6, + [97874] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(996), 1, - anon_sym_DASH2, - ACTIONS(2556), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern_in_record, - STATE(3019), 1, - sym_comment, - ACTIONS(994), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(2873), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93633] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_DASH2, - STATE(3020), 1, + ACTIONS(6159), 1, + anon_sym_DOT, + STATE(3145), 1, sym_comment, - ACTIONS(2284), 13, - anon_sym_EQ, - sym_identifier, + 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_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, - [93658] = 6, + anon_sym_EQ_GT, + [97913] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5778), 1, - sym__newline, - ACTIONS(5780), 1, - sym__space, - STATE(2957), 1, - aux_sym__command_parenthesized_repeat1, - STATE(3021), 1, + STATE(3146), 1, sym_comment, - ACTIONS(5970), 11, + ACTIONS(5235), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5879), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217928,22 +222387,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, - [93687] = 7, - ACTIONS(3), 1, + [97938] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5972), 1, - sym__newline, - STATE(854), 1, - aux_sym__pipe_separator, - STATE(3022), 1, + ACTIONS(2200), 1, + sym__space, + STATE(3147), 1, sym_comment, - STATE(3418), 1, - aux_sym__repeat_newline, - ACTIONS(5975), 2, + ACTIONS(2202), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2377), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -217953,16 +222406,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, - [93718] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97963] = 4, ACTIONS(103), 1, - anon_sym_POUND, - STATE(3023), 1, - sym_comment, - ACTIONS(5257), 3, - ts_builtin_sym_end, + anon_sym_POUND, + ACTIONS(2102), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5259), 11, + STATE(3148), 1, + sym_comment, + ACTIONS(2104), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217974,17 +222427,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, - [93743] = 5, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97988] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5977), 1, - anon_sym_LBRACK2, - STATE(3024), 1, + STATE(3149), 1, sym_comment, - ACTIONS(2090), 2, + ACTIONS(5669), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(2092), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217996,18 +222448,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, - [93770] = 6, + anon_sym_COLON, + [98011] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5778), 1, - sym__newline, - ACTIONS(5780), 1, - sym__space, - STATE(2968), 1, - aux_sym__command_parenthesized_repeat1, - STATE(3025), 1, + STATE(3150), 1, sym_comment, - ACTIONS(5979), 11, + ACTIONS(5239), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5883), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218018,38 +222470,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [93799] = 4, + [98036] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2290), 1, + ACTIONS(2650), 1, anon_sym_DASH2, - STATE(3026), 1, + ACTIONS(2652), 1, + anon_sym_LPAREN2, + ACTIONS(2654), 1, + sym__unquoted_pattern_in_record, + STATE(3151), 1, sym_comment, - ACTIONS(2288), 13, + ACTIONS(2648), 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, - [93824] = 4, + [98065] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3027), 1, - sym_comment, - ACTIONS(2140), 3, - ts_builtin_sym_end, + ACTIONS(2110), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(2142), 11, + STATE(3152), 1, + sym_comment, + ACTIONS(2112), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218061,18 +222512,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, - [93849] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98090] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5801), 1, - sym__space, - ACTIONS(5981), 1, - ts_builtin_sym_end, - STATE(3028), 1, + ACTIONS(5959), 1, + anon_sym_AT2, + STATE(3153), 1, sym_comment, - STATE(3063), 1, - aux_sym_attribute_repeat1, - ACTIONS(5793), 11, + STATE(3351), 1, + sym_param_completer, + ACTIONS(5778), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218084,16 +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, - [93878] = 4, + [98117] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3029), 1, - sym_comment, - ACTIONS(5253), 3, - ts_builtin_sym_end, + ACTIONS(5416), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5255), 11, + STATE(3154), 1, + sym_comment, + ACTIONS(5414), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218105,14 +222555,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, - [93903] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98142] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3030), 1, + ACTIONS(2118), 1, + sym__space, + STATE(3155), 1, sym_comment, - ACTIONS(5668), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(2120), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218124,19 +222576,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - [93926] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98167] = 13, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5126), 1, + ACTIONS(1598), 1, + sym__space, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(3118), 1, anon_sym_LPAREN2, - ACTIONS(5832), 1, - anon_sym_DASH2, - STATE(3031), 1, + 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(4775), 1, + 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, - ACTIONS(5830), 11, + 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, @@ -218148,14 +222631,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93955] = 4, - ACTIONS(103), 1, + [98239] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(884), 1, - sym__space, - STATE(3032), 1, + STATE(3158), 1, sym_comment, - ACTIONS(858), 13, + ACTIONS(5245), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218167,20 +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, - [93980] = 6, + anon_sym_AT2, + [98262] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5801), 1, + ACTIONS(1862), 1, sym__space, - ACTIONS(5983), 1, - ts_builtin_sym_end, - STATE(3033), 1, + STATE(3159), 1, sym_comment, - STATE(3078), 1, - aux_sym_attribute_repeat1, - ACTIONS(5797), 11, + ACTIONS(1864), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218192,14 +222670,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, - [94009] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98287] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4555), 1, - sym__space, - STATE(3034), 1, + ACTIONS(994), 1, + anon_sym_DASH2, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern_in_record, + STATE(3160), 1, + sym_comment, + ACTIONS(1030), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [98316] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3161), 1, sym_comment, - ACTIONS(4553), 13, + ACTIONS(5379), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218211,18 +222714,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, - [94034] = 4, - ACTIONS(103), 1, + anon_sym_AT2, + [98339] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3035), 1, + STATE(3162), 1, sym_comment, - ACTIONS(2148), 3, + ACTIONS(5424), 14, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2150), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218234,16 +222734,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, - [94059] = 4, - ACTIONS(103), 1, + anon_sym_AT2, + [98362] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3036), 1, + STATE(3163), 1, sym_comment, - ACTIONS(5276), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5278), 11, + ACTIONS(6173), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218255,18 +222753,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, - [94084] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98385] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1928), 1, - sym__newline, - ACTIONS(5985), 1, - anon_sym_else, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3037), 1, + ACTIONS(6177), 1, + sym__space, + STATE(3164), 1, sym_comment, - ACTIONS(1926), 11, + ACTIONS(6175), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218278,33 +222775,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94113] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [98410] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2537), 1, - anon_sym_DASH2, - STATE(3038), 1, + ACTIONS(6181), 1, + sym__space, + STATE(3165), 1, sym_comment, - ACTIONS(2535), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(6179), 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, - [94138] = 3, + anon_sym_RBRACE, + [98435] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3039), 1, + STATE(3166), 1, sym_comment, - ACTIONS(5672), 14, + ACTIONS(5334), 14, ts_builtin_sym_end, anon_sym_EQ, sym__newline, @@ -218318,19 +222816,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - [94161] = 6, - ACTIONS(3), 1, + anon_sym_AT2, + [98458] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5988), 1, - anon_sym_else, - ACTIONS(5990), 1, - sym__newline, - STATE(2958), 1, - aux_sym__repeat_newline, - STATE(3040), 1, + ACTIONS(5420), 1, + sym__space, + STATE(3167), 1, sym_comment, - ACTIONS(5993), 11, + ACTIONS(5418), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218342,45 +222837,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94190] = 10, + anon_sym_RBRACE, + [98483] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1691), 1, - sym__unquoted_pattern, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - STATE(3041), 1, - sym_comment, - STATE(4083), 1, - sym__immediate_decimal, - ACTIONS(5941), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5943), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(726), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [94227] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5799), 1, - ts_builtin_sym_end, - ACTIONS(5801), 1, - sym__space, - STATE(3033), 1, - aux_sym_attribute_repeat1, - STATE(3042), 1, + STATE(3168), 1, sym_comment, - ACTIONS(5377), 11, + ACTIONS(6173), 14, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218392,15 +222856,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, - [94256] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98506] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3043), 1, + STATE(3169), 1, sym_comment, - ACTIONS(1748), 2, + ACTIONS(1772), 2, anon_sym_DASH2, sym__unquoted_pattern_in_record, - ACTIONS(1746), 12, + ACTIONS(1770), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -218413,41 +222879,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [94281] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5995), 1, - anon_sym_catch, - ACTIONS(5997), 1, - sym__newline, - STATE(2979), 1, - aux_sym__repeat_newline, - STATE(3044), 1, - sym_comment, - ACTIONS(6000), 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, - [94310] = 6, + [98531] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6002), 1, - anon_sym_catch, - ACTIONS(6004), 1, + ACTIONS(6183), 1, + anon_sym_else, + ACTIONS(6185), 1, sym__newline, - STATE(3045), 1, + STATE(3170), 1, sym_comment, - STATE(3066), 1, + STATE(3176), 1, aux_sym__repeat_newline, - ACTIONS(6007), 11, + ACTIONS(6188), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218459,14 +222902,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94339] = 4, + [98560] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4655), 1, + ACTIONS(2228), 1, sym__space, - STATE(3046), 1, + STATE(3171), 1, sym_comment, - ACTIONS(4653), 13, + ACTIONS(2230), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218480,14 +222923,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94364] = 4, + [98585] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4659), 1, + ACTIONS(2232), 1, sym__space, - STATE(3047), 1, + STATE(3172), 1, sym_comment, - ACTIONS(4657), 13, + ACTIONS(2234), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218501,14 +222944,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94389] = 4, + [98610] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4663), 1, + ACTIONS(2236), 1, sym__space, - STATE(3048), 1, + STATE(3173), 1, sym_comment, - ACTIONS(4661), 13, + ACTIONS(2238), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218522,14 +222965,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94414] = 4, + [98635] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2616), 1, + ACTIONS(2583), 1, anon_sym_DASH2, - STATE(3049), 1, + STATE(3174), 1, sym_comment, - ACTIONS(2614), 13, + ACTIONS(2581), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -218543,59 +222986,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94439] = 6, + [98660] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5836), 1, - anon_sym_AT2, - ACTIONS(6011), 1, + ACTIONS(2595), 1, anon_sym_DASH2, - STATE(3050), 1, + STATE(3175), 1, sym_comment, - STATE(3386), 1, - sym_param_completer, - ACTIONS(6009), 11, + 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, - [94468] = 4, + [98685] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3051), 1, - sym_comment, - ACTIONS(1814), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1812), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1968), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [94493] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6015), 1, - sym__space, - STATE(3052), 1, + ACTIONS(6190), 1, + anon_sym_else, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3176), 1, sym_comment, - ACTIONS(6013), 13, - sym__newline, + ACTIONS(1966), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218607,16 +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, - [94518] = 4, + [98714] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3053), 1, + STATE(3177), 1, sym_comment, - ACTIONS(1902), 2, + ACTIONS(1854), 2, anon_sym_DASH2, sym__unquoted_pattern_in_record, - ACTIONS(1900), 12, + ACTIONS(1852), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -218629,15 +223051,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [94543] = 4, + [98739] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2429), 1, + ACTIONS(6193), 1, + sym__newline, + ACTIONS(6196), 1, sym__space, - STATE(3054), 1, + STATE(3178), 2, sym_comment, - ACTIONS(2431), 13, - sym__newline, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6199), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218649,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, - [94568] = 6, - ACTIONS(3), 1, + [98766] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6017), 1, - anon_sym_else, - ACTIONS(6019), 1, - sym__newline, - STATE(3055), 1, + ACTIONS(2248), 1, + sym__space, + STATE(3179), 1, sym_comment, - STATE(3081), 1, - aux_sym__repeat_newline, - ACTIONS(6022), 11, + ACTIONS(2250), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218673,14 +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, - [94597] = 4, + anon_sym_RBRACE, + [98791] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(5925), 1, + anon_sym_DASH2, + STATE(3180), 1, + sym_comment, + 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(2586), 1, + ACTIONS(2252), 1, sym__space, - STATE(3056), 1, + STATE(3181), 1, sym_comment, - ACTIONS(2588), 13, + ACTIONS(2254), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218694,14 +223138,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94622] = 4, + [98845] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6026), 1, + ACTIONS(2256), 1, sym__space, - STATE(3057), 1, + STATE(3182), 1, sym_comment, - ACTIONS(6024), 13, + ACTIONS(2258), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218715,14 +223159,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94647] = 4, + [98870] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1716), 1, + ACTIONS(2260), 1, sym__space, - STATE(3058), 1, + STATE(3183), 1, sym_comment, - ACTIONS(1629), 13, + ACTIONS(2262), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218736,18 +223180,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94672] = 6, + [98895] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6028), 1, - anon_sym_else, - ACTIONS(6030), 1, - sym__newline, - STATE(3037), 1, - aux_sym__repeat_newline, - STATE(3059), 1, + STATE(3184), 1, sym_comment, - ACTIONS(6033), 11, + ACTIONS(5338), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218758,17 +223199,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, - [94701] = 4, + anon_sym_AT2, + [98918] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3060), 1, - sym_comment, - ACTIONS(5311), 3, - ts_builtin_sym_end, + ACTIONS(2264), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5313), 11, + STATE(3185), 1, + sym_comment, + ACTIONS(2266), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218780,14 +223219,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, - [94726] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98943] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2160), 1, + ACTIONS(2268), 1, sym__space, - STATE(3061), 1, + STATE(3186), 1, sym_comment, - ACTIONS(2162), 13, + ACTIONS(2270), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218801,14 +223242,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94751] = 4, + [98968] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3187), 1, + sym_comment, + 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_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [98993] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2272), 1, sym__space, - STATE(3062), 1, + STATE(3188), 1, sym_comment, - ACTIONS(2154), 13, + ACTIONS(2274), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218822,18 +223284,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94776] = 6, + [99018] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5801), 1, + ACTIONS(886), 1, sym__space, - ACTIONS(6035), 1, - ts_builtin_sym_end, - STATE(3063), 1, + STATE(3189), 1, sym_comment, - STATE(3078), 1, - aux_sym_attribute_repeat1, - ACTIONS(5828), 11, + ACTIONS(866), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218845,41 +223303,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, - [94805] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99043] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5126), 1, - anon_sym_LPAREN2, - ACTIONS(5807), 1, + ACTIONS(2198), 1, anon_sym_DASH2, - STATE(3064), 1, + STATE(3190), 1, sym_comment, - STATE(4775), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5805), 11, + ACTIONS(2196), 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, - [94834] = 6, + [99068] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6037), 1, - anon_sym_else, - ACTIONS(6039), 1, - sym__newline, - STATE(3055), 1, - aux_sym__repeat_newline, - STATE(3065), 1, + STATE(3191), 1, sym_comment, - ACTIONS(6042), 11, + ACTIONS(5422), 14, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218890,19 +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, - [94863] = 6, - ACTIONS(3), 1, + anon_sym_AT2, + [99091] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1928), 1, - sym__newline, - ACTIONS(6044), 1, - anon_sym_catch, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3066), 1, + ACTIONS(2170), 1, + sym__space, + STATE(3192), 1, sym_comment, - ACTIONS(1926), 11, + ACTIONS(2172), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218914,167 +223366,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94892] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(858), 1, - anon_sym_DASH2, - STATE(3067), 1, - sym_comment, - ACTIONS(884), 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, - [94917] = 6, + anon_sym_RBRACE, + [99116] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5836), 1, - anon_sym_AT2, - ACTIONS(6049), 1, - anon_sym_DASH2, - STATE(3068), 1, - sym_comment, - STATE(3297), 1, - sym_param_completer, - ACTIONS(6047), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1968), 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, - [94946] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2572), 1, - anon_sym_DASH2, - ACTIONS(2574), 1, - anon_sym_LPAREN2, - ACTIONS(2576), 1, - sym__unquoted_pattern_in_record, - STATE(3069), 1, + ACTIONS(6201), 1, + anon_sym_else, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3193), 1, sym_comment, - ACTIONS(2570), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(1966), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94975] = 4, + [99145] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2504), 1, - anon_sym_DASH2, - STATE(3070), 1, + STATE(3194), 1, sym_comment, - ACTIONS(2502), 13, + ACTIONS(5348), 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, - [95000] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5836), 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, - ACTIONS(6011), 1, - anon_sym_DASH2, - STATE(3071), 1, - sym_comment, - STATE(3375), 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, - [95029] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2268), 1, - anon_sym_DASH2, - STATE(3072), 1, - sym_comment, - ACTIONS(2266), 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, - [95054] = 4, + [99168] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1629), 1, - anon_sym_DASH2, - STATE(3073), 1, + STATE(3195), 1, sym_comment, - ACTIONS(1716), 13, + ACTIONS(6204), 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_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [95079] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2218), 1, - sym__space, - STATE(3074), 1, - sym_comment, - ACTIONS(2220), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219088,35 +223430,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95104] = 4, + [99191] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2162), 1, - anon_sym_DASH2, - STATE(3075), 1, + STATE(3196), 1, sym_comment, - ACTIONS(2160), 13, + ACTIONS(5364), 14, + ts_builtin_sym_end, 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, - [95129] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1856), 1, - sym__space, - STATE(3076), 1, - sym_comment, - ACTIONS(1858), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219128,16 +223449,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, - [95154] = 4, - ACTIONS(103), 1, + anon_sym_AT2, + [99214] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2535), 1, - sym__space, - STATE(3077), 1, + STATE(3197), 1, sym_comment, - ACTIONS(2537), 13, + ACTIONS(5377), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219149,19 +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, - anon_sym_RBRACE, - [95179] = 5, + anon_sym_AT2, + [99237] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6051), 1, - ts_builtin_sym_end, - ACTIONS(6053), 1, + ACTIONS(2529), 1, sym__space, - STATE(3078), 2, + STATE(3198), 1, sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(5784), 11, + ACTIONS(2531), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219173,14 +223489,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, - [95206] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99262] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3079), 1, + ACTIONS(2632), 1, + sym__space, + STATE(3199), 1, sym_comment, - ACTIONS(1582), 14, - ts_builtin_sym_end, - anon_sym_EQ, + ACTIONS(2634), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219192,17 +223510,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - [95229] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99287] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2284), 1, - sym__space, - STATE(3080), 1, - sym_comment, - ACTIONS(2286), 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, @@ -219212,20 +223536,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, - [95254] = 6, - ACTIONS(3), 1, + [99318] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1928), 1, - sym__newline, - ACTIONS(6056), 1, - anon_sym_else, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3081), 1, + ACTIONS(6206), 1, + anon_sym_LBRACK2, + STATE(3201), 1, sym_comment, - ACTIONS(1926), 11, + ACTIONS(2088), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2090), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219236,15 +223558,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, - [95283] = 4, + [99345] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2258), 1, + ACTIONS(2290), 1, sym__space, - STATE(3082), 1, + STATE(3202), 1, sym_comment, - ACTIONS(2260), 13, + ACTIONS(2292), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219258,14 +223579,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95308] = 4, + [99370] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2258), 1, + ACTIONS(2294), 1, sym__space, - STATE(3083), 1, + STATE(3203), 1, sym_comment, - ACTIONS(2260), 13, + ACTIONS(2296), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219279,14 +223600,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95333] = 4, + [99395] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2288), 1, + ACTIONS(2620), 1, sym__space, - STATE(3084), 1, + STATE(3204), 1, sym_comment, - ACTIONS(2290), 13, + ACTIONS(2622), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219300,35 +223621,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95358] = 4, + [99420] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2260), 1, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(6210), 1, anon_sym_DASH2, - STATE(3085), 1, + STATE(3205), 1, sym_comment, - ACTIONS(2258), 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, - [95383] = 4, + [99449] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2260), 1, + ACTIONS(2206), 1, anon_sym_DASH2, - STATE(3086), 1, + STATE(3206), 1, sym_comment, - ACTIONS(2258), 13, + ACTIONS(2204), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -219342,60 +223665,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95408] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2614), 1, - sym__space, - STATE(3087), 1, - sym_comment, - ACTIONS(2616), 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, - [95433] = 4, + [99474] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2272), 1, - anon_sym_DASH2, - STATE(3088), 1, + STATE(3207), 1, sym_comment, - ACTIONS(2270), 13, + ACTIONS(5235), 14, + ts_builtin_sym_end, 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, - [95458] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1928), 1, sym__newline, - ACTIONS(6059), 1, - anon_sym_else, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3089), 1, - sym_comment, - ACTIONS(1926), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219406,13 +223684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [95487] = 3, + anon_sym_LBRACE, + [99497] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3090), 1, + STATE(3208), 1, sym_comment, - ACTIONS(5818), 14, + ACTIONS(5911), 14, ts_builtin_sym_end, anon_sym_else, anon_sym_catch, @@ -219427,14 +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, - [95510] = 4, - ACTIONS(103), 1, + [99520] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2222), 1, - sym__space, - STATE(3091), 1, + STATE(3209), 1, sym_comment, - ACTIONS(2224), 13, + ACTIONS(5239), 14, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219446,20 +223724,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, - [95535] = 6, + anon_sym_LBRACE, + [99543] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5126), 1, + ACTIONS(5197), 1, anon_sym_LPAREN2, - ACTIONS(5754), 1, + ACTIONS(6214), 1, anon_sym_DASH2, - STATE(3092), 1, + STATE(3210), 1, sym_comment, - STATE(4775), 1, + STATE(5178), 1, sym__expr_parenthesized_immediate, - ACTIONS(5752), 11, + ACTIONS(6212), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -219471,14 +223748,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95564] = 4, + [99572] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2519), 1, + ACTIONS(2666), 1, anon_sym_DASH2, - STATE(3093), 1, + STATE(3211), 1, sym_comment, - ACTIONS(2517), 13, + ACTIONS(2664), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -219492,14 +223769,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95589] = 4, + [99597] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2226), 1, - sym__space, - STATE(3094), 1, + STATE(3212), 1, sym_comment, - ACTIONS(2228), 13, + ACTIONS(5420), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5418), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219511,23 +223789,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, - [95614] = 7, - ACTIONS(3), 1, + [99621] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6062), 1, - sym__newline, - STATE(854), 1, - aux_sym__pipe_separator, - STATE(3095), 1, + STATE(3213), 1, sym_comment, - STATE(3418), 1, - aux_sym__repeat_newline, - ACTIONS(6065), 2, + ACTIONS(2286), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2288), 11, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2377), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -219537,14 +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, - [95645] = 4, + [99645] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6069), 1, - sym__space, - STATE(3096), 1, + STATE(3214), 1, sym_comment, - ACTIONS(6067), 13, + ACTIONS(1912), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1914), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219556,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, - [95670] = 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(5395), 1, - sym__space, - STATE(3097), 1, + STATE(3216), 1, sym_comment, - ACTIONS(5393), 13, + ACTIONS(2204), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2206), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219577,16 +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, - [95695] = 4, + [99735] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6073), 1, - sym__space, - STATE(3098), 1, + STATE(3217), 1, sym_comment, - ACTIONS(6071), 13, + ACTIONS(2581), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2583), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219598,16 +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, + [99759] = 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(6224), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [95720] = 4, - ACTIONS(103), 1, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2939), 1, + aux_sym_parameter_parens_repeat1, + STATE(3218), 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, + [99805] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6077), 1, - sym__space, - STATE(3099), 1, + STATE(3219), 1, sym_comment, - ACTIONS(6075), 13, + ACTIONS(6226), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219621,14 +223948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95745] = 4, - ACTIONS(103), 1, + [99827] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6081), 1, - sym__space, - STATE(3100), 1, + STATE(3220), 1, sym_comment, - ACTIONS(6079), 13, + ACTIONS(6228), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219642,14 +223967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95770] = 4, + [99849] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6085), 1, - sym__space, - STATE(3101), 1, + STATE(3221), 1, sym_comment, - ACTIONS(6083), 13, + ACTIONS(1862), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1864), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219661,16 +223987,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [95795] = 4, - ACTIONS(103), 1, + [99873] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6089), 1, - sym__space, - STATE(3102), 1, + STATE(3222), 1, sym_comment, - ACTIONS(6087), 13, + ACTIONS(6230), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219684,14 +224006,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95820] = 4, + [99895] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2582), 1, - sym__space, - STATE(3103), 1, + STATE(3223), 1, sym_comment, - ACTIONS(2584), 13, + ACTIONS(2664), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2666), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219703,16 +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, - anon_sym_RPAREN, - anon_sym_RBRACE, - [95845] = 4, + [99919] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5486), 1, - sym__space, - STATE(3104), 1, + STATE(3224), 1, sym_comment, - ACTIONS(5484), 13, + ACTIONS(4682), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4680), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219724,39 +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, - anon_sym_RPAREN, - anon_sym_RBRACE, - [95870] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5209), 1, - anon_sym_DOT, - ACTIONS(5211), 1, - aux_sym__immediate_decimal_token5, - STATE(3105), 1, - sym_comment, - ACTIONS(1756), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(1754), 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, - [95899] = 4, + [99943] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2296), 1, - sym__space, - STATE(3106), 1, + STATE(3225), 1, sym_comment, - ACTIONS(2298), 13, + ACTIONS(2608), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2610), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219768,16 +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, - anon_sym_RPAREN, - anon_sym_RBRACE, - [95924] = 4, + [99967] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2108), 1, - sym__space, - STATE(3107), 1, + STATE(3226), 1, sym_comment, - ACTIONS(2110), 13, + ACTIONS(2533), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2535), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219789,16 +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, - [95949] = 4, + [99991] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2116), 1, - sym__space, - STATE(3108), 1, + ACTIONS(1639), 1, + sym__entry_separator, + ACTIONS(1836), 1, + anon_sym_DOLLAR, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6106), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6108), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6233), 1, + anon_sym_DOT, + STATE(3227), 1, + sym_comment, + 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(3228), 1, sym_comment, - ACTIONS(2118), 13, + ACTIONS(2537), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2539), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219810,68 +224134,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, - [95974] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1931), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(6091), 1, - sym__newline, - STATE(3109), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1926), 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, - [96001] = 13, + [100055] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1599), 1, + ACTIONS(1639), 1, sym__entry_separator, - ACTIONS(1603), 1, - anon_sym_RBRACK, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1786), 1, + ACTIONS(1836), 1, anon_sym_DOLLAR, - ACTIONS(5945), 1, + ACTIONS(6102), 1, anon_sym_LPAREN2, - ACTIONS(6094), 1, + ACTIONS(6233), 1, anon_sym_DOT, - ACTIONS(6096), 1, + ACTIONS(6235), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6098), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token2, - STATE(3110), 1, + STATE(3229), 1, sym_comment, - STATE(3676), 1, + STATE(3933), 1, sym__immediate_decimal, - ACTIONS(6100), 2, + ACTIONS(1641), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6239), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3846), 2, + STATE(3932), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [96043] = 4, + [100095] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3230), 1, + sym_comment, + ACTIONS(2228), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2230), 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, + [100119] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3111), 1, + STATE(3231), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2232), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2537), 11, + ACTIONS(2234), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219883,15 +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, - [96067] = 4, + [100143] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3112), 1, + STATE(3232), 1, sym_comment, - ACTIONS(2614), 2, + ACTIONS(2236), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2616), 11, + ACTIONS(2238), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219903,12 +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, - [96091] = 3, + [100167] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3113), 1, + STATE(3233), 1, sym_comment, - ACTIONS(6102), 13, + ACTIONS(6241), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219922,41 +224241,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96113] = 10, + [100189] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3234), 1, + sym_comment, + ACTIONS(2593), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2595), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [100213] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1691), 1, - sym__unquoted_pattern, - ACTIONS(2897), 1, + ACTIONS(2873), 1, anon_sym_DOLLAR, - STATE(3114), 1, + STATE(743), 1, + sym__immediate_decimal, + STATE(3235), 1, sym_comment, - STATE(4210), 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(742), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1667), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [100247] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(745), 1, sym__immediate_decimal, - ACTIONS(6104), 2, + STATE(3236), 1, + sym_comment, + ACTIONS(5907), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6243), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6106), 2, + STATE(744), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1681), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [100281] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(747), 1, + sym__immediate_decimal, + STATE(3237), 1, + sym_comment, + ACTIONS(5907), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(726), 2, + ACTIONS(6243), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(746), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 3, + ACTIONS(1663), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [96149] = 4, - ACTIONS(103), 1, + [100315] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3115), 1, + STATE(3238), 1, sym_comment, - ACTIONS(2502), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2504), 11, + STATE(3257), 1, + aux_sym__repeat_newline, + ACTIONS(5649), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219968,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, - [96173] = 4, + anon_sym_RPAREN, + [100339] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3116), 1, + STATE(3239), 1, sym_comment, - ACTIONS(2296), 2, + ACTIONS(2240), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2298), 11, + ACTIONS(2242), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219988,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, - [96197] = 3, + [100363] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3117), 1, + STATE(3240), 1, sym_comment, - ACTIONS(5424), 13, + ACTIONS(1862), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220005,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, - [96219] = 4, + [100385] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3118), 1, + STATE(3241), 1, sym_comment, - ACTIONS(2108), 2, + ACTIONS(5744), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2110), 11, + ACTIONS(5742), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220027,15 +224415,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, - [96243] = 4, - ACTIONS(103), 1, + [100409] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3119), 1, + ACTIONS(6247), 1, + anon_sym_else, + STATE(3242), 1, sym_comment, - ACTIONS(2116), 2, + ACTIONS(6245), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2118), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220047,43 +224435,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, - [96267] = 12, + [100433] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1599), 1, + STATE(3243), 1, + sym_comment, + ACTIONS(5963), 2, + ts_builtin_sym_end, sym__space, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3279), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(6108), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6110), 1, - aux_sym__immediate_decimal_token2, - STATE(3120), 1, + ACTIONS(5961), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [100457] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3244), 1, sym_comment, - STATE(4009), 1, - sym__immediate_decimal, - ACTIONS(1603), 2, + ACTIONS(6249), 13, sym__newline, anon_sym_SEMI, - ACTIONS(6112), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2949), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [96307] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [100479] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3121), 1, + STATE(3245), 1, sym_comment, - ACTIONS(2124), 2, + ACTIONS(6100), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2126), 11, + ACTIONS(6098), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220095,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, - [96331] = 4, + [100503] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6114), 1, - anon_sym_catch, - STATE(3122), 1, + STATE(3246), 1, sym_comment, - ACTIONS(5858), 12, + ACTIONS(1912), 13, ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220115,61 +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, - [96355] = 10, + [100525] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, + ACTIONS(1635), 1, sym__unquoted_pattern, - ACTIONS(2897), 1, + ACTIONS(2873), 1, anon_sym_DOLLAR, - STATE(3123), 1, + STATE(3247), 1, sym_comment, - STATE(4205), 1, + STATE(4286), 1, sym__immediate_decimal, - ACTIONS(6104), 2, + ACTIONS(6251), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6106), 2, + ACTIONS(6253), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(780), 2, + STATE(730), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1599), 3, + ACTIONS(1598), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [96391] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5933), 1, - anon_sym_DASH2, - STATE(3124), 1, - sym_comment, - ACTIONS(5929), 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, - [96415] = 4, + [100561] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3125), 1, + STATE(3248), 1, sym_comment, - ACTIONS(5845), 2, + ACTIONS(2632), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5843), 11, + ACTIONS(2634), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220181,43 +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, - [96439] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1617), 1, - sym__entry_separator, - ACTIONS(1786), 1, - anon_sym_DOLLAR, - ACTIONS(5945), 1, - anon_sym_LPAREN2, - ACTIONS(5949), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5951), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6116), 1, - anon_sym_DOT, - STATE(3126), 1, - sym_comment, - STATE(3904), 1, - sym__immediate_decimal, - ACTIONS(1619), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(5953), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3903), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [96479] = 4, + [100585] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3127), 1, + STATE(3249), 1, sym_comment, - ACTIONS(2363), 2, + ACTIONS(6119), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2365), 11, + ACTIONS(6117), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220229,35 +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, - [96503] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6120), 1, - anon_sym_DASH2, - STATE(3128), 1, - sym_comment, - ACTIONS(6118), 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, - [96527] = 4, + [100609] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3129), 1, + STATE(3250), 1, sym_comment, - ACTIONS(2598), 2, + ACTIONS(2290), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2600), 11, + ACTIONS(2292), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220269,15 +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, - [96551] = 4, + [100633] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3130), 1, + STATE(3251), 1, sym_comment, - ACTIONS(2602), 2, + ACTIONS(2294), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2604), 11, + ACTIONS(2296), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220289,15 +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, - [96575] = 4, + [100657] = 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(3252), 1, + sym_comment, + STATE(4291), 1, + sym__immediate_decimal, + ACTIONS(6251), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6253), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(748), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1651), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [100693] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5825), 1, + anon_sym_DOLLAR, + ACTIONS(5827), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5829), 1, + anon_sym_DASH_DASH, + ACTIONS(5831), 1, + anon_sym_DASH2, + ACTIONS(5877), 1, + anon_sym_PIPE, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2939), 1, + aux_sym_parameter_parens_repeat1, + STATE(3253), 1, + sym_comment, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3761), 1, + sym_parameter, + [100739] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3131), 1, + STATE(3254), 1, sym_comment, - ACTIONS(2606), 2, + ACTIONS(2196), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2608), 11, + ACTIONS(2198), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220309,15 +224696,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, - [96599] = 4, - ACTIONS(103), 1, + [100763] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3132), 1, + STATE(3255), 1, sym_comment, - ACTIONS(2610), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2612), 11, + ACTIONS(4867), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220329,15 +224713,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, - [96623] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [100785] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3133), 1, + STATE(3256), 1, sym_comment, - ACTIONS(4655), 2, + ACTIONS(5796), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(4653), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220349,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, - [96647] = 4, - ACTIONS(103), 1, + [100807] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3134), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3257), 1, sym_comment, - ACTIONS(2367), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2369), 11, + ACTIONS(5691), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220369,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, - [96671] = 4, + anon_sym_RPAREN, + [100831] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3135), 1, + STATE(3258), 1, sym_comment, - ACTIONS(2379), 2, + ACTIONS(6135), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2381), 11, + ACTIONS(6133), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220389,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, - [96695] = 4, + [100855] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3136), 1, + STATE(3259), 1, sym_comment, - ACTIONS(2383), 2, + ACTIONS(2244), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2385), 11, + ACTIONS(2246), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220409,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, - [96719] = 4, + [100879] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3137), 1, + STATE(3260), 1, sym_comment, - ACTIONS(2387), 2, + ACTIONS(2200), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2389), 11, + ACTIONS(2202), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220429,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, - [96743] = 4, + [100903] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3138), 1, + STATE(3261), 1, sym_comment, - ACTIONS(4659), 2, + ACTIONS(2573), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4657), 11, + ACTIONS(2575), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220449,46 +224834,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, - [96767] = 15, - ACTIONS(3), 1, + [100927] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5686), 1, - sym_identifier, - ACTIONS(5692), 1, + ACTIONS(1651), 1, + sym__space, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(3118), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(5694), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5696), 1, - anon_sym_DASH_DASH, - ACTIONS(5698), 1, - anon_sym_DASH2, - ACTIONS(6122), 1, - anon_sym_RBRACK, - STATE(2483), 1, - sym_param_long_flag, - STATE(2599), 1, - sym__param_name, - STATE(2853), 1, - aux_sym_parameter_parens_repeat1, - STATE(3139), 1, + ACTIONS(6255), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6257), 1, + aux_sym__immediate_decimal_token2, + STATE(3262), 1, sym_comment, - STATE(3334), 1, - sym_param_rest, - STATE(3336), 1, - sym_param_opt, - STATE(3377), 1, - sym_param_short_flag, - STATE(3652), 1, - sym_parameter, - [96813] = 4, - ACTIONS(103), 1, + STATE(4062), 1, + sym__immediate_decimal, + ACTIONS(1653), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6259), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3188), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100967] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3140), 1, + STATE(3263), 1, sym_comment, - ACTIONS(4663), 2, + ACTIONS(6173), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(4661), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220500,15 +224881,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, - [96837] = 4, + [100989] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3141), 1, + STATE(3264), 1, sym_comment, - ACTIONS(2429), 2, + ACTIONS(5473), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2431), 11, + ACTIONS(5471), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220520,15 +224901,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, - [96861] = 4, + [101013] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3142), 1, + STATE(3265), 1, sym_comment, - ACTIONS(2586), 2, + ACTIONS(6141), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2588), 11, + ACTIONS(6139), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220540,46 +224921,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, - [96885] = 15, + [101037] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5686), 1, + ACTIONS(6263), 1, + anon_sym_DASH2, + STATE(3266), 1, + sym_comment, + ACTIONS(6261), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(5692), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5694), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5696), 1, anon_sym_DASH_DASH, - ACTIONS(5698), 1, - anon_sym_DASH2, - ACTIONS(6124), 1, - anon_sym_RPAREN, - STATE(2483), 1, - sym_param_long_flag, - STATE(2599), 1, - sym__param_name, - STATE(2853), 1, - aux_sym_parameter_parens_repeat1, - STATE(3143), 1, - sym_comment, - STATE(3334), 1, - sym_param_rest, - STATE(3336), 1, - sym_param_opt, - STATE(3377), 1, - sym_param_short_flag, - STATE(3652), 1, - sym_parameter, - [96931] = 4, + anon_sym_LPAREN2, + [101061] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3144), 1, + STATE(3267), 1, sym_comment, - ACTIONS(2210), 2, + ACTIONS(6145), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2212), 11, + ACTIONS(6143), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220591,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, - [96955] = 4, - ACTIONS(103), 1, + [101085] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3145), 1, + STATE(3268), 1, sym_comment, - ACTIONS(2214), 2, + ACTIONS(6173), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2216), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220611,15 +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, - [96979] = 4, - ACTIONS(103), 1, + [101107] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3146), 1, + STATE(3269), 1, sym_comment, - ACTIONS(2218), 2, + ACTIONS(2620), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2220), 11, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220631,15 +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, - [97003] = 4, + [101129] = 12, ACTIONS(103), 1, anon_sym_POUND, - STATE(3147), 1, + ACTIONS(1598), 1, + sym__space, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(3118), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(6255), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6257), 1, + aux_sym__immediate_decimal_token2, + STATE(3270), 1, + sym_comment, + STATE(4165), 1, + sym__immediate_decimal, + ACTIONS(1602), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6259), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3155), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [101169] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3271), 1, sym_comment, - ACTIONS(2222), 2, + ACTIONS(2154), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2224), 11, + ACTIONS(2156), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220651,15 +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, - [97027] = 4, + [101193] = 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(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(3148), 1, + STATE(3273), 1, sym_comment, - ACTIONS(2226), 2, + ACTIONS(2248), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2228), 11, + ACTIONS(2250), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220671,15 +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, - [97051] = 4, + [101263] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3149), 1, + STATE(3274), 1, sym_comment, - ACTIONS(2230), 2, + ACTIONS(2620), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2232), 11, + ACTIONS(2622), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220691,15 +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, - [97075] = 4, + [101287] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3150), 1, + STATE(3275), 1, sym_comment, - ACTIONS(2234), 2, + ACTIONS(4722), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2236), 11, + ACTIONS(4720), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220711,12 +225138,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, - [97099] = 3, - ACTIONS(3), 1, + [101311] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3151), 1, + STATE(3276), 1, sym_comment, - ACTIONS(4799), 13, + ACTIONS(2252), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2254), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220728,16 +225158,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [97121] = 4, + [101335] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3152), 1, + STATE(3277), 1, sym_comment, - ACTIONS(5593), 12, + ACTIONS(6062), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220750,15 +225176,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97145] = 4, + anon_sym_RBRACE, + [101357] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6128), 1, - anon_sym_else, - STATE(3153), 1, + STATE(3278), 1, sym_comment, - ACTIONS(6126), 12, - ts_builtin_sym_end, + ACTIONS(6265), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220770,40 +225194,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, - [97169] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - STATE(718), 1, - sym__immediate_decimal, - STATE(3154), 1, - sym_comment, - ACTIONS(5741), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6130), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(717), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1661), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [97203] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [101379] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3155), 1, + STATE(3279), 1, sym_comment, - ACTIONS(2258), 2, + ACTIONS(2256), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2260), 11, + ACTIONS(2258), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220815,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, - [97227] = 4, + [101403] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3156), 1, + STATE(3280), 1, sym_comment, - ACTIONS(2258), 2, + ACTIONS(6149), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2260), 11, + ACTIONS(6147), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220835,65 +225236,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, - [97251] = 12, + [101427] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1677), 1, - sym__entry_separator, - ACTIONS(1691), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6132), 1, - anon_sym_DOLLAR, - ACTIONS(6134), 1, - anon_sym_LPAREN2, - ACTIONS(6136), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6138), 1, - aux_sym__immediate_decimal_token2, - STATE(3157), 1, - sym_comment, - STATE(4052), 1, - sym__immediate_decimal, - ACTIONS(1679), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6140), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4203), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [97291] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - STATE(723), 1, - sym__immediate_decimal, - STATE(3158), 1, - sym_comment, - ACTIONS(5741), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6130), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(722), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1669), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [97325] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3159), 1, + STATE(3281), 1, sym_comment, - ACTIONS(6015), 13, + ACTIONS(6153), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6151), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220905,39 +225256,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, - [97347] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - STATE(725), 1, - sym__immediate_decimal, - STATE(3160), 1, - sym_comment, - ACTIONS(5741), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6130), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(724), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [97381] = 3, - ACTIONS(3), 1, + [101451] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3161), 1, + STATE(3282), 1, sym_comment, - ACTIONS(6142), 13, + ACTIONS(6157), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6155), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220949,96 +225276,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [97403] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5686), 1, - sym_identifier, - ACTIONS(5692), 1, - anon_sym_DOLLAR, - ACTIONS(5694), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5696), 1, - anon_sym_DASH_DASH, - ACTIONS(5698), 1, - anon_sym_DASH2, - ACTIONS(5824), 1, - anon_sym_PIPE, - STATE(2483), 1, - sym_param_long_flag, - STATE(2599), 1, - sym__param_name, - STATE(2853), 1, - aux_sym_parameter_parens_repeat1, - STATE(3162), 1, - sym_comment, - STATE(3334), 1, - sym_param_rest, - STATE(3336), 1, - sym_param_opt, - STATE(3377), 1, - sym_param_short_flag, - STATE(3652), 1, - sym_parameter, - [97449] = 4, + [101475] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6146), 1, - anon_sym_DASH2, - STATE(3163), 1, + STATE(3283), 1, sym_comment, - ACTIONS(6144), 12, + ACTIONS(2537), 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_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [97473] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1599), 1, - sym__entry_separator, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6132), 1, - anon_sym_DOLLAR, - ACTIONS(6134), 1, - anon_sym_LPAREN2, - ACTIONS(6136), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6138), 1, - aux_sym__immediate_decimal_token2, - STATE(3164), 1, - sym_comment, - STATE(4044), 1, - sym__immediate_decimal, - ACTIONS(1603), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6140), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4171), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [97513] = 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, + [101497] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3165), 1, + STATE(3284), 1, sym_comment, - ACTIONS(2266), 2, + ACTIONS(2260), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2268), 11, + ACTIONS(2262), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221050,15 +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, - [97537] = 4, + [101521] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3166), 1, + STATE(3285), 1, sym_comment, - ACTIONS(2270), 2, + ACTIONS(2102), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2272), 11, + ACTIONS(2104), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221070,12 +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, - [97561] = 3, - ACTIONS(3), 1, + [101545] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3167), 1, + STATE(3286), 1, sym_comment, - ACTIONS(4793), 13, + ACTIONS(2110), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2112), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221087,14 +225355,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, - [97583] = 3, + [101569] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3168), 1, + STATE(3287), 1, sym_comment, - ACTIONS(6148), 13, + ACTIONS(6092), 13, + ts_builtin_sym_end, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221106,17 +225374,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [97605] = 4, - ACTIONS(103), 1, + [101591] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3169), 1, + STATE(3288), 1, sym_comment, - ACTIONS(6015), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6013), 11, + ACTIONS(6267), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221128,15 +225391,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, - [97629] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [101613] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3170), 1, + STATE(3289), 1, sym_comment, - ACTIONS(5964), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5962), 11, + ACTIONS(6269), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221148,12 +225410,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, - [97653] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [101635] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3171), 1, + STATE(3290), 1, sym_comment, - ACTIONS(6150), 13, + ACTIONS(2264), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2266), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221165,14 +225432,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [97675] = 3, + [101659] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3172), 1, + STATE(3291), 1, sym_comment, - ACTIONS(6152), 13, + ACTIONS(6271), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221186,12 +225451,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97697] = 3, + [101681] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3173), 1, + STATE(3292), 1, sym_comment, - ACTIONS(6154), 13, + ACTIONS(6273), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221205,12 +225470,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97719] = 3, - ACTIONS(3), 1, + [101703] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3174), 1, + STATE(3293), 1, sym_comment, - ACTIONS(6156), 13, + ACTIONS(5416), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5414), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221222,17 +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, - anon_sym_RPAREN, - anon_sym_RBRACE, - [97741] = 4, + [101727] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3175), 1, + STATE(3294), 1, sym_comment, - ACTIONS(6069), 2, + ACTIONS(6181), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6067), 11, + ACTIONS(6179), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221244,46 +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, - [97765] = 15, + [101751] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5686), 1, - sym_identifier, - ACTIONS(5692), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(2873), 1, anon_sym_DOLLAR, - ACTIONS(5694), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5696), 1, - anon_sym_DASH_DASH, - ACTIONS(5698), 1, - anon_sym_DASH2, - ACTIONS(5750), 1, - anon_sym_RPAREN, - STATE(2483), 1, - sym_param_long_flag, - STATE(2599), 1, - sym__param_name, - STATE(2853), 1, - aux_sym_parameter_parens_repeat1, - STATE(3176), 1, + STATE(729), 1, + sym__immediate_decimal, + STATE(3295), 1, sym_comment, - STATE(3334), 1, - sym_param_rest, - STATE(3336), 1, - sym_param_opt, - STATE(3377), 1, - sym_param_short_flag, - STATE(3652), 1, - sym_parameter, - [97811] = 4, + 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(728), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1639), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [101785] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3177), 1, + STATE(3296), 1, sym_comment, - ACTIONS(5395), 2, + ACTIONS(2282), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5393), 11, + ACTIONS(2284), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221295,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, - [97835] = 4, + [101809] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3178), 1, + STATE(3297), 1, sym_comment, - ACTIONS(6073), 2, + ACTIONS(2268), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6071), 11, + ACTIONS(2270), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221315,15 +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, - [97859] = 4, + [101833] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3179), 1, + STATE(3298), 1, sym_comment, - ACTIONS(6026), 2, + ACTIONS(2272), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6024), 11, + ACTIONS(2274), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221335,14 +225595,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, - [97883] = 4, + [101857] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6160), 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, - STATE(3180), 1, + 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(6158), 12, + ACTIONS(5334), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -221355,14 +225646,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [97907] = 4, + [101927] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6164), 1, + ACTIONS(6277), 1, anon_sym_DASH2, - STATE(3181), 1, + STATE(3301), 1, sym_comment, - ACTIONS(6162), 12, + ACTIONS(5338), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -221375,14 +225666,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [97931] = 4, + [101951] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + 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(6166), 1, - anon_sym_else, - STATE(3182), 1, + ACTIONS(6283), 1, + anon_sym_catch, + STATE(3303), 1, + sym_comment, + ACTIONS(6018), 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, + [101999] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6285), 1, + anon_sym_EQ, + STATE(3304), 1, sym_comment, - ACTIONS(6126), 12, + ACTIONS(6226), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221395,15 +225726,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, - [97955] = 4, + [102023] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3183), 1, + STATE(3305), 1, sym_comment, - ACTIONS(4555), 2, + ACTIONS(2118), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4553), 11, + ACTIONS(2120), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221415,15 +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, - [97979] = 4, - ACTIONS(103), 1, + [102047] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3184), 1, + ACTIONS(6287), 1, + anon_sym_DASH2, + STATE(3306), 1, sym_comment, - ACTIONS(1888), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1890), 11, + ACTIONS(5422), 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, + [102071] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5825), 1, + anon_sym_DOLLAR, + ACTIONS(5827), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5829), 1, + anon_sym_DASH_DASH, + ACTIONS(5831), 1, + anon_sym_DASH2, + ACTIONS(5917), 1, + anon_sym_RPAREN, + STATE(2550), 1, + sym_param_long_flag, + STATE(2684), 1, + sym__param_name, + STATE(2939), 1, + aux_sym_parameter_parens_repeat1, + STATE(3307), 1, + sym_comment, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3761), 1, + sym_parameter, + [102117] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6289), 1, + anon_sym_else, + STATE(3308), 1, + sym_comment, + ACTIONS(6245), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221435,44 +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, - [98003] = 13, + anon_sym_RBRACE, + [102141] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6291), 1, + anon_sym_DASH2, + STATE(3309), 1, + sym_comment, + ACTIONS(5348), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102165] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1599), 1, + ACTIONS(1598), 1, sym__entry_separator, - ACTIONS(1603), 1, - anon_sym_RBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1786), 1, + ACTIONS(1602), 1, + anon_sym_RBRACK, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1836), 1, anon_sym_DOLLAR, - ACTIONS(5945), 1, + ACTIONS(6102), 1, anon_sym_LPAREN2, - ACTIONS(6168), 1, - anon_sym_DOT, - ACTIONS(6170), 1, + ACTIONS(6235), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6172), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token2, - STATE(3185), 1, + ACTIONS(6293), 1, + anon_sym_DOT, + STATE(3310), 1, sym_comment, - STATE(3671), 1, + STATE(3856), 1, sym__immediate_decimal, - ACTIONS(6174), 2, + ACTIONS(6239), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3846), 2, + STATE(3934), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [98045] = 4, - ACTIONS(103), 1, + [102207] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3186), 1, + ACTIONS(6295), 1, + anon_sym_EQ, + STATE(3311), 1, sym_comment, - ACTIONS(1856), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1858), 11, + ACTIONS(6226), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221484,14 +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, - [98069] = 4, + anon_sym_RPAREN, + [102231] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3187), 1, + ACTIONS(6297), 1, + anon_sym_else, + STATE(3312), 1, sym_comment, - STATE(3212), 1, - aux_sym__repeat_newline, - ACTIONS(5530), 12, + ACTIONS(6245), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221504,14 +225906,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98093] = 4, + [102255] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6178), 1, + ACTIONS(6299), 1, anon_sym_DASH2, - STATE(3188), 1, + STATE(3313), 1, sym_comment, - ACTIONS(6176), 12, + ACTIONS(5364), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -221524,14 +225926,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98117] = 4, + [102279] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6301), 1, anon_sym_DASH2, - STATE(3189), 1, + STATE(3314), 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, + ACTIONS(6303), 1, + anon_sym_EQ, + STATE(3315), 1, + sym_comment, + ACTIONS(6226), 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, + [102327] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6305), 1, + anon_sym_DASH2, + STATE(3316), 1, sym_comment, - ACTIONS(6180), 12, + ACTIONS(5379), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -221544,14 +225986,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98141] = 4, + [102351] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(6012), 1, anon_sym_DASH2, - STATE(3190), 1, + STATE(3317), 1, sym_comment, - ACTIONS(6184), 12, + ACTIONS(5245), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -221564,15 +226006,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98165] = 4, - ACTIONS(103), 1, + [102375] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3191), 1, + ACTIONS(6307), 1, + anon_sym_EQ, + STATE(3318), 1, sym_comment, - ACTIONS(6081), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6079), 11, + ACTIONS(6226), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221584,14 +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, - [98189] = 4, + anon_sym_RPAREN, + [102399] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_else, - STATE(3192), 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(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(3320), 1, sym_comment, - ACTIONS(6126), 12, + ACTIONS(6062), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6060), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221603,35 +226077,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [102469] = 15, + 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, - [98213] = 4, + 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, - STATE(3193), 1, + 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(6085), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6083), 11, + ACTIONS(2146), 12, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [98237] = 4, + 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(6192), 1, + ACTIONS(6315), 1, anon_sym_DASH2, - STATE(3194), 1, + STATE(3325), 1, sym_comment, - ACTIONS(6190), 12, + ACTIONS(6313), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -221641,19 +226194,21 @@ 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, - [98261] = 4, - ACTIONS(103), 1, + anon_sym_LPAREN2, + [102629] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3195), 1, - sym_comment, - ACTIONS(6089), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6087), 11, + ACTIONS(5970), 1, sym__newline, + ACTIONS(6317), 1, + anon_sym_else, + STATE(3326), 1, + sym_comment, + STATE(3330), 1, + aux_sym__repeat_newline, + ACTIONS(5973), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221664,14 +226219,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, - [98285] = 4, + [102657] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6196), 1, + ACTIONS(6319), 1, anon_sym_DASH2, - STATE(3196), 1, + STATE(3327), 1, sym_comment, - ACTIONS(6194), 12, + ACTIONS(5424), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -221684,16 +226239,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98309] = 4, - ACTIONS(103), 1, + [102681] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3197), 1, - sym_comment, - ACTIONS(5486), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5484), 11, + ACTIONS(6027), 1, sym__newline, + ACTIONS(6321), 1, + anon_sym_else, + STATE(3328), 1, + sym_comment, + STATE(3332), 1, + aux_sym__repeat_newline, + ACTIONS(6030), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221704,13 +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, - [98333] = 3, + [102709] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3198), 1, - sym_comment, - ACTIONS(6198), 13, + ACTIONS(6034), 1, sym__newline, + ACTIONS(6323), 1, + anon_sym_else, + STATE(3329), 1, + sym_comment, + STATE(3333), 1, + aux_sym__repeat_newline, + ACTIONS(6037), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221721,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, - anon_sym_RPAREN, - anon_sym_RBRACE, - [98355] = 4, - ACTIONS(103), 1, + [102737] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3199), 1, - sym_comment, - ACTIONS(2582), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2584), 11, + ACTIONS(6041), 1, sym__newline, + ACTIONS(6325), 1, + anon_sym_else, + STATE(3330), 1, + sym_comment, + STATE(3334), 1, + aux_sym__repeat_newline, + ACTIONS(6044), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221743,15 +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, - [98379] = 4, + [102765] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3152), 1, - aux_sym__repeat_newline, - STATE(3200), 1, - sym_comment, - ACTIONS(5622), 12, + ACTIONS(6048), 1, sym__newline, + ACTIONS(6327), 1, + anon_sym_else, + STATE(3331), 1, + sym_comment, + STATE(3335), 1, + aux_sym__repeat_newline, + ACTIONS(6051), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221762,14 +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, - anon_sym_RPAREN, - [98403] = 3, + [102793] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3201), 1, - sym_comment, - ACTIONS(6200), 13, + ACTIONS(6055), 1, sym__newline, + ACTIONS(6329), 1, + anon_sym_else, + STATE(3332), 1, + sym_comment, + STATE(3336), 1, + aux_sym__repeat_newline, + ACTIONS(6058), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221780,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, - anon_sym_RPAREN, - anon_sym_RBRACE, - [98425] = 4, - ACTIONS(103), 1, + [102821] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3202), 1, - sym_comment, - ACTIONS(5247), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5245), 11, + ACTIONS(6076), 1, sym__newline, + ACTIONS(6331), 1, + anon_sym_else, + STATE(3333), 1, + sym_comment, + STATE(3337), 1, + aux_sym__repeat_newline, + ACTIONS(6079), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221802,16 +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, - [98449] = 4, - ACTIONS(103), 1, + [102849] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3203), 1, - sym_comment, - ACTIONS(884), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(858), 11, + ACTIONS(1968), 1, sym__newline, + ACTIONS(6333), 1, + anon_sym_else, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3334), 1, + sym_comment, + ACTIONS(1966), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221822,37 +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, - [98473] = 5, + [102877] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6204), 1, - anon_sym_QMARK, - ACTIONS(6206), 1, - anon_sym_DASH2, - STATE(3204), 1, - sym_comment, - ACTIONS(6202), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6185), 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, - [98499] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3205), 1, + ACTIONS(6336), 1, + anon_sym_else, + STATE(3335), 1, sym_comment, - ACTIONS(1716), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1629), 11, - sym__newline, + STATE(3338), 1, + aux_sym__repeat_newline, + ACTIONS(6188), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221863,16 +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, - [98523] = 4, - ACTIONS(103), 1, + [102905] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3206), 1, - sym_comment, - ACTIONS(5939), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5937), 11, + ACTIONS(1968), 1, sym__newline, + ACTIONS(6338), 1, + anon_sym_else, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3336), 1, + sym_comment, + ACTIONS(1966), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221883,16 +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, - [98547] = 4, - ACTIONS(103), 1, + [102933] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3207), 1, - sym_comment, - ACTIONS(2160), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2162), 11, + ACTIONS(1968), 1, sym__newline, + ACTIONS(6341), 1, + anon_sym_else, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3337), 1, + sym_comment, + ACTIONS(1966), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221903,13 +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, - [98571] = 3, + [102961] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3208), 1, - sym_comment, - ACTIONS(6208), 13, + ACTIONS(1968), 1, sym__newline, + ACTIONS(6344), 1, + anon_sym_else, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3338), 1, + sym_comment, + ACTIONS(1966), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221920,17 +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, - anon_sym_RPAREN, - anon_sym_RBRACE, - [98593] = 4, + [102989] = 12, ACTIONS(103), 1, anon_sym_POUND, - STATE(3209), 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(5251), 2, + ACTIONS(2276), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5249), 11, + ACTIONS(2278), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221942,35 +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, - [98617] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6212), 1, - anon_sym_DASH2, - STATE(3210), 1, - sym_comment, - ACTIONS(6210), 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, - [98641] = 4, + [103053] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3211), 1, + STATE(3341), 1, sym_comment, - ACTIONS(2517), 2, + ACTIONS(6177), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2519), 11, + ACTIONS(6175), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221982,14 +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, - [98665] = 4, - ACTIONS(3), 1, + [103077] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3212), 1, + STATE(3342), 1, sym_comment, - ACTIONS(5666), 12, + ACTIONS(2276), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2278), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222001,19 +226569,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, - [98689] = 6, + [103101] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5990), 1, - sym__newline, - ACTIONS(6214), 1, - anon_sym_else, - STATE(3213), 1, - sym_comment, - STATE(3217), 1, + STATE(527), 1, aux_sym__repeat_newline, - ACTIONS(5993), 10, + STATE(3343), 1, + sym_comment, + ACTIONS(5719), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222024,15 +226588,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, - [98717] = 4, + anon_sym_RPAREN, + [103125] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3214), 1, + STATE(3344), 1, sym_comment, - ACTIONS(2552), 2, + ACTIONS(4732), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2554), 11, + ACTIONS(4730), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222044,18 +226609,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, - [98741] = 6, + [103149] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6039), 1, - sym__newline, - ACTIONS(6216), 1, - anon_sym_else, - STATE(3215), 1, - sym_comment, - STATE(3219), 1, + STATE(3343), 1, aux_sym__repeat_newline, - ACTIONS(6042), 10, + STATE(3345), 1, + sym_comment, + ACTIONS(5770), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222066,18 +226628,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, - [98769] = 6, + anon_sym_RPAREN, + [103173] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5957), 1, - sym__newline, - ACTIONS(6218), 1, - anon_sym_else, - STATE(3216), 1, + STATE(3346), 1, sym_comment, - STATE(3220), 1, - aux_sym__repeat_newline, - ACTIONS(5960), 10, + ACTIONS(5784), 13, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222088,18 +226648,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, - [98797] = 6, + [103195] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5851), 1, + ACTIONS(6359), 1, + anon_sym_DASH2, + STATE(3347), 1, + sym_comment, + ACTIONS(6357), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(6220), 1, - anon_sym_else, - STATE(3217), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [103219] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3348), 1, sym_comment, - STATE(3221), 1, - aux_sym__repeat_newline, - ACTIONS(5854), 10, + ACTIONS(4873), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222110,18 +226685,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, - [98825] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [103241] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5924), 1, - sym__newline, - ACTIONS(6222), 1, - anon_sym_else, - STATE(3218), 1, + STATE(3349), 1, sym_comment, - STATE(3222), 1, - aux_sym__repeat_newline, - ACTIONS(5927), 10, + ACTIONS(886), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(866), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222132,18 +226707,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, - [98853] = 6, - ACTIONS(3), 1, + [103265] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6019), 1, - sym__newline, - ACTIONS(6224), 1, - anon_sym_else, - STATE(3219), 1, + STATE(3350), 1, sym_comment, - STATE(3223), 1, - aux_sym__repeat_newline, - ACTIONS(6022), 10, + ACTIONS(2529), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2531), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222154,18 +226727,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, - [98881] = 6, + [103289] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6030), 1, - sym__newline, - ACTIONS(6226), 1, - anon_sym_else, - STATE(3220), 1, + STATE(3351), 1, sym_comment, - STATE(3224), 1, - aux_sym__repeat_newline, - ACTIONS(6033), 10, + ACTIONS(6204), 13, + ts_builtin_sym_end, + anon_sym_EQ, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222176,18 +226746,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, - [98909] = 6, + [103311] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1928), 1, - sym__newline, - ACTIONS(6228), 1, - anon_sym_else, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3221), 1, + STATE(3352), 1, sym_comment, - ACTIONS(1926), 10, + ACTIONS(6361), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222198,18 +226763,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98937] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [103333] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5899), 1, - sym__newline, - ACTIONS(6231), 1, - anon_sym_else, - STATE(3222), 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(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(3225), 1, - aux_sym__repeat_newline, - ACTIONS(5902), 10, + STATE(3374), 1, + sym_param_rest, + STATE(3375), 1, + sym_param_opt, + STATE(3385), 1, + sym_param_short_flag, + STATE(3761), 1, + sym_parameter, + [103379] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1651), 1, + sym__entry_separator, + ACTIONS(1679), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6347), 1, + anon_sym_DOLLAR, + ACTIONS(6349), 1, + anon_sym_LPAREN2, + ACTIONS(6351), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6353), 1, + aux_sym__immediate_decimal_token2, + STATE(3354), 1, + sym_comment, + STATE(4146), 1, + sym__immediate_decimal, + ACTIONS(1653), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6355), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4258), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103419] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3355), 1, + sym_comment, + ACTIONS(1713), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1614), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222220,18 +226844,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, - [98965] = 6, + [103443] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1928), 1, - sym__newline, - ACTIONS(6233), 1, - anon_sym_else, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3223), 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(1926), 10, + ACTIONS(6365), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222242,18 +226892,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, - [98993] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [103511] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1928), 1, - sym__newline, - ACTIONS(6236), 1, - anon_sym_else, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3224), 1, + STATE(3358), 1, sym_comment, - ACTIONS(1926), 10, + ACTIONS(6367), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222264,18 +226911,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, - [99021] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [103533] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1928), 1, - sym__newline, - ACTIONS(6239), 1, - anon_sym_else, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3225), 1, + STATE(3359), 1, sym_comment, - ACTIONS(1926), 10, + ACTIONS(6369), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222286,15 +226930,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, - [99049] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [103555] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3226), 1, + ACTIONS(6373), 1, + anon_sym_QMARK, + ACTIONS(6375), 1, + anon_sym_DASH2, + STATE(3360), 1, sym_comment, - ACTIONS(5968), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5966), 11, + 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(5683), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222306,15 +226970,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, - [99073] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [103603] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3227), 1, + STATE(3362), 1, sym_comment, - ACTIONS(2152), 2, + ACTIONS(2170), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2154), 11, + ACTIONS(2172), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222326,288 +226992,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [99097] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1677), 1, - sym__space, - ACTIONS(1691), 1, - sym__unquoted_pattern, - ACTIONS(3279), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(6108), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6110), 1, - aux_sym__immediate_decimal_token2, - STATE(3228), 1, - sym_comment, - STATE(4048), 1, - sym__immediate_decimal, - ACTIONS(1679), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6112), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2998), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99137] = 15, + [103627] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5686), 1, + ACTIONS(5819), 1, sym_identifier, - ACTIONS(5692), 1, + ACTIONS(5825), 1, anon_sym_DOLLAR, - ACTIONS(5694), 1, + ACTIONS(5827), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5696), 1, + ACTIONS(5829), 1, anon_sym_DASH_DASH, - ACTIONS(5698), 1, + ACTIONS(5831), 1, anon_sym_DASH2, - ACTIONS(5803), 1, + ACTIONS(6377), 1, anon_sym_RBRACK, - STATE(2483), 1, - sym_param_long_flag, - STATE(2599), 1, - sym__param_name, - STATE(2853), 1, - aux_sym_parameter_parens_repeat1, - STATE(3229), 1, - sym_comment, - STATE(3334), 1, - sym_param_rest, - STATE(3336), 1, - sym_param_opt, - STATE(3377), 1, - sym_param_short_flag, - STATE(3652), 1, - sym_parameter, - [99183] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5686), 1, - sym_identifier, - ACTIONS(5692), 1, - anon_sym_DOLLAR, - ACTIONS(5694), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5696), 1, - anon_sym_DASH_DASH, - ACTIONS(5698), 1, - anon_sym_DASH2, - ACTIONS(6242), 1, - anon_sym_PIPE, - STATE(2483), 1, + STATE(2550), 1, sym_param_long_flag, - STATE(2599), 1, + STATE(2684), 1, sym__param_name, - STATE(2853), 1, + STATE(2939), 1, aux_sym_parameter_parens_repeat1, - STATE(3230), 1, + STATE(3363), 1, sym_comment, - STATE(3334), 1, + STATE(3374), 1, sym_param_rest, - STATE(3336), 1, + STATE(3375), 1, sym_param_opt, - STATE(3377), 1, + STATE(3385), 1, sym_param_short_flag, - STATE(3652), 1, + STATE(3761), 1, sym_parameter, - [99229] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2146), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(3231), 1, - sym_comment, - ACTIONS(2144), 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, - [99253] = 9, - ACTIONS(3), 1, + [103673] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - STATE(777), 1, - sym__immediate_decimal, - STATE(3232), 1, + STATE(3364), 1, sym_comment, - ACTIONS(5741), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6130), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(776), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1617), 4, - anon_sym_if, + ACTIONS(4718), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4716), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - [99287] = 12, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [103697] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1617), 1, - sym__entry_separator, - ACTIONS(1786), 1, - anon_sym_DOLLAR, - ACTIONS(5945), 1, - anon_sym_LPAREN2, - ACTIONS(6096), 1, + ACTIONS(6379), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6098), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6116), 1, - anon_sym_DOT, - STATE(3233), 1, + ACTIONS(6381), 1, + aux_sym__immediate_decimal_token5, + STATE(3365), 1, sym_comment, - STATE(3842), 1, - sym__immediate_decimal, - ACTIONS(1619), 2, + ACTIONS(739), 4, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(6100), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3841), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99327] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5686), 1, - sym_identifier, - ACTIONS(5692), 1, - anon_sym_DOLLAR, - ACTIONS(5694), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5696), 1, - anon_sym_DASH_DASH, - ACTIONS(5698), 1, - anon_sym_DASH2, - ACTIONS(5710), 1, - anon_sym_RBRACK, - STATE(2483), 1, - sym_param_long_flag, - STATE(2599), 1, - sym__param_name, - STATE(2853), 1, - aux_sym_parameter_parens_repeat1, - STATE(3234), 1, - sym_comment, - STATE(3334), 1, - sym_param_rest, - STATE(3336), 1, - sym_param_opt, - STATE(3377), 1, - sym_param_short_flag, - STATE(3652), 1, - sym_parameter, - [99373] = 4, + 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(6246), 1, + ACTIONS(6383), 1, anon_sym_DASH2, - STATE(3235), 1, + STATE(3366), 1, sym_comment, - ACTIONS(6244), 12, + ACTIONS(5796), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99397] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1617), 1, - sym__space, - ACTIONS(3279), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4898), 1, - anon_sym_DOT, - ACTIONS(5916), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5918), 1, - aux_sym__immediate_decimal_token2, - STATE(3236), 1, - sym_comment, - STATE(3900), 1, - sym__immediate_decimal, - ACTIONS(1619), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5920), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3899), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99437] = 15, + [103747] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5686), 1, - sym_identifier, - ACTIONS(5692), 1, - anon_sym_DOLLAR, - ACTIONS(5694), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5696), 1, - anon_sym_DASH_DASH, - ACTIONS(5698), 1, - anon_sym_DASH2, - ACTIONS(6248), 1, - anon_sym_RBRACK, - STATE(2483), 1, - sym_param_long_flag, - STATE(2599), 1, - sym__param_name, - STATE(2853), 1, - aux_sym_parameter_parens_repeat1, - STATE(3237), 1, - sym_comment, - STATE(3334), 1, - sym_param_rest, - STATE(3336), 1, - sym_param_opt, - STATE(3377), 1, - sym_param_short_flag, - STATE(3652), 1, - sym_parameter, - [99483] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3238), 1, + STATE(3367), 1, sym_comment, - ACTIONS(2284), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2286), 11, + ACTIONS(6385), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222619,15 +227100,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, - [99507] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + [103768] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3239), 1, + STATE(3368), 1, sym_comment, - ACTIONS(2288), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2290), 11, + ACTIONS(6387), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222639,45 +227118,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, - [99531] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5686), 1, - sym_identifier, - ACTIONS(5692), 1, - anon_sym_DOLLAR, - ACTIONS(5694), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5696), 1, - anon_sym_DASH_DASH, - ACTIONS(5698), 1, - anon_sym_DASH2, - ACTIONS(5712), 1, anon_sym_RPAREN, - STATE(2483), 1, - sym_param_long_flag, - STATE(2599), 1, - sym__param_name, - STATE(2853), 1, - aux_sym_parameter_parens_repeat1, - STATE(3240), 1, - sym_comment, - STATE(3334), 1, - sym_param_rest, - STATE(3336), 1, - sym_param_opt, - STATE(3377), 1, - sym_param_short_flag, - STATE(3652), 1, - sym_parameter, - [99577] = 4, + [103789] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6252), 1, + ACTIONS(2104), 1, anon_sym_DASH2, - STATE(3241), 1, + STATE(3369), 1, sym_comment, - ACTIONS(6250), 12, + ACTIONS(2102), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222689,67 +227138,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [99601] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5686), 1, - sym_identifier, - ACTIONS(5692), 1, - anon_sym_DOLLAR, - ACTIONS(5694), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5696), 1, - anon_sym_DASH_DASH, - ACTIONS(5698), 1, - anon_sym_DASH2, - ACTIONS(6254), 1, - anon_sym_RPAREN, - STATE(2483), 1, - sym_param_long_flag, - STATE(2599), 1, - sym__param_name, - STATE(2853), 1, - aux_sym_parameter_parens_repeat1, - STATE(3242), 1, - sym_comment, - STATE(3334), 1, - sym_param_rest, - STATE(3336), 1, - sym_param_opt, - STATE(3377), 1, - sym_param_short_flag, - STATE(3652), 1, - sym_parameter, - [99647] = 5, + [103812] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(858), 1, - anon_sym_DASH2, - ACTIONS(5136), 1, - sym__unquoted_pattern_in_record, - STATE(3243), 1, + STATE(3370), 1, sym_comment, - ACTIONS(884), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6389), 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, - [99673] = 4, + [103833] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6258), 1, + ACTIONS(5798), 1, anon_sym_DASH2, - STATE(3244), 1, + STATE(3371), 1, sym_comment, - ACTIONS(6256), 12, + ACTIONS(5275), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222761,13 +227175,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [99697] = 3, + [103856] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3245), 1, + STATE(3372), 1, sym_comment, - ACTIONS(6260), 13, + ACTIONS(6226), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222779,16 +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, - anon_sym_RBRACE, - [99719] = 4, - ACTIONS(103), 1, + [103877] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6265), 1, - sym__space, - STATE(3246), 1, + STATE(3373), 1, sym_comment, - ACTIONS(6263), 12, + ACTIONS(6391), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222801,72 +227211,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99743] = 3, + [103898] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3247), 1, + ACTIONS(6395), 1, + anon_sym_DASH2, + STATE(3374), 1, sym_comment, - ACTIONS(6267), 13, + ACTIONS(6393), 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, - [99765] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [103921] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3248), 1, + ACTIONS(6399), 1, + anon_sym_DASH2, + STATE(3375), 1, sym_comment, - ACTIONS(5480), 13, + ACTIONS(6397), 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, - [99787] = 3, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [103944] = 12, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3249), 1, + ACTIONS(1598), 1, + sym__entry_separator, + ACTIONS(1602), 1, + anon_sym_RBRACK, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6401), 1, + anon_sym_DOLLAR, + ACTIONS(6403), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6405), 1, + aux_sym__immediate_decimal_token2, + STATE(3376), 1, sym_comment, - ACTIONS(6269), 13, + 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, + 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(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, - anon_sym_RBRACE, - [99809] = 4, + 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, - STATE(3250), 1, + 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(3379), 1, sym_comment, - ACTIONS(6077), 2, + ACTIONS(4873), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(6075), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222878,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, - [99833] = 3, + [104078] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3251), 1, + STATE(3380), 1, sym_comment, - ACTIONS(6200), 12, - ts_builtin_sym_end, + ACTIONS(6413), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222896,12 +227363,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, - [99854] = 3, + anon_sym_RPAREN, + [104099] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3252), 1, + STATE(3381), 1, sym_comment, - ACTIONS(4801), 12, + ACTIONS(6415), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222914,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, - [99875] = 4, + [104120] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2385), 1, + ACTIONS(6419), 1, anon_sym_DASH2, - STATE(3253), 1, + STATE(3382), 1, sym_comment, - ACTIONS(2383), 11, + ACTIONS(6417), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222933,12 +227401,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99898] = 3, + [104143] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3254), 1, + STATE(3383), 1, sym_comment, - ACTIONS(6271), 12, + ACTIONS(6421), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222951,41 +227419,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99919] = 12, + [104164] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DOLLAR, - ACTIONS(5945), 1, - anon_sym_LPAREN2, - ACTIONS(5949), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5951), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6273), 1, - anon_sym_RBRACK, - ACTIONS(6275), 1, - anon_sym_DOLLAR2, - ACTIONS(6277), 1, - aux_sym__unquoted_in_list_token2, - STATE(3255), 1, + ACTIONS(6423), 1, + anon_sym_DOT, + ACTIONS(6425), 1, + aux_sym__immediate_decimal_token5, + STATE(3384), 1, sym_comment, - STATE(3623), 1, - sym__immediate_decimal, - ACTIONS(5953), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3902), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99958] = 4, + 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(6281), 1, + ACTIONS(6429), 1, anon_sym_DASH2, - STATE(3256), 1, + STATE(3385), 1, sym_comment, - ACTIONS(6279), 11, + ACTIONS(6427), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222997,12 +227459,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99981] = 3, + [104214] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3257), 1, + STATE(3386), 1, sym_comment, - ACTIONS(6283), 12, + ACTIONS(6431), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223015,12 +227477,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100002] = 3, + [104235] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3258), 1, + STATE(3387), 1, sym_comment, - ACTIONS(6285), 12, + ACTIONS(6433), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223033,88 +227495,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100023] = 3, + [104256] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3259), 1, + ACTIONS(6437), 1, + anon_sym_DASH2, + STATE(3388), 1, sym_comment, - ACTIONS(6287), 12, + ACTIONS(6435), 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, - [100044] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104279] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6289), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6291), 1, - aux_sym__immediate_decimal_token5, - STATE(3260), 1, + ACTIONS(6441), 1, + anon_sym_DASH2, + STATE(3389), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 8, - anon_sym_if, + ACTIONS(6439), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [100071] = 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, + [104302] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3261), 1, + ACTIONS(6445), 1, + anon_sym_DASH2, + STATE(3390), 1, sym_comment, - ACTIONS(6293), 12, + ACTIONS(6443), 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, - [100092] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104325] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3262), 1, + ACTIONS(6449), 1, + anon_sym_DASH2, + STATE(3391), 1, sym_comment, - ACTIONS(6295), 12, + ACTIONS(6447), 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, - [100113] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104348] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3263), 1, + STATE(3392), 1, sym_comment, - ACTIONS(4793), 12, - ts_builtin_sym_end, + ACTIONS(6451), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223126,30 +227588,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, - [100134] = 3, + anon_sym_RPAREN, + [104369] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3264), 1, + ACTIONS(2112), 1, + anon_sym_DASH2, + STATE(3393), 1, sym_comment, - ACTIONS(6148), 12, - ts_builtin_sym_end, + ACTIONS(2110), 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, - [100155] = 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, + [104392] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3265), 1, + STATE(3394), 1, sym_comment, - ACTIONS(6297), 12, + ACTIONS(6453), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223162,32 +227626,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100176] = 3, + [104413] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3266), 1, + ACTIONS(5837), 1, + anon_sym_DASH2, + STATE(3395), 1, sym_comment, - ACTIONS(6299), 12, + 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, - [100197] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104436] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5832), 1, + ACTIONS(5815), 1, anon_sym_DASH2, - STATE(3267), 1, + STATE(3396), 1, sym_comment, - ACTIONS(5830), 11, + ACTIONS(5255), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223199,48 +227664,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100220] = 3, + [104459] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3268), 1, + ACTIONS(6455), 1, + sym__newline, + ACTIONS(6458), 1, + anon_sym_DASH2, + STATE(3397), 1, + sym_comment, + ACTIONS(2146), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4431), 8, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104486] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6462), 1, + anon_sym_DASH2, + STATE(3398), 1, sym_comment, - ACTIONS(6301), 12, + ACTIONS(6460), 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, - [100241] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104509] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3269), 1, + ACTIONS(2120), 1, + anon_sym_DASH2, + STATE(3399), 1, sym_comment, - ACTIONS(6150), 12, - ts_builtin_sym_end, + 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, - [100262] = 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, + [104532] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3270), 1, + ACTIONS(1971), 1, + anon_sym_DASH2, + ACTIONS(6464), 1, + sym__newline, + STATE(3400), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1966), 9, + anon_sym_EQ, + sym_identifier, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104557] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3401), 1, sym_comment, - ACTIONS(6303), 12, + ACTIONS(6467), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223253,12 +227761,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100283] = 3, + [104578] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__entry_separator, + ACTIONS(1602), 1, + anon_sym_RBRACE, + ACTIONS(1836), 1, + anon_sym_DOLLAR, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6469), 1, + anon_sym_DOT, + STATE(3402), 1, + sym_comment, + STATE(4086), 1, + sym__immediate_decimal, + ACTIONS(6239), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3934), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104617] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3271), 1, + STATE(3403), 1, sym_comment, - ACTIONS(6198), 12, + ACTIONS(4867), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -223271,12 +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, - [100304] = 3, + [104638] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3272), 1, + STATE(3404), 1, sym_comment, - ACTIONS(6305), 12, + ACTIONS(6471), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223289,13 +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, - [100325] = 3, + [104659] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3273), 1, + STATE(3405), 1, sym_comment, - ACTIONS(5424), 12, - ts_builtin_sym_end, + ACTIONS(6473), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223307,14 +227841,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, - [100346] = 4, + anon_sym_RPAREN, + [104680] = 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(6475), 1, + anon_sym_RBRACK, + ACTIONS(6477), 1, + anon_sym_DOLLAR2, + ACTIONS(6479), 1, + aux_sym__unquoted_in_list_token2, + STATE(3406), 1, + sym_comment, + STATE(3774), 1, + 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(5754), 1, + ACTIONS(6481), 1, anon_sym_DASH2, - STATE(3274), 1, + STATE(3407), 1, sym_comment, - ACTIONS(5752), 11, + ACTIONS(6173), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223326,12 +227888,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100369] = 3, + [104742] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3275), 1, + STATE(3408), 1, sym_comment, - ACTIONS(6307), 12, + ACTIONS(6483), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223344,30 +227906,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100390] = 3, + [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, - STATE(3276), 1, + ACTIONS(5790), 1, + anon_sym_DASH2, + STATE(3410), 1, sym_comment, - ACTIONS(6309), 12, + ACTIONS(5788), 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, - [100411] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104823] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3277), 1, + STATE(3411), 1, sym_comment, - ACTIONS(6311), 12, + ACTIONS(6241), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223379,49 +227969,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [100432] = 3, - ACTIONS(3), 1, + [104844] = 11, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3278), 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(6313), 12, + ACTIONS(1641), 2, sym__newline, anon_sym_SEMI, + ACTIONS(6171), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3148), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104881] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2250), 1, + anon_sym_DASH2, + STATE(3413), 1, + sym_comment, + ACTIONS(2248), 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, - [100453] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104904] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3279), 1, + ACTIONS(6489), 1, + anon_sym_DOT, + ACTIONS(6491), 1, + aux_sym__immediate_decimal_token5, + STATE(3414), 1, sym_comment, - ACTIONS(6315), 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, - [100474] = 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(3280), 1, + STATE(3415), 1, sym_comment, - ACTIONS(6317), 12, + ACTIONS(6493), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223434,39 +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, - [100495] = 12, + [104952] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1599), 1, + ACTIONS(1651), 1, sym__entry_separator, - ACTIONS(1603), 1, - anon_sym_RBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(5945), 1, + ACTIONS(1653), 1, + anon_sym_RBRACK, + ACTIONS(1679), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6102), 1, anon_sym_LPAREN2, - ACTIONS(6319), 1, + ACTIONS(6401), 1, anon_sym_DOLLAR, - ACTIONS(6321), 1, + ACTIONS(6403), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6323), 1, + ACTIONS(6405), 1, aux_sym__immediate_decimal_token2, - STATE(3281), 1, + STATE(3416), 1, sym_comment, - STATE(4107), 1, + STATE(4323), 1, sym__immediate_decimal, - ACTIONS(6325), 2, + ACTIONS(6407), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4171), 2, + STATE(4258), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100534] = 3, + [104991] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3282), 1, + STATE(3417), 1, sym_comment, - ACTIONS(6327), 12, + ACTIONS(6269), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223478,40 +228098,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [100555] = 12, - ACTIONS(103), 1, + [105012] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1677), 1, - sym__entry_separator, - ACTIONS(1679), 1, - anon_sym_RBRACK, - ACTIONS(1691), 1, - sym__unquoted_pattern_in_list, - ACTIONS(5945), 1, + ACTIONS(1598), 1, + anon_sym_LBRACE, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(6319), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(2873), 1, anon_sym_DOLLAR, - ACTIONS(6329), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6331), 1, - aux_sym__immediate_decimal_token2, - STATE(3283), 1, + ACTIONS(6495), 1, + anon_sym_DOT, + STATE(3418), 1, sym_comment, - STATE(4337), 1, + STATE(4202), 1, sym__immediate_decimal, - ACTIONS(6333), 2, + 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(4203), 2, + STATE(4509), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100594] = 3, + [105049] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3284), 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(6015), 12, + ACTIONS(6365), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -223524,33 +228163,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, - [100615] = 6, + [105097] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - STATE(854), 1, - aux_sym__pipe_separator, - STATE(3285), 1, + ACTIONS(2254), 1, + anon_sym_DASH2, + STATE(3421), 1, sym_comment, - STATE(3418), 1, - aux_sym__repeat_newline, - ACTIONS(2377), 9, + ACTIONS(2252), 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, - [100642] = 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, + [105120] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3286), 1, + STATE(3422), 1, sym_comment, - ACTIONS(6335), 12, + ACTIONS(6249), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223562,69 +228200,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [100663] = 3, + [105141] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3287), 1, + ACTIONS(2234), 1, + anon_sym_DASH2, + STATE(3423), 1, sym_comment, - ACTIONS(6337), 12, + ACTIONS(2232), 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, - [100684] = 3, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105164] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3288), 1, + ACTIONS(6505), 1, + anon_sym_DOT, + ACTIONS(6507), 1, + aux_sym__immediate_decimal_token5, + STATE(3424), 1, sym_comment, - ACTIONS(6339), 12, + ACTIONS(747), 4, sym__newline, anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [105191] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2258), 1, + anon_sym_DASH2, + STATE(3425), 1, + sym_comment, + ACTIONS(2256), 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, - [100705] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105214] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3289), 1, + ACTIONS(5817), 1, + anon_sym_DASH2, + STATE(3426), 1, sym_comment, - ACTIONS(6341), 12, + ACTIONS(5281), 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, - [100726] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105237] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3290), 1, + ACTIONS(2262), 1, + anon_sym_DASH2, + STATE(3427), 1, sym_comment, - ACTIONS(6343), 12, + ACTIONS(2260), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105260] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + 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, @@ -223634,13 +228318,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [100747] = 3, + [105287] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3291), 1, + STATE(3429), 1, sym_comment, - ACTIONS(4803), 12, + ACTIONS(6265), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223652,91 +228336,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [100768] = 11, + [105308] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1661), 1, - sym__space, - ACTIONS(3279), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(6345), 1, + ACTIONS(6509), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6347), 1, - aux_sym__immediate_decimal_token2, - STATE(2995), 1, - sym__immediate_decimal, - STATE(3292), 1, + ACTIONS(6511), 1, + aux_sym__immediate_decimal_token5, + STATE(3430), 1, sym_comment, - ACTIONS(1663), 2, + ACTIONS(739), 4, sym__newline, anon_sym_SEMI, - ACTIONS(5920), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2992), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100805] = 11, + 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(1669), 1, - sym__space, - ACTIONS(3279), 1, + ACTIONS(1598), 1, + sym__entry_separator, + ACTIONS(1602), 1, + anon_sym_RBRACE, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_record, + ACTIONS(6102), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(6401), 1, anon_sym_DOLLAR, - ACTIONS(6345), 1, + ACTIONS(6513), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6347), 1, + ACTIONS(6515), 1, aux_sym__immediate_decimal_token2, - STATE(3091), 1, - sym__immediate_decimal, - STATE(3293), 1, + STATE(3431), 1, sym_comment, - ACTIONS(1671), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5920), 2, + STATE(4442), 1, + sym__immediate_decimal, + ACTIONS(6517), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3074), 2, + STATE(4214), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100842] = 11, - ACTIONS(103), 1, + [105374] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1673), 1, - sym__space, - ACTIONS(3279), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(5879), 1, + anon_sym_DASH2, + STATE(3432), 1, + sym_comment, + ACTIONS(5235), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(6345), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6347), 1, - aux_sym__immediate_decimal_token2, - STATE(2994), 1, - sym__immediate_decimal, - STATE(3294), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105397] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5883), 1, + anon_sym_DASH2, + STATE(3433), 1, sym_comment, - ACTIONS(1675), 2, + ACTIONS(5239), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - ACTIONS(5920), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3094), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100879] = 3, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105420] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3295), 1, + ACTIONS(2266), 1, + anon_sym_DASH2, + STATE(3434), 1, + sym_comment, + ACTIONS(2264), 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, + [105443] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3435), 1, sym_comment, - ACTIONS(6349), 12, + ACTIONS(6519), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223749,12 +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, - [100900] = 3, + [105464] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3296), 1, + STATE(3436), 1, sym_comment, - ACTIONS(6351), 12, + ACTIONS(4885), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223767,14 +228477,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100921] = 4, + [105485] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6355), 1, + ACTIONS(6481), 1, anon_sym_DASH2, - STATE(3297), 1, + STATE(3437), 1, sym_comment, - ACTIONS(6353), 11, + ACTIONS(6173), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223786,64 +228496,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100944] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1617), 1, - sym__space, - ACTIONS(3279), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(6345), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6347), 1, - aux_sym__immediate_decimal_token2, - STATE(3108), 1, - sym__immediate_decimal, - STATE(3298), 1, - sym_comment, - ACTIONS(1619), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5920), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3107), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100981] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1617), 1, - sym__entry_separator, - ACTIONS(5945), 1, - anon_sym_LPAREN2, - ACTIONS(6319), 1, - anon_sym_DOLLAR, - ACTIONS(6357), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6359), 1, - aux_sym__immediate_decimal_token2, - STATE(3299), 1, - sym_comment, - STATE(4169), 1, - sym__immediate_decimal, - ACTIONS(1619), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6100), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4168), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101018] = 3, + [105508] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3300), 1, + STATE(3438), 1, sym_comment, - ACTIONS(6361), 12, + ACTIONS(6521), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223856,12 +228514,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101039] = 3, + [105529] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3301), 1, + STATE(3439), 1, sym_comment, - ACTIONS(5480), 12, + ACTIONS(5683), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -223874,55 +228532,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, - [101060] = 6, + [105550] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - STATE(788), 1, - aux_sym__pipe_separator, - STATE(3302), 1, + ACTIONS(2230), 1, + anon_sym_DASH2, + STATE(3440), 1, sym_comment, - STATE(3418), 1, - aux_sym__repeat_newline, - ACTIONS(2377), 9, + ACTIONS(2228), 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, - [101087] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1464), 1, - anon_sym_BANG, - ACTIONS(6363), 1, - anon_sym_QMARK2, - STATE(351), 1, - sym__path_suffix, - STATE(3303), 1, - sym_comment, - ACTIONS(1444), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1442), 6, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_DOT2, - [101116] = 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105573] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3304), 1, + STATE(3441), 1, sym_comment, - ACTIONS(6154), 12, + ACTIONS(6361), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -223935,30 +228569,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, - [101137] = 3, + [105594] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3305), 1, + ACTIONS(6523), 1, + anon_sym_DASH2, + STATE(3442), 1, sym_comment, - ACTIONS(4799), 12, - ts_builtin_sym_end, + ACTIONS(6204), 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, - [101158] = 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, + [105617] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3306), 1, + STATE(3443), 1, sym_comment, - ACTIONS(6365), 12, + ACTIONS(6525), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223971,12 +228606,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101179] = 3, + [105638] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3307), 1, + STATE(3444), 1, sym_comment, - ACTIONS(6267), 12, + ACTIONS(6369), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -223989,30 +228624,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, - [101200] = 3, + [105659] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3308), 1, + ACTIONS(5921), 1, + anon_sym_DASH2, + STATE(3445), 1, sym_comment, - ACTIONS(6269), 12, - ts_builtin_sym_end, + ACTIONS(5294), 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, - [101221] = 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, + [105682] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3309), 1, + STATE(3446), 1, sym_comment, - ACTIONS(6260), 12, + ACTIONS(6271), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -224025,14 +228661,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, - [101242] = 4, + [105703] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6369), 1, + ACTIONS(2202), 1, anon_sym_DASH2, - STATE(3310), 1, + STATE(3447), 1, sym_comment, - ACTIONS(6367), 11, + ACTIONS(2200), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224044,14 +228680,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101265] = 4, + [105726] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6373), 1, + ACTIONS(6527), 1, anon_sym_DASH2, - STATE(3311), 1, + STATE(3448), 1, sym_comment, - ACTIONS(6371), 11, + ACTIONS(5784), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224063,56 +228699,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101288] = 6, - ACTIONS(103), 1, + [105749] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6375), 1, - anon_sym_DOT, - ACTIONS(6377), 1, - aux_sym__immediate_decimal_token5, - STATE(3312), 1, + STATE(3449), 1, sym_comment, - ACTIONS(747), 4, + ACTIONS(6529), 12, 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, - [101315] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6379), 1, - anon_sym_DOT2, - STATE(349), 1, - sym_path, - STATE(373), 1, - sym_cell_path, - STATE(3313), 1, - sym_comment, - STATE(3412), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1452), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1450), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [101346] = 3, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [105770] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3314), 1, + STATE(3450), 1, sym_comment, - ACTIONS(6381), 12, + ACTIONS(6531), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224125,66 +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, - [101367] = 12, + [105791] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1639), 1, + sym__entry_separator, + ACTIONS(6347), 1, anon_sym_DOLLAR, - ACTIONS(5945), 1, + ACTIONS(6349), 1, anon_sym_LPAREN2, - ACTIONS(5949), 1, + ACTIONS(6351), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5951), 1, + ACTIONS(6353), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6275), 1, - anon_sym_DOLLAR2, - ACTIONS(6277), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6383), 1, + STATE(3451), 1, + sym_comment, + STATE(4211), 1, + sym__immediate_decimal, + ACTIONS(1641), 2, anon_sym_RBRACK, - STATE(3315), 1, + anon_sym_DOT_DOT, + ACTIONS(6355), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4210), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105828] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1667), 1, + sym__entry_separator, + ACTIONS(6347), 1, + anon_sym_DOLLAR, + ACTIONS(6349), 1, + anon_sym_LPAREN2, + ACTIONS(6351), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6353), 1, + aux_sym__immediate_decimal_token2, + STATE(3452), 1, sym_comment, - STATE(3623), 1, + STATE(4253), 1, sym__immediate_decimal, - ACTIONS(5953), 2, + ACTIONS(1669), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6355), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3902), 2, + STATE(4252), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [101406] = 12, + [105865] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1677), 1, + ACTIONS(1681), 1, sym__entry_separator, - ACTIONS(1679), 1, + 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, + STATE(4255), 1, + sym__immediate_decimal, + ACTIONS(1683), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6355), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4254), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105902] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1663), 1, + sym__entry_separator, + ACTIONS(6347), 1, + 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(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(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, - ACTIONS(1691), 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, + 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, + 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(5945), 1, + ACTIONS(6102), 1, anon_sym_LPAREN2, - ACTIONS(6319), 1, + ACTIONS(6401), 1, anon_sym_DOLLAR, - ACTIONS(6321), 1, + ACTIONS(6513), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6323), 1, + ACTIONS(6515), 1, aux_sym__immediate_decimal_token2, - STATE(3316), 1, + STATE(3457), 1, sym_comment, - STATE(4112), 1, + STATE(4449), 1, sym__immediate_decimal, - ACTIONS(6325), 2, + ACTIONS(6517), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4203), 2, + STATE(4258), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [101445] = 3, + [106052] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3317), 1, + STATE(3458), 1, sym_comment, - ACTIONS(6385), 12, + ACTIONS(6273), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224196,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, - [101466] = 3, + [106073] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3318), 1, + ACTIONS(6533), 1, + anon_sym_EQ, + STATE(3459), 1, sym_comment, - ACTIONS(6387), 12, + ACTIONS(6226), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224214,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, - [101487] = 3, + [106096] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3319), 1, - sym_comment, - ACTIONS(6389), 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, @@ -224232,132 +228976,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [101508] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6393), 1, - anon_sym_DASH2, - STATE(3320), 1, - sym_comment, - ACTIONS(6391), 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, - [101531] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6397), 1, - anon_sym_DASH2, - STATE(3321), 1, - sym_comment, - ACTIONS(6395), 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, - [101554] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1661), 1, - sym__entry_separator, - ACTIONS(5945), 1, - anon_sym_LPAREN2, - ACTIONS(6319), 1, - anon_sym_DOLLAR, - ACTIONS(6357), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6359), 1, - aux_sym__immediate_decimal_token2, - STATE(3322), 1, - sym_comment, - STATE(4198), 1, - sym__immediate_decimal, - ACTIONS(1663), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6100), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4197), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101591] = 11, + [106123] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1669), 1, - sym__entry_separator, - ACTIONS(5945), 1, - anon_sym_LPAREN2, - ACTIONS(6319), 1, - anon_sym_DOLLAR, - ACTIONS(6357), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6359), 1, - aux_sym__immediate_decimal_token2, - STATE(3323), 1, + ACTIONS(6537), 1, + anon_sym_DOT, + ACTIONS(6539), 1, + aux_sym__immediate_decimal_token5, + STATE(3461), 1, sym_comment, - STATE(4200), 1, - sym__immediate_decimal, - ACTIONS(1671), 2, + ACTIONS(747), 4, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6100), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4199), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101628] = 11, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(749), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [106150] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1673), 1, + ACTIONS(1663), 1, sym__entry_separator, - ACTIONS(5945), 1, + ACTIONS(6102), 1, anon_sym_LPAREN2, - ACTIONS(6319), 1, + ACTIONS(6401), 1, anon_sym_DOLLAR, - ACTIONS(6357), 1, + ACTIONS(6485), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6359), 1, + ACTIONS(6487), 1, aux_sym__immediate_decimal_token2, - STATE(3324), 1, + STATE(3462), 1, sym_comment, - STATE(4202), 1, + STATE(4257), 1, sym__immediate_decimal, - ACTIONS(1675), 2, + ACTIONS(1665), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(6100), 2, + ACTIONS(6239), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4201), 2, + STATE(4256), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [101665] = 3, + [106187] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3325), 1, - sym_comment, - ACTIONS(6102), 12, - ts_builtin_sym_end, + 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, @@ -224367,15 +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, - [101686] = 3, + [106214] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3326), 1, - sym_comment, - ACTIONS(6208), 12, - ts_builtin_sym_end, + ACTIONS(6034), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6543), 1, + anon_sym_else, + STATE(3464), 1, + sym_comment, + STATE(3468), 1, + aux_sym__repeat_newline, + ACTIONS(6037), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224385,54 +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, - [101707] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6399), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6401), 1, - aux_sym__immediate_decimal_token5, - STATE(3327), 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, - [101734] = 4, + [106241] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2298), 1, - anon_sym_DASH2, - STATE(3328), 1, - sym_comment, - ACTIONS(2296), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6041), 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, - [101757] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3329), 1, + ACTIONS(6545), 1, + anon_sym_else, + STATE(3465), 1, sym_comment, - ACTIONS(6403), 12, - sym__newline, - anon_sym_SEMI, + STATE(3469), 1, + aux_sym__repeat_newline, + ACTIONS(6044), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224442,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, - anon_sym_RPAREN, - [101778] = 3, + [106268] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3330), 1, - sym_comment, - ACTIONS(6405), 12, + 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, @@ -224460,188 +229107,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, - [101799] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6407), 1, - anon_sym_DOT, - ACTIONS(6409), 1, - aux_sym__immediate_decimal_token5, - STATE(3331), 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, - [101826] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2212), 1, - anon_sym_DASH2, - STATE(3332), 1, - sym_comment, - ACTIONS(2210), 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, - [101849] = 4, + [106295] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_DASH2, - STATE(3333), 1, - sym_comment, - ACTIONS(2214), 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, - [101872] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6413), 1, - anon_sym_DASH2, - STATE(3334), 1, + ACTIONS(6549), 1, + anon_sym_else, + STATE(3467), 1, sym_comment, - ACTIONS(6411), 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, - [101895] = 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, + [106322] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2220), 1, - anon_sym_DASH2, - STATE(3335), 1, - sym_comment, - ACTIONS(2218), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6076), 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, - [101918] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6417), 1, - anon_sym_DASH2, - STATE(3336), 1, + ACTIONS(6551), 1, + anon_sym_else, + STATE(3468), 1, sym_comment, - ACTIONS(6415), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(3472), 1, + aux_sym__repeat_newline, + ACTIONS(6079), 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, - [101941] = 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, + [106349] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2224), 1, - anon_sym_DASH2, - STATE(3337), 1, - sym_comment, - ACTIONS(2222), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1968), 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, - [101964] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2228), 1, - anon_sym_DASH2, - STATE(3338), 1, + ACTIONS(6553), 1, + anon_sym_else, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3469), 1, sym_comment, - ACTIONS(2226), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(1966), 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, - [101987] = 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, + [106376] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2232), 1, - anon_sym_DASH2, - STATE(3339), 1, - sym_comment, - ACTIONS(2230), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6185), 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, - [102010] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3340), 1, + ACTIONS(6556), 1, + anon_sym_else, + STATE(3470), 1, sym_comment, - ACTIONS(6419), 12, - sym__newline, - anon_sym_SEMI, + STATE(3473), 1, + aux_sym__repeat_newline, + ACTIONS(6188), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224651,16 +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, - [102031] = 3, + [106403] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3341), 1, - sym_comment, - ACTIONS(6142), 12, - ts_builtin_sym_end, + 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, @@ -224670,72 +229212,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, - [102052] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6421), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6423), 1, - aux_sym__immediate_decimal_token5, - STATE(3342), 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, - [102079] = 4, + [106430] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_DASH2, - STATE(3343), 1, - sym_comment, - ACTIONS(2234), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1968), 1, sym__newline, + 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_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102102] = 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, + [106457] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1931), 1, - anon_sym_DASH2, - ACTIONS(6425), 1, + ACTIONS(1968), 1, sym__newline, - STATE(3344), 2, + ACTIONS(6564), 1, + anon_sym_else, + STATE(527), 1, aux_sym__repeat_newline, + STATE(3473), 1, sym_comment, - ACTIONS(1926), 9, - anon_sym_EQ, - sym_identifier, + ACTIONS(1966), 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, - [102127] = 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, + [106484] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3345), 1, + STATE(3474), 1, sym_comment, - ACTIONS(6152), 12, + ACTIONS(6228), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -224748,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, - [102148] = 3, + [106505] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3346), 1, + STATE(3475), 1, sym_comment, - ACTIONS(6428), 12, + ACTIONS(6567), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224766,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, - [102169] = 4, + [106526] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5807), 1, + ACTIONS(5925), 1, anon_sym_DASH2, - STATE(3347), 1, + STATE(3476), 1, sym_comment, - ACTIONS(5805), 11, + ACTIONS(5923), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224785,13 +229309,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102192] = 3, + [106549] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3348), 1, + STATE(3477), 1, sym_comment, - ACTIONS(6156), 12, - ts_builtin_sym_end, + ACTIONS(4887), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224803,32 +229326,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, - [102213] = 3, + anon_sym_RPAREN, + [106570] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3349), 1, + ACTIONS(2270), 1, + anon_sym_DASH2, + STATE(3478), 1, sym_comment, - ACTIONS(6430), 12, + ACTIONS(2268), 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, - [102234] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [106593] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6434), 1, + ACTIONS(2274), 1, anon_sym_DASH2, - STATE(3350), 1, + STATE(3479), 1, sym_comment, - ACTIONS(6432), 11, + ACTIONS(2272), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224840,14 +229365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102257] = 4, + [106616] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2110), 1, + ACTIONS(6569), 1, anon_sym_DASH2, - STATE(3351), 1, + STATE(3480), 1, sym_comment, - ACTIONS(2108), 11, + ACTIONS(6092), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224859,12 +229384,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102280] = 3, + [106639] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3352), 1, + STATE(3481), 1, sym_comment, - ACTIONS(6436), 12, + ACTIONS(6571), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224877,18 +229402,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102301] = 6, + [106660] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5990), 1, + STATE(3482), 1, + sym_comment, + ACTIONS(6573), 12, sym__newline, - ACTIONS(6438), 1, - anon_sym_else, - STATE(3353), 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, + [106681] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3483), 1, sym_comment, - STATE(3359), 1, - aux_sym__repeat_newline, - ACTIONS(5993), 9, + ACTIONS(6575), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224898,33 +229437,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, - [102328] = 4, + anon_sym_RPAREN, + [106702] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6442), 1, - anon_sym_DASH2, - STATE(3354), 1, + STATE(3484), 1, sym_comment, - ACTIONS(6440), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6577), 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, - [102351] = 4, + [106723] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2118), 1, + ACTIONS(6581), 1, anon_sym_DASH2, - STATE(3355), 1, + STATE(3485), 1, sym_comment, - ACTIONS(2116), 11, + ACTIONS(6579), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224936,39 +229475,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102374] = 6, + [106746] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6444), 1, - anon_sym_DOT, - ACTIONS(6446), 1, - aux_sym__immediate_decimal_token5, - STATE(3356), 1, + STATE(3486), 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, - [102401] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6039), 1, + ACTIONS(6583), 12, sym__newline, - ACTIONS(6448), 1, - anon_sym_else, - STATE(3357), 1, - sym_comment, - STATE(3362), 1, - aux_sym__repeat_newline, - ACTIONS(6042), 9, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224978,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, - [102428] = 6, + anon_sym_RPAREN, + [106767] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5957), 1, - sym__newline, - ACTIONS(6450), 1, - anon_sym_else, - STATE(3358), 1, + STATE(3487), 1, sym_comment, - STATE(3363), 1, - aux_sym__repeat_newline, - ACTIONS(5960), 9, + ACTIONS(6585), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224999,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, - [102455] = 6, + anon_sym_RPAREN, + [106788] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5851), 1, - sym__newline, - ACTIONS(6452), 1, - anon_sym_else, - STATE(3359), 1, + STATE(3488), 1, sym_comment, - STATE(3364), 1, - aux_sym__repeat_newline, - ACTIONS(5854), 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, @@ -225020,37 +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, - [102482] = 4, + [106809] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2126), 1, - anon_sym_DASH2, - STATE(3360), 1, + STATE(3489), 1, sym_comment, - ACTIONS(2124), 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, - [102505] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5924), 1, + ACTIONS(6587), 12, sym__newline, - ACTIONS(6454), 1, - anon_sym_else, - STATE(3361), 1, - sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(5927), 9, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -225060,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, - [102532] = 6, + anon_sym_RPAREN, + [106830] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6019), 1, - sym__newline, - ACTIONS(6456), 1, - anon_sym_else, - STATE(3362), 1, + STATE(3490), 1, sym_comment, - STATE(3366), 1, - aux_sym__repeat_newline, - ACTIONS(6022), 9, + ACTIONS(6589), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -225081,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, - [102559] = 6, + anon_sym_RPAREN, + [106851] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6030), 1, - sym__newline, - ACTIONS(6458), 1, - anon_sym_else, - STATE(3363), 1, + STATE(3491), 1, sym_comment, - STATE(3367), 1, - aux_sym__repeat_newline, - ACTIONS(6033), 9, + ACTIONS(6591), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -225102,39 +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, - [102586] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + [106872] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1928), 1, - sym__newline, - ACTIONS(6460), 1, - anon_sym_else, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3364), 1, + 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, - ACTIONS(1926), 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, - [102613] = 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, + [106911] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5899), 1, - sym__newline, - ACTIONS(6463), 1, - anon_sym_else, - STATE(3365), 1, + STATE(3493), 1, sym_comment, - STATE(3368), 1, - aux_sym__repeat_newline, - ACTIONS(5902), 9, + ACTIONS(6595), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -225144,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, - [102640] = 6, + anon_sym_RPAREN, + [106932] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1928), 1, - sym__newline, - ACTIONS(6465), 1, - anon_sym_else, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3366), 1, + STATE(3494), 1, sym_comment, - ACTIONS(1926), 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, @@ -225165,18 +229646,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, - [102667] = 6, + [106953] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1928), 1, - sym__newline, - ACTIONS(6468), 1, - anon_sym_else, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3367), 1, + STATE(3495), 1, sym_comment, - ACTIONS(1926), 9, + ACTIONS(6597), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -225186,18 +229663,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, - [102694] = 6, + anon_sym_RPAREN, + [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, - ACTIONS(1928), 1, - sym__newline, - ACTIONS(6471), 1, - anon_sym_else, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3368), 1, + STATE(3497), 1, sym_comment, - ACTIONS(1926), 9, + ACTIONS(6603), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -225207,39 +229702,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, - [102721] = 12, + anon_sym_RPAREN, + [107022] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1599), 1, - sym__entry_separator, - ACTIONS(1603), 1, - anon_sym_RBRACK, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(5945), 1, + ACTIONS(1667), 1, + sym__space, + ACTIONS(3118), 1, anon_sym_LPAREN2, - ACTIONS(6319), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(6329), 1, + ACTIONS(6409), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6331), 1, + ACTIONS(6411), 1, aux_sym__immediate_decimal_token2, - STATE(3369), 1, - sym_comment, - STATE(4151), 1, + STATE(3181), 1, sym__immediate_decimal, - ACTIONS(6333), 2, + 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(4171), 2, + STATE(3179), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [102760] = 3, + [107059] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3370), 1, + STATE(3499), 1, sym_comment, - ACTIONS(6474), 12, + ACTIONS(6605), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225252,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, - [102781] = 3, + [107080] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3371), 1, + ACTIONS(6607), 1, + anon_sym_EQ, + STATE(3500), 1, sym_comment, - ACTIONS(6476), 12, + ACTIONS(6226), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225269,13 +229766,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [102802] = 3, + [107103] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3372), 1, + STATE(3501), 1, sym_comment, - ACTIONS(6478), 12, + ACTIONS(6367), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225287,13 +229784,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [102823] = 3, + [107124] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3373), 1, + STATE(3502), 1, sym_comment, - ACTIONS(6480), 12, + ACTIONS(6062), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225305,91 +229802,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [102844] = 4, + [107145] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2154), 1, - anon_sym_DASH2, - STATE(3374), 1, + STATE(3503), 1, sym_comment, - ACTIONS(2152), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6609), 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, - [102867] = 4, + [107166] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, - anon_sym_DASH2, - STATE(3375), 1, + STATE(3504), 1, sym_comment, - ACTIONS(6482), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6611), 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, - [102890] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6486), 1, - anon_sym_DOT, - ACTIONS(6488), 1, - aux_sym__immediate_decimal_token5, - STATE(3376), 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, - [102917] = 4, + [107187] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6492), 1, - anon_sym_DASH2, - STATE(3377), 1, - sym_comment, - ACTIONS(6490), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2907), 1, sym__newline, + STATE(791), 1, + aux_sym__pipe_separator, + STATE(3505), 1, + sym_comment, + STATE(3546), 1, + aux_sym__repeat_newline, + ACTIONS(2325), 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, - [102940] = 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, + [107214] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3378), 1, + STATE(3506), 1, sym_comment, - ACTIONS(6494), 12, + ACTIONS(6613), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225402,59 +229877,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102961] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1599), 1, - anon_sym_LBRACE, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - anon_sym_DOT, - STATE(3379), 1, - sym_comment, - STATE(4057), 1, - sym__immediate_decimal, - ACTIONS(6498), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6500), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4119), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102998] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6504), 1, - aux_sym__immediate_decimal_token5, - STATE(3380), 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, - [103025] = 3, + [107235] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3381), 1, + ACTIONS(6615), 1, + anon_sym_else, + STATE(3507), 1, sym_comment, - ACTIONS(6506), 12, + ACTIONS(6245), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225466,138 +229896,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [103046] = 11, + [107258] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1617), 1, - sym__entry_separator, - ACTIONS(6132), 1, - anon_sym_DOLLAR, - ACTIONS(6134), 1, - anon_sym_LPAREN2, - ACTIONS(6136), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6138), 1, - aux_sym__immediate_decimal_token2, - STATE(3382), 1, + ACTIONS(1466), 1, + anon_sym_BANG, + ACTIONS(6617), 1, + anon_sym_QMARK2, + STATE(367), 1, + sym__path_suffix, + STATE(3508), 1, sym_comment, - STATE(4169), 1, - sym__immediate_decimal, - ACTIONS(1619), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6140), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4168), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103083] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1661), 1, + ACTIONS(1458), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(6132), 1, - anon_sym_DOLLAR, - ACTIONS(6134), 1, - anon_sym_LPAREN2, - ACTIONS(6136), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6138), 1, - aux_sym__immediate_decimal_token2, - STATE(3383), 1, - sym_comment, - STATE(4198), 1, - sym__immediate_decimal, - ACTIONS(1663), 2, + ACTIONS(1456), 6, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - ACTIONS(6140), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4197), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103120] = 11, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_DOT2, + [107287] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1669), 1, - sym__entry_separator, - ACTIONS(6132), 1, - anon_sym_DOLLAR, - ACTIONS(6134), 1, - anon_sym_LPAREN2, - ACTIONS(6136), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6138), 1, - aux_sym__immediate_decimal_token2, - STATE(3384), 1, + ACTIONS(6619), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(372), 1, + sym_cell_path, + STATE(3509), 1, sym_comment, - STATE(4200), 1, - sym__immediate_decimal, - ACTIONS(1671), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6140), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4199), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103157] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1673), 1, + 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(6132), 1, - anon_sym_DOLLAR, - ACTIONS(6134), 1, - anon_sym_LPAREN2, - ACTIONS(6136), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6138), 1, - aux_sym__immediate_decimal_token2, - STATE(3385), 1, - sym_comment, - STATE(4202), 1, - sym__immediate_decimal, - ACTIONS(1675), 2, + ACTIONS(1442), 5, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - ACTIONS(6140), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4201), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103194] = 4, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + [107318] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, - anon_sym_DASH2, - STATE(3386), 1, + STATE(3510), 1, sym_comment, - ACTIONS(6482), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6621), 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, - [103217] = 4, + [107339] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6510), 1, + ACTIONS(2156), 1, anon_sym_DASH2, - STATE(3387), 1, + STATE(3511), 1, sym_comment, - ACTIONS(6508), 11, + ACTIONS(2154), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -225609,12 +229978,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103240] = 3, + [107362] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3388), 1, + STATE(3512), 1, sym_comment, - ACTIONS(6512), 12, + ACTIONS(6623), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225627,12 +229996,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [103261] = 3, + [107383] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3389), 1, + STATE(3513), 1, sym_comment, - ACTIONS(6514), 12, + ACTIONS(6625), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225645,14 +230014,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [103282] = 4, + [107404] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6516), 1, - anon_sym_else, - STATE(3390), 1, + STATE(3514), 1, sym_comment, - ACTIONS(6126), 11, + ACTIONS(6627), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225664,244 +230031,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103305] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1599), 1, - sym__entry_separator, - ACTIONS(1603), 1, - anon_sym_RBRACE, - ACTIONS(1786), 1, - anon_sym_DOLLAR, - ACTIONS(5945), 1, - anon_sym_LPAREN2, - ACTIONS(6096), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6098), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6518), 1, - anon_sym_DOT, - STATE(3391), 1, - sym_comment, - STATE(4079), 1, - sym__immediate_decimal, - ACTIONS(6100), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3846), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103344] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2369), 1, - anon_sym_DASH2, - STATE(3392), 1, - sym_comment, - ACTIONS(2367), 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, - [103367] = 4, + [107425] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2381), 1, - anon_sym_DASH2, - STATE(3393), 1, + STATE(3515), 1, sym_comment, - ACTIONS(2379), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6629), 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, - [103390] = 6, + [107446] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6520), 1, - sym__newline, - ACTIONS(6523), 1, - anon_sym_DASH2, - STATE(3394), 1, + STATE(3516), 1, sym_comment, - ACTIONS(2144), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4393), 8, - sym_identifier, + ACTIONS(6631), 12, + 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_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [103417] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6525), 1, - anon_sym_DOT2, - STATE(349), 1, - sym_path, - STATE(3395), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1510), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1508), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [103443] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1691), 1, - sym__unquoted_pattern, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - STATE(3396), 1, - sym_comment, - STATE(4805), 1, - sym__immediate_decimal, - ACTIONS(6528), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6530), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(726), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103477] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3397), 1, - sym_comment, - ACTIONS(1498), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1496), 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, - [103499] = 6, + [107467] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6532), 1, - anon_sym_DOT, - ACTIONS(6534), 1, - aux_sym__immediate_decimal_token5, - STATE(3398), 1, + STATE(3517), 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, - [103525] = 5, + 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(6541), 1, + ACTIONS(2238), 1, anon_sym_DASH2, - ACTIONS(6538), 2, - sym__newline, - anon_sym_COMMA, - STATE(3399), 2, + STATE(3518), 1, sym_comment, - aux_sym_parameter_repeat2, - ACTIONS(6536), 7, + ACTIONS(2236), 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, - [103549] = 4, + [107511] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1639), 1, + anon_sym_LBRACE, + ACTIONS(1643), 1, + anon_sym_DOT, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(3519), 1, + sym_comment, + 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, + sym_val_variable, + [107545] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3400), 1, + ACTIONS(6635), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(3520), 2, sym_comment, - ACTIONS(1502), 3, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1500), 8, + ACTIONS(1508), 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, - [103571] = 6, + [107571] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6543), 1, - anon_sym_DOT, - ACTIONS(6545), 1, + ACTIONS(6638), 1, aux_sym__immediate_decimal_token5, - STATE(3401), 1, + STATE(3521), 1, sym_comment, - ACTIONS(747), 3, - anon_sym_RBRACE, + ACTIONS(771), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(749), 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, - [103597] = 6, + [107595] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6549), 1, + ACTIONS(5481), 1, anon_sym_DASH2, - STATE(3399), 1, - aux_sym_parameter_repeat2, - STATE(3402), 1, + STATE(3522), 1, sym_comment, + STATE(3564), 1, + aux_sym_parameter_repeat2, ACTIONS(1480), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6547), 7, + ACTIONS(5479), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -225909,17 +230188,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103623] = 5, + [107621] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6446), 1, + ACTIONS(6640), 1, aux_sym__immediate_decimal_token5, - STATE(3403), 1, + STATE(3523), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(771), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 8, + ACTIONS(773), 8, anon_sym_if, sym__newline, anon_sym_PIPE, @@ -225928,140 +230207,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [103647] = 4, + [107645] = 11, ACTIONS(103), 1, anon_sym_POUND, - STATE(3404), 1, - sym_comment, - ACTIONS(1506), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1598), 1, sym__entry_separator, - ACTIONS(1504), 8, - anon_sym_RBRACK, + ACTIONS(1602), 1, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [103669] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6551), 1, - aux_sym__immediate_decimal_token5, - STATE(3405), 1, - sym_comment, - ACTIONS(763), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(765), 6, - sym__space, + ACTIONS(6102), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [103693] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2146), 1, - anon_sym_DASH2, - STATE(3406), 1, - sym_comment, - ACTIONS(2144), 10, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(6401), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [103715] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3407), 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, - [103737] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(884), 1, - sym__space, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - sym__unquoted_pattern, - ACTIONS(6553), 1, - anon_sym_DOT_DOT2, - ACTIONS(6557), 1, - sym_filesize_unit, - ACTIONS(6559), 1, - sym_duration_unit, - STATE(3408), 1, + ACTIONS(6485), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6487), 1, + aux_sym__immediate_decimal_token2, + STATE(3524), 1, sym_comment, - STATE(4671), 1, + STATE(4878), 1, + sym__immediate_decimal, + ACTIONS(6239), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4214), 2, sym__expr_parenthesized_immediate, - ACTIONS(858), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6555), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [103773] = 9, + sym_val_variable, + [107681] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2676), 1, + ACTIONS(1788), 1, + anon_sym_LPAREN, + ACTIONS(2702), 1, aux_sym_expr_unary_token1, - ACTIONS(4838), 1, - anon_sym_DASH2, - ACTIONS(4846), 1, + ACTIONS(2873), 1, anon_sym_DOLLAR, - ACTIONS(5203), 1, - anon_sym_LPAREN, - STATE(1328), 1, + ACTIONS(4879), 1, + anon_sym_DASH2, + STATE(948), 1, sym__expr_unary_minus, - STATE(3409), 1, + STATE(3525), 1, sym_comment, - ACTIONS(2238), 2, + ACTIONS(1938), 2, anon_sym_true, anon_sym_false, - STATE(1315), 4, + STATE(955), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [103805] = 6, + [107713] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5347), 1, + ACTIONS(6644), 1, anon_sym_DASH2, - STATE(3399), 1, - aux_sym_parameter_repeat2, - STATE(3410), 1, + STATE(3526), 1, sym_comment, + STATE(3564), 1, + aux_sym_parameter_repeat2, ACTIONS(1480), 2, sym__newline, anon_sym_COMMA, - ACTIONS(5345), 7, + ACTIONS(6642), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -226069,122 +230275,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103831] = 9, + [107739] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(73), 1, - aux_sym_expr_unary_token1, - ACTIONS(1651), 1, - anon_sym_DOLLAR, - ACTIONS(4834), 1, - anon_sym_LPAREN, - ACTIONS(4838), 1, - anon_sym_DASH2, - STATE(1328), 1, - sym__expr_unary_minus, - STATE(3411), 1, + ACTIONS(6646), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6648), 1, + aux_sym__immediate_decimal_token5, + STATE(3527), 1, sym_comment, - ACTIONS(2238), 2, - anon_sym_true, - anon_sym_false, - STATE(1315), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [103863] = 7, + 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, + [107765] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6379), 1, - anon_sym_DOT2, - STATE(349), 1, - sym_path, - STATE(3395), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3412), 1, + ACTIONS(886), 1, + sym__space, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(5071), 1, + sym__unquoted_pattern, + ACTIONS(6650), 1, + anon_sym_DOT_DOT2, + ACTIONS(6654), 1, + sym_filesize_unit, + ACTIONS(6656), 1, + sym_duration_unit, + STATE(3528), 1, sym_comment, - ACTIONS(1517), 3, + STATE(4929), 1, + sym__expr_parenthesized_immediate, + ACTIONS(866), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6652), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1515), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [103891] = 5, + [107801] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6488), 1, + ACTIONS(6507), 1, aux_sym__immediate_decimal_token5, - STATE(3413), 1, + STATE(3529), 1, sym_comment, ACTIONS(747), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, + 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, - sym__entry_separator, - [103915] = 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(6379), 1, + ACTIONS(6619), 1, anon_sym_DOT2, - STATE(349), 1, + STATE(360), 1, sym_path, - STATE(3412), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3414), 1, + STATE(3531), 1, sym_comment, - STATE(3736), 1, + STATE(3538), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3786), 1, sym_cell_path, - ACTIONS(1681), 3, + ACTIONS(1657), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1683), 4, + ACTIONS(1659), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [103945] = 6, + [107887] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(2148), 1, anon_sym_DASH2, - STATE(3399), 1, - aux_sym_parameter_repeat2, - STATE(3415), 1, + STATE(3532), 1, sym_comment, - ACTIONS(1480), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(5383), 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, - [103971] = 5, + [107909] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6561), 1, + ACTIONS(6491), 1, aux_sym__immediate_decimal_token5, - STATE(3416), 1, + STATE(3533), 1, sym_comment, - ACTIONS(763), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(765), 8, + ACTIONS(749), 8, anon_sym_if, sym__newline, anon_sym_PIPE, @@ -226193,81 +230421,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [103995] = 6, - ACTIONS(3), 1, + [107933] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6563), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6565), 1, + ACTIONS(6425), 1, aux_sym__immediate_decimal_token5, - STATE(3417), 1, + STATE(3534), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(747), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + sym__unquoted_pattern_in_list, + ACTIONS(749), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104021] = 5, - ACTIONS(3), 1, + sym__entry_separator, + [107957] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3418), 1, + STATE(3535), 1, sym_comment, - ACTIONS(2533), 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, - [104045] = 9, + ACTIONS(1541), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1539), 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, + [107979] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1784), 1, - anon_sym_LPAREN, - ACTIONS(2776), 1, + ACTIONS(2786), 1, aux_sym_expr_unary_token1, - ACTIONS(2897), 1, + ACTIONS(3894), 1, anon_sym_DOLLAR, - ACTIONS(4809), 1, + ACTIONS(4901), 1, anon_sym_DASH2, - STATE(911), 1, + ACTIONS(5269), 1, + anon_sym_LPAREN, + STATE(1290), 1, sym__expr_unary_minus, - STATE(3419), 1, + STATE(3536), 1, sym_comment, - ACTIONS(1904), 2, + ACTIONS(2208), 2, anon_sym_true, anon_sym_false, - STATE(914), 4, + STATE(1302), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [104077] = 6, + [108011] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6569), 1, + 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, + 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(1506), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1504), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + [108061] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6662), 1, anon_sym_DASH2, - STATE(3399), 1, - aux_sym_parameter_repeat2, - STATE(3420), 1, + STATE(3539), 1, sym_comment, + STATE(3564), 1, + aux_sym_parameter_repeat2, ACTIONS(1480), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6567), 7, + ACTIONS(6660), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -226275,158 +230540,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [104103] = 4, + [108087] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3421), 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(1525), 3, + STATE(3810), 1, + sym_cell_path, + ACTIONS(1645), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1523), 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, - [104125] = 5, - ACTIONS(103), 1, + [108117] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6377), 1, - aux_sym__immediate_decimal_token5, - STATE(3422), 1, + ACTIONS(5505), 1, + anon_sym_DASH2, + STATE(3541), 1, sym_comment, - ACTIONS(747), 4, + STATE(3564), 1, + aux_sym_parameter_repeat2, + ACTIONS(1480), 2, 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, - [104149] = 9, + anon_sym_COMMA, + 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, + [108143] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(173), 1, - aux_sym_expr_unary_token1, - ACTIONS(1601), 1, + ACTIONS(1598), 1, + anon_sym_LBRACE, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(2873), 1, anon_sym_DOLLAR, - ACTIONS(4807), 1, - anon_sym_LPAREN, - ACTIONS(4809), 1, - anon_sym_DASH2, - STATE(911), 1, - sym__expr_unary_minus, - STATE(3423), 1, + STATE(3542), 1, sym_comment, - ACTIONS(1904), 2, - anon_sym_true, - anon_sym_false, - STATE(914), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(4942), 1, + sym__immediate_decimal, + ACTIONS(6664), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6666), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(730), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [104181] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3424), 1, - sym_comment, - ACTIONS(1529), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1527), 8, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [104203] = 5, + [108177] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6571), 1, + ACTIONS(6668), 1, aux_sym__immediate_decimal_token5, - STATE(3425), 1, + STATE(3543), 1, sym_comment, - ACTIONS(763), 4, + ACTIONS(771), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(765), 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, - [104227] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6573), 1, - anon_sym_else, - STATE(3426), 1, - sym_comment, - ACTIONS(6126), 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, - [104249] = 11, + [108201] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(884), 1, + ACTIONS(886), 1, sym__entry_separator, - ACTIONS(6277), 1, + ACTIONS(6479), 1, sym__unquoted_pattern_in_list, - ACTIONS(6575), 1, + ACTIONS(6670), 1, anon_sym_LPAREN2, - ACTIONS(6577), 1, + ACTIONS(6672), 1, anon_sym_DOT_DOT2, - ACTIONS(6581), 1, + ACTIONS(6676), 1, sym_filesize_unit, - ACTIONS(6583), 1, + ACTIONS(6678), 1, sym_duration_unit, - STATE(3427), 1, + STATE(3544), 1, sym_comment, - STATE(4728), 1, + STATE(4803), 1, sym__expr_parenthesized_immediate, - ACTIONS(858), 2, + ACTIONS(866), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(6579), 2, + ACTIONS(6674), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [104285] = 5, + [108237] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6409), 1, + ACTIONS(6680), 1, + anon_sym_DOT, + ACTIONS(6682), 1, aux_sym__immediate_decimal_token5, - STATE(3428), 1, + STATE(3545), 1, sym_comment, - ACTIONS(747), 4, - anon_sym_RBRACK, + ACTIONS(747), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, + sym__unquoted_pattern_in_record, ACTIONS(749), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, @@ -226434,14 +230670,53 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [104309] = 6, + [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, + 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(6684), 1, + anon_sym_DOT, + ACTIONS(6686), 1, + aux_sym__immediate_decimal_token5, + STATE(3547), 1, + sym_comment, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + 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, + [108313] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6585), 1, + ACTIONS(6688), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6587), 1, + ACTIONS(6690), 1, aux_sym__immediate_decimal_token5, - STATE(3429), 1, + STATE(3548), 1, sym_comment, ACTIONS(739), 3, anon_sym_RBRACE, @@ -226454,147 +230729,266 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [104335] = 6, + [108339] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6589), 1, + ACTIONS(6692), 1, anon_sym_DOT, - ACTIONS(6591), 1, + ACTIONS(6694), 1, aux_sym__immediate_decimal_token5, - STATE(3430), 1, + STATE(3549), 1, sym_comment, ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, ACTIONS(749), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104361] = 8, + [108365] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6379), 1, - anon_sym_DOT2, - STATE(349), 1, - sym_path, - STATE(3412), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3431), 1, + STATE(3550), 1, sym_comment, - STATE(3735), 1, - sym_cell_path, - ACTIONS(1687), 3, + ACTIONS(1521), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1689), 4, + ACTIONS(1519), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [104391] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6593), 1, - aux_sym__immediate_decimal_token5, - STATE(3432), 1, - sym_comment, - ACTIONS(763), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(765), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [104415] = 9, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [108387] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(2192), 1, + ACTIONS(73), 1, aux_sym_expr_unary_token1, - ACTIONS(4807), 1, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(4897), 1, anon_sym_LPAREN, - ACTIONS(4809), 1, + ACTIONS(4901), 1, anon_sym_DASH2, - STATE(911), 1, + STATE(1290), 1, sym__expr_unary_minus, - STATE(3433), 1, + STATE(3551), 1, sym_comment, - ACTIONS(2184), 2, + ACTIONS(2208), 2, anon_sym_true, anon_sym_false, - STATE(914), 4, + STATE(1302), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [104447] = 10, + [108419] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1617), 1, + ACTIONS(1651), 1, anon_sym_LBRACE, - ACTIONS(1621), 1, - anon_sym_DOT, - ACTIONS(2897), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(2873), 1, anon_sym_DOLLAR, - STATE(3434), 1, + STATE(3552), 1, sym_comment, - STATE(4118), 1, + STATE(4790), 1, sym__immediate_decimal, - ACTIONS(6498), 2, + 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, + ACTIONS(6485), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6487), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6500), 2, + 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(4117), 2, + STATE(4258), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104481] = 6, + [108489] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6696), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6597), 1, + ACTIONS(6698), 1, aux_sym__immediate_decimal_token5, - STATE(3435), 1, + STATE(3554), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, ACTIONS(741), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104507] = 6, + [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(6601), 1, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(2430), 1, + aux_sym_expr_unary_token1, + ACTIONS(4877), 1, + anon_sym_LPAREN, + ACTIONS(4879), 1, anon_sym_DASH2, - STATE(3399), 1, + STATE(948), 1, + sym__expr_unary_minus, + STATE(3556), 1, + sym_comment, + ACTIONS(2422), 2, + anon_sym_true, + anon_sym_false, + STATE(955), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [108569] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3557), 1, + sym_comment, + ACTIONS(1529), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1527), 8, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [108591] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6700), 1, + aux_sym__immediate_decimal_token5, + STATE(3558), 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, + [108615] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6539), 1, + aux_sym__immediate_decimal_token5, + STATE(3559), 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, + [108639] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5452), 1, + anon_sym_DASH2, + STATE(3560), 1, + sym_comment, + STATE(3564), 1, aux_sym_parameter_repeat2, - STATE(3436), 1, + 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, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [108665] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6704), 1, + anon_sym_DASH2, + STATE(3561), 1, sym_comment, + STATE(3564), 1, + aux_sym_parameter_repeat2, ACTIONS(1480), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6599), 7, + ACTIONS(6702), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -226602,68 +230996,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [104533] = 11, + [108691] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1599), 1, + STATE(3562), 1, + sym_comment, + ACTIONS(1533), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1603), 1, + ACTIONS(1531), 8, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(5945), 1, - anon_sym_LPAREN2, - ACTIONS(6319), 1, - anon_sym_DOLLAR, - ACTIONS(6357), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6359), 1, - aux_sym__immediate_decimal_token2, - STATE(3437), 1, - sym_comment, - STATE(4726), 1, - sym__immediate_decimal, - ACTIONS(6100), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4171), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104569] = 10, - ACTIONS(3), 1, + 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, - ACTIONS(1599), 1, - anon_sym_LBRACE, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - STATE(3438), 1, + STATE(3563), 1, sym_comment, - STATE(4742), 1, - sym__immediate_decimal, - ACTIONS(6528), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6530), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(780), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104603] = 6, + ACTIONS(1537), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + 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(5363), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - STATE(3399), 1, - aux_sym_parameter_repeat2, - STATE(3439), 1, - sym_comment, - ACTIONS(1480), 2, + ACTIONS(6708), 2, sym__newline, anon_sym_COMMA, - ACTIONS(5361), 7, + STATE(3564), 2, + sym_comment, + aux_sym_parameter_repeat2, + ACTIONS(6706), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -226671,1206 +231051,1058 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [104629] = 11, + [108759] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1677), 1, - sym__entry_separator, - ACTIONS(1679), 1, - anon_sym_RBRACE, - ACTIONS(5945), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - ACTIONS(6319), 1, - anon_sym_DOLLAR, - ACTIONS(6357), 1, + ACTIONS(1820), 1, + aux_sym_unquoted_token2, + ACTIONS(3422), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6359), 1, + ACTIONS(6713), 1, + anon_sym_DOLLAR, + ACTIONS(6715), 1, aux_sym__immediate_decimal_token2, - STATE(3440), 1, - sym_comment, - STATE(4782), 1, + STATE(1456), 1, sym__immediate_decimal, - ACTIONS(6100), 2, + STATE(3565), 1, + sym_comment, + ACTIONS(6717), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4203), 2, + STATE(950), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104665] = 10, + [108792] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1609), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1776), 1, + ACTIONS(1734), 1, aux_sym_unquoted_token2, - ACTIONS(6603), 1, + ACTIONS(3790), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6719), 1, anon_sym_DOLLAR, - ACTIONS(6605), 1, + ACTIONS(6721), 1, aux_sym__immediate_decimal_token2, - STATE(510), 1, + STATE(1856), 1, sym__immediate_decimal, - STATE(3441), 1, + STATE(3566), 1, sym_comment, - ACTIONS(6607), 2, + ACTIONS(6723), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(698), 2, + STATE(700), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104698] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6609), 1, - anon_sym_DQUOTE, - ACTIONS(6611), 1, - anon_sym_SQUOTE, - ACTIONS(6613), 1, - anon_sym_BQUOTE, - ACTIONS(6615), 1, - aux_sym_path_token1, - ACTIONS(6617), 1, - sym_raw_string_begin, - STATE(3442), 1, - sym_comment, - STATE(4017), 1, - sym_val_string, - STATE(4222), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [104729] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6619), 1, - anon_sym_DQUOTE, - ACTIONS(6621), 1, - anon_sym_SQUOTE, - ACTIONS(6623), 1, - anon_sym_BQUOTE, - ACTIONS(6625), 1, - aux_sym_path_token1, - ACTIONS(6627), 1, - sym_raw_string_begin, - STATE(2347), 1, - sym_val_string, - STATE(3443), 1, - sym_comment, - STATE(2523), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [104760] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6629), 1, - anon_sym_DQUOTE, - ACTIONS(6631), 1, - anon_sym_SQUOTE, - ACTIONS(6633), 1, - anon_sym_BQUOTE, - ACTIONS(6635), 1, - aux_sym_path_token1, - ACTIONS(6637), 1, - sym_raw_string_begin, - STATE(1724), 1, - sym_val_string, - STATE(3444), 1, - sym_comment, - STATE(1765), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [104791] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6639), 1, - anon_sym_DQUOTE, - ACTIONS(6641), 1, - anon_sym_SQUOTE, - ACTIONS(6643), 1, - anon_sym_BQUOTE, - ACTIONS(6645), 1, - aux_sym_path_token1, - ACTIONS(6647), 1, - sym_raw_string_begin, - STATE(2376), 1, - sym_val_string, - STATE(3445), 1, - sym_comment, - STATE(2354), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [104822] = 9, + [108825] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(6625), 1, - aux_sym_path_token1, - ACTIONS(6649), 1, - anon_sym_DQUOTE, - ACTIONS(6651), 1, - anon_sym_SQUOTE, - ACTIONS(6653), 1, - anon_sym_BQUOTE, - STATE(2347), 1, - sym_val_string, - STATE(3446), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1734), 1, + aux_sym_unquoted_token2, + ACTIONS(3956), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6719), 1, + anon_sym_DOLLAR, + ACTIONS(6725), 1, + aux_sym__immediate_decimal_token2, + STATE(1978), 1, + sym__immediate_decimal, + STATE(3567), 1, sym_comment, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [104853] = 9, + ACTIONS(6727), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(890), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [108858] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3028), 1, + ACTIONS(1436), 1, sym_raw_string_begin, - ACTIONS(6655), 1, + ACTIONS(6729), 1, anon_sym_DQUOTE, - ACTIONS(6657), 1, + ACTIONS(6731), 1, anon_sym_SQUOTE, - ACTIONS(6659), 1, + ACTIONS(6733), 1, anon_sym_BQUOTE, - ACTIONS(6661), 1, + ACTIONS(6735), 1, aux_sym_path_token1, - STATE(2494), 1, + STATE(3508), 1, sym_val_string, - STATE(3447), 1, + STATE(3568), 1, sym_comment, - STATE(2576), 4, + STATE(3665), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104884] = 9, + [108889] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1436), 1, + ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(6663), 1, - anon_sym_DQUOTE, - ACTIONS(6665), 1, - anon_sym_SQUOTE, - ACTIONS(6667), 1, - anon_sym_BQUOTE, - ACTIONS(6669), 1, - aux_sym_path_token1, - STATE(3448), 1, - sym_comment, - STATE(3649), 1, - sym_val_string, - STATE(3594), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [104915] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6671), 1, + ACTIONS(6737), 1, anon_sym_DQUOTE, - ACTIONS(6673), 1, + ACTIONS(6739), 1, anon_sym_SQUOTE, - ACTIONS(6675), 1, + ACTIONS(6741), 1, anon_sym_BQUOTE, - ACTIONS(6677), 1, + ACTIONS(6743), 1, aux_sym_path_token1, - ACTIONS(6679), 1, - sym_raw_string_begin, - STATE(336), 1, + STATE(409), 1, sym_val_string, - STATE(3449), 1, + STATE(3569), 1, sym_comment, - STATE(356), 4, + STATE(426), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104946] = 6, - ACTIONS(103), 1, + [108920] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6681), 1, + ACTIONS(6745), 1, anon_sym_DOT, - ACTIONS(6683), 1, + ACTIONS(6747), 1, aux_sym__immediate_decimal_token5, - STATE(3450), 1, + STATE(3570), 1, sym_comment, - ACTIONS(1754), 4, - anon_sym_LPAREN2, + 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, - sym__entry_separator, - ACTIONS(1756), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [104971] = 5, - ACTIONS(3), 1, + [108945] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6591), 1, - aux_sym__immediate_decimal_token5, - STATE(3451), 1, + STATE(3571), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(739), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(741), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104994] = 11, + [108966] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(858), 1, - anon_sym_RBRACE, - ACTIONS(884), 1, - sym__entry_separator, - ACTIONS(5126), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(6685), 1, - anon_sym_DOT_DOT2, - ACTIONS(6689), 1, - sym_filesize_unit, - ACTIONS(6691), 1, - sym_duration_unit, - ACTIONS(6693), 1, - sym__unquoted_pattern_in_record, - STATE(3452), 1, + ACTIONS(1734), 1, + aux_sym_unquoted_token2, + ACTIONS(5322), 1, + anon_sym_DOLLAR, + ACTIONS(5905), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6749), 1, + aux_sym__immediate_decimal_token2, + STATE(3572), 1, sym_comment, - STATE(4815), 1, + STATE(3771), 1, + sym__immediate_decimal, + ACTIONS(6751), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3825), 2, sym__expr_parenthesized_immediate, - ACTIONS(6687), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [105029] = 4, - ACTIONS(3), 1, + sym_val_variable, + [108999] = 10, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3453), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1734), 1, + aux_sym_unquoted_token2, + ACTIONS(5322), 1, + anon_sym_DOLLAR, + ACTIONS(5975), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6753), 1, + aux_sym__immediate_decimal_token2, + STATE(3573), 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, - [105050] = 4, + STATE(4181), 1, + sym__immediate_decimal, + ACTIONS(6755), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(890), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109032] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6757), 1, + anon_sym_DQUOTE, + ACTIONS(6759), 1, + anon_sym_SQUOTE, + ACTIONS(6761), 1, + anon_sym_BQUOTE, + ACTIONS(6763), 1, + aux_sym_path_token1, + ACTIONS(6765), 1, + sym_raw_string_begin, + STATE(369), 1, + sym_val_string, + STATE(3574), 1, + sym_comment, + STATE(396), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [109063] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3454), 1, + STATE(3575), 1, sym_comment, ACTIONS(739), 4, - sym__newline, - anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, + sym__unquoted_pattern_in_list, ACTIONS(741), 6, - sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [105071] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DOLLAR, - ACTIONS(5945), 1, - anon_sym_LPAREN2, - ACTIONS(6170), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6172), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6693), 1, - aux_sym__unquoted_in_record_token2, - STATE(3455), 1, - sym_comment, - STATE(3742), 1, - sym__immediate_decimal, - ACTIONS(6174), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3815), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105104] = 5, + sym__entry_separator, + [109084] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6695), 1, - aux_sym__immediate_decimal_token5, - STATE(3456), 1, + STATE(3576), 1, sym_comment, - ACTIONS(763), 3, - anon_sym_RBRACE, + ACTIONS(771), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(765), 6, + 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, - [105127] = 10, + [109105] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3230), 1, - anon_sym_LPAREN2, - ACTIONS(3695), 1, - anon_sym_DOLLAR, - ACTIONS(4932), 1, + ACTIONS(6767), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4934), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5072), 1, - aux_sym_unquoted_token2, - STATE(2878), 1, - sym__immediate_decimal, - STATE(3457), 1, - sym_comment, - ACTIONS(4936), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3227), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105160] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6697), 1, - anon_sym_DOT, - ACTIONS(6699), 1, + ACTIONS(6769), 1, aux_sym__immediate_decimal_token5, - STATE(3458), 1, + STATE(3577), 1, sym_comment, - ACTIONS(1754), 4, + ACTIONS(1770), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1756), 4, + ACTIONS(1772), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [105185] = 10, + [109130] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(3118), 1, anon_sym_LPAREN2, - ACTIONS(1776), 1, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(5071), 1, aux_sym_unquoted_token2, - ACTIONS(3906), 1, + ACTIONS(6167), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6603), 1, - anon_sym_DOLLAR, - ACTIONS(6701), 1, + ACTIONS(6169), 1, aux_sym__immediate_decimal_token2, - STATE(1840), 1, - sym__immediate_decimal, - STATE(3459), 1, + STATE(3578), 1, sym_comment, - ACTIONS(6703), 2, + STATE(3751), 1, + sym__immediate_decimal, + ACTIONS(6171), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(698), 2, + STATE(3988), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105218] = 10, + [109163] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(3118), 1, anon_sym_LPAREN2, - ACTIONS(1776), 1, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(5071), 1, aux_sym_unquoted_token2, - ACTIONS(3938), 1, + ACTIONS(6255), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6603), 1, - anon_sym_DOLLAR, - ACTIONS(6705), 1, + ACTIONS(6257), 1, aux_sym__immediate_decimal_token2, - STATE(1959), 1, - sym__immediate_decimal, - STATE(3460), 1, + STATE(3579), 1, sym_comment, - ACTIONS(6707), 2, + STATE(4147), 1, + sym__immediate_decimal, + ACTIONS(6259), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(884), 2, + STATE(3120), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105251] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1436), 1, - sym_raw_string_begin, - ACTIONS(6663), 1, - anon_sym_DQUOTE, - ACTIONS(6665), 1, - anon_sym_SQUOTE, - ACTIONS(6667), 1, - anon_sym_BQUOTE, - ACTIONS(6709), 1, - aux_sym_path_token1, - STATE(3303), 1, - sym_val_string, - STATE(3461), 1, - sym_comment, - STATE(3594), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [105282] = 9, + [109196] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(105), 1, + ACTIONS(3806), 1, sym_raw_string_begin, - ACTIONS(6711), 1, + ACTIONS(6771), 1, anon_sym_DQUOTE, - ACTIONS(6713), 1, + ACTIONS(6773), 1, anon_sym_SQUOTE, - ACTIONS(6715), 1, + ACTIONS(6775), 1, anon_sym_BQUOTE, - ACTIONS(6717), 1, + ACTIONS(6777), 1, aux_sym_path_token1, - STATE(481), 1, + STATE(2597), 1, sym_val_string, - STATE(3462), 1, + STATE(3580), 1, sym_comment, - STATE(485), 4, + STATE(2379), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105313] = 5, + [109227] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6545), 1, - aux_sym__immediate_decimal_token5, - STATE(3463), 1, + STATE(3581), 1, sym_comment, - ACTIONS(747), 3, - anon_sym_RBRACE, + ACTIONS(771), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(749), 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, - [105336] = 10, + [109248] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5945), 1, + ACTIONS(6102), 1, anon_sym_LPAREN2, - ACTIONS(6277), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6319), 1, + ACTIONS(6401), 1, anon_sym_DOLLAR, - ACTIONS(6329), 1, + ACTIONS(6513), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6331), 1, + ACTIONS(6515), 1, aux_sym__immediate_decimal_token2, - STATE(3464), 1, + ACTIONS(6779), 1, + aux_sym__unquoted_in_record_token2, + STATE(3582), 1, sym_comment, - STATE(4374), 1, + STATE(4428), 1, sym__immediate_decimal, - ACTIONS(6333), 2, + ACTIONS(6517), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4120), 2, + STATE(4413), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105369] = 10, + [109281] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6132), 1, - anon_sym_DOLLAR, - ACTIONS(6134), 1, + ACTIONS(3118), 1, anon_sym_LPAREN2, - ACTIONS(6136), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6138), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6277), 1, - aux_sym__unquoted_in_list_token2, - STATE(3465), 1, - sym_comment, - STATE(4033), 1, - sym__immediate_decimal, - ACTIONS(6140), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4120), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105402] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(5945), 1, - anon_sym_LPAREN2, - ACTIONS(6096), 1, + ACTIONS(4940), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6098), 1, + ACTIONS(4942), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6277), 1, - aux_sym__unquoted_in_list_token2, - STATE(3466), 1, - sym_comment, - STATE(3759), 1, + ACTIONS(5071), 1, + aux_sym_unquoted_token2, + STATE(2559), 1, sym__immediate_decimal, - ACTIONS(6100), 2, + STATE(3583), 1, + sym_comment, + ACTIONS(4944), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3815), 2, + STATE(2655), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105435] = 10, + [109314] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5945), 1, + ACTIONS(3118), 1, anon_sym_LPAREN2, - ACTIONS(6319), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(6321), 1, + ACTIONS(4964), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6323), 1, + ACTIONS(4966), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6693), 1, - aux_sym__unquoted_in_record_token2, - STATE(3467), 1, - sym_comment, - STATE(4412), 1, - sym__immediate_decimal, - ACTIONS(6325), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4120), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105468] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1661), 1, - anon_sym_LBRACE, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - STATE(718), 1, + ACTIONS(5071), 1, + aux_sym_unquoted_token2, + STATE(2801), 1, sym__immediate_decimal, - STATE(3468), 1, + STATE(3584), 1, sym_comment, - ACTIONS(6500), 2, + ACTIONS(4968), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6719), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(717), 2, + STATE(3120), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105499] = 9, - ACTIONS(3), 1, + [109347] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1669), 1, - anon_sym_LBRACE, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - STATE(723), 1, - sym__immediate_decimal, - STATE(3469), 1, + 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(6787), 1, + aux_sym_path_token1, + STATE(2388), 1, + sym_val_string, + STATE(3585), 1, sym_comment, - ACTIONS(6500), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6719), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(722), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105530] = 4, - ACTIONS(3), 1, + STATE(2568), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [109378] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3470), 1, + STATE(3586), 1, sym_comment, - ACTIONS(789), 2, + ACTIONS(860), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(791), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(862), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [105551] = 10, + [109399] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1776), 1, + ACTIONS(1608), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1734), 1, aux_sym_unquoted_token2, - ACTIONS(5195), 1, + ACTIONS(6719), 1, anon_sym_DOLLAR, - ACTIONS(5739), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6721), 1, + ACTIONS(6789), 1, aux_sym__immediate_decimal_token2, - STATE(3471), 1, - sym_comment, - STATE(3634), 1, + STATE(526), 1, sym__immediate_decimal, - ACTIONS(6723), 2, + STATE(3587), 1, + sym_comment, + ACTIONS(6791), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3667), 2, + STATE(700), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105584] = 10, + [109432] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1776), 1, + ACTIONS(1675), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1734), 1, aux_sym_unquoted_token2, - ACTIONS(5195), 1, + ACTIONS(6719), 1, anon_sym_DOLLAR, - ACTIONS(5941), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6725), 1, + ACTIONS(6793), 1, aux_sym__immediate_decimal_token2, - STATE(3472), 1, - sym_comment, - STATE(3986), 1, + STATE(945), 1, sym__immediate_decimal, - ACTIONS(6727), 2, + STATE(3588), 1, + sym_comment, + ACTIONS(6795), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(884), 2, + STATE(890), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105617] = 9, + [109465] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6729), 1, + ACTIONS(6797), 1, anon_sym_DQUOTE, - ACTIONS(6731), 1, + ACTIONS(6799), 1, anon_sym_SQUOTE, - ACTIONS(6733), 1, + ACTIONS(6801), 1, anon_sym_BQUOTE, - ACTIONS(6735), 1, + ACTIONS(6803), 1, aux_sym_path_token1, - ACTIONS(6737), 1, + ACTIONS(6805), 1, sym_raw_string_begin, - STATE(371), 1, + STATE(1766), 1, sym_val_string, - STATE(3473), 1, + STATE(3589), 1, sym_comment, - STATE(393), 4, + STATE(1806), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105648] = 5, - ACTIONS(3), 1, + [109496] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6739), 1, - aux_sym__immediate_decimal_token5, - STATE(3474), 1, + STATE(3590), 1, sym_comment, - ACTIONS(763), 2, + ACTIONS(860), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(765), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + 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, - [105671] = 5, - ACTIONS(3), 1, + sym__entry_separator, + [109517] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6741), 1, - aux_sym__immediate_decimal_token5, - STATE(3475), 1, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(6807), 1, + anon_sym_DQUOTE, + ACTIONS(6809), 1, + anon_sym_SQUOTE, + ACTIONS(6811), 1, + anon_sym_BQUOTE, + ACTIONS(6813), 1, + aux_sym_path_token1, + STATE(490), 1, + sym_val_string, + STATE(3591), 1, sym_comment, - ACTIONS(763), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(765), 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, - [105694] = 11, + STATE(502), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [109548] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(858), 1, - anon_sym_RBRACK, - ACTIONS(884), 1, - sym__entry_separator, - ACTIONS(6277), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6575), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - ACTIONS(6743), 1, - anon_sym_DOT_DOT2, - ACTIONS(6747), 1, - sym_filesize_unit, - ACTIONS(6749), 1, - sym_duration_unit, - STATE(3476), 1, + ACTIONS(1820), 1, + aux_sym_unquoted_token2, + ACTIONS(4918), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5271), 1, + anon_sym_DOLLAR, + ACTIONS(6815), 1, + aux_sym__immediate_decimal_token2, + STATE(2479), 1, + sym__immediate_decimal, + STATE(3592), 1, sym_comment, - STATE(4728), 1, + ACTIONS(6817), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2629), 2, sym__expr_parenthesized_immediate, - ACTIONS(6745), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [105729] = 10, + sym_val_variable, + [109581] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + ACTIONS(1820), 1, + aux_sym_unquoted_token2, + ACTIONS(4934), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5271), 1, + anon_sym_DOLLAR, + ACTIONS(6819), 1, + aux_sym__immediate_decimal_token2, + STATE(2712), 1, + sym__immediate_decimal, + STATE(3593), 1, + sym_comment, + ACTIONS(6821), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1333), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109614] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6823), 1, + anon_sym_DQUOTE, + ACTIONS(6825), 1, + anon_sym_SQUOTE, + ACTIONS(6827), 1, + anon_sym_BQUOTE, + ACTIONS(6829), 1, + aux_sym_path_token1, + ACTIONS(6831), 1, + sym_raw_string_begin, + STATE(3594), 1, + sym_comment, + STATE(3801), 1, + sym_val_string, + STATE(3944), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [109645] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1776), 1, + ACTIONS(1734), 1, aux_sym_unquoted_token2, - ACTIONS(5195), 1, + ACTIONS(5322), 1, anon_sym_DOLLAR, - ACTIONS(6498), 1, + ACTIONS(6664), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6751), 1, + ACTIONS(6833), 1, aux_sym__immediate_decimal_token2, - STATE(3477), 1, + STATE(3595), 1, sym_comment, - STATE(3949), 1, + STATE(4860), 1, sym__immediate_decimal, - ACTIONS(6753), 2, + ACTIONS(6835), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4100), 2, + STATE(890), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105762] = 9, - ACTIONS(3), 1, + [109678] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1673), 1, - anon_sym_LBRACE, - ACTIONS(2897), 1, + ACTIONS(1734), 1, + aux_sym_unquoted_token2, + ACTIONS(4909), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5322), 1, anon_sym_DOLLAR, - STATE(725), 1, + ACTIONS(6837), 1, + aux_sym__immediate_decimal_token2, + STATE(2443), 1, sym__immediate_decimal, - STATE(3478), 1, + STATE(3596), 1, sym_comment, - ACTIONS(6500), 2, + ACTIONS(6839), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6719), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(724), 2, + STATE(2552), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105793] = 10, + [109711] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DOLLAR, - ACTIONS(5945), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(5949), 1, + ACTIONS(1734), 1, + aux_sym_unquoted_token2, + ACTIONS(4922), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5951), 1, + ACTIONS(5322), 1, + anon_sym_DOLLAR, + ACTIONS(6841), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6277), 1, - aux_sym__unquoted_in_list_token2, - STATE(3479), 1, - sym_comment, - STATE(3623), 1, + STATE(2634), 1, sym__immediate_decimal, - ACTIONS(5953), 2, + STATE(3597), 1, + sym_comment, + ACTIONS(6843), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3902), 2, + STATE(890), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105826] = 6, - ACTIONS(3), 1, + [109744] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6755), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6757), 1, - aux_sym__immediate_decimal_token5, - STATE(3480), 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(1748), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1746), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [105851] = 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(3279), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(5017), 1, + ACTIONS(1734), 1, aux_sym_unquoted_token2, - ACTIONS(5916), 1, + ACTIONS(5322), 1, + anon_sym_DOLLAR, + ACTIONS(6161), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5918), 1, + ACTIONS(6853), 1, aux_sym__immediate_decimal_token2, - STATE(3481), 1, + STATE(3599), 1, sym_comment, - STATE(3657), 1, + STATE(3836), 1, sym__immediate_decimal, - ACTIONS(5920), 2, + ACTIONS(6855), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3888), 2, + STATE(3825), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105884] = 10, + [109808] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3279), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(5017), 1, + ACTIONS(1734), 1, aux_sym_unquoted_token2, - ACTIONS(6108), 1, + ACTIONS(5322), 1, + anon_sym_DOLLAR, + ACTIONS(6251), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6110), 1, + ACTIONS(6857), 1, aux_sym__immediate_decimal_token2, - STATE(3482), 1, + STATE(3600), 1, sym_comment, - STATE(3967), 1, + STATE(4280), 1, sym__immediate_decimal, - ACTIONS(6112), 2, + ACTIONS(6859), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3062), 2, + STATE(890), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105917] = 10, + [109841] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + 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, + 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(3329), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - ACTIONS(4979), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(4981), 1, + ACTIONS(1820), 1, + aux_sym_unquoted_token2, + ACTIONS(3448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5136), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(6759), 1, + ACTIONS(6713), 1, anon_sym_DOLLAR, - STATE(2600), 1, + ACTIONS(6871), 1, + aux_sym__immediate_decimal_token2, + STATE(1497), 1, sym__immediate_decimal, - STATE(3483), 1, + STATE(3602), 1, sym_comment, - ACTIONS(6761), 2, + ACTIONS(6873), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2874), 2, + STATE(1333), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105950] = 9, + [109905] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6639), 1, + ACTIONS(958), 1, anon_sym_DQUOTE, - ACTIONS(6641), 1, + ACTIONS(960), 1, anon_sym_SQUOTE, - ACTIONS(6643), 1, + ACTIONS(962), 1, anon_sym_BQUOTE, - ACTIONS(6647), 1, + ACTIONS(974), 1, sym_raw_string_begin, - ACTIONS(6763), 1, + ACTIONS(6875), 1, aux_sym_path_token1, - STATE(2575), 1, + STATE(2464), 1, sym_val_string, - STATE(3484), 1, + STATE(3603), 1, sym_comment, - STATE(2354), 4, + STATE(2554), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105981] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1460), 1, - anon_sym_BANG, - STATE(3485), 1, - sym_comment, - ACTIONS(1458), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1456), 6, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_DOT2, - [106004] = 10, + [109936] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3329), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(5021), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5023), 1, + ACTIONS(1734), 1, + aux_sym_unquoted_token2, + ACTIONS(3996), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5136), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(6759), 1, + ACTIONS(6719), 1, anon_sym_DOLLAR, - STATE(3003), 1, + ACTIONS(6877), 1, + aux_sym__immediate_decimal_token2, + STATE(1907), 1, sym__immediate_decimal, - STATE(3486), 1, + STATE(3604), 1, sym_comment, - ACTIONS(6765), 2, + ACTIONS(6879), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3374), 2, + STATE(1969), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106037] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3487), 1, - sym_comment, - ACTIONS(763), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(765), 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, - [106058] = 4, + [109969] = 10, ACTIONS(103), 1, anon_sym_POUND, - STATE(3488), 1, - sym_comment, - ACTIONS(763), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(765), 6, - sym__space, + ACTIONS(1604), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [106079] = 9, + 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, + ACTIONS(6883), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(890), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110002] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(838), 1, + ACTIONS(6885), 1, anon_sym_DQUOTE, - ACTIONS(840), 1, + ACTIONS(6887), 1, anon_sym_SQUOTE, - ACTIONS(842), 1, + ACTIONS(6889), 1, anon_sym_BQUOTE, - ACTIONS(856), 1, - sym_raw_string_begin, - ACTIONS(6767), 1, + ACTIONS(6891), 1, aux_sym_path_token1, - STATE(2399), 1, + ACTIONS(6893), 1, + sym_raw_string_begin, + STATE(1914), 1, sym_val_string, - STATE(3489), 1, + STATE(3606), 1, sym_comment, - STATE(2455), 4, + STATE(1953), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [106110] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6769), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6771), 1, - aux_sym__immediate_decimal_token5, - STATE(3490), 1, - sym_comment, - ACTIONS(1746), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1748), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [106135] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6534), 1, - aux_sym__immediate_decimal_token5, - STATE(3491), 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, - [106158] = 10, + [110033] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3279), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4856), 1, + ACTIONS(1734), 1, + aux_sym_unquoted_token2, + ACTIONS(3372), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4858), 1, + ACTIONS(6719), 1, + anon_sym_DOLLAR, + ACTIONS(6895), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5017), 1, - aux_sym_unquoted_token2, - STATE(2503), 1, + STATE(1445), 1, sym__immediate_decimal, - STATE(3492), 1, + STATE(3607), 1, sym_comment, - ACTIONS(4860), 2, + ACTIONS(6897), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2642), 2, + STATE(700), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106191] = 10, + [110066] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3279), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4878), 1, + ACTIONS(1734), 1, + aux_sym_unquoted_token2, + ACTIONS(3394), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4880), 1, + ACTIONS(6719), 1, + anon_sym_DOLLAR, + ACTIONS(6899), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5017), 1, - aux_sym_unquoted_token2, - STATE(2813), 1, + STATE(1469), 1, sym__immediate_decimal, - STATE(3493), 1, + STATE(3608), 1, sym_comment, - ACTIONS(4882), 2, + ACTIONS(6901), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3062), 2, + STATE(890), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106224] = 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(3028), 1, + ACTIONS(6905), 1, + anon_sym_DQUOTE, + ACTIONS(6907), 1, + anon_sym_SQUOTE, + ACTIONS(6909), 1, + anon_sym_BQUOTE, + ACTIONS(6911), 1, + aux_sym_path_token1, + ACTIONS(6913), 1, sym_raw_string_begin, - ACTIONS(6625), 1, + STATE(3610), 1, + sym_comment, + STATE(4174), 1, + sym_val_string, + 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(6655), 1, + ACTIONS(6915), 1, anon_sym_DQUOTE, - ACTIONS(6657), 1, + ACTIONS(6917), 1, anon_sym_SQUOTE, - ACTIONS(6659), 1, + ACTIONS(6919), 1, anon_sym_BQUOTE, - STATE(2347), 1, + ACTIONS(6921), 1, + sym_raw_string_begin, + STATE(2388), 1, sym_val_string, - STATE(3494), 1, + STATE(3611), 1, sym_comment, STATE(2576), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [106255] = 8, - ACTIONS(3), 1, + [110192] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1776), 1, - sym__unquoted_pattern, - ACTIONS(6773), 1, - anon_sym_DOT_DOT2, - ACTIONS(6777), 1, - sym_filesize_unit, - ACTIONS(6779), 1, - sym_duration_unit, - STATE(3495), 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(6775), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(884), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [106284] = 4, + 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(3496), 1, + STATE(3613), 1, sym_comment, ACTIONS(739), 4, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, ACTIONS(741), 6, @@ -227880,10 +232112,32 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [106305] = 9, + [110244] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(211), 1, + 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, @@ -227891,1385 +232145,1347 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(6785), 1, anon_sym_BQUOTE, - ACTIONS(6787), 1, + ACTIONS(6939), 1, aux_sym_path_token1, - STATE(399), 1, + STATE(2515), 1, sym_val_string, - STATE(3497), 1, + STATE(3615), 1, sym_comment, - STATE(424), 4, + STATE(2568), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [106336] = 10, + [110306] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1776), 1, - aux_sym_unquoted_token2, - ACTIONS(5195), 1, - anon_sym_DOLLAR, - ACTIONS(6528), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6789), 1, - aux_sym__immediate_decimal_token2, - STATE(3498), 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(4822), 1, - sym__immediate_decimal, - ACTIONS(6791), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(884), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106369] = 4, - ACTIONS(3), 1, + 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(6523), 1, - anon_sym_DASH2, - STATE(3499), 1, + 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, - ACTIONS(4393), 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, - [106390] = 10, - ACTIONS(103), 1, + 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(3230), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(3695), 1, + ACTIONS(1639), 1, + anon_sym_LBRACE, + ACTIONS(2873), 1, anon_sym_DOLLAR, - ACTIONS(4902), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4904), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5072), 1, - aux_sym_unquoted_token2, - STATE(2558), 1, + STATE(729), 1, sym__immediate_decimal, - STATE(3500), 1, + STATE(3618), 1, sym_comment, - ACTIONS(4906), 2, + ACTIONS(6499), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2717), 2, + ACTIONS(6953), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(728), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106423] = 10, + [110399] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + 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, - ACTIONS(1647), 1, + 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(3166), 1, + anon_sym_LPAREN2, + ACTIONS(5045), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5047), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1776), 1, - aux_sym_unquoted_token2, - ACTIONS(6603), 1, + ACTIONS(5207), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(6955), 1, anon_sym_DOLLAR, - ACTIONS(6793), 1, - aux_sym__immediate_decimal_token2, - STATE(948), 1, + STATE(2702), 1, sym__immediate_decimal, - STATE(3501), 1, + STATE(3620), 1, sym_comment, - ACTIONS(6795), 2, + ACTIONS(6957), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(884), 2, + STATE(3011), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106456] = 4, + [110453] = 11, ACTIONS(103), 1, anon_sym_POUND, - STATE(3502), 1, - sym_comment, - ACTIONS(739), 4, + ACTIONS(866), 1, anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(886), 1, + sym__entry_separator, + ACTIONS(6479), 1, sym__unquoted_pattern_in_list, - ACTIONS(741), 6, + ACTIONS(6670), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(6959), 1, + anon_sym_DOT_DOT2, + ACTIONS(6963), 1, sym_filesize_unit, + ACTIONS(6965), 1, sym_duration_unit, - sym__entry_separator, - [106477] = 9, + 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(6797), 1, - anon_sym_DQUOTE, - ACTIONS(6799), 1, - anon_sym_SQUOTE, - ACTIONS(6801), 1, - anon_sym_BQUOTE, - ACTIONS(6803), 1, - aux_sym_path_token1, - ACTIONS(6805), 1, - sym_raw_string_begin, - STATE(1775), 1, - sym_val_string, - STATE(3503), 1, + ACTIONS(3166), 1, + anon_sym_LPAREN2, + ACTIONS(5141), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5143), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5207), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(6955), 1, + anon_sym_DOLLAR, + STATE(3128), 1, + sym__immediate_decimal, + STATE(3622), 1, sym_comment, - STATE(1797), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [106508] = 4, - ACTIONS(103), 1, + ACTIONS(6967), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3511), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110521] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3504), 1, + ACTIONS(6686), 1, + aux_sym__immediate_decimal_token5, + STATE(3623), 1, sym_comment, - ACTIONS(789), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(791), 6, - sym__space, - anon_sym_LPAREN2, + 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, - [106529] = 6, - ACTIONS(3), 1, + [110544] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6807), 1, + ACTIONS(6969), 1, anon_sym_DOT, - ACTIONS(6809), 1, + ACTIONS(6971), 1, aux_sym__immediate_decimal_token5, - STATE(3505), 1, + STATE(3624), 1, sym_comment, - ACTIONS(1756), 2, + ACTIONS(1744), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1746), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1754), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + 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, - [106554] = 10, + 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(1653), 1, + ACTIONS(3323), 1, anon_sym_LPAREN2, - ACTIONS(1828), 1, - aux_sym_unquoted_token2, - ACTIONS(4850), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5205), 1, + ACTIONS(3707), 1, anon_sym_DOLLAR, - ACTIONS(6811), 1, + ACTIONS(4974), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4976), 1, aux_sym__immediate_decimal_token2, - STATE(2436), 1, + ACTIONS(5160), 1, + aux_sym_unquoted_token2, + STATE(2589), 1, sym__immediate_decimal, - STATE(3506), 1, + STATE(3626), 1, sym_comment, - ACTIONS(6813), 2, + ACTIONS(4978), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2585), 2, + STATE(2799), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106587] = 10, - ACTIONS(103), 1, + [110625] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1653), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1828), 1, - aux_sym_unquoted_token2, - ACTIONS(4870), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5205), 1, + ACTIONS(1663), 1, + anon_sym_LBRACE, + ACTIONS(2873), 1, anon_sym_DOLLAR, - ACTIONS(6815), 1, - aux_sym__immediate_decimal_token2, - STATE(2634), 1, + STATE(747), 1, sym__immediate_decimal, - STATE(3507), 1, + STATE(3627), 1, sym_comment, - ACTIONS(6817), 2, + ACTIONS(6499), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1316), 2, + ACTIONS(6953), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(746), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106620] = 6, + [110656] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6819), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6821), 1, + ACTIONS(6682), 1, aux_sym__immediate_decimal_token5, - STATE(3508), 1, - sym_comment, - ACTIONS(1746), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1748), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [106645] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6823), 1, - anon_sym_DQUOTE, - ACTIONS(6825), 1, - anon_sym_SQUOTE, - ACTIONS(6827), 1, - anon_sym_BQUOTE, - ACTIONS(6829), 1, - aux_sym_path_token1, - ACTIONS(6831), 1, - sym_raw_string_begin, - STATE(3509), 1, - sym_comment, - STATE(3719), 1, - sym_val_string, - STATE(3836), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [106676] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3510), 1, + STATE(3628), 1, sym_comment, - ACTIONS(763), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(747), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(765), 6, + sym__unquoted_pattern_in_record, + ACTIONS(749), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [106697] = 4, + [110679] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + ACTIONS(1667), 1, + anon_sym_LBRACE, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(743), 1, + sym__immediate_decimal, + STATE(3629), 1, + sym_comment, + ACTIONS(6499), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6953), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(742), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110710] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3511), 1, + ACTIONS(6973), 1, + anon_sym_DOT, + ACTIONS(6975), 1, + aux_sym__immediate_decimal_token5, + STATE(3630), 1, sym_comment, - ACTIONS(789), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(791), 6, + ACTIONS(1744), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [106718] = 10, - ACTIONS(103), 1, + ACTIONS(1746), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [110735] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1776), 1, - aux_sym_unquoted_token2, - ACTIONS(4825), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5195), 1, + ACTIONS(1681), 1, + anon_sym_LBRACE, + ACTIONS(2873), 1, anon_sym_DOLLAR, - ACTIONS(6833), 1, - aux_sym__immediate_decimal_token2, - STATE(2396), 1, + STATE(745), 1, sym__immediate_decimal, - STATE(3512), 1, + STATE(3631), 1, sym_comment, - ACTIONS(6835), 2, + ACTIONS(6499), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2512), 2, + ACTIONS(6953), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(744), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106751] = 10, + [110766] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(3323), 1, anon_sym_LPAREN2, - ACTIONS(1776), 1, - aux_sym_unquoted_token2, - ACTIONS(4842), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5195), 1, + ACTIONS(3707), 1, anon_sym_DOLLAR, - ACTIONS(6837), 1, + ACTIONS(4988), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4990), 1, aux_sym__immediate_decimal_token2, - STATE(2557), 1, + ACTIONS(5160), 1, + aux_sym_unquoted_token2, + STATE(2946), 1, sym__immediate_decimal, - STATE(3513), 1, + STATE(3632), 1, sym_comment, - ACTIONS(6839), 2, + ACTIONS(4992), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(884), 2, + STATE(3271), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106784] = 9, + [110799] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6709), 1, - aux_sym_path_token1, - ACTIONS(6841), 1, - anon_sym_DQUOTE, - ACTIONS(6843), 1, - anon_sym_SQUOTE, - ACTIONS(6845), 1, - anon_sym_BQUOTE, - ACTIONS(6847), 1, - sym_raw_string_begin, - STATE(3303), 1, - sym_val_string, - STATE(3514), 1, + ACTIONS(6977), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6979), 1, + aux_sym__immediate_decimal_token5, + STATE(3633), 1, sym_comment, - STATE(3407), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [106815] = 10, + ACTIONS(1770), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1772), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [110824] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1776), 1, - aux_sym_unquoted_token2, - ACTIONS(5195), 1, + ACTIONS(1836), 1, anon_sym_DOLLAR, - ACTIONS(5893), 1, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + ACTIONS(6106), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6849), 1, + ACTIONS(6108), 1, aux_sym__immediate_decimal_token2, - STATE(3515), 1, + ACTIONS(6479), 1, + aux_sym__unquoted_in_list_token2, + STATE(3634), 1, sym_comment, - STATE(3703), 1, + STATE(3774), 1, sym__immediate_decimal, - ACTIONS(6851), 2, + ACTIONS(6110), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3667), 2, + STATE(4020), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106848] = 10, + [110857] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(1776), 1, + ACTIONS(1734), 1, aux_sym_unquoted_token2, - ACTIONS(5195), 1, + ACTIONS(5322), 1, anon_sym_DOLLAR, - ACTIONS(6104), 1, + ACTIONS(6497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6853), 1, + ACTIONS(6981), 1, aux_sym__immediate_decimal_token2, - STATE(3516), 1, + STATE(3635), 1, sym_comment, - STATE(4195), 1, + STATE(4071), 1, sym__immediate_decimal, - ACTIONS(6855), 2, + ACTIONS(6983), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(884), 2, + STATE(4450), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106881] = 6, - ACTIONS(103), 1, + [110890] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6857), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6859), 1, - aux_sym__immediate_decimal_token5, - STATE(3517), 1, + 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(1746), 4, - anon_sym_LPAREN2, + ACTIONS(6987), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1748), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [106906] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - 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(333), 1, - sym_val_string, - STATE(3518), 1, - sym_comment, - STATE(344), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [106937] = 10, + ACTIONS(886), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [110919] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1653), 1, + ACTIONS(6347), 1, + anon_sym_DOLLAR, + ACTIONS(6349), 1, anon_sym_LPAREN2, - ACTIONS(1828), 1, - aux_sym_unquoted_token2, - ACTIONS(3384), 1, + ACTIONS(6351), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6871), 1, - anon_sym_DOLLAR, - ACTIONS(6873), 1, + ACTIONS(6353), 1, aux_sym__immediate_decimal_token2, - STATE(1440), 1, - sym__immediate_decimal, - STATE(3519), 1, + ACTIONS(6479), 1, + aux_sym__unquoted_in_list_token2, + STATE(3637), 1, sym_comment, - ACTIONS(6875), 2, + STATE(4111), 1, + sym__immediate_decimal, + ACTIONS(6355), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(943), 2, + STATE(4413), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106970] = 4, + [110952] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3520), 1, + ACTIONS(6993), 1, + anon_sym_DOT, + ACTIONS(6995), 1, + aux_sym__immediate_decimal_token5, + STATE(3638), 1, sym_comment, - ACTIONS(763), 4, + ACTIONS(1744), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1746), 4, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(765), 6, + [110977] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6997), 1, + aux_sym__immediate_decimal_token5, + STATE(3639), 1, + sym_comment, + ACTIONS(771), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(773), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [106991] = 10, + [111000] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1653), 1, + ACTIONS(866), 1, + anon_sym_RBRACE, + ACTIONS(886), 1, + sym__entry_separator, + ACTIONS(5197), 1, anon_sym_LPAREN2, - ACTIONS(1828), 1, - aux_sym_unquoted_token2, - ACTIONS(3472), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6871), 1, - anon_sym_DOLLAR, - ACTIONS(6877), 1, - aux_sym__immediate_decimal_token2, - STATE(1505), 1, - sym__immediate_decimal, - STATE(3521), 1, + 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, - ACTIONS(6879), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1316), 2, + STATE(4903), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - [107024] = 10, + ACTIONS(7001), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111035] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1653), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - ACTIONS(1657), 1, + ACTIONS(1691), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1828), 1, + ACTIONS(1820), 1, aux_sym_unquoted_token2, - ACTIONS(6871), 1, + ACTIONS(6713), 1, anon_sym_DOLLAR, - ACTIONS(6881), 1, + ACTIONS(7007), 1, aux_sym__immediate_decimal_token2, - STATE(673), 1, + STATE(682), 1, sym__immediate_decimal, - STATE(3522), 1, + STATE(3641), 1, sym_comment, - ACTIONS(6883), 2, + ACTIONS(7009), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(943), 2, + STATE(950), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107057] = 10, + [111068] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1653), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - ACTIONS(1708), 1, + ACTIONS(1697), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1828), 1, + ACTIONS(1820), 1, aux_sym_unquoted_token2, - ACTIONS(6871), 1, + ACTIONS(6713), 1, anon_sym_DOLLAR, - ACTIONS(6885), 1, + ACTIONS(7011), 1, aux_sym__immediate_decimal_token2, - STATE(979), 1, + STATE(1053), 1, sym__immediate_decimal, - STATE(3523), 1, + STATE(3642), 1, sym_comment, - ACTIONS(6887), 2, + ACTIONS(7013), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1316), 2, + STATE(1333), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107090] = 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(942), 1, + ACTIONS(1806), 1, + sym_raw_string_begin, + ACTIONS(6933), 1, anon_sym_DQUOTE, - ACTIONS(944), 1, + ACTIONS(6935), 1, anon_sym_SQUOTE, - ACTIONS(946), 1, + ACTIONS(6937), 1, anon_sym_BQUOTE, - ACTIONS(958), 1, - sym_raw_string_begin, - ACTIONS(6889), 1, + ACTIONS(7015), 1, aux_sym_path_token1, - STATE(2438), 1, + STATE(2296), 1, sym_val_string, - STATE(3524), 1, + STATE(3644), 1, sym_comment, - STATE(2501), 4, + STATE(2266), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [107121] = 9, + [111153] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1617), 1, - anon_sym_LBRACE, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - STATE(777), 1, - sym__immediate_decimal, - STATE(3525), 1, + STATE(3645), 1, sym_comment, - ACTIONS(6500), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6719), 2, + 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, + [111174] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7017), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(776), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107152] = 10, + ACTIONS(7019), 1, + aux_sym__immediate_decimal_token5, + STATE(3646), 1, + sym_comment, + ACTIONS(1770), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1772), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [111199] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1836), 1, + anon_sym_DOLLAR, + ACTIONS(6102), 1, anon_sym_LPAREN2, - ACTIONS(1776), 1, - aux_sym_unquoted_token2, - ACTIONS(3950), 1, + ACTIONS(6218), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6603), 1, - anon_sym_DOLLAR, - ACTIONS(6891), 1, + ACTIONS(6220), 1, aux_sym__immediate_decimal_token2, - STATE(1870), 1, - sym__immediate_decimal, - STATE(3526), 1, + ACTIONS(6779), 1, + aux_sym__unquoted_in_record_token2, + STATE(3647), 1, sym_comment, - ACTIONS(6893), 2, + STATE(3788), 1, + sym__immediate_decimal, + ACTIONS(6222), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1917), 2, + STATE(3925), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107185] = 10, + [111232] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1836), 1, + anon_sym_DOLLAR, + ACTIONS(6102), 1, anon_sym_LPAREN2, - ACTIONS(1776), 1, - aux_sym_unquoted_token2, - ACTIONS(3964), 1, + ACTIONS(6235), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6603), 1, - anon_sym_DOLLAR, - ACTIONS(6895), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token2, - STATE(1979), 1, - sym__immediate_decimal, - STATE(3527), 1, + ACTIONS(6479), 1, + aux_sym__unquoted_in_list_token2, + STATE(3648), 1, sym_comment, - ACTIONS(6897), 2, + STATE(3816), 1, + sym__immediate_decimal, + ACTIONS(6239), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(884), 2, + STATE(3925), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107218] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1802), 1, - sym_raw_string_begin, - ACTIONS(6649), 1, - anon_sym_DQUOTE, - ACTIONS(6651), 1, - anon_sym_SQUOTE, - ACTIONS(6653), 1, - anon_sym_BQUOTE, - ACTIONS(6899), 1, - aux_sym_path_token1, - STATE(2263), 1, - sym_val_string, - STATE(3528), 1, - sym_comment, - STATE(2238), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [107249] = 9, + [111265] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6901), 1, - anon_sym_DQUOTE, - ACTIONS(6903), 1, - anon_sym_SQUOTE, - ACTIONS(6905), 1, - anon_sym_BQUOTE, - ACTIONS(6907), 1, - aux_sym_path_token1, - ACTIONS(6909), 1, - sym_raw_string_begin, - STATE(1892), 1, - sym_val_string, - STATE(3529), 1, + STATE(3649), 1, sym_comment, - STATE(1939), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [107280] = 10, + 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, + [111286] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(6102), 1, anon_sym_LPAREN2, - ACTIONS(1776), 1, - aux_sym_unquoted_token2, - ACTIONS(3349), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6603), 1, + ACTIONS(6401), 1, anon_sym_DOLLAR, - ACTIONS(6911), 1, + ACTIONS(6403), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6405), 1, aux_sym__immediate_decimal_token2, - STATE(1433), 1, - sym__immediate_decimal, - STATE(3530), 1, + ACTIONS(6479), 1, + aux_sym__unquoted_in_list_token2, + STATE(3650), 1, sym_comment, - ACTIONS(6913), 2, + STATE(4391), 1, + sym__immediate_decimal, + ACTIONS(6407), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(698), 2, + STATE(4413), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107313] = 6, - ACTIONS(103), 1, + [111319] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6915), 1, - anon_sym_DOT, - ACTIONS(6917), 1, + STATE(3651), 1, + sym_comment, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111340] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6694), 1, aux_sym__immediate_decimal_token5, - STATE(3531), 1, + STATE(3652), 1, sym_comment, - ACTIONS(1754), 4, - anon_sym_LPAREN2, + 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__entry_separator, - ACTIONS(1756), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + sym_filesize_unit, + sym_duration_unit, + [111363] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3653), 1, + sym_comment, + ACTIONS(860), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [107338] = 10, - ACTIONS(103), 1, + sym__unquoted_pattern, + ACTIONS(862), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111384] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1776), 1, - aux_sym_unquoted_token2, - ACTIONS(3388), 1, + ACTIONS(7021), 1, + aux_sym__immediate_decimal_token5, + STATE(3654), 1, + sym_comment, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111407] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7023), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6603), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym__immediate_decimal_token2, - STATE(1478), 1, - sym__immediate_decimal, - STATE(3532), 1, + ACTIONS(7025), 1, + aux_sym__immediate_decimal_token5, + STATE(3655), 1, sym_comment, - ACTIONS(6921), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(884), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107371] = 4, - ACTIONS(103), 1, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1770), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111432] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3533), 1, + ACTIONS(7027), 1, + aux_sym__immediate_decimal_token5, + STATE(3656), 1, sym_comment, - ACTIONS(789), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(771), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(791), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(773), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [107392] = 8, + [111455] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + 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(7029), 1, + aux_sym_path_token1, + STATE(2391), 1, + sym_val_string, + STATE(3657), 1, + sym_comment, + STATE(2379), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [111486] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7031), 1, + anon_sym_DOT, + ACTIONS(7033), 1, + aux_sym__immediate_decimal_token5, + STATE(3658), 1, + sym_comment, + ACTIONS(1746), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1744), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111510] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3279), 1, + ACTIONS(3118), 1, anon_sym_LPAREN2, - ACTIONS(6923), 1, + ACTIONS(7035), 1, anon_sym_DOLLAR, - STATE(3534), 1, - sym_comment, - STATE(4034), 1, + STATE(2809), 1, sym__immediate_decimal, - ACTIONS(6108), 2, + STATE(3659), 1, + sym_comment, + ACTIONS(4964), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6925), 2, + ACTIONS(7037), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3013), 2, + STATE(3173), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107420] = 8, + [111538] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3279), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(6923), 1, + ACTIONS(3858), 1, anon_sym_DOLLAR, - STATE(2982), 1, + STATE(3423), 1, sym__immediate_decimal, - STATE(3535), 1, + STATE(3660), 1, sym_comment, - ACTIONS(4924), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6927), 2, + ACTIONS(5049), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2981), 2, + ACTIONS(5191), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(3440), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107448] = 5, + [111566] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6917), 1, + ACTIONS(6971), 1, aux_sym__immediate_decimal_token5, - STATE(3536), 1, + STATE(3661), 1, sym_comment, - ACTIONS(1754), 4, + ACTIONS(1744), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1756), 4, + ACTIONS(1746), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [107470] = 8, + [111588] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(703), 1, + STATE(960), 1, sym__immediate_decimal, - STATE(3537), 1, + STATE(3662), 1, sym_comment, - ACTIONS(1609), 2, + ACTIONS(1675), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1611), 2, + ACTIONS(1677), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(698), 2, + STATE(737), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107498] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6929), 1, - anon_sym_DOT2, - STATE(2458), 1, - sym_path, - STATE(2929), 1, - sym_cell_path, - STATE(3538), 1, - sym_comment, - STATE(3643), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1888), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [107524] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1525), 1, - sym__entry_separator, - STATE(3539), 1, - sym_comment, - ACTIONS(1523), 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, - [107544] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6929), 1, - anon_sym_DOT2, - STATE(2458), 1, - sym_path, - STATE(2866), 1, - sym_cell_path, - STATE(3540), 1, - sym_comment, - STATE(3643), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1856), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [107570] = 8, + [111616] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3817), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(6134), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(3541), 1, - sym_comment, - STATE(4188), 1, + STATE(736), 1, sym__immediate_decimal, - ACTIONS(6136), 2, + STATE(3663), 1, + sym_comment, + ACTIONS(4010), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6931), 2, + ACTIONS(4012), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4187), 2, + STATE(735), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107598] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1776), 1, - sym__unquoted_pattern, - ACTIONS(6933), 1, - anon_sym_DOT_DOT2, - ACTIONS(6937), 1, - sym_filesize_unit, - ACTIONS(6939), 1, - sym_duration_unit, - STATE(3542), 1, - sym_comment, - ACTIONS(6935), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(884), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [107626] = 8, + [111644] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3279), 1, - anon_sym_LPAREN2, - ACTIONS(6923), 1, + ACTIONS(3948), 1, anon_sym_DOLLAR, - STATE(2788), 1, - sym__immediate_decimal, - STATE(3543), 1, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + STATE(3664), 1, sym_comment, - ACTIONS(4878), 2, + STATE(4447), 1, + sym__immediate_decimal, + ACTIONS(6513), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6941), 2, + ACTIONS(7039), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3013), 2, + STATE(4235), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107654] = 8, - ACTIONS(3), 1, + [111672] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3329), 1, - anon_sym_LPAREN2, - ACTIONS(3855), 1, - anon_sym_DOLLAR, - STATE(3393), 1, - sym__immediate_decimal, - STATE(3544), 1, + ACTIONS(1521), 1, + sym__entry_separator, + STATE(3665), 1, sym_comment, - ACTIONS(4983), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(5091), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(3392), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107682] = 8, + ACTIONS(1519), 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, + [111692] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3230), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - ACTIONS(6943), 1, + ACTIONS(3894), 1, anon_sym_DOLLAR, - STATE(2904), 1, + STATE(2687), 1, sym__immediate_decimal, - STATE(3545), 1, + STATE(3666), 1, sym_comment, - ACTIONS(4932), 2, + ACTIONS(4934), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6945), 2, + ACTIONS(4936), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3136), 2, + STATE(1283), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107710] = 8, + [111720] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(919), 1, + STATE(723), 1, sym__immediate_decimal, - STATE(3546), 1, + STATE(3667), 1, sym_comment, - ACTIONS(1647), 2, + ACTIONS(1608), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1649), 2, + ACTIONS(1610), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(790), 2, + STATE(700), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107738] = 8, + [111748] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, + ACTIONS(3948), 1, anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(6102), 1, anon_sym_LPAREN2, - STATE(789), 1, - sym__immediate_decimal, - STATE(3547), 1, + STATE(3668), 1, sym_comment, - ACTIONS(3964), 2, + STATE(4233), 1, + sym__immediate_decimal, + ACTIONS(6485), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3966), 2, + ACTIONS(7041), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(787), 2, + STATE(4232), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107766] = 8, + [111776] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1653), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(1331), 1, + STATE(914), 1, sym__immediate_decimal, - STATE(3548), 1, + STATE(3669), 1, sym_comment, - ACTIONS(1659), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1730), 2, + ACTIONS(4010), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1330), 2, + ACTIONS(4012), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(737), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107794] = 8, + [111804] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, + ACTIONS(3942), 1, anon_sym_DOLLAR, - ACTIONS(5945), 1, + ACTIONS(6349), 1, anon_sym_LPAREN2, - STATE(3549), 1, + STATE(3670), 1, sym_comment, - STATE(4110), 1, + STATE(4144), 1, sym__immediate_decimal, - ACTIONS(6321), 2, + ACTIONS(6351), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6947), 2, + ACTIONS(7043), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4189), 2, + STATE(4235), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107822] = 9, + [111832] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(884), 1, - sym__space, - ACTIONS(4149), 1, - anon_sym_DOT_DOT2, - ACTIONS(5017), 1, - sym__unquoted_pattern, - ACTIONS(6557), 1, - sym_filesize_unit, - ACTIONS(6559), 1, - sym_duration_unit, - STATE(3550), 1, + ACTIONS(7045), 1, + aux_sym__immediate_decimal_token5, + STATE(3671), 1, sym_comment, - ACTIONS(858), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(4151), 2, + ACTIONS(1852), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [107852] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1653), 1, - anon_sym_LPAREN2, - ACTIONS(4846), 1, - anon_sym_DOLLAR, - STATE(2648), 1, - sym__immediate_decimal, - STATE(3551), 1, - sym_comment, - ACTIONS(4870), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4872), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1332), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107880] = 9, + sym__entry_separator, + 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(884), 1, + ACTIONS(1525), 1, sym__entry_separator, - ACTIONS(6277), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6577), 1, - anon_sym_DOT_DOT2, - ACTIONS(6581), 1, - sym_filesize_unit, - ACTIONS(6583), 1, - sym_duration_unit, - STATE(3552), 1, + STATE(3672), 1, sym_comment, - ACTIONS(858), 2, + ACTIONS(1523), 8, + anon_sym_COLON, anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, anon_sym_DOT_DOT, - ACTIONS(6579), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [107910] = 8, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [111874] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3817), 1, - anon_sym_DOLLAR, - ACTIONS(6134), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(3553), 1, - sym_comment, - STATE(4050), 1, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(2563), 1, sym__immediate_decimal, - ACTIONS(6136), 2, + STATE(3673), 1, + sym_comment, + ACTIONS(4922), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6931), 2, + ACTIONS(4924), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4189), 2, + STATE(737), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107938] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3554), 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, - [107958] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_DOT_DOT2, - ACTIONS(6949), 1, - sym_filesize_unit, - ACTIONS(6951), 1, - sym_duration_unit, - ACTIONS(6953), 1, - sym__unquoted_pattern, - STATE(3555), 1, - sym_comment, - ACTIONS(4151), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(884), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [107986] = 8, + [111902] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(2897), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - STATE(2535), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + STATE(1961), 1, sym__immediate_decimal, - STATE(3556), 1, + STATE(3674), 1, sym_comment, - ACTIONS(4842), 2, + ACTIONS(3956), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4844), 2, + ACTIONS(3958), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(790), 2, + STATE(737), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108014] = 8, + [111930] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3329), 1, + ACTIONS(3166), 1, anon_sym_LPAREN2, - ACTIONS(3855), 1, + ACTIONS(3858), 1, anon_sym_DOLLAR, - STATE(3001), 1, + STATE(3135), 1, sym__immediate_decimal, - STATE(3557), 1, + STATE(3675), 1, sym_comment, - ACTIONS(5023), 2, + ACTIONS(5143), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(5025), 2, + ACTIONS(5145), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3253), 2, + STATE(3518), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108042] = 4, + [111958] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3558), 1, + ACTIONS(6975), 1, + aux_sym__immediate_decimal_token5, + STATE(3676), 1, sym_comment, - ACTIONS(739), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 6, + ACTIONS(1744), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [108062] = 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(1605), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(2897), 1, + ACTIONS(2873), 1, anon_sym_DOLLAR, - STATE(3559), 1, + STATE(3677), 1, sym_comment, - STATE(4209), 1, + STATE(4289), 1, sym__immediate_decimal, - ACTIONS(6104), 2, + ACTIONS(6251), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6106), 2, + ACTIONS(6253), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(790), 2, + STATE(737), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108090] = 8, + [112008] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_DOLLAR, - ACTIONS(1653), 1, + ACTIONS(3118), 1, anon_sym_LPAREN2, - STATE(1508), 1, + ACTIONS(7035), 1, + anon_sym_DOLLAR, + STATE(3172), 1, sym__immediate_decimal, - STATE(3560), 1, + STATE(3678), 1, sym_comment, - ACTIONS(3472), 2, + ACTIONS(6409), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3474), 2, + ACTIONS(7047), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1332), 2, + STATE(3171), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108118] = 8, + [112036] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, + ACTIONS(1685), 1, anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - STATE(1982), 1, + STATE(1496), 1, sym__immediate_decimal, - STATE(3561), 1, + STATE(3679), 1, sym_comment, - ACTIONS(3964), 2, + ACTIONS(3448), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3966), 2, + ACTIONS(3450), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(790), 2, + STATE(1283), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108146] = 8, + [112064] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(1476), 1, + STATE(2000), 1, sym__immediate_decimal, - STATE(3562), 1, + STATE(3680), 1, sym_comment, - ACTIONS(3388), 2, + ACTIONS(4010), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3390), 2, + ACTIONS(4012), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(790), 2, + STATE(737), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108174] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3563), 1, - sym_comment, - ACTIONS(6955), 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, - [108192] = 8, + [112092] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1653), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(1333), 1, + STATE(1488), 1, sym__immediate_decimal, - STATE(3564), 1, + STATE(3681), 1, sym_comment, - ACTIONS(1659), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1730), 2, + ACTIONS(3394), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1332), 2, + ACTIONS(3396), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(737), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108220] = 4, + [112120] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1529), 1, sym__entry_separator, - STATE(3565), 1, + STATE(3682), 1, sym_comment, ACTIONS(1527), 8, anon_sym_COLON, @@ -229280,165 +233496,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [108240] = 8, + [112140] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3230), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(6943), 1, + ACTIONS(2873), 1, anon_sym_DOLLAR, - STATE(3135), 1, + STATE(736), 1, sym__immediate_decimal, - STATE(3566), 1, + STATE(3683), 1, sym_comment, - ACTIONS(4995), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6957), 2, + ACTIONS(6499), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3134), 2, + ACTIONS(6953), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(735), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108268] = 8, + [112168] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, - anon_sym_DOLLAR, - ACTIONS(5945), 1, - anon_sym_LPAREN2, - STATE(3567), 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, - STATE(4838), 1, - sym__immediate_decimal, - ACTIONS(6357), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6959), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4189), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [108296] = 5, + 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(6699), 1, + ACTIONS(7049), 1, aux_sym__immediate_decimal_token5, - STATE(3568), 1, + STATE(3685), 1, sym_comment, - ACTIONS(1754), 4, - sym__space, + ACTIONS(1852), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1756), 4, - sym__newline, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(1854), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [108318] = 6, + sym__unquoted_pattern_in_list, + [112216] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6961), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6963), 1, - aux_sym__immediate_decimal_token5, - STATE(3569), 1, + ACTIONS(3948), 1, + anon_sym_DOLLAR, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + STATE(3686), 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, - [108342] = 4, + STATE(4897), 1, + sym__immediate_decimal, + ACTIONS(6485), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7041), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4413), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [112244] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3570), 1, + ACTIONS(7051), 1, + aux_sym__immediate_decimal_token5, + STATE(3687), 1, sym_comment, - ACTIONS(789), 2, + ACTIONS(1854), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(791), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + 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, - [108362] = 8, + [112266] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1653), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - ACTIONS(4846), 1, + ACTIONS(3894), 1, anon_sym_DOLLAR, - STATE(1331), 1, + STATE(1300), 1, sym__immediate_decimal, - STATE(3571), 1, + STATE(3688), 1, sym_comment, - ACTIONS(1659), 2, + ACTIONS(1693), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1730), 2, + ACTIONS(1758), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1330), 2, + STATE(1303), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108390] = 8, + [112294] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(5945), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(3572), 1, + STATE(957), 1, + sym__immediate_decimal, + STATE(3689), 1, sym_comment, - STATE(4277), 1, + ACTIONS(1610), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1655), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(890), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [112322] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + STATE(953), 1, sym__immediate_decimal, - ACTIONS(6329), 2, + STATE(3690), 1, + sym_comment, + ACTIONS(1691), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6965), 2, + ACTIONS(1693), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4189), 2, + STATE(950), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108418] = 7, + [112350] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6929), 1, - anon_sym_DOT2, - STATE(2458), 1, - sym_path, - STATE(2881), 1, - sym_cell_path, - STATE(3573), 1, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + STATE(1300), 1, + sym__immediate_decimal, + STATE(3691), 1, sym_comment, - STATE(3643), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1892), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [108444] = 4, + 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(1303), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [112378] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3574), 1, + STATE(3692), 1, sym_comment, - ACTIONS(763), 2, + ACTIONS(860), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(765), 7, + ACTIONS(862), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, @@ -229446,204 +233685,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [108464] = 4, + [112398] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3575), 1, + ACTIONS(3948), 1, + anon_sym_DOLLAR, + ACTIONS(6102), 1, + anon_sym_LPAREN2, + STATE(3693), 1, sym_comment, - ACTIONS(789), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(791), 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, - [108484] = 4, + STATE(4218), 1, + sym__immediate_decimal, + ACTIONS(6403), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7053), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4235), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [112426] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3576), 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(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 7, + ACTIONS(1912), 5, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_GT2, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [108504] = 8, + [112452] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_DOLLAR, - ACTIONS(1653), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(945), 1, - sym__immediate_decimal, - STATE(3577), 1, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(3695), 1, sym_comment, - ACTIONS(1657), 2, + STATE(4205), 1, + sym__immediate_decimal, + ACTIONS(5975), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1659), 2, + ACTIONS(5977), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(943), 2, + STATE(737), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108532] = 8, + [112480] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - ACTIONS(2897), 1, + ACTIONS(2873), 1, anon_sym_DOLLAR, - STATE(3578), 1, - sym_comment, - STATE(4022), 1, + STATE(736), 1, sym__immediate_decimal, - ACTIONS(5941), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5943), 2, + STATE(3696), 1, + sym_comment, + ACTIONS(1610), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(790), 2, + ACTIONS(1655), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(735), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108560] = 8, + [112508] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(3118), 1, anon_sym_LPAREN2, - STATE(954), 1, + ACTIONS(7035), 1, + anon_sym_DOLLAR, + STATE(3172), 1, sym__immediate_decimal, - STATE(3579), 1, + STATE(3697), 1, sym_comment, - ACTIONS(3964), 2, + ACTIONS(4984), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3966), 2, + ACTIONS(7055), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(790), 2, + STATE(3171), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108588] = 8, + [112536] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2732), 1, + ACTIONS(2674), 1, anon_sym_DOLLAR, - ACTIONS(5945), 1, + ACTIONS(6102), 1, anon_sym_LPAREN2, - STATE(3580), 1, + STATE(3698), 1, sym_comment, - STATE(3972), 1, + STATE(4196), 1, sym__immediate_decimal, - ACTIONS(6096), 2, + ACTIONS(6235), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6959), 2, + ACTIONS(7041), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3815), 2, + STATE(3925), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108616] = 8, + [112564] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3699), 1, + sym_comment, + ACTIONS(739), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(741), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [112584] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(886), 1, + sym__space, + ACTIONS(4203), 1, + anon_sym_DOT_DOT2, + ACTIONS(5071), 1, + sym__unquoted_pattern, + ACTIONS(6654), 1, + sym_filesize_unit, + ACTIONS(6656), 1, + sym_duration_unit, + STATE(3700), 1, + sym_comment, + ACTIONS(866), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(4205), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112614] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(5945), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(3581), 1, - sym_comment, - STATE(4771), 1, + STATE(1958), 1, sym__immediate_decimal, - ACTIONS(6357), 2, + STATE(3701), 1, + sym_comment, + ACTIONS(3996), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6959), 2, + ACTIONS(3998), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4120), 2, + STATE(1969), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108644] = 8, + [112642] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(932), 1, - sym__immediate_decimal, - STATE(3582), 1, + ACTIONS(2873), 1, + anon_sym_DOLLAR, + STATE(3702), 1, sym_comment, - ACTIONS(1611), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1665), 2, + STATE(4880), 1, + sym__immediate_decimal, + ACTIONS(6664), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(884), 2, + ACTIONS(6666), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(737), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108672] = 6, - ACTIONS(103), 1, + [112670] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6967), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6969), 1, - aux_sym__immediate_decimal_token5, - STATE(3583), 1, + STATE(3703), 1, sym_comment, - ACTIONS(1748), 3, - anon_sym_RBRACE, + ACTIONS(771), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1746), 4, - anon_sym_LPAREN2, + 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__entry_separator, - [108696] = 8, + sym_filesize_unit, + sym_duration_unit, + [112690] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(2897), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - STATE(789), 1, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + STATE(957), 1, sym__immediate_decimal, - STATE(3584), 1, + STATE(3704), 1, sym_comment, - ACTIONS(1611), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1665), 2, + ACTIONS(4010), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(787), 2, + ACTIONS(4012), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(890), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108724] = 6, + [112718] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6971), 1, + ACTIONS(7057), 1, anon_sym_DOT, - ACTIONS(6973), 1, + ACTIONS(7059), 1, aux_sym__immediate_decimal_token5, - STATE(3585), 1, + STATE(3705), 1, sym_comment, ACTIONS(747), 2, anon_sym_DOT_DOT2, @@ -229654,269 +233935,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [108748] = 4, + [112742] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7061), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7063), 1, + aux_sym__immediate_decimal_token5, + STATE(3706), 1, + sym_comment, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1770), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112766] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3586), 1, + ACTIONS(7065), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7067), 1, + aux_sym__immediate_decimal_token5, + STATE(3707), 1, sym_comment, - ACTIONS(763), 3, + ACTIONS(1772), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(765), 6, + ACTIONS(1770), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [108768] = 8, + [112790] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_DOLLAR, - ACTIONS(1653), 1, - anon_sym_LPAREN2, - STATE(993), 1, - sym__immediate_decimal, - STATE(3587), 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(1708), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1710), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1332), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [108796] = 5, + 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, - ACTIONS(6975), 1, - aux_sym__immediate_decimal_token5, - STATE(3588), 1, + STATE(3709), 1, sym_comment, - ACTIONS(1812), 4, + 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, - ACTIONS(1814), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108818] = 8, - ACTIONS(3), 1, + [112836] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - STATE(789), 1, - sym__immediate_decimal, - STATE(3589), 1, + ACTIONS(7069), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + aux_sym__immediate_decimal_token5, + STATE(3710), 1, sym_comment, - ACTIONS(1611), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1665), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(787), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [108846] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1746), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1744), 4, anon_sym_LPAREN2, - ACTIONS(2897), 1, - anon_sym_DOLLAR, - STATE(789), 1, - sym__immediate_decimal, - STATE(3590), 1, - sym_comment, - ACTIONS(5741), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6130), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(787), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [108874] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [112860] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, + ACTIONS(1685), 1, anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - STATE(954), 1, + STATE(1329), 1, sym__immediate_decimal, - STATE(3591), 1, + STATE(3711), 1, sym_comment, - ACTIONS(1611), 2, + ACTIONS(1693), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1665), 2, + ACTIONS(1758), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(790), 2, + STATE(1283), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108902] = 5, + [112888] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6683), 1, - aux_sym__immediate_decimal_token5, - STATE(3592), 1, + STATE(3712), 1, sym_comment, - ACTIONS(1754), 4, + 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, - ACTIONS(1756), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108924] = 5, - ACTIONS(103), 1, + [112908] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6977), 1, - aux_sym__immediate_decimal_token5, - STATE(3593), 1, + STATE(3713), 1, sym_comment, - ACTIONS(1812), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1814), 4, + 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(4203), 1, anon_sym_DOT_DOT2, + ACTIONS(7075), 1, + sym_filesize_unit, + ACTIONS(7077), 1, + sym_duration_unit, + ACTIONS(7079), 1, sym__unquoted_pattern, - [108946] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1521), 1, - sym__entry_separator, - STATE(3594), 1, + STATE(3714), 1, sym_comment, - ACTIONS(1519), 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, - [108966] = 8, + ACTIONS(4205), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(886), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [112954] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_DOLLAR, - ACTIONS(1653), 1, - anon_sym_LPAREN2, - STATE(1317), 1, - sym__immediate_decimal, - STATE(3595), 1, + STATE(3715), 1, sym_comment, - ACTIONS(1659), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1730), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1316), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [108994] = 8, + 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, + [112974] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(3118), 1, anon_sym_LPAREN2, - ACTIONS(2897), 1, + ACTIONS(7035), 1, anon_sym_DOLLAR, - STATE(789), 1, - sym__immediate_decimal, - STATE(3596), 1, + STATE(3716), 1, sym_comment, - ACTIONS(6500), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6719), 2, + STATE(4049), 1, + sym__immediate_decimal, + ACTIONS(6255), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(787), 2, + ACTIONS(7081), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3173), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109022] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6809), 1, - aux_sym__immediate_decimal_token5, - STATE(3597), 1, - sym_comment, - ACTIONS(1756), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1754), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109044] = 5, + [113002] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6979), 1, + ACTIONS(7083), 1, aux_sym__immediate_decimal_token5, - STATE(3598), 1, + STATE(3717), 1, sym_comment, - ACTIONS(1812), 4, + ACTIONS(1852), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1814), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(1854), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [109066] = 8, + sym__unquoted_pattern, + [113024] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(2897), 1, + ACTIONS(3942), 1, anon_sym_DOLLAR, - STATE(3599), 1, + ACTIONS(6349), 1, + anon_sym_LPAREN2, + STATE(3718), 1, sym_comment, - STATE(4708), 1, + STATE(4233), 1, sym__immediate_decimal, - ACTIONS(6528), 2, + ACTIONS(6351), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6530), 2, + ACTIONS(7043), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(790), 2, + STATE(4232), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109094] = 3, + [113052] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3600), 1, + STATE(3719), 1, sym_comment, - ACTIONS(6981), 9, + ACTIONS(7085), 9, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -229926,33 +234183,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [109112] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6983), 1, - anon_sym_DOT, - ACTIONS(6985), 1, - aux_sym__immediate_decimal_token5, - STATE(3601), 1, - sym_comment, - ACTIONS(1756), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1754), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [109136] = 4, + [113070] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3602), 1, + STATE(3720), 1, sym_comment, - ACTIONS(763), 2, + ACTIONS(860), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(765), 7, + ACTIONS(862), 7, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, @@ -229960,131 +234199,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [109156] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6929), 1, - anon_sym_DOT2, - STATE(2257), 1, - sym_cell_path, - STATE(2458), 1, - sym_path, - STATE(3603), 1, - sym_comment, - STATE(3643), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1452), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [109182] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6987), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6989), 1, - aux_sym__immediate_decimal_token5, - STATE(3604), 1, - sym_comment, - ACTIONS(1748), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1746), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109206] = 8, + [113090] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(3323), 1, anon_sym_LPAREN2, - STATE(1918), 1, + ACTIONS(7087), 1, + anon_sym_DOLLAR, + STATE(3231), 1, sym__immediate_decimal, - STATE(3605), 1, + STATE(3721), 1, sym_comment, - ACTIONS(3938), 2, + ACTIONS(5059), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3940), 2, + ACTIONS(7089), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(790), 2, + STATE(3230), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109234] = 8, + [113118] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, + ACTIONS(3948), 1, anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(6102), 1, anon_sym_LPAREN2, - STATE(1961), 1, - sym__immediate_decimal, - STATE(3606), 1, + STATE(3722), 1, sym_comment, - ACTIONS(3950), 2, + STATE(4941), 1, + sym__immediate_decimal, + ACTIONS(6485), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3952), 2, + ACTIONS(7041), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1917), 2, + STATE(4235), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109262] = 8, + [113146] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3279), 1, - anon_sym_LPAREN2, - ACTIONS(6923), 1, - anon_sym_DOLLAR, - STATE(2982), 1, - sym__immediate_decimal, - STATE(3607), 1, + ACTIONS(6747), 1, + aux_sym__immediate_decimal_token5, + STATE(3723), 1, sym_comment, - ACTIONS(6345), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6991), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2981), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [109290] = 8, + 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(1601), 1, + ACTIONS(1600), 1, anon_sym_DOLLAR, - ACTIONS(1605), 1, + ACTIONS(1604), 1, anon_sym_LPAREN2, - STATE(932), 1, + STATE(736), 1, sym__immediate_decimal, - STATE(3608), 1, + STATE(3724), 1, sym_comment, - ACTIONS(3964), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3966), 2, + ACTIONS(1610), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(884), 2, + ACTIONS(1655), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(735), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109318] = 4, + [113196] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1734), 1, + sym__unquoted_pattern, + ACTIONS(7091), 1, + anon_sym_DOT_DOT2, + ACTIONS(7095), 1, + sym_filesize_unit, + ACTIONS(7097), 1, + sym_duration_unit, + STATE(3725), 1, + sym_comment, + ACTIONS(7093), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(886), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [113224] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1498), 1, + ACTIONS(1533), 1, sym__entry_separator, - STATE(3609), 1, + STATE(3726), 1, sym_comment, - ACTIONS(1496), 8, + ACTIONS(1531), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -230093,14 +234312,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [109338] = 4, + [113244] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1502), 1, + ACTIONS(886), 1, sym__entry_separator, - STATE(3610), 1, + ACTIONS(6479), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6672), 1, + anon_sym_DOT_DOT2, + ACTIONS(6676), 1, + sym_filesize_unit, + ACTIONS(6678), 1, + sym_duration_unit, + STATE(3727), 1, + sym_comment, + ACTIONS(866), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6674), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113274] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1600), 1, + anon_sym_DOLLAR, + ACTIONS(1604), 1, + anon_sym_LPAREN2, + STATE(914), 1, + sym__immediate_decimal, + STATE(3728), 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(737), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113302] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6995), 1, + aux_sym__immediate_decimal_token5, + STATE(3729), 1, + sym_comment, + ACTIONS(1744), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1746), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [113324] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1537), 1, + sym__entry_separator, + STATE(3730), 1, sym_comment, - ACTIONS(1500), 8, + ACTIONS(1535), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -230109,14 +234386,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [109358] = 4, + [113344] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1506), 1, + ACTIONS(1541), 1, sym__entry_separator, - STATE(3611), 1, + STATE(3731), 1, sym_comment, - ACTIONS(1504), 8, + ACTIONS(1539), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -230125,119 +234402,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [109378] = 5, + [113364] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6993), 1, - aux_sym__immediate_decimal_token5, - STATE(3612), 1, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + anon_sym_LPAREN2, + STATE(1284), 1, + sym__immediate_decimal, + STATE(3732), 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(1333), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113392] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3323), 1, + anon_sym_LPAREN2, + ACTIONS(7087), 1, + anon_sym_DOLLAR, + STATE(3019), 1, + sym__immediate_decimal, + STATE(3733), 1, + sym_comment, + ACTIONS(4988), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7099), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3232), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [113420] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3734), 1, sym_comment, - ACTIONS(1814), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1812), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(741), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109400] = 6, + sym_filesize_unit, + sym_duration_unit, + [113440] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(6997), 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(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(7101), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7103), 1, aux_sym__immediate_decimal_token5, - STATE(3613), 1, + STATE(3736), 1, sym_comment, - ACTIONS(1756), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1754), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(741), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109424] = 4, - ACTIONS(103), 1, + sym_filesize_unit, + sym_duration_unit, + [113492] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3614), 1, + STATE(3737), 1, sym_comment, - ACTIONS(789), 3, - anon_sym_RBRACE, + ACTIONS(771), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(791), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(773), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [109444] = 8, + [113512] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3897), 1, + ACTIONS(1685), 1, anon_sym_DOLLAR, - ACTIONS(5945), 1, + ACTIONS(1687), 1, anon_sym_LPAREN2, - STATE(3615), 1, - sym_comment, - STATE(4188), 1, + STATE(1074), 1, sym__immediate_decimal, - ACTIONS(6357), 2, + STATE(3738), 1, + sym_comment, + ACTIONS(1697), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6959), 2, + ACTIONS(1699), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4187), 2, + STATE(1283), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109472] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3616), 1, - sym_comment, - ACTIONS(1748), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1746), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109491] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2021), 1, - sym__entry_separator, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6999), 1, - anon_sym_DOT_DOT2, - STATE(3617), 1, - sym_comment, - ACTIONS(2023), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7001), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109518] = 6, + [113540] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7003), 1, + ACTIONS(7105), 1, anon_sym_DOT, - ACTIONS(7005), 1, + ACTIONS(7107), 1, aux_sym__immediate_decimal_token5, - STATE(3618), 1, + STATE(3739), 1, sym_comment, ACTIONS(747), 2, anon_sym_DOT_DOT2, @@ -230247,584 +234549,367 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [109541] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7009), 1, - anon_sym_DOT2, - STATE(2529), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2725), 1, - sym_path, - STATE(2997), 1, - sym_cell_path, - STATE(3619), 1, - sym_comment, - ACTIONS(7007), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [109566] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1894), 1, - sym__table_head_separator, - ACTIONS(7014), 1, - anon_sym_DOT_DOT, - ACTIONS(7016), 1, - anon_sym_DOT2, - STATE(3620), 1, - sym_comment, - STATE(3803), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4250), 1, - sym_path, - STATE(4659), 1, - sym_cell_path, - ACTIONS(7011), 2, - anon_sym_RBRACK, - sym__entry_separator, - [109595] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3621), 1, - sym_comment, - ACTIONS(1812), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1814), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [109614] = 7, + [113563] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7020), 1, - anon_sym_DOT2, - STATE(2443), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2549), 1, - sym_path, - STATE(2969), 1, - sym_cell_path, - STATE(3622), 1, - sym_comment, - ACTIONS(7018), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [109639] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2011), 1, - sym__entry_separator, - ACTIONS(2015), 1, - anon_sym_LPAREN2, - ACTIONS(7022), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(7109), 1, anon_sym_DOT_DOT2, - STATE(3623), 1, - sym_comment, - ACTIONS(2013), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7024), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109666] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1860), 1, - anon_sym_DOT2, - STATE(429), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(454), 1, - sym_path, - STATE(917), 1, - sym_cell_path, - STATE(3624), 1, - sym_comment, - ACTIONS(7026), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [109691] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1860), 1, - anon_sym_DOT2, - STATE(429), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(454), 1, - sym_path, - STATE(917), 1, - sym_cell_path, - STATE(3625), 1, - sym_comment, - ACTIONS(7028), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [109716] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3626), 1, + STATE(3740), 1, sym_comment, - ACTIONS(1812), 4, - sym__space, - anon_sym_LPAREN2, + ACTIONS(7111), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1814), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [109735] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1860), 1, - anon_sym_DOT2, - STATE(429), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(454), 1, - sym_path, - STATE(917), 1, - sym_cell_path, - STATE(3627), 1, - sym_comment, - ACTIONS(7030), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [109760] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4950), 1, - anon_sym_DOT2, - STATE(454), 1, - sym_path, - STATE(2277), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3628), 1, - sym_comment, - STATE(4331), 1, - sym_cell_path, - ACTIONS(7032), 4, + ACTIONS(1973), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109785] = 7, + [113586] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7036), 1, + ACTIONS(5010), 1, anon_sym_DOT2, - STATE(349), 1, + STATE(458), 1, sym_path, - STATE(3629), 1, - sym_comment, - STATE(3814), 1, + STATE(2323), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4561), 1, - sym_cell_path, - ACTIONS(7034), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [109810] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3630), 1, - sym_comment, - ACTIONS(1746), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1748), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [109829] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2031), 1, - sym__unquoted_pattern, - ACTIONS(7038), 1, - anon_sym_DOT_DOT2, - STATE(3631), 1, + STATE(3741), 1, sym_comment, - ACTIONS(7040), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2021), 4, + STATE(4270), 1, + sym_cell_path, + ACTIONS(7113), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109852] = 4, + [113611] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3632), 1, + STATE(3742), 1, sym_comment, - ACTIONS(1812), 4, + ACTIONS(1770), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1814), 4, + ACTIONS(1772), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [109871] = 4, + [113630] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3633), 1, + STATE(3743), 1, sym_comment, - ACTIONS(1900), 4, + ACTIONS(1870), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1902), 4, + ACTIONS(1872), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [109890] = 6, + [113649] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(7042), 1, - anon_sym_DOT_DOT2, - STATE(3634), 1, + ACTIONS(7115), 1, + aux_sym__immediate_decimal_token5, + STATE(3744), 1, sym_comment, - ACTIONS(7044), 2, + 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, - ACTIONS(2011), 4, + [113670] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3745), 1, + sym_comment, + ACTIONS(1872), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1870), 6, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109913] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113689] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5148), 1, + ACTIONS(1866), 1, anon_sym_DOT2, - STATE(791), 1, + STATE(427), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(458), 1, sym_path, - STATE(1344), 1, + STATE(954), 1, sym_cell_path, - STATE(2411), 1, + STATE(3746), 1, + sym_comment, + ACTIONS(7117), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [113714] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5010), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(954), 1, + sym_cell_path, + STATE(2323), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3635), 1, + STATE(3747), 1, sym_comment, - ACTIONS(7046), 4, + ACTIONS(7119), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [109938] = 5, + [113739] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6985), 1, + ACTIONS(7071), 1, aux_sym__immediate_decimal_token5, - STATE(3636), 1, + STATE(3748), 1, sym_comment, - ACTIONS(1756), 3, + ACTIONS(1746), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1754), 4, + ACTIONS(1744), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [109959] = 4, + [113760] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3637), 1, + ACTIONS(7123), 1, + anon_sym_DOT2, + STATE(2622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2871), 1, + sym_path, + STATE(3105), 1, + sym_cell_path, + STATE(3749), 1, sym_comment, - ACTIONS(1902), 2, + ACTIONS(7121), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [113785] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7059), 1, + aux_sym__immediate_decimal_token5, + STATE(3750), 1, + sym_comment, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1900), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(749), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109978] = 4, + sym_filesize_unit, + sym_duration_unit, + [113806] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3638), 1, - sym_comment, - ACTIONS(1900), 4, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1956), 1, sym__space, + ACTIONS(1960), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1902), 4, + ACTIONS(7125), 1, + anon_sym_DOT_DOT2, + STATE(3751), 1, + sym_comment, + ACTIONS(1958), 2, sym__newline, anon_sym_SEMI, + ACTIONS(7127), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113833] = 8, + 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, + ACTIONS(7129), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [109997] = 7, - ACTIONS(3), 1, + STATE(3752), 1, + sym_comment, + ACTIONS(1975), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7131), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113860] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7050), 1, + ACTIONS(1902), 1, + sym__table_head_separator, + ACTIONS(7135), 1, anon_sym_DOT2, - STATE(1936), 1, + STATE(3753), 1, + sym_comment, + STATE(4261), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2126), 1, + STATE(4812), 1, sym_path, - STATE(2198), 1, + STATE(5000), 1, sym_cell_path, - STATE(3639), 1, - sym_comment, - ACTIONS(7048), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [110022] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2740), 1, - anon_sym_COLON2, - ACTIONS(7052), 1, - anon_sym_alias, - ACTIONS(7054), 1, - anon_sym_const, - ACTIONS(7056), 1, - anon_sym_def, - ACTIONS(7058), 1, - anon_sym_use, - ACTIONS(7060), 1, - anon_sym_extern, - ACTIONS(7062), 1, - anon_sym_module, - STATE(3640), 1, - sym_comment, - [110053] = 7, + ACTIONS(7133), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__entry_separator, + [113887] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2391), 1, + ACTIONS(7139), 1, anon_sym_DOT2, - STATE(532), 1, + STATE(2516), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(791), 1, + STATE(2689), 1, sym_path, - STATE(1344), 1, + STATE(3248), 1, sym_cell_path, - STATE(3641), 1, + STATE(3754), 1, sym_comment, - ACTIONS(7064), 4, + ACTIONS(7137), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [110078] = 7, + [113912] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4950), 1, + ACTIONS(2280), 1, anon_sym_DOT2, - STATE(454), 1, + STATE(622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(720), 1, sym_path, - STATE(917), 1, + STATE(1318), 1, sym_cell_path, - STATE(2277), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3642), 1, + STATE(3755), 1, sym_comment, - ACTIONS(7066), 4, + ACTIONS(7141), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [110103] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6929), 1, - anon_sym_DOT2, - STATE(2458), 1, - sym_path, - STATE(3643), 1, - sym_comment, - STATE(3644), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1517), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [110126] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7068), 1, - anon_sym_DOT2, - STATE(2458), 1, - sym_path, - STATE(3644), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1510), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [110147] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4950), 1, - anon_sym_DOT2, - STATE(454), 1, - sym_path, - STATE(2277), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3645), 1, - sym_comment, - STATE(4108), 1, - sym_cell_path, - ACTIONS(7071), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [110172] = 4, + [113937] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3646), 1, + STATE(3756), 1, sym_comment, - ACTIONS(1746), 4, + ACTIONS(1770), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1748), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1772), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [110191] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2021), 1, - sym__space, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, sym__unquoted_pattern, - ACTIONS(7073), 1, - anon_sym_DOT_DOT2, - STATE(3647), 1, + [113956] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3757), 1, sym_comment, - ACTIONS(2023), 2, + ACTIONS(1854), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1852), 6, + anon_sym_if, sym__newline, - anon_sym_SEMI, - ACTIONS(7075), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110218] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1452), 1, - sym__entry_separator, - ACTIONS(7077), 1, - anon_sym_DOT2, - STATE(3648), 1, - sym_comment, - STATE(3756), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3934), 1, - sym_path, - STATE(4164), 1, - sym_cell_path, - ACTIONS(1450), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [110245] = 7, + [113975] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1444), 1, + ACTIONS(1458), 1, sym__entry_separator, - ACTIONS(7079), 1, + ACTIONS(7143), 1, anon_sym_QMARK2, - ACTIONS(7081), 1, + ACTIONS(7145), 1, anon_sym_BANG, - STATE(3649), 1, + STATE(3758), 1, sym_comment, - STATE(3937), 1, + STATE(4192), 1, sym__path_suffix, - ACTIONS(1442), 4, + ACTIONS(1456), 4, anon_sym_RBRACK, anon_sym_GT2, anon_sym_DOT_DOT, anon_sym_DOT2, - [110270] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7083), 1, - aux_sym__immediate_decimal_token5, - STATE(3650), 1, - sym_comment, - ACTIONS(763), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(765), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [110291] = 8, + [114000] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1894), 1, - sym__table_head_separator, - ACTIONS(7085), 1, - anon_sym_DOT2, - STATE(3651), 1, - sym_comment, - STATE(4178), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4732), 1, - sym_path, - STATE(5151), 1, - sym_cell_path, - ACTIONS(7014), 3, + 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, - sym__entry_separator, - [110318] = 4, + 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(7089), 1, + ACTIONS(7149), 1, anon_sym_DASH2, - STATE(3652), 1, + STATE(3761), 1, sym_comment, - ACTIONS(7087), 7, + ACTIONS(7147), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -230832,14 +234917,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [110337] = 6, + [114057] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7091), 1, + 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(7093), 1, + ACTIONS(7155), 1, aux_sym__immediate_decimal_token5, - STATE(3653), 1, + STATE(3763), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, @@ -230849,3071 +234952,3061 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [110360] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6929), 1, - anon_sym_DOT2, - STATE(2458), 1, - sym_path, - STATE(2997), 1, - sym_cell_path, - STATE(3643), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3654), 1, - sym_comment, - ACTIONS(7095), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [110385] = 7, + [114105] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7099), 1, + ACTIONS(1866), 1, anon_sym_DOT2, - STATE(2473), 1, + STATE(427), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, + STATE(458), 1, sym_path, - STATE(3214), 1, + STATE(954), 1, sym_cell_path, - STATE(3655), 1, + STATE(3764), 1, sym_comment, - ACTIONS(7097), 4, + ACTIONS(7157), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [110410] = 4, + [114130] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3656), 1, + ACTIONS(7159), 1, + aux_sym__immediate_decimal_token5, + STATE(3765), 1, sym_comment, - ACTIONS(1900), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1902), 4, - anon_sym_RBRACK, + ACTIONS(1854), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [110429] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2011), 1, - sym__space, - ACTIONS(2015), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1852), 4, anon_sym_LPAREN2, - ACTIONS(7101), 1, - anon_sym_DOT_DOT2, - STATE(3657), 1, - sym_comment, - ACTIONS(2013), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7103), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110456] = 4, + sym__entry_separator, + [114151] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3658), 1, + ACTIONS(5010), 1, + anon_sym_DOT2, + STATE(458), 1, + sym_path, + STATE(2323), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3766), 1, sym_comment, - ACTIONS(1814), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1812), 6, + STATE(4341), 1, + sym_cell_path, + ACTIONS(7161), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110475] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2391), 1, - anon_sym_DOT2, - STATE(532), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(791), 1, - sym_path, - STATE(1344), 1, - sym_cell_path, - STATE(3659), 1, - sym_comment, - ACTIONS(7105), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [110500] = 5, + [114176] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7107), 1, + ACTIONS(7033), 1, aux_sym__immediate_decimal_token5, - STATE(3660), 1, + STATE(3767), 1, sym_comment, - ACTIONS(1814), 2, + ACTIONS(1746), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1812), 5, + ACTIONS(1744), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110521] = 4, + [114197] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3661), 1, + STATE(3768), 1, sym_comment, - ACTIONS(1746), 4, - sym__space, + ACTIONS(1870), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1748), 4, - sym__newline, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(1872), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [110540] = 5, + sym__unquoted_pattern_in_list, + [114216] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7109), 1, - aux_sym__immediate_decimal_token5, - STATE(3662), 1, + STATE(3769), 1, sym_comment, - ACTIONS(1814), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1812), 4, + ACTIONS(1770), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [110561] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6973), 1, - aux_sym__immediate_decimal_token5, - STATE(3663), 1, - sym_comment, - ACTIONS(747), 2, + ACTIONS(1772), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, 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, - [110582] = 5, - ACTIONS(3), 1, + sym__unquoted_pattern_in_list, + [114235] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6997), 1, - aux_sym__immediate_decimal_token5, - STATE(3664), 1, + STATE(3770), 1, sym_comment, - ACTIONS(1756), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1754), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1852), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110603] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(858), 1, - anon_sym_RBRACE, - ACTIONS(884), 1, sym__entry_separator, - ACTIONS(7111), 1, + ACTIONS(1854), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(7115), 1, - sym_filesize_unit, - ACTIONS(7117), 1, - sym_duration_unit, - STATE(3665), 1, - sym_comment, - ACTIONS(7113), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110629] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7052), 1, - anon_sym_alias, - ACTIONS(7054), 1, - anon_sym_const, - ACTIONS(7056), 1, - anon_sym_def, - ACTIONS(7058), 1, - anon_sym_use, - ACTIONS(7060), 1, - anon_sym_extern, - ACTIONS(7062), 1, - anon_sym_module, - STATE(3666), 1, - sym_comment, - [110657] = 5, + sym__unquoted_pattern_in_list, + [114254] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7119), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(7163), 1, anon_sym_DOT_DOT2, - STATE(3667), 1, + STATE(3771), 1, sym_comment, - ACTIONS(7121), 2, + ACTIONS(7165), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 4, + ACTIONS(1956), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [110677] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2740), 1, - anon_sym_COLON2, - ACTIONS(7123), 1, - sym_identifier, - ACTIONS(7125), 1, - anon_sym_DOLLAR, - STATE(2828), 1, - sym_val_variable, - STATE(3668), 1, - sym_comment, - STATE(3965), 1, - sym__variable_name, - STATE(4293), 1, - sym__assignment_pattern, - [110705] = 6, + [114277] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, - sym__unquoted_pattern, - ACTIONS(7127), 1, - anon_sym_DOT, - ACTIONS(7129), 1, - aux_sym__immediate_decimal_token5, - STATE(3669), 1, + ACTIONS(2280), 1, + anon_sym_DOT2, + STATE(622), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(720), 1, + sym_path, + STATE(1318), 1, + sym_cell_path, + STATE(3772), 1, sym_comment, - ACTIONS(1754), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [110727] = 8, + ACTIONS(7167), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [114302] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5247), 1, - sym__entry_separator, - ACTIONS(7131), 1, + ACTIONS(1902), 1, + sym__table_head_separator, + ACTIONS(7133), 1, + anon_sym_DOT_DOT, + ACTIONS(7172), 1, anon_sym_DOT2, - STATE(349), 1, - sym_path, - STATE(3670), 1, + STATE(3773), 1, sym_comment, - STATE(3814), 1, + STATE(3910), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4601), 1, + STATE(4272), 1, + sym_path, + STATE(4655), 1, sym_cell_path, - ACTIONS(5245), 2, + ACTIONS(7169), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [110753] = 8, + sym__entry_separator, + [114331] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2021), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1956), 1, sym__entry_separator, - ACTIONS(2023), 1, - anon_sym_RBRACE, - ACTIONS(2025), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7133), 1, + ACTIONS(7174), 1, anon_sym_DOT_DOT2, - STATE(3671), 1, + STATE(3774), 1, sym_comment, - ACTIONS(7135), 2, + ACTIONS(1958), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7176), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110779] = 7, - ACTIONS(103), 1, + [114358] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7016), 1, + ACTIONS(7180), 1, anon_sym_DOT2, - STATE(3672), 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(3803), 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(4250), 1, + STATE(2583), 1, sym_path, - STATE(4659), 1, + STATE(3199), 1, sym_cell_path, - ACTIONS(1894), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [110803] = 9, + 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(3895), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - sym__newline, - ACTIONS(7137), 1, - anon_sym_RBRACK, - STATE(3673), 1, + ACTIONS(7186), 1, + aux_sym__immediate_decimal_token5, + STATE(3777), 1, sym_comment, - STATE(4023), 1, - aux_sym__types_body_repeat1, - STATE(4506), 1, - sym_val_list, - STATE(4520), 1, - aux_sym__table_body_repeat1, - STATE(5054), 1, - sym__table_body, - [110831] = 9, + 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, + [114429] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7139), 1, - anon_sym_LBRACK, - ACTIONS(7141), 1, - anon_sym_LPAREN, - ACTIONS(7143), 1, - anon_sym_DASH_DASH, - STATE(1657), 1, - sym_parameter_parens, - STATE(1658), 1, - sym_parameter_bracks, - STATE(3674), 1, + 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, - STATE(4049), 1, - aux_sym_decl_def_repeat1, - STATE(4479), 1, - sym_long_flag, - [110859] = 4, + ACTIONS(7188), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [114454] = 10, ACTIONS(103), 1, anon_sym_POUND, - STATE(3675), 1, + ACTIONS(2682), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2684), 1, + anon_sym_COLON2, + ACTIONS(7190), 1, + anon_sym_alias, + ACTIONS(7192), 1, + anon_sym_const, + ACTIONS(7194), 1, + anon_sym_def, + ACTIONS(7196), 1, + anon_sym_use, + ACTIONS(7198), 1, + anon_sym_extern, + ACTIONS(7200), 1, + anon_sym_module, + STATE(3779), 1, sym_comment, - ACTIONS(1748), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1746), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [110877] = 8, + [114485] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2021), 1, - sym__entry_separator, - ACTIONS(2023), 1, - anon_sym_RBRACK, - ACTIONS(2025), 1, + ACTIONS(1973), 1, + sym__space, + ACTIONS(1977), 1, anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7145), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(7202), 1, anon_sym_DOT_DOT2, - STATE(3676), 1, + STATE(3780), 1, sym_comment, - ACTIONS(7147), 2, + ACTIONS(1975), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7204), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110903] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3895), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - sym__newline, - ACTIONS(7149), 1, - anon_sym_RBRACK, - STATE(3677), 1, - sym_comment, - STATE(4023), 1, - aux_sym__types_body_repeat1, - STATE(4506), 1, - sym_val_list, - STATE(4520), 1, - aux_sym__table_body_repeat1, - STATE(5251), 1, - sym__table_body, - [110931] = 8, + [114512] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(1444), 1, sym__entry_separator, - ACTIONS(7131), 1, + ACTIONS(7206), 1, anon_sym_DOT2, - STATE(349), 1, - sym_path, - STATE(3678), 1, + STATE(3781), 1, sym_comment, - STATE(3814), 1, + STATE(3813), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4186), 1, + STATE(4188), 1, + sym_path, + STATE(4248), 1, sym_cell_path, - ACTIONS(1858), 2, + ACTIONS(1442), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [110957] = 5, + anon_sym_GT2, + anon_sym_DOT_DOT, + [114539] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7151), 1, - anon_sym_DOT_DOT2, - STATE(3679), 1, + STATE(3782), 1, sym_comment, - ACTIONS(7153), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2108), 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, - [110977] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7155), 1, - anon_sym_DOT_DOT2, - STATE(3680), 1, - sym_comment, - ACTIONS(7157), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2116), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [110997] = 5, - ACTIONS(3), 1, + [114558] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7159), 1, - anon_sym_DOT_DOT2, - STATE(3681), 1, + STATE(3783), 1, sym_comment, - ACTIONS(7161), 2, + ACTIONS(1852), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2124), 4, - anon_sym_if, + ACTIONS(1854), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [111017] = 8, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [114577] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__entry_separator, - ACTIONS(7131), 1, + ACTIONS(7210), 1, anon_sym_DOT2, - STATE(349), 1, + STATE(360), 1, sym_path, - STATE(3682), 1, + STATE(3784), 1, sym_comment, - STATE(3814), 1, + STATE(3924), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4194), 1, + STATE(4572), 1, sym_cell_path, - ACTIONS(1874), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [111043] = 6, - ACTIONS(103), 1, + ACTIONS(7208), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [114602] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7163), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7165), 1, - aux_sym__immediate_decimal_token5, - STATE(3683), 1, + ACTIONS(5237), 1, + anon_sym_DOT2, + STATE(720), 1, + sym_path, + STATE(1318), 1, + sym_cell_path, + STATE(2414), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3785), 1, sym_comment, - ACTIONS(1746), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1748), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [111065] = 7, + ACTIONS(7212), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [114627] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7016), 1, - anon_sym_DOT2, - STATE(3684), 1, + STATE(3786), 1, sym_comment, - STATE(3803), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4250), 1, - sym_path, - STATE(4422), 1, - sym_cell_path, - ACTIONS(1890), 3, - anon_sym_RBRACK, + ACTIONS(1645), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - sym__table_head_separator, - [111089] = 9, + ACTIONS(1647), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [114645] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7139), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7141), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7143), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1669), 1, + STATE(1562), 1, sym_parameter_parens, - STATE(1678), 1, + STATE(1563), 1, sym_parameter_bracks, - STATE(3685), 1, + STATE(3787), 1, sym_comment, - STATE(3708), 1, + STATE(4098), 1, aux_sym_decl_def_repeat1, - STATE(4479), 1, + STATE(4582), 1, sym_long_flag, - [111117] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7167), 1, - anon_sym_DOT2, - STATE(2257), 1, - sym_cell_path, - STATE(2458), 1, - sym_path, - STATE(3686), 1, - sym_comment, - STATE(3927), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1452), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [111141] = 4, + [114673] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3687), 1, - sym_comment, - ACTIONS(1850), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1956), 1, sym__entry_separator, - ACTIONS(1852), 4, - anon_sym_RBRACK, + ACTIONS(1958), 1, anon_sym_RBRACE, - anon_sym_DOT_DOT, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + ACTIONS(7220), 1, anon_sym_DOT_DOT2, - [111159] = 9, + STATE(3788), 1, + sym_comment, + ACTIONS(7222), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114699] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7139), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7141), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7143), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1628), 1, + STATE(1564), 1, sym_parameter_parens, - STATE(1629), 1, + STATE(1565), 1, sym_parameter_bracks, - STATE(3688), 1, + STATE(3789), 1, sym_comment, - STATE(3702), 1, + STATE(3797), 1, aux_sym_decl_def_repeat1, - STATE(4479), 1, + STATE(4582), 1, sym_long_flag, - [111187] = 9, + [114727] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + 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, + [114755] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7224), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7226), 1, + aux_sym__immediate_decimal_token5, + STATE(3791), 1, + sym_comment, + ACTIONS(1770), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1772), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [114777] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(866), 1, + anon_sym_RBRACE, + ACTIONS(886), 1, + sym__entry_separator, + ACTIONS(7228), 1, + anon_sym_DOT_DOT2, + ACTIONS(7232), 1, + sym_filesize_unit, + ACTIONS(7234), 1, + sym_duration_unit, + STATE(3792), 1, + sym_comment, + ACTIONS(7230), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114803] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7161), 1, + sym__entry_separator, + ACTIONS(7206), 1, + anon_sym_DOT2, + STATE(3793), 1, + sym_comment, + STATE(3813), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4188), 1, + sym_path, + STATE(4593), 1, + sym_cell_path, + ACTIONS(7236), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [114829] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7139), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7141), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7143), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1664), 1, + STATE(1533), 1, sym_parameter_parens, - STATE(1665), 1, + STATE(1534), 1, sym_parameter_bracks, - STATE(3689), 1, + STATE(3794), 1, sym_comment, - STATE(4049), 1, + STATE(4098), 1, aux_sym_decl_def_repeat1, - STATE(4479), 1, + STATE(4582), 1, sym_long_flag, - [111215] = 9, + [114857] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7139), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7141), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7143), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1666), 1, + STATE(1535), 1, sym_parameter_parens, - STATE(1667), 1, + STATE(1536), 1, sym_parameter_bracks, - STATE(3674), 1, - aux_sym_decl_def_repeat1, - STATE(3690), 1, + STATE(3795), 1, sym_comment, - STATE(4479), 1, + STATE(3877), 1, + aux_sym_decl_def_repeat1, + STATE(4582), 1, sym_long_flag, - [111243] = 6, - ACTIONS(103), 1, + [114885] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7169), 1, - anon_sym_DOT, - ACTIONS(7171), 1, + ACTIONS(1772), 1, + sym__unquoted_pattern, + ACTIONS(7238), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7240), 1, aux_sym__immediate_decimal_token5, - STATE(3691), 1, + STATE(3796), 1, sym_comment, - ACTIONS(1754), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1756), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [111265] = 9, + ACTIONS(1770), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [114907] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7139), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7141), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7143), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1561), 1, + STATE(1566), 1, sym_parameter_parens, - STATE(1563), 1, + STATE(1567), 1, sym_parameter_bracks, - STATE(3692), 1, + STATE(3797), 1, sym_comment, - STATE(4049), 1, + STATE(4098), 1, aux_sym_decl_def_repeat1, - STATE(4479), 1, + STATE(4582), 1, sym_long_flag, - [111293] = 8, + [114935] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, - sym__entry_separator, - ACTIONS(7131), 1, - anon_sym_DOT2, - STATE(349), 1, - sym_path, - STATE(3693), 1, + STATE(3798), 1, sym_comment, - STATE(3814), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4148), 1, - sym_cell_path, - ACTIONS(1865), 2, + ACTIONS(1878), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1880), 4, anon_sym_RBRACK, anon_sym_RBRACE, - [111319] = 9, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [114953] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3895), 1, + ACTIONS(3946), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3990), 1, sym__newline, - ACTIONS(7173), 1, + ACTIONS(7242), 1, anon_sym_RBRACK, - STATE(3694), 1, + STATE(3799), 1, sym_comment, - STATE(4023), 1, + STATE(4190), 1, aux_sym__types_body_repeat1, - STATE(4506), 1, + STATE(4694), 1, sym_val_list, - STATE(4520), 1, + STATE(4769), 1, aux_sym__table_body_repeat1, - STATE(4839), 1, + STATE(5319), 1, sym__table_body, - [111347] = 6, + [114981] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7175), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(7244), 1, + anon_sym_DOT, + STATE(3800), 1, + sym_comment, + STATE(4430), 1, + sym__immediate_decimal, + ACTIONS(6497), 2, aux_sym__immediate_decimal_token1, - ACTIONS(7177), 1, - aux_sym__immediate_decimal_token5, - STATE(3695), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6499), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [115005] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7246), 1, + anon_sym_QMARK2, + ACTIONS(7248), 1, + anon_sym_BANG, + STATE(3801), 1, sym_comment, - ACTIONS(1748), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1746), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111369] = 9, + STATE(4348), 1, + sym__path_suffix, + ACTIONS(1456), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [115027] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3895), 1, + ACTIONS(3946), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3990), 1, sym__newline, - ACTIONS(7179), 1, + ACTIONS(7250), 1, anon_sym_RBRACK, - STATE(3696), 1, + STATE(3802), 1, sym_comment, - STATE(4023), 1, + STATE(4190), 1, aux_sym__types_body_repeat1, - STATE(4506), 1, + STATE(4694), 1, sym_val_list, - STATE(4520), 1, + STATE(4769), 1, aux_sym__table_body_repeat1, - STATE(4859), 1, + STATE(5152), 1, sym__table_body, - [111397] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7077), 1, - anon_sym_DOT2, - ACTIONS(7181), 1, - anon_sym_RBRACK, - ACTIONS(7185), 1, - anon_sym_DOT_DOT, - ACTIONS(7187), 1, - sym__entry_separator, - STATE(3697), 1, - sym_comment, - STATE(3756), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3934), 1, - sym_path, - STATE(4526), 1, - sym_cell_path, - [111425] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7191), 1, - anon_sym_DOT, - ACTIONS(7193), 1, - aux_sym__immediate_decimal_token5, - STATE(3698), 1, - sym_comment, - ACTIONS(1756), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1754), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111447] = 9, + [115055] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7139), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7141), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7143), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1625), 1, + STATE(1558), 1, sym_parameter_parens, - STATE(1626), 1, + STATE(1559), 1, sym_parameter_bracks, - STATE(3699), 1, - sym_comment, - STATE(3716), 1, + STATE(3787), 1, aux_sym_decl_def_repeat1, - STATE(4479), 1, + STATE(3803), 1, + sym_comment, + STATE(4582), 1, sym_long_flag, - [111475] = 8, + [115083] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(3804), 1, + sym_comment, + STATE(4482), 1, + sym__immediate_decimal, + ACTIONS(7254), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7256), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [115107] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1452), 1, + STATE(3805), 1, + sym_comment, + ACTIONS(1772), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1770), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [115125] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1444), 1, sym__entry_separator, - ACTIONS(7131), 1, + ACTIONS(7258), 1, anon_sym_DOT2, - STATE(349), 1, + STATE(360), 1, sym_path, - STATE(373), 1, + STATE(372), 1, sym_cell_path, - STATE(3700), 1, + STATE(3806), 1, sym_comment, - STATE(3814), 1, + STATE(3924), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1450), 2, + ACTIONS(1442), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [111501] = 6, + [115151] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2031), 1, + ACTIONS(886), 1, + anon_sym_LBRACE, + ACTIONS(1734), 1, sym__unquoted_pattern, - ACTIONS(7195), 1, + ACTIONS(7260), 1, anon_sym_DOT_DOT2, - STATE(3701), 1, + ACTIONS(7264), 1, + sym_filesize_unit, + ACTIONS(7266), 1, + sym_duration_unit, + STATE(3807), 1, sym_comment, - ACTIONS(7197), 2, + ACTIONS(7262), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2021), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [111523] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7139), 1, - anon_sym_LBRACK, - ACTIONS(7141), 1, - anon_sym_LPAREN, - ACTIONS(7143), 1, - anon_sym_DASH_DASH, - STATE(1635), 1, - sym_parameter_parens, - STATE(1648), 1, - sym_parameter_bracks, - STATE(3702), 1, - sym_comment, - STATE(4049), 1, - aux_sym_decl_def_repeat1, - STATE(4479), 1, - sym_long_flag, - [111551] = 6, + [115177] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(7199), 1, + ACTIONS(7270), 1, anon_sym_DOT_DOT2, - STATE(3703), 1, + STATE(3808), 1, sym_comment, - ACTIONS(7201), 2, + ACTIONS(7272), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2011), 3, + ACTIONS(7268), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [111573] = 4, + [115197] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3704), 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, - 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, - [111591] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7139), 1, + ACTIONS(1882), 3, anon_sym_LBRACK, - ACTIONS(7141), 1, anon_sym_LPAREN, - ACTIONS(7143), 1, anon_sym_DASH_DASH, - STATE(1627), 1, - sym_parameter_parens, - STATE(1655), 1, - sym_parameter_bracks, - STATE(3689), 1, - aux_sym_decl_def_repeat1, - STATE(3705), 1, + [115221] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3810), 1, sym_comment, - STATE(4479), 1, - sym_long_flag, - [111619] = 9, + ACTIONS(1858), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1860), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [115239] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7274), 1, + anon_sym_DOT, + ACTIONS(7276), 1, + aux_sym__immediate_decimal_token5, + STATE(3811), 1, + sym_comment, + ACTIONS(1744), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1746), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [115261] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7139), 1, + ACTIONS(3946), 1, anon_sym_LBRACK, - ACTIONS(7141), 1, - anon_sym_LPAREN, - ACTIONS(7143), 1, - anon_sym_DASH_DASH, - STATE(1670), 1, - sym_parameter_parens, - STATE(1672), 1, - sym_parameter_bracks, - STATE(3706), 1, + ACTIONS(3990), 1, + sym__newline, + ACTIONS(7278), 1, + anon_sym_RBRACK, + STATE(3812), 1, sym_comment, - STATE(3726), 1, - aux_sym_decl_def_repeat1, - STATE(4479), 1, - sym_long_flag, - [111647] = 8, - 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(4951), 1, + sym__table_body, + [115289] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(884), 1, - anon_sym_LBRACE, - ACTIONS(1776), 1, - sym__unquoted_pattern, - ACTIONS(7203), 1, - anon_sym_DOT_DOT2, - ACTIONS(7207), 1, - sym_filesize_unit, - ACTIONS(7209), 1, - sym_duration_unit, - STATE(3707), 1, + ACTIONS(1506), 1, + sym__entry_separator, + ACTIONS(7206), 1, + anon_sym_DOT2, + STATE(3813), 1, sym_comment, - ACTIONS(7205), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111673] = 9, - ACTIONS(3), 1, + STATE(3851), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4188), 1, + sym_path, + ACTIONS(1504), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + [115313] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7139), 1, - anon_sym_LBRACK, - ACTIONS(7141), 1, - anon_sym_LPAREN, - ACTIONS(7143), 1, - anon_sym_DASH_DASH, - STATE(1673), 1, - sym_parameter_parens, - STATE(1675), 1, - sym_parameter_bracks, - STATE(3708), 1, + ACTIONS(7280), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7282), 1, + aux_sym__immediate_decimal_token5, + STATE(3814), 1, sym_comment, - STATE(4049), 1, - aux_sym_decl_def_repeat1, - STATE(4479), 1, - sym_long_flag, - [111701] = 9, + ACTIONS(1770), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1772), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [115335] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3895), 1, + ACTIONS(3946), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(3990), 1, sym__newline, - ACTIONS(7211), 1, + ACTIONS(7284), 1, anon_sym_RBRACK, - STATE(3709), 1, + STATE(3815), 1, sym_comment, - STATE(4023), 1, + STATE(4190), 1, aux_sym__types_body_repeat1, - STATE(4506), 1, + STATE(4694), 1, sym_val_list, - STATE(4520), 1, + STATE(4769), 1, aux_sym__table_body_repeat1, - STATE(5100), 1, + STATE(5204), 1, sym__table_body, - [111729] = 7, + [115363] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1956), 1, + sym__entry_separator, + ACTIONS(1958), 1, + anon_sym_RBRACK, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + ACTIONS(7286), 1, + anon_sym_DOT_DOT2, + STATE(3816), 1, + sym_comment, + ACTIONS(7288), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115389] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(7213), 1, - anon_sym_DOT, - STATE(3710), 1, + STATE(3817), 1, sym_comment, - STATE(4152), 1, - sym__immediate_decimal, - ACTIONS(6498), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6500), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [111753] = 9, + 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, + [115407] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7139), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7141), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7143), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1620), 1, - sym_parameter_bracks, - STATE(1677), 1, + STATE(1537), 1, sym_parameter_parens, - STATE(3711), 1, + STATE(1538), 1, + sym_parameter_bracks, + STATE(3818), 1, sym_comment, - STATE(3730), 1, + STATE(4098), 1, aux_sym_decl_def_repeat1, - STATE(4479), 1, + STATE(4582), 1, sym_long_flag, - [111781] = 8, - ACTIONS(103), 1, + [115435] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - sym__entry_separator, - ACTIONS(7077), 1, + ACTIONS(5030), 1, anon_sym_DOT2, - STATE(3712), 1, - sym_comment, - STATE(3756), 1, + STATE(2459), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3934), 1, + STATE(2500), 1, sym_path, - STATE(4183), 1, + STATE(3206), 1, sym_cell_path, - ACTIONS(1882), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [111807] = 8, + 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, - ACTIONS(1872), 1, - sym__entry_separator, - ACTIONS(7077), 1, - anon_sym_DOT2, - STATE(3713), 1, + STATE(3821), 1, sym_comment, - STATE(3756), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3934), 1, - sym_path, - STATE(4194), 1, - sym_cell_path, - ACTIONS(1874), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [111833] = 8, + 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, + [115505] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1892), 1, + ACTIONS(5416), 1, sym__entry_separator, - ACTIONS(7131), 1, + ACTIONS(7258), 1, anon_sym_DOT2, - STATE(349), 1, + STATE(360), 1, sym_path, - STATE(3714), 1, + STATE(3822), 1, sym_comment, - STATE(3814), 1, + STATE(3924), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4240), 1, + STATE(4692), 1, sym_cell_path, - ACTIONS(1894), 2, + ACTIONS(5414), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [111859] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(884), 1, - sym__entry_separator, - ACTIONS(6277), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6743), 1, - anon_sym_DOT_DOT2, - ACTIONS(6747), 1, - sym_filesize_unit, - ACTIONS(6749), 1, - sym_duration_unit, - STATE(3715), 1, - sym_comment, - ACTIONS(6745), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111885] = 9, + [115531] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7139), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7141), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7143), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1623), 1, + STATE(1556), 1, sym_parameter_parens, - STATE(1624), 1, + STATE(1557), 1, sym_parameter_bracks, - STATE(3716), 1, + STATE(3823), 1, sym_comment, - STATE(4049), 1, + STATE(4098), 1, aux_sym_decl_def_repeat1, - STATE(4479), 1, + STATE(4582), 1, sym_long_flag, - [111913] = 5, + [115559] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3946), 1, + anon_sym_LBRACK, + ACTIONS(3990), 1, + sym__newline, + ACTIONS(7290), 1, + anon_sym_RBRACK, + STATE(3824), 1, + sym_comment, + STATE(4190), 1, + aux_sym__types_body_repeat1, + STATE(4694), 1, + sym_val_list, + STATE(4769), 1, + aux_sym__table_body_repeat1, + STATE(5248), 1, + sym__table_body, + [115587] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7217), 1, + ACTIONS(7292), 1, anon_sym_DOT_DOT2, - STATE(3717), 1, + STATE(3825), 1, sym_comment, - ACTIONS(7219), 2, + ACTIONS(7294), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7215), 4, + ACTIONS(2154), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [111933] = 8, + [115607] = 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(1686), 1, + sym_parameter_parens, + STATE(1687), 1, + sym_parameter_bracks, + STATE(3826), 1, + sym_comment, + STATE(4098), 1, + aux_sym_decl_def_repeat1, + STATE(4582), 1, + sym_long_flag, + [115635] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1888), 1, + ACTIONS(1912), 1, sym__entry_separator, - ACTIONS(7131), 1, + ACTIONS(7258), 1, anon_sym_DOT2, - STATE(349), 1, + STATE(360), 1, sym_path, - STATE(3718), 1, + STATE(3827), 1, sym_comment, - STATE(3814), 1, + STATE(3924), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4261), 1, + STATE(4228), 1, sym_cell_path, - ACTIONS(1890), 2, + ACTIONS(1914), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [111959] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7221), 1, - anon_sym_QMARK2, - ACTIONS(7223), 1, - anon_sym_BANG, - STATE(3719), 1, - sym_comment, - STATE(4294), 1, - sym__path_suffix, - ACTIONS(1442), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [111981] = 9, + [115661] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2950), 1, + ACTIONS(2829), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7225), 1, + ACTIONS(7296), 1, anon_sym_alias, - ACTIONS(7227), 1, + ACTIONS(7298), 1, anon_sym_const, - ACTIONS(7229), 1, + ACTIONS(7300), 1, anon_sym_def, - ACTIONS(7231), 1, + ACTIONS(7302), 1, anon_sym_use, - ACTIONS(7233), 1, + ACTIONS(7304), 1, anon_sym_extern, - ACTIONS(7235), 1, + ACTIONS(7306), 1, anon_sym_module, - STATE(3720), 1, + STATE(3828), 1, sym_comment, - [112009] = 9, + [115689] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2738), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2740), 1, - anon_sym_COLON2, - ACTIONS(7123), 1, - sym_identifier, - ACTIONS(7237), 1, - anon_sym_DOLLAR, - STATE(2827), 1, - sym__variable_name, - STATE(2828), 1, - sym_val_variable, - STATE(3721), 1, + ACTIONS(5375), 1, + sym__entry_separator, + ACTIONS(7258), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(3829), 1, sym_comment, - STATE(4290), 1, - sym__assignment_pattern, - [112037] = 8, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4770), 1, + sym_cell_path, + ACTIONS(5373), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [115715] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7032), 1, + ACTIONS(5342), 1, sym__entry_separator, - ACTIONS(7077), 1, + ACTIONS(7258), 1, anon_sym_DOT2, - STATE(3722), 1, + STATE(360), 1, + sym_path, + STATE(3830), 1, sym_comment, - STATE(3756), 1, + STATE(3924), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3934), 1, - sym_path, - STATE(4557), 1, + STATE(4775), 1, sym_cell_path, - ACTIONS(7185), 2, + ACTIONS(5340), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [112063] = 9, + anon_sym_RBRACE, + [115741] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3895), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, - sym__newline, - ACTIONS(7239), 1, - anon_sym_RBRACK, - STATE(3723), 1, + ACTIONS(7216), 1, + anon_sym_LPAREN, + ACTIONS(7218), 1, + anon_sym_DASH_DASH, + STATE(1540), 1, + sym_parameter_parens, + STATE(1541), 1, + sym_parameter_bracks, + STATE(3831), 1, sym_comment, - STATE(4023), 1, - aux_sym__types_body_repeat1, - STATE(4506), 1, - sym_val_list, - STATE(4520), 1, - aux_sym__table_body_repeat1, - STATE(5232), 1, - sym__table_body, - [112091] = 7, + STATE(3862), 1, + aux_sym_decl_def_repeat1, + STATE(4582), 1, + sym_long_flag, + [115769] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6929), 1, + ACTIONS(7308), 1, anon_sym_DOT2, - STATE(2458), 1, - sym_path, - STATE(2966), 1, + STATE(2293), 1, sym_cell_path, - STATE(3643), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3724), 1, + STATE(2500), 1, + sym_path, + STATE(3832), 1, sym_comment, - ACTIONS(1872), 3, + 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(7214), 1, anon_sym_LBRACK, + ACTIONS(7216), 1, anon_sym_LPAREN, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - [112115] = 6, + STATE(1522), 1, + sym_parameter_parens, + STATE(1523), 1, + sym_parameter_bracks, + STATE(3833), 1, + sym_comment, + STATE(3852), 1, + aux_sym_decl_def_repeat1, + STATE(4582), 1, + sym_long_flag, + [115821] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1748), 1, + ACTIONS(1746), 1, sym__unquoted_pattern, - ACTIONS(7241), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7243), 1, + ACTIONS(7310), 1, + anon_sym_DOT, + ACTIONS(7312), 1, aux_sym__immediate_decimal_token5, - STATE(3725), 1, + STATE(3834), 1, sym_comment, - ACTIONS(1746), 4, + ACTIONS(1744), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [112137] = 9, + [115843] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7139), 1, - anon_sym_LBRACK, - ACTIONS(7141), 1, - anon_sym_LPAREN, - ACTIONS(7143), 1, - anon_sym_DASH_DASH, - STATE(1565), 1, - sym_parameter_parens, - STATE(1602), 1, - sym_parameter_bracks, - STATE(3726), 1, + ACTIONS(7107), 1, + aux_sym__immediate_decimal_token5, + STATE(3835), 1, sym_comment, - STATE(4049), 1, - aux_sym_decl_def_repeat1, - STATE(4479), 1, - sym_long_flag, - [112165] = 9, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(749), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [115863] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7139), 1, - anon_sym_LBRACK, - ACTIONS(7141), 1, - anon_sym_LPAREN, - ACTIONS(7143), 1, - anon_sym_DASH_DASH, - STATE(1603), 1, - sym_parameter_parens, - STATE(1604), 1, - sym_parameter_bracks, - STATE(3727), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(7314), 1, + anon_sym_DOT_DOT2, + STATE(3836), 1, sym_comment, - STATE(3738), 1, - aux_sym_decl_def_repeat1, - STATE(4479), 1, - sym_long_flag, - [112193] = 5, + ACTIONS(7316), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1956), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [115885] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7245), 1, - aux_sym__immediate_decimal_token5, - STATE(3728), 1, + ACTIONS(3946), 1, + anon_sym_LBRACK, + ACTIONS(3990), 1, + sym__newline, + ACTIONS(7318), 1, + anon_sym_RBRACK, + STATE(3837), 1, sym_comment, - ACTIONS(763), 2, + STATE(4190), 1, + aux_sym__types_body_repeat1, + STATE(4694), 1, + sym_val_list, + STATE(4769), 1, + aux_sym__table_body_repeat1, + STATE(5023), 1, + sym__table_body, + [115913] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3838), 1, + sym_comment, + ACTIONS(1872), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(765), 4, + ACTIONS(1870), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [112213] = 7, + sym__entry_separator, + [115931] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6929), 1, + ACTIONS(7320), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7322), 1, + aux_sym__immediate_decimal_token5, + STATE(3839), 1, + sym_comment, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1770), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115953] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1888), 1, + sym__entry_separator, + ACTIONS(7206), 1, anon_sym_DOT2, - STATE(2458), 1, - sym_path, - STATE(2859), 1, - sym_cell_path, - STATE(3643), 1, + STATE(3813), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3729), 1, + STATE(3840), 1, sym_comment, - ACTIONS(1862), 3, + STATE(4188), 1, + sym_path, + STATE(4226), 1, + sym_cell_path, + ACTIONS(1890), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [115979] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3946), 1, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [112237] = 9, + ACTIONS(3990), 1, + sym__newline, + ACTIONS(7324), 1, + anon_sym_RBRACK, + STATE(3841), 1, + sym_comment, + STATE(4190), 1, + aux_sym__types_body_repeat1, + STATE(4694), 1, + sym_val_list, + STATE(4769), 1, + aux_sym__table_body_repeat1, + STATE(5099), 1, + sym__table_body, + [116007] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7139), 1, + ACTIONS(3946), 1, anon_sym_LBRACK, - ACTIONS(7141), 1, - anon_sym_LPAREN, - ACTIONS(7143), 1, - anon_sym_DASH_DASH, - STATE(1618), 1, - sym_parameter_parens, - STATE(1619), 1, - sym_parameter_bracks, - STATE(3730), 1, + ACTIONS(3990), 1, + sym__newline, + ACTIONS(7326), 1, + anon_sym_RBRACK, + STATE(3842), 1, sym_comment, - STATE(4049), 1, - aux_sym_decl_def_repeat1, - STATE(4479), 1, - sym_long_flag, - [112265] = 8, + 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(5292), 1, + ACTIONS(1896), 1, + sym__entry_separator, + ACTIONS(7206), 1, + anon_sym_DOT2, + STATE(3813), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3843), 1, + sym_comment, + STATE(4188), 1, + sym_path, + STATE(4250), 1, + sym_cell_path, + 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(7131), 1, + ACTIONS(7258), 1, anon_sym_DOT2, - STATE(349), 1, + STATE(360), 1, sym_path, - STATE(3731), 1, + STATE(3844), 1, sym_comment, - STATE(3814), 1, + STATE(3924), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4464), 1, + STATE(4294), 1, sym_cell_path, - ACTIONS(5290), 2, + ACTIONS(1902), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [112291] = 9, + [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, + STATE(4186), 1, + sym__variable_name, + STATE(4305), 1, + sym__assignment_pattern, + [116115] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7139), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7141), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7143), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1630), 1, + STATE(1560), 1, sym_parameter_parens, - STATE(1631), 1, + STATE(1561), 1, sym_parameter_bracks, - STATE(3732), 1, + STATE(3846), 1, sym_comment, - STATE(3745), 1, + STATE(4098), 1, aux_sym_decl_def_repeat1, - STATE(4479), 1, + STATE(4582), 1, sym_long_flag, - [112319] = 9, + [116143] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7332), 1, + anon_sym_DOT, + ACTIONS(7334), 1, + aux_sym__immediate_decimal_token5, + STATE(3847), 1, + sym_comment, + ACTIONS(1744), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1746), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [116165] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7139), 1, - anon_sym_LBRACK, - ACTIONS(7141), 1, - anon_sym_LPAREN, - ACTIONS(7143), 1, - anon_sym_DASH_DASH, - STATE(1564), 1, - sym_parameter_parens, - STATE(1621), 1, - sym_parameter_bracks, - STATE(3733), 1, + STATE(3848), 1, sym_comment, - STATE(4049), 1, - aux_sym_decl_def_repeat1, - STATE(4479), 1, - sym_long_flag, - [112347] = 7, + 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(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7247), 1, - anon_sym_DOT, - STATE(3734), 1, + ACTIONS(3946), 1, + anon_sym_LBRACK, + ACTIONS(3990), 1, + sym__newline, + ACTIONS(7336), 1, + anon_sym_RBRACK, + STATE(3849), 1, sym_comment, - STATE(4139), 1, - sym__immediate_decimal, - ACTIONS(7249), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7251), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [112371] = 4, + STATE(4190), 1, + aux_sym__types_body_repeat1, + STATE(4694), 1, + sym_val_list, + STATE(4769), 1, + aux_sym__table_body_repeat1, + STATE(5148), 1, + sym__table_body, + [116211] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3735), 1, + STATE(3850), 1, sym_comment, - ACTIONS(1846), 3, + ACTIONS(1892), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1848), 4, + ACTIONS(1894), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [112389] = 4, + [116229] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3736), 1, - sym_comment, - ACTIONS(1687), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1510), 1, sym__entry_separator, - ACTIONS(1689), 4, + ACTIONS(7338), 1, + anon_sym_DOT2, + STATE(4188), 1, + sym_path, + STATE(3851), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1508), 3, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_GT2, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [112407] = 9, + [116251] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3895), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, - sym__newline, - ACTIONS(7253), 1, - anon_sym_RBRACK, - STATE(3737), 1, + ACTIONS(7216), 1, + anon_sym_LPAREN, + ACTIONS(7218), 1, + anon_sym_DASH_DASH, + STATE(1529), 1, + sym_parameter_parens, + STATE(1530), 1, + sym_parameter_bracks, + STATE(3852), 1, sym_comment, - STATE(4023), 1, - aux_sym__types_body_repeat1, - STATE(4506), 1, - sym_val_list, - STATE(4520), 1, - aux_sym__table_body_repeat1, - STATE(4967), 1, - sym__table_body, - [112435] = 9, + STATE(4098), 1, + aux_sym_decl_def_repeat1, + STATE(4582), 1, + sym_long_flag, + [116279] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1973), 1, + sym__entry_separator, + ACTIONS(1975), 1, + anon_sym_RBRACE, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7341), 1, + anon_sym_DOT_DOT2, + STATE(3853), 1, + sym_comment, + ACTIONS(7343), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116305] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7139), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7141), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7143), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1632), 1, + STATE(1549), 1, sym_parameter_parens, - STATE(1633), 1, + STATE(1550), 1, sym_parameter_bracks, - STATE(3738), 1, + STATE(3854), 1, sym_comment, - STATE(4049), 1, + STATE(4098), 1, aux_sym_decl_def_repeat1, - STATE(4479), 1, + STATE(4582), 1, sym_long_flag, - [112463] = 9, + [116333] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7139), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7141), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7143), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1649), 1, + STATE(1531), 1, sym_parameter_parens, - STATE(1650), 1, + STATE(1532), 1, sym_parameter_bracks, - STATE(3733), 1, + STATE(3818), 1, aux_sym_decl_def_repeat1, - STATE(3739), 1, + STATE(3855), 1, sym_comment, - STATE(4479), 1, + STATE(4582), 1, sym_long_flag, - [112491] = 9, - ACTIONS(3), 1, + [116361] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3895), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - sym__newline, - ACTIONS(7255), 1, + ACTIONS(1973), 1, + sym__entry_separator, + ACTIONS(1975), 1, anon_sym_RBRACK, - STATE(3740), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7345), 1, + anon_sym_DOT_DOT2, + STATE(3856), 1, sym_comment, - STATE(4023), 1, - aux_sym__types_body_repeat1, - STATE(4506), 1, - sym_val_list, - STATE(4520), 1, - aux_sym__table_body_repeat1, - STATE(5075), 1, - sym__table_body, - [112519] = 4, + ACTIONS(7347), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116387] = 9, ACTIONS(103), 1, anon_sym_POUND, - STATE(3741), 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, - ACTIONS(1876), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1878), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [112537] = 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(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2011), 1, + ACTIONS(7206), 1, + anon_sym_DOT2, + ACTIONS(7236), 1, + anon_sym_DOT_DOT, + ACTIONS(7351), 1, + anon_sym_RBRACK, + ACTIONS(7355), 1, sym__entry_separator, - ACTIONS(2013), 1, - anon_sym_RBRACE, - ACTIONS(2015), 1, - anon_sym_LPAREN2, - ACTIONS(7257), 1, - anon_sym_DOT_DOT2, - STATE(3742), 1, + STATE(3813), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3859), 1, sym_comment, - ACTIONS(7259), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [112563] = 4, + STATE(4188), 1, + sym_path, + STATE(4565), 1, + sym_cell_path, + [116471] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3743), 1, + STATE(3860), 1, sym_comment, - ACTIONS(789), 2, + ACTIONS(1872), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(791), 5, - anon_sym_LBRACE, + ACTIONS(1870), 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, - [112581] = 6, - ACTIONS(103), 1, + [116489] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7261), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7263), 1, + ACTIONS(7359), 1, + anon_sym_DOT, + ACTIONS(7361), 1, aux_sym__immediate_decimal_token5, - STATE(3744), 1, + STATE(3861), 1, sym_comment, ACTIONS(1746), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1748), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [112603] = 9, + 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(7139), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7141), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7143), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1634), 1, + STATE(1545), 1, sym_parameter_parens, - STATE(1652), 1, + STATE(1546), 1, sym_parameter_bracks, - STATE(3745), 1, + STATE(3862), 1, sym_comment, - STATE(4049), 1, + STATE(4098), 1, aux_sym_decl_def_repeat1, - STATE(4479), 1, + STATE(4582), 1, sym_long_flag, - [112631] = 9, + [116539] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7139), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7141), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7143), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1653), 1, + STATE(1547), 1, sym_parameter_parens, - STATE(1656), 1, + STATE(1548), 1, sym_parameter_bracks, - STATE(3746), 1, - sym_comment, - STATE(3753), 1, + STATE(3823), 1, aux_sym_decl_def_repeat1, - STATE(4479), 1, + STATE(3863), 1, + sym_comment, + STATE(4582), 1, sym_long_flag, - [112659] = 4, + [116567] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3747), 1, + STATE(3864), 1, sym_comment, - ACTIONS(1748), 2, + ACTIONS(860), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1746), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(862), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112677] = 5, + sym_filesize_unit, + sym_duration_unit, + [116585] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7217), 1, + ACTIONS(7270), 1, anon_sym_DOT_DOT2, - STATE(3748), 1, + STATE(3865), 1, sym_comment, - ACTIONS(7219), 2, + ACTIONS(7272), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7265), 4, + ACTIONS(7363), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [112697] = 6, + [116605] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3946), 1, + anon_sym_LBRACK, + ACTIONS(3990), 1, + sym__newline, + ACTIONS(7365), 1, + anon_sym_RBRACK, + STATE(3866), 1, + sym_comment, + STATE(4190), 1, + aux_sym__types_body_repeat1, + STATE(4694), 1, + sym_val_list, + STATE(4769), 1, + aux_sym__table_body_repeat1, + STATE(5006), 1, + sym__table_body, + [116633] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1510), 1, - sym__entry_separator, - ACTIONS(7267), 1, - anon_sym_DOT2, - STATE(3934), 1, - sym_path, - STATE(3749), 2, + 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, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1508), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [112719] = 8, + STATE(4186), 1, + sym__variable_name, + STATE(4304), 1, + sym__assignment_pattern, + [116661] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5296), 1, - sym__entry_separator, - ACTIONS(7131), 1, + ACTIONS(7133), 1, + anon_sym_DOT_DOT, + ACTIONS(7169), 1, + anon_sym_RBRACK, + ACTIONS(7258), 1, anon_sym_DOT2, - STATE(349), 1, + ACTIONS(7367), 1, + sym__entry_separator, + STATE(360), 1, sym_path, - STATE(3750), 1, + STATE(3868), 1, sym_comment, - STATE(3814), 1, + STATE(3924), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4493), 1, + STATE(4294), 1, sym_cell_path, - ACTIONS(5294), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [112745] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7270), 1, - anon_sym_DOT, - ACTIONS(7272), 1, - aux_sym__immediate_decimal_token5, - STATE(3751), 1, - sym_comment, - ACTIONS(1754), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1756), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [112767] = 5, + [116689] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7005), 1, + ACTIONS(7370), 1, aux_sym__immediate_decimal_token5, - STATE(3752), 1, + STATE(3869), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(771), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(749), 4, + ACTIONS(773), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [112787] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7139), 1, - anon_sym_LBRACK, - ACTIONS(7141), 1, - anon_sym_LPAREN, - ACTIONS(7143), 1, - anon_sym_DASH_DASH, - STATE(1659), 1, - sym_parameter_parens, - STATE(1661), 1, - sym_parameter_bracks, - STATE(3753), 1, - sym_comment, - STATE(4049), 1, - aux_sym_decl_def_repeat1, - STATE(4479), 1, - sym_long_flag, - [112815] = 7, + [116709] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6929), 1, - anon_sym_DOT2, - STATE(2458), 1, - sym_path, - STATE(2953), 1, - sym_cell_path, - STATE(3643), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3754), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(7372), 1, + anon_sym_DOT_DOT2, + STATE(3870), 1, sym_comment, - ACTIONS(1880), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [112839] = 8, + 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(1880), 1, + ACTIONS(1862), 1, sym__entry_separator, - ACTIONS(7131), 1, + ACTIONS(7258), 1, anon_sym_DOT2, - STATE(349), 1, + STATE(360), 1, sym_path, - STATE(3755), 1, + STATE(3871), 1, sym_comment, - STATE(3814), 1, + STATE(3924), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4183), 1, + STATE(4314), 1, sym_cell_path, - ACTIONS(1882), 2, + ACTIONS(1864), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [112865] = 7, + [116757] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3872), 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, + [116775] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1517), 1, - sym__entry_separator, - ACTIONS(7077), 1, + ACTIONS(7172), 1, anon_sym_DOT2, - STATE(3749), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3756), 1, + STATE(3873), 1, sym_comment, - STATE(3934), 1, + STATE(3910), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4272), 1, sym_path, - ACTIONS(1515), 3, + STATE(4741), 1, + sym_cell_path, + ACTIONS(1864), 3, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [112889] = 9, - ACTIONS(103), 1, + sym__entry_separator, + sym__table_head_separator, + [116799] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7056), 1, - anon_sym_def, - ACTIONS(7058), 1, - anon_sym_use, - ACTIONS(7060), 1, - anon_sym_extern, - ACTIONS(7062), 1, - anon_sym_module, - ACTIONS(7274), 1, - anon_sym_alias, - ACTIONS(7276), 1, - anon_sym_const, - STATE(3757), 1, + ACTIONS(7214), 1, + anon_sym_LBRACK, + ACTIONS(7216), 1, + anon_sym_LPAREN, + ACTIONS(7218), 1, + anon_sym_DASH_DASH, + STATE(1551), 1, + sym_parameter_parens, + STATE(1552), 1, + sym_parameter_bracks, + STATE(3874), 1, sym_comment, - [112917] = 4, + STATE(4098), 1, + aux_sym_decl_def_repeat1, + STATE(4582), 1, + sym_long_flag, + [116827] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(3758), 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, - ACTIONS(1902), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1900), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [112935] = 8, - ACTIONS(103), 1, + STATE(4582), 1, + sym_long_flag, + [116855] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2011), 1, - sym__entry_separator, - ACTIONS(2013), 1, - anon_sym_RBRACK, - ACTIONS(2015), 1, - anon_sym_LPAREN2, - ACTIONS(7278), 1, + ACTIONS(7376), 1, anon_sym_DOT_DOT2, - STATE(3759), 1, + STATE(3876), 1, sym_comment, - ACTIONS(7280), 2, + ACTIONS(7378), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112961] = 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(7139), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7141), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - ACTIONS(7143), 1, + ACTIONS(7218), 1, anon_sym_DASH_DASH, - STATE(1523), 1, + STATE(1524), 1, sym_parameter_parens, STATE(1525), 1, sym_parameter_bracks, - STATE(3692), 1, - aux_sym_decl_def_repeat1, - STATE(3760), 1, + STATE(3877), 1, sym_comment, - STATE(4479), 1, + STATE(4098), 1, + aux_sym_decl_def_repeat1, + STATE(4582), 1, sym_long_flag, - [112989] = 9, + [116903] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3895), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, - sym__newline, - ACTIONS(7282), 1, - anon_sym_RBRACK, - STATE(3761), 1, + 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(4023), 1, - aux_sym__types_body_repeat1, - STATE(4506), 1, - sym_val_list, - STATE(4520), 1, - aux_sym__table_body_repeat1, - STATE(5001), 1, - sym__table_body, - [113017] = 8, - ACTIONS(103), 1, + STATE(4582), 1, + sym_long_flag, + [116931] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7071), 1, - sym__entry_separator, - ACTIONS(7077), 1, - anon_sym_DOT2, - STATE(3756), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3762), 1, + ACTIONS(7380), 1, + anon_sym_DOT_DOT2, + STATE(3879), 1, sym_comment, - STATE(3934), 1, - sym_path, - STATE(4614), 1, - sym_cell_path, - ACTIONS(7284), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [113043] = 9, + 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(2630), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7056), 1, + ACTIONS(7194), 1, anon_sym_def, - ACTIONS(7058), 1, + ACTIONS(7196), 1, anon_sym_use, - ACTIONS(7060), 1, + ACTIONS(7198), 1, anon_sym_extern, - ACTIONS(7062), 1, + ACTIONS(7200), 1, anon_sym_module, - ACTIONS(7286), 1, + ACTIONS(7384), 1, anon_sym_alias, - ACTIONS(7288), 1, + ACTIONS(7386), 1, anon_sym_const, - STATE(3763), 1, + STATE(3880), 1, sym_comment, - [113071] = 4, - ACTIONS(103), 1, + [116979] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3764), 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(1902), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1900), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [113089] = 9, + ACTIONS(1896), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [117003] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3946), 1, + anon_sym_LBRACK, + ACTIONS(3990), 1, + sym__newline, + ACTIONS(7388), 1, + anon_sym_RBRACK, + STATE(3882), 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(5326), 1, + sym__table_body, + [117031] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7056), 1, + ACTIONS(7194), 1, anon_sym_def, - ACTIONS(7058), 1, + ACTIONS(7196), 1, anon_sym_use, - ACTIONS(7060), 1, + ACTIONS(7198), 1, anon_sym_extern, - ACTIONS(7062), 1, + ACTIONS(7200), 1, anon_sym_module, - ACTIONS(7290), 1, + ACTIONS(7390), 1, anon_sym_alias, - ACTIONS(7292), 1, + ACTIONS(7392), 1, anon_sym_const, - STATE(3765), 1, - sym_comment, - [113117] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3766), 1, + STATE(3883), 1, sym_comment, - ACTIONS(1814), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1812), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [113135] = 9, + [117059] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3895), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, - sym__newline, - ACTIONS(7294), 1, - anon_sym_RBRACK, - STATE(3767), 1, + ACTIONS(7216), 1, + anon_sym_LPAREN, + ACTIONS(7218), 1, + anon_sym_DASH_DASH, + STATE(1681), 1, + sym_parameter_parens, + STATE(1682), 1, + sym_parameter_bracks, + STATE(3794), 1, + aux_sym_decl_def_repeat1, + STATE(3884), 1, + sym_comment, + STATE(4582), 1, + sym_long_flag, + [117087] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7172), 1, + anon_sym_DOT2, + STATE(3885), 1, sym_comment, - STATE(4023), 1, - aux_sym__types_body_repeat1, - STATE(4506), 1, - sym_val_list, - STATE(4520), 1, - aux_sym__table_body_repeat1, - STATE(5006), 1, - sym__table_body, - [113163] = 9, + 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(2630), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7056), 1, + ACTIONS(7194), 1, anon_sym_def, - ACTIONS(7058), 1, + ACTIONS(7196), 1, anon_sym_use, - ACTIONS(7060), 1, + ACTIONS(7198), 1, anon_sym_extern, - ACTIONS(7062), 1, + ACTIONS(7200), 1, anon_sym_module, - ACTIONS(7296), 1, + ACTIONS(7394), 1, anon_sym_alias, - ACTIONS(7298), 1, + ACTIONS(7396), 1, anon_sym_const, - STATE(3768), 1, + STATE(3886), 1, sym_comment, - [113191] = 9, + [117139] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2738), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2740), 1, - anon_sym_COLON2, - ACTIONS(7123), 1, - sym_identifier, - ACTIONS(7125), 1, - anon_sym_DOLLAR, - STATE(2828), 1, - sym_val_variable, - STATE(3769), 1, + ACTIONS(1896), 1, + sym__entry_separator, + ACTIONS(7258), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(3887), 1, sym_comment, - STATE(3965), 1, - sym__variable_name, - STATE(4292), 1, - sym__assignment_pattern, - [113219] = 4, + 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, - STATE(3770), 1, - sym_comment, - ACTIONS(1814), 2, + ACTIONS(7398), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1812), 5, + STATE(3888), 1, + sym_comment, + ACTIONS(7400), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2118), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, + [117185] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(886), 1, + sym__entry_separator, + ACTIONS(6479), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6959), 1, + anon_sym_DOT_DOT2, + ACTIONS(6963), 1, + sym_filesize_unit, + ACTIONS(6965), 1, + sym_duration_unit, + STATE(3889), 1, + sym_comment, + ACTIONS(6961), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [113237] = 9, + [117211] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7011), 1, - anon_sym_RBRACK, - ACTIONS(7014), 1, - anon_sym_DOT_DOT, - ACTIONS(7131), 1, - anon_sym_DOT2, - ACTIONS(7300), 1, - sym__entry_separator, - STATE(349), 1, - sym_path, - STATE(3771), 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, - STATE(3814), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4240), 1, - sym_cell_path, - [113265] = 4, + [117239] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3772), 1, + STATE(3891), 1, sym_comment, - ACTIONS(763), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(765), 5, + ACTIONS(741), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [113283] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3895), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - sym__newline, - ACTIONS(7303), 1, - anon_sym_RBRACK, - STATE(3773), 1, - sym_comment, - STATE(4023), 1, - aux_sym__types_body_repeat1, - STATE(4506), 1, - sym_val_list, - STATE(4520), 1, - aux_sym__table_body_repeat1, - STATE(4850), 1, - sym__table_body, - [113311] = 8, + [117257] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2950), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7305), 1, - sym_identifier, - ACTIONS(7307), 1, - anon_sym_DOLLAR, - STATE(2718), 1, - sym__variable_name, - STATE(3039), 1, - sym_val_variable, - STATE(3774), 1, + ACTIONS(1888), 1, + sym__entry_separator, + ACTIONS(7258), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(3892), 1, sym_comment, - STATE(4581), 1, - sym__assignment_pattern, - [113336] = 6, + 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(5395), 1, - sym__space, - ACTIONS(7309), 1, - anon_sym_DOT_DOT2, - STATE(3775), 1, - sym_comment, - ACTIONS(5393), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7311), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113357] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7313), 1, - anon_sym_DOT, - ACTIONS(7315), 1, - aux_sym__immediate_decimal_token5, - STATE(3776), 1, - sym_comment, - ACTIONS(1754), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1756), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [113378] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7317), 1, + ACTIONS(1882), 1, + sym__entry_separator, + ACTIONS(7258), 1, anon_sym_DOT2, - STATE(2458), 1, + STATE(360), 1, sym_path, - STATE(3777), 2, + STATE(3893), 1, sym_comment, + STATE(3924), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1510), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [113397] = 6, + STATE(4446), 1, + sym_cell_path, + ACTIONS(1885), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [117309] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7320), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7322), 1, - aux_sym__immediate_decimal_token5, - STATE(3778), 1, - sym_comment, - ACTIONS(1746), 2, - anon_sym_LPAREN2, + ACTIONS(7113), 1, sym__entry_separator, - ACTIONS(1748), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [113418] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1756), 1, - sym__unquoted_pattern, - ACTIONS(7324), 1, - anon_sym_DOT, - ACTIONS(7326), 1, - aux_sym__immediate_decimal_token5, - STATE(3779), 1, + ACTIONS(7206), 1, + anon_sym_DOT2, + STATE(3813), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3894), 1, sym_comment, - ACTIONS(1754), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [113439] = 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(2630), 1, + ACTIONS(2829), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7123), 1, + ACTIONS(7408), 1, sym_identifier, - ACTIONS(7237), 1, + ACTIONS(7410), 1, anon_sym_DOLLAR, - STATE(2827), 1, + STATE(2872), 1, sym__variable_name, - STATE(2828), 1, + STATE(3051), 1, sym_val_variable, - STATE(3780), 1, + STATE(3895), 1, sym_comment, - STATE(4290), 1, + STATE(4689), 1, sym__assignment_pattern, - [113464] = 8, + [117360] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7123), 1, - sym_identifier, - ACTIONS(7125), 1, - anon_sym_DOLLAR, - STATE(2828), 1, - sym_val_variable, - STATE(3781), 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(3965), 1, - sym__variable_name, - STATE(4292), 1, - sym__assignment_pattern, - [113489] = 8, - ACTIONS(103), 1, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4911), 1, + sym_cell_path, + [117385] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7123), 1, - sym_identifier, - ACTIONS(7125), 1, - anon_sym_DOLLAR, - STATE(2828), 1, - sym_val_variable, - STATE(3782), 1, + ACTIONS(7412), 1, + aux_sym__immediate_decimal_token5, + STATE(3897), 1, sym_comment, - STATE(3965), 1, - sym__variable_name, - STATE(4293), 1, - sym__assignment_pattern, - [113514] = 6, + 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(1691), 1, - sym__unquoted_pattern, - STATE(3783), 1, + 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(4993), 1, - sym__immediate_decimal, - ACTIONS(6528), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6530), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [113535] = 7, + STATE(4398), 1, + aux_sym__block_body_repeat1, + STATE(4562), 1, + aux_sym__repeat_newline, + [117429] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7328), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7332), 1, + ACTIONS(7422), 1, anon_sym_DQUOTE2, - STATE(3784), 1, + STATE(3899), 1, sym_comment, - STATE(3790), 1, + STATE(3903), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4145), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7330), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [113558] = 7, + [117452] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6498), 1, + ACTIONS(6497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6751), 1, + ACTIONS(6981), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7334), 1, + ACTIONS(7424), 1, aux_sym_unquoted_token2, - STATE(3785), 1, + STATE(3900), 1, sym_comment, - STATE(4211), 1, + STATE(4426), 1, sym__immediate_decimal, - ACTIONS(6753), 2, + ACTIONS(6983), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [113581] = 7, + [117475] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6528), 1, + ACTIONS(6664), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6789), 1, + ACTIONS(6833), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7334), 1, + ACTIONS(7424), 1, aux_sym_unquoted_token2, - STATE(3786), 1, + STATE(3901), 1, sym_comment, - STATE(5061), 1, + STATE(5071), 1, sym__immediate_decimal, - ACTIONS(6791), 2, + ACTIONS(6835), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [113604] = 6, + [117498] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4203), 1, anon_sym_DOT_DOT2, - ACTIONS(7334), 1, + ACTIONS(7424), 1, sym__unquoted_pattern, - STATE(3787), 1, + STATE(3902), 1, sym_comment, - ACTIONS(4151), 2, + ACTIONS(4205), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7336), 2, + ACTIONS(7426), 2, sym_filesize_unit, sym_duration_unit, - [113625] = 5, + [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(1679), 1, + sym__unquoted_pattern_in_record, + STATE(3904), 1, + sym_comment, + STATE(5010), 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, + [117563] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(7434), 1, anon_sym_LBRACE, - STATE(3788), 1, + STATE(3481), 1, + sym__blosure, + STATE(3905), 1, sym_comment, - STATE(4247), 1, + STATE(4044), 1, + aux_sym__repeat_newline, + STATE(3288), 2, + sym_block, + sym_val_closure, + [117586] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7328), 1, + sym_identifier, + ACTIONS(7330), 1, + anon_sym_DOLLAR, + STATE(2825), 1, + sym_val_variable, + STATE(3906), 1, + sym_comment, + STATE(4066), 1, + sym__variable_name, + STATE(4691), 1, + sym__assignment_pattern, + [117611] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6670), 1, + anon_sym_LPAREN2, + ACTIONS(7438), 1, + 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(3808), 1, + anon_sym_LBRACE, + STATE(3908), 1, + sym_comment, + STATE(4329), 1, sym_block, - ACTIONS(7338), 4, + ACTIONS(7441), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [113644] = 5, + [117653] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(3789), 1, + STATE(3909), 1, sym_comment, - STATE(4253), 1, + STATE(4330), 1, sym_block, - ACTIONS(7338), 4, + ACTIONS(7441), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [113663] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7328), 1, - anon_sym_LPAREN, - ACTIONS(7340), 1, - anon_sym_DQUOTE2, - STATE(3790), 1, - sym_comment, - STATE(3847), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4145), 1, - sym_expr_interpolated, - ACTIONS(7330), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [113686] = 6, + [117672] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7215), 1, - sym__entry_separator, - ACTIONS(7344), 1, - anon_sym_DOT_DOT2, - STATE(3791), 1, + ACTIONS(7172), 1, + anon_sym_DOT2, + STATE(3910), 1, sym_comment, - ACTIONS(7342), 2, + STATE(3914), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4272), 1, + sym_path, + ACTIONS(1504), 3, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7346), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113707] = 6, + sym__entry_separator, + sym__table_head_separator, + [117693] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7265), 1, - sym__entry_separator, - ACTIONS(7344), 1, - anon_sym_DOT_DOT2, - STATE(3792), 1, + ACTIONS(7443), 1, + anon_sym_DOT, + ACTIONS(7445), 1, + aux_sym__immediate_decimal_token5, + STATE(3911), 1, sym_comment, - ACTIONS(7346), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7348), 2, + ACTIONS(1744), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1746), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [113728] = 7, + sym__unquoted_pattern_in_list, + [117714] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7328), 1, - anon_sym_LPAREN, - ACTIONS(7350), 1, - anon_sym_DQUOTE2, - STATE(3793), 1, + ACTIONS(7258), 1, + anon_sym_DOT2, + ACTIONS(7447), 1, + anon_sym_RBRACE, + ACTIONS(7449), 1, + sym__entry_separator, + STATE(360), 1, + sym_path, + STATE(3912), 1, sym_comment, - STATE(3847), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4145), 1, - sym_expr_interpolated, - ACTIONS(7330), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [113751] = 8, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4809), 1, + sym_cell_path, + [117739] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7123), 1, - sym_identifier, - ACTIONS(7237), 1, - anon_sym_DOLLAR, - STATE(2683), 1, - sym__variable_name, - STATE(2828), 1, - sym_val_variable, - STATE(3794), 1, + ACTIONS(3669), 1, + sym__entry_separator, + ACTIONS(7258), 1, + anon_sym_DOT2, + ACTIONS(7451), 1, + anon_sym_RBRACE, + STATE(360), 1, + sym_path, + STATE(3913), 1, sym_comment, - STATE(4555), 1, - sym__assignment_pattern_parenthesized, - [113776] = 8, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4446), 1, + sym_cell_path, + [117764] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7123), 1, - sym_identifier, - ACTIONS(7125), 1, - anon_sym_DOLLAR, - STATE(2828), 1, - sym_val_variable, - STATE(3795), 1, + ACTIONS(7455), 1, + anon_sym_DOT2, + STATE(4272), 1, + sym_path, + STATE(3914), 2, sym_comment, - STATE(4066), 1, - sym__variable_name, - STATE(4611), 1, - sym__assignment_pattern_parenthesized, - [113801] = 8, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1508), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [117783] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, + ACTIONS(2829), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7123), 1, + ACTIONS(7328), 1, sym_identifier, - ACTIONS(7125), 1, + ACTIONS(7330), 1, anon_sym_DOLLAR, - STATE(2828), 1, + STATE(2825), 1, sym_val_variable, - STATE(3796), 1, + STATE(3915), 1, sym_comment, STATE(4066), 1, sym__variable_name, - STATE(4613), 1, - sym__assignment_pattern_parenthesized, - [113826] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7352), 1, - aux_sym__immediate_decimal_token5, - STATE(3797), 1, - sym_comment, - ACTIONS(1814), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1812), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113845] = 8, + STATE(4650), 1, + sym__assignment_pattern, + [117808] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7354), 1, - anon_sym_if, - ACTIONS(7356), 1, - sym__newline, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_EQ_GT, - STATE(3798), 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(4158), 1, - aux_sym_match_pattern_repeat1, - STATE(4891), 1, - sym_match_guard, - [113870] = 7, + ACTIONS(5354), 2, + anon_sym_EQ, + anon_sym_GT2, + [117831] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(7362), 1, + ACTIONS(7434), 1, anon_sym_LBRACE, - STATE(3286), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3491), 1, sym__blosure, - STATE(3799), 1, + STATE(3917), 1, sym_comment, - STATE(3914), 1, - aux_sym__repeat_newline, - STATE(3172), 2, + STATE(3288), 2, sym_block, sym_val_closure, - [113893] = 7, + [117854] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(7362), 1, + ACTIONS(7434), 1, anon_sym_LBRACE, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3290), 1, + STATE(3491), 1, sym__blosure, - STATE(3800), 1, + STATE(3918), 1, sym_comment, - STATE(3172), 2, + STATE(3948), 1, + aux_sym__repeat_newline, + STATE(3288), 2, sym_block, sym_val_closure, - [113916] = 7, + [117877] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(7362), 1, + ACTIONS(7434), 1, anon_sym_LBRACE, - STATE(3290), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3499), 1, sym__blosure, - STATE(3801), 1, + STATE(3919), 1, sym_comment, - STATE(3923), 1, - aux_sym__repeat_newline, - STATE(3172), 2, + STATE(3288), 2, sym_block, sym_val_closure, - [113939] = 8, - ACTIONS(3), 1, + [117900] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7364), 1, - sym__newline, - ACTIONS(7366), 1, - anon_sym_SEMI, - ACTIONS(7368), 1, - anon_sym_RPAREN, - STATE(1363), 1, - aux_sym__parenthesized_body_repeat1, - STATE(3802), 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(4215), 1, - aux_sym__block_body_repeat1, - STATE(4628), 1, - aux_sym__repeat_newline, - [113964] = 6, + STATE(4426), 1, + sym__immediate_decimal, + ACTIONS(6983), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [117923] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7016), 1, - anon_sym_DOT2, - STATE(3803), 1, + ACTIONS(6664), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6833), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7458), 1, + aux_sym_unquoted_token2, + STATE(3921), 1, sym_comment, - STATE(3806), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4250), 1, - sym_path, - ACTIONS(1515), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [113985] = 6, - ACTIONS(103), 1, + STATE(5071), 1, + sym__immediate_decimal, + ACTIONS(6835), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [117946] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7370), 1, - anon_sym_DOT, - ACTIONS(7372), 1, - aux_sym__immediate_decimal_token5, - STATE(3804), 1, + ACTIONS(7462), 1, + anon_sym_AT, + STATE(4937), 1, + sym_attribute, + STATE(3922), 2, sym_comment, - ACTIONS(1754), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1756), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [114006] = 6, + 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(1691), 1, - sym__unquoted_pattern_in_record, - STATE(3805), 1, + ACTIONS(4203), 1, + anon_sym_DOT_DOT2, + ACTIONS(7458), 1, + sym__unquoted_pattern, + STATE(3923), 1, sym_comment, - STATE(5105), 1, - sym__immediate_decimal, - ACTIONS(7374), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7376), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114027] = 5, + 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(7378), 1, + ACTIONS(1506), 1, + sym__entry_separator, + ACTIONS(7258), 1, anon_sym_DOT2, - STATE(4250), 1, + STATE(360), 1, sym_path, - STATE(3806), 2, + STATE(3924), 1, sym_comment, + STATE(3930), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1508), 3, + ACTIONS(1504), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [114046] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [118009] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(3807), 1, + ACTIONS(2154), 1, + sym__entry_separator, + ACTIONS(7465), 1, + anon_sym_DOT_DOT2, + STATE(3925), 1, sym_comment, - STATE(4345), 1, - sym_block, - ACTIONS(7381), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2156), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [114065] = 5, - ACTIONS(3), 1, + ACTIONS(7467), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118030] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(3808), 1, + 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(4350), 1, - sym_block, - ACTIONS(7381), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [114084] = 8, + aux_sym__inter_double_quotes_repeat1, + [118051] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3655), 1, - sym__entry_separator, - ACTIONS(7131), 1, - anon_sym_DOT2, - ACTIONS(7383), 1, - anon_sym_RBRACE, - STATE(349), 1, - sym_path, - STATE(3809), 1, + 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(3814), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4148), 1, - sym_cell_path, - [114109] = 7, + 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(6929), 1, - anon_sym_DOT2, - STATE(2458), 1, - sym_path, - STATE(2859), 1, - sym_cell_path, - STATE(3643), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3810), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + STATE(3929), 1, sym_comment, - ACTIONS(5434), 2, - anon_sym_EQ, - anon_sym_GT2, - [114132] = 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(5249), 1, - anon_sym_RBRACK, - ACTIONS(5251), 1, + ACTIONS(1510), 1, sym__entry_separator, - ACTIONS(7131), 1, + ACTIONS(7479), 1, anon_sym_DOT2, - STATE(349), 1, + STATE(360), 1, sym_path, - STATE(3811), 1, + ACTIONS(1508), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(3930), 2, sym_comment, - STATE(3814), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4718), 1, - sym_cell_path, - [114157] = 8, - ACTIONS(103), 1, + [118141] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5434), 1, - sym__entry_separator, - ACTIONS(5436), 1, - anon_sym_GT2, - ACTIONS(7077), 1, - anon_sym_DOT2, - STATE(3756), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3812), 1, + 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(3934), 1, - sym_path, - STATE(4148), 1, - sym_cell_path, - [114182] = 7, + STATE(4224), 1, + aux_sym__block_body_repeat1, + STATE(4562), 1, + aux_sym__repeat_newline, + [118166] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6575), 1, - anon_sym_LPAREN2, - ACTIONS(7389), 1, + ACTIONS(2102), 1, sym__entry_separator, - STATE(2229), 1, - aux_sym__types_body_repeat2, - STATE(3813), 1, + ACTIONS(7484), 1, + anon_sym_DOT_DOT2, + STATE(3932), 1, sym_comment, - STATE(4760), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7387), 2, + ACTIONS(2104), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [114205] = 7, + 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(1517), 1, + ACTIONS(2110), 1, sym__entry_separator, - ACTIONS(7131), 1, - anon_sym_DOT2, - STATE(349), 1, - sym_path, - STATE(3814), 1, + ACTIONS(7488), 1, + anon_sym_DOT_DOT2, + STATE(3933), 1, sym_comment, - STATE(3832), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1515), 2, + ACTIONS(2112), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [114228] = 6, + ACTIONS(7490), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118208] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2118), 1, sym__entry_separator, - ACTIONS(7392), 1, + ACTIONS(7492), 1, anon_sym_DOT_DOT2, - STATE(3815), 1, + STATE(3934), 1, sym_comment, - ACTIONS(2154), 2, + ACTIONS(2120), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(7394), 2, + ACTIONS(7494), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114249] = 8, + [118229] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(1912), 1, sym__entry_separator, - ACTIONS(1858), 1, + ACTIONS(1914), 1, anon_sym_GT2, - ACTIONS(7077), 1, + ACTIONS(7206), 1, anon_sym_DOT2, - STATE(3756), 1, + STATE(3813), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3816), 1, + STATE(3935), 1, sym_comment, - STATE(3934), 1, + STATE(4188), 1, sym_path, - STATE(4186), 1, + STATE(4228), 1, sym_cell_path, - [114274] = 8, + [118254] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1892), 1, + ACTIONS(1900), 1, sym__entry_separator, - ACTIONS(1894), 1, + ACTIONS(1902), 1, anon_sym_GT2, - ACTIONS(7077), 1, + ACTIONS(7206), 1, anon_sym_DOT2, - STATE(3756), 1, + STATE(3813), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3817), 1, + STATE(3936), 1, sym_comment, - STATE(3934), 1, + STATE(4188), 1, sym_path, - STATE(4240), 1, + STATE(4294), 1, sym_cell_path, - [114299] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(461), 1, - anon_sym_RPAREN, - ACTIONS(7364), 1, - sym__newline, - ACTIONS(7366), 1, - anon_sym_SEMI, - STATE(1363), 1, - aux_sym__parenthesized_body_repeat1, - STATE(3818), 1, - sym_comment, - STATE(4176), 1, - aux_sym__block_body_repeat1, - STATE(4628), 1, - aux_sym__repeat_newline, - [114324] = 8, + [118279] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1888), 1, + ACTIONS(1862), 1, sym__entry_separator, - ACTIONS(1890), 1, + ACTIONS(1864), 1, anon_sym_GT2, - ACTIONS(7077), 1, + ACTIONS(7206), 1, anon_sym_DOT2, - STATE(3756), 1, + STATE(3813), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3819), 1, + STATE(3937), 1, sym_comment, - STATE(3934), 1, + STATE(4188), 1, sym_path, - STATE(4261), 1, + STATE(4314), 1, sym_cell_path, - [114349] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(7362), 1, - anon_sym_LBRACE, - STATE(3280), 1, - sym__blosure, - STATE(3800), 1, - aux_sym__repeat_newline, - STATE(3820), 1, - sym_comment, - STATE(3172), 2, - sym_block, - sym_val_closure, - [114372] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(7362), 1, - anon_sym_LBRACE, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3329), 1, - sym__blosure, - STATE(3821), 1, - sym_comment, - STATE(3172), 2, - sym_block, - sym_val_closure, - [114395] = 7, + [118304] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(7362), 1, - anon_sym_LBRACE, - STATE(3329), 1, - sym__blosure, - STATE(3822), 1, + ACTIONS(1746), 1, + sym__unquoted_pattern, + ACTIONS(7312), 1, + aux_sym__immediate_decimal_token5, + STATE(3938), 1, sym_comment, - STATE(3856), 1, - aux_sym__repeat_newline, - STATE(3172), 2, - sym_block, - sym_val_closure, - [114418] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(1744), 4, + anon_sym_if, sym__newline, - ACTIONS(7362), 1, - anon_sym_LBRACE, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3330), 1, - sym__blosure, - STATE(3823), 1, - sym_comment, - STATE(3172), 2, - sym_block, - sym_val_closure, - [114441] = 7, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118323] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7328), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7396), 1, + ACTIONS(7496), 1, anon_sym_DQUOTE2, - STATE(3824), 1, + STATE(3939), 1, sym_comment, - STATE(3830), 1, + STATE(3942), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4145), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7330), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114464] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2950), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7123), 1, - sym_identifier, - ACTIONS(7125), 1, - anon_sym_DOLLAR, - STATE(2828), 1, - sym_val_variable, - STATE(3825), 1, - sym_comment, - STATE(4021), 1, - sym__variable_name, - STATE(4631), 1, - sym__assignment_pattern, - [114489] = 7, + [118346] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4157), 1, + ACTIONS(4211), 1, aux_sym_unquoted_token2, - ACTIONS(6498), 1, + ACTIONS(6497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6751), 1, + ACTIONS(6981), 1, aux_sym__immediate_decimal_token2, - STATE(3826), 1, + STATE(3940), 1, sym_comment, - STATE(4211), 1, + STATE(4426), 1, sym__immediate_decimal, - ACTIONS(6753), 2, + ACTIONS(6983), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114512] = 7, + [118369] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4157), 1, + ACTIONS(4211), 1, aux_sym_unquoted_token2, - ACTIONS(6528), 1, + ACTIONS(6664), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6789), 1, + ACTIONS(6833), 1, aux_sym__immediate_decimal_token2, - STATE(3827), 1, + STATE(3941), 1, sym_comment, - STATE(5061), 1, + STATE(5071), 1, sym__immediate_decimal, - ACTIONS(6791), 2, + ACTIONS(6835), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114535] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7131), 1, - anon_sym_DOT2, - ACTIONS(7398), 1, - anon_sym_RBRACE, - ACTIONS(7400), 1, - sym__entry_separator, - STATE(349), 1, - sym_path, - STATE(3814), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3828), 1, - sym_comment, - STATE(4692), 1, - sym_cell_path, - [114560] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2950), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7123), 1, - sym_identifier, - ACTIONS(7125), 1, - anon_sym_DOLLAR, - STATE(2828), 1, - sym_val_variable, - STATE(3829), 1, - sym_comment, - STATE(4021), 1, - sym__variable_name, - STATE(4654), 1, - sym__assignment_pattern, - [114585] = 7, + [118392] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7328), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7402), 1, + ACTIONS(7498), 1, anon_sym_DQUOTE2, - STATE(3830), 1, - sym_comment, - STATE(3847), 1, + STATE(3926), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4145), 1, + STATE(3942), 1, + sym_comment, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7330), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114608] = 5, + [118415] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, + ACTIONS(1854), 1, sym__unquoted_pattern, - ACTIONS(7129), 1, - aux_sym__immediate_decimal_token5, - STATE(3831), 1, - sym_comment, - ACTIONS(1754), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [114627] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1510), 1, - sym__entry_separator, - ACTIONS(7404), 1, - anon_sym_DOT2, - STATE(349), 1, - sym_path, - ACTIONS(1508), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(3832), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - [114648] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1814), 1, - sym__unquoted_pattern, - ACTIONS(7407), 1, + ACTIONS(7500), 1, aux_sym__immediate_decimal_token5, - STATE(3833), 1, + STATE(3943), 1, sym_comment, - ACTIONS(1812), 4, + ACTIONS(1852), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [114667] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6498), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6751), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7409), 1, - aux_sym_unquoted_token2, - STATE(3834), 1, - sym_comment, - STATE(4211), 1, - sym__immediate_decimal, - ACTIONS(6753), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114690] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6528), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6789), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7409), 1, - aux_sym_unquoted_token2, - STATE(3835), 1, - sym_comment, - STATE(5061), 1, - sym__immediate_decimal, - ACTIONS(6791), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114713] = 3, + [118434] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(3836), 1, + STATE(3944), 1, sym_comment, ACTIONS(1519), 6, anon_sym_RBRACK, @@ -233922,39 +238015,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [114728] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7413), 1, - anon_sym_AT, - STATE(4724), 1, - sym_attribute, - STATE(3837), 2, - sym_comment, - aux_sym_attribute_list_repeat1, - ACTIONS(7411), 3, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - [114747] = 6, - ACTIONS(3), 1, + [118449] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_DOT_DOT2, - ACTIONS(7409), 1, - sym__unquoted_pattern, - STATE(3838), 1, + ACTIONS(5381), 1, + anon_sym_RBRACK, + ACTIONS(5383), 1, + sym__entry_separator, + ACTIONS(7258), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3945), 1, sym_comment, - ACTIONS(4151), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7336), 2, - sym_filesize_unit, - sym_duration_unit, - [114768] = 3, + STATE(4822), 1, + sym_cell_path, + [118474] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(3839), 1, + STATE(3946), 1, sym_comment, ACTIONS(1523), 6, anon_sym_RBRACK, @@ -233963,10 +238044,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [114783] = 3, + [118489] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(3840), 1, + STATE(3947), 1, sym_comment, ACTIONS(1527), 6, anon_sym_RBRACK, @@ -233975,837 +238056,927 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [114798] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2108), 1, - sym__entry_separator, - ACTIONS(7416), 1, - anon_sym_DOT_DOT2, - STATE(3841), 1, - sym_comment, - ACTIONS(2110), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7418), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114819] = 6, - ACTIONS(103), 1, + [118504] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2116), 1, - sym__entry_separator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT2, - STATE(3842), 1, + 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, - ACTIONS(2118), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7422), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114840] = 3, + STATE(3288), 2, + sym_block, + sym_val_closure, + [118527] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(3843), 1, + STATE(3949), 1, sym_comment, - ACTIONS(1496), 6, + ACTIONS(1531), 6, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [114855] = 3, + [118542] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(3844), 1, + STATE(3950), 1, sym_comment, - ACTIONS(1500), 6, + ACTIONS(1535), 6, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [114870] = 3, + [118557] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(3845), 1, + STATE(3951), 1, sym_comment, - ACTIONS(1504), 6, + ACTIONS(1539), 6, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [114885] = 6, + [118572] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2124), 1, + ACTIONS(7258), 1, + anon_sym_DOT2, + ACTIONS(7502), 1, + anon_sym_RBRACE, + ACTIONS(7504), 1, sym__entry_separator, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - STATE(3846), 1, + STATE(360), 1, + sym_path, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3952), 1, sym_comment, - ACTIONS(2126), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114906] = 6, + STATE(4785), 1, + sym_cell_path, + [118597] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7428), 1, - anon_sym_LPAREN, - ACTIONS(7434), 1, - anon_sym_DQUOTE2, - STATE(4145), 1, - sym_expr_interpolated, - ACTIONS(7431), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - STATE(3847), 2, + ACTIONS(7334), 1, + aux_sym__immediate_decimal_token5, + STATE(3953), 1, sym_comment, - aux_sym__inter_double_quotes_repeat1, - [114927] = 8, + ACTIONS(1744), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1746), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [118616] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2738), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2740), 1, - anon_sym_COLON2, - ACTIONS(5195), 1, - anon_sym_DOLLAR, - ACTIONS(7123), 1, - sym_identifier, - STATE(2828), 1, - sym_val_variable, - STATE(3848), 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(5215), 1, - sym__variable_name, - [114952] = 5, + STATE(4188), 1, + sym_path, + STATE(4446), 1, + sym_cell_path, + [118641] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(57), 1, + anon_sym_AT, + STATE(3922), 1, + aux_sym_attribute_list_repeat1, + STATE(3955), 1, + sym_comment, + STATE(4937), 1, + sym_attribute, + ACTIONS(7506), 3, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + [118662] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7272), 1, + ACTIONS(7508), 1, aux_sym__immediate_decimal_token5, - STATE(3849), 1, + STATE(3956), 1, sym_comment, - ACTIONS(1754), 2, + ACTIONS(1852), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1756), 3, + ACTIONS(1854), 3, sym__newline, anon_sym_SEMI, sym__unquoted_pattern, - [114971] = 5, + [118681] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7436), 1, - aux_sym__immediate_decimal_token5, - STATE(3850), 1, - sym_comment, - ACTIONS(1812), 2, + ACTIONS(4355), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1814), 3, + 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, - sym__unquoted_pattern, - [114990] = 5, + [118704] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1458), 1, + ACTIONS(1450), 1, sym__entry_separator, - ACTIONS(7438), 1, + ACTIONS(7514), 1, anon_sym_QMARK2, - STATE(3851), 1, + STATE(3958), 1, sym_comment, - ACTIONS(1456), 4, + ACTIONS(1448), 4, anon_sym_RBRACK, anon_sym_GT2, anon_sym_DOT_DOT, anon_sym_DOT2, - [115009] = 7, + [118723] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7328), 1, - anon_sym_LPAREN, - ACTIONS(7440), 1, - anon_sym_DQUOTE2, - STATE(3793), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3852), 1, - sym_comment, - STATE(4145), 1, - sym_expr_interpolated, - ACTIONS(7330), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [115032] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(3853), 1, + ACTIONS(6779), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7254), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7516), 1, + aux_sym__immediate_decimal_token2, + STATE(3959), 1, sym_comment, - STATE(5144), 1, + STATE(4377), 1, sym__immediate_decimal, - ACTIONS(6528), 2, + ACTIONS(7518), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [118746] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6779), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7430), 1, aux_sym__immediate_decimal_token1, + ACTIONS(7520), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6530), 2, + STATE(3960), 1, + sym_comment, + STATE(5156), 1, + sym__immediate_decimal, + ACTIONS(7522), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [115053] = 7, + [118769] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6779), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7524), 1, + anon_sym_DOT_DOT2, + STATE(3961), 1, + sym_comment, + ACTIONS(7526), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7528), 2, + sym_filesize_unit, + sym_duration_unit, + [118790] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4328), 1, - sym__space, - ACTIONS(7442), 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, + STATE(4303), 1, + sym__assignment_pattern, + [118815] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7530), 1, sym_long_flag_identifier, - ACTIONS(7444), 1, + ACTIONS(7532), 1, anon_sym_EQ2, - STATE(3034), 1, - sym__flag_equals_value, - STATE(3854), 1, + STATE(3963), 1, sym_comment, - ACTIONS(4326), 2, - sym__newline, - anon_sym_SEMI, - [115076] = 8, + 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(7364), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(3964), 1, + sym_comment, + STATE(4389), 1, + sym_block, + ACTIONS(7534), 4, sym__newline, - ACTIONS(7366), 1, anon_sym_SEMI, - ACTIONS(7446), 1, anon_sym_RPAREN, - STATE(1363), 1, - aux_sym__parenthesized_body_repeat1, - STATE(3855), 1, + anon_sym_RBRACE, + [118855] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1713), 1, + sym__entry_separator, + ACTIONS(7536), 1, + anon_sym_DOT_DOT2, + STATE(3965), 1, sym_comment, - STATE(4218), 1, - aux_sym__block_body_repeat1, - STATE(4628), 1, - aux_sym__repeat_newline, - [115101] = 7, - ACTIONS(3), 1, + ACTIONS(1614), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7538), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118876] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(7362), 1, - anon_sym_LBRACE, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3276), 1, - sym__blosure, - STATE(3856), 1, + ACTIONS(1450), 1, + sym__entry_separator, + ACTIONS(7514), 1, + anon_sym_BANG, + STATE(3966), 1, sym_comment, - STATE(3172), 2, - sym_block, - sym_val_closure, - [115124] = 7, + ACTIONS(1448), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [118895] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7328), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7448), 1, + ACTIONS(7540), 1, anon_sym_DQUOTE2, - STATE(3857), 1, + STATE(3967), 1, sym_comment, - STATE(3861), 1, + STATE(3973), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4145), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7330), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [115147] = 7, + [118918] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6498), 1, + ACTIONS(6497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6751), 1, + ACTIONS(6981), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6953), 1, + ACTIONS(7079), 1, aux_sym_unquoted_token2, - STATE(3858), 1, + STATE(3968), 1, sym_comment, - STATE(4211), 1, + STATE(4426), 1, sym__immediate_decimal, - ACTIONS(6753), 2, + ACTIONS(6983), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [115170] = 7, + [118941] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6528), 1, + ACTIONS(6664), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6789), 1, + ACTIONS(6833), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6953), 1, + ACTIONS(7079), 1, aux_sym_unquoted_token2, - STATE(3859), 1, + STATE(3969), 1, sym_comment, - STATE(5061), 1, + STATE(5071), 1, sym__immediate_decimal, - ACTIONS(6791), 2, + ACTIONS(6835), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [115193] = 5, + [118964] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1458), 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, - ACTIONS(7438), 1, - anon_sym_BANG, - STATE(3860), 1, + STATE(3970), 1, sym_comment, - ACTIONS(1456), 4, + 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, - anon_sym_GT2, + ACTIONS(7555), 1, anon_sym_DOT_DOT, - anon_sym_DOT2, - [115212] = 7, + 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(7328), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7450), 1, + ACTIONS(7560), 1, anon_sym_DQUOTE2, - STATE(3847), 1, + STATE(3926), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3861), 1, + STATE(3973), 1, sym_comment, - STATE(4145), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7330), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [115235] = 7, + [119052] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7328), 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(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(7418), 1, anon_sym_LPAREN, - ACTIONS(7452), 1, + ACTIONS(7564), 1, anon_sym_DQUOTE2, - STATE(3862), 1, + STATE(3975), 1, sym_comment, - STATE(3865), 1, + STATE(3978), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4145), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7330), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [115258] = 7, + [119098] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5072), 1, + ACTIONS(5160), 1, aux_sym_unquoted_token2, - ACTIONS(6498), 1, + ACTIONS(6497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6751), 1, + ACTIONS(6981), 1, aux_sym__immediate_decimal_token2, - STATE(3863), 1, + STATE(3976), 1, sym_comment, - STATE(4211), 1, + STATE(4426), 1, sym__immediate_decimal, - ACTIONS(6753), 2, + ACTIONS(6983), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [115281] = 7, + [119121] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5072), 1, + ACTIONS(5160), 1, aux_sym_unquoted_token2, - ACTIONS(6528), 1, + ACTIONS(6664), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6789), 1, + ACTIONS(6833), 1, aux_sym__immediate_decimal_token2, - STATE(3864), 1, + STATE(3977), 1, sym_comment, - STATE(5061), 1, + STATE(5071), 1, sym__immediate_decimal, - ACTIONS(6791), 2, + ACTIONS(6835), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [115304] = 7, + [119144] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7328), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7454), 1, + ACTIONS(7566), 1, anon_sym_DQUOTE2, - STATE(3847), 1, + STATE(3926), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3865), 1, + STATE(3978), 1, sym_comment, - STATE(4145), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7330), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [115327] = 7, + [119167] = 8, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, ACTIONS(7328), 1, - anon_sym_LPAREN, - ACTIONS(7456), 1, - anon_sym_DQUOTE2, - STATE(3866), 1, + sym_identifier, + ACTIONS(7330), 1, + anon_sym_DOLLAR, + STATE(2825), 1, + sym_val_variable, + STATE(3979), 1, sym_comment, - STATE(3871), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4145), 1, - sym_expr_interpolated, - ACTIONS(7330), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [115350] = 8, + STATE(4186), 1, + sym__variable_name, + STATE(4305), 1, + sym__assignment_pattern, + [119192] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7131), 1, - anon_sym_DOT2, - ACTIONS(7458), 1, - anon_sym_RBRACE, - ACTIONS(7460), 1, - sym__entry_separator, - STATE(349), 1, - sym_path, - STATE(3814), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3867), 1, + ACTIONS(7568), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7570), 1, + aux_sym__immediate_decimal_token5, + STATE(3980), 1, sym_comment, - STATE(4673), 1, - sym_cell_path, - [115375] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5298), 1, - anon_sym_RBRACK, - ACTIONS(5300), 1, + ACTIONS(1770), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(7131), 1, - anon_sym_DOT2, - STATE(349), 1, - sym_path, - STATE(3814), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3868), 1, - sym_comment, - STATE(4769), 1, - sym_cell_path, - [115400] = 7, + ACTIONS(1772), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [119213] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5017), 1, + ACTIONS(5071), 1, aux_sym_unquoted_token2, - ACTIONS(6498), 1, + ACTIONS(6497), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6751), 1, + ACTIONS(6981), 1, aux_sym__immediate_decimal_token2, - STATE(3869), 1, + STATE(3981), 1, sym_comment, - STATE(4211), 1, + STATE(4426), 1, sym__immediate_decimal, - ACTIONS(6753), 2, + ACTIONS(6983), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [115423] = 7, + [119236] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5017), 1, + ACTIONS(5071), 1, aux_sym_unquoted_token2, - ACTIONS(6528), 1, + ACTIONS(6664), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6789), 1, + ACTIONS(6833), 1, aux_sym__immediate_decimal_token2, - STATE(3870), 1, + STATE(3982), 1, sym_comment, - STATE(5061), 1, + STATE(5071), 1, sym__immediate_decimal, - ACTIONS(6791), 2, + ACTIONS(6835), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [115446] = 7, + [119259] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7328), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7462), 1, + ACTIONS(7572), 1, anon_sym_DQUOTE2, - STATE(3847), 1, + STATE(3926), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3871), 1, + STATE(3983), 1, sym_comment, - STATE(4145), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7330), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [115469] = 7, + [119282] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7328), 1, + ACTIONS(1713), 1, + sym__space, + ACTIONS(7574), 1, + anon_sym_DOT_DOT2, + STATE(3984), 1, + sym_comment, + ACTIONS(1614), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7576), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119303] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7464), 1, + ACTIONS(7578), 1, anon_sym_DQUOTE2, - STATE(3872), 1, + STATE(3985), 1, sym_comment, - STATE(3873), 1, + STATE(3987), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4145), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7330), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [115492] = 7, + [119326] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(3986), 1, + sym_comment, + 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(7328), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7466), 1, + ACTIONS(7582), 1, anon_sym_DQUOTE2, - STATE(3847), 1, + STATE(3926), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3873), 1, + STATE(3987), 1, sym_comment, - STATE(4145), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7330), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [115515] = 6, + [119368] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7468), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7470), 1, - aux_sym__immediate_decimal_token5, - STATE(3874), 1, + ACTIONS(2154), 1, + sym__space, + ACTIONS(7584), 1, + anon_sym_DOT_DOT2, + STATE(3988), 1, sym_comment, - ACTIONS(1746), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1748), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [115536] = 7, + 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(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(3288), 2, + sym_block, + sym_val_closure, + [119412] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7328), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7472), 1, + ACTIONS(7588), 1, anon_sym_DQUOTE2, - STATE(3875), 1, + STATE(3990), 1, sym_comment, - STATE(3878), 1, + STATE(3994), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4145), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7330), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [115559] = 7, - ACTIONS(103), 1, + [119435] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6693), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7249), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7474), 1, - aux_sym__immediate_decimal_token2, - STATE(3876), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_record, + STATE(3991), 1, sym_comment, - STATE(4346), 1, + STATE(5243), 1, sym__immediate_decimal, - ACTIONS(7476), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [115582] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6693), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7374), 1, + ACTIONS(7430), 2, aux_sym__immediate_decimal_token1, - ACTIONS(7478), 1, aux_sym__immediate_decimal_token2, - STATE(3877), 1, - sym_comment, - STATE(5065), 1, - sym__immediate_decimal, - ACTIONS(7480), 2, + ACTIONS(7432), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [115605] = 7, + [119456] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(3992), 1, + sym_comment, + 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(3808), 1, + anon_sym_LBRACE, + STATE(3993), 1, + sym_comment, + STATE(4488), 1, + sym_block, + ACTIONS(7590), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [119494] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7328), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7482), 1, + ACTIONS(7592), 1, anon_sym_DQUOTE2, - STATE(3847), 1, + STATE(3926), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3878), 1, + STATE(3994), 1, sym_comment, - STATE(4145), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7330), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [115628] = 6, + [119517] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6693), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7484), 1, - anon_sym_DOT_DOT2, - STATE(3879), 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, - ACTIONS(7486), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7488), 2, - sym_filesize_unit, - sym_duration_unit, - [115649] = 7, + STATE(3288), 2, + sym_block, + sym_val_closure, + [119540] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7328), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7490), 1, + ACTIONS(7594), 1, anon_sym_DQUOTE2, - STATE(3880), 1, + STATE(3996), 1, sym_comment, - STATE(3881), 1, + STATE(3999), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4145), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7330), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [115672] = 7, + [119563] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, + sym__newline, + 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(7328), 1, + ACTIONS(7418), 1, anon_sym_LPAREN, - ACTIONS(7492), 1, + ACTIONS(7596), 1, anon_sym_DQUOTE2, - STATE(3847), 1, + STATE(3926), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3881), 1, + STATE(3999), 1, sym_comment, - STATE(4145), 1, + STATE(4424), 1, sym_expr_interpolated, - ACTIONS(7330), 2, + ACTIONS(7420), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [115695] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7494), 1, - sym_long_flag_identifier, - ACTIONS(7496), 1, - anon_sym_EQ2, - STATE(3882), 1, - sym_comment, - STATE(4570), 1, - sym__flag_equals_value, - ACTIONS(4328), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [115716] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(3883), 1, - sym_comment, - STATE(4362), 1, - sym_block, - ACTIONS(7498), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [115735] = 6, + [119632] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1716), 1, - sym__entry_separator, - ACTIONS(7500), 1, - anon_sym_DOT_DOT2, - STATE(3884), 1, + ACTIONS(7276), 1, + aux_sym__immediate_decimal_token5, + STATE(4000), 1, sym_comment, - ACTIONS(1629), 2, + ACTIONS(1744), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1746), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7502), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115756] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [119651] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(57), 1, - anon_sym_AT, - STATE(3837), 1, - aux_sym_attribute_list_repeat1, - STATE(3885), 1, + ACTIONS(7598), 1, + aux_sym__immediate_decimal_token5, + STATE(4001), 1, sym_comment, - STATE(4724), 1, - sym_attribute, - ACTIONS(7504), 3, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - [115777] = 6, + ACTIONS(1852), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1854), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [119670] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1716), 1, + ACTIONS(2102), 1, sym__space, - ACTIONS(7309), 1, + ACTIONS(7600), 1, anon_sym_DOT_DOT2, - STATE(3886), 1, + STATE(4002), 1, sym_comment, - ACTIONS(1629), 2, + ACTIONS(2104), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7311), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115798] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7193), 1, - aux_sym__immediate_decimal_token5, - STATE(3887), 1, - sym_comment, - ACTIONS(1756), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1754), 3, - anon_sym_LBRACE, + ACTIONS(7602), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115817] = 6, + [119691] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2110), 1, sym__space, - ACTIONS(7506), 1, + ACTIONS(7604), 1, anon_sym_DOT_DOT2, - STATE(3888), 1, + STATE(4003), 1, sym_comment, - ACTIONS(2154), 2, + ACTIONS(2112), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7508), 2, + ACTIONS(7606), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115838] = 5, + [119712] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7171), 1, + ACTIONS(7608), 1, + anon_sym_DOT, + ACTIONS(7610), 1, aux_sym__immediate_decimal_token5, - STATE(3889), 1, + STATE(4004), 1, sym_comment, - ACTIONS(1754), 2, + ACTIONS(1744), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1756), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [115857] = 7, + ACTIONS(1746), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [119733] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7342), 1, - anon_sym_DOT_DOT, - ACTIONS(7344), 1, + ACTIONS(2118), 1, + sym__space, + ACTIONS(7612), 1, anon_sym_DOT_DOT2, - ACTIONS(7510), 1, - anon_sym_RBRACK, - ACTIONS(7512), 1, - sym__entry_separator, - STATE(3890), 1, + STATE(4005), 1, sym_comment, - ACTIONS(7346), 2, + ACTIONS(2120), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7614), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115880] = 5, + [119754] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7514), 1, - aux_sym__immediate_decimal_token5, - STATE(3891), 1, + ACTIONS(5509), 1, + sym__space, + ACTIONS(7512), 1, + anon_sym_EQ2, + ACTIONS(7616), 1, + sym_short_flag_identifier, + STATE(3032), 1, + sym__flag_equals_value, + STATE(4006), 1, sym_comment, - ACTIONS(1812), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1814), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [115899] = 7, + ACTIONS(5507), 2, + sym__newline, + anon_sym_SEMI, + [119777] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7344), 1, + ACTIONS(5473), 1, + sym__space, + ACTIONS(7574), 1, anon_sym_DOT_DOT2, - ACTIONS(7348), 1, - anon_sym_DOT_DOT, - ACTIONS(7516), 1, - anon_sym_RBRACK, - ACTIONS(7519), 1, - sym__entry_separator, - STATE(3892), 1, + STATE(4007), 1, sym_comment, - ACTIONS(7346), 2, + ACTIONS(5471), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7576), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115922] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6575), 1, - anon_sym_LPAREN2, - ACTIONS(7389), 1, - sym__entry_separator, - STATE(2236), 1, - aux_sym__types_body_repeat2, - STATE(3893), 1, - sym_comment, - STATE(4760), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7522), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [115945] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7524), 1, - anon_sym_DOT, - ACTIONS(7526), 1, - aux_sym__immediate_decimal_token5, - STATE(3894), 1, - sym_comment, - ACTIONS(1754), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1756), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [115966] = 4, + [119798] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3895), 1, + STATE(4008), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, @@ -234815,21617 +238986,21879 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [115983] = 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(3896), 1, + STATE(4010), 1, sym_comment, - ACTIONS(763), 2, + ACTIONS(771), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(765), 4, + ACTIONS(773), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [116000] = 4, + [119855] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3897), 1, + STATE(4011), 1, sym_comment, - ACTIONS(789), 2, + ACTIONS(860), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(791), 4, + ACTIONS(862), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [116017] = 5, + [119872] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(3898), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern, + STATE(4012), 1, sym_comment, - STATE(4335), 1, - sym_block, - ACTIONS(7528), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [116036] = 6, + 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(2108), 1, - sym__space, - ACTIONS(7530), 1, - anon_sym_DOT_DOT2, - STATE(3899), 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(2110), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7532), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116057] = 6, + STATE(4547), 1, + sym__assignment_pattern_parenthesized, + [119918] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2116), 1, - sym__space, - ACTIONS(7534), 1, - anon_sym_DOT_DOT2, - STATE(3900), 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(2118), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7536), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116078] = 6, + STATE(4053), 1, + sym__variable_name, + STATE(4552), 1, + sym__assignment_pattern_parenthesized, + [119943] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2124), 1, - sym__space, - ACTIONS(7538), 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(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, + ACTIONS(1772), 2, anon_sym_DOT_DOT2, - STATE(3901), 1, + sym__unquoted_pattern_in_record, + [119989] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6747), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7624), 1, + anon_sym_DOT, + STATE(4017), 1, sym_comment, - ACTIONS(2126), 2, + 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(7540), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116099] = 6, + 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(7542), 1, + ACTIONS(7628), 1, anon_sym_DOT_DOT2, - STATE(3902), 1, + STATE(4020), 1, sym_comment, - ACTIONS(2154), 2, + ACTIONS(2156), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7544), 2, + ACTIONS(7630), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116120] = 6, + [120075] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2108), 1, + ACTIONS(2102), 1, sym__entry_separator, - ACTIONS(7546), 1, + ACTIONS(7632), 1, anon_sym_DOT_DOT2, - STATE(3903), 1, + STATE(4021), 1, sym_comment, - ACTIONS(2110), 2, + ACTIONS(2104), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7548), 2, + ACTIONS(7634), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116141] = 6, + [120096] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2116), 1, + ACTIONS(2110), 1, sym__entry_separator, - ACTIONS(7550), 1, + ACTIONS(7636), 1, anon_sym_DOT_DOT2, - STATE(3904), 1, + STATE(4022), 1, sym_comment, - ACTIONS(2118), 2, + ACTIONS(2112), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7552), 2, + ACTIONS(7638), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116162] = 6, + [120117] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2124), 1, + ACTIONS(2118), 1, sym__entry_separator, - ACTIONS(7554), 1, + ACTIONS(7640), 1, anon_sym_DOT_DOT2, - STATE(3905), 1, + STATE(4023), 1, sym_comment, - ACTIONS(2126), 2, + ACTIONS(2120), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7556), 2, + ACTIONS(7642), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116183] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - STATE(3906), 1, - sym_comment, - STATE(5032), 1, - sym__immediate_decimal, - ACTIONS(7374), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7376), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [116204] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(3907), 1, - sym_comment, - STATE(4140), 1, - sym_block, - ACTIONS(7558), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [116223] = 6, + [120138] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7560), 1, + ACTIONS(1772), 1, + sym__unquoted_pattern, + ACTIONS(7644), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7562), 1, + ACTIONS(7646), 1, aux_sym__immediate_decimal_token5, - STATE(3908), 1, - sym_comment, - ACTIONS(1746), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1748), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [116244] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(3909), 1, + STATE(4024), 1, sym_comment, - STATE(4142), 1, - sym_block, - ACTIONS(7558), 4, + ACTIONS(1770), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [116263] = 8, + anon_sym_PIPE, + anon_sym_EQ_GT, + [120159] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7123), 1, + ACTIONS(7328), 1, sym_identifier, - ACTIONS(7237), 1, + ACTIONS(7349), 1, anon_sym_DOLLAR, - STATE(2783), 1, - sym__variable_name, - STATE(2828), 1, + STATE(2825), 1, sym_val_variable, - STATE(3910), 1, + STATE(2883), 1, + sym__variable_name, + STATE(4025), 1, sym_comment, - STATE(4290), 1, + STATE(4303), 1, sym__assignment_pattern, - [116288] = 8, + [120184] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7123), 1, + ACTIONS(7328), 1, sym_identifier, - ACTIONS(7125), 1, + ACTIONS(7330), 1, anon_sym_DOLLAR, - STATE(2828), 1, + STATE(2825), 1, sym_val_variable, - STATE(3911), 1, + STATE(4026), 1, sym_comment, - STATE(4006), 1, + STATE(4114), 1, sym__variable_name, - STATE(4292), 1, + STATE(4304), 1, sym__assignment_pattern, - [116313] = 8, + [120209] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7123), 1, + ACTIONS(7328), 1, sym_identifier, - ACTIONS(7125), 1, + ACTIONS(7330), 1, anon_sym_DOLLAR, - STATE(2828), 1, + STATE(2825), 1, sym_val_variable, - STATE(3912), 1, + STATE(4027), 1, sym_comment, - STATE(4006), 1, + STATE(4114), 1, sym__variable_name, - STATE(4293), 1, + STATE(4305), 1, sym__assignment_pattern, - [116338] = 5, + [120234] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6809), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7564), 1, - anon_sym_DOT, - STATE(3913), 1, - sym_comment, - ACTIONS(1754), 4, + ACTIONS(7648), 1, anon_sym_if, + ACTIONS(7650), 1, sym__newline, + ACTIONS(7652), 1, anon_sym_PIPE, + ACTIONS(7654), 1, anon_sym_EQ_GT, - [116357] = 7, + STATE(4028), 1, + sym_comment, + STATE(4448), 1, + aux_sym_match_pattern_repeat1, + STATE(5168), 1, + sym_match_guard, + [120259] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4029), 1, + sym_comment, + STATE(4416), 1, + sym_block, + ACTIONS(7656), 4, sym__newline, - ACTIONS(7362), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120278] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3296), 1, - sym__blosure, - STATE(3914), 1, + STATE(4030), 1, sym_comment, - STATE(3172), 2, + STATE(4420), 1, sym_block, - sym_val_closure, - [116380] = 8, + ACTIONS(7656), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120297] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7658), 1, + anon_sym_DOT2, + STATE(2500), 1, + sym_path, + STATE(4031), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1510), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [120316] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7661), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7663), 1, + aux_sym__immediate_decimal_token5, + STATE(4032), 1, + sym_comment, + ACTIONS(1770), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1772), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [120337] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7123), 1, + ACTIONS(7328), 1, sym_identifier, - ACTIONS(7237), 1, + ACTIONS(7349), 1, anon_sym_DOLLAR, - STATE(2828), 1, + STATE(2825), 1, sym_val_variable, - STATE(2943), 1, + STATE(3003), 1, sym__variable_name, - STATE(3915), 1, + STATE(4033), 1, sym_comment, - STATE(4290), 1, + STATE(4303), 1, sym__assignment_pattern, - [116405] = 8, + [120362] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7123), 1, + ACTIONS(7328), 1, sym_identifier, - ACTIONS(7125), 1, + ACTIONS(7330), 1, anon_sym_DOLLAR, - STATE(2828), 1, + STATE(2825), 1, sym_val_variable, - STATE(3916), 1, + STATE(4034), 1, sym_comment, - STATE(3954), 1, + STATE(4057), 1, sym__variable_name, - STATE(4292), 1, + STATE(4304), 1, sym__assignment_pattern, - [116430] = 8, + [120387] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7123), 1, + ACTIONS(7328), 1, sym_identifier, - ACTIONS(7125), 1, + ACTIONS(7330), 1, anon_sym_DOLLAR, - STATE(2828), 1, + STATE(2825), 1, sym_val_variable, - STATE(3917), 1, + STATE(4035), 1, sym_comment, - STATE(3954), 1, + STATE(4057), 1, sym__variable_name, - STATE(4293), 1, + STATE(4305), 1, sym__assignment_pattern, - [116455] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1748), 1, - sym__unquoted_pattern, - ACTIONS(7566), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7568), 1, - aux_sym__immediate_decimal_token5, - STATE(3918), 1, - sym_comment, - ACTIONS(1746), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116476] = 7, - ACTIONS(3), 1, + [120412] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(7362), 1, - anon_sym_LBRACE, - STATE(3296), 1, - sym__blosure, - STATE(3821), 1, - aux_sym__repeat_newline, - STATE(3919), 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(3172), 2, - sym_block, - sym_val_closure, - [116499] = 8, + STATE(4186), 1, + sym__variable_name, + STATE(4304), 1, + sym__assignment_pattern, + [120437] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7123), 1, + ACTIONS(7328), 1, sym_identifier, - ACTIONS(7237), 1, + ACTIONS(7349), 1, anon_sym_DOLLAR, - STATE(2828), 1, + STATE(2825), 1, sym_val_variable, - STATE(2931), 1, + STATE(2983), 1, sym__variable_name, - STATE(3920), 1, + STATE(4037), 1, sym_comment, - STATE(4555), 1, + STATE(4547), 1, sym__assignment_pattern_parenthesized, - [116524] = 8, + [120462] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7123), 1, + ACTIONS(7328), 1, sym_identifier, - ACTIONS(7125), 1, + ACTIONS(7330), 1, anon_sym_DOLLAR, - STATE(2828), 1, + STATE(2825), 1, sym_val_variable, - STATE(3921), 1, + STATE(4038), 1, sym_comment, - STATE(4027), 1, + STATE(4149), 1, sym__variable_name, - STATE(4611), 1, + STATE(4552), 1, sym__assignment_pattern_parenthesized, - [116549] = 8, + [120487] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7123), 1, + ACTIONS(7328), 1, sym_identifier, - ACTIONS(7125), 1, + ACTIONS(7330), 1, anon_sym_DOLLAR, - STATE(2828), 1, + STATE(2825), 1, sym_val_variable, - STATE(3922), 1, + STATE(4039), 1, sym_comment, - STATE(4027), 1, + STATE(4149), 1, sym__variable_name, - STATE(4613), 1, + STATE(4637), 1, sym__assignment_pattern_parenthesized, - [116574] = 7, + [120512] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7363), 1, + sym__entry_separator, + ACTIONS(7546), 1, + anon_sym_DOT_DOT2, + STATE(4040), 1, + sym_comment, + ACTIONS(7544), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7548), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120533] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7268), 1, + sym__entry_separator, + ACTIONS(7546), 1, + anon_sym_DOT_DOT2, + STATE(4041), 1, + sym_comment, + ACTIONS(7548), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7555), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [120554] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(7665), 1, + anon_sym_DOT, + ACTIONS(7667), 1, + aux_sym__immediate_decimal_token5, + STATE(4042), 1, + sym_comment, + ACTIONS(1744), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1746), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [120575] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, sym__newline, - ACTIONS(7362), 1, + ACTIONS(7434), 1, anon_sym_LBRACE, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3370), 1, + STATE(3394), 1, sym__blosure, - STATE(3923), 1, + STATE(3989), 1, + aux_sym__repeat_newline, + STATE(4043), 1, sym_comment, - STATE(3172), 2, + STATE(3288), 2, sym_block, sym_val_closure, - [116597] = 7, + [120598] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(7362), 1, + ACTIONS(7434), 1, anon_sym_LBRACE, - STATE(3370), 1, - sym__blosure, - STATE(3823), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(3924), 1, + STATE(3401), 1, + sym__blosure, + STATE(4044), 1, sym_comment, - STATE(3172), 2, + STATE(3288), 2, sym_block, sym_val_closure, - [116620] = 4, + [120621] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7570), 1, - anon_sym_LT, - STATE(3925), 1, - sym_comment, - ACTIONS(5929), 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, - [116637] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7572), 1, - anon_sym_LT, - STATE(3926), 1, + STATE(3401), 1, + sym__blosure, + STATE(3997), 1, + aux_sym__repeat_newline, + STATE(4045), 1, sym_comment, - ACTIONS(5929), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [116654] = 6, + STATE(3288), 2, + sym_block, + sym_val_closure, + [120644] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7167), 1, - anon_sym_DOT2, - STATE(2458), 1, - sym_path, - STATE(3777), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3927), 1, - sym_comment, - ACTIONS(1517), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [116675] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5389), 1, - sym__space, - ACTIONS(7444), 1, - anon_sym_EQ2, - ACTIONS(7574), 1, - sym_short_flag_identifier, - STATE(3057), 1, - sym__flag_equals_value, - STATE(3928), 1, + ACTIONS(1746), 1, + sym__unquoted_pattern, + ACTIONS(7669), 1, + anon_sym_DOT, + ACTIONS(7671), 1, + aux_sym__immediate_decimal_token5, + STATE(4046), 1, sym_comment, - ACTIONS(5387), 2, + ACTIONS(1744), 3, sym__newline, - anon_sym_SEMI, - [116698] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7576), 1, - anon_sym_DQUOTE, - STATE(3929), 1, - sym_comment, - STATE(4251), 1, - aux_sym_string_content_repeat1, - STATE(4945), 1, - sym_string_content, - ACTIONS(7578), 2, - sym__escaped_str_content, - sym_escape_sequence, - [116718] = 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + [120665] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(3930), 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(1746), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1748), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [116734] = 3, + 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, - STATE(3931), 1, + ACTIONS(7675), 1, + sym_identifier, + ACTIONS(7677), 1, + anon_sym_DOLLAR, + STATE(2825), 1, + sym_val_variable, + STATE(4048), 1, sym_comment, - ACTIONS(6184), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [116748] = 4, + STATE(4057), 1, + sym__variable_name, + STATE(4370), 1, + sym__assignment_pattern, + [120710] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3932), 1, - sym_comment, - ACTIONS(1812), 2, + ACTIONS(1679), 1, + sym__unquoted_pattern, + ACTIONS(2541), 1, sym__space, + ACTIONS(2642), 1, anon_sym_LPAREN2, - ACTIONS(1814), 3, + STATE(4049), 1, + sym_comment, + ACTIONS(2543), 2, sym__newline, anon_sym_SEMI, - sym__unquoted_pattern, - [116764] = 4, + [120730] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(3933), 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, - ACTIONS(1900), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1902), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [116780] = 4, + STATE(5322), 1, + sym__variable_name, + [120752] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1535), 1, + ACTIONS(1744), 1, sym__entry_separator, - STATE(3934), 1, + ACTIONS(6971), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7679), 1, + anon_sym_DOT, + STATE(4051), 1, sym_comment, - ACTIONS(1533), 4, + ACTIONS(1746), 2, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [116796] = 7, + anon_sym_RBRACE, + [120772] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(2991), 1, - sym_block, - STATE(3935), 1, + ACTIONS(7681), 1, + anon_sym_LPAREN, + ACTIONS(7683), 1, + anon_sym_SQUOTE2, + ACTIONS(7685), 1, + sym_unescaped_interpolated_content, + STATE(4052), 1, sym_comment, - STATE(4378), 1, - aux_sym__repeat_newline, - [116818] = 3, + STATE(4128), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4590), 1, + sym_expr_interpolated, + [120794] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3936), 1, - sym_comment, - ACTIONS(6190), 5, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(5780), 1, anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [116832] = 4, + ACTIONS(7687), 1, + anon_sym_COLON, + STATE(4053), 1, + sym_comment, + STATE(4559), 1, + aux_sym__repeat_newline, + STATE(5345), 1, + sym_param_type, + [120816] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1539), 1, - sym__entry_separator, - STATE(3937), 1, + ACTIONS(7689), 1, + anon_sym_DQUOTE, + STATE(4054), 1, sym_comment, - ACTIONS(1537), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [116848] = 4, + STATE(4403), 1, + aux_sym_string_content_repeat1, + STATE(5245), 1, + sym_string_content, + ACTIONS(7691), 2, + sym__escaped_str_content, + sym_escape_sequence, + [120836] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1543), 1, - sym__entry_separator, - STATE(3938), 1, + ACTIONS(7681), 1, + anon_sym_LPAREN, + ACTIONS(7685), 1, + sym_unescaped_interpolated_content, + ACTIONS(7693), 1, + anon_sym_SQUOTE2, + STATE(4055), 1, sym_comment, - ACTIONS(1541), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [116864] = 3, - ACTIONS(3), 1, + STATE(4064), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4590), 1, + sym_expr_interpolated, + [120858] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3939), 1, + ACTIONS(7695), 1, + anon_sym_DQUOTE, + STATE(4056), 1, sym_comment, - ACTIONS(6194), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [116878] = 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(1892), 1, - sym__table_head_separator, - ACTIONS(7580), 1, - anon_sym_DOT2, - STATE(3940), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(5935), 1, + anon_sym_EQ, + ACTIONS(7687), 1, + anon_sym_COLON, + STATE(4057), 1, sym_comment, - STATE(4178), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4732), 1, - sym_path, - STATE(5151), 1, - sym_cell_path, - [116900] = 4, + STATE(4559), 1, + aux_sym__repeat_newline, + STATE(5259), 1, + sym_param_type, + [120900] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2508), 1, - sym__unquoted_pattern, - STATE(3941), 1, + STATE(4058), 1, sym_comment, - ACTIONS(2506), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116916] = 5, + 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(3813), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(3942), 1, + STATE(4059), 1, sym_comment, - STATE(4504), 1, + STATE(4644), 1, sym_block, - ACTIONS(7558), 3, + ACTIONS(7590), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [116934] = 5, + [120936] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7552), 1, + anon_sym_RBRACK, + ACTIONS(7555), 1, + anon_sym_DOT_DOT, + ACTIONS(7557), 1, + sym__entry_separator, + STATE(4060), 1, + sym_comment, + [120958] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(3943), 1, + STATE(4061), 1, sym_comment, - STATE(4507), 1, + STATE(4653), 1, sym_block, - ACTIONS(7558), 3, + ACTIONS(7590), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [116952] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2527), 1, - sym__unquoted_pattern, - STATE(3944), 1, - sym_comment, - ACTIONS(2521), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116968] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3945), 1, - sym_comment, - ACTIONS(6250), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(6252), 3, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_RBRACE, - [116984] = 6, + [120976] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1716), 1, + ACTIONS(2589), 1, sym__space, - ACTIONS(2594), 1, + ACTIONS(2644), 1, anon_sym_LPAREN2, - ACTIONS(2596), 1, + ACTIONS(2646), 1, sym__unquoted_pattern, - STATE(3946), 1, + STATE(4062), 1, sym_comment, - ACTIONS(1629), 2, + ACTIONS(2591), 2, sym__newline, anon_sym_SEMI, - [117004] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3947), 1, - sym_comment, - ACTIONS(6256), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(6258), 3, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_RBRACE, - [117020] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_DOT_DOT2, - ACTIONS(7582), 1, - anon_sym_RBRACE, - ACTIONS(7584), 1, - sym__entry_separator, - STATE(3948), 1, - sym_comment, - ACTIONS(7502), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117040] = 6, + [120996] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2011), 1, - anon_sym_LBRACE, - ACTIONS(7586), 1, - anon_sym_DOT_DOT2, - STATE(3949), 1, - sym_comment, - ACTIONS(7588), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117060] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4397), 1, - sym__space, - ACTIONS(7444), 1, - anon_sym_EQ2, - STATE(3046), 1, - sym__flag_equals_value, - STATE(3950), 1, - sym_comment, - ACTIONS(4395), 2, - sym__newline, - anon_sym_SEMI, - [117080] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7590), 1, - anon_sym_DQUOTE, - STATE(3951), 1, + ACTIONS(1900), 1, + sym__table_head_separator, + ACTIONS(7697), 1, + anon_sym_DOT2, + STATE(4063), 1, sym_comment, - STATE(4251), 1, - aux_sym_string_content_repeat1, - STATE(5239), 1, - sym_string_content, - ACTIONS(7578), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117100] = 7, + 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(7592), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7594), 1, - anon_sym_SQUOTE2, - ACTIONS(7596), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - STATE(3952), 1, + ACTIONS(7699), 1, + anon_sym_SQUOTE2, + STATE(4064), 1, sym_comment, - STATE(3958), 1, + STATE(4203), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4563), 1, + STATE(4590), 1, sym_expr_interpolated, - [117122] = 7, + [121040] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1888), 1, + ACTIONS(1862), 1, sym__table_head_separator, - ACTIONS(7580), 1, + ACTIONS(7697), 1, anon_sym_DOT2, - STATE(3953), 1, + STATE(4065), 1, sym_comment, - STATE(4178), 1, + STATE(4261), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4732), 1, + STATE(4812), 1, sym_path, - STATE(4977), 1, + STATE(5087), 1, sym_cell_path, - [117144] = 7, + [121062] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(5482), 1, - anon_sym_COLON, - ACTIONS(5826), 1, + ACTIONS(5749), 1, anon_sym_EQ, - STATE(3954), 1, + ACTIONS(7687), 1, + anon_sym_COLON, + STATE(4066), 1, sym_comment, - STATE(4634), 1, + STATE(4559), 1, aux_sym__repeat_newline, - STATE(5248), 1, + STATE(5229), 1, sym_param_type, - [117166] = 4, - ACTIONS(103), 1, + [121084] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7598), 1, - anon_sym_BANG, - STATE(3955), 1, - sym_comment, - ACTIONS(1456), 4, + ACTIONS(7701), 1, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [117182] = 7, + ACTIONS(7704), 1, + anon_sym_DOT_DOT, + STATE(4067), 1, + sym_comment, + STATE(4121), 1, + aux_sym_parameter_repeat2, + ACTIONS(1398), 2, + sym__newline, + anon_sym_COMMA, + [121104] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7600), 1, + ACTIONS(7675), 1, sym_identifier, - ACTIONS(7602), 1, + ACTIONS(7677), 1, anon_sym_DOLLAR, - STATE(2828), 1, + STATE(2825), 1, sym_val_variable, - STATE(3956), 1, - sym_comment, - STATE(3965), 1, + STATE(4066), 1, sym__variable_name, - STATE(4338), 1, + STATE(4068), 1, + sym_comment, + STATE(4570), 1, sym__assignment_pattern, - [117204] = 6, + [121126] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1754), 1, - sym__entry_separator, - ACTIONS(6917), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7604), 1, - anon_sym_DOT, - STATE(3957), 1, + ACTIONS(7706), 1, + anon_sym_DQUOTE, + STATE(4069), 1, sym_comment, - ACTIONS(1756), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [117224] = 7, + 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(7592), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7596), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7606), 1, + ACTIONS(7708), 1, anon_sym_SQUOTE2, - STATE(3958), 1, + STATE(4070), 1, sym_comment, - STATE(4080), 1, + STATE(4076), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4563), 1, + STATE(4590), 1, sym_expr_interpolated, - [117246] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2090), 1, - sym__entry_separator, - ACTIONS(7608), 1, - anon_sym_LBRACK2, - STATE(3959), 1, - sym_comment, - ACTIONS(2092), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [117264] = 6, - ACTIONS(103), 1, + [121168] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7500), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1956), 1, + anon_sym_LBRACE, + ACTIONS(7710), 1, anon_sym_DOT_DOT2, - ACTIONS(7610), 1, - anon_sym_RBRACE, - ACTIONS(7612), 1, - sym__entry_separator, - STATE(3960), 1, + STATE(4071), 1, sym_comment, - ACTIONS(7502), 2, + ACTIONS(7712), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [117284] = 6, + [121188] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7614), 1, - anon_sym_DQUOTE, - STATE(3961), 1, + STATE(4072), 1, sym_comment, - STATE(4251), 1, - aux_sym_string_content_repeat1, - STATE(5122), 1, - sym_string_content, - ACTIONS(7578), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117304] = 7, + ACTIONS(2525), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2527), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [121204] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7592), 1, - anon_sym_LPAREN, - ACTIONS(7596), 1, - sym_unescaped_interpolated_content, - ACTIONS(7616), 1, - anon_sym_SQUOTE2, - STATE(3962), 1, + ACTIONS(2648), 1, + sym__space, + ACTIONS(2652), 1, + anon_sym_LPAREN2, + ACTIONS(2654), 1, + sym__unquoted_pattern, + STATE(4073), 1, sym_comment, - STATE(3966), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4563), 1, - sym_expr_interpolated, - [117326] = 7, - ACTIONS(103), 1, + ACTIONS(2650), 2, + sym__newline, + anon_sym_SEMI, + [121224] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7592), 1, - anon_sym_LPAREN, - ACTIONS(7596), 1, - sym_unescaped_interpolated_content, - ACTIONS(7618), 1, - anon_sym_SQUOTE2, - STATE(3963), 1, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4074), 1, sym_comment, - STATE(4080), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4563), 1, - sym_expr_interpolated, - [117348] = 4, + STATE(4583), 1, + sym_block, + ACTIONS(7656), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [121242] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3964), 1, - sym_comment, - ACTIONS(2506), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2508), 3, - anon_sym_RBRACK, + ACTIONS(7536), 1, + anon_sym_DOT_DOT2, + ACTIONS(7714), 1, anon_sym_RBRACE, - sym__unquoted_pattern_in_list, - [117364] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(5482), 1, - anon_sym_COLON, - ACTIONS(5670), 1, - anon_sym_EQ, - STATE(3965), 1, + ACTIONS(7716), 1, + sym__entry_separator, + STATE(4075), 1, sym_comment, - STATE(4634), 1, - aux_sym__repeat_newline, - STATE(4922), 1, - sym_param_type, - [117386] = 7, + ACTIONS(7538), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121262] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7592), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7596), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7620), 1, + ACTIONS(7718), 1, anon_sym_SQUOTE2, - STATE(3966), 1, + STATE(4076), 1, sym_comment, - STATE(4080), 1, + STATE(4203), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4563), 1, + STATE(4590), 1, sym_expr_interpolated, - [117408] = 6, + [121284] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2011), 1, - sym__space, - ACTIONS(2015), 1, - anon_sym_LPAREN2, - STATE(3967), 1, + ACTIONS(7161), 1, + sym__entry_separator, + ACTIONS(7258), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4077), 1, sym_comment, - ACTIONS(2013), 2, - sym__newline, - anon_sym_SEMI, - [117428] = 5, - ACTIONS(3), 1, + STATE(4593), 1, + sym_cell_path, + [121306] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(3968), 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, - STATE(4652), 1, - sym_block, - ACTIONS(7381), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [117446] = 5, + ACTIONS(7538), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121326] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(3969), 1, + STATE(4079), 1, sym_comment, - STATE(4660), 1, + STATE(4584), 1, sym_block, - ACTIONS(7381), 3, + ACTIONS(7656), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [117464] = 6, + [121344] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7622), 1, + ACTIONS(7610), 1, + aux_sym__immediate_decimal_token5, + STATE(4080), 1, + sym_comment, + ACTIONS(1744), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1746), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [121362] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7724), 1, anon_sym_DQUOTE, - STATE(3970), 1, + STATE(4081), 1, sym_comment, - STATE(4251), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4987), 1, + STATE(4972), 1, sym_string_content, - ACTIONS(7578), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [117484] = 7, + [121382] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7592), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7596), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7624), 1, + ACTIONS(7726), 1, anon_sym_SQUOTE2, - STATE(3971), 1, + STATE(4082), 1, sym_comment, - STATE(3977), 1, + STATE(4089), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4563), 1, + STATE(4590), 1, sym_expr_interpolated, - [117506] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2011), 1, - sym__entry_separator, - ACTIONS(2013), 1, - anon_sym_RBRACE, - ACTIONS(7626), 1, - anon_sym_DOT_DOT2, - STATE(3972), 1, - sym_comment, - ACTIONS(7628), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117526] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7032), 1, - sym__entry_separator, - ACTIONS(7131), 1, - anon_sym_DOT2, - STATE(349), 1, - sym_path, - STATE(3814), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3973), 1, - sym_comment, - STATE(4557), 1, - sym_cell_path, - [117548] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7071), 1, - sym__entry_separator, - ACTIONS(7131), 1, - anon_sym_DOT2, - STATE(349), 1, - sym_path, - STATE(3814), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3974), 1, - sym_comment, - STATE(4614), 1, - sym_cell_path, - [117570] = 7, + [121404] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5434), 1, + ACTIONS(7113), 1, sym__entry_separator, - ACTIONS(7131), 1, + ACTIONS(7258), 1, anon_sym_DOT2, - STATE(349), 1, + STATE(360), 1, sym_path, - STATE(3814), 1, + STATE(3924), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3975), 1, + STATE(4083), 1, sym_comment, - STATE(4148), 1, + STATE(4721), 1, sym_cell_path, - [117592] = 4, + [121426] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2558), 1, + ACTIONS(2527), 1, sym__unquoted_pattern, - STATE(3976), 1, + STATE(4084), 1, sym_comment, - ACTIONS(1030), 4, + ACTIONS(2525), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [117608] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7592), 1, - anon_sym_LPAREN, - ACTIONS(7596), 1, - sym_unescaped_interpolated_content, - ACTIONS(7630), 1, - anon_sym_SQUOTE2, - STATE(3977), 1, - sym_comment, - STATE(4080), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4563), 1, - sym_expr_interpolated, - [117630] = 4, + [121442] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2558), 1, + ACTIONS(2654), 1, sym__unquoted_pattern, - STATE(3978), 1, + STATE(4085), 1, sym_comment, - ACTIONS(994), 4, + ACTIONS(2648), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [117646] = 6, + [121458] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7632), 1, - anon_sym_DQUOTE, - STATE(3979), 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(4251), 1, - aux_sym_string_content_repeat1, - STATE(5064), 1, - sym_string_content, - ACTIONS(7578), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117666] = 7, + ACTIONS(7730), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121478] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7592), 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, + [121500] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7732), 1, + aux_sym__immediate_decimal_token5, + STATE(4088), 1, + sym_comment, + ACTIONS(1852), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1854), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [121518] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7596), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7634), 1, + ACTIONS(7734), 1, anon_sym_SQUOTE2, - STATE(3980), 1, + STATE(4089), 1, sym_comment, - STATE(3984), 1, + STATE(4203), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4563), 1, + STATE(4590), 1, sym_expr_interpolated, - [117688] = 4, - ACTIONS(3), 1, + [121540] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2031), 1, - sym__unquoted_pattern, - STATE(3981), 1, + ACTIONS(5354), 1, + sym__entry_separator, + ACTIONS(7258), 1, + anon_sym_DOT2, + STATE(360), 1, + sym_path, + STATE(3924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4090), 1, sym_comment, - ACTIONS(2566), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117704] = 5, + STATE(4446), 1, + sym_cell_path, + [121562] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1349), 1, + STATE(1362), 1, aux_sym__block_body_repeat1, - STATE(3982), 1, + STATE(4091), 1, sym_comment, ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(459), 2, + ACTIONS(3100), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [117722] = 5, + [121580] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7526), 1, - aux_sym__immediate_decimal_token5, - STATE(3983), 1, - sym_comment, - ACTIONS(1754), 2, + ACTIONS(1713), 1, + sym__space, + ACTIONS(2612), 1, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1756), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [117740] = 7, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(4092), 1, + sym_comment, + ACTIONS(1614), 2, + sym__newline, + anon_sym_SEMI, + [121600] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7592), 1, + ACTIONS(7736), 1, + anon_sym_DQUOTE, + STATE(4093), 1, + sym_comment, + STATE(4403), 1, + aux_sym_string_content_repeat1, + STATE(5131), 1, + sym_string_content, + ACTIONS(7691), 2, + sym__escaped_str_content, + sym_escape_sequence, + [121620] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7596), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7636), 1, + ACTIONS(7738), 1, anon_sym_SQUOTE2, - STATE(3984), 1, + STATE(4094), 1, sym_comment, - STATE(4080), 1, + STATE(4099), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4563), 1, + STATE(4590), 1, sym_expr_interpolated, - [117762] = 4, - ACTIONS(3), 1, + [121642] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2031), 1, + ACTIONS(1022), 1, + sym__space, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, sym__unquoted_pattern, - STATE(3985), 1, + STATE(4095), 1, sym_comment, - ACTIONS(2021), 4, - anon_sym_if, + ACTIONS(1020), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117778] = 4, + anon_sym_SEMI, + [121662] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7740), 1, + anon_sym_LT, + STATE(4096), 1, + sym_comment, + 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, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(3986), 1, + ACTIONS(7532), 1, + anon_sym_EQ2, + STATE(4097), 1, sym_comment, - ACTIONS(2011), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117794] = 6, - ACTIONS(103), 1, + 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(7638), 1, - anon_sym_DQUOTE, - STATE(3987), 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, - STATE(4251), 1, - aux_sym_string_content_repeat1, - STATE(5217), 1, - sym_string_content, - ACTIONS(7578), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117814] = 7, + aux_sym_decl_def_repeat1, + [121716] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7592), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7596), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7640), 1, + ACTIONS(7745), 1, anon_sym_SQUOTE2, - STATE(3988), 1, + STATE(4099), 1, sym_comment, - STATE(3993), 1, + STATE(4203), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4563), 1, + STATE(4590), 1, sym_expr_interpolated, - [117836] = 5, + [121738] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7642), 1, - aux_sym__immediate_decimal_token5, - STATE(3989), 1, + ACTIONS(7747), 1, + anon_sym_LT, + STATE(4100), 1, sym_comment, - ACTIONS(1812), 2, - anon_sym_LPAREN2, + ACTIONS(5245), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(1814), 2, + ACTIONS(6012), 2, anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [117854] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3990), 1, - sym_comment, - ACTIONS(6158), 5, - anon_sym_EQ, - anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [117868] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3991), 1, - sym_comment, - ACTIONS(1814), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1812), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117884] = 5, - ACTIONS(3), 1, + [121756] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3992), 1, + STATE(4101), 1, sym_comment, - STATE(4842), 1, - sym__immediate_decimal, - ACTIONS(7374), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7376), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [117902] = 7, + 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(7592), 1, - anon_sym_LPAREN, - ACTIONS(7596), 1, - sym_unescaped_interpolated_content, - ACTIONS(7644), 1, - anon_sym_SQUOTE2, - STATE(3993), 1, + STATE(4102), 1, sym_comment, - STATE(4080), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4563), 1, - sym_expr_interpolated, - [117924] = 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(7646), 1, + ACTIONS(7749), 1, anon_sym_DQUOTE, - STATE(3994), 1, + STATE(4103), 1, sym_comment, - STATE(4251), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(5220), 1, + STATE(5228), 1, sym_string_content, - ACTIONS(7578), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [117944] = 7, + [121808] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7592), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7596), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7648), 1, + ACTIONS(7751), 1, anon_sym_SQUOTE2, - STATE(3995), 1, + STATE(4104), 1, sym_comment, - STATE(4024), 1, + STATE(4109), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4563), 1, + STATE(4590), 1, sym_expr_interpolated, - [117966] = 5, + [121830] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7650), 1, - aux_sym__immediate_decimal_token5, - STATE(3996), 1, + ACTIONS(7536), 1, + anon_sym_DOT_DOT2, + ACTIONS(7753), 1, + anon_sym_RBRACE, + ACTIONS(7755), 1, + sym__entry_separator, + STATE(4105), 1, sym_comment, - ACTIONS(1812), 2, + ACTIONS(7538), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121850] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1030), 1, + sym__space, + ACTIONS(2656), 1, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1814), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [117984] = 6, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(4106), 1, + sym_comment, + ACTIONS(994), 2, + sym__newline, + anon_sym_SEMI, + [121870] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7652), 1, + ACTIONS(7757), 1, anon_sym_DQUOTE, - STATE(3997), 1, + STATE(4107), 1, sym_comment, - STATE(4251), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4854), 1, + STATE(5224), 1, sym_string_content, - ACTIONS(7578), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [118004] = 7, + [121890] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7592), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7596), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7654), 1, + ACTIONS(7759), 1, anon_sym_SQUOTE2, - STATE(3998), 1, + STATE(4108), 1, sym_comment, - STATE(4002), 1, + STATE(4130), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4563), 1, + STATE(4590), 1, sym_expr_interpolated, - [118026] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2596), 1, - sym__unquoted_pattern, - STATE(3999), 1, - sym_comment, - ACTIONS(7265), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118042] = 6, + [121912] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_DOT_DOT2, - ACTIONS(7656), 1, - anon_sym_RBRACE, - ACTIONS(7658), 1, - sym__entry_separator, - STATE(4000), 1, - sym_comment, - ACTIONS(7502), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118062] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4001), 1, + ACTIONS(7681), 1, + anon_sym_LPAREN, + ACTIONS(7685), 1, + sym_unescaped_interpolated_content, + ACTIONS(7761), 1, + anon_sym_SQUOTE2, + STATE(4109), 1, sym_comment, - ACTIONS(6162), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [118076] = 7, + STATE(4203), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4590), 1, + sym_expr_interpolated, + [121934] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7592), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7596), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7660), 1, + ACTIONS(7763), 1, anon_sym_SQUOTE2, - STATE(4002), 1, + STATE(4110), 1, sym_comment, - STATE(4080), 1, + STATE(4203), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4563), 1, + STATE(4590), 1, sym_expr_interpolated, - [118098] = 6, + [121956] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2025), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1956), 1, + sym__entry_separator, + ACTIONS(1960), 1, anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern, - ACTIONS(2566), 1, - sym__space, - STATE(4003), 1, + STATE(4111), 1, sym_comment, - ACTIONS(2568), 2, - sym__newline, - anon_sym_SEMI, - [118118] = 6, + ACTIONS(1958), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [121976] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7662), 1, + ACTIONS(7765), 1, anon_sym_DQUOTE, - STATE(4004), 1, + STATE(4112), 1, sym_comment, - STATE(4251), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4872), 1, + STATE(5365), 1, sym_string_content, - ACTIONS(7578), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [118138] = 6, + [121996] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7664), 1, - anon_sym_DQUOTE, - STATE(4005), 1, + ACTIONS(7681), 1, + anon_sym_LPAREN, + ACTIONS(7685), 1, + sym_unescaped_interpolated_content, + ACTIONS(7767), 1, + anon_sym_SQUOTE2, + STATE(4113), 1, sym_comment, - STATE(4251), 1, - aux_sym_string_content_repeat1, - STATE(4886), 1, - sym_string_content, - ACTIONS(7578), 2, - sym__escaped_str_content, - sym_escape_sequence, - [118158] = 7, + STATE(4117), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4590), 1, + sym_expr_interpolated, + [122018] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(5482), 1, - anon_sym_COLON, - ACTIONS(5632), 1, + ACTIONS(5761), 1, anon_sym_EQ, - STATE(4006), 1, + ACTIONS(7687), 1, + anon_sym_COLON, + STATE(4114), 1, sym_comment, - STATE(4634), 1, + STATE(4559), 1, aux_sym__repeat_newline, - STATE(5242), 1, + STATE(5237), 1, sym_param_type, - [118180] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7666), 1, - anon_sym_DQUOTE, - STATE(4007), 1, - sym_comment, - STATE(4251), 1, - aux_sym_string_content_repeat1, - STATE(4898), 1, - sym_string_content, - ACTIONS(7578), 2, - sym__escaped_str_content, - sym_escape_sequence, - [118200] = 6, + [122040] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7668), 1, - anon_sym_DQUOTE, - STATE(4008), 1, + ACTIONS(7681), 1, + anon_sym_LPAREN, + ACTIONS(7685), 1, + sym_unescaped_interpolated_content, + ACTIONS(7769), 1, + anon_sym_SQUOTE2, + STATE(4110), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4115), 1, sym_comment, - STATE(4251), 1, - aux_sym_string_content_repeat1, - STATE(4908), 1, - sym_string_content, - ACTIONS(7578), 2, - sym__escaped_str_content, - sym_escape_sequence, - [118220] = 6, + STATE(4590), 1, + sym_expr_interpolated, + [122062] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2021), 1, + ACTIONS(5765), 1, sym__space, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern, - STATE(4009), 1, + ACTIONS(7512), 1, + anon_sym_EQ2, + STATE(3164), 1, + sym__flag_equals_value, + STATE(4116), 1, sym_comment, - ACTIONS(2023), 2, + ACTIONS(5763), 2, sym__newline, anon_sym_SEMI, - [118240] = 6, + [122082] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7670), 1, - anon_sym_DQUOTE, - STATE(4010), 1, - sym_comment, - STATE(4251), 1, - aux_sym_string_content_repeat1, - STATE(4918), 1, - sym_string_content, - ACTIONS(7578), 2, - sym__escaped_str_content, - sym_escape_sequence, - [118260] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4011), 1, - sym_comment, - STATE(5127), 1, - sym__immediate_decimal, - ACTIONS(6528), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6530), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [118278] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1355), 1, - aux_sym__block_body_repeat1, - STATE(4012), 1, + ACTIONS(7681), 1, + anon_sym_LPAREN, + ACTIONS(7685), 1, + sym_unescaped_interpolated_content, + ACTIONS(7771), 1, + anon_sym_SQUOTE2, + STATE(4117), 1, sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3085), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118296] = 6, + STATE(4203), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4590), 1, + sym_expr_interpolated, + [122104] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7672), 1, - anon_sym_DQUOTE, - STATE(4013), 1, + STATE(4118), 1, sym_comment, - STATE(4251), 1, - aux_sym_string_content_repeat1, - STATE(4925), 1, - sym_string_content, - ACTIONS(7578), 2, - sym__escaped_str_content, - sym_escape_sequence, - [118316] = 6, + ACTIONS(6261), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6263), 3, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_RBRACE, + [122120] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7674), 1, + ACTIONS(7773), 1, anon_sym_DQUOTE, - STATE(4014), 1, + STATE(4119), 1, sym_comment, - STATE(4251), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4932), 1, + STATE(4964), 1, sym_string_content, - ACTIONS(7578), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [118336] = 6, + [122140] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7676), 1, + ACTIONS(7775), 1, anon_sym_DQUOTE, - STATE(4015), 1, + STATE(4120), 1, sym_comment, - STATE(4251), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4938), 1, + STATE(4979), 1, sym_string_content, - ACTIONS(7578), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [118356] = 6, - ACTIONS(103), 1, + [122160] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(2556), 1, - anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern_in_list, - STATE(4016), 1, - sym_comment, - ACTIONS(996), 2, + ACTIONS(6706), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [118376] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7678), 1, - anon_sym_QMARK2, - ACTIONS(7680), 1, - anon_sym_BANG, - STATE(4017), 1, + ACTIONS(7777), 2, + sym__newline, + anon_sym_COMMA, + STATE(4121), 2, sym_comment, - STATE(4755), 1, - sym__path_suffix, - ACTIONS(1444), 2, - sym__table_head_separator, - anon_sym_DOT2, - [118396] = 6, + aux_sym_parameter_repeat2, + [122176] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7682), 1, + ACTIONS(7780), 1, anon_sym_DQUOTE, - STATE(4018), 1, + STATE(4122), 1, sym_comment, - STATE(4251), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4952), 1, + STATE(4992), 1, sym_string_content, - ACTIONS(7578), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [118416] = 6, + [122196] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7684), 1, + ACTIONS(7782), 1, anon_sym_DQUOTE, - STATE(4019), 1, + STATE(4123), 1, sym_comment, - STATE(4251), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4958), 1, + STATE(5003), 1, sym_string_content, - ACTIONS(7578), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [118436] = 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(7686), 1, + ACTIONS(7784), 1, anon_sym_DQUOTE, - STATE(4020), 1, + STATE(4125), 1, sym_comment, - STATE(4251), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4964), 1, + STATE(5013), 1, sym_string_content, - ACTIONS(7578), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [118456] = 7, + [122252] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(5482), 1, - anon_sym_COLON, - ACTIONS(5557), 1, - anon_sym_EQ, - STATE(4021), 1, + STATE(4126), 1, sym_comment, - STATE(4634), 1, - aux_sym__repeat_newline, - STATE(4878), 1, - sym_param_type, - [118478] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1691), 1, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - STATE(4022), 1, - sym_comment, - ACTIONS(2560), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118494] = 7, - ACTIONS(3), 1, + ACTIONS(1770), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122268] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3895), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - sym__newline, - STATE(1956), 1, - aux_sym__types_body_repeat1, - STATE(4023), 1, + STATE(4127), 1, sym_comment, - STATE(4617), 1, - aux_sym__table_body_repeat1, - STATE(4641), 1, - sym_val_list, - [118516] = 7, + ACTIONS(1770), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1772), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [122284] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7592), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7596), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7688), 1, + ACTIONS(7786), 1, anon_sym_SQUOTE2, - STATE(4024), 1, + STATE(4128), 1, sym_comment, - STATE(4080), 1, + STATE(4203), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4563), 1, + STATE(4590), 1, sym_expr_interpolated, - [118538] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2594), 1, - anon_sym_LPAREN2, - ACTIONS(2596), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7348), 1, - anon_sym_DOT_DOT, - ACTIONS(7516), 1, - anon_sym_RBRACK, - ACTIONS(7519), 1, - sym__entry_separator, - STATE(4025), 1, - sym_comment, - [118560] = 6, + [122306] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7690), 1, + ACTIONS(7788), 1, anon_sym_DQUOTE, - STATE(4026), 1, + STATE(4129), 1, sym_comment, - STATE(4251), 1, + STATE(4403), 1, aux_sym_string_content_repeat1, - STATE(4998), 1, + STATE(5020), 1, sym_string_content, - ACTIONS(7578), 2, + ACTIONS(7691), 2, sym__escaped_str_content, sym_escape_sequence, - [118580] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(5482), 1, - anon_sym_COLON, - ACTIONS(5814), 1, - anon_sym_EQ, - STATE(4027), 1, - sym_comment, - STATE(4634), 1, - aux_sym__repeat_newline, - STATE(5013), 1, - sym_param_type, - [118602] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4028), 1, - sym_comment, - ACTIONS(1746), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1748), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [118618] = 7, + [122326] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7592), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - ACTIONS(7596), 1, + ACTIONS(7685), 1, sym_unescaped_interpolated_content, - ACTIONS(7692), 1, + ACTIONS(7790), 1, anon_sym_SQUOTE2, - STATE(4029), 1, + STATE(4130), 1, sym_comment, - STATE(4058), 1, + STATE(4203), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4563), 1, + STATE(4590), 1, sym_expr_interpolated, - [118640] = 4, + [122348] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4030), 1, + ACTIONS(7792), 1, + anon_sym_DQUOTE, + STATE(4131), 1, sym_comment, - ACTIONS(1812), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1814), 3, + STATE(4403), 1, + aux_sym_string_content_repeat1, + STATE(5027), 1, + sym_string_content, + ACTIONS(7691), 2, + sym__escaped_str_content, + sym_escape_sequence, + [122368] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7536), 1, + anon_sym_DOT_DOT2, + ACTIONS(7542), 1, anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [118656] = 7, + ACTIONS(7550), 1, + sym__entry_separator, + STATE(4132), 1, + sym_comment, + ACTIONS(7538), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122388] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2950), 1, + ACTIONS(2829), 1, aux_sym_cmd_identifier_token2, - ACTIONS(5195), 1, + ACTIONS(5322), 1, anon_sym_DOLLAR, - ACTIONS(7123), 1, + ACTIONS(7328), 1, sym_identifier, - STATE(2828), 1, + STATE(2825), 1, sym_val_variable, - STATE(4031), 1, + STATE(4133), 1, sym_comment, - STATE(5111), 1, + STATE(5179), 1, sym__variable_name, - [118678] = 4, + [122410] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4032), 1, + ACTIONS(7794), 1, + anon_sym_DQUOTE, + STATE(4134), 1, sym_comment, - ACTIONS(1900), 2, + STATE(4403), 1, + aux_sym_string_content_repeat1, + STATE(5034), 1, + sym_string_content, + ACTIONS(7691), 2, + sym__escaped_str_content, + sym_escape_sequence, + [122430] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4135), 1, + sym_comment, + ACTIONS(1870), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1902), 3, + ACTIONS(1872), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, sym__unquoted_pattern_in_list, - [118694] = 6, + [122446] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, sym__unquoted_pattern_in_list, - ACTIONS(2011), 1, + ACTIONS(2597), 1, sym__entry_separator, - ACTIONS(2015), 1, - anon_sym_LPAREN2, - STATE(4033), 1, + STATE(4136), 1, sym_comment, - ACTIONS(2013), 2, + ACTIONS(2599), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [118714] = 6, + [122466] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1691), 1, - sym__unquoted_pattern, - ACTIONS(2560), 1, - sym__space, - ACTIONS(2564), 1, - anon_sym_LPAREN2, - STATE(4034), 1, - sym_comment, - ACTIONS(2562), 2, - sym__newline, - anon_sym_SEMI, - [118734] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7694), 1, - anon_sym_RBRACK, - ACTIONS(7697), 1, - anon_sym_DOT_DOT, - STATE(4035), 1, - sym_comment, - STATE(4068), 1, - aux_sym_parameter_repeat2, - ACTIONS(1398), 2, - sym__newline, - anon_sym_COMMA, - [118754] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7600), 1, - sym_identifier, - ACTIONS(7602), 1, - anon_sym_DOLLAR, - STATE(2828), 1, - sym_val_variable, - STATE(4036), 1, - sym_comment, - STATE(4066), 1, - sym__variable_name, - STATE(4653), 1, - sym__assignment_pattern_parenthesized, - [118776] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1748), 1, - sym__unquoted_pattern, - STATE(4037), 1, + ACTIONS(7796), 1, + anon_sym_DQUOTE, + STATE(4137), 1, sym_comment, - ACTIONS(1746), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118792] = 6, + STATE(4403), 1, + aux_sym_string_content_repeat1, + STATE(5041), 1, + sym_string_content, + ACTIONS(7691), 2, + sym__escaped_str_content, + sym_escape_sequence, + [122486] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2025), 1, + ACTIONS(1973), 1, + sym__entry_separator, + ACTIONS(1977), 1, anon_sym_LPAREN2, - ACTIONS(2031), 1, + ACTIONS(1983), 1, sym__unquoted_pattern_in_list, - ACTIONS(2566), 1, - sym__entry_separator, - STATE(4038), 1, + STATE(4138), 1, sym_comment, - ACTIONS(2568), 2, + ACTIONS(1975), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [118812] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2950), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5205), 1, - anon_sym_DOLLAR, - ACTIONS(7305), 1, - sym_identifier, - STATE(3039), 1, - sym_val_variable, - STATE(3301), 1, - sym__variable_name, - STATE(4039), 1, - sym_comment, - [118834] = 6, + [122506] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_DOT_DOT2, - ACTIONS(7699), 1, - anon_sym_RBRACE, - ACTIONS(7701), 1, - sym__entry_separator, - STATE(4040), 1, + ACTIONS(7798), 1, + anon_sym_DQUOTE, + STATE(4139), 1, sym_comment, - ACTIONS(7502), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118854] = 7, + STATE(4403), 1, + aux_sym_string_content_repeat1, + STATE(5048), 1, + sym_string_content, + ACTIONS(7691), 2, + sym__escaped_str_content, + sym_escape_sequence, + [122526] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5195), 1, - anon_sym_DOLLAR, - ACTIONS(7123), 1, - sym_identifier, - STATE(2828), 1, - sym_val_variable, - STATE(3248), 1, - sym__variable_name, - STATE(4041), 1, - sym_comment, - [118876] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1352), 1, - aux_sym__block_body_repeat1, - STATE(4042), 1, + ACTIONS(7800), 1, + anon_sym_DQUOTE, + STATE(4140), 1, sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3056), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118894] = 6, + STATE(4403), 1, + aux_sym_string_content_repeat1, + STATE(5054), 1, + sym_string_content, + ACTIONS(7691), 2, + sym__escaped_str_content, + sym_escape_sequence, + [122546] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_DOT_DOT2, - ACTIONS(7703), 1, - anon_sym_RBRACE, - ACTIONS(7705), 1, - sym__entry_separator, - STATE(4043), 1, + ACTIONS(7802), 1, + anon_sym_DQUOTE, + STATE(4141), 1, sym_comment, - ACTIONS(7502), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118914] = 6, + STATE(4403), 1, + aux_sym_string_content_repeat1, + STATE(5060), 1, + sym_string_content, + ACTIONS(7691), 2, + sym__escaped_str_content, + sym_escape_sequence, + [122566] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2021), 1, - sym__entry_separator, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern_in_list, - STATE(4044), 1, + ACTIONS(7804), 1, + anon_sym_QMARK2, + STATE(4142), 1, sym_comment, - ACTIONS(2023), 2, + ACTIONS(1448), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [118934] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5654), 1, - sym__space, - ACTIONS(7444), 1, - anon_sym_EQ2, - STATE(2952), 1, - sym__flag_equals_value, - STATE(4045), 1, - sym_comment, - ACTIONS(5652), 2, - sym__newline, - anon_sym_SEMI, - [118954] = 4, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [122582] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, + ACTIONS(1854), 1, sym__unquoted_pattern, - STATE(4046), 1, + STATE(4143), 1, sym_comment, - ACTIONS(1812), 4, + ACTIONS(1852), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [118970] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7496), 1, - anon_sym_EQ2, - STATE(4047), 1, - sym_comment, - STATE(4633), 1, - sym__flag_equals_value, - ACTIONS(4397), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [118988] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2570), 1, - sym__space, - ACTIONS(2574), 1, - anon_sym_LPAREN2, - ACTIONS(2576), 1, - sym__unquoted_pattern, - STATE(4048), 1, - sym_comment, - ACTIONS(2572), 2, - sym__newline, - anon_sym_SEMI, - [119008] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7707), 1, - anon_sym_DASH_DASH, - STATE(4479), 1, - sym_long_flag, - ACTIONS(4401), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - STATE(4049), 2, - sym_comment, - aux_sym_decl_def_repeat1, - [119026] = 6, + [122598] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1691), 1, + ACTIONS(1679), 1, sym__unquoted_pattern_in_list, - ACTIONS(2560), 1, + ACTIONS(2541), 1, sym__entry_separator, - ACTIONS(2564), 1, + ACTIONS(2642), 1, anon_sym_LPAREN2, - STATE(4050), 1, + STATE(4144), 1, sym_comment, - ACTIONS(2562), 2, + ACTIONS(2543), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [119046] = 4, + [122618] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1902), 1, + ACTIONS(1872), 1, sym__unquoted_pattern, - STATE(4051), 1, + STATE(4145), 1, sym_comment, - ACTIONS(1900), 4, + ACTIONS(1870), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [119062] = 6, + [122634] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2570), 1, + ACTIONS(2589), 1, sym__entry_separator, - ACTIONS(2574), 1, + ACTIONS(2644), 1, anon_sym_LPAREN2, - ACTIONS(2576), 1, + ACTIONS(2646), 1, sym__unquoted_pattern_in_list, - STATE(4052), 1, + STATE(4146), 1, sym_comment, - ACTIONS(2572), 2, + ACTIONS(2591), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [119082] = 4, + [122654] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4053), 1, - sym_comment, - ACTIONS(2506), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2508), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(1635), 1, sym__unquoted_pattern, - [119098] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2521), 1, + ACTIONS(1956), 1, sym__space, - ACTIONS(2525), 1, + ACTIONS(1960), 1, anon_sym_LPAREN2, - ACTIONS(2527), 1, - sym__unquoted_pattern, - STATE(4054), 1, + STATE(4147), 1, sym_comment, - ACTIONS(2523), 2, + ACTIONS(1958), 2, sym__newline, anon_sym_SEMI, - [119118] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1452), 1, - anon_sym_COLON2, - ACTIONS(4950), 1, - anon_sym_DOT2, - STATE(454), 1, - sym_path, - STATE(478), 1, - sym_cell_path, - STATE(2277), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4055), 1, - sym_comment, - [119140] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7315), 1, - aux_sym__immediate_decimal_token5, - STATE(4056), 1, - sym_comment, - ACTIONS(1754), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1756), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [119158] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2021), 1, - anon_sym_LBRACE, - ACTIONS(2031), 1, - sym__unquoted_pattern, - ACTIONS(7710), 1, - anon_sym_DOT_DOT2, - STATE(4057), 1, - sym_comment, - ACTIONS(7712), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119178] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7592), 1, - anon_sym_LPAREN, - ACTIONS(7596), 1, - sym_unescaped_interpolated_content, - ACTIONS(7714), 1, - anon_sym_SQUOTE2, - STATE(4058), 1, - sym_comment, - STATE(4080), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4563), 1, - sym_expr_interpolated, - [119200] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7716), 1, - anon_sym_DQUOTE, - STATE(4059), 1, - sym_comment, - STATE(4251), 1, - aux_sym_string_content_repeat1, - STATE(5238), 1, - sym_string_content, - ACTIONS(7578), 2, - sym__escaped_str_content, - sym_escape_sequence, - [119220] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5195), 1, - anon_sym_DOLLAR, - ACTIONS(7123), 1, - sym_identifier, - STATE(2828), 1, - sym_val_variable, - STATE(4060), 1, - sym_comment, - STATE(5215), 1, - sym__variable_name, - [119242] = 5, + [122674] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7718), 1, - anon_sym_LT, - STATE(4061), 1, - sym_comment, - ACTIONS(5929), 2, - anon_sym_AT2, + ACTIONS(2088), 1, sym__entry_separator, - ACTIONS(5933), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [119260] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(4062), 1, - sym_comment, - STATE(4548), 1, - sym_block, - ACTIONS(7498), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [119278] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7720), 1, - aux_sym__immediate_decimal_token5, - STATE(4063), 1, - sym_comment, - ACTIONS(1812), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1814), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [119296] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7600), 1, - sym_identifier, - ACTIONS(7602), 1, - anon_sym_DOLLAR, - STATE(2828), 1, - sym_val_variable, - STATE(4006), 1, - sym__variable_name, - STATE(4064), 1, - sym_comment, - STATE(4338), 1, - sym__assignment_pattern, - [119318] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(4065), 1, + ACTIONS(7806), 1, + anon_sym_LBRACK2, + STATE(4148), 1, sym_comment, - STATE(4656), 1, - sym_block, - ACTIONS(7528), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [119336] = 7, + ACTIONS(2090), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [122692] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(5475), 1, + ACTIONS(5919), 1, anon_sym_EQ, - ACTIONS(5482), 1, + ACTIONS(7687), 1, anon_sym_COLON, - STATE(4066), 1, + STATE(4149), 1, sym_comment, - STATE(4634), 1, + STATE(4559), 1, aux_sym__repeat_newline, - STATE(5059), 1, + STATE(5113), 1, sym_param_type, - [119358] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_DOT_DOT2, - ACTIONS(7510), 1, - anon_sym_RBRACK, - ACTIONS(7512), 1, - sym__entry_separator, - STATE(4067), 1, - sym_comment, - ACTIONS(7502), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119378] = 4, + [122714] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6536), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7722), 2, - sym__newline, - anon_sym_COMMA, - STATE(4068), 2, - sym_comment, - aux_sym_parameter_repeat2, - [119394] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1030), 1, - sym__space, - ACTIONS(2556), 1, - anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(4069), 1, + STATE(4150), 1, sym_comment, - ACTIONS(1008), 2, - sym__newline, - anon_sym_SEMI, - [119414] = 6, + 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, - ACTIONS(1754), 1, - sym__space, - ACTIONS(6699), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7725), 1, - anon_sym_DOT, - STATE(4070), 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, - ACTIONS(1756), 2, - sym__newline, - anon_sym_SEMI, - [119434] = 5, + [122754] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, + ACTIONS(2658), 1, sym__unquoted_pattern, - ACTIONS(7326), 1, - aux_sym__immediate_decimal_token5, - STATE(4071), 1, + STATE(4152), 1, sym_comment, - ACTIONS(1754), 3, + ACTIONS(1022), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [119452] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(994), 1, - sym__space, - ACTIONS(2556), 1, - anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(4072), 1, - sym_comment, - ACTIONS(996), 2, - sym__newline, - anon_sym_SEMI, - [119472] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7727), 1, - anon_sym_LT, - STATE(4073), 1, - sym_comment, - ACTIONS(5929), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(5933), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [119490] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7598), 1, - anon_sym_QMARK2, - STATE(4074), 1, - sym_comment, - ACTIONS(1456), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [119506] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7600), 1, - sym_identifier, - ACTIONS(7602), 1, - anon_sym_DOLLAR, - STATE(2828), 1, - sym_val_variable, - STATE(3954), 1, - sym__variable_name, - STATE(4075), 1, - sym_comment, - STATE(4338), 1, - sym__assignment_pattern, - [119528] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4076), 1, - sym_comment, - ACTIONS(6176), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [119542] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4077), 1, - sym_comment, - ACTIONS(1902), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1900), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119558] = 5, + [122770] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, + ACTIONS(2658), 1, sym__unquoted_pattern, - ACTIONS(7729), 1, - aux_sym__immediate_decimal_token5, - STATE(4078), 1, + STATE(4153), 1, sym_comment, - ACTIONS(1812), 3, + ACTIONS(1030), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [119576] = 6, + [122786] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2021), 1, - sym__entry_separator, - ACTIONS(2023), 1, - anon_sym_RBRACE, - ACTIONS(7731), 1, + ACTIONS(7536), 1, anon_sym_DOT_DOT2, - STATE(4079), 1, + ACTIONS(7808), 1, + anon_sym_RBRACE, + ACTIONS(7810), 1, + sym__entry_separator, + STATE(4154), 1, sym_comment, - ACTIONS(7733), 2, + ACTIONS(7538), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [119596] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7735), 1, - anon_sym_LPAREN, - ACTIONS(7738), 1, - anon_sym_SQUOTE2, - ACTIONS(7740), 1, - sym_unescaped_interpolated_content, - STATE(4563), 1, - sym_expr_interpolated, - STATE(4080), 2, - sym_comment, - aux_sym__inter_single_quotes_repeat1, - [119616] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2521), 1, - sym__entry_separator, - ACTIONS(2525), 1, - anon_sym_LPAREN2, - ACTIONS(2527), 1, - sym__unquoted_pattern_in_list, - STATE(4081), 1, - sym_comment, - ACTIONS(2523), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [119636] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4082), 1, - sym_comment, - ACTIONS(6180), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [119650] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2576), 1, - sym__unquoted_pattern, - STATE(4083), 1, - sym_comment, - ACTIONS(2570), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119666] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7600), 1, - sym_identifier, - ACTIONS(7602), 1, - anon_sym_DOLLAR, - STATE(2828), 1, - sym_val_variable, - STATE(4027), 1, - sym__variable_name, - STATE(4084), 1, + [122806] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7667), 1, + aux_sym__immediate_decimal_token5, + STATE(4155), 1, sym_comment, - STATE(4653), 1, - sym__assignment_pattern_parenthesized, - [119688] = 4, + 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(4085), 1, + STATE(4156), 1, sym_comment, - ACTIONS(1748), 2, + ACTIONS(1854), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1746), 3, + ACTIONS(1852), 3, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [119704] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7372), 1, - aux_sym__immediate_decimal_token5, - STATE(4086), 1, - sym_comment, - ACTIONS(1754), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1756), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [119722] = 5, + [122840] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(4087), 1, + ACTIONS(7812), 1, + aux_sym__immediate_decimal_token5, + STATE(4157), 1, sym_comment, - STATE(4626), 1, - sym_block, - ACTIONS(7338), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [119740] = 5, + 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, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(4088), 1, + STATE(4121), 1, + aux_sym_parameter_repeat2, + STATE(4158), 1, sym_comment, - STATE(4473), 1, - sym_block, - ACTIONS(7338), 3, - ts_builtin_sym_end, + ACTIONS(1398), 2, sym__newline, - anon_sym_SEMI, - [119758] = 4, + anon_sym_COMMA, + ACTIONS(7704), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [122876] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1776), 1, + ACTIONS(1734), 1, sym__unquoted_pattern, - STATE(4089), 1, + STATE(4159), 1, sym_comment, - ACTIONS(884), 4, + ACTIONS(886), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [119774] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4090), 1, - sym_comment, - ACTIONS(5929), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [119788] = 5, - ACTIONS(3), 1, + [122892] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4068), 1, - aux_sym_parameter_repeat2, - STATE(4091), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(2597), 1, + sym__space, + STATE(4160), 1, sym_comment, - ACTIONS(1398), 2, + ACTIONS(2599), 2, sym__newline, - anon_sym_COMMA, - ACTIONS(7697), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [119806] = 7, + anon_sym_SEMI, + [122912] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7592), 1, - anon_sym_LPAREN, - ACTIONS(7596), 1, - sym_unescaped_interpolated_content, - ACTIONS(7743), 1, - anon_sym_SQUOTE2, - STATE(3963), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4092), 1, + STATE(4161), 1, sym_comment, - STATE(4563), 1, - sym_expr_interpolated, - [119828] = 6, + 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(1030), 1, + ACTIONS(2648), 1, sym__entry_separator, - ACTIONS(2556), 1, + ACTIONS(2652), 1, anon_sym_LPAREN2, - ACTIONS(2558), 1, + ACTIONS(2654), 1, sym__unquoted_pattern_in_list, - STATE(4093), 1, + STATE(4162), 1, sym_comment, - ACTIONS(1008), 2, + ACTIONS(2650), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [119848] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7600), 1, - sym_identifier, - ACTIONS(7602), 1, - anon_sym_DOLLAR, - STATE(2828), 1, - sym_val_variable, - STATE(4021), 1, - sym__variable_name, - STATE(4094), 1, - sym_comment, - STATE(4566), 1, - sym__assignment_pattern, - [119870] = 4, + [122948] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(4095), 1, + ACTIONS(7445), 1, + aux_sym__immediate_decimal_token5, + STATE(4163), 1, sym_comment, - ACTIONS(2506), 2, + ACTIONS(1744), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2508), 3, + ACTIONS(1746), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, sym__unquoted_pattern_in_list, - [119886] = 6, + [122966] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1008), 1, - anon_sym_RBRACK, - ACTIONS(1030), 1, - sym__entry_separator, - ACTIONS(2556), 1, - anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern_in_list, - STATE(4096), 1, + 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, - [119905] = 4, + STATE(4336), 1, + aux_sym__repeat_newline, + [122988] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(884), 1, - sym__entry_separator, - STATE(4097), 1, + ACTIONS(1973), 1, + sym__space, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(4165), 1, sym_comment, - ACTIONS(858), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119920] = 4, + 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, - STATE(4098), 1, + ACTIONS(7804), 1, + anon_sym_BANG, + STATE(4167), 1, sym_comment, - ACTIONS(5929), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(5933), 2, + ACTIONS(1448), 4, anon_sym_RBRACK, - anon_sym_GT2, - [119935] = 4, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [123046] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2160), 1, + ACTIONS(1022), 1, sym__entry_separator, - STATE(4099), 1, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern_in_list, + STATE(4168), 1, sym_comment, - ACTIONS(2162), 3, + ACTIONS(1020), 2, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT, - [119950] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2152), 1, - anon_sym_LBRACE, - ACTIONS(7745), 1, - anon_sym_DOT_DOT2, - STATE(4100), 1, - sym_comment, - ACTIONS(7747), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119967] = 3, + [123066] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4101), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(4169), 1, sym_comment, - ACTIONS(7749), 4, + ACTIONS(7268), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [119980] = 3, + [123082] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4102), 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, - ACTIONS(7749), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119993] = 3, - ACTIONS(3), 1, + [123104] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4103), 1, + ACTIONS(1744), 1, + sym__space, + ACTIONS(6975), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7814), 1, + anon_sym_DOT, + STATE(4171), 1, sym_comment, - ACTIONS(5311), 4, - ts_builtin_sym_end, + ACTIONS(1746), 2, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [120006] = 5, - ACTIONS(103), 1, + [123124] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4732), 1, - sym__entry_separator, - STATE(2232), 1, - aux_sym__types_body_repeat2, - STATE(4104), 1, + ACTIONS(1746), 1, + sym__unquoted_pattern, + ACTIONS(7671), 1, + aux_sym__immediate_decimal_token5, + STATE(4172), 1, sym_comment, - ACTIONS(7751), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [120023] = 5, + ACTIONS(1744), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123142] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4732), 1, + ACTIONS(1030), 1, sym__entry_separator, - STATE(2241), 1, - aux_sym__types_body_repeat2, - STATE(4105), 1, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern_in_list, + STATE(4173), 1, sym_comment, - ACTIONS(7751), 2, + ACTIONS(994), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [120040] = 6, - ACTIONS(103), 1, + [123162] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2566), 1, - sym__entry_separator, - ACTIONS(2568), 1, - anon_sym_RBRACE, - STATE(4106), 1, + ACTIONS(7816), 1, + anon_sym_QMARK2, + ACTIONS(7818), 1, + anon_sym_BANG, + STATE(4174), 1, sym_comment, - [120059] = 6, + 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(2021), 1, - sym__entry_separator, - ACTIONS(2023), 1, - anon_sym_RBRACE, - ACTIONS(2025), 1, + STATE(4175), 1, + sym_comment, + ACTIONS(1770), 2, + sym__space, anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern_in_record, - STATE(4107), 1, + ACTIONS(1772), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [123198] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4176), 1, sym_comment, - [120078] = 3, + ACTIONS(1872), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1870), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123214] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4108), 1, + ACTIONS(1854), 1, + sym__unquoted_pattern, + ACTIONS(7820), 1, + aux_sym__immediate_decimal_token5, + STATE(4177), 1, sym_comment, - ACTIONS(7753), 4, - anon_sym_if, + ACTIONS(1852), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [120091] = 6, - ACTIONS(103), 1, + [123232] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__entry_separator, - ACTIONS(1639), 1, - anon_sym_COLON2, - ACTIONS(7755), 1, - anon_sym_RBRACE, - STATE(1466), 1, - aux_sym__types_body_repeat2, - STATE(4109), 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, - [120110] = 6, + STATE(4370), 1, + sym__assignment_pattern, + [123254] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1691), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2560), 1, - sym__entry_separator, - ACTIONS(2562), 1, - anon_sym_RBRACE, - ACTIONS(2564), 1, - anon_sym_LPAREN2, - STATE(4110), 1, + ACTIONS(7822), 1, + anon_sym_DQUOTE, + STATE(4179), 1, sym_comment, - [120129] = 4, - ACTIONS(103), 1, + 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, - ACTIONS(2517), 1, - sym__entry_separator, - STATE(4111), 1, + STATE(1365), 1, + aux_sym__block_body_repeat1, + STATE(4180), 1, sym_comment, - ACTIONS(2519), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [120144] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2570), 1, - sym__entry_separator, - ACTIONS(2572), 1, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3098), 2, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2574), 1, - anon_sym_LPAREN2, - ACTIONS(2576), 1, - sym__unquoted_pattern_in_record, - STATE(4112), 1, - sym_comment, - [120163] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6575), 1, - anon_sym_LPAREN2, - ACTIONS(7757), 1, - anon_sym_RBRACK, - ACTIONS(7759), 1, - sym__entry_separator, - STATE(4113), 1, - sym_comment, - STATE(4858), 1, - sym__expr_parenthesized_immediate, - [120182] = 4, + [123292] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2508), 1, + ACTIONS(1635), 1, sym__unquoted_pattern, - STATE(4114), 1, + STATE(4181), 1, sym_comment, - ACTIONS(2506), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [120197] = 6, + ACTIONS(1956), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123308] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2521), 1, - sym__entry_separator, - ACTIONS(2523), 1, - anon_sym_RBRACE, - ACTIONS(2525), 1, - anon_sym_LPAREN2, - ACTIONS(2527), 1, - sym__unquoted_pattern_in_record, - STATE(4115), 1, + STATE(4182), 1, sym_comment, - [120216] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6953), 1, + ACTIONS(1852), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1854), 3, + sym__newline, + anon_sym_SEMI, sym__unquoted_pattern, - STATE(4116), 1, - sym_comment, - ACTIONS(884), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [120231] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2108), 1, - anon_sym_LBRACE, - ACTIONS(7761), 1, - anon_sym_DOT_DOT2, - STATE(4117), 1, - sym_comment, - ACTIONS(7763), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120248] = 5, + [123324] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2116), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - ACTIONS(7765), 1, - anon_sym_DOT_DOT2, - STATE(4118), 1, + STATE(4183), 1, sym_comment, - ACTIONS(7767), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120265] = 5, + STATE(4774), 1, + sym_block, + ACTIONS(7441), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [123342] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2124), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - ACTIONS(7769), 1, - anon_sym_DOT_DOT2, - STATE(4119), 1, + STATE(4184), 1, sym_comment, - ACTIONS(7771), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120282] = 4, + 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(2152), 1, - sym__entry_separator, - STATE(4120), 1, + STATE(4185), 1, sym_comment, - ACTIONS(2154), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [120297] = 5, - ACTIONS(103), 1, + 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(7215), 1, - sym__entry_separator, - ACTIONS(7500), 1, - anon_sym_DOT_DOT2, - STATE(4121), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(5671), 1, + anon_sym_EQ, + ACTIONS(7687), 1, + anon_sym_COLON, + STATE(4186), 1, sym_comment, - ACTIONS(7502), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120314] = 5, + STATE(4559), 1, + aux_sym__repeat_newline, + STATE(5223), 1, + sym_param_type, + [123398] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7265), 1, - sym__entry_separator, - ACTIONS(7500), 1, + ACTIONS(7536), 1, anon_sym_DOT_DOT2, - STATE(4122), 1, - sym_comment, - ACTIONS(7502), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120331] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1008), 1, + ACTIONS(7824), 1, anon_sym_RBRACE, - ACTIONS(1030), 1, + ACTIONS(7826), 1, sym__entry_separator, - ACTIONS(2556), 1, - anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern_in_record, - STATE(4123), 1, + STATE(4187), 1, sym_comment, - [120350] = 6, + ACTIONS(7538), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123418] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(1549), 1, sym__entry_separator, - ACTIONS(996), 1, - anon_sym_RBRACE, - ACTIONS(2556), 1, - anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern_in_record, - STATE(4124), 1, - sym_comment, - [120369] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7139), 1, - anon_sym_LBRACK, - ACTIONS(7141), 1, - anon_sym_LPAREN, - STATE(3788), 1, - sym_parameter_parens, - STATE(3789), 1, - sym_parameter_bracks, - STATE(4125), 1, + STATE(4188), 1, sym_comment, - [120388] = 3, + ACTIONS(1547), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [123434] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4126), 1, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4189), 1, sym_comment, - ACTIONS(4070), 4, + STATE(4519), 1, + sym_block, + ACTIONS(7534), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [120401] = 6, + [123452] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(3946), 1, + anon_sym_LBRACK, + ACTIONS(3990), 1, sym__newline, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(3065), 1, - sym_block, - STATE(4127), 1, + STATE(1951), 1, + aux_sym__types_body_repeat1, + STATE(4190), 1, sym_comment, - STATE(4184), 1, - aux_sym__repeat_newline, - [120420] = 6, + STATE(4603), 1, + sym_val_list, + STATE(4612), 1, + aux_sym__table_body_repeat1, + [123474] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(4191), 1, + sym_comment, + ACTIONS(2589), 4, + anon_sym_if, sym__newline, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3015), 1, - sym_block, - STATE(4128), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123490] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1564), 1, + sym__entry_separator, + STATE(4192), 1, sym_comment, - [120439] = 3, + ACTIONS(1562), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [123506] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4129), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(4193), 1, sym_comment, - ACTIONS(4107), 4, - ts_builtin_sym_end, + ACTIONS(2597), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [120452] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123522] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4130), 1, + ACTIONS(7675), 1, + sym_identifier, + ACTIONS(7677), 1, + anon_sym_DOLLAR, + STATE(2825), 1, + sym_val_variable, + STATE(4149), 1, + sym__variable_name, + STATE(4194), 1, sym_comment, - ACTIONS(7773), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120465] = 3, + STATE(4561), 1, + sym__assignment_pattern_parenthesized, + [123544] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4131), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(4195), 1, sym_comment, - ACTIONS(5331), 4, - ts_builtin_sym_end, + ACTIONS(1973), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [120478] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123560] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4132), 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, - ACTIONS(7775), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [120491] = 3, - ACTIONS(3), 1, + ACTIONS(7830), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123580] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4133), 1, + ACTIONS(1498), 1, + sym__entry_separator, + STATE(4197), 1, + sym_comment, + ACTIONS(1496), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [123596] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4530), 1, + sym__space, + ACTIONS(7512), 1, + anon_sym_EQ2, + STATE(3070), 1, + sym__flag_equals_value, + STATE(4198), 1, sym_comment, - ACTIONS(7773), 4, + ACTIONS(4528), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120504] = 5, + [123616] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7362), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(3174), 1, - sym__blosure, - STATE(4134), 1, + STATE(4199), 1, sym_comment, - STATE(3172), 2, + STATE(4728), 1, sym_block, - sym_val_closure, - [120521] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3060), 1, - anon_sym_RPAREN, - ACTIONS(7777), 2, + ACTIONS(7580), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - STATE(4135), 2, - sym_comment, - aux_sym__block_body_repeat1, - [120536] = 5, + [123634] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(884), 1, - sym__space, - ACTIONS(5017), 1, - sym__unquoted_pattern, - STATE(4136), 1, - sym_comment, - ACTIONS(858), 2, - sym__newline, - anon_sym_SEMI, - [120553] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4137), 1, + ACTIONS(7832), 1, + aux_sym__immediate_decimal_token5, + STATE(4200), 1, sym_comment, - ACTIONS(7780), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [120566] = 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(4138), 1, + STATE(1364), 1, + aux_sym__block_body_repeat1, + STATE(4201), 1, sym_comment, - ACTIONS(7782), 4, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, + ACTIONS(461), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [120579] = 5, + [123670] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2031), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7784), 1, + ACTIONS(1973), 1, + anon_sym_LBRACE, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(7834), 1, anon_sym_DOT_DOT2, - STATE(4139), 1, + STATE(4202), 1, sym_comment, - ACTIONS(7786), 2, + ACTIONS(7836), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120596] = 3, + [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, - STATE(4140), 1, + 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(7788), 4, + ACTIONS(2541), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120609] = 5, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123748] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5379), 1, - anon_sym_COLON2, - STATE(4141), 1, + STATE(4206), 1, sym_comment, - STATE(4147), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5373), 2, + 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, - sym__space, - [120626] = 3, + 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(4142), 1, + STATE(4208), 1, sym_comment, - ACTIONS(7788), 4, + ACTIONS(7848), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120639] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - anon_sym_RBRACE, - ACTIONS(1637), 1, - sym__entry_separator, - ACTIONS(1639), 1, - anon_sym_COLON2, - STATE(1460), 1, - aux_sym__types_body_repeat2, - STATE(4143), 1, - sym_comment, - [120658] = 4, + [123796] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2596), 1, - sym__unquoted_pattern, - STATE(4144), 1, - sym_comment, - ACTIONS(1716), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [120673] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7790), 1, - anon_sym_LPAREN, - STATE(4145), 1, + STATE(4209), 1, sym_comment, - ACTIONS(7792), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [120688] = 5, + ACTIONS(7850), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123809] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2596), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7265), 1, + ACTIONS(2102), 1, sym__entry_separator, - STATE(4146), 1, + STATE(4210), 1, sym_comment, - ACTIONS(7348), 2, + ACTIONS(2104), 3, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - [120705] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7794), 1, - anon_sym_COLON2, - STATE(4147), 1, - sym_comment, - STATE(4160), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5373), 2, - sym__newline, - sym__space, - [120722] = 4, + [123824] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(2110), 1, sym__entry_separator, - STATE(4148), 1, + STATE(4211), 1, sym_comment, - ACTIONS(1858), 3, + ACTIONS(2112), 3, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_RBRACE, - [120737] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1746), 1, - anon_sym_LBRACE, - ACTIONS(1748), 1, - sym__unquoted_pattern, - ACTIONS(7796), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7798), 1, - aux_sym__immediate_decimal_token5, - STATE(4149), 1, - sym_comment, - [120756] = 6, + anon_sym_DOT_DOT, + [123839] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2025), 1, + ACTIONS(5197), 1, anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2566), 1, - sym__entry_separator, - ACTIONS(2568), 1, - anon_sym_RBRACK, - STATE(4150), 1, - sym_comment, - [120775] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2021), 1, + ACTIONS(6094), 1, sym__entry_separator, - ACTIONS(2023), 1, - anon_sym_RBRACK, - ACTIONS(2025), 1, - anon_sym_LPAREN2, - ACTIONS(2031), 1, - sym__unquoted_pattern_in_list, - STATE(4151), 1, - sym_comment, - [120794] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2031), 1, - sym__unquoted_pattern, - ACTIONS(7800), 1, - anon_sym_DOT_DOT2, - STATE(4152), 1, + ACTIONS(6096), 1, + anon_sym_RBRACE, + STATE(4212), 1, sym_comment, - ACTIONS(7802), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120811] = 5, + STATE(5178), 1, + sym__expr_parenthesized_immediate, + [123858] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3056), 1, - ts_builtin_sym_end, - STATE(1367), 1, - aux_sym__block_body_repeat1, - STATE(4153), 1, + STATE(4213), 1, sym_comment, - ACTIONS(55), 2, + ACTIONS(7852), 4, sym__newline, anon_sym_SEMI, - [120828] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123871] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2502), 1, + ACTIONS(2118), 1, sym__entry_separator, - STATE(4154), 1, + STATE(4214), 1, sym_comment, - ACTIONS(2504), 3, + ACTIONS(2120), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [120843] = 4, + [123886] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7804), 1, - sym__space, - ACTIONS(5784), 2, + STATE(4215), 1, + sym_comment, + 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, + ACTIONS(2907), 1, sym__newline, - anon_sym_SEMI, - STATE(4155), 2, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(3076), 1, + sym_block, + STATE(4216), 1, sym_comment, - aux_sym_attribute_repeat1, - [120858] = 4, + STATE(4499), 1, + aux_sym__repeat_newline, + [123920] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2527), 1, + ACTIONS(2614), 1, sym__unquoted_pattern, - STATE(4156), 1, + STATE(4217), 1, sym_comment, - ACTIONS(2521), 3, + ACTIONS(1713), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [120873] = 4, + [123935] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1679), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2541), 1, + sym__entry_separator, + ACTIONS(2543), 1, + anon_sym_RBRACK, + ACTIONS(2642), 1, + anon_sym_LPAREN2, + STATE(4218), 1, + sym_comment, + [123954] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1776), 1, + ACTIONS(2614), 1, sym__unquoted_pattern, - STATE(4157), 1, + STATE(4219), 1, sym_comment, - ACTIONS(884), 3, + ACTIONS(7268), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [120888] = 6, + [123969] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(7753), 1, + anon_sym_RBRACE, + ACTIONS(7755), 1, + sym__entry_separator, + STATE(4220), 1, + sym_comment, + STATE(4906), 1, + sym__expr_parenthesized_immediate, + [123988] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7356), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7807), 1, - anon_sym_EQ_GT, - STATE(4158), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3079), 1, + sym_block, + STATE(4221), 1, sym_comment, - STATE(4341), 1, - aux_sym_match_pattern_repeat1, - [120907] = 6, + [124007] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7809), 1, - anon_sym_LBRACK, - ACTIONS(7811), 1, - anon_sym_LPAREN, - STATE(3942), 1, - sym_parameter_parens, - STATE(3943), 1, - sym_parameter_bracks, - STATE(4159), 1, + STATE(4222), 1, sym_comment, - [120926] = 4, - ACTIONS(103), 1, + ACTIONS(7854), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [124020] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3436), 1, - anon_sym_COLON2, - ACTIONS(7813), 2, - sym__newline, - sym__space, - STATE(4160), 2, + STATE(4223), 1, sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - [120941] = 6, + ACTIONS(7856), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [124033] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7860), 1, + anon_sym_RPAREN, + STATE(4224), 1, + sym_comment, + STATE(4429), 1, + aux_sym__block_body_repeat1, + ACTIONS(7858), 2, + sym__newline, + anon_sym_SEMI, + [124050] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7809), 1, + ACTIONS(7214), 1, anon_sym_LBRACK, - ACTIONS(7811), 1, + ACTIONS(7216), 1, anon_sym_LPAREN, - STATE(4087), 1, + STATE(3992), 1, sym_parameter_parens, - STATE(4088), 1, + STATE(3993), 1, sym_parameter_bracks, - STATE(4161), 1, + STATE(4225), 1, sym_comment, - [120960] = 4, - ACTIONS(3), 1, + [124069] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(4162), 1, + ACTIONS(2204), 1, + sym__entry_separator, + STATE(4226), 1, sym_comment, - ACTIONS(1030), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [120975] = 4, + ACTIONS(2206), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [124084] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(4163), 1, + ACTIONS(1713), 1, + anon_sym_LBRACE, + ACTIONS(7862), 1, + anon_sym_DOT_DOT2, + STATE(4227), 1, sym_comment, - ACTIONS(994), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [120990] = 4, + ACTIONS(7864), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [124101] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(2537), 1, sym__entry_separator, - STATE(4164), 1, + STATE(4228), 1, sym_comment, - ACTIONS(1580), 3, + ACTIONS(2539), 3, anon_sym_RBRACK, anon_sym_GT2, - anon_sym_DOT_DOT, - [121005] = 4, + anon_sym_RBRACE, + [124116] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2296), 1, - sym__entry_separator, - STATE(4165), 1, + ACTIONS(7868), 1, + sym__space, + STATE(4229), 1, sym_comment, - ACTIONS(2298), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121020] = 6, + STATE(4427), 1, + aux_sym_attribute_repeat1, + ACTIONS(7866), 2, + sym__newline, + anon_sym_SEMI, + [124133] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6575), 1, - anon_sym_LPAREN2, - ACTIONS(7816), 1, - anon_sym_RBRACK, - ACTIONS(7818), 1, - sym__entry_separator, - STATE(4166), 1, + ACTIONS(886), 1, + sym__space, + ACTIONS(5071), 1, + sym__unquoted_pattern, + STATE(4230), 1, sym_comment, - STATE(4858), 1, - sym__expr_parenthesized_immediate, - [121039] = 6, + ACTIONS(866), 2, + sym__newline, + anon_sym_SEMI, + [124150] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4276), 1, + ACTIONS(4328), 1, sym__entry_separator, - ACTIONS(7820), 1, + ACTIONS(7870), 1, anon_sym_LBRACK, - ACTIONS(7822), 1, + ACTIONS(7872), 1, anon_sym_RBRACK, - STATE(1873), 1, + STATE(1881), 1, aux_sym__types_body_repeat2, - STATE(4167), 1, + STATE(4231), 1, sym_comment, - [121058] = 4, + [124169] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2108), 1, + ACTIONS(2228), 1, sym__entry_separator, - STATE(4168), 1, + STATE(4232), 1, sym_comment, - ACTIONS(2110), 3, + ACTIONS(2230), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [121073] = 4, + [124184] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2116), 1, + ACTIONS(2232), 1, sym__entry_separator, - STATE(4169), 1, + STATE(4233), 1, sym_comment, - ACTIONS(2118), 3, + ACTIONS(2234), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [121088] = 3, + [124199] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4170), 1, + STATE(4234), 1, sym_comment, - ACTIONS(5253), 4, - ts_builtin_sym_end, + ACTIONS(7874), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [121101] = 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124212] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2124), 1, + ACTIONS(2236), 1, sym__entry_separator, - STATE(4171), 1, + STATE(4235), 1, sym_comment, - ACTIONS(2126), 3, + ACTIONS(2238), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [121116] = 3, + [124227] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4172), 1, + STATE(4236), 1, sym_comment, - ACTIONS(5276), 4, - ts_builtin_sym_end, + ACTIONS(7874), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124240] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4237), 1, + sym_comment, + 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, + ACTIONS(7868), 1, + sym__space, + STATE(4229), 1, + aux_sym_attribute_repeat1, + STATE(4238), 1, + sym_comment, + ACTIONS(7880), 2, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [121129] = 4, + [124272] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2654), 1, + sym__unquoted_pattern, + STATE(4239), 1, + sym_comment, + ACTIONS(2648), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [124287] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1734), 1, + sym__unquoted_pattern, + STATE(4240), 1, + sym_comment, + ACTIONS(886), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124302] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7824), 1, - anon_sym_DQUOTE, - ACTIONS(7826), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(4173), 2, + ACTIONS(2240), 1, + sym__entry_separator, + STATE(4241), 1, sym_comment, - aux_sym_string_content_repeat1, - [121144] = 6, + ACTIONS(2242), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [124317] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5821), 1, + sym__newline, + ACTIONS(7882), 1, + anon_sym_EQ, + ACTIONS(7884), 1, + anon_sym_COLON, + STATE(3400), 1, + aux_sym__repeat_newline, + STATE(4242), 1, + sym_comment, + [124336] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2738), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2740), 1, - anon_sym_COLON2, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(4174), 1, + ACTIONS(4806), 1, + sym__entry_separator, + STATE(2271), 1, + aux_sym__types_body_repeat2, + STATE(4243), 1, sym_comment, - STATE(4297), 1, - sym_block, - [121163] = 6, + ACTIONS(7886), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [124353] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4276), 1, + ACTIONS(4806), 1, sym__entry_separator, - ACTIONS(7820), 1, - anon_sym_LBRACK, - ACTIONS(7829), 1, - anon_sym_RBRACK, - STATE(1873), 1, + STATE(2261), 1, aux_sym__types_body_repeat2, - STATE(4175), 1, + STATE(4244), 1, sym_comment, - [121182] = 5, + ACTIONS(7886), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [124370] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7368), 1, - anon_sym_RPAREN, - STATE(4135), 1, - aux_sym__block_body_repeat1, - STATE(4176), 1, + STATE(4245), 1, sym_comment, - ACTIONS(7831), 2, + ACTIONS(7888), 4, sym__newline, anon_sym_SEMI, - [121199] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124383] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2596), 1, + ACTIONS(2658), 1, sym__unquoted_pattern, - STATE(4177), 1, + STATE(4246), 1, sym_comment, - ACTIONS(7265), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121214] = 6, + ACTIONS(1022), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [124398] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1517), 1, - sym__table_head_separator, - ACTIONS(7580), 1, - anon_sym_DOT2, - STATE(4178), 1, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(4247), 1, sym_comment, - STATE(4185), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4732), 1, - sym_path, - [121233] = 6, + ACTIONS(1030), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [124413] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6575), 1, - anon_sym_LPAREN2, - ACTIONS(7833), 1, - anon_sym_RBRACK, - ACTIONS(7835), 1, + ACTIONS(1582), 1, sym__entry_separator, - STATE(4179), 1, - sym_comment, - STATE(4858), 1, - sym__expr_parenthesized_immediate, - [121252] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2738), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2740), 1, - anon_sym_COLON2, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(4180), 1, + STATE(4248), 1, sym_comment, - STATE(4298), 1, - sym_block, - [121271] = 6, + ACTIONS(1580), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + [124428] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5126), 1, + ACTIONS(5197), 1, anon_sym_LPAREN2, - ACTIONS(5876), 1, - sym__entry_separator, - ACTIONS(5878), 1, + ACTIONS(7808), 1, anon_sym_RBRACE, - STATE(4181), 1, - sym_comment, - STATE(4904), 1, - sym__expr_parenthesized_immediate, - [121290] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5126), 1, - anon_sym_LPAREN2, - ACTIONS(5880), 1, + ACTIONS(7810), 1, sym__entry_separator, - ACTIONS(5882), 1, - anon_sym_RBRACE, - STATE(4182), 1, + STATE(4249), 1, sym_comment, - STATE(4904), 1, + STATE(4906), 1, sym__expr_parenthesized_immediate, - [121309] = 4, + [124447] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2363), 1, + ACTIONS(2244), 1, sym__entry_separator, - STATE(4183), 1, + STATE(4250), 1, sym_comment, - ACTIONS(2365), 3, + ACTIONS(2246), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [121324] = 6, + [124462] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3004), 1, - sym_block, - STATE(4184), 1, - sym_comment, - [121343] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1510), 1, - sym__table_head_separator, - ACTIONS(7837), 1, - anon_sym_DOT2, - STATE(4732), 1, - sym_path, - STATE(4185), 2, + STATE(4251), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - [121360] = 4, + ACTIONS(7888), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124475] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2248), 1, sym__entry_separator, - STATE(4186), 1, + STATE(4252), 1, sym_comment, - ACTIONS(2612), 3, + ACTIONS(2250), 3, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_RBRACE, - [121375] = 4, + anon_sym_DOT_DOT, + [124490] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2367), 1, + ACTIONS(2252), 1, sym__entry_separator, - STATE(4187), 1, + STATE(4253), 1, sym_comment, - ACTIONS(2369), 3, + ACTIONS(2254), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [121390] = 4, + [124505] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2379), 1, + ACTIONS(2256), 1, sym__entry_separator, - STATE(4188), 1, + STATE(4254), 1, sym_comment, - ACTIONS(2381), 3, + ACTIONS(2258), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [121405] = 4, + [124520] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2383), 1, + ACTIONS(2260), 1, sym__entry_separator, - STATE(4189), 1, + STATE(4255), 1, sym_comment, - ACTIONS(2385), 3, + ACTIONS(2262), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [121420] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7840), 1, - anon_sym_RBRACK, - STATE(3399), 1, - aux_sym_parameter_repeat2, - STATE(4190), 1, - sym_comment, - ACTIONS(1480), 2, - sym__newline, - anon_sym_COMMA, - [121437] = 4, + [124535] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2387), 1, + ACTIONS(2264), 1, sym__entry_separator, - STATE(4191), 1, + STATE(4256), 1, sym_comment, - ACTIONS(2389), 3, + ACTIONS(2266), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [121452] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4192), 1, - sym_comment, - ACTIONS(5257), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [121465] = 6, + [124550] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2738), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2740), 1, - anon_sym_COLON2, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(2960), 1, - sym_block, - STATE(4193), 1, + ACTIONS(2268), 1, + sym__entry_separator, + STATE(4257), 1, sym_comment, - [121484] = 4, + ACTIONS(2270), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [124565] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2429), 1, + ACTIONS(2272), 1, sym__entry_separator, - STATE(4194), 1, + STATE(4258), 1, sym_comment, - ACTIONS(2431), 3, + ACTIONS(2274), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [121499] = 4, - ACTIONS(3), 1, + [124580] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(4195), 1, + STATE(4259), 1, sym_comment, - ACTIONS(2011), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121514] = 6, + 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, - ACTIONS(7842), 1, - anon_sym_GT2, - ACTIONS(7844), 1, + STATE(4260), 1, + sym_comment, + ACTIONS(5338), 2, anon_sym_AT2, - ACTIONS(7846), 1, sym__entry_separator, - STATE(4196), 1, + 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(4837), 1, - sym_param_completer, - [121533] = 4, - ACTIONS(103), 1, + STATE(4273), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4812), 1, + sym_path, + [124629] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2210), 1, - sym__entry_separator, - STATE(4197), 1, + STATE(4262), 1, sym_comment, - ACTIONS(2212), 3, - anon_sym_RBRACK, + ACTIONS(7890), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121548] = 4, - ACTIONS(103), 1, + [124642] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2214), 1, - sym__entry_separator, - STATE(4198), 1, + STATE(4263), 1, sym_comment, - ACTIONS(2216), 3, - anon_sym_RBRACK, + ACTIONS(7890), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121563] = 4, + [124655] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2218), 1, - sym__entry_separator, - STATE(4199), 1, + STATE(4264), 1, sym_comment, - ACTIONS(2220), 3, + ACTIONS(5422), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6287), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121578] = 4, + anon_sym_GT2, + [124670] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2222), 1, - sym__entry_separator, - STATE(4200), 1, + STATE(4265), 1, sym_comment, - ACTIONS(2224), 3, + ACTIONS(5348), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6291), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121593] = 4, + anon_sym_GT2, + [124685] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2226), 1, - sym__entry_separator, - STATE(4201), 1, + STATE(4266), 1, sym_comment, - ACTIONS(2228), 3, + ACTIONS(5364), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6299), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121608] = 4, + anon_sym_GT2, + [124700] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2230), 1, - sym__entry_separator, - STATE(4202), 1, + STATE(4267), 1, sym_comment, - ACTIONS(2232), 3, + ACTIONS(5377), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6301), 2, anon_sym_RBRACK, + anon_sym_GT2, + [124715] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4268), 1, + sym_comment, + ACTIONS(7892), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121623] = 4, - ACTIONS(103), 1, + [124728] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2234), 1, - sym__entry_separator, - STATE(4203), 1, + STATE(4269), 1, sym_comment, - ACTIONS(2236), 3, - anon_sym_RBRACK, + ACTIONS(7892), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121638] = 4, + [124741] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2031), 1, - sym__unquoted_pattern, - STATE(4204), 1, + STATE(4270), 1, sym_comment, - ACTIONS(2566), 3, + ACTIONS(7894), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [121653] = 4, + [124754] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4271), 1, + sym_comment, + ACTIONS(5379), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6305), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [124769] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4272), 1, + sym_comment, + ACTIONS(1547), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [124782] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2031), 1, - sym__unquoted_pattern, - STATE(4205), 1, + ACTIONS(1510), 1, + sym__table_head_separator, + ACTIONS(7896), 1, + anon_sym_DOT2, + STATE(4812), 1, + sym_path, + STATE(4273), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + [124799] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(461), 1, + ts_builtin_sym_end, + STATE(1372), 1, + aux_sym__block_body_repeat1, + STATE(4274), 1, sym_comment, - ACTIONS(2021), 3, + ACTIONS(55), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121668] = 6, + anon_sym_SEMI, + [124816] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5126), 1, - anon_sym_LPAREN2, - ACTIONS(5868), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(5870), 1, + ACTIONS(1624), 1, + anon_sym_COLON2, + ACTIONS(7899), 1, anon_sym_RBRACE, - STATE(4206), 1, + STATE(1480), 1, + aux_sym__types_body_repeat2, + STATE(4275), 1, sym_comment, - STATE(4904), 1, - sym__expr_parenthesized_immediate, - [121687] = 6, + [124835] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5467), 1, + anon_sym_COLON2, + STATE(4276), 1, + sym_comment, + STATE(4344), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5461), 2, + sym__newline, + sym__space, + [124852] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4277), 1, + sym_comment, + ACTIONS(4147), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [124865] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5126), 1, + ACTIONS(5197), 1, anon_sym_LPAREN2, - ACTIONS(5872), 1, - sym__entry_separator, - ACTIONS(5874), 1, + ACTIONS(7824), 1, anon_sym_RBRACE, - STATE(4207), 1, + ACTIONS(7826), 1, + sym__entry_separator, + STATE(4278), 1, sym_comment, - STATE(4904), 1, + STATE(4906), 1, sym__expr_parenthesized_immediate, - [121706] = 3, + [124884] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4208), 1, + STATE(4279), 1, sym_comment, - ACTIONS(7848), 4, - anon_sym_if, + ACTIONS(4151), 4, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121719] = 4, + anon_sym_SEMI, + anon_sym_LBRACE, + [124897] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1691), 1, + ACTIONS(1635), 1, sym__unquoted_pattern, - STATE(4209), 1, + STATE(4280), 1, sym_comment, - ACTIONS(2560), 3, + ACTIONS(1956), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [121734] = 4, + [124912] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2576), 1, + ACTIONS(1744), 1, + anon_sym_LBRACE, + ACTIONS(1746), 1, sym__unquoted_pattern, - STATE(4210), 1, + ACTIONS(7901), 1, + anon_sym_DOT, + ACTIONS(7903), 1, + aux_sym__immediate_decimal_token5, + STATE(4281), 1, + sym_comment, + [124931] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4282), 1, sym_comment, - ACTIONS(2570), 3, + ACTIONS(7905), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121749] = 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124944] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(7850), 1, - anon_sym_DOT_DOT2, - STATE(4211), 1, + STATE(4283), 1, sym_comment, - ACTIONS(7852), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121766] = 4, + ACTIONS(7905), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124957] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2508), 1, + ACTIONS(1983), 1, sym__unquoted_pattern, - STATE(4212), 1, + STATE(4284), 1, sym_comment, - ACTIONS(2506), 3, + ACTIONS(2597), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [121781] = 3, + [124972] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4213), 1, + STATE(4285), 1, sym_comment, - ACTIONS(7215), 4, - anon_sym_if, + ACTIONS(7888), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124985] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(4286), 1, + sym_comment, + ACTIONS(1973), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [121794] = 3, + [125000] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4214), 1, + STATE(4287), 1, sym_comment, - ACTIONS(7854), 4, - anon_sym_if, + 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(1679), 1, + sym__unquoted_pattern, + STATE(4289), 1, + sym_comment, + ACTIONS(2541), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [121807] = 5, + [125041] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7446), 1, - anon_sym_RPAREN, - STATE(4135), 1, - aux_sym__block_body_repeat1, - STATE(4215), 1, + STATE(4290), 1, sym_comment, - ACTIONS(7831), 2, + ACTIONS(7890), 4, sym__newline, anon_sym_SEMI, - [121824] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125054] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4216), 1, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(4291), 1, sym_comment, - ACTIONS(7265), 4, - anon_sym_if, + ACTIONS(2589), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125069] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7907), 1, + anon_sym_COLON, + ACTIONS(7909), 1, + anon_sym_GT2, + ACTIONS(7911), 1, + sym__entry_separator, + STATE(4292), 1, + sym_comment, + STATE(4922), 1, + sym__collection_annotation, + [125088] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2527), 1, + sym__unquoted_pattern, + STATE(4293), 1, + sym_comment, + ACTIONS(2525), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [121837] = 6, + [125103] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1862), 1, + sym__entry_separator, + STATE(4294), 1, + sym_comment, + ACTIONS(1864), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + [125118] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + STATE(4295), 1, + sym_comment, + ACTIONS(7913), 4, sym__newline, - ACTIONS(3256), 1, anon_sym_SEMI, - STATE(1363), 1, - aux_sym__parenthesized_body_repeat1, - STATE(4217), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125131] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4296), 1, sym_comment, - STATE(4628), 1, - aux_sym__repeat_newline, - [121856] = 5, + ACTIONS(7915), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125144] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7856), 1, + STATE(4297), 1, + sym_comment, + ACTIONS(7917), 4, + sym__newline, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(4135), 1, - aux_sym__block_body_repeat1, - STATE(4218), 1, + anon_sym_RBRACE, + [125157] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4298), 1, sym_comment, - ACTIONS(7831), 2, + ACTIONS(7919), 4, sym__newline, anon_sym_SEMI, - [121873] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125170] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1754), 1, - anon_sym_LBRACE, - ACTIONS(1756), 1, - sym__unquoted_pattern, - ACTIONS(7858), 1, - anon_sym_DOT, - ACTIONS(7860), 1, - aux_sym__immediate_decimal_token5, - STATE(4219), 1, + STATE(4299), 1, sym_comment, - [121892] = 6, + ACTIONS(7921), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125183] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6575), 1, - anon_sym_LPAREN2, - ACTIONS(7510), 1, + STATE(4300), 1, + sym_comment, + ACTIONS(7923), 2, anon_sym_RBRACK, - ACTIONS(7512), 1, + anon_sym_DOT_DOT, + ACTIONS(7925), 2, + anon_sym_LPAREN2, sym__entry_separator, - STATE(4220), 1, + [125198] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4301), 1, sym_comment, - STATE(4760), 1, - sym__expr_parenthesized_immediate, - [121911] = 5, + ACTIONS(7073), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [125211] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7862), 1, + STATE(4302), 1, + sym_comment, + ACTIONS(7085), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(7864), 1, - anon_sym_DOT_DOT2, - STATE(4221), 1, + [125224] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4303), 1, sym_comment, - ACTIONS(7866), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121928] = 3, + ACTIONS(7927), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125237] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4222), 1, + STATE(4304), 1, + sym_comment, + ACTIONS(7929), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125250] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4305), 1, + sym_comment, + ACTIONS(7931), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125263] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4306), 1, sym_comment, ACTIONS(1521), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [121941] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5126), 1, - anon_sym_LPAREN2, - ACTIONS(7582), 1, - anon_sym_RBRACE, - ACTIONS(7584), 1, - sym__entry_separator, - STATE(4223), 1, - sym_comment, - STATE(4816), 1, - sym__expr_parenthesized_immediate, - [121960] = 4, + [125276] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2527), 1, + ACTIONS(2654), 1, sym__unquoted_pattern, - STATE(4224), 1, + STATE(4307), 1, sym_comment, - ACTIONS(2521), 3, + ACTIONS(2648), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [121975] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7868), 1, - anon_sym_LBRACE, - STATE(3348), 1, - sym__blosure, - STATE(4225), 1, - sym_comment, - STATE(3345), 2, - sym_block, - sym_val_closure, - [121992] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7870), 1, - anon_sym_LPAREN, - STATE(4226), 1, - sym_comment, - ACTIONS(7872), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [122007] = 3, + [125291] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4227), 1, + STATE(4308), 1, sym_comment, ACTIONS(1525), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [122020] = 3, + [125304] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4228), 1, + STATE(4309), 1, sym_comment, ACTIONS(1529), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [122033] = 3, + [125317] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4229), 1, + STATE(4310), 1, sym_comment, - ACTIONS(7874), 4, + ACTIONS(7933), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122046] = 4, + [125330] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2558), 1, + ACTIONS(2658), 1, sym__unquoted_pattern, - STATE(4230), 1, - sym_comment, - ACTIONS(1030), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122061] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4231), 1, - sym_comment, - ACTIONS(7066), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [122074] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4232), 1, + STATE(4311), 1, sym_comment, - ACTIONS(7876), 4, - anon_sym_if, + ACTIONS(1022), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122087] = 4, + [125345] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2558), 1, + ACTIONS(2658), 1, sym__unquoted_pattern, - STATE(4233), 1, + STATE(4312), 1, sym_comment, - ACTIONS(994), 3, + ACTIONS(1030), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122102] = 3, + [125360] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4234), 1, + STATE(4313), 1, sym_comment, - ACTIONS(7411), 4, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - anon_sym_AT, - [122115] = 3, - ACTIONS(3), 1, + ACTIONS(7935), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125373] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4235), 1, + ACTIONS(2620), 1, + sym__entry_separator, + STATE(4314), 1, sym_comment, - ACTIONS(7878), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [122128] = 3, + ACTIONS(2622), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + [125388] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4236), 1, + STATE(4315), 1, sym_comment, - ACTIONS(1498), 4, + ACTIONS(1533), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [122141] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7139), 1, - anon_sym_LBRACK, - ACTIONS(7141), 1, - anon_sym_LPAREN, - STATE(3807), 1, - sym_parameter_parens, - STATE(3808), 1, - sym_parameter_bracks, - STATE(4237), 1, - sym_comment, - [122160] = 3, + [125401] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4238), 1, + STATE(4316), 1, sym_comment, - ACTIONS(1502), 4, + ACTIONS(1537), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [122173] = 3, + [125414] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4239), 1, + STATE(4317), 1, sym_comment, - ACTIONS(1506), 4, + ACTIONS(1541), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [122186] = 4, + [125427] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1888), 1, + ACTIONS(2648), 1, sym__entry_separator, - STATE(4240), 1, - sym_comment, - ACTIONS(1890), 3, + ACTIONS(2650), 1, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - [122201] = 6, + 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, + 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, + [125465] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5126), 1, + ACTIONS(1614), 1, + anon_sym_RBRACK, + ACTIONS(1713), 1, + sym__entry_separator, + ACTIONS(2612), 1, anon_sym_LPAREN2, - ACTIONS(7610), 1, - anon_sym_RBRACE, - ACTIONS(7612), 1, + 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, - STATE(4241), 1, + ACTIONS(6479), 1, + sym__unquoted_pattern_in_list, + STATE(4321), 1, sym_comment, - STATE(4816), 1, - sym__expr_parenthesized_immediate, - [122220] = 3, + ACTIONS(866), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [125501] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4242), 1, + STATE(4322), 1, + sym_comment, + ACTIONS(4431), 4, + sym__newline, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT, + [125514] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2589), 1, + sym__entry_separator, + 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, + [125533] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3098), 1, + ts_builtin_sym_end, + STATE(1379), 1, + aux_sym__block_body_repeat1, + STATE(4324), 1, + sym_comment, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + [125550] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4325), 1, + sym_comment, + ACTIONS(7119), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [125563] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + 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(7880), 4, + ACTIONS(7892), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122233] = 3, + [125595] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4243), 1, + STATE(4328), 1, sym_comment, - ACTIONS(7882), 4, + ACTIONS(7892), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122246] = 6, + [125608] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + STATE(4329), 1, + sym_comment, + ACTIONS(7937), 4, sym__newline, - ACTIONS(7884), 1, - anon_sym_EQ, - ACTIONS(7886), 1, - anon_sym_COLON, - STATE(3344), 1, - aux_sym__repeat_newline, - STATE(4244), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125621] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4330), 1, sym_comment, - [122265] = 3, + ACTIONS(7937), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125634] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4245), 1, + STATE(4331), 1, sym_comment, - ACTIONS(7105), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [122278] = 3, + ACTIONS(7939), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125647] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4246), 1, + STATE(4332), 1, sym_comment, - ACTIONS(7882), 4, + ACTIONS(7939), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122291] = 3, + [125660] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4247), 1, + STATE(4333), 1, sym_comment, - ACTIONS(7888), 4, + ACTIONS(7941), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122304] = 5, - ACTIONS(103), 1, + [125673] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7892), 1, - sym__space, - STATE(4155), 1, - aux_sym_attribute_repeat1, - STATE(4248), 1, + STATE(4334), 1, sym_comment, - ACTIONS(7890), 2, + ACTIONS(7941), 4, sym__newline, anon_sym_SEMI, - [122321] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125686] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4335), 1, + sym_comment, + ACTIONS(7943), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125699] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3042), 1, + sym_block, + STATE(4336), 1, + sym_comment, + [125718] = 3, + 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, - STATE(4249), 1, + ACTIONS(4806), 1, + sym__entry_separator, + STATE(2263), 1, + aux_sym__types_body_repeat2, + STATE(4338), 1, + sym_comment, + ACTIONS(7436), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [125748] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4806), 1, + sym__entry_separator, + STATE(2272), 1, + aux_sym__types_body_repeat2, + STATE(4339), 1, + sym_comment, + ACTIONS(7947), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [125765] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4806), 1, + sym__entry_separator, + STATE(2269), 1, + aux_sym__types_body_repeat2, + STATE(4340), 1, sym_comment, - ACTIONS(7894), 2, + ACTIONS(7947), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7896), 2, + [125782] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4341), 1, + sym_comment, + ACTIONS(7949), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125795] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4342), 1, + sym_comment, + ACTIONS(7951), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125808] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4343), 1, + sym_comment, + ACTIONS(7951), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125821] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7953), 1, + anon_sym_COLON2, + STATE(4344), 1, + sym_comment, + STATE(4514), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5461), 2, + sym__newline, + sym__space, + [125838] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1622), 1, + sym__entry_separator, + 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, + [125857] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4346), 1, + sym_comment, + ACTIONS(7141), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [125870] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6670), 1, anon_sym_LPAREN2, + ACTIONS(7957), 1, + anon_sym_RBRACK, + ACTIONS(7959), 1, sym__entry_separator, - [122336] = 3, + STATE(4347), 1, + sym_comment, + STATE(5208), 1, + sym__expr_parenthesized_immediate, + [125889] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(4250), 1, + STATE(4348), 1, sym_comment, - ACTIONS(1533), 4, + ACTIONS(1562), 4, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_DOT2, - [122349] = 5, + [125902] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7898), 1, - anon_sym_DQUOTE, - STATE(4173), 1, - aux_sym_string_content_repeat1, - STATE(4251), 1, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(1624), 1, + anon_sym_COLON2, + ACTIONS(7961), 1, + anon_sym_RBRACE, + STATE(1474), 1, + aux_sym__types_body_repeat2, + STATE(4349), 1, sym_comment, - ACTIONS(7578), 2, - sym__escaped_str_content, - sym_escape_sequence, - [122366] = 5, - ACTIONS(103), 1, + [125921] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7892), 1, - sym__space, - STATE(4248), 1, - aux_sym_attribute_repeat1, - STATE(4252), 1, + STATE(4350), 1, sym_comment, - ACTIONS(7900), 2, + ACTIONS(7939), 4, sym__newline, anon_sym_SEMI, - [122383] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [125934] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4253), 1, + STATE(4351), 1, sym_comment, - ACTIONS(7888), 4, + ACTIONS(7939), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122396] = 3, + [125947] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4352), 1, + sym_comment, + ACTIONS(1496), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [125960] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4254), 1, + ACTIONS(7963), 1, + sym__newline, + ACTIONS(7966), 1, + anon_sym_PIPE, + ACTIONS(7969), 1, + anon_sym_EQ_GT, + STATE(4353), 2, + sym_comment, + aux_sym_match_pattern_repeat1, + [125977] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4354), 1, sym_comment, - ACTIONS(7902), 4, + ACTIONS(7941), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122409] = 3, + [125990] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4255), 1, + STATE(4355), 1, sym_comment, - ACTIONS(4113), 4, - ts_builtin_sym_end, + ACTIONS(7941), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [122422] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126003] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4256), 1, + ACTIONS(7268), 1, + sym__entry_separator, + ACTIONS(7536), 1, + anon_sym_DOT_DOT2, + STATE(4356), 1, sym_comment, - ACTIONS(4119), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [122435] = 3, + ACTIONS(7538), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126020] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4257), 1, + STATE(4357), 1, sym_comment, - ACTIONS(7904), 4, + ACTIONS(7971), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [122448] = 3, + [126033] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4358), 1, + sym_comment, + ACTIONS(1770), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1772), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [126048] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4359), 1, + sym_comment, + ACTIONS(7951), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126061] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4360), 1, + sym_comment, + ACTIONS(7973), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126074] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4328), 1, + sym__entry_separator, + ACTIONS(7870), 1, + anon_sym_LBRACK, + ACTIONS(7975), 1, + anon_sym_RBRACK, + STATE(1881), 1, + aux_sym__types_body_repeat2, + STATE(4361), 1, + sym_comment, + [126093] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4362), 1, + sym_comment, + ACTIONS(7973), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126106] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4363), 1, + sym_comment, + ACTIONS(7977), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126119] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4364), 1, + sym_comment, + ACTIONS(7977), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126132] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4365), 1, + sym_comment, + ACTIONS(7977), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126145] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4366), 1, + sym_comment, + ACTIONS(1852), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1854), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [126160] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4367), 1, + sym_comment, + ACTIONS(7977), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126173] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + 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, + [126188] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4258), 1, + STATE(4369), 1, sym_comment, - ACTIONS(7906), 4, + ACTIONS(7979), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122461] = 3, + [126201] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4259), 1, + STATE(4370), 1, sym_comment, - ACTIONS(7906), 4, + ACTIONS(7981), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122474] = 3, + [126214] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4260), 1, + STATE(4371), 1, sym_comment, - ACTIONS(7908), 4, + ACTIONS(7979), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122487] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2582), 1, - sym__entry_separator, - STATE(4261), 1, - sym_comment, - ACTIONS(2584), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - [122502] = 3, + [126227] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4262), 1, + STATE(4372), 1, sym_comment, - ACTIONS(7908), 4, + ACTIONS(7983), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122515] = 3, + [126240] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4263), 1, + STATE(4373), 1, sym_comment, - ACTIONS(7882), 4, + ACTIONS(7983), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122528] = 3, + [126253] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4264), 1, + STATE(4374), 1, sym_comment, - ACTIONS(7882), 4, + ACTIONS(7985), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122541] = 3, + [126266] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4265), 1, + STATE(4375), 1, sym_comment, - ACTIONS(7097), 4, + ACTIONS(7137), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [122554] = 3, + [126279] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4266), 1, + STATE(4376), 1, sym_comment, - ACTIONS(7910), 4, + ACTIONS(7985), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122567] = 3, + [126292] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4267), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7987), 1, + anon_sym_DOT_DOT2, + STATE(4377), 1, sym_comment, - ACTIONS(7912), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122580] = 3, + ACTIONS(7989), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126309] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4268), 1, + STATE(4378), 1, sym_comment, - ACTIONS(7914), 4, + ACTIONS(7991), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122593] = 3, + [126322] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4269), 1, + STATE(4379), 1, sym_comment, - ACTIONS(7916), 4, + ACTIONS(7993), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122606] = 3, + [126335] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4270), 1, + STATE(4380), 1, sym_comment, - ACTIONS(7918), 4, + ACTIONS(7995), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122619] = 3, + [126348] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4271), 1, + STATE(4381), 1, sym_comment, - ACTIONS(7920), 4, + ACTIONS(7997), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122632] = 3, + [126361] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4272), 1, + STATE(4382), 1, sym_comment, - ACTIONS(7922), 4, + ACTIONS(7999), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122645] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7139), 1, - anon_sym_LBRACK, - ACTIONS(7141), 1, - anon_sym_LPAREN, - STATE(3907), 1, - sym_parameter_parens, - STATE(3909), 1, - sym_parameter_bracks, - STATE(4273), 1, - sym_comment, - [122664] = 4, + [126374] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4274), 1, - sym_comment, - ACTIONS(1746), 2, - anon_sym_LPAREN2, + ACTIONS(886), 1, sym__entry_separator, - ACTIONS(1748), 2, + STATE(4383), 1, + sym_comment, + ACTIONS(866), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [122679] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [126389] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1716), 1, - anon_sym_LBRACE, - ACTIONS(7864), 1, - anon_sym_DOT_DOT2, - STATE(4275), 1, + ACTIONS(8001), 1, + anon_sym_LPAREN, + STATE(4384), 1, sym_comment, - ACTIONS(7866), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [122696] = 3, + ACTIONS(8003), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [126404] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4276), 1, + STATE(4385), 1, sym_comment, - ACTIONS(7026), 4, + ACTIONS(7151), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [122709] = 6, + [126417] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1691), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2560), 1, + ACTIONS(2170), 1, sym__entry_separator, - ACTIONS(2562), 1, + STATE(4386), 1, + sym_comment, + ACTIONS(2172), 3, anon_sym_RBRACK, - ACTIONS(2564), 1, - anon_sym_LPAREN2, - STATE(4277), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [126432] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + 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, - [122728] = 4, - ACTIONS(103), 1, + [126451] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4278), 1, + STATE(4388), 1, sym_comment, - ACTIONS(1812), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1814), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [122743] = 4, - ACTIONS(103), 1, + ACTIONS(8009), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [126464] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4279), 1, + STATE(4389), 1, sym_comment, - ACTIONS(1812), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1814), 2, + ACTIONS(8011), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [122758] = 6, - ACTIONS(103), 1, + [126477] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7924), 1, - anon_sym_COLON, - ACTIONS(7926), 1, - anon_sym_GT2, - ACTIONS(7928), 1, - sym__entry_separator, - STATE(4280), 1, + STATE(4390), 1, sym_comment, - STATE(4744), 1, - sym__collection_annotation, - [122777] = 4, + ACTIONS(8013), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126490] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7930), 1, - anon_sym_LPAREN, - STATE(4281), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1956), 1, + sym__entry_separator, + ACTIONS(1958), 1, + anon_sym_RBRACK, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(4391), 1, sym_comment, - ACTIONS(7932), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [122792] = 3, + [126509] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4282), 1, + ACTIONS(3100), 1, + ts_builtin_sym_end, + STATE(1370), 1, + aux_sym__block_body_repeat1, + STATE(4392), 1, sym_comment, - ACTIONS(7934), 4, - anon_sym_if, + ACTIONS(55), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122805] = 3, + anon_sym_SEMI, + [126526] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4283), 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, + [126545] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4394), 1, sym_comment, - ACTIONS(7034), 4, + ACTIONS(7208), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [122818] = 4, + [126558] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4284), 1, - sym_comment, - ACTIONS(1900), 2, - anon_sym_LPAREN2, + ACTIONS(1020), 1, + anon_sym_RBRACK, + ACTIONS(1022), 1, sym__entry_separator, - ACTIONS(1902), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [122833] = 5, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern_in_list, + STATE(4395), 1, + sym_comment, + [126577] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4732), 1, - sym__entry_separator, - STATE(2236), 1, - aux_sym__types_body_repeat2, - STATE(4285), 1, - sym_comment, - ACTIONS(7522), 2, + ACTIONS(994), 1, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122850] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4286), 1, + 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(7936), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [122863] = 6, + [126596] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5126), 1, + ACTIONS(6670), 1, anon_sym_LPAREN2, - ACTIONS(7656), 1, - anon_sym_RBRACE, - ACTIONS(7658), 1, + ACTIONS(8015), 1, + anon_sym_RBRACK, + ACTIONS(8017), 1, sym__entry_separator, - STATE(4287), 1, + STATE(4397), 1, sym_comment, - STATE(4816), 1, + STATE(5208), 1, sym__expr_parenthesized_immediate, - [122882] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4288), 1, - sym_comment, - ACTIONS(6981), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [122895] = 3, + [126615] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4289), 1, + ACTIONS(7626), 1, + anon_sym_RPAREN, + STATE(4398), 1, sym_comment, - ACTIONS(6955), 4, - ts_builtin_sym_end, + STATE(4429), 1, + aux_sym__block_body_repeat1, + ACTIONS(7858), 2, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [122908] = 3, - ACTIONS(3), 1, + [126632] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4290), 1, + ACTIONS(2529), 1, + sym__entry_separator, + STATE(4399), 1, sym_comment, - ACTIONS(7938), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2531), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [122921] = 3, + anon_sym_DOT_DOT, + [126647] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4291), 1, + STATE(4400), 1, sym_comment, - ACTIONS(7018), 4, + ACTIONS(8019), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [122934] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4292), 1, - sym_comment, - ACTIONS(7940), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122947] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4293), 1, - sym_comment, - ACTIONS(7942), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122960] = 3, + [126660] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4294), 1, - sym_comment, - ACTIONS(1537), 4, + ACTIONS(6670), 1, + anon_sym_LPAREN2, + ACTIONS(7542), 1, anon_sym_RBRACK, + ACTIONS(7550), 1, sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [122973] = 3, + STATE(4401), 1, + sym_comment, + STATE(4867), 1, + sym__expr_parenthesized_immediate, + [126679] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4295), 1, + STATE(4402), 1, sym_comment, - ACTIONS(7046), 4, + ACTIONS(7182), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [122986] = 3, + [126692] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8021), 1, + anon_sym_DQUOTE, + STATE(4403), 1, + sym_comment, + STATE(4418), 1, + aux_sym_string_content_repeat1, + ACTIONS(7691), 2, + sym__escaped_str_content, + sym_escape_sequence, + [126709] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4296), 1, + STATE(4404), 1, sym_comment, - ACTIONS(7944), 4, + ACTIONS(7212), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [122999] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4297), 1, - sym_comment, - ACTIONS(7946), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123012] = 3, + [126722] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4298), 1, + ACTIONS(8023), 1, + anon_sym_RBRACK, + STATE(3564), 1, + aux_sym_parameter_repeat2, + STATE(4405), 1, sym_comment, - ACTIONS(7948), 4, + ACTIONS(1480), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123025] = 3, + anon_sym_COMMA, + [126739] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4299), 1, + STATE(4406), 1, sym_comment, - ACTIONS(7950), 4, + ACTIONS(8025), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123038] = 3, + [126752] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4300), 1, + STATE(4407), 1, sym_comment, - ACTIONS(7007), 4, + ACTIONS(8027), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [123051] = 3, - ACTIONS(103), 1, + [126765] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4301), 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, - ACTIONS(1541), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [123064] = 6, - ACTIONS(103), 1, + [126784] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2521), 1, - sym__entry_separator, - ACTIONS(2523), 1, - anon_sym_RBRACK, - ACTIONS(2525), 1, - anon_sym_LPAREN2, - ACTIONS(2527), 1, - sym__unquoted_pattern_in_list, - STATE(4302), 1, + ACTIONS(7434), 1, + anon_sym_LBRACE, + STATE(3289), 1, + sym__blosure, + STATE(4409), 1, sym_comment, - [123083] = 5, + STATE(3288), 2, + sym_block, + sym_val_closure, + [126801] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(459), 1, - ts_builtin_sym_end, - STATE(1365), 1, - aux_sym__block_body_repeat1, - STATE(4303), 1, + STATE(4410), 1, sym_comment, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - [123100] = 6, - ACTIONS(103), 1, + ACTIONS(7121), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [126814] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1629), 1, - anon_sym_RBRACK, - ACTIONS(1716), 1, - sym__entry_separator, - ACTIONS(2594), 1, - anon_sym_LPAREN2, - ACTIONS(2596), 1, - sym__unquoted_pattern_in_list, - STATE(4304), 1, + STATE(4411), 1, sym_comment, - [123119] = 3, + ACTIONS(7848), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [126827] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4305), 1, + STATE(4412), 1, sym_comment, - ACTIONS(7952), 4, + ACTIONS(7848), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123132] = 5, + [126840] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(884), 1, + ACTIONS(2154), 1, sym__entry_separator, - ACTIONS(6277), 1, - sym__unquoted_pattern_in_list, - STATE(4306), 1, + STATE(4413), 1, sym_comment, - ACTIONS(858), 2, + ACTIONS(2156), 3, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - [123149] = 3, - ACTIONS(3), 1, + [126855] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4307), 1, + ACTIONS(8029), 1, + anon_sym_LPAREN, + STATE(4414), 1, sym_comment, - ACTIONS(7952), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123162] = 3, + ACTIONS(8031), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [126870] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4308), 1, + ACTIONS(8005), 1, + anon_sym_LBRACK, + ACTIONS(8007), 1, + anon_sym_LPAREN, + STATE(4074), 1, + sym_parameter_parens, + STATE(4079), 1, + sym_parameter_bracks, + STATE(4415), 1, sym_comment, - ACTIONS(7954), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123175] = 3, + [126889] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4309), 1, + STATE(4416), 1, sym_comment, - ACTIONS(7954), 4, + ACTIONS(8033), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123188] = 3, - ACTIONS(3), 1, + [126902] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2682), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2684), 1, + anon_sym_COLON2, + ACTIONS(3808), 1, + anon_sym_LBRACE, STATE(4310), 1, + sym_block, + STATE(4417), 1, sym_comment, - ACTIONS(4393), 4, - sym__newline, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT, - [123201] = 3, - ACTIONS(3), 1, + [126921] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4311), 1, + ACTIONS(8035), 1, + anon_sym_DQUOTE, + ACTIONS(8037), 2, + sym__escaped_str_content, + sym_escape_sequence, + STATE(4418), 2, sym_comment, - ACTIONS(7956), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + aux_sym_string_content_repeat1, + [126936] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4419), 1, + sym_comment, + ACTIONS(2525), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2527), 2, anon_sym_RBRACE, - [123214] = 3, + sym__unquoted_pattern_in_record, + [126951] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4312), 1, + STATE(4420), 1, sym_comment, - ACTIONS(7956), 4, + ACTIONS(8033), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123227] = 4, + [126964] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4313), 1, - sym_comment, - ACTIONS(6158), 2, - anon_sym_AT2, + ACTIONS(1614), 1, + anon_sym_RBRACE, + ACTIONS(1713), 1, sym__entry_separator, - ACTIONS(6160), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [123242] = 5, + ACTIONS(2612), 1, + anon_sym_LPAREN2, + ACTIONS(2614), 1, + sym__unquoted_pattern_in_record, + STATE(4421), 1, + sym_comment, + [126983] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7864), 1, + ACTIONS(7862), 1, anon_sym_DOT_DOT2, - ACTIONS(7958), 1, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(4314), 1, + STATE(4422), 1, sym_comment, - ACTIONS(7866), 2, + ACTIONS(7864), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [123259] = 4, + [127000] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4315), 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(6162), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6164), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [123274] = 3, - ACTIONS(3), 1, + [127019] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4316), 1, + ACTIONS(8042), 1, + anon_sym_LPAREN, + STATE(4424), 1, sym_comment, - ACTIONS(6118), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_AT2, - anon_sym_LBRACE, - [123287] = 3, - 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, - STATE(4317), 1, - sym_comment, - ACTIONS(4115), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(2682), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2684), 1, + anon_sym_COLON2, + ACTIONS(3808), 1, anon_sym_LBRACE, - [123300] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4318), 1, + STATE(3073), 1, + sym_block, + STATE(4425), 1, sym_comment, - ACTIONS(4117), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [123313] = 3, + [127053] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4319), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(8046), 1, + anon_sym_DOT_DOT2, + STATE(4426), 1, sym_comment, - ACTIONS(7960), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123326] = 3, - ACTIONS(3), 1, + ACTIONS(8048), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127070] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4320), 1, - sym_comment, - ACTIONS(7960), 4, + ACTIONS(8050), 1, + sym__space, + ACTIONS(5937), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123339] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4321), 1, + STATE(4427), 2, sym_comment, - ACTIONS(7952), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123352] = 3, - ACTIONS(3), 1, + aux_sym_attribute_repeat1, + [127085] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4322), 1, - sym_comment, - ACTIONS(7952), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1956), 1, + sym__entry_separator, + ACTIONS(1958), 1, anon_sym_RBRACE, - [123365] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4323), 1, + ACTIONS(1960), 1, + anon_sym_LPAREN2, + STATE(4428), 1, sym_comment, - ACTIONS(7954), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123378] = 3, + [127104] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4324), 1, - sym_comment, - ACTIONS(7954), 4, + ACTIONS(3069), 1, + anon_sym_RPAREN, + ACTIONS(8053), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123391] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4325), 1, + STATE(4429), 2, sym_comment, - ACTIONS(1746), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1748), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [123406] = 3, + aux_sym__block_body_repeat1, + [127119] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4326), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(8056), 1, + anon_sym_DOT_DOT2, + STATE(4430), 1, sym_comment, - ACTIONS(7962), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123419] = 3, + ACTIONS(8058), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127136] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4327), 1, + STATE(4431), 1, sym_comment, - ACTIONS(7964), 4, + ACTIONS(8060), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [123432] = 5, + [127149] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4732), 1, + ACTIONS(4806), 1, sym__entry_separator, - STATE(2229), 1, + STATE(2262), 1, aux_sym__types_body_repeat2, - STATE(4328), 1, + STATE(4432), 1, sym_comment, - ACTIONS(7387), 2, + ACTIONS(7562), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [123449] = 5, - ACTIONS(103), 1, + [127166] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4732), 1, - sym__entry_separator, - STATE(2230), 1, - aux_sym__types_body_repeat2, - STATE(4329), 1, + STATE(4433), 1, sym_comment, - ACTIONS(7966), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [123466] = 5, - ACTIONS(103), 1, + 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, - ACTIONS(4732), 1, - sym__entry_separator, - STATE(2228), 1, - aux_sym__types_body_repeat2, - STATE(4330), 1, + STATE(4434), 1, sym_comment, - ACTIONS(7966), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [123483] = 3, + ACTIONS(8062), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127194] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4331), 1, + STATE(4435), 1, sym_comment, - ACTIONS(7968), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123496] = 4, - ACTIONS(103), 1, + 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(4332), 1, + STATE(4436), 1, sym_comment, - ACTIONS(7970), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7972), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [123511] = 4, - ACTIONS(103), 1, + 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(4333), 1, + STATE(4437), 1, sym_comment, - ACTIONS(1900), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1902), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [123526] = 6, + ACTIONS(4140), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [127237] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(1616), 1, + anon_sym_RBRACE, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(1639), 1, + ACTIONS(1624), 1, anon_sym_COLON2, - ACTIONS(7974), 1, - anon_sym_RBRACE, - STATE(1468), 1, + STATE(1470), 1, aux_sym__types_body_repeat2, - STATE(4334), 1, + STATE(4438), 1, sym_comment, - [123545] = 3, + [127256] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4335), 1, + STATE(4439), 1, sym_comment, - ACTIONS(7976), 4, + ACTIONS(4142), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123558] = 6, + anon_sym_LBRACE, + [127269] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2597), 1, sym__entry_separator, - ACTIONS(1639), 1, - anon_sym_COLON2, - ACTIONS(7978), 1, + ACTIONS(2599), 1, anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(4336), 1, + STATE(4440), 1, + sym_comment, + [127288] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4441), 1, sym_comment, - [123577] = 6, + ACTIONS(7460), 4, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + anon_sym_AT, + [127301] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2570), 1, + ACTIONS(1973), 1, sym__entry_separator, - ACTIONS(2572), 1, - anon_sym_RBRACK, - ACTIONS(2574), 1, + ACTIONS(1975), 1, + anon_sym_RBRACE, + ACTIONS(1977), 1, anon_sym_LPAREN2, - ACTIONS(2576), 1, - sym__unquoted_pattern_in_list, - STATE(4337), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern_in_record, + STATE(4442), 1, sym_comment, - [123596] = 3, + [127320] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4338), 1, + STATE(4443), 1, sym_comment, - ACTIONS(7980), 4, + ACTIONS(8064), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123609] = 6, + [127333] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6575), 1, + ACTIONS(5197), 1, anon_sym_LPAREN2, - ACTIONS(7982), 1, - anon_sym_RBRACK, - ACTIONS(7984), 1, + ACTIONS(6208), 1, sym__entry_separator, - STATE(4339), 1, + ACTIONS(6210), 1, + anon_sym_RBRACE, + STATE(4444), 1, sym_comment, - STATE(4858), 1, + STATE(5178), 1, sym__expr_parenthesized_immediate, - [123628] = 3, + [127352] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4340), 1, + STATE(4445), 1, sym_comment, - ACTIONS(7986), 4, + ACTIONS(8066), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123641] = 5, - ACTIONS(3), 1, + [127365] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7988), 1, - sym__newline, - ACTIONS(7991), 1, - anon_sym_PIPE, - ACTIONS(7994), 1, - anon_sym_EQ_GT, - STATE(4341), 2, + ACTIONS(1912), 1, + sym__entry_separator, + STATE(4446), 1, sym_comment, - aux_sym_match_pattern_repeat1, - [123658] = 6, - ACTIONS(3), 1, + ACTIONS(1914), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + [127380] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(7996), 1, - anon_sym_LBRACK, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(4342), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2541), 1, + sym__entry_separator, + ACTIONS(2543), 1, + anon_sym_RBRACE, + ACTIONS(2642), 1, + anon_sym_LPAREN2, + STATE(4447), 1, sym_comment, - STATE(5098), 1, - sym_val_list, - [123677] = 3, + [127399] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4343), 1, - sym_comment, - ACTIONS(7956), 4, + ACTIONS(7650), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123690] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4344), 1, + ACTIONS(7652), 1, + anon_sym_PIPE, + ACTIONS(8068), 1, + anon_sym_EQ_GT, + STATE(4353), 1, + aux_sym_match_pattern_repeat1, + STATE(4448), 1, sym_comment, - ACTIONS(7956), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123703] = 3, - ACTIONS(3), 1, + [127418] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4345), 1, - sym_comment, - ACTIONS(7998), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2589), 1, + sym__entry_separator, + ACTIONS(2591), 1, anon_sym_RBRACE, - [123716] = 5, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern_in_record, + STATE(4449), 1, + sym_comment, + [127437] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8000), 1, + ACTIONS(2154), 1, + anon_sym_LBRACE, + ACTIONS(8070), 1, anon_sym_DOT_DOT2, - STATE(4346), 1, + STATE(4450), 1, sym_comment, - ACTIONS(8002), 2, + ACTIONS(8072), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [123733] = 3, + [127454] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4347), 1, + ACTIONS(1772), 1, + sym__unquoted_pattern, + STATE(4451), 1, sym_comment, - ACTIONS(8004), 4, + ACTIONS(1770), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123746] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127469] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4348), 1, - sym_comment, - ACTIONS(8006), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(6212), 1, + sym__entry_separator, + ACTIONS(6214), 1, anon_sym_RBRACE, - [123759] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4349), 1, + STATE(4452), 1, sym_comment, - ACTIONS(8008), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123772] = 3, + STATE(5178), 1, + sym__expr_parenthesized_immediate, + [127488] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4350), 1, + ACTIONS(1770), 1, + anon_sym_LBRACE, + ACTIONS(1772), 1, + sym__unquoted_pattern, + ACTIONS(8074), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8076), 1, + aux_sym__immediate_decimal_token5, + STATE(4453), 1, sym_comment, - ACTIONS(7998), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123785] = 3, + [127507] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4351), 1, + ACTIONS(2527), 1, + sym__unquoted_pattern, + STATE(4454), 1, sym_comment, - ACTIONS(8010), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2525), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127522] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2648), 1, + sym__entry_separator, + ACTIONS(2650), 1, anon_sym_RBRACE, - [123798] = 3, + ACTIONS(2652), 1, + anon_sym_LPAREN2, + ACTIONS(2654), 1, + sym__unquoted_pattern_in_record, + STATE(4455), 1, + sym_comment, + [127541] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4352), 1, + ACTIONS(1854), 1, + sym__unquoted_pattern, + STATE(4456), 1, sym_comment, - ACTIONS(8012), 4, + ACTIONS(1852), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123811] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127556] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4353), 1, + ACTIONS(1872), 1, + sym__unquoted_pattern, + STATE(4457), 1, sym_comment, - ACTIONS(8014), 4, + ACTIONS(1870), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123824] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127571] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4354), 1, + ACTIONS(7079), 1, + sym__unquoted_pattern, + STATE(4458), 1, sym_comment, - ACTIONS(8014), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123837] = 3, + ACTIONS(886), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127586] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4355), 1, + STATE(4459), 1, sym_comment, - ACTIONS(8016), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123850] = 3, + ACTIONS(8078), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [127599] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4356), 1, + ACTIONS(7862), 1, + anon_sym_DOT_DOT2, + ACTIONS(8080), 1, + anon_sym_LBRACE, + STATE(4460), 1, sym_comment, - ACTIONS(8016), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123863] = 3, + ACTIONS(7864), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127616] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4357), 1, + STATE(4461), 1, sym_comment, - ACTIONS(8018), 4, + ACTIONS(8066), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123876] = 3, + [127629] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4358), 1, + ACTIONS(7482), 1, + anon_sym_RPAREN, + STATE(4429), 1, + aux_sym__block_body_repeat1, + STATE(4462), 1, sym_comment, - ACTIONS(8018), 4, + ACTIONS(7858), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123889] = 4, - ACTIONS(103), 1, + [127646] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4359), 1, + STATE(4463), 1, sym_comment, - ACTIONS(6176), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6178), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [123904] = 4, + ACTIONS(8082), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [127659] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4360), 1, + STATE(4464), 1, sym_comment, - ACTIONS(1746), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1748), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [123919] = 4, + ACTIONS(8084), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [127672] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4361), 1, - sym_comment, - ACTIONS(6180), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6182), 2, + ACTIONS(6670), 1, + anon_sym_LPAREN2, + ACTIONS(8086), 1, anon_sym_RBRACK, - anon_sym_GT2, - [123934] = 3, + ACTIONS(8088), 1, + sym__entry_separator, + STATE(4465), 1, + sym_comment, + STATE(5208), 1, + sym__expr_parenthesized_immediate, + [127691] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4362), 1, + STATE(4466), 1, sym_comment, - ACTIONS(8020), 4, + ACTIONS(8090), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123947] = 4, + [127704] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4363), 1, - sym_comment, - ACTIONS(6184), 2, - anon_sym_AT2, + ACTIONS(2196), 1, sym__entry_separator, - ACTIONS(6186), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [123962] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4364), 1, + STATE(4467), 1, sym_comment, - ACTIONS(6190), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6192), 2, + ACTIONS(2198), 3, anon_sym_RBRACK, - anon_sym_GT2, - [123977] = 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [127719] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4365), 1, + STATE(4468), 1, sym_comment, - ACTIONS(8014), 4, + ACTIONS(8092), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123990] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4366), 1, - sym_comment, - ACTIONS(1812), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1814), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [124005] = 3, + [127732] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4367), 1, + STATE(4469), 1, sym_comment, - ACTIONS(8022), 4, + ACTIONS(8094), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [124018] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4368), 1, - sym_comment, - ACTIONS(1900), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1902), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [124033] = 3, + [127745] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4369), 1, + STATE(4470), 1, sym_comment, - ACTIONS(8014), 4, + ACTIONS(8096), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [124046] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4370), 1, - sym_comment, - ACTIONS(8024), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [124059] = 3, + [127758] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4371), 1, - sym_comment, - ACTIONS(8026), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [124072] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4372), 1, + STATE(4471), 1, sym_comment, - ACTIONS(8028), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [124085] = 6, + ACTIONS(8098), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127771] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4276), 1, + ACTIONS(4328), 1, sym__entry_separator, - ACTIONS(7820), 1, + ACTIONS(7870), 1, anon_sym_LBRACK, - ACTIONS(8030), 1, + ACTIONS(8100), 1, anon_sym_RBRACK, - STATE(1873), 1, + STATE(1881), 1, aux_sym__types_body_repeat2, - STATE(4373), 1, + STATE(4472), 1, sym_comment, - [124104] = 6, + [127790] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2011), 1, + ACTIONS(4328), 1, sym__entry_separator, - ACTIONS(2013), 1, + ACTIONS(7870), 1, + anon_sym_LBRACK, + ACTIONS(8102), 1, anon_sym_RBRACK, - ACTIONS(2015), 1, - anon_sym_LPAREN2, - STATE(4374), 1, + STATE(1881), 1, + aux_sym__types_body_repeat2, + STATE(4473), 1, sym_comment, - [124123] = 6, + [127809] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(996), 1, - anon_sym_RBRACK, - ACTIONS(2556), 1, + ACTIONS(6670), 1, anon_sym_LPAREN2, - ACTIONS(2558), 1, - sym__unquoted_pattern_in_list, - STATE(4375), 1, - sym_comment, - [124142] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3085), 1, - ts_builtin_sym_end, - STATE(1368), 1, - aux_sym__block_body_repeat1, - STATE(4376), 1, - sym_comment, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - [124159] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(3040), 1, - sym_block, - STATE(4128), 1, - aux_sym__repeat_newline, - STATE(4377), 1, - sym_comment, - [124178] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(3044), 1, - sym_block, - STATE(4378), 1, + ACTIONS(8104), 1, + anon_sym_RBRACK, + ACTIONS(8106), 1, + sym__entry_separator, + STATE(4474), 1, sym_comment, - [124197] = 3, + STATE(5208), 1, + sym__expr_parenthesized_immediate, + [127828] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4379), 1, + STATE(4475), 1, sym_comment, - ACTIONS(8016), 4, + ACTIONS(7363), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [124210] = 3, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127841] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4380), 1, + STATE(4476), 1, sym_comment, - ACTIONS(8016), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [124223] = 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(4381), 1, + STATE(4477), 1, sym_comment, - ACTIONS(8018), 4, + ACTIONS(4169), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [124236] = 3, + anon_sym_LBRACE, + [127869] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4382), 1, + STATE(4478), 1, sym_comment, - ACTIONS(8018), 4, + ACTIONS(4171), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [124249] = 3, + anon_sym_LBRACE, + [127882] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4383), 1, + STATE(4479), 1, sym_comment, - ACTIONS(8032), 4, + ACTIONS(8108), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [124262] = 3, + [127895] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4384), 1, + STATE(4480), 1, sym_comment, - ACTIONS(8032), 4, + ACTIONS(8108), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [124275] = 3, + [127908] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4385), 1, + STATE(4481), 1, sym_comment, - ACTIONS(8034), 4, + ACTIONS(8110), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [124288] = 3, + [127921] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4386), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8112), 1, + anon_sym_DOT_DOT2, + STATE(4482), 1, sym_comment, - ACTIONS(7095), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [124301] = 3, + ACTIONS(8114), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127938] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4387), 1, + STATE(4483), 1, sym_comment, - ACTIONS(8034), 4, + ACTIONS(8116), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [124314] = 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + [127951] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1748), 1, - sym__unquoted_pattern, - STATE(4388), 1, + STATE(4484), 1, sym_comment, - ACTIONS(1746), 3, + ACTIONS(8118), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [124329] = 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [127964] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4389), 1, - sym_comment, - ACTIONS(2506), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2508), 2, + ACTIONS(1020), 1, anon_sym_RBRACE, + ACTIONS(1022), 1, + sym__entry_separator, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, sym__unquoted_pattern_in_record, - [124344] = 4, + STATE(4485), 1, + sym_comment, + [127983] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4390), 1, - sym_comment, - ACTIONS(6194), 2, - anon_sym_AT2, + ACTIONS(994), 1, + anon_sym_RBRACE, + ACTIONS(1030), 1, sym__entry_separator, - ACTIONS(6196), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [124359] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1814), 1, - sym__unquoted_pattern, - STATE(4391), 1, + ACTIONS(2656), 1, + anon_sym_LPAREN2, + ACTIONS(2658), 1, + sym__unquoted_pattern_in_record, + STATE(4486), 1, sym_comment, - ACTIONS(1812), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [124374] = 4, + [128002] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1902), 1, - sym__unquoted_pattern, - STATE(4392), 1, + STATE(4487), 1, sym_comment, - ACTIONS(1900), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [124389] = 3, + ACTIONS(7188), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [128015] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4393), 1, + STATE(4488), 1, sym_comment, - ACTIONS(8034), 4, + ACTIONS(8118), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [124402] = 6, + [128028] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4489), 1, + sym_comment, + ACTIONS(7268), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [128041] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1629), 1, - anon_sym_RBRACE, - ACTIONS(1716), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7268), 1, sym__entry_separator, - ACTIONS(2594), 1, - anon_sym_LPAREN2, - ACTIONS(2596), 1, - sym__unquoted_pattern_in_record, - STATE(4394), 1, + STATE(4490), 1, sym_comment, - [124421] = 3, + ACTIONS(7555), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [128058] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4395), 1, + STATE(4491), 1, sym_comment, - ACTIONS(8034), 4, + ACTIONS(8120), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [124434] = 3, + [128071] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4396), 1, + STATE(4492), 1, sym_comment, - ACTIONS(8036), 4, + ACTIONS(8120), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [124447] = 3, + [128084] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4397), 1, + ACTIONS(8122), 1, + anon_sym_LBRACE, + STATE(3417), 1, + sym__blosure, + STATE(4493), 1, sym_comment, - ACTIONS(8036), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [124460] = 6, + STATE(3494), 2, + sym_block, + sym_val_closure, + [128101] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3851), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(3353), 1, + STATE(3460), 1, sym_block, - STATE(4398), 1, + STATE(4494), 1, sym_comment, - STATE(4401), 1, + STATE(4498), 1, aux_sym__repeat_newline, - [124479] = 3, - ACTIONS(3), 1, + [128120] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4399), 1, + ACTIONS(8124), 1, + anon_sym_GT2, + ACTIONS(8126), 1, + anon_sym_AT2, + ACTIONS(8128), 1, + sym__entry_separator, + STATE(4495), 1, sym_comment, - ACTIONS(8038), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [124492] = 6, + STATE(4826), 1, + sym_param_completer, + [128139] = 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, + ACTIONS(2599), 1, + anon_sym_RBRACK, + STATE(4496), 1, + sym_comment, + [128158] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3851), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(3357), 1, + STATE(3463), 1, sym_block, - STATE(4400), 1, + STATE(4497), 1, sym_comment, - STATE(4402), 1, + STATE(4500), 1, aux_sym__repeat_newline, - [124511] = 6, + [128177] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3851), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(507), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(3358), 1, + STATE(3464), 1, sym_block, - STATE(4401), 1, + STATE(4498), 1, sym_comment, - [124530] = 6, + [128196] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3851), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(507), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(3361), 1, + STATE(3082), 1, sym_block, - STATE(4402), 1, + STATE(4499), 1, sym_comment, - [124549] = 3, + [128215] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4403), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(3466), 1, + sym_block, + STATE(4500), 1, + sym_comment, + [128234] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1973), 1, + sym__entry_separator, + ACTIONS(1975), 1, + anon_sym_RBRACK, + ACTIONS(1977), 1, + anon_sym_LPAREN2, + ACTIONS(1983), 1, + sym__unquoted_pattern_in_list, + STATE(4501), 1, sym_comment, - ACTIONS(8038), 4, + [128253] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, sym__newline, + ACTIONS(3144), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [124562] = 3, + STATE(1369), 1, + aux_sym__parenthesized_body_repeat1, + STATE(4502), 1, + sym_comment, + STATE(4562), 1, + aux_sym__repeat_newline, + [128272] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4404), 1, + STATE(4503), 1, sym_comment, - ACTIONS(8040), 4, + ACTIONS(8130), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [124575] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [128285] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4504), 1, + sym_comment, + ACTIONS(1870), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1872), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [128300] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4405), 1, + STATE(4505), 1, sym_comment, - ACTIONS(8040), 4, + ACTIONS(7848), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [124588] = 3, + [128313] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4506), 1, + sym_comment, + ACTIONS(1852), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1854), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [128328] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4406), 1, + ACTIONS(2102), 1, + anon_sym_LBRACE, + ACTIONS(8132), 1, + anon_sym_DOT_DOT2, + STATE(4507), 1, sym_comment, - ACTIONS(5263), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + 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, - [124601] = 6, + 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(7809), 1, - anon_sym_LBRACK, - ACTIONS(7811), 1, - anon_sym_LPAREN, - STATE(3968), 1, - sym_parameter_parens, - STATE(3969), 1, - sym_parameter_bracks, - STATE(4407), 1, + ACTIONS(2118), 1, + anon_sym_LBRACE, + ACTIONS(8140), 1, + anon_sym_DOT_DOT2, + STATE(4509), 1, sym_comment, - [124620] = 6, + ACTIONS(8142), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128379] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3851), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(3213), 1, + STATE(3326), 1, sym_block, - STATE(4408), 1, + STATE(4510), 1, sym_comment, - STATE(4410), 1, + STATE(4512), 1, aux_sym__repeat_newline, - [124639] = 6, + [128398] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3851), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(3215), 1, + STATE(3328), 1, sym_block, - STATE(4409), 1, + STATE(4511), 1, sym_comment, - STATE(4411), 1, + STATE(4513), 1, aux_sym__repeat_newline, - [124658] = 6, + [128417] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3851), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(507), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(3216), 1, + STATE(3329), 1, sym_block, - STATE(4410), 1, + STATE(4512), 1, sym_comment, - [124677] = 6, + [128436] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2907), 1, sym__newline, - ACTIONS(3851), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(507), 1, + STATE(527), 1, aux_sym__repeat_newline, - STATE(3218), 1, + STATE(3331), 1, sym_block, - STATE(4411), 1, + STATE(4513), 1, sym_comment, - [124696] = 6, + [128455] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2011), 1, - sym__entry_separator, - ACTIONS(2013), 1, - anon_sym_RBRACE, - ACTIONS(2015), 1, - anon_sym_LPAREN2, - STATE(4412), 1, + ACTIONS(3478), 1, + anon_sym_COLON2, + ACTIONS(8144), 2, + sym__newline, + sym__space, + STATE(4514), 2, sym_comment, - [124715] = 6, + aux_sym_pipe_element_parenthesized_repeat1, + [128470] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4276), 1, + ACTIONS(2200), 1, sym__entry_separator, - ACTIONS(7820), 1, - anon_sym_LBRACK, - ACTIONS(8042), 1, - anon_sym_RBRACK, - STATE(1873), 1, - aux_sym__types_body_repeat2, - STATE(4413), 1, - sym_comment, - [124734] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4414), 1, + STATE(4515), 1, sym_comment, - ACTIONS(8044), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2202), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [124747] = 5, + anon_sym_DOT_DOT, + [128485] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(7363), 1, sym__entry_separator, - ACTIONS(7974), 1, - anon_sym_RBRACE, - STATE(1468), 1, - aux_sym__types_body_repeat2, - STATE(4415), 1, - sym_comment, - [124763] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8046), 1, - anon_sym_RBRACK, - ACTIONS(8048), 1, - sym_hex_digit, - STATE(4416), 1, + ACTIONS(7536), 1, + anon_sym_DOT_DOT2, + STATE(4516), 1, sym_comment, - STATE(4420), 1, - aux_sym_val_binary_repeat1, - [124779] = 5, - ACTIONS(3), 1, + ACTIONS(7538), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128502] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8048), 1, - sym_hex_digit, - ACTIONS(8050), 1, - anon_sym_RBRACK, - STATE(4417), 1, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(6081), 1, + sym__entry_separator, + ACTIONS(6083), 1, + anon_sym_RBRACE, + STATE(4517), 1, sym_comment, - STATE(4486), 1, - aux_sym_val_binary_repeat1, - [124795] = 3, + STATE(5178), 1, + sym__expr_parenthesized_immediate, + [128521] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4418), 1, + STATE(4518), 1, sym_comment, - ACTIONS(8052), 3, + ACTIONS(7951), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [124807] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4419), 1, - sym_comment, - ACTIONS(7954), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124819] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8048), 1, - sym_hex_digit, - ACTIONS(8054), 1, - anon_sym_RBRACK, - STATE(4420), 1, - sym_comment, - STATE(4642), 1, - aux_sym_val_binary_repeat1, - [124835] = 3, + anon_sym_RBRACE, + [128534] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4421), 1, + STATE(4519), 1, sym_comment, - ACTIONS(7956), 3, + ACTIONS(8011), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124847] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4422), 1, - sym_comment, - ACTIONS(2584), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [124859] = 3, + [128546] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4423), 1, + STATE(4520), 1, sym_comment, - ACTIONS(8056), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [124871] = 3, + ACTIONS(2174), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [128558] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4424), 1, - sym_comment, - ACTIONS(7920), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124883] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1637), 1, - sym__entry_separator, - ACTIONS(1639), 1, - anon_sym_COLON2, - STATE(1504), 1, - aux_sym__types_body_repeat2, - STATE(4425), 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, - [124899] = 3, + [128574] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4426), 1, + STATE(4522), 1, sym_comment, - ACTIONS(4663), 3, + ACTIONS(4682), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [124911] = 3, + [128586] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4427), 1, + ACTIONS(8149), 1, + anon_sym_RBRACK, + ACTIONS(8151), 1, + sym_hex_digit, + STATE(4523), 1, sym_comment, - ACTIONS(2148), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124923] = 5, - ACTIONS(3), 1, + STATE(4616), 1, + aux_sym_val_binary_repeat1, + [128602] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1754), 1, - anon_sym_LBRACE, - ACTIONS(1756), 1, - sym__unquoted_pattern, - ACTIONS(7860), 1, - aux_sym__immediate_decimal_token5, - STATE(4428), 1, + ACTIONS(4456), 1, + sym__entry_separator, + ACTIONS(8153), 1, + anon_sym_RBRACK, + STATE(2134), 1, + aux_sym__types_body_repeat2, + STATE(4524), 1, sym_comment, - [124939] = 5, + [128618] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - ACTIONS(5072), 1, - sym__unquoted_pattern, - STATE(4429), 1, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8155), 1, + anon_sym_RBRACK, + STATE(4525), 1, sym_comment, - STATE(4836), 1, - sym__expr_parenthesized_immediate, - [124955] = 4, + STATE(4530), 1, + aux_sym_val_binary_repeat1, + [128634] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5253), 1, + ACTIONS(1622), 1, sym__entry_separator, - STATE(4430), 1, + ACTIONS(8157), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym__types_body_repeat2, + STATE(4526), 1, sym_comment, - ACTIONS(5255), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [124969] = 4, - ACTIONS(3), 1, + [128650] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8058), 1, - anon_sym_QMARK2, - STATE(4431), 1, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(8159), 1, + anon_sym_RBRACE, + STATE(1484), 1, + aux_sym__types_body_repeat2, + STATE(4527), 1, sym_comment, - ACTIONS(1458), 2, - sym__table_head_separator, - anon_sym_DOT2, - [124983] = 3, + [128666] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4432), 1, + STATE(4528), 1, sym_comment, - ACTIONS(8016), 3, - ts_builtin_sym_end, + ACTIONS(3148), 3, sym__newline, anon_sym_SEMI, - [124995] = 3, + anon_sym_RPAREN, + [128678] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4433), 1, + STATE(4529), 1, sym_comment, - ACTIONS(7956), 3, + ACTIONS(7892), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125007] = 5, + [128690] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8048), 1, + ACTIONS(8151), 1, sym_hex_digit, - ACTIONS(8060), 1, + ACTIONS(8161), 1, anon_sym_RBRACK, - STATE(4434), 1, + STATE(4530), 1, sym_comment, - STATE(4438), 1, + STATE(4766), 1, aux_sym_val_binary_repeat1, - [125023] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4019), 1, - anon_sym_AT2, - ACTIONS(6047), 1, - anon_sym_EQ, - STATE(3297), 1, - sym_param_completer, - STATE(4435), 1, - sym_comment, - [125039] = 4, + [128706] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2598), 1, - sym__entry_separator, - STATE(4436), 1, - sym_comment, - ACTIONS(2600), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125053] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4019), 1, - anon_sym_AT2, - ACTIONS(8062), 1, - anon_sym_GT2, - STATE(4437), 1, - sym_comment, - STATE(5033), 1, - sym_param_completer, - [125069] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8048), 1, - sym_hex_digit, - ACTIONS(8064), 1, - anon_sym_RBRACK, - STATE(4438), 1, + ACTIONS(2555), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(3073), 1, + sym_block, + STATE(4531), 1, sym_comment, - STATE(4642), 1, - aux_sym_val_binary_repeat1, - [125085] = 4, + [128722] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2602), 1, + ACTIONS(2533), 1, sym__entry_separator, - STATE(4439), 1, + STATE(4532), 1, sym_comment, - ACTIONS(2604), 2, + ACTIONS(2535), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [125099] = 4, + [128736] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2606), 1, + ACTIONS(4328), 1, sym__entry_separator, - STATE(4440), 1, + ACTIONS(8163), 1, + anon_sym_GT2, + STATE(1971), 1, + aux_sym__types_body_repeat2, + STATE(4533), 1, sym_comment, - ACTIONS(2608), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125113] = 4, + [128752] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7215), 1, + ACTIONS(5235), 1, sym__entry_separator, - STATE(4441), 1, + STATE(4534), 1, sym_comment, - ACTIONS(7342), 2, + ACTIONS(5879), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125127] = 3, + anon_sym_GT2, + [128766] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4442), 1, + STATE(4535), 1, sym_comment, - ACTIONS(8014), 3, + ACTIONS(7913), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125139] = 3, + [128778] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4443), 1, + STATE(4536), 1, sym_comment, - ACTIONS(8014), 3, + ACTIONS(7915), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125151] = 3, - ACTIONS(3), 1, + [128790] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4444), 1, + ACTIONS(5275), 1, + sym__entry_separator, + STATE(4537), 1, sym_comment, - ACTIONS(8016), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125163] = 3, - ACTIONS(3), 1, + ACTIONS(5798), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [128804] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4445), 1, + ACTIONS(1713), 1, + sym__entry_separator, + STATE(4538), 1, sym_comment, - ACTIONS(8016), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125175] = 3, + ACTIONS(1614), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [128818] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4446), 1, + STATE(4539), 1, sym_comment, - ACTIONS(8016), 3, + ACTIONS(8064), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125187] = 5, + [128830] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4456), 1, + sym__entry_separator, + ACTIONS(8165), 1, + anon_sym_RBRACK, + STATE(2018), 1, + aux_sym__types_body_repeat2, + STATE(4540), 1, + sym_comment, + [128846] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5239), 1, + sym__entry_separator, + STATE(4541), 1, + sym_comment, + ACTIONS(5883), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [128860] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1812), 1, - anon_sym_LBRACE, - ACTIONS(1814), 1, - sym__unquoted_pattern, - ACTIONS(8066), 1, - aux_sym__immediate_decimal_token5, - STATE(4447), 1, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8167), 1, + anon_sym_RBRACK, + STATE(4542), 1, sym_comment, - [125203] = 5, + STATE(4708), 1, + aux_sym_val_binary_repeat1, + [128876] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4958), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(8068), 1, + ACTIONS(1624), 1, + anon_sym_COLON2, + STATE(1499), 1, + aux_sym__types_body_repeat2, + STATE(4543), 1, + sym_comment, + [128892] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5036), 1, + sym__entry_separator, + ACTIONS(8169), 1, anon_sym_GT2, - STATE(2363), 1, + STATE(2404), 1, aux_sym__types_body_repeat2, - STATE(4448), 1, + STATE(4544), 1, sym_comment, - [125219] = 4, + [128908] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7934), 1, + ACTIONS(5036), 1, sym__entry_separator, - STATE(4449), 1, + ACTIONS(8171), 1, + anon_sym_GT2, + STATE(2412), 1, + aux_sym__types_body_repeat2, + STATE(4545), 1, sym_comment, - ACTIONS(7014), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125233] = 4, + [128924] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5276), 1, + ACTIONS(5255), 1, sym__entry_separator, - STATE(4450), 1, + STATE(4546), 1, sym_comment, - ACTIONS(5278), 2, + ACTIONS(5815), 2, anon_sym_RBRACK, anon_sym_GT2, - [125247] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4451), 1, - sym_comment, - ACTIONS(8018), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125259] = 3, + [128938] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4452), 1, + STATE(4547), 1, sym_comment, - ACTIONS(8018), 3, - ts_builtin_sym_end, + ACTIONS(8173), 3, sym__newline, anon_sym_SEMI, - [125271] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + [128950] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4453), 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, - ACTIONS(7773), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125283] = 4, + [128966] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7854), 1, + ACTIONS(4456), 1, sym__entry_separator, - STATE(4454), 1, - sym_comment, - ACTIONS(8070), 2, + ACTIONS(8177), 1, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125297] = 4, + STATE(2119), 1, + aux_sym__types_body_repeat2, + STATE(4549), 1, + sym_comment, + [128982] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7265), 1, + ACTIONS(7943), 1, sym__entry_separator, - STATE(4455), 1, + STATE(4550), 1, sym_comment, - ACTIONS(7348), 2, + ACTIONS(8179), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [125311] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2950), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(4456), 1, - sym_comment, - STATE(4590), 1, - sym_block, - [125327] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8072), 1, - anon_sym_export, - ACTIONS(8074), 1, - anon_sym_def, - ACTIONS(8076), 1, - anon_sym_extern, - STATE(4457), 1, - sym_comment, - [125343] = 5, + [128996] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3454), 1, - sym__newline, - ACTIONS(3456), 1, - sym__space, - STATE(1396), 1, - aux_sym_pipe_element_parenthesized_repeat1, - STATE(4458), 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, - [125359] = 3, + [129012] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4459), 1, + STATE(4552), 1, sym_comment, - ACTIONS(8018), 3, - ts_builtin_sym_end, + ACTIONS(8183), 3, sym__newline, anon_sym_SEMI, - [125371] = 5, - ACTIONS(103), 1, + anon_sym_RPAREN, + [129024] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4958), 1, - sym__entry_separator, - ACTIONS(8078), 1, + ACTIONS(4052), 1, + anon_sym_AT2, + ACTIONS(8185), 1, anon_sym_GT2, - STATE(2385), 1, - aux_sym__types_body_repeat2, - STATE(4460), 1, + STATE(4553), 1, sym_comment, - [125387] = 5, + STATE(5368), 1, + sym_param_completer, + [129040] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4276), 1, + ACTIONS(2290), 1, sym__entry_separator, - ACTIONS(8080), 1, - anon_sym_RBRACK, - STATE(1953), 1, - aux_sym__types_body_repeat2, - STATE(4461), 1, + STATE(4554), 1, sym_comment, - [125403] = 5, + ACTIONS(2292), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [129054] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4019), 1, - anon_sym_AT2, - ACTIONS(8082), 1, - anon_sym_GT2, - STATE(4462), 1, + STATE(4555), 1, sym_comment, - STATE(4984), 1, - sym_param_completer, - [125419] = 5, + ACTIONS(7917), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [129066] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4958), 1, + ACTIONS(5281), 1, sym__entry_separator, - ACTIONS(8084), 1, - anon_sym_GT2, - STATE(2387), 1, - aux_sym__types_body_repeat2, - STATE(4463), 1, + STATE(4556), 1, sym_comment, - [125435] = 4, + ACTIONS(5817), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [129080] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5247), 1, + ACTIONS(2294), 1, sym__entry_separator, - STATE(4464), 1, + STATE(4557), 1, sym_comment, - ACTIONS(5245), 2, + ACTIONS(2296), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [125449] = 5, + [129094] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4276), 1, + ACTIONS(5294), 1, sym__entry_separator, - ACTIONS(8086), 1, + STATE(4558), 1, + sym_comment, + ACTIONS(5921), 2, + anon_sym_RBRACK, anon_sym_GT2, - STATE(1920), 1, - aux_sym__types_body_repeat2, - STATE(4465), 1, + [129108] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(8187), 1, + anon_sym_COLON, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(4559), 1, sym_comment, - [125465] = 5, - ACTIONS(103), 1, + [129124] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__entry_separator, - ACTIONS(8088), 1, - anon_sym_RBRACE, - STATE(1486), 1, - aux_sym__types_body_repeat2, - STATE(4466), 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, - [125481] = 3, + [129140] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4467), 1, + STATE(4561), 1, sym_comment, - ACTIONS(8018), 3, - ts_builtin_sym_end, + ACTIONS(8191), 3, sym__newline, anon_sym_SEMI, - [125493] = 5, - ACTIONS(103), 1, + anon_sym_RPAREN, + [129152] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4706), 1, - sym__entry_separator, - ACTIONS(8090), 1, - anon_sym_RBRACE, - STATE(2221), 1, - aux_sym__types_body_repeat2, - STATE(4468), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(3384), 1, + anon_sym_SEMI, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(4562), 1, sym_comment, - [125509] = 3, + [129168] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4469), 1, + STATE(4563), 1, sym_comment, - ACTIONS(8032), 3, + ACTIONS(7905), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125521] = 5, + [129180] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8193), 1, + anon_sym_RBRACK, + STATE(4564), 1, + sym_comment, + STATE(4599), 1, + aux_sym_val_binary_repeat1, + [129196] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(8195), 1, + anon_sym_RBRACK, + ACTIONS(8198), 1, + anon_sym_DOT_DOT, + ACTIONS(8200), 1, sym__entry_separator, - ACTIONS(8092), 1, - anon_sym_RBRACE, - STATE(1487), 1, - aux_sym__types_body_repeat2, - STATE(4470), 1, + STATE(4565), 1, sym_comment, - [125537] = 3, + [129212] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4471), 1, + STATE(4566), 1, sym_comment, - ACTIONS(8032), 3, + ACTIONS(7905), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125549] = 5, + [129224] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8094), 1, - anon_sym_RBRACK, - ACTIONS(8096), 1, - anon_sym_DOT_DOT, - STATE(4472), 1, + STATE(4567), 1, sym_comment, - STATE(5023), 1, - sym__match_pattern_rest, - [125565] = 3, + ACTIONS(7888), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [129236] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8203), 1, + anon_sym_DQUOTE, + STATE(4568), 1, + sym_comment, + ACTIONS(8205), 2, + sym__escaped_str_content, + sym_escape_sequence, + [129250] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4473), 1, + STATE(4569), 1, sym_comment, - ACTIONS(7888), 3, + ACTIONS(8025), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125577] = 3, + [129262] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4474), 1, + STATE(4570), 1, sym_comment, - ACTIONS(8098), 3, + ACTIONS(7981), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [129274] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4571), 1, + sym_comment, + ACTIONS(8207), 3, sym__newline, anon_sym_LBRACK, anon_sym_RBRACK, - [125589] = 5, + [129286] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(2632), 1, sym__entry_separator, - ACTIONS(8100), 1, - anon_sym_RBRACE, - STATE(1465), 1, - aux_sym__types_body_repeat2, - STATE(4475), 1, + STATE(4572), 1, sym_comment, - [125605] = 3, + ACTIONS(2634), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [129300] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4476), 1, + STATE(4573), 1, sym_comment, - ACTIONS(8034), 3, + ACTIONS(7848), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125617] = 4, + [129312] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1850), 1, - sym__entry_separator, - STATE(4477), 1, + STATE(4574), 1, sym_comment, - ACTIONS(1852), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125631] = 3, + ACTIONS(850), 3, + sym__newline, + sym__space, + anon_sym_COLON2, + [129324] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4478), 1, + STATE(4575), 1, sym_comment, - ACTIONS(7918), 3, + ACTIONS(7848), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125643] = 3, + [129336] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4479), 1, + STATE(4576), 1, + sym_comment, + ACTIONS(7937), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [129348] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4577), 1, + sym_comment, + ACTIONS(7933), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [129360] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4578), 1, sym_comment, - ACTIONS(4651), 3, + ACTIONS(8209), 3, + sym__newline, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [125655] = 3, + anon_sym_RBRACK, + [129372] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4480), 1, + STATE(4579), 1, sym_comment, - ACTIONS(7916), 3, + ACTIONS(7919), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125667] = 4, + [129384] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2586), 1, + ACTIONS(7945), 1, sym__entry_separator, - STATE(4481), 1, + STATE(4580), 1, sym_comment, - ACTIONS(2588), 2, + ACTIONS(8211), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [125681] = 5, + anon_sym_DOT_DOT, + [129398] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(858), 1, - anon_sym_RBRACK, - ACTIONS(884), 1, + ACTIONS(8060), 1, sym__entry_separator, - ACTIONS(6277), 1, - sym__unquoted_pattern_in_list, - STATE(4482), 1, + STATE(4581), 1, sym_comment, - [125697] = 3, + ACTIONS(7133), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [129412] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4483), 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(7782), 3, + ACTIONS(8033), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125709] = 3, + [129436] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4484), 1, + STATE(4584), 1, sym_comment, - ACTIONS(8034), 3, + ACTIONS(8033), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125721] = 5, + [129448] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4019), 1, - anon_sym_AT2, - ACTIONS(5834), 1, - anon_sym_EQ, - STATE(3311), 1, - sym_param_completer, - STATE(4485), 1, + STATE(4585), 1, + sym_comment, + ACTIONS(7888), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [129460] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8213), 1, + anon_sym_LPAREN, + STATE(4586), 1, + sym_comment, + ACTIONS(8215), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [129474] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(8217), 1, + anon_sym_RBRACE, + STATE(1493), 1, + aux_sym__types_body_repeat2, + STATE(4587), 1, sym_comment, - [125737] = 5, + [129490] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8048), 1, - sym_hex_digit, - ACTIONS(8102), 1, - anon_sym_RBRACK, - STATE(4486), 1, + STATE(4588), 1, sym_comment, - STATE(4642), 1, - aux_sym_val_binary_repeat1, - [125753] = 5, + ACTIONS(7977), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [129502] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8104), 1, - anon_sym_DOT, - ACTIONS(8106), 1, + ACTIONS(1744), 1, + anon_sym_LBRACE, + ACTIONS(1746), 1, + sym__unquoted_pattern, + ACTIONS(7903), 1, aux_sym__immediate_decimal_token5, - STATE(4487), 1, + STATE(4589), 1, + sym_comment, + [129518] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8220), 1, + anon_sym_LPAREN, + STATE(4590), 1, sym_comment, - [125769] = 5, + ACTIONS(8222), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [129532] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - ACTIONS(1776), 1, - sym__unquoted_pattern, - STATE(4488), 1, + STATE(4591), 1, sym_comment, - STATE(4712), 1, - sym__expr_parenthesized_immediate, - [125785] = 4, + ACTIONS(7890), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [129544] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2535), 1, + ACTIONS(4328), 1, sym__entry_separator, - STATE(4489), 1, - sym_comment, - ACTIONS(2537), 2, + ACTIONS(8224), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [125799] = 4, + STATE(1981), 1, + aux_sym__types_body_repeat2, + STATE(4592), 1, + sym_comment, + [129560] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2614), 1, + ACTIONS(7949), 1, sym__entry_separator, - STATE(4490), 1, + STATE(4593), 1, sym_comment, - ACTIONS(2616), 2, + ACTIONS(8198), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [125813] = 4, - ACTIONS(103), 1, + anon_sym_DOT_DOT, + [129574] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8108), 1, - sym__table_head_separator, - STATE(4491), 1, + STATE(4594), 1, sym_comment, - ACTIONS(1629), 2, - anon_sym_RBRACK, - sym__entry_separator, - [125827] = 5, - ACTIONS(103), 1, + ACTIONS(8226), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [129586] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4276), 1, - sym__entry_separator, - ACTIONS(8110), 1, - anon_sym_GT2, - STATE(1930), 1, - aux_sym__types_body_repeat2, - STATE(4492), 1, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + ACTIONS(6779), 1, + sym__unquoted_pattern_in_record, + STATE(4595), 1, sym_comment, - [125843] = 4, - ACTIONS(103), 1, + STATE(4903), 1, + sym__expr_parenthesized_immediate, + [129602] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5939), 1, - sym__entry_separator, - STATE(4493), 1, + STATE(4596), 1, sym_comment, - ACTIONS(5937), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125857] = 4, - ACTIONS(103), 1, + ACTIONS(8228), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [129614] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5263), 1, - sym__entry_separator, - STATE(4494), 1, + STATE(4597), 1, + sym_comment, + ACTIONS(7935), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [129626] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8232), 1, + anon_sym_COMMA, + STATE(4598), 1, sym_comment, - ACTIONS(5265), 2, + ACTIONS(8230), 2, anon_sym_RBRACK, - anon_sym_GT2, - [125871] = 4, + sym_hex_digit, + [129640] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8234), 1, + anon_sym_RBRACK, + STATE(4599), 1, + sym_comment, + STATE(4766), 1, + aux_sym_val_binary_repeat1, + [129656] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8112), 1, - anon_sym_LPAREN, - STATE(4495), 1, + 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(5197), 1, + anon_sym_LPAREN2, + ACTIONS(5207), 1, + sym__unquoted_pattern_in_record, + STATE(4601), 1, sym_comment, - ACTIONS(8114), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [125885] = 5, - ACTIONS(103), 1, + STATE(4854), 1, + sym__expr_parenthesized_immediate, + [129688] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4276), 1, - sym__entry_separator, - ACTIONS(8116), 1, - anon_sym_GT2, - STATE(1931), 1, - aux_sym__types_body_repeat2, - STATE(4496), 1, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(8236), 1, + anon_sym_COLON, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(4602), 1, sym_comment, - [125901] = 5, + [129704] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4276), 1, + ACTIONS(4328), 1, sym__entry_separator, - ACTIONS(8118), 1, + ACTIONS(8238), 1, anon_sym_RBRACK, - STATE(4175), 1, + STATE(4472), 1, aux_sym__types_body_repeat2, - STATE(4497), 1, + STATE(4603), 1, + sym_comment, + [129720] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4604), 1, sym_comment, - [125917] = 4, + ACTIONS(7977), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [129732] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5331), 1, + ACTIONS(866), 1, + anon_sym_RBRACE, + ACTIONS(886), 1, sym__entry_separator, - STATE(4498), 1, + ACTIONS(6779), 1, + sym__unquoted_pattern_in_record, + STATE(4605), 1, sym_comment, - ACTIONS(5333), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [125931] = 5, + [129748] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4019), 1, + ACTIONS(4052), 1, anon_sym_AT2, - ACTIONS(6009), 1, + ACTIONS(5776), 1, anon_sym_EQ, - STATE(3375), 1, + STATE(3168), 1, sym_param_completer, - STATE(4499), 1, + STATE(4606), 1, sym_comment, - [125947] = 5, + [129764] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4958), 1, + ACTIONS(4328), 1, sym__entry_separator, - ACTIONS(8120), 1, + ACTIONS(8240), 1, anon_sym_GT2, - STATE(2369), 1, - aux_sym__types_body_repeat2, - STATE(4500), 1, - sym_comment, - [125963] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4276), 1, - sym__entry_separator, - ACTIONS(8122), 1, - anon_sym_RBRACK, - STATE(1923), 1, + STATE(1985), 1, aux_sym__types_body_repeat2, - STATE(4501), 1, + STATE(4607), 1, sym_comment, - [125979] = 3, + [129780] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4502), 1, + STATE(4608), 1, sym_comment, - ACTIONS(8124), 3, + ACTIONS(8062), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [125991] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(4297), 1, - sym_block, - STATE(4503), 1, - sym_comment, - [126007] = 3, + [129792] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4504), 1, + STATE(4609), 1, sym_comment, - ACTIONS(7788), 3, + ACTIONS(8108), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126019] = 3, + [129804] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4505), 1, + STATE(4610), 1, sym_comment, - ACTIONS(8126), 3, + ACTIONS(8108), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126031] = 5, + [129816] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4276), 1, + ACTIONS(4328), 1, sym__entry_separator, - ACTIONS(8128), 1, + ACTIONS(8242), 1, anon_sym_RBRACK, - STATE(4413), 1, + STATE(1977), 1, aux_sym__types_body_repeat2, - STATE(4506), 1, + STATE(4611), 1, sym_comment, - [126047] = 3, + [129832] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4507), 1, + ACTIONS(3946), 1, + anon_sym_LBRACK, + STATE(4612), 1, + sym_comment, + STATE(4661), 1, + aux_sym__table_body_repeat1, + STATE(4706), 1, + sym_val_list, + [129848] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4613), 1, sym_comment, - ACTIONS(7788), 3, + ACTIONS(7890), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126059] = 5, + [129860] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4614), 1, + sym_comment, + ACTIONS(8244), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [129872] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4276), 1, + ACTIONS(4328), 1, sym__entry_separator, - ACTIONS(8130), 1, - anon_sym_RBRACK, - STATE(1924), 1, + ACTIONS(8246), 1, + anon_sym_GT2, + STATE(1976), 1, aux_sym__types_body_repeat2, - STATE(4508), 1, + STATE(4615), 1, sym_comment, - [126075] = 3, + [129888] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4509), 1, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8248), 1, + anon_sym_RBRACK, + STATE(4616), 1, sym_comment, - ACTIONS(7960), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126087] = 3, + STATE(4766), 1, + aux_sym_val_binary_repeat1, + [129904] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4510), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(5160), 1, + sym__unquoted_pattern, + STATE(4617), 1, sym_comment, - ACTIONS(7960), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126099] = 3, + STATE(4806), 1, + sym__expr_parenthesized_immediate, + [129920] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4511), 1, + STATE(4618), 1, sym_comment, - ACTIONS(7952), 3, + ACTIONS(8066), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126111] = 3, + [129932] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4512), 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(7952), 3, + ACTIONS(8066), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126123] = 3, + [129976] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4513), 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(8132), 3, + [129992] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [126135] = 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(4514), 1, + STATE(4624), 1, sym_comment, - ACTIONS(7954), 3, + ACTIONS(8120), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126147] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4276), 1, - sym__entry_separator, - ACTIONS(8134), 1, - anon_sym_GT2, - STATE(1938), 1, - aux_sym__types_body_repeat2, - STATE(4515), 1, - sym_comment, - [126163] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4369), 1, - sym__entry_separator, - ACTIONS(8136), 1, - anon_sym_RBRACK, - STATE(2001), 1, - aux_sym__types_body_repeat2, - STATE(4516), 1, - sym_comment, - [126179] = 3, + [130020] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4517), 1, + STATE(4625), 1, sym_comment, - ACTIONS(7954), 3, + ACTIONS(8120), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126191] = 5, + [130032] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4019), 1, - anon_sym_AT2, - ACTIONS(8138), 1, - anon_sym_GT2, - STATE(4518), 1, + STATE(4626), 1, sym_comment, - STATE(4970), 1, - sym_param_completer, - [126207] = 5, + ACTIONS(7939), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130044] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4369), 1, + ACTIONS(4420), 1, sym__entry_separator, - ACTIONS(8140), 1, + ACTIONS(8252), 1, anon_sym_RBRACK, - STATE(1974), 1, + STATE(2007), 1, aux_sym__types_body_repeat2, - STATE(4519), 1, + STATE(4627), 1, sym_comment, - [126223] = 5, + [130060] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3895), 1, - anon_sym_LBRACK, - STATE(4497), 1, - sym_val_list, - STATE(4520), 1, + STATE(4628), 1, sym_comment, - STATE(4542), 1, - aux_sym__table_body_repeat1, - [126239] = 5, - ACTIONS(103), 1, + ACTIONS(7848), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130072] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4380), 1, - sym__entry_separator, - ACTIONS(8142), 1, - anon_sym_RBRACK, - STATE(1977), 1, - aux_sym__types_body_repeat2, - STATE(4521), 1, + STATE(4629), 1, sym_comment, - [126255] = 4, + ACTIONS(7848), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130084] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8144), 1, - anon_sym_GT2, - STATE(4522), 1, + ACTIONS(8254), 1, + anon_sym_POUND_BANG, + ACTIONS(8256), 1, + sym__newline, + STATE(4630), 1, sym_comment, - ACTIONS(8146), 2, - anon_sym_AT2, - sym__entry_separator, - [126269] = 3, + STATE(4660), 1, + aux_sym__repeat_newline, + [130100] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4523), 1, + STATE(4631), 1, sym_comment, - ACTIONS(7910), 3, + ACTIONS(7979), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126281] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8048), 1, - sym_hex_digit, - ACTIONS(8148), 1, - anon_sym_RBRACK, - STATE(4524), 1, - sym_comment, - STATE(4642), 1, - aux_sym_val_binary_repeat1, - [126297] = 5, + [130112] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - ACTIONS(1828), 1, - sym__unquoted_pattern, - STATE(4525), 1, + STATE(4632), 1, sym_comment, - STATE(4762), 1, - sym__expr_parenthesized_immediate, - [126313] = 5, + ACTIONS(7850), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130124] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8150), 1, - anon_sym_RBRACK, - ACTIONS(8153), 1, - anon_sym_DOT_DOT, - ACTIONS(8155), 1, + ACTIONS(4420), 1, sym__entry_separator, - STATE(4526), 1, + ACTIONS(8258), 1, + anon_sym_RBRACK, + STATE(2023), 1, + aux_sym__types_body_repeat2, + STATE(4633), 1, sym_comment, - [126329] = 5, + [130140] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1754), 1, - anon_sym_LBRACE, - ACTIONS(7193), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8158), 1, - anon_sym_DOT, - STATE(4527), 1, + STATE(4634), 1, sym_comment, - [126345] = 5, + ACTIONS(8110), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130152] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7342), 1, - anon_sym_DOT_DOT, - ACTIONS(7510), 1, - anon_sym_RBRACK, - ACTIONS(7512), 1, + ACTIONS(4420), 1, sym__entry_separator, - STATE(4528), 1, - sym_comment, - [126361] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7348), 1, - anon_sym_DOT_DOT, - ACTIONS(7516), 1, + ACTIONS(8260), 1, anon_sym_RBRACK, - ACTIONS(7519), 1, - sym__entry_separator, - STATE(4529), 1, + STATE(2069), 1, + aux_sym__types_body_repeat2, + STATE(4635), 1, sym_comment, - [126377] = 5, + [130168] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(4420), 1, sym__entry_separator, - ACTIONS(8160), 1, - anon_sym_RBRACE, - STATE(1461), 1, + ACTIONS(8262), 1, + anon_sym_RBRACK, + STATE(2033), 1, aux_sym__types_body_repeat2, - STATE(4530), 1, + STATE(4636), 1, sym_comment, - [126393] = 3, + [130184] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4531), 1, + STATE(4637), 1, sym_comment, - ACTIONS(8004), 3, - ts_builtin_sym_end, + ACTIONS(8264), 3, sym__newline, anon_sym_SEMI, - [126405] = 3, + anon_sym_RPAREN, + [130196] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4532), 1, + STATE(4638), 1, sym_comment, - ACTIONS(8006), 3, + ACTIONS(7852), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126417] = 3, + [130208] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4533), 1, + STATE(4639), 1, sym_comment, - ACTIONS(8008), 3, + ACTIONS(7991), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126429] = 3, + [130220] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4534), 1, + STATE(4640), 1, sym_comment, - ACTIONS(8010), 3, + ACTIONS(7993), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126441] = 3, + [130232] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4535), 1, + STATE(4641), 1, sym_comment, - ACTIONS(8012), 3, + ACTIONS(7939), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126453] = 3, + [130244] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4536), 1, + STATE(4642), 1, sym_comment, - ACTIONS(7914), 3, + ACTIONS(7995), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126465] = 4, - ACTIONS(103), 1, + [130256] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2258), 1, - sym__entry_separator, - STATE(4537), 1, + STATE(4643), 1, sym_comment, - ACTIONS(2260), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [126479] = 3, + ACTIONS(8266), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [130268] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4538), 1, + STATE(4644), 1, sym_comment, - ACTIONS(7874), 3, + ACTIONS(8118), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126491] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2258), 1, - sym__entry_separator, - STATE(4539), 1, - sym_comment, - ACTIONS(2260), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [126505] = 3, + [130280] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4540), 1, + STATE(4645), 1, sym_comment, - ACTIONS(8163), 3, + ACTIONS(7979), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126517] = 5, + [130292] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4380), 1, + ACTIONS(8128), 1, sym__entry_separator, - ACTIONS(8165), 1, - anon_sym_RBRACK, - STATE(1978), 1, - aux_sym__types_body_repeat2, - STATE(4541), 1, + ACTIONS(8268), 1, + anon_sym_AT2, + STATE(4646), 1, sym_comment, - [126533] = 4, + STATE(4826), 1, + sym_param_completer, + [130308] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8167), 1, - anon_sym_LBRACK, - STATE(4750), 1, - sym_val_list, - STATE(4542), 2, + STATE(4647), 1, sym_comment, - aux_sym__table_body_repeat1, - [126547] = 5, + ACTIONS(7997), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130320] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8048), 1, - sym_hex_digit, - ACTIONS(8170), 1, + ACTIONS(8270), 1, anon_sym_RBRACK, - STATE(4543), 1, + ACTIONS(8272), 1, + anon_sym_DOT_DOT, + STATE(4648), 1, sym_comment, - STATE(4592), 1, - aux_sym_val_binary_repeat1, - [126563] = 3, + STATE(5340), 1, + sym__match_pattern_rest, + [130336] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4544), 1, + STATE(4649), 1, sym_comment, - ACTIONS(7912), 3, + ACTIONS(7999), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126575] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5311), 1, - sym__entry_separator, - STATE(4545), 1, - sym_comment, - ACTIONS(5313), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [126589] = 3, + [130348] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4546), 1, + STATE(4650), 1, sym_comment, - ACTIONS(8172), 3, + ACTIONS(7931), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126601] = 5, - ACTIONS(103), 1, + [130360] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(4298), 1, - sym_block, - STATE(4547), 1, + ACTIONS(8274), 1, + anon_sym_QMARK2, + STATE(4651), 1, sym_comment, - [126617] = 3, + ACTIONS(1450), 2, + sym__table_head_separator, + anon_sym_DOT2, + [130374] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4548), 1, + STATE(4652), 1, sym_comment, - ACTIONS(8020), 3, + ACTIONS(7983), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126629] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2950), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(3122), 1, - sym_block, - STATE(4549), 1, - sym_comment, - [126645] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1716), 1, - sym__entry_separator, - STATE(4550), 1, - sym_comment, - ACTIONS(1629), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [126659] = 3, + [130386] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4551), 1, + STATE(4653), 1, sym_comment, - ACTIONS(7954), 3, + ACTIONS(8118), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126671] = 3, + [130398] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4552), 1, + STATE(4654), 1, sym_comment, - ACTIONS(8022), 3, + ACTIONS(7892), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126683] = 4, + [130410] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7962), 1, - sym__entry_separator, - STATE(4553), 1, + STATE(4655), 1, sym_comment, - ACTIONS(8174), 2, + ACTIONS(1864), 3, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126697] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1637), 1, sym__entry_separator, - ACTIONS(7978), 1, - anon_sym_RBRACE, - STATE(1485), 1, - aux_sym__types_body_repeat2, - STATE(4554), 1, - sym_comment, - [126713] = 3, + sym__table_head_separator, + [130422] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4555), 1, + STATE(1387), 1, + aux_sym__block_body_repeat1, + STATE(4656), 1, sym_comment, - ACTIONS(8176), 3, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126725] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7964), 1, - sym__entry_separator, - STATE(4556), 1, - sym_comment, - ACTIONS(8178), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126739] = 4, - ACTIONS(103), 1, + [130436] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7968), 1, - sym__entry_separator, - STATE(4557), 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(8153), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126753] = 3, + [130452] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4558), 1, + STATE(4658), 1, sym_comment, - ACTIONS(8180), 3, + ACTIONS(7951), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_LBRACK, - anon_sym_RBRACK, - [126765] = 5, + anon_sym_SEMI, + [130464] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(858), 1, + ACTIONS(1616), 1, anon_sym_RBRACE, - ACTIONS(884), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(6693), 1, - sym__unquoted_pattern_in_record, - STATE(4559), 1, + STATE(1470), 1, + aux_sym__types_body_repeat2, + STATE(4659), 1, sym_comment, - [126781] = 5, + [130480] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4276), 1, - sym__entry_separator, - ACTIONS(8182), 1, - anon_sym_RBRACK, - STATE(1933), 1, - aux_sym__types_body_repeat2, - STATE(4560), 1, + ACTIONS(1966), 1, + anon_sym_POUND_BANG, + ACTIONS(8280), 1, + sym__newline, + STATE(4660), 2, + aux_sym__repeat_newline, sym_comment, - [126797] = 4, - ACTIONS(103), 1, + [130494] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2552), 1, - sym__entry_separator, - STATE(4561), 1, + ACTIONS(8283), 1, + anon_sym_LBRACK, + STATE(4918), 1, + sym_val_list, + STATE(4661), 2, sym_comment, - ACTIONS(2554), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [126811] = 3, + aux_sym__table_body_repeat1, + [130508] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4562), 1, + ACTIONS(4052), 1, + anon_sym_AT2, + ACTIONS(8286), 1, + anon_sym_GT2, + STATE(4662), 1, + sym_comment, + STATE(5347), 1, + sym_param_completer, + [130524] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4663), 1, sym_comment, - ACTIONS(7994), 3, + ACTIONS(7951), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126823] = 4, - ACTIONS(103), 1, + anon_sym_SEMI, + [130536] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8184), 1, - anon_sym_LPAREN, - STATE(4563), 1, + STATE(4664), 1, sym_comment, - ACTIONS(8186), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [126837] = 4, - ACTIONS(103), 1, + ACTIONS(7939), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [130548] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1926), 1, - anon_sym_POUND_BANG, - ACTIONS(8188), 1, + STATE(4665), 1, + sym_comment, + ACTIONS(8013), 3, + ts_builtin_sym_end, sym__newline, - STATE(4564), 2, - aux_sym__repeat_newline, + anon_sym_SEMI, + [130560] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8288), 1, + anon_sym_export, + ACTIONS(8290), 1, + anon_sym_def, + ACTIONS(8292), 1, + anon_sym_extern, + STATE(4666), 1, sym_comment, - [126851] = 3, + [130576] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4565), 1, + STATE(4667), 1, sym_comment, - ACTIONS(8014), 3, + ACTIONS(7939), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126863] = 3, + [130588] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4566), 1, + ACTIONS(7648), 1, + anon_sym_if, + ACTIONS(8294), 1, + anon_sym_EQ_GT, + STATE(4668), 1, sym_comment, - ACTIONS(7980), 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, - [126875] = 4, + anon_sym_RPAREN, + [130616] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5257), 1, + ACTIONS(7542), 1, + anon_sym_RBRACK, + ACTIONS(7544), 1, + anon_sym_DOT_DOT, + ACTIONS(7550), 1, sym__entry_separator, - STATE(4567), 1, + STATE(4670), 1, sym_comment, - ACTIONS(5259), 2, + [130632] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7552), 1, anon_sym_RBRACK, - anon_sym_GT2, - [126889] = 3, + ACTIONS(7555), 1, + anon_sym_DOT_DOT, + ACTIONS(7557), 1, + sym__entry_separator, + STATE(4671), 1, + sym_comment, + [130648] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4568), 1, + STATE(4672), 1, sym_comment, - ACTIONS(7946), 3, + ACTIONS(7941), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126901] = 5, - ACTIONS(3), 1, + [130660] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5126), 1, - anon_sym_LPAREN2, - ACTIONS(6693), 1, - sym__unquoted_pattern_in_record, - STATE(4569), 1, + ACTIONS(8298), 1, + anon_sym_GT2, + STATE(4673), 1, sym_comment, - STATE(4815), 1, - sym__expr_parenthesized_immediate, - [126917] = 3, + ACTIONS(8300), 2, + anon_sym_AT2, + sym__entry_separator, + [130674] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4570), 1, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8302), 1, + anon_sym_RBRACK, + STATE(4674), 1, sym_comment, - ACTIONS(4555), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [126929] = 4, + STATE(4684), 1, + aux_sym_val_binary_repeat1, + [130690] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2266), 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(4571), 1, + STATE(4676), 1, sym_comment, - ACTIONS(2268), 2, + ACTIONS(2583), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [126943] = 5, + [130720] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4706), 1, + ACTIONS(2593), 1, + sym__entry_separator, + STATE(4677), 1, + sym_comment, + ACTIONS(2595), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [130734] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(4726), 1, + ACTIONS(7899), 1, anon_sym_RBRACE, - STATE(2222), 1, + STATE(1482), 1, aux_sym__types_body_repeat2, - STATE(4572), 1, + STATE(4678), 1, sym_comment, - [126959] = 4, + [130750] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2270), 1, + ACTIONS(4780), 1, sym__entry_separator, - STATE(4573), 1, - sym_comment, - ACTIONS(2272), 2, - anon_sym_RBRACK, + ACTIONS(4786), 1, anon_sym_RBRACE, - [126973] = 4, + STATE(2255), 1, + aux_sym__types_body_repeat2, + STATE(4679), 1, + sym_comment, + [130766] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1876), 1, + ACTIONS(2276), 1, sym__entry_separator, - STATE(4574), 1, + STATE(4680), 1, sym_comment, - ACTIONS(1878), 2, + ACTIONS(2278), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126987] = 5, + anon_sym_RBRACE, + [130780] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_RBRACE, - ACTIONS(4706), 1, + ACTIONS(4328), 1, sym__entry_separator, - STATE(2227), 1, + ACTIONS(8304), 1, + anon_sym_GT2, + STATE(1947), 1, aux_sym__types_body_repeat2, - STATE(4575), 1, + STATE(4681), 1, sym_comment, - [127003] = 3, - ACTIONS(3), 1, + [130796] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4576), 1, + ACTIONS(4780), 1, + sym__entry_separator, + ACTIONS(8306), 1, + anon_sym_RBRACE, + STATE(2257), 1, + aux_sym__types_body_repeat2, + STATE(4682), 1, sym_comment, - ACTIONS(7882), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [127015] = 5, + [130812] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8191), 1, - anon_sym_POUND_BANG, - ACTIONS(8193), 1, - sym__newline, - STATE(4564), 1, - aux_sym__repeat_newline, - STATE(4577), 1, + ACTIONS(2276), 1, + sym__entry_separator, + STATE(4683), 1, sym_comment, - [127031] = 3, + ACTIONS(2278), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [130826] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4578), 1, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8308), 1, + anon_sym_RBRACK, + STATE(4684), 1, sym_comment, - ACTIONS(7908), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [127043] = 3, + STATE(4766), 1, + aux_sym_val_binary_repeat1, + [130842] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4579), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(5071), 1, + sym__unquoted_pattern, + STATE(4685), 1, sym_comment, - ACTIONS(7773), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [127055] = 5, + STATE(4929), 1, + sym__expr_parenthesized_immediate, + [130858] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8048), 1, - sym_hex_digit, - ACTIONS(8195), 1, - anon_sym_RBRACK, - STATE(4524), 1, - aux_sym_val_binary_repeat1, - STATE(4580), 1, + ACTIONS(4052), 1, + anon_sym_AT2, + ACTIONS(5778), 1, + anon_sym_EQ, + STATE(3195), 1, + sym_param_completer, + STATE(4686), 1, sym_comment, - [127071] = 3, - ACTIONS(3), 1, + [130874] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4581), 1, + ACTIONS(1622), 1, + sym__entry_separator, + ACTIONS(8310), 1, + anon_sym_RBRACE, + STATE(1473), 1, + aux_sym__types_body_repeat2, + STATE(4687), 1, sym_comment, - ACTIONS(7938), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [127083] = 5, - ACTIONS(103), 1, + [130890] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2950), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(4568), 1, - sym_block, - STATE(4582), 1, + ACTIONS(4052), 1, + anon_sym_AT2, + ACTIONS(8312), 1, + anon_sym_GT2, + STATE(4688), 1, sym_comment, - [127099] = 3, + STATE(5351), 1, + sym_param_completer, + [130906] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4583), 1, + STATE(4689), 1, sym_comment, - ACTIONS(8034), 3, + ACTIONS(7927), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127111] = 3, + [130918] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4584), 1, + ACTIONS(4052), 1, + anon_sym_AT2, + ACTIONS(8314), 1, + anon_sym_GT2, + STATE(4690), 1, sym_comment, - ACTIONS(8197), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [127123] = 3, + STATE(5089), 1, + sym_param_completer, + [130934] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4585), 1, + STATE(4691), 1, sym_comment, - ACTIONS(8034), 3, + ACTIONS(7929), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127135] = 3, - ACTIONS(3), 1, + [130946] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4586), 1, + ACTIONS(6100), 1, + sym__entry_separator, + STATE(4692), 1, sym_comment, - ACTIONS(7956), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [127147] = 5, + ACTIONS(6098), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [130960] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4019), 1, - anon_sym_AT2, - ACTIONS(6009), 1, - anon_sym_EQ, - STATE(3386), 1, - sym_param_completer, - STATE(4587), 1, + ACTIONS(6479), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6670), 1, + anon_sym_LPAREN2, + STATE(4693), 1, sym_comment, - [127163] = 3, - ACTIONS(3), 1, + STATE(4803), 1, + sym__expr_parenthesized_immediate, + [130976] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4588), 1, + ACTIONS(4328), 1, + sym__entry_separator, + ACTIONS(8316), 1, + anon_sym_RBRACK, + STATE(4231), 1, + aux_sym__types_body_repeat2, + STATE(4694), 1, sym_comment, - ACTIONS(7956), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [127175] = 3, - ACTIONS(3), 1, + [130992] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4589), 1, + 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, - ACTIONS(8036), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [127187] = 3, + [131008] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4590), 1, + STATE(4696), 1, sym_comment, - ACTIONS(7948), 3, + ACTIONS(7888), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127199] = 4, + [131020] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8201), 1, - anon_sym_COMMA, - STATE(4591), 1, - sym_comment, - ACTIONS(8199), 2, + ACTIONS(8320), 1, anon_sym_RBRACK, - sym_hex_digit, - [127213] = 5, + ACTIONS(8322), 1, + anon_sym_DOT_DOT, + STATE(4697), 1, + sym_comment, + STATE(5110), 1, + sym__match_pattern_rest, + [131036] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8048), 1, - sym_hex_digit, - ACTIONS(8203), 1, - anon_sym_RBRACK, - STATE(4592), 1, + STATE(4698), 1, sym_comment, - STATE(4642), 1, - aux_sym_val_binary_repeat1, - [127229] = 3, + ACTIONS(7888), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [131048] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4593), 1, + STATE(4699), 1, sym_comment, - ACTIONS(7906), 3, + ACTIONS(7941), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127241] = 4, + [131060] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8058), 1, - anon_sym_BANG, - STATE(4594), 1, + STATE(4700), 1, sym_comment, - ACTIONS(1458), 2, - sym__table_head_separator, - anon_sym_DOT2, - [127255] = 5, + ACTIONS(7890), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [131072] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4380), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(8205), 1, - anon_sym_RBRACK, - STATE(2005), 1, + ACTIONS(7955), 1, + anon_sym_RBRACE, + STATE(1487), 1, aux_sym__types_body_repeat2, - STATE(4595), 1, + STATE(4701), 1, sym_comment, - [127271] = 5, + [131088] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(2960), 1, - sym_block, - STATE(4596), 1, + ACTIONS(1878), 1, + sym__entry_separator, + STATE(4702), 1, sym_comment, - [127287] = 3, + ACTIONS(1880), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131102] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4597), 1, + STATE(4703), 1, sym_comment, - ACTIONS(8036), 3, + ACTIONS(8090), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127299] = 3, + [131114] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4598), 1, + STATE(4704), 1, sym_comment, - ACTIONS(8038), 3, + ACTIONS(7985), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127311] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5126), 1, - anon_sym_LPAREN2, - ACTIONS(5136), 1, - sym__unquoted_pattern_in_record, - STATE(4599), 1, - sym_comment, - STATE(4773), 1, - sym__expr_parenthesized_immediate, - [127327] = 3, + [131126] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4600), 1, + STATE(4705), 1, sym_comment, - ACTIONS(8038), 3, + ACTIONS(7985), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127339] = 4, + [131138] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5964), 1, + ACTIONS(4328), 1, sym__entry_separator, - STATE(4601), 1, - sym_comment, - ACTIONS(5962), 2, + ACTIONS(8324), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [127353] = 5, + STATE(4361), 1, + aux_sym__types_body_repeat2, + STATE(4706), 1, + sym_comment, + [131154] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_AT2, + ACTIONS(5772), 1, + anon_sym_EQ, + STATE(3107), 1, + sym_param_completer, + STATE(4707), 1, + sym_comment, + [131170] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8048), 1, + ACTIONS(8151), 1, sym_hex_digit, - ACTIONS(8207), 1, + ACTIONS(8326), 1, anon_sym_RBRACK, - STATE(4602), 1, + STATE(4708), 1, sym_comment, - STATE(4621), 1, + STATE(4766), 1, aux_sym_val_binary_repeat1, - [127369] = 3, + [131186] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4603), 1, + STATE(4709), 1, sym_comment, - ACTIONS(7908), 3, + ACTIONS(7941), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127381] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1748), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8209), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8211), 1, - aux_sym__immediate_decimal_token5, - STATE(4604), 1, - sym_comment, - [127397] = 5, + [131198] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4276), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(7820), 1, - anon_sym_LBRACK, - STATE(1873), 1, + ACTIONS(7961), 1, + anon_sym_RBRACE, + STATE(1476), 1, aux_sym__types_body_repeat2, - STATE(4605), 1, - sym_comment, - [127413] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4606), 1, + STATE(4710), 1, sym_comment, - ACTIONS(8213), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [127425] = 3, + [131214] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4607), 1, + STATE(4711), 1, sym_comment, - ACTIONS(8044), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [127437] = 3, + ACTIONS(4718), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [131226] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4608), 1, + STATE(4712), 1, sym_comment, - ACTIONS(2140), 3, + ACTIONS(4722), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [127449] = 3, + [131238] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4609), 1, + STATE(4713), 1, sym_comment, - ACTIONS(8215), 3, + ACTIONS(7890), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [127461] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7749), 1, - sym__entry_separator, - STATE(4610), 1, - sym_comment, - ACTIONS(8217), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [127475] = 3, + [131250] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4611), 1, + STATE(4714), 1, sym_comment, - ACTIONS(8219), 3, + ACTIONS(7951), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [127487] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7749), 1, - sym__entry_separator, - STATE(4612), 1, - sym_comment, - ACTIONS(8217), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [127501] = 3, + [131262] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4613), 1, + STATE(4715), 1, sym_comment, - ACTIONS(8221), 3, + ACTIONS(7892), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [127513] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7753), 1, - sym__entry_separator, - STATE(4614), 1, - sym_comment, - ACTIONS(8223), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [127527] = 3, + [131274] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4615), 1, + STATE(4716), 1, sym_comment, - ACTIONS(7882), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [127539] = 4, + ACTIONS(4732), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [131286] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1383), 1, - aux_sym__block_body_repeat1, - STATE(4616), 1, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8328), 1, + anon_sym_RBRACK, + STATE(4717), 1, sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - [127553] = 5, - ACTIONS(3), 1, + STATE(4722), 1, + aux_sym_val_binary_repeat1, + [131302] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3895), 1, - anon_sym_LBRACK, - STATE(4542), 1, - aux_sym__table_body_repeat1, - STATE(4617), 1, + ACTIONS(7874), 1, + sym__entry_separator, + STATE(4718), 1, sym_comment, - STATE(4638), 1, - sym_val_list, - [127569] = 3, + ACTIONS(8330), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131316] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4618), 1, + STATE(4719), 1, sym_comment, - ACTIONS(8014), 3, + ACTIONS(7892), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127581] = 5, + [131328] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4380), 1, + ACTIONS(7874), 1, sym__entry_separator, - ACTIONS(8225), 1, - anon_sym_RBRACK, - STATE(2109), 1, - aux_sym__types_body_repeat2, - STATE(4619), 1, + STATE(4720), 1, sym_comment, - [127597] = 3, + ACTIONS(8330), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131342] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4620), 1, + ACTIONS(7894), 1, + sym__entry_separator, + STATE(4721), 1, sym_comment, - ACTIONS(850), 3, - sym__newline, - sym__space, - anon_sym_COLON2, - [127609] = 5, + ACTIONS(8332), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131356] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8048), 1, + ACTIONS(8151), 1, sym_hex_digit, - ACTIONS(8227), 1, + ACTIONS(8334), 1, anon_sym_RBRACK, - STATE(4621), 1, + STATE(4722), 1, sym_comment, - STATE(4642), 1, + STATE(4766), 1, aux_sym_val_binary_repeat1, - [127625] = 5, + [131372] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4597), 1, + sym_block, + STATE(4723), 1, + sym_comment, + [131388] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - sym__unquoted_pattern, - STATE(4622), 1, + STATE(4724), 1, sym_comment, - STATE(4671), 1, - sym__expr_parenthesized_immediate, - [127641] = 3, + ACTIONS(7969), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [131400] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4623), 1, + STATE(4725), 1, sym_comment, - ACTIONS(7902), 3, + ACTIONS(7951), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127653] = 3, + [131412] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4624), 1, + STATE(4726), 1, sym_comment, - ACTIONS(7922), 3, + ACTIONS(7973), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127665] = 4, + [131424] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8229), 1, - anon_sym_DQUOTE, - STATE(4625), 1, + ACTIONS(4328), 1, + sym__entry_separator, + ACTIONS(8336), 1, + anon_sym_RBRACK, + STATE(4473), 1, + aux_sym__types_body_repeat2, + STATE(4727), 1, sym_comment, - ACTIONS(8231), 2, - sym__escaped_str_content, - sym_escape_sequence, - [127679] = 3, + [131440] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4626), 1, + STATE(4728), 1, sym_comment, - ACTIONS(7888), 3, + ACTIONS(8092), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127691] = 5, + [131452] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4369), 1, + ACTIONS(4778), 1, + anon_sym_RBRACE, + ACTIONS(4780), 1, sym__entry_separator, - ACTIONS(8233), 1, - anon_sym_RBRACK, - STATE(2002), 1, + STATE(2256), 1, aux_sym__types_body_repeat2, - STATE(4627), 1, + STATE(4729), 1, sym_comment, - [127707] = 5, - ACTIONS(3), 1, + [131468] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(3470), 1, sym__newline, - ACTIONS(3365), 1, - anon_sym_SEMI, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(4628), 1, + ACTIONS(3472), 1, + sym__space, + STATE(1406), 1, + aux_sym_pipe_element_parenthesized_repeat1, + STATE(4730), 1, sym_comment, - [127723] = 5, + [131484] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4369), 1, + ACTIONS(2282), 1, sym__entry_separator, - ACTIONS(8235), 1, - anon_sym_RBRACK, - STATE(2103), 1, - aux_sym__types_body_repeat2, - STATE(4629), 1, + STATE(4731), 1, sym_comment, - [127739] = 3, + ACTIONS(2284), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [131498] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4630), 1, + STATE(4732), 1, sym_comment, - ACTIONS(7882), 3, - ts_builtin_sym_end, + ACTIONS(8338), 3, sym__newline, anon_sym_SEMI, - [127751] = 3, + anon_sym_RPAREN, + [131510] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4631), 1, + STATE(4733), 1, sym_comment, - ACTIONS(7940), 3, - ts_builtin_sym_end, + ACTIONS(8340), 3, sym__newline, anon_sym_SEMI, - [127763] = 5, + anon_sym_RPAREN, + [131522] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8237), 1, + ACTIONS(8342), 1, anon_sym_export, - ACTIONS(8239), 1, + ACTIONS(8344), 1, anon_sym_def, - ACTIONS(8241), 1, + ACTIONS(8346), 1, anon_sym_extern, - STATE(4632), 1, + STATE(4734), 1, sym_comment, - [127779] = 3, - ACTIONS(3), 1, + [131538] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4633), 1, + ACTIONS(2286), 1, + sym__entry_separator, + STATE(4735), 1, sym_comment, - ACTIONS(4655), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [127791] = 5, - ACTIONS(3), 1, + ACTIONS(2288), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [131552] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(8243), 1, - anon_sym_COLON, - STATE(507), 1, - aux_sym__repeat_newline, - STATE(4634), 1, + ACTIONS(7363), 1, + sym__entry_separator, + STATE(4736), 1, sym_comment, - [127807] = 5, - ACTIONS(3), 1, + ACTIONS(7544), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131566] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6277), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6575), 1, - anon_sym_LPAREN2, - STATE(4635), 1, + ACTIONS(8116), 1, + sym__entry_separator, + STATE(4737), 1, sym_comment, - STATE(4728), 1, - sym__expr_parenthesized_immediate, - [127823] = 3, + ACTIONS(8348), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131580] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4577), 1, + sym_block, + STATE(4738), 1, + sym_comment, + [131596] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4636), 1, + STATE(4739), 1, sym_comment, - ACTIONS(8040), 3, + ACTIONS(7973), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127835] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8048), 1, - sym_hex_digit, - ACTIONS(8245), 1, - anon_sym_RBRACK, - STATE(4637), 1, - sym_comment, - STATE(4648), 1, - aux_sym_val_binary_repeat1, - [127851] = 5, + [131608] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4276), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(8247), 1, - anon_sym_RBRACK, - STATE(4373), 1, + ACTIONS(8350), 1, + anon_sym_RBRACE, + STATE(1492), 1, aux_sym__types_body_repeat2, - STATE(4638), 1, + STATE(4740), 1, sym_comment, - [127867] = 5, + [131624] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__entry_separator, - ACTIONS(7755), 1, - anon_sym_RBRACE, - STATE(1467), 1, - aux_sym__types_body_repeat2, - STATE(4639), 1, + STATE(4741), 1, sym_comment, - [127883] = 3, - ACTIONS(3), 1, + ACTIONS(2622), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [131636] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4640), 1, + ACTIONS(7268), 1, + sym__entry_separator, + STATE(4742), 1, sym_comment, - ACTIONS(8040), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [127895] = 5, + ACTIONS(7555), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131650] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4276), 1, + ACTIONS(1892), 1, sym__entry_separator, - ACTIONS(8249), 1, - anon_sym_RBRACK, - STATE(4167), 1, - aux_sym__types_body_repeat2, - STATE(4641), 1, + STATE(4743), 1, sym_comment, - [127911] = 4, + ACTIONS(1894), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [131664] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8251), 1, - anon_sym_RBRACK, - ACTIONS(8253), 1, - sym_hex_digit, - STATE(4642), 2, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + ACTIONS(1820), 1, + sym__unquoted_pattern, + STATE(4744), 1, sym_comment, - aux_sym_val_binary_repeat1, - [127925] = 3, + STATE(4881), 1, + sym__expr_parenthesized_immediate, + [131680] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4643), 1, + STATE(4745), 1, sym_comment, - ACTIONS(7906), 3, + ACTIONS(7977), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127937] = 3, + [131692] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4644), 1, + STATE(4746), 1, sym_comment, - ACTIONS(7882), 3, + ACTIONS(7977), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127949] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7870), 1, - anon_sym_LPAREN, - STATE(4645), 1, - sym_comment, - ACTIONS(7872), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [127963] = 3, + [131704] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4646), 1, + STATE(4747), 1, sym_comment, - ACTIONS(4659), 3, + ACTIONS(2142), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [127975] = 3, + [131716] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4647), 1, + STATE(4748), 1, sym_comment, - ACTIONS(7950), 3, - ts_builtin_sym_end, + ACTIONS(8353), 3, sym__newline, anon_sym_SEMI, - [127987] = 5, + anon_sym_RPAREN, + [131728] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4328), 1, + sym__entry_separator, + ACTIONS(7870), 1, + anon_sym_LBRACK, + STATE(1881), 1, + aux_sym__types_body_repeat2, + STATE(4749), 1, + sym_comment, + [131744] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8048), 1, - sym_hex_digit, - ACTIONS(8256), 1, - anon_sym_RBRACK, - STATE(4642), 1, - aux_sym_val_binary_repeat1, - STATE(4648), 1, + STATE(4750), 1, + sym_comment, + ACTIONS(8355), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [131756] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4751), 1, sym_comment, - [128003] = 4, + ACTIONS(8357), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [131768] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2284), 1, + ACTIONS(5036), 1, sym__entry_separator, - STATE(4649), 1, + ACTIONS(8359), 1, + anon_sym_GT2, + STATE(2418), 1, + aux_sym__types_body_repeat2, + STATE(4752), 1, sym_comment, - ACTIONS(2286), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [128017] = 4, + [131784] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2288), 1, + ACTIONS(2664), 1, sym__entry_separator, - STATE(4650), 1, + STATE(4753), 1, sym_comment, - ACTIONS(2290), 2, + ACTIONS(2666), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [128031] = 5, + [131798] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8361), 1, + anon_sym_RBRACK, + STATE(4754), 1, + sym_comment, + STATE(4762), 1, + aux_sym_val_binary_repeat1, + [131814] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8274), 1, + anon_sym_BANG, + STATE(4755), 1, + sym_comment, + ACTIONS(1450), 2, + sym__table_head_separator, + anon_sym_DOT2, + [131828] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(5036), 1, sym__entry_separator, - ACTIONS(8258), 1, - anon_sym_RBRACE, - STATE(1469), 1, + ACTIONS(8363), 1, + anon_sym_GT2, + STATE(2400), 1, aux_sym__types_body_repeat2, - STATE(4651), 1, + STATE(4756), 1, sym_comment, - [128047] = 3, + [131844] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4652), 1, + ACTIONS(3148), 1, + anon_sym_RPAREN, + STATE(4757), 1, sym_comment, - ACTIONS(7998), 3, - ts_builtin_sym_end, + ACTIONS(2952), 2, sym__newline, anon_sym_SEMI, - [128059] = 3, + [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, - STATE(4653), 1, + ACTIONS(1746), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8365), 1, + anon_sym_DOT, + ACTIONS(8367), 1, + aux_sym__immediate_decimal_token5, + STATE(4759), 1, sym_comment, - ACTIONS(8260), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [128071] = 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(4654), 1, + STATE(4761), 1, sym_comment, - ACTIONS(7942), 3, + ACTIONS(7941), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [128083] = 5, + [131916] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7354), 1, - anon_sym_if, - ACTIONS(8262), 1, - anon_sym_EQ_GT, - STATE(4655), 1, + ACTIONS(8151), 1, + sym_hex_digit, + ACTIONS(8369), 1, + anon_sym_RBRACK, + STATE(4762), 1, sym_comment, - STATE(4891), 1, - sym_match_guard, - [128099] = 3, + STATE(4766), 1, + aux_sym_val_binary_repeat1, + [131932] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4656), 1, + STATE(4763), 1, sym_comment, - ACTIONS(7976), 3, + ACTIONS(8094), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [128111] = 5, + [131944] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(8371), 1, + anon_sym_COLON, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(4764), 1, + sym_comment, + [131960] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1631), 1, - anon_sym_RBRACE, - ACTIONS(1637), 1, + ACTIONS(2608), 1, sym__entry_separator, - STATE(1460), 1, - aux_sym__types_body_repeat2, - STATE(4657), 1, + STATE(4765), 1, sym_comment, - [128127] = 5, + ACTIONS(2610), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [131974] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8264), 1, + ACTIONS(8373), 1, anon_sym_RBRACK, - ACTIONS(8266), 1, - anon_sym_DOT_DOT, - STATE(4658), 1, + ACTIONS(8375), 1, + sym_hex_digit, + STATE(4766), 2, sym_comment, - STATE(5074), 1, - sym__match_pattern_rest, - [128143] = 3, + aux_sym_val_binary_repeat1, + [131988] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4659), 1, + ACTIONS(8001), 1, + anon_sym_LPAREN, + STATE(4767), 1, sym_comment, - ACTIONS(1890), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [128155] = 3, + ACTIONS(8003), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [132002] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4660), 1, + STATE(4768), 1, sym_comment, - ACTIONS(7998), 3, + ACTIONS(8096), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [128167] = 3, + [132014] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3946), 1, + anon_sym_LBRACK, STATE(4661), 1, + aux_sym__table_body_repeat1, + STATE(4727), 1, + sym_val_list, + STATE(4769), 1, sym_comment, - ACTIONS(7986), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [128179] = 3, - ACTIONS(3), 1, + [132030] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4662), 1, + ACTIONS(5416), 1, + sym__entry_separator, + STATE(4770), 1, sym_comment, - ACTIONS(7880), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [128191] = 3, - ACTIONS(3), 1, + ACTIONS(5414), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [132044] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4663), 1, + ACTIONS(8378), 1, + sym__table_head_separator, + STATE(4771), 1, sym_comment, - ACTIONS(3258), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [128203] = 3, + ACTIONS(1614), 2, + anon_sym_RBRACK, + sym__entry_separator, + [132058] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4664), 1, + STATE(4772), 1, sym_comment, - ACTIONS(7952), 3, + ACTIONS(7921), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [128215] = 5, + [132070] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, + ACTIONS(7911), 1, sym__entry_separator, - ACTIONS(8268), 1, - anon_sym_RBRACE, - STATE(1462), 1, - aux_sym__types_body_repeat2, - STATE(4665), 1, + ACTIONS(8380), 1, + anon_sym_COLON, + STATE(4773), 1, sym_comment, - [128231] = 3, + STATE(4922), 1, + sym__collection_annotation, + [132086] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4666), 1, + STATE(4774), 1, sym_comment, - ACTIONS(7952), 3, + ACTIONS(7937), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [128243] = 5, + [132098] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7928), 1, + ACTIONS(6181), 1, sym__entry_separator, - ACTIONS(8271), 1, + STATE(4775), 1, + sym_comment, + ACTIONS(6179), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [132112] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2907), 1, + sym__newline, + ACTIONS(8382), 1, anon_sym_COLON, - STATE(4667), 1, + STATE(527), 1, + aux_sym__repeat_newline, + STATE(4776), 1, sym_comment, - STATE(4744), 1, - sym__collection_annotation, - [128259] = 4, + [132128] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4456), 1, + sym__entry_separator, + ACTIONS(8384), 1, + anon_sym_RBRACK, + STATE(2017), 1, + aux_sym__types_body_repeat2, + STATE(4777), 1, + sym_comment, + [132144] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3258), 1, - anon_sym_RPAREN, - STATE(4668), 1, + STATE(4778), 1, sym_comment, - ACTIONS(2927), 2, + ACTIONS(7983), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [128273] = 5, + [132156] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1983), 1, + sym__unquoted_pattern, + ACTIONS(2597), 1, + anon_sym_LBRACE, + STATE(4779), 1, + sym_comment, + [132169] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7846), 1, + ACTIONS(8386), 1, + anon_sym_RBRACE, + ACTIONS(8388), 1, sym__entry_separator, - ACTIONS(8273), 1, - anon_sym_AT2, - STATE(4669), 1, + STATE(4780), 1, sym_comment, - STATE(4837), 1, - sym_param_completer, - [128289] = 4, + [132182] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8275), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4670), 1, + ACTIONS(8390), 1, + anon_sym_LPAREN2, + ACTIONS(8392), 1, + aux_sym__record_key_token1, + STATE(4781), 1, sym_comment, - STATE(4686), 1, - aux_sym__unquoted_with_expr_repeat1, - [128302] = 4, + [132195] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8277), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4671), 1, + ACTIONS(7714), 1, + anon_sym_RBRACE, + ACTIONS(7716), 1, + sym__entry_separator, + STATE(4782), 1, sym_comment, - STATE(4674), 1, - aux_sym__unquoted_with_expr_repeat1, - [128315] = 4, + [132208] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8279), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4672), 1, + ACTIONS(8394), 1, + anon_sym_RBRACE, + ACTIONS(8396), 1, + sym__entry_separator, + STATE(4783), 1, sym_comment, - STATE(4675), 1, - aux_sym__unquoted_with_expr_repeat1, - [128328] = 4, + [132221] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8281), 1, + ACTIONS(7720), 1, anon_sym_RBRACE, - ACTIONS(8283), 1, + ACTIONS(7722), 1, sym__entry_separator, - STATE(4673), 1, + STATE(4784), 1, sym_comment, - [128341] = 4, + [132234] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8285), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4674), 1, + ACTIONS(8398), 1, + anon_sym_RBRACE, + ACTIONS(8400), 1, + sym__entry_separator, + STATE(4785), 1, sym_comment, - STATE(4814), 1, - aux_sym__unquoted_with_expr_repeat1, - [128354] = 4, + [132247] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8287), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4675), 1, + ACTIONS(3516), 1, + sym__space, + STATE(1417), 1, + aux_sym_pipe_element_repeat1, + STATE(4786), 1, sym_comment, - STATE(4814), 1, - aux_sym__unquoted_with_expr_repeat1, - [128367] = 4, + [132260] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7610), 1, + ACTIONS(8402), 1, + sym__newline, + ACTIONS(8404), 1, + sym__space, + STATE(4787), 1, + sym_comment, + [132273] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7808), 1, anon_sym_RBRACE, - ACTIONS(7612), 1, + ACTIONS(7810), 1, sym__entry_separator, - STATE(4676), 1, + STATE(4788), 1, sym_comment, - [128380] = 4, + [132286] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8289), 1, - anon_sym_RBRACE, - ACTIONS(8291), 1, + ACTIONS(4780), 1, sym__entry_separator, - STATE(4677), 1, + STATE(2264), 1, + aux_sym__types_body_repeat2, + STATE(4789), 1, sym_comment, - [128393] = 4, + [132299] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1030), 1, + ACTIONS(2589), 1, anon_sym_LBRACE, - ACTIONS(2558), 1, + ACTIONS(2646), 1, sym__unquoted_pattern, - STATE(4678), 1, + STATE(4790), 1, sym_comment, - [128406] = 4, + [132312] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, - anon_sym_LBRACE, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(4679), 1, + ACTIONS(6670), 1, + anon_sym_LPAREN2, + STATE(4791), 1, sym_comment, - [128419] = 4, - ACTIONS(103), 1, + STATE(5208), 1, + sym__expr_parenthesized_immediate, + [132325] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8293), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4680), 1, + ACTIONS(8406), 1, + anon_sym_DASH2, + STATE(4792), 1, sym_comment, - STATE(4778), 1, - aux_sym__unquoted_with_expr_repeat1, - [128432] = 4, + STATE(5142), 1, + sym_param_short_flag, + [132338] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8295), 1, - anon_sym_RBRACE, - ACTIONS(8297), 1, + ACTIONS(4806), 1, sym__entry_separator, - STATE(4681), 1, + STATE(2283), 1, + aux_sym__types_body_repeat2, + STATE(4793), 1, sym_comment, - [128445] = 4, + [132351] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(1870), 1, anon_sym_LBRACE, - STATE(4305), 1, - sym_block, - STATE(4682), 1, + ACTIONS(1872), 1, + sym__unquoted_pattern, + STATE(4794), 1, sym_comment, - [128458] = 4, + [132364] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4307), 1, + STATE(4365), 1, sym_block, - STATE(4683), 1, - sym_comment, - [128471] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8299), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4684), 1, + STATE(4795), 1, sym_comment, - STATE(4814), 1, - aux_sym__unquoted_with_expr_repeat1, - [128484] = 4, + [132377] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2506), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - ACTIONS(2508), 1, - sym__unquoted_pattern, - STATE(4685), 1, - sym_comment, - [128497] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8301), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4686), 1, + STATE(4367), 1, + sym_block, + STATE(4796), 1, sym_comment, - STATE(4814), 1, - aux_sym__unquoted_with_expr_repeat1, - [128510] = 4, + [132390] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8303), 1, - anon_sym_DASH2, - STATE(4687), 1, - sym_comment, - STATE(5133), 1, - sym_param_short_flag, - [128523] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8305), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4688), 1, - sym_comment, - STATE(4736), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [128536] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8307), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4689), 1, + STATE(4797), 1, sym_comment, - STATE(4736), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [128549] = 4, + ACTIONS(8408), 2, + anon_sym_RBRACK, + sym_hex_digit, + [132401] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4379), 1, + STATE(4369), 1, sym_block, - STATE(4690), 1, + STATE(4798), 1, sym_comment, - [128562] = 4, + [132414] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4380), 1, + STATE(4371), 1, sym_block, - STATE(4691), 1, + STATE(4799), 1, sym_comment, - [128575] = 4, + [132427] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7458), 1, - anon_sym_RBRACE, - ACTIONS(7460), 1, + ACTIONS(2589), 1, sym__entry_separator, - STATE(4692), 1, + ACTIONS(2591), 1, + anon_sym_RBRACE, + STATE(4800), 1, sym_comment, - [128588] = 4, - ACTIONS(3), 1, + [132440] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1746), 1, - anon_sym_LBRACE, - ACTIONS(1748), 1, - sym__unquoted_pattern, - STATE(4693), 1, + ACTIONS(8410), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4801), 1, sym_comment, - [128601] = 4, - ACTIONS(3), 1, + STATE(4838), 1, + aux_sym__unquoted_with_expr_repeat1, + [132453] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(4664), 1, - sym_block, - STATE(4694), 1, + ACTIONS(8412), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4802), 1, sym_comment, - [128614] = 4, - ACTIONS(3), 1, + STATE(4839), 1, + aux_sym__unquoted_with_expr_repeat1, + [132466] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(4385), 1, - sym_block, - STATE(4695), 1, + ACTIONS(8414), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4803), 1, sym_comment, - [128627] = 4, - ACTIONS(3), 1, + STATE(4935), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [132479] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(4387), 1, - sym_block, - STATE(4696), 1, + ACTIONS(5784), 1, + sym__entry_separator, + ACTIONS(6527), 1, + anon_sym_GT2, + STATE(4804), 1, sym_comment, - [128640] = 4, - ACTIONS(3), 1, + [132492] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(4442), 1, - sym_block, - STATE(4697), 1, + ACTIONS(5796), 1, + sym__entry_separator, + ACTIONS(6383), 1, + anon_sym_GT2, + STATE(4805), 1, sym_comment, - [128653] = 4, - ACTIONS(3), 1, + [132505] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(4424), 1, - sym_block, - STATE(4698), 1, + ACTIONS(8416), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4806), 1, sym_comment, - [128666] = 4, - ACTIONS(3), 1, + STATE(4808), 1, + aux_sym__unquoted_with_expr_repeat1, + [132518] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(4319), 1, - sym_block, - STATE(4699), 1, + ACTIONS(8418), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4807), 1, sym_comment, - [128679] = 4, - ACTIONS(3), 1, + STATE(4811), 1, + aux_sym__unquoted_with_expr_repeat1, + [132531] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(4443), 1, - sym_block, - STATE(4700), 1, + ACTIONS(8420), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4808), 1, sym_comment, - [128692] = 4, - ACTIONS(3), 1, + STATE(4893), 1, + aux_sym__unquoted_with_expr_repeat1, + [132544] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(4320), 1, - sym_block, - STATE(4701), 1, + ACTIONS(7502), 1, + anon_sym_RBRACE, + ACTIONS(7504), 1, + sym__entry_separator, + STATE(4809), 1, sym_comment, - [128705] = 4, + [132557] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8309), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4702), 1, + ACTIONS(3771), 1, + sym__entry_separator, + ACTIONS(8422), 1, + anon_sym_RBRACE, + STATE(4810), 1, sym_comment, - STATE(4727), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [128718] = 4, + [132570] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2596), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7265), 1, - sym__entry_separator, - STATE(4703), 1, + ACTIONS(8425), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4811), 1, sym_comment, - [128731] = 4, + STATE(4893), 1, + aux_sym__unquoted_with_expr_repeat1, + [132583] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(4445), 1, - sym_block, - STATE(4704), 1, + STATE(4812), 1, sym_comment, - [128744] = 4, + ACTIONS(1549), 2, + sym__table_head_separator, + anon_sym_DOT2, + [132594] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4446), 1, + STATE(4374), 1, sym_block, - STATE(4705), 1, + STATE(4813), 1, sym_comment, - [128757] = 4, + [132607] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4321), 1, + STATE(4376), 1, sym_block, - STATE(4706), 1, + STATE(4814), 1, sym_comment, - [128770] = 4, + [132620] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(4322), 1, - sym_block, - STATE(4707), 1, + ACTIONS(5197), 1, + anon_sym_LPAREN2, + STATE(4815), 1, sym_comment, - [128783] = 4, + STATE(5178), 1, + sym__expr_parenthesized_immediate, + [132633] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1691), 1, - sym__unquoted_pattern, - ACTIONS(2560), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - STATE(4708), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(4816), 1, sym_comment, - [128796] = 4, + [132646] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4393), 1, + STATE(4699), 1, sym_block, - STATE(4709), 1, + STATE(4817), 1, sym_comment, - [128809] = 4, + [132659] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4395), 1, + STATE(4390), 1, sym_block, - STATE(4710), 1, + STATE(4818), 1, + sym_comment, + [132672] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8427), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4819), 2, sym_comment, - [128822] = 4, + aux_sym__unquoted_in_record_with_expr_repeat1, + [132683] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(1770), 1, anon_sym_LBRACE, - STATE(4396), 1, + ACTIONS(1772), 1, + sym__unquoted_pattern, + STATE(4820), 1, + sym_comment, + [132696] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4704), 1, sym_block, - STATE(4711), 1, + STATE(4821), 1, sym_comment, - [128835] = 4, + [132709] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8311), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4712), 1, + ACTIONS(5418), 1, + anon_sym_RBRACK, + ACTIONS(5420), 1, + sym__entry_separator, + STATE(4822), 1, sym_comment, - STATE(4748), 1, - aux_sym__unquoted_with_expr_repeat1, - [128848] = 4, + [132722] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8313), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4713), 1, + ACTIONS(1020), 1, + anon_sym_RBRACE, + ACTIONS(1022), 1, + sym__entry_separator, + STATE(4823), 1, sym_comment, - STATE(4749), 1, - aux_sym__unquoted_with_expr_repeat1, - [128861] = 4, + [132735] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(994), 1, + anon_sym_RBRACE, + ACTIONS(1030), 1, + sym__entry_separator, + STATE(4824), 1, + sym_comment, + [132748] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4397), 1, + STATE(4705), 1, sym_block, - STATE(4714), 1, + STATE(4825), 1, sym_comment, - [128874] = 4, + [132761] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6118), 1, + ACTIONS(8430), 1, + anon_sym_GT2, + ACTIONS(8432), 1, sym__entry_separator, - ACTIONS(6120), 1, - anon_sym_RBRACK, - STATE(4715), 1, + STATE(4826), 1, sym_comment, - [128887] = 4, + [132774] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(4593), 1, - sym_block, - STATE(4716), 1, + STATE(4827), 1, sym_comment, - [128900] = 4, + ACTIONS(1564), 2, + sym__table_head_separator, + anon_sym_DOT2, + [132785] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8434), 1, + anon_sym_RBRACK, + ACTIONS(8436), 1, + sym__entry_separator, + STATE(4828), 1, + sym_comment, + [132798] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(4509), 1, - sym_block, - STATE(4717), 1, + STATE(4829), 1, sym_comment, - [128913] = 4, + ACTIONS(1498), 2, + sym__table_head_separator, + anon_sym_DOT2, + [132809] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5966), 1, - anon_sym_RBRACK, - ACTIONS(5968), 1, + ACTIONS(4456), 1, sym__entry_separator, - STATE(4718), 1, + STATE(2147), 1, + aux_sym__types_body_repeat2, + STATE(4830), 1, sym_comment, - [128926] = 4, + [132822] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(4404), 1, - sym_block, - STATE(4719), 1, + ACTIONS(1724), 1, + anon_sym_LPAREN2, + STATE(4831), 1, sym_comment, - [128939] = 4, + STATE(5171), 1, + sym__expr_parenthesized_immediate, + [132835] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(2525), 1, anon_sym_LBRACE, - STATE(4405), 1, - sym_block, - STATE(4720), 1, - sym_comment, - [128952] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7656), 1, - anon_sym_RBRACE, - ACTIONS(7658), 1, - sym__entry_separator, - STATE(4721), 1, + ACTIONS(2527), 1, + sym__unquoted_pattern, + STATE(4832), 1, sym_comment, - [128965] = 4, + [132848] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(884), 1, + ACTIONS(886), 1, anon_sym_COLON2, - ACTIONS(2738), 1, + ACTIONS(2682), 1, aux_sym_cmd_identifier_token2, - STATE(4722), 1, + STATE(4833), 1, + sym_comment, + [132861] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4588), 1, + sym_block, + STATE(4834), 1, sym_comment, - [128978] = 4, + [132874] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2566), 1, - sym__entry_separator, - ACTIONS(2568), 1, + ACTIONS(7824), 1, anon_sym_RBRACE, - STATE(4723), 1, + ACTIONS(7826), 1, + sym__entry_separator, + STATE(4835), 1, sym_comment, - [128991] = 3, + [132887] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4724), 1, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4696), 1, + sym_block, + STATE(4836), 1, sym_comment, - ACTIONS(8315), 2, - sym__newline, - anon_sym_SEMI, - [129002] = 3, + [132900] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4725), 1, - sym_comment, - ACTIONS(8146), 2, - anon_sym_GT2, - anon_sym_AT2, - [129013] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2021), 1, - sym__entry_separator, - ACTIONS(2023), 1, - anon_sym_RBRACE, - STATE(4726), 1, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4604), 1, + sym_block, + STATE(4837), 1, sym_comment, - [129026] = 3, + [132913] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8317), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4727), 2, + ACTIONS(8438), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4838), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [129037] = 4, + STATE(4893), 1, + aux_sym__unquoted_with_expr_repeat1, + [132926] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8320), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4702), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(4728), 1, + ACTIONS(8440), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4839), 1, sym_comment, - [129050] = 4, + STATE(4893), 1, + aux_sym__unquoted_with_expr_repeat1, + [132939] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4552), 1, + STATE(4698), 1, sym_block, - STATE(4729), 1, + STATE(4840), 1, sym_comment, - [129063] = 4, + [132952] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4258), 1, + STATE(3308), 1, sym_block, - STATE(4730), 1, + STATE(4841), 1, sym_comment, - [129076] = 4, + [132965] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4259), 1, + STATE(4631), 1, sym_block, - STATE(4731), 1, + STATE(4842), 1, sym_comment, - [129089] = 3, + [132978] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4732), 1, - sym_comment, - ACTIONS(1535), 2, - sym__table_head_separator, - anon_sym_DOT2, - [129100] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1637), 1, - sym__entry_separator, - STATE(1495), 1, - aux_sym__types_body_repeat2, - STATE(4733), 1, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4645), 1, + sym_block, + STATE(4843), 1, sym_comment, - [129113] = 4, + [132991] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4476), 1, + STATE(4641), 1, sym_block, - STATE(4734), 1, + STATE(4844), 1, sym_comment, - [129126] = 4, + [133004] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4367), 1, + STATE(4664), 1, sym_block, - STATE(4735), 1, - sym_comment, - [129139] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8322), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4736), 2, - sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [129150] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6981), 1, - sym__entry_separator, - ACTIONS(8325), 1, - anon_sym_RBRACK, - STATE(4737), 1, + STATE(4845), 1, sym_comment, - [129163] = 4, + [133017] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6955), 1, + ACTIONS(4328), 1, sym__entry_separator, - ACTIONS(8327), 1, - anon_sym_RBRACK, - STATE(4738), 1, + STATE(2015), 1, + aux_sym__types_body_repeat2, + STATE(4846), 1, sym_comment, - [129176] = 4, + [133030] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(3153), 1, + STATE(4745), 1, sym_block, - STATE(4739), 1, - sym_comment, - [129189] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2521), 1, - sym__entry_separator, - ACTIONS(2523), 1, - anon_sym_RBRACE, - STATE(4740), 1, + STATE(4847), 1, sym_comment, - [129202] = 4, + [133043] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4484), 1, + STATE(4672), 1, sym_block, - STATE(4741), 1, + STATE(4848), 1, sym_comment, - [129215] = 4, + [133056] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2021), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - ACTIONS(2031), 1, - sym__unquoted_pattern, - STATE(4742), 1, + STATE(4761), 1, + sym_block, + STATE(4849), 1, sym_comment, - [129228] = 4, + [133069] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(3182), 1, + STATE(4746), 1, sym_block, - STATE(4743), 1, + STATE(4850), 1, sym_comment, - [129241] = 4, + [133082] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8329), 1, - anon_sym_GT2, - ACTIONS(8331), 1, + ACTIONS(7073), 1, sym__entry_separator, - STATE(4744), 1, + ACTIONS(8442), 1, + anon_sym_RBRACK, + STATE(4851), 1, sym_comment, - [129254] = 4, - ACTIONS(3), 1, + [133095] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - STATE(4745), 1, + ACTIONS(7085), 1, + sym__entry_separator, + ACTIONS(8444), 1, + anon_sym_RBRACK, + STATE(4852), 1, sym_comment, - STATE(5092), 1, - sym__expr_parenthesized_immediate, - [129267] = 4, + [133108] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4732), 1, + ACTIONS(1622), 1, sym__entry_separator, - STATE(2252), 1, + STATE(1508), 1, aux_sym__types_body_repeat2, - STATE(4746), 1, + STATE(4853), 1, sym_comment, - [129280] = 4, - ACTIONS(3), 1, + [133121] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(4271), 1, - sym_block, - STATE(4747), 1, + ACTIONS(8446), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4854), 1, + sym_comment, + STATE(4925), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [133134] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8448), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4855), 1, sym_comment, - [129293] = 4, + STATE(4926), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [133147] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8333), 1, + ACTIONS(8450), 1, aux_sym__unquoted_with_expr_token1, - STATE(4748), 1, + STATE(4856), 1, sym_comment, - STATE(4814), 1, + STATE(4893), 1, aux_sym__unquoted_with_expr_repeat1, - [129306] = 4, + [133160] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8335), 1, + ACTIONS(8452), 1, aux_sym__unquoted_with_expr_token1, - STATE(4749), 1, + STATE(4857), 1, sym_comment, - STATE(4814), 1, + STATE(4893), 1, aux_sym__unquoted_with_expr_repeat1, - [129319] = 4, + [133173] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4618), 1, + sym_block, + STATE(4858), 1, + sym_comment, + [133186] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4276), 1, + ACTIONS(5036), 1, sym__entry_separator, - STATE(4605), 1, + STATE(2444), 1, aux_sym__types_body_repeat2, - STATE(4750), 1, + STATE(4859), 1, sym_comment, - [129332] = 4, + [133199] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + ACTIONS(1956), 1, anon_sym_LBRACE, - STATE(4666), 1, - sym_block, - STATE(4751), 1, + STATE(4860), 1, sym_comment, - [129345] = 3, + [133212] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4752), 1, + ACTIONS(1622), 1, + sym__entry_separator, + STATE(1499), 1, + aux_sym__types_body_repeat2, + STATE(4861), 1, sym_comment, - ACTIONS(2144), 2, - anon_sym_POUND_BANG, - sym__newline, - [129356] = 4, + [133225] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4565), 1, + STATE(4621), 1, sym_block, - STATE(4753), 1, + STATE(4862), 1, sym_comment, - [129369] = 4, + [133238] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1812), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - ACTIONS(1814), 1, - sym__unquoted_pattern, - STATE(4754), 1, - sym_comment, - [129382] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4755), 1, + STATE(4331), 1, + sym_block, + STATE(4863), 1, sym_comment, - ACTIONS(1539), 2, - sym__table_head_separator, - anon_sym_DOT2, - [129393] = 4, + [133251] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4618), 1, + STATE(4332), 1, sym_block, - STATE(4756), 1, + STATE(4864), 1, sym_comment, - [129406] = 3, + [133264] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4757), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4333), 1, + sym_block, + STATE(4865), 1, sym_comment, - ACTIONS(1543), 2, - sym__table_head_separator, - anon_sym_DOT2, - [129417] = 4, + [133277] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4510), 1, + STATE(4334), 1, sym_block, - STATE(4758), 1, - sym_comment, - [129430] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4369), 1, - sym__entry_separator, - STATE(2118), 1, - aux_sym__types_body_repeat2, - STATE(4759), 1, + STATE(4866), 1, sym_comment, - [129443] = 4, + [133290] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8337), 1, + ACTIONS(8454), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(4760), 1, + STATE(4867), 1, sym_comment, - STATE(4777), 1, + STATE(4920), 1, aux_sym__unquoted_in_list_with_expr_repeat1, - [129456] = 4, + [133303] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4643), 1, + STATE(4709), 1, sym_block, - STATE(4761), 1, - sym_comment, - [129469] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8339), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4762), 1, + STATE(4868), 1, sym_comment, - STATE(4776), 1, - aux_sym__unquoted_with_expr_repeat1, - [129482] = 4, + [133316] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(4583), 1, - sym_block, - STATE(4763), 1, + STATE(4869), 1, sym_comment, - [129495] = 4, - ACTIONS(3), 1, + ACTIONS(8300), 2, + anon_sym_GT2, + anon_sym_AT2, + [133327] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(4585), 1, - sym_block, - STATE(4764), 1, + ACTIONS(2597), 1, + sym__entry_separator, + ACTIONS(2599), 1, + anon_sym_RBRACE, + STATE(4870), 1, sym_comment, - [129508] = 4, + [133340] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1637), 1, - sym__entry_separator, - STATE(1504), 1, - aux_sym__types_body_repeat2, - STATE(4765), 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, + [133353] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4566), 1, + sym_block, + STATE(4872), 1, sym_comment, - [129521] = 4, + [133366] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4589), 1, + STATE(4350), 1, sym_block, - STATE(4766), 1, + STATE(4873), 1, sym_comment, - [129534] = 4, + [133379] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4511), 1, + STATE(4567), 1, sym_block, - STATE(4767), 1, + STATE(4874), 1, sym_comment, - [129547] = 4, + [133392] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4597), 1, + STATE(4351), 1, sym_block, - STATE(4768), 1, + STATE(4875), 1, sym_comment, - [129560] = 4, - ACTIONS(103), 1, + [133405] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5249), 1, + ACTIONS(6477), 1, + anon_sym_DOLLAR2, + ACTIONS(8458), 1, anon_sym_RBRACK, - ACTIONS(5251), 1, - sym__entry_separator, - STATE(4769), 1, + STATE(4876), 1, sym_comment, - [129573] = 4, - ACTIONS(103), 1, + [133418] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2740), 1, - anon_sym_COLON2, - STATE(4770), 1, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4585), 1, + sym_block, + STATE(4877), 1, sym_comment, - [129586] = 4, + [133431] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2011), 1, + ACTIONS(1973), 1, sym__entry_separator, - ACTIONS(2013), 1, + ACTIONS(1975), 1, anon_sym_RBRACE, - STATE(4771), 1, - sym_comment, - [129599] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6275), 1, - anon_sym_DOLLAR2, - ACTIONS(8341), 1, - anon_sym_RBRACK, - STATE(4772), 1, + STATE(4878), 1, sym_comment, - [129612] = 4, + [133444] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8343), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4688), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4773), 1, + ACTIONS(4328), 1, + sym__entry_separator, + STATE(2025), 1, + aux_sym__types_body_repeat2, + STATE(4879), 1, sym_comment, - [129625] = 4, + [133457] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1900), 1, - anon_sym_LBRACE, - ACTIONS(1902), 1, + ACTIONS(1679), 1, sym__unquoted_pattern, - STATE(4774), 1, + ACTIONS(2541), 1, + anon_sym_LBRACE, + STATE(4880), 1, sym_comment, - [129638] = 4, + [133470] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8345), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4689), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4775), 1, + ACTIONS(8460), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4856), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(4881), 1, sym_comment, - [129651] = 4, + [133483] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8347), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4776), 1, + ACTIONS(5424), 1, + sym__entry_separator, + ACTIONS(6319), 1, + anon_sym_RBRACK, + STATE(4882), 1, sym_comment, - STATE(4814), 1, - aux_sym__unquoted_with_expr_repeat1, - [129664] = 4, + [133496] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8349), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4727), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(4777), 1, + ACTIONS(8462), 1, + anon_sym_RBRACE, + ACTIONS(8464), 1, + sym__entry_separator, + STATE(4883), 1, sym_comment, - [129677] = 4, + [133509] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8351), 1, + ACTIONS(8466), 1, aux_sym__unquoted_with_expr_token1, - STATE(4778), 1, - sym_comment, - STATE(4814), 1, + STATE(4857), 1, aux_sym__unquoted_with_expr_repeat1, - [129690] = 4, + STATE(4884), 1, + sym_comment, + [133522] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4353), 1, + STATE(4245), 1, sym_block, - STATE(4779), 1, + STATE(4885), 1, sym_comment, - [129703] = 4, + [133535] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4354), 1, + STATE(4251), 1, sym_block, - STATE(4780), 1, - sym_comment, - [129716] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4380), 1, - sym__entry_separator, - STATE(2133), 1, - aux_sym__types_body_repeat2, - STATE(4781), 1, - sym_comment, - [129729] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2570), 1, - sym__entry_separator, - ACTIONS(2572), 1, - anon_sym_RBRACE, - STATE(4782), 1, + STATE(4886), 1, sym_comment, - [129742] = 4, + [133548] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4355), 1, + STATE(4638), 1, sym_block, - STATE(4783), 1, + STATE(4887), 1, sym_comment, - [129755] = 4, + [133561] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(4356), 1, - sym_block, - STATE(4784), 1, + ACTIONS(1746), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8367), 1, + aux_sym__immediate_decimal_token5, + STATE(4888), 1, sym_comment, - [129768] = 4, + [133574] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8353), 1, + ACTIONS(7753), 1, anon_sym_RBRACE, - ACTIONS(8355), 1, + ACTIONS(7755), 1, sym__entry_separator, - STATE(4785), 1, + STATE(4889), 1, + sym_comment, + [133587] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4890), 1, sym_comment, - [129781] = 4, + ACTIONS(2146), 2, + anon_sym_POUND_BANG, + sym__newline, + [133598] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2527), 1, - sym__unquoted_pattern, - STATE(4786), 1, + ACTIONS(1854), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8468), 1, + aux_sym__immediate_decimal_token5, + STATE(4891), 1, sym_comment, - [129794] = 4, + [133611] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7699), 1, + ACTIONS(8470), 1, anon_sym_RBRACE, - ACTIONS(7701), 1, + ACTIONS(8472), 1, sym__entry_separator, - STATE(4787), 1, + STATE(4892), 1, sym_comment, - [129807] = 4, + [133624] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8357), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4736), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4788), 1, + ACTIONS(8474), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4893), 2, sym_comment, - [129820] = 4, - ACTIONS(103), 1, + aux_sym__unquoted_with_expr_repeat1, + [133635] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8359), 1, - anon_sym_RBRACE, - ACTIONS(8361), 1, - sym__entry_separator, - STATE(4789), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4445), 1, + sym_block, + STATE(4894), 1, sym_comment, - [129833] = 4, - ACTIONS(103), 1, + [133648] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3901), 1, - sym__entry_separator, - ACTIONS(8363), 1, - anon_sym_RBRACE, - STATE(4790), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4461), 1, + sym_block, + STATE(4895), 1, sym_comment, - [129846] = 4, - ACTIONS(103), 1, + [133661] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7703), 1, - anon_sym_RBRACE, - ACTIONS(7705), 1, - sym__entry_separator, - STATE(4791), 1, + ACTIONS(8477), 1, + anon_sym_def, + ACTIONS(8479), 1, + anon_sym_extern, + STATE(4896), 1, sym_comment, - [129859] = 4, + [133674] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4958), 1, + ACTIONS(1956), 1, sym__entry_separator, - STATE(2403), 1, - aux_sym__types_body_repeat2, - STATE(4792), 1, + ACTIONS(1958), 1, + anon_sym_RBRACE, + STATE(4897), 1, sym_comment, - [129872] = 4, + [133687] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(884), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - ACTIONS(1776), 1, - sym__unquoted_pattern, - STATE(4793), 1, + STATE(4626), 1, + sym_block, + STATE(4898), 1, sym_comment, - [129885] = 4, - ACTIONS(103), 1, + [133700] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4276), 1, - sym__entry_separator, - STATE(1972), 1, - aux_sym__types_body_repeat2, - STATE(4794), 1, + ACTIONS(1022), 1, + anon_sym_LBRACE, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(4899), 1, sym_comment, - [129898] = 4, + [133713] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8366), 1, + ACTIONS(8481), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(4736), 1, + STATE(4819), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4795), 1, + STATE(4900), 1, sym_comment, - [129911] = 4, + [133726] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8368), 1, - anon_sym_LPAREN2, - ACTIONS(8370), 1, - aux_sym__record_key_token1, - STATE(4796), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7268), 1, + sym__entry_separator, + STATE(4901), 1, sym_comment, - [129924] = 4, + [133739] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6144), 1, + ACTIONS(2648), 1, sym__entry_separator, - ACTIONS(6146), 1, - anon_sym_GT2, - STATE(4797), 1, + ACTIONS(2650), 1, + anon_sym_RBRACE, + STATE(4902), 1, sym_comment, - [129937] = 4, + [133752] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8372), 1, - sym__newline, - ACTIONS(8374), 1, - sym__space, - STATE(4798), 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, - [129950] = 4, + [133765] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8376), 1, + ACTIONS(8485), 1, sym_identifier, - ACTIONS(8378), 1, + ACTIONS(8487), 1, anon_sym_DOLLAR, - STATE(4799), 1, + STATE(4904), 1, sym_comment, - [129963] = 4, + [133778] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(4365), 1, + STATE(4667), 1, sym_block, - STATE(4800), 1, + STATE(4905), 1, + sym_comment, + [133791] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8489), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4900), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(4906), 1, sym_comment, - [129976] = 4, + [133804] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4369), 1, + STATE(4282), 1, sym_block, - STATE(4801), 1, + STATE(4907), 1, sym_comment, - [129989] = 4, + [133817] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6275), 1, - anon_sym_DOLLAR2, - ACTIONS(8380), 1, - anon_sym_RBRACK, - STATE(4802), 1, - sym_comment, - [130002] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3476), 1, - sym__space, - STATE(1402), 1, - aux_sym_pipe_element_repeat1, - STATE(4803), 1, + ACTIONS(1030), 1, + anon_sym_LBRACE, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(4908), 1, sym_comment, - [130015] = 4, - ACTIONS(103), 1, + [133830] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4706), 1, - sym__entry_separator, - STATE(2234), 1, - aux_sym__types_body_repeat2, - STATE(4804), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4283), 1, + sym_block, + STATE(4909), 1, sym_comment, - [130028] = 4, + [133843] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2570), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - ACTIONS(2576), 1, - sym__unquoted_pattern, - STATE(4805), 1, + STATE(3312), 1, + sym_block, + STATE(4910), 1, sym_comment, - [130041] = 4, + [133856] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6210), 1, + ACTIONS(6117), 1, + anon_sym_RBRACK, + ACTIONS(6119), 1, sym__entry_separator, - ACTIONS(6212), 1, - anon_sym_GT2, - STATE(4806), 1, + STATE(4911), 1, sym_comment, - [130054] = 4, + [133869] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8382), 1, - anon_sym_RBRACK, - ACTIONS(8384), 1, + ACTIONS(4420), 1, sym__entry_separator, - STATE(4807), 1, + STATE(2146), 1, + aux_sym__types_body_repeat2, + STATE(4912), 1, sym_comment, - [130067] = 4, + [133882] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4512), 1, + STATE(4285), 1, sym_block, - STATE(4808), 1, - sym_comment, - [130080] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1008), 1, - anon_sym_RBRACE, - ACTIONS(1030), 1, - sym__entry_separator, - STATE(4809), 1, + STATE(4913), 1, sym_comment, - [130093] = 4, + [133895] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3786), 1, anon_sym_LBRACE, - STATE(3192), 1, + STATE(4665), 1, sym_block, - STATE(4810), 1, + STATE(4914), 1, sym_comment, - [130106] = 4, + [133908] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(8491), 1, + anon_sym_RBRACK, + ACTIONS(8493), 1, sym__entry_separator, - ACTIONS(996), 1, - anon_sym_RBRACE, - STATE(4811), 1, - sym_comment, - [130119] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6575), 1, - anon_sym_LPAREN2, - STATE(4812), 1, - sym_comment, - STATE(4858), 1, - sym__expr_parenthesized_immediate, - [130132] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1756), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8106), 1, - aux_sym__immediate_decimal_token5, - STATE(4813), 1, - sym_comment, - [130145] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8386), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4814), 2, - sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [130156] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8389), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4788), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4815), 1, + STATE(4915), 1, sym_comment, - [130169] = 4, + [133921] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8391), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4795), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(4816), 1, + ACTIONS(8495), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4916), 2, sym_comment, - [130182] = 4, + aux_sym__unquoted_in_list_with_expr_repeat1, + [133932] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1716), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - ACTIONS(2596), 1, - sym__unquoted_pattern, - STATE(4817), 1, - sym_comment, - [130195] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1814), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8393), 1, - aux_sym__immediate_decimal_token5, - STATE(4818), 1, + STATE(4287), 1, + sym_block, + STATE(4917), 1, sym_comment, - [130208] = 4, + [133945] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7582), 1, - anon_sym_RBRACE, - ACTIONS(7584), 1, + ACTIONS(4328), 1, sym__entry_separator, - STATE(4819), 1, + STATE(4749), 1, + aux_sym__types_body_repeat2, + STATE(4918), 1, sym_comment, - [130221] = 4, + [133958] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4432), 1, + STATE(4213), 1, sym_block, - STATE(4820), 1, + STATE(4919), 1, sym_comment, - [130234] = 4, + [133971] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8395), 1, - anon_sym_RBRACK, - ACTIONS(8397), 1, - sym__entry_separator, - STATE(4821), 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, - [130247] = 4, + [133984] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2011), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4822), 1, - sym_comment, - [130260] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5126), 1, - anon_sym_LPAREN2, - STATE(4823), 1, + STATE(3537), 1, + sym_block, + STATE(4921), 1, sym_comment, - STATE(4904), 1, - sym__expr_parenthesized_immediate, - [130273] = 4, + [133997] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7510), 1, - anon_sym_RBRACK, - ACTIONS(7512), 1, + ACTIONS(8500), 1, + anon_sym_GT2, + ACTIONS(8502), 1, sym__entry_separator, - STATE(4824), 1, - sym_comment, - [130286] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(4444), 1, - sym_block, - STATE(4825), 1, + STATE(4922), 1, sym_comment, - [130299] = 4, + [134010] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(3426), 1, + STATE(3507), 1, sym_block, - STATE(4826), 1, + STATE(4923), 1, sym_comment, - [130312] = 4, + [134023] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(1852), 1, anon_sym_LBRACE, - STATE(3390), 1, - sym_block, - STATE(4827), 1, - sym_comment, - [130325] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4828), 1, + ACTIONS(1854), 1, + sym__unquoted_pattern, + STATE(4924), 1, sym_comment, - ACTIONS(8399), 2, - anon_sym_RBRACK, - sym_hex_digit, - [130336] = 4, + [134036] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4276), 1, - sym__entry_separator, - STATE(1970), 1, - aux_sym__types_body_repeat2, - STATE(4829), 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, - [130349] = 4, - ACTIONS(3), 1, + [134049] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8401), 1, - anon_sym_def, - ACTIONS(8403), 1, - anon_sym_extern, - STATE(4830), 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, - [130362] = 4, + [134062] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8405), 1, + ACTIONS(8508), 1, anon_sym_def, - ACTIONS(8407), 1, + ACTIONS(8510), 1, anon_sym_extern, - STATE(4831), 1, + STATE(4927), 1, sym_comment, - [130375] = 4, + [134075] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4636), 1, + STATE(4354), 1, sym_block, - STATE(4832), 1, + STATE(4928), 1, sym_comment, - [130388] = 4, - ACTIONS(3), 1, + [134088] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2031), 1, - sym__unquoted_pattern, - ACTIONS(2566), 1, - anon_sym_LBRACE, - STATE(4833), 1, + ACTIONS(8512), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4929), 1, sym_comment, - [130401] = 4, + STATE(4933), 1, + aux_sym__unquoted_with_expr_repeat1, + [134101] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8409), 1, - anon_sym_RBRACK, - ACTIONS(8411), 1, - sym__entry_separator, - STATE(4834), 1, + ACTIONS(8514), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4930), 1, sym_comment, - [130414] = 4, + STATE(4934), 1, + aux_sym__unquoted_with_expr_repeat1, + [134114] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_LBRACE, - STATE(4640), 1, + STATE(4355), 1, sym_block, - STATE(4835), 1, + STATE(4931), 1, + sym_comment, + [134127] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6477), 1, + anon_sym_DOLLAR2, + ACTIONS(8516), 1, + anon_sym_RBRACK, + STATE(4932), 1, sym_comment, - [130427] = 4, + [134140] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8413), 1, + ACTIONS(8518), 1, aux_sym__unquoted_with_expr_token1, - STATE(4684), 1, + STATE(4893), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(4836), 1, + STATE(4933), 1, sym_comment, - [130440] = 4, + [134153] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8415), 1, - anon_sym_GT2, - ACTIONS(8417), 1, - sym__entry_separator, - STATE(4837), 1, + ACTIONS(8520), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4893), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(4934), 1, sym_comment, - [130453] = 4, + [134166] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2560), 1, - sym__entry_separator, - ACTIONS(2562), 1, - anon_sym_RBRACE, - STATE(4838), 1, + 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, - [130466] = 3, + [134179] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8419), 1, - anon_sym_RBRACK, - STATE(4839), 1, - sym_comment, - [130476] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8421), 1, - aux_sym_cmd_identifier_token6, - STATE(4840), 1, + ACTIONS(886), 1, + anon_sym_LBRACE, + ACTIONS(1734), 1, + sym__unquoted_pattern, + STATE(4936), 1, sym_comment, - [130486] = 3, + [134192] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8423), 1, - anon_sym_RPAREN, - STATE(4841), 1, + STATE(4937), 1, sym_comment, - [130496] = 3, + ACTIONS(8524), 2, + sym__newline, + anon_sym_SEMI, + [134203] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1691), 1, - sym__unquoted_pattern_in_record, - STATE(4842), 1, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(3242), 1, + sym_block, + STATE(4938), 1, sym_comment, - [130506] = 3, + [134216] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8425), 1, - aux_sym_cmd_identifier_token6, - STATE(4843), 1, - sym_comment, - [130516] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8427), 1, - anon_sym_EQ, - STATE(4844), 1, - sym_comment, - [130526] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8429), 1, - sym_raw_string_end, - STATE(4845), 1, - sym_comment, - [130536] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8431), 1, - anon_sym_RPAREN, - STATE(4846), 1, + ACTIONS(7542), 1, + anon_sym_RBRACK, + ACTIONS(7550), 1, + sym__entry_separator, + STATE(4939), 1, sym_comment, - [130546] = 3, - ACTIONS(3), 1, + [134229] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8433), 1, - anon_sym_RBRACE, - STATE(4847), 1, + ACTIONS(2682), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2684), 1, + anon_sym_COLON2, + STATE(4940), 1, sym_comment, - [130556] = 3, + [134242] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8435), 1, - sym__space, - STATE(4848), 1, + ACTIONS(2541), 1, + sym__entry_separator, + ACTIONS(2543), 1, + anon_sym_RBRACE, + STATE(4941), 1, sym_comment, - [130566] = 3, + [134255] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8437), 1, - anon_sym_RBRACK, - STATE(4849), 1, + ACTIONS(1973), 1, + anon_sym_LBRACE, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(4942), 1, sym_comment, - [130576] = 3, - ACTIONS(3), 1, + [134268] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8439), 1, + ACTIONS(8526), 1, anon_sym_RBRACK, - STATE(4850), 1, + ACTIONS(8528), 1, + sym__entry_separator, + STATE(4943), 1, sym_comment, - [130586] = 3, + [134281] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8441), 1, - anon_sym_RBRACE, - STATE(4851), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4363), 1, + sym_block, + STATE(4944), 1, sym_comment, - [130596] = 3, + [134294] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8443), 1, - anon_sym_RBRACE, - STATE(4852), 1, + ACTIONS(3808), 1, + anon_sym_LBRACE, + STATE(4364), 1, + sym_block, + STATE(4945), 1, sym_comment, - [130606] = 3, + [134307] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8445), 1, - anon_sym_RBRACE, - STATE(4853), 1, + ACTIONS(2648), 1, + anon_sym_LBRACE, + ACTIONS(2654), 1, + sym__unquoted_pattern, + STATE(4946), 1, sym_comment, - [130616] = 3, + [134320] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8447), 1, - anon_sym_DQUOTE, - STATE(4854), 1, + ACTIONS(3786), 1, + anon_sym_LBRACE, + STATE(4563), 1, + sym_block, + STATE(4947), 1, sym_comment, - [130626] = 3, + [134333] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8449), 1, - anon_sym_SQUOTE2, - STATE(4855), 1, + ACTIONS(8530), 1, + anon_sym_GT2, + STATE(4948), 1, sym_comment, - [130636] = 3, - ACTIONS(3), 1, + [134343] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8451), 1, - anon_sym_BQUOTE2, - STATE(4856), 1, + ACTIONS(8532), 1, + aux_sym_cmd_identifier_token6, + STATE(4949), 1, sym_comment, - [130646] = 3, + [134353] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8453), 1, + ACTIONS(313), 1, anon_sym_RBRACE, - STATE(4857), 1, - sym_comment, - [130656] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8455), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4858), 1, + STATE(4950), 1, sym_comment, - [130666] = 3, + [134363] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8457), 1, + ACTIONS(8534), 1, anon_sym_RBRACK, - STATE(4859), 1, + STATE(4951), 1, sym_comment, - [130676] = 3, + [134373] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8459), 1, + ACTIONS(8536), 1, anon_sym_RPAREN, - STATE(4860), 1, + STATE(4952), 1, sym_comment, - [130686] = 3, + [134383] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8461), 1, - anon_sym_RPAREN, - STATE(4861), 1, + ACTIONS(8538), 1, + anon_sym_EQ, + STATE(4953), 1, sym_comment, - [130696] = 3, + [134393] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8463), 1, - anon_sym_GT2, - STATE(4862), 1, + ACTIONS(8540), 1, + anon_sym_EQ_GT, + STATE(4954), 1, sym_comment, - [130706] = 3, + [134403] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8465), 1, - anon_sym_RBRACK, - STATE(4863), 1, + ACTIONS(8542), 1, + anon_sym_RBRACE, + STATE(4955), 1, sym_comment, - [130716] = 3, + [134413] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8467), 1, + ACTIONS(8544), 1, aux_sym_cmd_identifier_token6, - STATE(4864), 1, + STATE(4956), 1, sym_comment, - [130726] = 3, + [134423] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8469), 1, + ACTIONS(8546), 1, sym_raw_string_end, - STATE(4865), 1, + STATE(4957), 1, sym_comment, - [130736] = 3, + [134433] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(361), 1, - anon_sym_RPAREN2, - STATE(4866), 1, + ACTIONS(2527), 1, + sym__unquoted_pattern_in_record, + STATE(4958), 1, sym_comment, - [130746] = 3, + [134443] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8471), 1, - anon_sym_GT2, - STATE(4867), 1, + ACTIONS(2654), 1, + sym__unquoted_pattern, + STATE(4959), 1, sym_comment, - [130756] = 3, - ACTIONS(103), 1, + [134453] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8473), 1, - aux_sym_cmd_identifier_token6, - STATE(4868), 1, + ACTIONS(8548), 1, + anon_sym_RBRACK, + STATE(4960), 1, sym_comment, - [130766] = 3, + [134463] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8475), 1, - anon_sym_RBRACK, - STATE(4869), 1, + ACTIONS(8550), 1, + anon_sym_RPAREN2, + STATE(4961), 1, sym_comment, - [130776] = 3, - ACTIONS(103), 1, + [134473] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8477), 1, - aux_sym_cmd_identifier_token6, - STATE(4870), 1, + ACTIONS(8552), 1, + anon_sym_RBRACE, + STATE(4962), 1, sym_comment, - [130786] = 3, + [134483] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8479), 1, - anon_sym_EQ, - STATE(4871), 1, + ACTIONS(8554), 1, + anon_sym_DQUOTE, + STATE(4963), 1, sym_comment, - [130796] = 3, + [134493] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8481), 1, + ACTIONS(8556), 1, anon_sym_DQUOTE, - STATE(4872), 1, + STATE(4964), 1, sym_comment, - [130806] = 3, + [134503] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8483), 1, + ACTIONS(8558), 1, anon_sym_SQUOTE2, - STATE(4873), 1, + STATE(4965), 1, sym_comment, - [130816] = 3, + [134513] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8485), 1, + ACTIONS(8560), 1, anon_sym_BQUOTE2, - STATE(4874), 1, + STATE(4966), 1, sym_comment, - [130826] = 3, + [134523] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8487), 1, + ACTIONS(8562), 1, anon_sym_RPAREN, - STATE(4875), 1, + STATE(4967), 1, sym_comment, - [130836] = 3, + [134533] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8489), 1, - anon_sym_RPAREN, - STATE(4876), 1, + ACTIONS(8564), 1, + anon_sym_RBRACE, + STATE(4968), 1, sym_comment, - [130846] = 3, + [134543] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8491), 1, - anon_sym_RPAREN, - STATE(4877), 1, + ACTIONS(8566), 1, + sym__table_head_separator, + STATE(4969), 1, sym_comment, - [130856] = 3, + [134553] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8493), 1, - anon_sym_EQ, - STATE(4878), 1, + ACTIONS(303), 1, + anon_sym_RBRACE, + STATE(4970), 1, sym_comment, - [130866] = 3, + [134563] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8495), 1, + ACTIONS(8568), 1, sym_raw_string_end, - STATE(4879), 1, + STATE(4971), 1, sym_comment, - [130876] = 3, - ACTIONS(103), 1, + [134573] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1852), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4880), 1, + ACTIONS(8570), 1, + anon_sym_DQUOTE, + STATE(4972), 1, sym_comment, - [130886] = 3, + [134583] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8497), 1, - anon_sym_RBRACE, - STATE(4881), 1, + ACTIONS(8572), 1, + anon_sym_SQUOTE2, + STATE(4973), 1, sym_comment, - [130896] = 3, + [134593] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(353), 1, - anon_sym_RPAREN2, - STATE(4882), 1, + ACTIONS(8574), 1, + anon_sym_GT2, + STATE(4974), 1, sym_comment, - [130906] = 3, + [134603] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8499), 1, + ACTIONS(8576), 1, anon_sym_RBRACK, - STATE(4883), 1, + STATE(4975), 1, sym_comment, - [130916] = 3, + [134613] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8501), 1, - anon_sym_DASH_GT, - STATE(4884), 1, + ACTIONS(8578), 1, + anon_sym_BQUOTE2, + STATE(4976), 1, sym_comment, - [130926] = 3, - ACTIONS(103), 1, + [134623] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8503), 1, - aux_sym_cmd_identifier_token2, - STATE(4885), 1, + ACTIONS(8580), 1, + anon_sym_RBRACE, + STATE(4977), 1, + sym_comment, + [134633] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8582), 1, + anon_sym_RBRACK, + STATE(4978), 1, sym_comment, - [130936] = 3, + [134643] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8505), 1, + ACTIONS(8584), 1, anon_sym_DQUOTE, - STATE(4886), 1, + STATE(4979), 1, sym_comment, - [130946] = 3, + [134653] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8507), 1, + ACTIONS(8586), 1, anon_sym_SQUOTE2, - STATE(4887), 1, + STATE(4980), 1, sym_comment, - [130956] = 3, + [134663] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8509), 1, + ACTIONS(8588), 1, anon_sym_BQUOTE2, - STATE(4888), 1, + STATE(4981), 1, sym_comment, - [130966] = 3, + [134673] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8511), 1, + ACTIONS(8590), 1, anon_sym_RPAREN, - STATE(4889), 1, + STATE(4982), 1, sym_comment, - [130976] = 3, - ACTIONS(103), 1, + [134683] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8513), 1, - aux_sym__str_back_ticks_token1, - STATE(4890), 1, + ACTIONS(8592), 1, + anon_sym_GT2, + STATE(4983), 1, sym_comment, - [130986] = 3, + [134693] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7807), 1, - anon_sym_EQ_GT, - STATE(4891), 1, + ACTIONS(8594), 1, + anon_sym_GT2, + STATE(4984), 1, sym_comment, - [130996] = 3, - ACTIONS(103), 1, + [134703] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1852), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4892), 1, + ACTIONS(2658), 1, + sym__unquoted_pattern, + STATE(4985), 1, sym_comment, - [131006] = 3, + [134713] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8515), 1, + ACTIONS(8596), 1, sym_raw_string_end, - STATE(4893), 1, + STATE(4986), 1, sym_comment, - [131016] = 3, + [134723] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8517), 1, - anon_sym_RBRACK, - STATE(4894), 1, + ACTIONS(8598), 1, + sym_raw_string_end, + STATE(4987), 1, sym_comment, - [131026] = 3, + [134733] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5276), 1, - anon_sym_EQ2, - STATE(4895), 1, + ACTIONS(8600), 1, + anon_sym_SQUOTE2, + STATE(4988), 1, sym_comment, - [131036] = 3, + [134743] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2527), 1, - sym__unquoted_pattern_in_record, - STATE(4896), 1, + ACTIONS(8602), 1, + anon_sym_BQUOTE2, + STATE(4989), 1, sym_comment, - [131046] = 3, + [134753] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2596), 1, - sym__unquoted_pattern_in_record, - STATE(4897), 1, + ACTIONS(8604), 1, + anon_sym_RBRACK, + STATE(4990), 1, + sym_comment, + [134763] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7458), 1, + sym__unquoted_pattern, + STATE(4991), 1, sym_comment, - [131056] = 3, + [134773] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8519), 1, + ACTIONS(8606), 1, anon_sym_DQUOTE, - STATE(4898), 1, + STATE(4992), 1, sym_comment, - [131066] = 3, + [134783] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8521), 1, + ACTIONS(8608), 1, anon_sym_SQUOTE2, - STATE(4899), 1, + STATE(4993), 1, sym_comment, - [131076] = 3, + [134793] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8523), 1, + ACTIONS(8610), 1, anon_sym_BQUOTE2, - STATE(4900), 1, + STATE(4994), 1, sym_comment, - [131086] = 3, - ACTIONS(3), 1, + [134803] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8525), 1, - anon_sym_RBRACE, - STATE(4901), 1, + ACTIONS(8612), 1, + aux_sym_cmd_identifier_token6, + STATE(4995), 1, sym_comment, - [131096] = 3, + [134813] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2527), 1, - sym__unquoted_pattern, - STATE(4902), 1, + ACTIONS(8614), 1, + anon_sym_RPAREN, + STATE(4996), 1, sym_comment, - [131106] = 3, + [134823] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8527), 1, + ACTIONS(8616), 1, sym_raw_string_end, - STATE(4903), 1, + STATE(4997), 1, sym_comment, - [131116] = 3, - ACTIONS(103), 1, + [134833] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8529), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4904), 1, + ACTIONS(8618), 1, + anon_sym_RBRACE, + STATE(4998), 1, sym_comment, - [131126] = 3, + [134843] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8531), 1, - aux_sym_cmd_identifier_token6, - STATE(4905), 1, + ACTIONS(2829), 1, + aux_sym_cmd_identifier_token2, + STATE(4999), 1, sym_comment, - [131136] = 3, + [134853] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8533), 1, - anon_sym_RPAREN, - STATE(4906), 1, + ACTIONS(1862), 1, + sym__table_head_separator, + STATE(5000), 1, sym_comment, - [131146] = 3, + [134863] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8535), 1, - anon_sym_BQUOTE2, - STATE(4907), 1, + ACTIONS(8620), 1, + anon_sym_RBRACK, + STATE(5001), 1, + sym_comment, + [134873] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8622), 1, + anon_sym_RBRACE, + STATE(5002), 1, sym_comment, - [131156] = 3, + [134883] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8537), 1, + ACTIONS(8624), 1, anon_sym_DQUOTE, - STATE(4908), 1, + STATE(5003), 1, sym_comment, - [131166] = 3, + [134893] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8539), 1, + ACTIONS(8626), 1, anon_sym_SQUOTE2, - STATE(4909), 1, + STATE(5004), 1, sym_comment, - [131176] = 3, + [134903] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8541), 1, + ACTIONS(8628), 1, anon_sym_BQUOTE2, - STATE(4910), 1, + STATE(5005), 1, sym_comment, - [131186] = 3, + [134913] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8543), 1, - sym_raw_string_end, - STATE(4911), 1, + ACTIONS(8630), 1, + anon_sym_RBRACK, + STATE(5006), 1, sym_comment, - [131196] = 3, + [134923] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8545), 1, - anon_sym_RPAREN, - STATE(4912), 1, + ACTIONS(8632), 1, + anon_sym_RBRACE, + STATE(5007), 1, sym_comment, - [131206] = 3, + [134933] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8547), 1, + ACTIONS(8634), 1, sym_raw_string_end, - STATE(4913), 1, + STATE(5008), 1, sym_comment, - [131216] = 3, + [134943] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8549), 1, - sym_raw_string_end, - STATE(4914), 1, + ACTIONS(8636), 1, + anon_sym_RBRACE, + STATE(5009), 1, sym_comment, - [131226] = 3, + [134953] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7409), 1, - sym__unquoted_pattern, - STATE(4915), 1, + ACTIONS(2646), 1, + sym__unquoted_pattern_in_record, + STATE(5010), 1, sym_comment, - [131236] = 3, + [134963] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8551), 1, - anon_sym_DASH_GT, - STATE(4916), 1, + ACTIONS(8638), 1, + anon_sym_EQ, + STATE(5011), 1, sym_comment, - [131246] = 3, + [134973] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8553), 1, - anon_sym_LPAREN2, - STATE(4917), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern_in_record, + STATE(5012), 1, sym_comment, - [131256] = 3, + [134983] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8555), 1, + ACTIONS(8640), 1, anon_sym_DQUOTE, - STATE(4918), 1, + STATE(5013), 1, sym_comment, - [131266] = 3, + [134993] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8557), 1, + ACTIONS(8642), 1, anon_sym_SQUOTE2, - STATE(4919), 1, + STATE(5014), 1, sym_comment, - [131276] = 3, + [135003] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8559), 1, + ACTIONS(8644), 1, anon_sym_BQUOTE2, - STATE(4920), 1, + STATE(5015), 1, sym_comment, - [131286] = 3, + [135013] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8561), 1, - aux_sym_cmd_identifier_token2, - STATE(4921), 1, + ACTIONS(1880), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5016), 1, sym_comment, - [131296] = 3, + [135023] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8563), 1, - anon_sym_EQ, - STATE(4922), 1, + ACTIONS(8646), 1, + anon_sym_RBRACE, + STATE(5017), 1, sym_comment, - [131306] = 3, + [135033] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8565), 1, + ACTIONS(8648), 1, sym_raw_string_end, - STATE(4923), 1, + STATE(5018), 1, sym_comment, - [131316] = 3, - ACTIONS(3), 1, + [135043] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5072), 1, - sym__unquoted_pattern, - STATE(4924), 1, + ACTIONS(8650), 1, + aux_sym_comment_token1, + STATE(5019), 1, sym_comment, - [131326] = 3, + [135053] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8567), 1, + ACTIONS(8652), 1, anon_sym_DQUOTE, - STATE(4925), 1, + STATE(5020), 1, sym_comment, - [131336] = 3, + [135063] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8569), 1, + ACTIONS(8654), 1, anon_sym_SQUOTE2, - STATE(4926), 1, + STATE(5021), 1, sym_comment, - [131346] = 3, + [135073] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8571), 1, + ACTIONS(8656), 1, anon_sym_BQUOTE2, - STATE(4927), 1, + STATE(5022), 1, sym_comment, - [131356] = 3, + [135083] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8573), 1, - sym_identifier, - STATE(4928), 1, + ACTIONS(8658), 1, + anon_sym_RBRACK, + STATE(5023), 1, sym_comment, - [131366] = 3, + [135093] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8575), 1, - anon_sym_RBRACK, - STATE(4929), 1, + ACTIONS(8660), 1, + anon_sym_RPAREN, + STATE(5024), 1, sym_comment, - [131376] = 3, + [135103] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8577), 1, + ACTIONS(8662), 1, sym_raw_string_end, - STATE(4930), 1, + STATE(5025), 1, sym_comment, - [131386] = 3, + [135113] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8579), 1, - anon_sym_RBRACE, - STATE(4931), 1, + ACTIONS(8664), 1, + sym_identifier, + STATE(5026), 1, sym_comment, - [131396] = 3, + [135123] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8581), 1, + ACTIONS(8666), 1, anon_sym_DQUOTE, - STATE(4932), 1, + STATE(5027), 1, sym_comment, - [131406] = 3, + [135133] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8583), 1, + ACTIONS(8668), 1, anon_sym_SQUOTE2, - STATE(4933), 1, + STATE(5028), 1, sym_comment, - [131416] = 3, + [135143] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8585), 1, + ACTIONS(8670), 1, anon_sym_BQUOTE2, - STATE(4934), 1, + STATE(5029), 1, sym_comment, - [131426] = 3, + [135153] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8587), 1, - aux_sym_comment_token1, - STATE(4935), 1, + ACTIONS(8672), 1, + aux_sym_cmd_identifier_token6, + STATE(5030), 1, + sym_comment, + [135163] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8674), 1, + anon_sym_RBRACE, + STATE(5031), 1, sym_comment, - [131436] = 3, + [135173] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8589), 1, + ACTIONS(8676), 1, sym_raw_string_end, - STATE(4936), 1, + STATE(5032), 1, sym_comment, - [131446] = 3, - ACTIONS(103), 1, + [135183] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1878), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4937), 1, + ACTIONS(6779), 1, + sym__unquoted_pattern_in_record, + STATE(5033), 1, sym_comment, - [131456] = 3, + [135193] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8591), 1, + ACTIONS(8678), 1, anon_sym_DQUOTE, - STATE(4938), 1, + STATE(5034), 1, sym_comment, - [131466] = 3, + [135203] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8593), 1, + ACTIONS(8680), 1, anon_sym_SQUOTE2, - STATE(4939), 1, + STATE(5035), 1, sym_comment, - [131476] = 3, + [135213] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8595), 1, + ACTIONS(8682), 1, anon_sym_BQUOTE2, - STATE(4940), 1, + STATE(5036), 1, sym_comment, - [131486] = 3, + [135223] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8597), 1, - anon_sym_LBRACE, - STATE(4941), 1, + ACTIONS(8684), 1, + anon_sym_RBRACE, + STATE(5037), 1, sym_comment, - [131496] = 3, + [135233] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8599), 1, - anon_sym_RBRACK, - STATE(4942), 1, + ACTIONS(8686), 1, + anon_sym_RPAREN, + STATE(5038), 1, sym_comment, - [131506] = 3, + [135243] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8601), 1, + ACTIONS(8688), 1, sym_raw_string_end, - STATE(4943), 1, + STATE(5039), 1, sym_comment, - [131516] = 3, + [135253] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2740), 1, - anon_sym_COLON2, - STATE(4944), 1, + ACTIONS(403), 1, + ts_builtin_sym_end, + STATE(5040), 1, sym_comment, - [131526] = 3, + [135263] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8603), 1, + ACTIONS(8690), 1, anon_sym_DQUOTE, - STATE(4945), 1, + STATE(5041), 1, sym_comment, - [131536] = 3, + [135273] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8605), 1, + ACTIONS(8692), 1, anon_sym_SQUOTE2, - STATE(4946), 1, + STATE(5042), 1, sym_comment, - [131546] = 3, + [135283] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8607), 1, + ACTIONS(8694), 1, anon_sym_BQUOTE2, - STATE(4947), 1, + STATE(5043), 1, sym_comment, - [131556] = 3, + [135293] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8609), 1, - anon_sym_RBRACK, - STATE(4948), 1, + ACTIONS(8696), 1, + anon_sym_RBRACE, + STATE(5044), 1, sym_comment, - [131566] = 3, + [135303] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6953), 1, - sym__unquoted_pattern, - STATE(4949), 1, + ACTIONS(8698), 1, + anon_sym_RPAREN, + STATE(5045), 1, sym_comment, - [131576] = 3, + [135313] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8611), 1, + ACTIONS(8700), 1, sym_raw_string_end, - STATE(4950), 1, + STATE(5046), 1, sym_comment, - [131586] = 3, - ACTIONS(3), 1, + [135323] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8613), 1, - anon_sym_GT2, - STATE(4951), 1, + ACTIONS(8702), 1, + aux_sym_cmd_identifier_token2, + STATE(5047), 1, sym_comment, - [131596] = 3, + [135333] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8615), 1, + ACTIONS(8704), 1, anon_sym_DQUOTE, - STATE(4952), 1, + STATE(5048), 1, sym_comment, - [131606] = 3, + [135343] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8617), 1, + ACTIONS(8706), 1, anon_sym_SQUOTE2, - STATE(4953), 1, + STATE(5049), 1, sym_comment, - [131616] = 3, + [135353] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8619), 1, + ACTIONS(8708), 1, anon_sym_BQUOTE2, - STATE(4954), 1, + STATE(5050), 1, sym_comment, - [131626] = 3, + [135363] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8621), 1, + ACTIONS(8710), 1, anon_sym_RBRACE, - STATE(4955), 1, + STATE(5051), 1, sym_comment, - [131636] = 3, + [135373] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8623), 1, + ACTIONS(8712), 1, sym_raw_string_end, - STATE(4956), 1, + STATE(5052), 1, sym_comment, - [131646] = 3, + [135383] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8625), 1, - anon_sym_GT2, - STATE(4957), 1, + ACTIONS(8714), 1, + anon_sym_LBRACE, + STATE(5053), 1, sym_comment, - [131656] = 3, + [135393] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8627), 1, + ACTIONS(8716), 1, anon_sym_DQUOTE, - STATE(4958), 1, + STATE(5054), 1, sym_comment, - [131666] = 3, + [135403] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8629), 1, + ACTIONS(8718), 1, anon_sym_SQUOTE2, - STATE(4959), 1, + STATE(5055), 1, sym_comment, - [131676] = 3, + [135413] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8631), 1, + ACTIONS(8720), 1, anon_sym_BQUOTE2, - STATE(4960), 1, + STATE(5056), 1, sym_comment, - [131686] = 3, + [135423] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8633), 1, - anon_sym_GT2, - STATE(4961), 1, + ACTIONS(297), 1, + anon_sym_RBRACE, + STATE(5057), 1, sym_comment, - [131696] = 3, + [135433] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8635), 1, + ACTIONS(8722), 1, sym_raw_string_end, - STATE(4962), 1, + STATE(5058), 1, sym_comment, - [131706] = 3, + [135443] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8637), 1, + ACTIONS(8724), 1, anon_sym_RPAREN, - STATE(4963), 1, + STATE(5059), 1, sym_comment, - [131716] = 3, + [135453] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8639), 1, + ACTIONS(8726), 1, anon_sym_DQUOTE, - STATE(4964), 1, + STATE(5060), 1, sym_comment, - [131726] = 3, + [135463] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8641), 1, + ACTIONS(8728), 1, anon_sym_SQUOTE2, - STATE(4965), 1, + STATE(5061), 1, sym_comment, - [131736] = 3, + [135473] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8643), 1, + ACTIONS(8730), 1, anon_sym_BQUOTE2, - STATE(4966), 1, + STATE(5062), 1, sym_comment, - [131746] = 3, + [135483] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_RBRACK, - STATE(4967), 1, + ACTIONS(8714), 1, + anon_sym_LBRACE, + STATE(5063), 1, sym_comment, - [131756] = 3, + [135493] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8647), 1, + ACTIONS(8732), 1, sym_raw_string_content, - STATE(4968), 1, + STATE(5064), 1, sym_comment, - [131766] = 3, + [135503] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8384), 1, - anon_sym_LBRACE, - STATE(4969), 1, + ACTIONS(8734), 1, + anon_sym_RPAREN, + STATE(5065), 1, sym_comment, - [131776] = 3, + [135513] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8649), 1, - anon_sym_GT2, - STATE(4970), 1, + ACTIONS(8736), 1, + anon_sym_DASH_GT, + STATE(5066), 1, sym_comment, - [131786] = 3, - ACTIONS(103), 1, + [135523] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8651), 1, - aux_sym_shebang_token1, - STATE(4971), 1, + ACTIONS(8738), 1, + anon_sym_GT2, + STATE(5067), 1, sym_comment, - [131796] = 3, + [135533] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2094), 1, + ACTIONS(2092), 1, anon_sym_LBRACK2, - STATE(4972), 1, + STATE(5068), 1, sym_comment, - [131806] = 3, + [135543] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8653), 1, + ACTIONS(8740), 1, aux_sym__str_single_quotes_token1, - STATE(4973), 1, + STATE(5069), 1, sym_comment, - [131816] = 3, + [135553] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8655), 1, + ACTIONS(8742), 1, aux_sym__str_back_ticks_token1, - STATE(4974), 1, - sym_comment, - [131826] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(307), 1, - anon_sym_RBRACE, - STATE(4975), 1, + STATE(5070), 1, sym_comment, - [131836] = 3, + [135563] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8657), 1, - anon_sym_RBRACE, - STATE(4976), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern, + STATE(5071), 1, sym_comment, - [131846] = 3, - ACTIONS(3), 1, + [135573] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2582), 1, - sym__table_head_separator, - STATE(4977), 1, + ACTIONS(8744), 1, + aux_sym_cmd_identifier_token6, + STATE(5072), 1, sym_comment, - [131856] = 3, - ACTIONS(103), 1, + [135583] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2738), 1, - aux_sym_cmd_identifier_token2, - STATE(4978), 1, + ACTIONS(8746), 1, + anon_sym_LBRACE, + STATE(5073), 1, sym_comment, - [131866] = 3, + [135593] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8659), 1, - anon_sym_RBRACE, - STATE(4979), 1, + ACTIONS(8746), 1, + anon_sym_LBRACE, + STATE(5074), 1, sym_comment, - [131876] = 3, + [135603] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8661), 1, - sym_attribute_identifier, - STATE(4980), 1, + ACTIONS(8748), 1, + anon_sym_LBRACE, + STATE(5075), 1, sym_comment, - [131886] = 3, + [135613] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8663), 1, + ACTIONS(8750), 1, anon_sym_RBRACE, - STATE(4981), 1, + STATE(5076), 1, sym_comment, - [131896] = 3, + [135623] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7958), 1, - anon_sym_LBRACE, - STATE(4982), 1, + ACTIONS(8752), 1, + sym_raw_string_end, + STATE(5077), 1, sym_comment, - [131906] = 3, + [135633] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8665), 1, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(4983), 1, + STATE(5078), 1, sym_comment, - [131916] = 3, + [135643] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8667), 1, - anon_sym_GT2, - STATE(4984), 1, + ACTIONS(8754), 1, + anon_sym_LBRACE, + STATE(5079), 1, sym_comment, - [131926] = 3, + [135653] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8669), 1, + ACTIONS(8756), 1, anon_sym_RBRACK, - STATE(4985), 1, + STATE(5080), 1, sym_comment, - [131936] = 3, + [135663] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8671), 1, - anon_sym_EQ, - STATE(4986), 1, + ACTIONS(8758), 1, + anon_sym_RBRACK, + STATE(5081), 1, sym_comment, - [131946] = 3, + [135673] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8673), 1, - anon_sym_DQUOTE, - STATE(4987), 1, + ACTIONS(8760), 1, + anon_sym_RBRACE, + STATE(5082), 1, + sym_comment, + [135683] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8762), 1, + aux_sym_cmd_identifier_token6, + STATE(5083), 1, sym_comment, - [131956] = 3, + [135693] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8675), 1, + ACTIONS(8764), 1, anon_sym_RBRACK, - STATE(4988), 1, + STATE(5084), 1, sym_comment, - [131966] = 3, + [135703] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8677), 1, + ACTIONS(8766), 1, anon_sym_RPAREN, - STATE(4989), 1, + STATE(5085), 1, sym_comment, - [131976] = 3, + [135713] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8679), 1, - anon_sym_LBRACE, - STATE(4990), 1, + ACTIONS(8768), 1, + anon_sym_GT2, + STATE(5086), 1, sym_comment, - [131986] = 3, + [135723] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8681), 1, - anon_sym_SQUOTE2, - STATE(4991), 1, + ACTIONS(2620), 1, + sym__table_head_separator, + STATE(5087), 1, sym_comment, - [131996] = 3, + [135733] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8683), 1, + ACTIONS(8770), 1, anon_sym_RBRACE, - STATE(4992), 1, + STATE(5088), 1, sym_comment, - [132006] = 3, + [135743] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2576), 1, - sym__unquoted_pattern, - STATE(4993), 1, + ACTIONS(8772), 1, + anon_sym_GT2, + STATE(5089), 1, sym_comment, - [132016] = 3, + [135753] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8685), 1, + ACTIONS(8774), 1, sym__space, - STATE(4994), 1, + STATE(5090), 1, sym_comment, - [132026] = 3, + [135763] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8687), 1, - anon_sym_BQUOTE2, - STATE(4995), 1, + ACTIONS(8776), 1, + anon_sym_RBRACE, + STATE(5091), 1, sym_comment, - [132036] = 3, + [135773] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8689), 1, - anon_sym_RPAREN, - STATE(4996), 1, + ACTIONS(5071), 1, + sym__unquoted_pattern, + STATE(5092), 1, sym_comment, - [132046] = 3, + [135783] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8691), 1, - sym_raw_string_end, - STATE(4997), 1, + ACTIONS(8778), 1, + anon_sym_GT2, + STATE(5093), 1, sym_comment, - [132056] = 3, + [135793] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8693), 1, - anon_sym_DQUOTE, - STATE(4998), 1, - sym_comment, - [132066] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8695), 1, - aux_sym_cmd_identifier_token6, - STATE(4999), 1, + ACTIONS(8780), 1, + anon_sym_RBRACK, + STATE(5094), 1, sym_comment, - [132076] = 3, + [135803] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8697), 1, + ACTIONS(8782), 1, anon_sym_RBRACE, - STATE(5000), 1, + STATE(5095), 1, sym_comment, - [132086] = 3, + [135813] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8699), 1, + ACTIONS(8784), 1, anon_sym_RBRACK, - STATE(5001), 1, + STATE(5096), 1, sym_comment, - [132096] = 3, + [135823] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8701), 1, - anon_sym_EQ, - STATE(5002), 1, + ACTIONS(8786), 1, + anon_sym_GT2, + STATE(5097), 1, sym_comment, - [132106] = 3, + [135833] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8703), 1, - sym_identifier, - STATE(5003), 1, + ACTIONS(8788), 1, + anon_sym_RBRACK, + STATE(5098), 1, sym_comment, - [132116] = 3, + [135843] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2508), 1, - sym__unquoted_pattern_in_record, - STATE(5004), 1, + ACTIONS(8790), 1, + anon_sym_RBRACK, + STATE(5099), 1, sym_comment, - [132126] = 3, + [135853] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8705), 1, - ts_builtin_sym_end, - STATE(5005), 1, + ACTIONS(8792), 1, + anon_sym_EQ, + STATE(5100), 1, sym_comment, - [132136] = 3, + [135863] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8707), 1, - anon_sym_RBRACK, - STATE(5006), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern, + STATE(5101), 1, sym_comment, - [132146] = 3, + [135873] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8709), 1, - anon_sym_RBRACE, - STATE(5007), 1, - sym_comment, - [132156] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1852), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(5008), 1, + ACTIONS(8794), 1, + anon_sym_RPAREN, + STATE(5102), 1, sym_comment, - [132166] = 3, + [135883] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8711), 1, - anon_sym_RBRACK, - STATE(5009), 1, + ACTIONS(8796), 1, + anon_sym_RPAREN, + STATE(5103), 1, sym_comment, - [132176] = 3, + [135893] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8713), 1, + ACTIONS(315), 1, anon_sym_RBRACE, - STATE(5010), 1, + STATE(5104), 1, sym_comment, - [132186] = 3, + [135903] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8715), 1, - anon_sym_RPAREN, - STATE(5011), 1, + ACTIONS(8798), 1, + sym_raw_string_end, + STATE(5105), 1, sym_comment, - [132196] = 3, + [135913] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8717), 1, - anon_sym_EQ, - STATE(5012), 1, + ACTIONS(8800), 1, + anon_sym_RBRACE, + STATE(5106), 1, sym_comment, - [132206] = 3, + [135923] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8719), 1, - anon_sym_EQ, - STATE(5013), 1, + ACTIONS(8802), 1, + anon_sym_GT2, + STATE(5107), 1, sym_comment, - [132216] = 3, + [135933] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8721), 1, - anon_sym_RBRACE, - STATE(5014), 1, + ACTIONS(8804), 1, + ts_builtin_sym_end, + STATE(5108), 1, sym_comment, - [132226] = 3, + [135943] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8723), 1, - sym_identifier, - STATE(5015), 1, + ACTIONS(8806), 1, + anon_sym_DASH_GT, + STATE(5109), 1, sym_comment, - [132236] = 3, + [135953] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8725), 1, + ACTIONS(8808), 1, anon_sym_RBRACK, - STATE(5016), 1, + STATE(5110), 1, sym_comment, - [132246] = 3, + [135963] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8727), 1, - anon_sym_RPAREN, - STATE(5017), 1, + ACTIONS(8810), 1, + anon_sym_EQ, + STATE(5111), 1, sym_comment, - [132256] = 3, + [135973] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8729), 1, - anon_sym_RBRACK, - STATE(5018), 1, + ACTIONS(1679), 1, + sym__unquoted_pattern, + STATE(5112), 1, sym_comment, - [132266] = 3, + [135983] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8731), 1, - sym_identifier, - STATE(5019), 1, + ACTIONS(6533), 1, + anon_sym_EQ, + STATE(5113), 1, sym_comment, - [132276] = 3, + [135993] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8733), 1, - anon_sym_EQ_GT, - STATE(5020), 1, + ACTIONS(2834), 1, + anon_sym_LBRACK2, + STATE(5114), 1, sym_comment, - [132286] = 3, - ACTIONS(103), 1, + [136003] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8735), 1, - aux_sym_cmd_identifier_token6, - STATE(5021), 1, + ACTIONS(8812), 1, + anon_sym_GT2, + STATE(5115), 1, sym_comment, - [132296] = 3, - ACTIONS(103), 1, + [136013] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8737), 1, - aux_sym_cmd_identifier_token6, - STATE(5022), 1, + ACTIONS(8814), 1, + anon_sym_RBRACE, + STATE(5116), 1, sym_comment, - [132306] = 3, + [136023] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8739), 1, - anon_sym_RBRACK, - STATE(5023), 1, + ACTIONS(8816), 1, + sym_identifier, + STATE(5117), 1, sym_comment, - [132316] = 3, + [136033] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8741), 1, - anon_sym_RBRACE, - STATE(5024), 1, + ACTIONS(8818), 1, + anon_sym_DQUOTE, + STATE(5118), 1, sym_comment, - [132326] = 3, + [136043] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8743), 1, - anon_sym_RPAREN, - STATE(5025), 1, + ACTIONS(8820), 1, + anon_sym_SQUOTE2, + STATE(5119), 1, sym_comment, - [132336] = 3, - ACTIONS(103), 1, + [136053] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8745), 1, - aux_sym_cmd_identifier_token2, - STATE(5026), 1, + ACTIONS(8822), 1, + sym_raw_string_content, + STATE(5120), 1, sym_comment, - [132346] = 3, + [136063] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2596), 1, - sym__unquoted_pattern, - STATE(5027), 1, + ACTIONS(8824), 1, + anon_sym_RBRACE, + STATE(5121), 1, sym_comment, - [132356] = 3, + [136073] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8747), 1, - anon_sym_RPAREN, - STATE(5028), 1, + ACTIONS(8826), 1, + anon_sym_RBRACK, + STATE(5122), 1, sym_comment, - [132366] = 3, + [136083] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8749), 1, - aux_sym_shebang_token1, - STATE(5029), 1, + ACTIONS(1894), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5123), 1, sym_comment, - [132376] = 3, + [136093] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(313), 1, - anon_sym_RBRACE, - STATE(5030), 1, + ACTIONS(8828), 1, + ts_builtin_sym_end, + STATE(5124), 1, sym_comment, - [132386] = 3, + [136103] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8751), 1, - anon_sym_RBRACK, - STATE(5031), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern, + STATE(5125), 1, sym_comment, - [132396] = 3, + [136113] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2031), 1, - sym__unquoted_pattern_in_record, - STATE(5032), 1, + ACTIONS(5255), 1, + anon_sym_EQ2, + STATE(5126), 1, sym_comment, - [132406] = 3, + [136123] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8753), 1, - anon_sym_GT2, - STATE(5033), 1, + ACTIONS(8830), 1, + anon_sym_RPAREN, + STATE(5127), 1, sym_comment, - [132416] = 3, + [136133] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2952), 1, - anon_sym_LBRACK2, - STATE(5034), 1, + ACTIONS(8832), 1, + anon_sym_RBRACE, + STATE(5128), 1, sym_comment, - [132426] = 3, + [136143] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8834), 1, + aux_sym_cmd_identifier_token2, + STATE(5129), 1, + sym_comment, + [136153] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8755), 1, + ACTIONS(8836), 1, anon_sym_EQ, - STATE(5035), 1, + STATE(5130), 1, + sym_comment, + [136163] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8838), 1, + anon_sym_DQUOTE, + STATE(5131), 1, + sym_comment, + [136173] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8840), 1, + aux_sym_cmd_identifier_token6, + STATE(5132), 1, sym_comment, - [132436] = 3, + [136183] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8757), 1, + ACTIONS(8842), 1, anon_sym_LBRACE, - STATE(5036), 1, + STATE(5133), 1, sym_comment, - [132446] = 3, + [136193] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8759), 1, - anon_sym_RBRACE, - STATE(5037), 1, + ACTIONS(8844), 1, + anon_sym_SQUOTE2, + STATE(5134), 1, sym_comment, - [132456] = 3, + [136203] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8761), 1, - sym_raw_string_end, - STATE(5038), 1, + ACTIONS(8846), 1, + anon_sym_BQUOTE2, + STATE(5135), 1, sym_comment, - [132466] = 3, + [136213] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8763), 1, + ACTIONS(8848), 1, anon_sym_EQ, - STATE(5039), 1, + STATE(5136), 1, sym_comment, - [132476] = 3, + [136223] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8765), 1, - anon_sym_PIPE, - STATE(5040), 1, + ACTIONS(8850), 1, + anon_sym_RBRACK, + STATE(5137), 1, sym_comment, - [132486] = 3, + [136233] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5017), 1, - sym__unquoted_pattern, - STATE(5041), 1, + ACTIONS(8852), 1, + anon_sym_RBRACE, + STATE(5138), 1, sym_comment, - [132496] = 3, + [136243] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8767), 1, - anon_sym_EQ_GT, - STATE(5042), 1, + ACTIONS(355), 1, + anon_sym_RPAREN2, + STATE(5139), 1, sym_comment, - [132506] = 3, + [136253] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8769), 1, - sym_raw_string_content, - STATE(5043), 1, + ACTIONS(6479), 1, + sym__unquoted_pattern_in_list, + STATE(5140), 1, sym_comment, - [132516] = 3, + [136263] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8771), 1, - anon_sym_SQUOTE2, - STATE(5044), 1, + ACTIONS(5281), 1, + anon_sym_EQ2, + STATE(5141), 1, sym_comment, - [132526] = 3, + [136273] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8773), 1, + ACTIONS(8854), 1, anon_sym_RPAREN, - STATE(5045), 1, + STATE(5142), 1, sym_comment, - [132536] = 3, + [136283] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8775), 1, - anon_sym_RBRACK, - STATE(5046), 1, + ACTIONS(8436), 1, + anon_sym_LBRACE, + STATE(5143), 1, + sym_comment, + [136293] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8856), 1, + aux_sym_cmd_identifier_token2, + STATE(5144), 1, + sym_comment, + [136303] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8858), 1, + aux_sym_cmd_identifier_token6, + STATE(5145), 1, sym_comment, - [132546] = 3, + [136313] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8777), 1, - anon_sym_RBRACE, - STATE(5047), 1, + ACTIONS(8860), 1, + sym__table_head_separator, + STATE(5146), 1, sym_comment, - [132556] = 3, + [136323] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8779), 1, - anon_sym_RPAREN, - STATE(5048), 1, + ACTIONS(8862), 1, + anon_sym_DQUOTE, + STATE(5147), 1, sym_comment, - [132566] = 3, + [136333] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8781), 1, - anon_sym_EQ, - STATE(5049), 1, + ACTIONS(8864), 1, + anon_sym_RBRACK, + STATE(5148), 1, sym_comment, - [132576] = 3, + [136343] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(311), 1, + ACTIONS(8866), 1, anon_sym_RBRACE, - STATE(5050), 1, + STATE(5149), 1, + sym_comment, + [136353] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8868), 1, + anon_sym_RBRACK, + STATE(5150), 1, sym_comment, - [132586] = 3, + [136363] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8783), 1, - aux_sym_cmd_identifier_token6, - STATE(5051), 1, + ACTIONS(8870), 1, + aux_sym_shebang_token1, + STATE(5151), 1, sym_comment, - [132596] = 3, + [136373] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5253), 1, - anon_sym_EQ2, - STATE(5052), 1, + ACTIONS(8872), 1, + anon_sym_RBRACK, + STATE(5152), 1, sym_comment, - [132606] = 3, + [136383] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8785), 1, - anon_sym_GT2, - STATE(5053), 1, + ACTIONS(1772), 1, + sym__unquoted_pattern_in_record, + STATE(5153), 1, sym_comment, - [132616] = 3, + [136393] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8787), 1, - anon_sym_RBRACK, - STATE(5054), 1, + ACTIONS(8874), 1, + anon_sym_RBRACE, + STATE(5154), 1, sym_comment, - [132626] = 3, + [136403] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8789), 1, - anon_sym_GT2, - STATE(5055), 1, + ACTIONS(8876), 1, + anon_sym_RBRACE, + STATE(5155), 1, sym_comment, - [132636] = 3, + [136413] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8791), 1, - sym__table_head_separator, - STATE(5056), 1, + ACTIONS(1635), 1, + sym__unquoted_pattern_in_record, + STATE(5156), 1, sym_comment, - [132646] = 3, + [136423] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8793), 1, - sym_identifier, - STATE(5057), 1, + ACTIONS(1854), 1, + sym__unquoted_pattern_in_record, + STATE(5157), 1, sym_comment, - [132656] = 3, + [136433] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8795), 1, - anon_sym_GT2, - STATE(5058), 1, + ACTIONS(8878), 1, + anon_sym_BQUOTE2, + STATE(5158), 1, sym_comment, - [132666] = 3, + [136443] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8797), 1, - anon_sym_EQ, - STATE(5059), 1, + ACTIONS(1872), 1, + sym__unquoted_pattern_in_record, + STATE(5159), 1, sym_comment, - [132676] = 3, + [136453] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8799), 1, + ACTIONS(8880), 1, anon_sym_RBRACE, - STATE(5060), 1, + STATE(5160), 1, sym_comment, - [132686] = 3, + [136463] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(5061), 1, + ACTIONS(8882), 1, + anon_sym_RBRACE, + STATE(5161), 1, sym_comment, - [132696] = 3, + [136473] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1776), 1, - sym__unquoted_pattern, - STATE(5062), 1, + ACTIONS(8884), 1, + anon_sym_RPAREN, + STATE(5162), 1, sym_comment, - [132706] = 3, + [136483] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8801), 1, - anon_sym_RBRACK, - STATE(5063), 1, + ACTIONS(8886), 1, + anon_sym_SQUOTE2, + STATE(5163), 1, sym_comment, - [132716] = 3, + [136493] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8888), 1, + aux_sym_cmd_identifier_token6, + STATE(5164), 1, + sym_comment, + [136503] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8803), 1, - anon_sym_DQUOTE, - STATE(5064), 1, + ACTIONS(8890), 1, + anon_sym_COLON2, + STATE(5165), 1, sym_comment, - [132726] = 3, + [136513] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - STATE(5065), 1, + ACTIONS(8892), 1, + anon_sym_RBRACE, + STATE(5166), 1, sym_comment, - [132736] = 3, + [136523] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8805), 1, - anon_sym_SQUOTE2, - STATE(5066), 1, + ACTIONS(8894), 1, + sym_raw_string_end, + STATE(5167), 1, sym_comment, - [132746] = 3, + [136533] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8807), 1, - anon_sym_BQUOTE2, - STATE(5067), 1, + ACTIONS(8068), 1, + anon_sym_EQ_GT, + STATE(5168), 1, sym_comment, - [132756] = 3, + [136543] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8809), 1, - sym_long_flag_identifier, - STATE(5068), 1, + ACTIONS(2654), 1, + sym__unquoted_pattern_in_record, + STATE(5169), 1, sym_comment, - [132766] = 3, + [136553] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8811), 1, - anon_sym_RBRACE, - STATE(5069), 1, + ACTIONS(2614), 1, + sym__unquoted_pattern_in_record, + STATE(5170), 1, + sym_comment, + [136563] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8896), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5171), 1, sym_comment, - [132776] = 3, + [136573] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - anon_sym_LBRACE, - STATE(5070), 1, + ACTIONS(8898), 1, + anon_sym_EQ, + STATE(5172), 1, sym_comment, - [132786] = 3, + [136583] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(357), 1, - anon_sym_RPAREN2, - STATE(5071), 1, + ACTIONS(8900), 1, + anon_sym_PIPE, + STATE(5173), 1, sym_comment, - [132796] = 3, + [136593] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8815), 1, - aux_sym_cmd_identifier_token6, - STATE(5072), 1, + ACTIONS(1880), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5174), 1, + sym_comment, + [136603] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8902), 1, + aux_sym_cmd_identifier_token2, + STATE(5175), 1, sym_comment, - [132806] = 3, + [136613] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8817), 1, - anon_sym_RBRACE, - STATE(5073), 1, + ACTIONS(1734), 1, + sym__unquoted_pattern, + STATE(5176), 1, sym_comment, - [132816] = 3, + [136623] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8819), 1, - anon_sym_RBRACK, - STATE(5074), 1, + ACTIONS(7424), 1, + sym__unquoted_pattern, + STATE(5177), 1, + sym_comment, + [136633] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8904), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5178), 1, sym_comment, - [132826] = 3, + [136643] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8821), 1, - anon_sym_RBRACK, - STATE(5075), 1, + ACTIONS(8906), 1, + anon_sym_in, + STATE(5179), 1, sym_comment, - [132836] = 3, + [136653] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2558), 1, - sym__unquoted_pattern, - STATE(5076), 1, + ACTIONS(8908), 1, + sym_identifier, + STATE(5180), 1, sym_comment, - [132846] = 3, + [136663] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8370), 1, - aux_sym__record_key_token1, - STATE(5077), 1, + ACTIONS(8910), 1, + aux_sym__str_single_quotes_token1, + STATE(5181), 1, sym_comment, - [132856] = 3, + [136673] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2558), 1, - sym__unquoted_pattern_in_record, - STATE(5078), 1, + ACTIONS(8912), 1, + anon_sym_RPAREN, + STATE(5182), 1, sym_comment, - [132866] = 3, + [136683] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8823), 1, + ACTIONS(8914), 1, anon_sym_RBRACE, - STATE(5079), 1, + STATE(5183), 1, sym_comment, - [132876] = 3, + [136693] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8825), 1, + ACTIONS(8916), 1, anon_sym_RBRACE, - STATE(5080), 1, + STATE(5184), 1, sym_comment, - [132886] = 3, - ACTIONS(3), 1, + [136703] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8827), 1, - ts_builtin_sym_end, - STATE(5081), 1, + ACTIONS(8918), 1, + aux_sym_cmd_identifier_token6, + STATE(5185), 1, sym_comment, - [132896] = 3, + [136713] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(393), 1, - ts_builtin_sym_end, - STATE(5082), 1, + ACTIONS(8920), 1, + anon_sym_EQ, + STATE(5186), 1, sym_comment, - [132906] = 3, - ACTIONS(103), 1, + [136723] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8829), 1, - aux_sym_cmd_identifier_token2, - STATE(5083), 1, + ACTIONS(8922), 1, + anon_sym_RBRACE, + STATE(5187), 1, sym_comment, - [132916] = 3, + [136733] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5331), 1, + ACTIONS(5275), 1, anon_sym_EQ2, - STATE(5084), 1, + STATE(5188), 1, sym_comment, - [132926] = 3, - ACTIONS(103), 1, + [136743] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1878), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5085), 1, + ACTIONS(8924), 1, + sym_identifier, + STATE(5189), 1, sym_comment, - [132936] = 3, + [136753] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8831), 1, - anon_sym_RBRACE, - STATE(5086), 1, + ACTIONS(8926), 1, + sym_param_short_flag_identifier, + STATE(5190), 1, sym_comment, - [132946] = 3, + [136763] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6277), 1, - sym__unquoted_pattern_in_list, - STATE(5087), 1, + ACTIONS(8928), 1, + anon_sym_RBRACK, + STATE(5191), 1, sym_comment, - [132956] = 3, + [136773] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8833), 1, - anon_sym_RBRACE, - STATE(5088), 1, + ACTIONS(8930), 1, + sym_raw_string_end, + STATE(5192), 1, sym_comment, - [132966] = 3, + [136783] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8835), 1, + ACTIONS(8932), 1, anon_sym_RPAREN, - STATE(5089), 1, + STATE(5193), 1, sym_comment, - [132976] = 3, + [136793] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5257), 1, - anon_sym_EQ2, - STATE(5090), 1, + ACTIONS(8934), 1, + anon_sym_EQ_GT, + STATE(5194), 1, + sym_comment, + [136803] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8936), 1, + sym_attribute_identifier, + STATE(5195), 1, + sym_comment, + [136813] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8938), 1, + anon_sym_RPAREN, + STATE(5196), 1, + sym_comment, + [136823] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8940), 1, + anon_sym_LBRACE, + STATE(5197), 1, sym_comment, - [132986] = 3, + [136833] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2950), 1, + ACTIONS(2555), 1, aux_sym_cmd_identifier_token2, - STATE(5091), 1, + STATE(5198), 1, sym_comment, - [132996] = 3, - ACTIONS(103), 1, + [136843] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8837), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5092), 1, + ACTIONS(2658), 1, + sym__unquoted_pattern_in_record, + STATE(5199), 1, sym_comment, - [133006] = 3, + [136853] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8839), 1, + ACTIONS(8942), 1, anon_sym_RBRACK, - STATE(5093), 1, + STATE(5200), 1, sym_comment, - [133016] = 3, + [136863] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(289), 1, anon_sym_RBRACE, - STATE(5094), 1, + STATE(5201), 1, sym_comment, - [133026] = 3, + [136873] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8841), 1, + ACTIONS(8944), 1, anon_sym_RBRACE, - STATE(5095), 1, - sym_comment, - [133036] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8843), 1, - aux_sym_cmd_identifier_token6, - STATE(5096), 1, + STATE(5202), 1, sym_comment, - [133046] = 3, + [136883] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8845), 1, + ACTIONS(8946), 1, anon_sym_RBRACK, - STATE(5097), 1, - sym_comment, - [133056] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8847), 1, - sym__table_head_separator, - STATE(5098), 1, + STATE(5203), 1, sym_comment, - [133066] = 3, + [136893] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8849), 1, - anon_sym_RBRACE, - STATE(5099), 1, + ACTIONS(8948), 1, + anon_sym_RBRACK, + STATE(5204), 1, sym_comment, - [133076] = 3, + [136903] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8851), 1, - anon_sym_RBRACK, - STATE(5100), 1, + ACTIONS(8950), 1, + sym_identifier, + STATE(5205), 1, sym_comment, - [133086] = 3, + [136913] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8853), 1, + ACTIONS(305), 1, anon_sym_RBRACE, - STATE(5101), 1, + STATE(5206), 1, sym_comment, - [133096] = 3, + [136923] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8855), 1, + ACTIONS(8952), 1, anon_sym_RPAREN, - STATE(5102), 1, + STATE(5207), 1, sym_comment, - [133106] = 3, + [136933] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1878), 1, + ACTIONS(8954), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(5103), 1, + STATE(5208), 1, sym_comment, - [133116] = 3, - ACTIONS(3), 1, + [136943] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6693), 1, - sym__unquoted_pattern_in_record, - STATE(5104), 1, + ACTIONS(1880), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5209), 1, sym_comment, - [133126] = 3, + [136953] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2576), 1, - sym__unquoted_pattern_in_record, - STATE(5105), 1, + ACTIONS(8956), 1, + anon_sym_RPAREN, + STATE(5210), 1, sym_comment, - [133136] = 3, + [136963] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8857), 1, + ACTIONS(8958), 1, sym_raw_string_content, - STATE(5106), 1, + STATE(5211), 1, sym_comment, - [133146] = 3, + [136973] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7608), 1, + ACTIONS(7806), 1, anon_sym_LBRACK2, - STATE(5107), 1, + STATE(5212), 1, sym_comment, - [133156] = 3, + [136983] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8859), 1, + ACTIONS(8960), 1, aux_sym__str_single_quotes_token1, - STATE(5108), 1, + STATE(5213), 1, sym_comment, - [133166] = 3, + [136993] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8861), 1, + ACTIONS(8962), 1, aux_sym__str_back_ticks_token1, - STATE(5109), 1, + STATE(5214), 1, sym_comment, - [133176] = 3, + [137003] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8863), 1, - sym_raw_string_end, - STATE(5110), 1, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(5215), 1, sym_comment, - [133186] = 3, + [137013] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8865), 1, - anon_sym_in, - STATE(5111), 1, + ACTIONS(8964), 1, + anon_sym_RBRACE, + STATE(5216), 1, sym_comment, - [133196] = 3, + [137023] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8867), 1, + ACTIONS(8966), 1, sym__space, - STATE(5112), 1, - sym_comment, - [133206] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8869), 1, - anon_sym_EQ, - STATE(5113), 1, - sym_comment, - [133216] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1748), 1, - sym__unquoted_pattern_in_record, - STATE(5114), 1, + STATE(5217), 1, sym_comment, - [133226] = 3, + [137033] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8871), 1, - anon_sym_SQUOTE2, - STATE(5115), 1, + ACTIONS(8968), 1, + sym_raw_string_end, + STATE(5218), 1, sym_comment, - [133236] = 3, + [137043] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8873), 1, - anon_sym_RBRACE, - STATE(5116), 1, + ACTIONS(8970), 1, + anon_sym_RPAREN, + STATE(5219), 1, sym_comment, - [133246] = 3, + [137053] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8875), 1, + ACTIONS(8972), 1, anon_sym_RBRACE, - STATE(5117), 1, + STATE(5220), 1, sym_comment, - [133256] = 3, + [137063] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1814), 1, - sym__unquoted_pattern_in_record, - STATE(5118), 1, + ACTIONS(8974), 1, + sym_raw_string_end, + STATE(5221), 1, sym_comment, - [133266] = 3, + [137073] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8877), 1, - anon_sym_LBRACE, - STATE(5119), 1, + ACTIONS(8976), 1, + anon_sym_EQ, + STATE(5222), 1, sym_comment, - [133276] = 3, + [137083] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1902), 1, - sym__unquoted_pattern_in_record, - STATE(5120), 1, + ACTIONS(6285), 1, + anon_sym_EQ, + STATE(5223), 1, sym_comment, - [133286] = 3, + [137093] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(303), 1, - anon_sym_RBRACE, - STATE(5121), 1, + ACTIONS(8978), 1, + anon_sym_DQUOTE, + STATE(5224), 1, sym_comment, - [133296] = 3, + [137103] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8879), 1, - anon_sym_DQUOTE, - STATE(5122), 1, + ACTIONS(8980), 1, + anon_sym_SQUOTE2, + STATE(5225), 1, sym_comment, - [133306] = 3, + [137113] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8877), 1, - anon_sym_LBRACE, - STATE(5123), 1, + ACTIONS(8982), 1, + anon_sym_BQUOTE2, + STATE(5226), 1, sym_comment, - [133316] = 3, + [137123] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7334), 1, + ACTIONS(4211), 1, sym__unquoted_pattern, - STATE(5124), 1, + STATE(5227), 1, sym_comment, - [133326] = 3, + [137133] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8881), 1, - anon_sym_COLON2, - STATE(5125), 1, + ACTIONS(8984), 1, + anon_sym_DQUOTE, + STATE(5228), 1, sym_comment, - [133336] = 3, + [137143] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8883), 1, - sym_raw_string_end, - STATE(5126), 1, + ACTIONS(6303), 1, + anon_sym_EQ, + STATE(5229), 1, sym_comment, - [133346] = 3, + [137153] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1691), 1, - sym__unquoted_pattern, - STATE(5127), 1, + ACTIONS(8986), 1, + anon_sym_SQUOTE2, + STATE(5230), 1, sym_comment, - [133356] = 3, - ACTIONS(3), 1, + [137163] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8885), 1, - anon_sym_RBRACE, - STATE(5128), 1, + ACTIONS(8988), 1, + aux_sym_cmd_identifier_token6, + STATE(5231), 1, sym_comment, - [133366] = 3, + [137173] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8887), 1, - anon_sym_BQUOTE2, - STATE(5129), 1, + ACTIONS(8990), 1, + anon_sym_EQ, + STATE(5232), 1, sym_comment, - [133376] = 3, + [137183] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8889), 1, - anon_sym_RPAREN2, - STATE(5130), 1, + ACTIONS(8992), 1, + anon_sym_RBRACK, + STATE(5233), 1, sym_comment, - [133386] = 3, + [137193] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5381), 1, - anon_sym_EQ2, - STATE(5131), 1, + ACTIONS(8994), 1, + anon_sym_RBRACK, + STATE(5234), 1, sym_comment, - [133396] = 3, + [137203] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8891), 1, - sym_identifier, - STATE(5132), 1, + ACTIONS(8996), 1, + anon_sym_BQUOTE2, + STATE(5235), 1, sym_comment, - [133406] = 3, + [137213] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8893), 1, + ACTIONS(8998), 1, anon_sym_RPAREN, - STATE(5133), 1, + STATE(5236), 1, sym_comment, - [133416] = 3, + [137223] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8895), 1, - anon_sym_SQUOTE2, - STATE(5134), 1, + ACTIONS(6295), 1, + anon_sym_EQ, + STATE(5237), 1, sym_comment, - [133426] = 3, + [137233] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8897), 1, - anon_sym_BQUOTE2, - STATE(5135), 1, + ACTIONS(307), 1, + anon_sym_RBRACE, + STATE(5238), 1, sym_comment, - [133436] = 3, + [137243] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2630), 1, - aux_sym_cmd_identifier_token2, - STATE(5136), 1, + ACTIONS(9000), 1, + aux_sym__str_back_ticks_token1, + STATE(5239), 1, sym_comment, - [133446] = 3, + [137253] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7862), 1, - anon_sym_LBRACE, - STATE(5137), 1, + ACTIONS(9002), 1, + anon_sym_RPAREN, + STATE(5240), 1, sym_comment, - [133456] = 3, + [137263] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1718), 1, - anon_sym_COLON2, - STATE(5138), 1, + ACTIONS(9004), 1, + anon_sym_RBRACE, + STATE(5241), 1, sym_comment, - [133466] = 3, + [137273] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8899), 1, + ACTIONS(9006), 1, anon_sym_RBRACK, - STATE(5139), 1, + STATE(5242), 1, sym_comment, - [133476] = 3, + [137283] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5263), 1, - anon_sym_EQ2, - STATE(5140), 1, + ACTIONS(1983), 1, + sym__unquoted_pattern_in_record, + STATE(5243), 1, sym_comment, - [133486] = 3, + [137293] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8901), 1, - anon_sym_RBRACK, - STATE(5141), 1, + ACTIONS(9008), 1, + anon_sym_RPAREN, + STATE(5244), 1, sym_comment, - [133496] = 3, + [137303] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - anon_sym_LBRACE, - STATE(5142), 1, + ACTIONS(9010), 1, + anon_sym_DQUOTE, + STATE(5245), 1, sym_comment, - [133506] = 3, + [137313] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8903), 1, - anon_sym_RPAREN, - STATE(5143), 1, + ACTIONS(9012), 1, + anon_sym_SQUOTE2, + STATE(5246), 1, sym_comment, - [133516] = 3, + [137323] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2031), 1, - sym__unquoted_pattern, - STATE(5144), 1, + ACTIONS(9014), 1, + anon_sym_BQUOTE2, + STATE(5247), 1, sym_comment, - [133526] = 3, + [137333] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8905), 1, + ACTIONS(9016), 1, + anon_sym_RBRACK, + STATE(5248), 1, + sym_comment, + [137343] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9018), 1, anon_sym_RBRACE, - STATE(5145), 1, + 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, - [133536] = 3, + [137363] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8907), 1, - anon_sym_RPAREN, - STATE(5146), 1, + ACTIONS(9022), 1, + anon_sym_EQ, + STATE(5251), 1, sym_comment, - [133546] = 3, + [137373] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8909), 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(5147), 1, + STATE(5253), 1, sym_comment, - [133556] = 3, + [137393] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5977), 1, + ACTIONS(6206), 1, anon_sym_LBRACK2, - STATE(5148), 1, + STATE(5254), 1, sym_comment, - [133566] = 3, + [137403] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8911), 1, + ACTIONS(9028), 1, aux_sym__str_single_quotes_token1, - STATE(5149), 1, + STATE(5255), 1, sym_comment, - [133576] = 3, + [137413] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8913), 1, + ACTIONS(9030), 1, aux_sym__str_back_ticks_token1, - STATE(5150), 1, + STATE(5256), 1, sym_comment, - [133586] = 3, - ACTIONS(3), 1, + [137423] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1888), 1, - sym__table_head_separator, - STATE(5151), 1, + ACTIONS(9032), 1, + aux_sym_cmd_identifier_token6, + STATE(5257), 1, sym_comment, - [133596] = 3, + [137433] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8915), 1, + ACTIONS(9034), 1, sym__space, - STATE(5152), 1, + STATE(5258), 1, sym_comment, - [133606] = 3, + [137443] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(315), 1, - anon_sym_RBRACE, - STATE(5153), 1, + ACTIONS(6607), 1, + anon_sym_EQ, + STATE(5259), 1, sym_comment, - [133616] = 3, + [137453] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8917), 1, - anon_sym_RBRACE, - STATE(5154), 1, + ACTIONS(5469), 1, + anon_sym_EQ2, + STATE(5260), 1, + sym_comment, + [137463] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9036), 1, + anon_sym_BQUOTE2, + STATE(5261), 1, sym_comment, - [133626] = 3, + [137473] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8919), 1, + ACTIONS(9038), 1, sym_raw_string_content, - STATE(5155), 1, + STATE(5262), 1, sym_comment, - [133636] = 3, + [137483] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4595), 1, anon_sym_LBRACK2, - STATE(5156), 1, + STATE(5263), 1, sym_comment, - [133646] = 3, + [137493] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8921), 1, + ACTIONS(9040), 1, aux_sym__str_single_quotes_token1, - STATE(5157), 1, + STATE(5264), 1, sym_comment, - [133656] = 3, + [137503] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8923), 1, + ACTIONS(9042), 1, aux_sym__str_back_ticks_token1, - STATE(5158), 1, + STATE(5265), 1, sym_comment, - [133666] = 3, + [137513] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8925), 1, + ACTIONS(9044), 1, sym_raw_string_content, - STATE(5159), 1, + STATE(5266), 1, sym_comment, - [133676] = 3, + [137523] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5743), 1, + ACTIONS(5929), 1, anon_sym_LBRACK2, - STATE(5160), 1, + STATE(5267), 1, sym_comment, - [133686] = 3, + [137533] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8927), 1, + ACTIONS(9046), 1, aux_sym__str_single_quotes_token1, - STATE(5161), 1, + STATE(5268), 1, sym_comment, - [133696] = 3, + [137543] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8929), 1, + ACTIONS(9048), 1, aux_sym__str_back_ticks_token1, - STATE(5162), 1, + STATE(5269), 1, sym_comment, - [133706] = 3, + [137553] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8931), 1, + ACTIONS(9050), 1, sym_raw_string_content, - STATE(5163), 1, + STATE(5270), 1, sym_comment, - [133716] = 3, + [137563] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5816), 1, + ACTIONS(5952), 1, anon_sym_LBRACK2, - STATE(5164), 1, + STATE(5271), 1, sym_comment, - [133726] = 3, + [137573] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8933), 1, + ACTIONS(9052), 1, aux_sym__str_single_quotes_token1, - STATE(5165), 1, + STATE(5272), 1, sym_comment, - [133736] = 3, + [137583] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8935), 1, + ACTIONS(9054), 1, aux_sym__str_back_ticks_token1, - STATE(5166), 1, + STATE(5273), 1, sym_comment, - [133746] = 3, + [137593] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8937), 1, + ACTIONS(9056), 1, sym_raw_string_content, - STATE(5167), 1, + STATE(5274), 1, sym_comment, - [133756] = 3, + [137603] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8939), 1, + ACTIONS(9058), 1, aux_sym__str_single_quotes_token1, - STATE(5168), 1, + STATE(5275), 1, sym_comment, - [133766] = 3, + [137613] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8941), 1, + ACTIONS(9060), 1, aux_sym__str_back_ticks_token1, - STATE(5169), 1, + STATE(5276), 1, sym_comment, - [133776] = 3, + [137623] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8943), 1, + ACTIONS(9062), 1, sym_raw_string_content, - STATE(5170), 1, + STATE(5277), 1, sym_comment, - [133786] = 3, + [137633] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8945), 1, + ACTIONS(9064), 1, aux_sym__str_single_quotes_token1, - STATE(5171), 1, + STATE(5278), 1, sym_comment, - [133796] = 3, + [137643] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8947), 1, + ACTIONS(9066), 1, aux_sym__str_back_ticks_token1, - STATE(5172), 1, + STATE(5279), 1, sym_comment, - [133806] = 3, + [137653] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8949), 1, + ACTIONS(9068), 1, sym_raw_string_content, - STATE(5173), 1, + STATE(5280), 1, sym_comment, - [133816] = 3, + [137663] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8951), 1, + ACTIONS(9070), 1, aux_sym__str_single_quotes_token1, - STATE(5174), 1, + STATE(5281), 1, sym_comment, - [133826] = 3, + [137673] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8953), 1, + ACTIONS(9072), 1, aux_sym__str_back_ticks_token1, - STATE(5175), 1, + STATE(5282), 1, sym_comment, - [133836] = 3, + [137683] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8955), 1, + ACTIONS(9074), 1, sym_raw_string_content, - STATE(5176), 1, + STATE(5283), 1, sym_comment, - [133846] = 3, + [137693] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8957), 1, + ACTIONS(9076), 1, aux_sym__str_single_quotes_token1, - STATE(5177), 1, + STATE(5284), 1, sym_comment, - [133856] = 3, + [137703] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8959), 1, + ACTIONS(9078), 1, aux_sym__str_back_ticks_token1, - STATE(5178), 1, + STATE(5285), 1, sym_comment, - [133866] = 3, + [137713] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8961), 1, + ACTIONS(9080), 1, sym_raw_string_content, - STATE(5179), 1, + STATE(5286), 1, sym_comment, - [133876] = 3, + [137723] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8963), 1, + ACTIONS(9082), 1, aux_sym__str_single_quotes_token1, - STATE(5180), 1, + STATE(5287), 1, sym_comment, - [133886] = 3, + [137733] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8965), 1, + ACTIONS(9084), 1, aux_sym__str_back_ticks_token1, - STATE(5181), 1, + STATE(5288), 1, sym_comment, - [133896] = 3, + [137743] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8967), 1, + ACTIONS(9086), 1, sym_raw_string_content, - STATE(5182), 1, + STATE(5289), 1, sym_comment, - [133906] = 3, + [137753] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8969), 1, + ACTIONS(9088), 1, aux_sym__str_single_quotes_token1, - STATE(5183), 1, + STATE(5290), 1, sym_comment, - [133916] = 3, + [137763] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8971), 1, + ACTIONS(9090), 1, aux_sym__str_back_ticks_token1, - STATE(5184), 1, + STATE(5291), 1, sym_comment, - [133926] = 3, + [137773] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8973), 1, + ACTIONS(9092), 1, sym_raw_string_content, - STATE(5185), 1, + STATE(5292), 1, sym_comment, - [133936] = 3, + [137783] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8975), 1, + ACTIONS(9094), 1, aux_sym__str_single_quotes_token1, - STATE(5186), 1, + STATE(5293), 1, sym_comment, - [133946] = 3, + [137793] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8977), 1, + ACTIONS(9096), 1, aux_sym__str_back_ticks_token1, - STATE(5187), 1, + STATE(5294), 1, sym_comment, - [133956] = 3, + [137803] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8979), 1, + ACTIONS(9098), 1, sym_raw_string_content, - STATE(5188), 1, + STATE(5295), 1, sym_comment, - [133966] = 3, + [137813] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8981), 1, + ACTIONS(9100), 1, aux_sym__str_single_quotes_token1, - STATE(5189), 1, + STATE(5296), 1, sym_comment, - [133976] = 3, + [137823] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8983), 1, + ACTIONS(9102), 1, aux_sym__str_back_ticks_token1, - STATE(5190), 1, + STATE(5297), 1, sym_comment, - [133986] = 3, + [137833] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8985), 1, + ACTIONS(9104), 1, sym_raw_string_content, - STATE(5191), 1, + STATE(5298), 1, sym_comment, - [133996] = 3, + [137843] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8987), 1, + ACTIONS(9106), 1, aux_sym__str_single_quotes_token1, - STATE(5192), 1, + STATE(5299), 1, sym_comment, - [134006] = 3, + [137853] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8989), 1, + ACTIONS(9108), 1, aux_sym__str_back_ticks_token1, - STATE(5193), 1, + STATE(5300), 1, sym_comment, - [134016] = 3, + [137863] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8991), 1, + ACTIONS(9110), 1, sym_raw_string_content, - STATE(5194), 1, + STATE(5301), 1, sym_comment, - [134026] = 3, + [137873] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8993), 1, + ACTIONS(9112), 1, aux_sym__str_single_quotes_token1, - STATE(5195), 1, + STATE(5302), 1, sym_comment, - [134036] = 3, + [137883] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8995), 1, + ACTIONS(9114), 1, aux_sym__str_back_ticks_token1, - STATE(5196), 1, + STATE(5303), 1, sym_comment, - [134046] = 3, + [137893] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8997), 1, + ACTIONS(9116), 1, sym_raw_string_content, - STATE(5197), 1, + STATE(5304), 1, sym_comment, - [134056] = 3, + [137903] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8999), 1, + ACTIONS(9118), 1, aux_sym__str_single_quotes_token1, - STATE(5198), 1, + STATE(5305), 1, sym_comment, - [134066] = 3, + [137913] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9001), 1, + ACTIONS(9120), 1, aux_sym__str_back_ticks_token1, - STATE(5199), 1, + STATE(5306), 1, sym_comment, - [134076] = 3, + [137923] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9003), 1, + ACTIONS(9122), 1, sym_raw_string_content, - STATE(5200), 1, + STATE(5307), 1, sym_comment, - [134086] = 3, + [137933] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9005), 1, + ACTIONS(9124), 1, aux_sym__str_single_quotes_token1, - STATE(5201), 1, + STATE(5308), 1, sym_comment, - [134096] = 3, + [137943] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9007), 1, + ACTIONS(9126), 1, aux_sym__str_back_ticks_token1, - STATE(5202), 1, + STATE(5309), 1, sym_comment, - [134106] = 3, + [137953] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9009), 1, + ACTIONS(9128), 1, sym_raw_string_content, - STATE(5203), 1, + STATE(5310), 1, sym_comment, - [134116] = 3, + [137963] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9011), 1, + ACTIONS(9130), 1, aux_sym__str_single_quotes_token1, - STATE(5204), 1, + STATE(5311), 1, sym_comment, - [134126] = 3, + [137973] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9013), 1, + ACTIONS(9132), 1, aux_sym__str_back_ticks_token1, - STATE(5205), 1, + STATE(5312), 1, sym_comment, - [134136] = 3, + [137983] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9015), 1, + ACTIONS(9134), 1, sym_raw_string_content, - STATE(5206), 1, + STATE(5313), 1, sym_comment, - [134146] = 3, + [137993] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9017), 1, + ACTIONS(9136), 1, aux_sym__str_single_quotes_token1, - STATE(5207), 1, + STATE(5314), 1, sym_comment, - [134156] = 3, + [138003] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9019), 1, + ACTIONS(9138), 1, aux_sym__str_back_ticks_token1, - STATE(5208), 1, + STATE(5315), 1, sym_comment, - [134166] = 3, + [138013] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9021), 1, - sym_raw_string_end, - STATE(5209), 1, + ACTIONS(5160), 1, + sym__unquoted_pattern, + STATE(5316), 1, sym_comment, - [134176] = 3, + [138023] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9023), 1, - anon_sym_RBRACE, - STATE(5210), 1, + ACTIONS(9140), 1, + anon_sym_EQ, + STATE(5317), 1, sym_comment, - [134186] = 3, + [138033] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8368), 1, + ACTIONS(8390), 1, anon_sym_LPAREN2, - STATE(5211), 1, + STATE(5318), 1, sym_comment, - [134196] = 3, + [138043] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9025), 1, - sym_raw_string_end, - STATE(5212), 1, + ACTIONS(9142), 1, + anon_sym_RBRACK, + STATE(5319), 1, sym_comment, - [134206] = 3, + [138053] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9027), 1, - anon_sym_EQ, - STATE(5213), 1, + ACTIONS(9144), 1, + anon_sym_RBRACE, + STATE(5320), 1, sym_comment, - [134216] = 3, + [138063] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9029), 1, - anon_sym_GT2, - STATE(5214), 1, + ACTIONS(5235), 1, + anon_sym_EQ2, + STATE(5321), 1, sym_comment, - [134226] = 3, + [138073] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9031), 1, + ACTIONS(9146), 1, anon_sym_in, - STATE(5215), 1, + STATE(5322), 1, + sym_comment, + [138083] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9148), 1, + anon_sym_RBRACK, + STATE(5323), 1, sym_comment, - [134236] = 3, + [138093] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9033), 1, + ACTIONS(9150), 1, anon_sym_RBRACE, - STATE(5216), 1, + STATE(5324), 1, sym_comment, - [134246] = 3, + [138103] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9035), 1, - anon_sym_DQUOTE, - STATE(5217), 1, + ACTIONS(9152), 1, + anon_sym_RPAREN, + STATE(5325), 1, sym_comment, - [134256] = 3, + [138113] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4157), 1, - sym__unquoted_pattern, - STATE(5218), 1, + ACTIONS(9154), 1, + anon_sym_RBRACK, + STATE(5326), 1, sym_comment, - [134266] = 3, + [138123] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9037), 1, + ACTIONS(9156), 1, anon_sym_RPAREN, - STATE(5219), 1, + STATE(5327), 1, sym_comment, - [134276] = 3, + [138133] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9039), 1, - anon_sym_DQUOTE, - STATE(5220), 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, - [134286] = 3, + [138153] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9041), 1, - anon_sym_SQUOTE2, - STATE(5221), 1, + ACTIONS(9160), 1, + sym_identifier, + STATE(5330), 1, sym_comment, - [134296] = 3, + [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(9043), 1, - anon_sym_SQUOTE2, - STATE(5222), 1, + ACTIONS(335), 1, + anon_sym_RPAREN2, + STATE(5332), 1, sym_comment, - [134306] = 3, + [138183] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9045), 1, - anon_sym_BQUOTE2, - STATE(5223), 1, + ACTIONS(9164), 1, + anon_sym_RBRACE, + STATE(5333), 1, sym_comment, - [134316] = 3, + [138193] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9047), 1, - anon_sym_BQUOTE2, - STATE(5224), 1, + ACTIONS(9166), 1, + anon_sym_RBRACE, + STATE(5334), 1, + sym_comment, + [138203] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1894), 1, + aux_sym__unquoted_in_record_with_expr_token1, + 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, + [138223] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9168), 1, + anon_sym_LT, + STATE(5337), 1, + sym_comment, + [138233] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9170), 1, + anon_sym_LT, + STATE(5338), 1, + sym_comment, + [138243] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1715), 1, + anon_sym_COLON2, + STATE(5339), 1, sym_comment, - [134326] = 3, + [138253] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9049), 1, + ACTIONS(9172), 1, anon_sym_RBRACK, - STATE(5225), 1, + STATE(5340), 1, sym_comment, - [134336] = 3, + [138263] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9051), 1, - anon_sym_RBRACE, - STATE(5226), 1, + ACTIONS(2684), 1, + anon_sym_COLON2, + STATE(5341), 1, sym_comment, - [134346] = 3, + [138273] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9053), 1, - anon_sym_RPAREN, - STATE(5227), 1, + ACTIONS(9174), 1, + anon_sym_LPAREN2, + STATE(5342), 1, sym_comment, - [134356] = 3, + [138283] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9055), 1, - anon_sym_RBRACE, - STATE(5228), 1, + ACTIONS(9176), 1, + anon_sym_GT2, + STATE(5343), 1, sym_comment, - [134366] = 3, + [138293] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9057), 1, - aux_sym__str_single_quotes_token1, - STATE(5229), 1, + ACTIONS(9178), 1, + sym__space, + STATE(5344), 1, sym_comment, - [134376] = 3, + [138303] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(309), 1, - anon_sym_RBRACE, - STATE(5230), 1, + ACTIONS(6307), 1, + anon_sym_EQ, + STATE(5345), 1, sym_comment, - [134386] = 3, + [138313] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9059), 1, - anon_sym_LT, - STATE(5231), 1, + ACTIONS(9180), 1, + sym_raw_string_end, + STATE(5346), 1, sym_comment, - [134396] = 3, + [138323] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9061), 1, - anon_sym_RBRACK, - STATE(5232), 1, + ACTIONS(9182), 1, + anon_sym_GT2, + STATE(5347), 1, sym_comment, - [134406] = 3, + [138333] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9063), 1, - aux_sym_cmd_identifier_token6, - STATE(5233), 1, + ACTIONS(9184), 1, + aux_sym_shebang_token1, + STATE(5348), 1, sym_comment, - [134416] = 3, + [138343] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5311), 1, - anon_sym_EQ2, - STATE(5234), 1, + ACTIONS(9186), 1, + anon_sym_GT2, + STATE(5349), 1, sym_comment, - [134426] = 3, - ACTIONS(3), 1, + [138353] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9065), 1, - anon_sym_RBRACE, - STATE(5235), 1, + ACTIONS(9188), 1, + aux_sym_cmd_identifier_token2, + STATE(5350), 1, sym_comment, - [134436] = 3, + [138363] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9067), 1, - anon_sym_RPAREN, - STATE(5236), 1, + ACTIONS(9190), 1, + anon_sym_GT2, + STATE(5351), 1, sym_comment, - [134446] = 3, + [138373] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9069), 1, - anon_sym_EQ, - STATE(5237), 1, + ACTIONS(9192), 1, + anon_sym_RBRACK, + STATE(5352), 1, sym_comment, - [134456] = 3, + [138383] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9071), 1, - anon_sym_DQUOTE, - STATE(5238), 1, + ACTIONS(9194), 1, + anon_sym_RBRACK, + STATE(5353), 1, sym_comment, - [134466] = 3, + [138393] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9073), 1, - anon_sym_DQUOTE, - STATE(5239), 1, + ACTIONS(8080), 1, + anon_sym_LBRACE, + STATE(5354), 1, sym_comment, - [134476] = 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(9075), 1, - anon_sym_SQUOTE2, - STATE(5240), 1, + ACTIONS(9196), 1, + anon_sym_RBRACK, + STATE(5356), 1, sym_comment, - [134486] = 3, + [138423] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9077), 1, - anon_sym_BQUOTE2, - STATE(5241), 1, + ACTIONS(9198), 1, + sym_long_flag_identifier, + STATE(5357), 1, sym_comment, - [134496] = 3, + [138433] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9079), 1, - anon_sym_EQ, - STATE(5242), 1, + ACTIONS(9200), 1, + anon_sym_RBRACE, + STATE(5358), 1, sym_comment, - [134506] = 3, + [138443] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9081), 1, + ACTIONS(9202), 1, anon_sym_RBRACE, - STATE(5243), 1, + STATE(5359), 1, sym_comment, - [134516] = 3, + [138453] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9083), 1, + ACTIONS(9204), 1, anon_sym_LT, - STATE(5244), 1, + STATE(5360), 1, sym_comment, - [134526] = 3, - ACTIONS(103), 1, + [138463] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9085), 1, - aux_sym_cmd_identifier_token6, - STATE(5245), 1, + ACTIONS(9206), 1, + anon_sym_RPAREN, + STATE(5361), 1, sym_comment, - [134536] = 3, + [138473] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9087), 1, - anon_sym_EQ, - STATE(5246), 1, + ACTIONS(9208), 1, + anon_sym_RBRACE, + STATE(5362), 1, sym_comment, - [134546] = 3, + [138483] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9089), 1, + ACTIONS(9210), 1, anon_sym_RPAREN, - STATE(5247), 1, + STATE(5363), 1, sym_comment, - [134556] = 3, + [138493] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9091), 1, - anon_sym_EQ, - STATE(5248), 1, + ACTIONS(9212), 1, + anon_sym_RPAREN, + STATE(5364), 1, sym_comment, - [134566] = 3, + [138503] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9093), 1, - anon_sym_RBRACK, - STATE(5249), 1, + ACTIONS(9214), 1, + anon_sym_DQUOTE, + STATE(5365), 1, + sym_comment, + [138513] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9216), 1, + anon_sym_LT, + STATE(5366), 1, sym_comment, - [134576] = 3, + [138523] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9095), 1, + ACTIONS(9218), 1, anon_sym_RBRACE, - STATE(5250), 1, + STATE(5367), 1, sym_comment, - [134586] = 3, + [138533] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9097), 1, - anon_sym_RBRACK, - STATE(5251), 1, + ACTIONS(9220), 1, + anon_sym_GT2, + STATE(5368), 1, sym_comment, - [134596] = 3, + [138543] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9099), 1, - anon_sym_RBRACE, - STATE(5252), 1, + ACTIONS(9222), 1, + sym_raw_string_end, + STATE(5369), 1, sym_comment, - [134606] = 3, + [138553] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9101), 1, + ACTIONS(9224), 1, anon_sym_RBRACE, - STATE(5253), 1, + STATE(5370), 1, + sym_comment, + [138563] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9226), 1, + aux_sym_cmd_identifier_token6, + STATE(5371), 1, sym_comment, - [134616] = 3, + [138573] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9103), 1, - anon_sym_RBRACE, - STATE(5254), 1, + ACTIONS(5294), 1, + anon_sym_EQ2, + STATE(5372), 1, sym_comment, - [134626] = 3, + [138583] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9105), 1, - anon_sym_LT, - STATE(5255), 1, + ACTIONS(7079), 1, + sym__unquoted_pattern, + STATE(5373), 1, sym_comment, - [134636] = 3, + [138593] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9107), 1, - anon_sym_RPAREN, - STATE(5256), 1, + ACTIONS(351), 1, + anon_sym_RPAREN2, + STATE(5374), 1, sym_comment, - [134646] = 3, + [138603] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9109), 1, - sym_param_short_flag_identifier, - STATE(5257), 1, + ACTIONS(9228), 1, + anon_sym_RBRACE, + STATE(5375), 1, + sym_comment, + [138613] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9230), 1, + anon_sym_SQUOTE2, + STATE(5376), 1, + sym_comment, + [138623] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + 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, - [134656] = 1, - ACTIONS(9111), 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)] = 365, - [SMALL_STATE(1269)] = 448, - [SMALL_STATE(1270)] = 521, - [SMALL_STATE(1271)] = 610, - [SMALL_STATE(1272)] = 683, - [SMALL_STATE(1273)] = 756, - [SMALL_STATE(1274)] = 849, - [SMALL_STATE(1275)] = 934, - [SMALL_STATE(1276)] = 1007, - [SMALL_STATE(1277)] = 1080, - [SMALL_STATE(1278)] = 1159, - [SMALL_STATE(1279)] = 1254, - [SMALL_STATE(1280)] = 1327, - [SMALL_STATE(1281)] = 1402, - [SMALL_STATE(1282)] = 1475, - [SMALL_STATE(1283)] = 1548, - [SMALL_STATE(1284)] = 1647, - [SMALL_STATE(1285)] = 1744, - [SMALL_STATE(1286)] = 1817, - [SMALL_STATE(1287)] = 1918, - [SMALL_STATE(1288)] = 2061, - [SMALL_STATE(1289)] = 2134, - [SMALL_STATE(1290)] = 2277, - [SMALL_STATE(1291)] = 2350, - [SMALL_STATE(1292)] = 2423, - [SMALL_STATE(1293)] = 2496, - [SMALL_STATE(1294)] = 2639, - [SMALL_STATE(1295)] = 2712, - [SMALL_STATE(1296)] = 2785, - [SMALL_STATE(1297)] = 2858, - [SMALL_STATE(1298)] = 2931, - [SMALL_STATE(1299)] = 3004, - [SMALL_STATE(1300)] = 3077, - [SMALL_STATE(1301)] = 3150, - [SMALL_STATE(1302)] = 3223, - [SMALL_STATE(1303)] = 3296, - [SMALL_STATE(1304)] = 3369, - [SMALL_STATE(1305)] = 3442, - [SMALL_STATE(1306)] = 3515, - [SMALL_STATE(1307)] = 3588, - [SMALL_STATE(1308)] = 3661, - [SMALL_STATE(1309)] = 3800, - [SMALL_STATE(1310)] = 3903, - [SMALL_STATE(1311)] = 3976, - [SMALL_STATE(1312)] = 4067, - [SMALL_STATE(1313)] = 4140, - [SMALL_STATE(1314)] = 4213, - [SMALL_STATE(1315)] = 4286, - [SMALL_STATE(1316)] = 4359, - [SMALL_STATE(1317)] = 4432, - [SMALL_STATE(1318)] = 4505, - [SMALL_STATE(1319)] = 4578, - [SMALL_STATE(1320)] = 4651, - [SMALL_STATE(1321)] = 4724, - [SMALL_STATE(1322)] = 4801, - [SMALL_STATE(1323)] = 4874, - [SMALL_STATE(1324)] = 5017, - [SMALL_STATE(1325)] = 5090, - [SMALL_STATE(1326)] = 5163, - [SMALL_STATE(1327)] = 5236, - [SMALL_STATE(1328)] = 5309, - [SMALL_STATE(1329)] = 5382, - [SMALL_STATE(1330)] = 5455, - [SMALL_STATE(1331)] = 5528, - [SMALL_STATE(1332)] = 5601, - [SMALL_STATE(1333)] = 5674, - [SMALL_STATE(1334)] = 5747, - [SMALL_STATE(1335)] = 5820, - [SMALL_STATE(1336)] = 5893, - [SMALL_STATE(1337)] = 5966, - [SMALL_STATE(1338)] = 6039, - [SMALL_STATE(1339)] = 6178, - [SMALL_STATE(1340)] = 6251, - [SMALL_STATE(1341)] = 6324, - [SMALL_STATE(1342)] = 6463, - [SMALL_STATE(1343)] = 6536, - [SMALL_STATE(1344)] = 6609, - [SMALL_STATE(1345)] = 6682, - [SMALL_STATE(1346)] = 6755, - [SMALL_STATE(1347)] = 6903, - [SMALL_STATE(1348)] = 7043, - [SMALL_STATE(1349)] = 7180, - [SMALL_STATE(1350)] = 7257, - [SMALL_STATE(1351)] = 7330, - [SMALL_STATE(1352)] = 7467, - [SMALL_STATE(1353)] = 7544, - [SMALL_STATE(1354)] = 7681, - [SMALL_STATE(1355)] = 7818, - [SMALL_STATE(1356)] = 7895, - [SMALL_STATE(1357)] = 8032, - [SMALL_STATE(1358)] = 8105, - [SMALL_STATE(1359)] = 8239, - [SMALL_STATE(1360)] = 8381, - [SMALL_STATE(1361)] = 8457, - [SMALL_STATE(1362)] = 8597, - [SMALL_STATE(1363)] = 8731, - [SMALL_STATE(1364)] = 8809, - [SMALL_STATE(1365)] = 8883, - [SMALL_STATE(1366)] = 8959, - [SMALL_STATE(1367)] = 9031, - [SMALL_STATE(1368)] = 9107, - [SMALL_STATE(1369)] = 9183, - [SMALL_STATE(1370)] = 9317, - [SMALL_STATE(1371)] = 9451, - [SMALL_STATE(1372)] = 9523, - [SMALL_STATE(1373)] = 9593, - [SMALL_STATE(1374)] = 9663, - [SMALL_STATE(1375)] = 9805, - [SMALL_STATE(1376)] = 9939, - [SMALL_STATE(1377)] = 10008, - [SMALL_STATE(1378)] = 10093, - [SMALL_STATE(1379)] = 10162, - [SMALL_STATE(1380)] = 10231, - [SMALL_STATE(1381)] = 10300, - [SMALL_STATE(1382)] = 10375, - [SMALL_STATE(1383)] = 10444, - [SMALL_STATE(1384)] = 10517, - [SMALL_STATE(1385)] = 10586, - [SMALL_STATE(1386)] = 10659, - [SMALL_STATE(1387)] = 10743, - [SMALL_STATE(1388)] = 10825, - [SMALL_STATE(1389)] = 10893, - [SMALL_STATE(1390)] = 10975, - [SMALL_STATE(1391)] = 11043, - [SMALL_STATE(1392)] = 11129, - [SMALL_STATE(1393)] = 11215, - [SMALL_STATE(1394)] = 11286, - [SMALL_STATE(1395)] = 11357, - [SMALL_STATE(1396)] = 11428, - [SMALL_STATE(1397)] = 11501, - [SMALL_STATE(1398)] = 11634, - [SMALL_STATE(1399)] = 11759, - [SMALL_STATE(1400)] = 11840, - [SMALL_STATE(1401)] = 11965, - [SMALL_STATE(1402)] = 12046, - [SMALL_STATE(1403)] = 12116, - [SMALL_STATE(1404)] = 12184, - [SMALL_STATE(1405)] = 12252, - [SMALL_STATE(1406)] = 12320, - [SMALL_STATE(1407)] = 12390, - [SMALL_STATE(1408)] = 12470, - [SMALL_STATE(1409)] = 12540, - [SMALL_STATE(1410)] = 12606, - [SMALL_STATE(1411)] = 12674, - [SMALL_STATE(1412)] = 12743, - [SMALL_STATE(1413)] = 12808, - [SMALL_STATE(1414)] = 12887, - [SMALL_STATE(1415)] = 12952, - [SMALL_STATE(1416)] = 13081, - [SMALL_STATE(1417)] = 13146, - [SMALL_STATE(1418)] = 13211, - [SMALL_STATE(1419)] = 13336, - [SMALL_STATE(1420)] = 13465, - [SMALL_STATE(1421)] = 13594, - [SMALL_STATE(1422)] = 13661, - [SMALL_STATE(1423)] = 13790, - [SMALL_STATE(1424)] = 13855, - [SMALL_STATE(1425)] = 13922, - [SMALL_STATE(1426)] = 13991, - [SMALL_STATE(1427)] = 14059, - [SMALL_STATE(1428)] = 14125, - [SMALL_STATE(1429)] = 14189, - [SMALL_STATE(1430)] = 14253, - [SMALL_STATE(1431)] = 14317, - [SMALL_STATE(1432)] = 14385, - [SMALL_STATE(1433)] = 14451, - [SMALL_STATE(1434)] = 14522, - [SMALL_STATE(1435)] = 14585, - [SMALL_STATE(1436)] = 14650, - [SMALL_STATE(1437)] = 14713, - [SMALL_STATE(1438)] = 14778, - [SMALL_STATE(1439)] = 14849, - [SMALL_STATE(1440)] = 14912, - [SMALL_STATE(1441)] = 14982, - [SMALL_STATE(1442)] = 15080, - [SMALL_STATE(1443)] = 15146, - [SMALL_STATE(1444)] = 15218, - [SMALL_STATE(1445)] = 15284, - [SMALL_STATE(1446)] = 15382, - [SMALL_STATE(1447)] = 15444, - [SMALL_STATE(1448)] = 15506, - [SMALL_STATE(1449)] = 15576, - [SMALL_STATE(1450)] = 15638, - [SMALL_STATE(1451)] = 15735, - [SMALL_STATE(1452)] = 15828, - [SMALL_STATE(1453)] = 15899, - [SMALL_STATE(1454)] = 15962, - [SMALL_STATE(1455)] = 16055, - [SMALL_STATE(1456)] = 16120, - [SMALL_STATE(1457)] = 16217, - [SMALL_STATE(1458)] = 16282, - [SMALL_STATE(1459)] = 16345, - [SMALL_STATE(1460)] = 16438, - [SMALL_STATE(1461)] = 16504, - [SMALL_STATE(1462)] = 16570, - [SMALL_STATE(1463)] = 16636, - [SMALL_STATE(1464)] = 16696, - [SMALL_STATE(1465)] = 16760, - [SMALL_STATE(1466)] = 16826, - [SMALL_STATE(1467)] = 16892, - [SMALL_STATE(1468)] = 16958, - [SMALL_STATE(1469)] = 17024, - [SMALL_STATE(1470)] = 17090, - [SMALL_STATE(1471)] = 17150, - [SMALL_STATE(1472)] = 17214, - [SMALL_STATE(1473)] = 17278, - [SMALL_STATE(1474)] = 17344, - [SMALL_STATE(1475)] = 17406, - [SMALL_STATE(1476)] = 17470, - [SMALL_STATE(1477)] = 17534, - [SMALL_STATE(1478)] = 17598, - [SMALL_STATE(1479)] = 17662, - [SMALL_STATE(1480)] = 17722, - [SMALL_STATE(1481)] = 17782, - [SMALL_STATE(1482)] = 17846, - [SMALL_STATE(1483)] = 17908, - [SMALL_STATE(1484)] = 17970, - [SMALL_STATE(1485)] = 18034, - [SMALL_STATE(1486)] = 18100, - [SMALL_STATE(1487)] = 18166, - [SMALL_STATE(1488)] = 18232, - [SMALL_STATE(1489)] = 18295, - [SMALL_STATE(1490)] = 18358, - [SMALL_STATE(1491)] = 18421, - [SMALL_STATE(1492)] = 18482, - [SMALL_STATE(1493)] = 18545, - [SMALL_STATE(1494)] = 18604, - [SMALL_STATE(1495)] = 18665, - [SMALL_STATE(1496)] = 18728, - [SMALL_STATE(1497)] = 18791, - [SMALL_STATE(1498)] = 18852, - [SMALL_STATE(1499)] = 18913, - [SMALL_STATE(1500)] = 18972, - [SMALL_STATE(1501)] = 19031, - [SMALL_STATE(1502)] = 19090, - [SMALL_STATE(1503)] = 19149, - [SMALL_STATE(1504)] = 19210, - [SMALL_STATE(1505)] = 19273, - [SMALL_STATE(1506)] = 19336, - [SMALL_STATE(1507)] = 19399, - [SMALL_STATE(1508)] = 19462, - [SMALL_STATE(1509)] = 19525, - [SMALL_STATE(1510)] = 19615, - [SMALL_STATE(1511)] = 19675, - [SMALL_STATE(1512)] = 19743, - [SMALL_STATE(1513)] = 19835, - [SMALL_STATE(1514)] = 19899, - [SMALL_STATE(1515)] = 19985, - [SMALL_STATE(1516)] = 20073, - [SMALL_STATE(1517)] = 20163, - [SMALL_STATE(1518)] = 20241, - [SMALL_STATE(1519)] = 20313, - [SMALL_STATE(1520)] = 20393, - [SMALL_STATE(1521)] = 20475, - [SMALL_STATE(1522)] = 20567, - [SMALL_STATE(1523)] = 20651, - [SMALL_STATE(1524)] = 20731, - [SMALL_STATE(1525)] = 20817, - [SMALL_STATE(1526)] = 20897, - [SMALL_STATE(1527)] = 20973, - [SMALL_STATE(1528)] = 21047, - [SMALL_STATE(1529)] = 21121, - [SMALL_STATE(1530)] = 21193, - [SMALL_STATE(1531)] = 21261, - [SMALL_STATE(1532)] = 21327, - [SMALL_STATE(1533)] = 21391, - [SMALL_STATE(1534)] = 21453, - [SMALL_STATE(1535)] = 21539, - [SMALL_STATE(1536)] = 21623, - [SMALL_STATE(1537)] = 21711, - [SMALL_STATE(1538)] = 21797, - [SMALL_STATE(1539)] = 21887, - [SMALL_STATE(1540)] = 21975, - [SMALL_STATE(1541)] = 22053, - [SMALL_STATE(1542)] = 22129, - [SMALL_STATE(1543)] = 22201, - [SMALL_STATE(1544)] = 22271, - [SMALL_STATE(1545)] = 22351, - [SMALL_STATE(1546)] = 22429, - [SMALL_STATE(1547)] = 22511, - [SMALL_STATE(1548)] = 22591, - [SMALL_STATE(1549)] = 22675, - [SMALL_STATE(1550)] = 22757, - [SMALL_STATE(1551)] = 22833, - [SMALL_STATE(1552)] = 22907, - [SMALL_STATE(1553)] = 22975, - [SMALL_STATE(1554)] = 23039, - [SMALL_STATE(1555)] = 23125, - [SMALL_STATE(1556)] = 23213, - [SMALL_STATE(1557)] = 23303, - [SMALL_STATE(1558)] = 23381, - [SMALL_STATE(1559)] = 23453, - [SMALL_STATE(1560)] = 23533, - [SMALL_STATE(1561)] = 23615, - [SMALL_STATE(1562)] = 23695, - [SMALL_STATE(1563)] = 23779, - [SMALL_STATE(1564)] = 23859, - [SMALL_STATE(1565)] = 23939, - [SMALL_STATE(1566)] = 24019, - [SMALL_STATE(1567)] = 24093, - [SMALL_STATE(1568)] = 24165, - [SMALL_STATE(1569)] = 24231, - [SMALL_STATE(1570)] = 24293, - [SMALL_STATE(1571)] = 24377, - [SMALL_STATE(1572)] = 24463, - [SMALL_STATE(1573)] = 24551, - [SMALL_STATE(1574)] = 24627, - [SMALL_STATE(1575)] = 24697, - [SMALL_STATE(1576)] = 24775, - [SMALL_STATE(1577)] = 24855, - [SMALL_STATE(1578)] = 24937, - [SMALL_STATE(1579)] = 25013, - [SMALL_STATE(1580)] = 25087, - [SMALL_STATE(1581)] = 25161, - [SMALL_STATE(1582)] = 25233, - [SMALL_STATE(1583)] = 25301, - [SMALL_STATE(1584)] = 25367, - [SMALL_STATE(1585)] = 25431, - [SMALL_STATE(1586)] = 25493, - [SMALL_STATE(1587)] = 25579, - [SMALL_STATE(1588)] = 25663, - [SMALL_STATE(1589)] = 25751, - [SMALL_STATE(1590)] = 25837, - [SMALL_STATE(1591)] = 25927, - [SMALL_STATE(1592)] = 26015, - [SMALL_STATE(1593)] = 26093, - [SMALL_STATE(1594)] = 26169, - [SMALL_STATE(1595)] = 26241, - [SMALL_STATE(1596)] = 26311, - [SMALL_STATE(1597)] = 26391, - [SMALL_STATE(1598)] = 26469, - [SMALL_STATE(1599)] = 26551, - [SMALL_STATE(1600)] = 26631, - [SMALL_STATE(1601)] = 26715, - [SMALL_STATE(1602)] = 26797, - [SMALL_STATE(1603)] = 26877, - [SMALL_STATE(1604)] = 26957, - [SMALL_STATE(1605)] = 27037, - [SMALL_STATE(1606)] = 27123, - [SMALL_STATE(1607)] = 27197, - [SMALL_STATE(1608)] = 27269, - [SMALL_STATE(1609)] = 27335, - [SMALL_STATE(1610)] = 27397, - [SMALL_STATE(1611)] = 27481, - [SMALL_STATE(1612)] = 27567, - [SMALL_STATE(1613)] = 27655, - [SMALL_STATE(1614)] = 27731, - [SMALL_STATE(1615)] = 27801, - [SMALL_STATE(1616)] = 27879, - [SMALL_STATE(1617)] = 27959, - [SMALL_STATE(1618)] = 28041, - [SMALL_STATE(1619)] = 28121, - [SMALL_STATE(1620)] = 28201, - [SMALL_STATE(1621)] = 28281, - [SMALL_STATE(1622)] = 28361, - [SMALL_STATE(1623)] = 28421, - [SMALL_STATE(1624)] = 28501, - [SMALL_STATE(1625)] = 28581, - [SMALL_STATE(1626)] = 28661, - [SMALL_STATE(1627)] = 28741, - [SMALL_STATE(1628)] = 28821, - [SMALL_STATE(1629)] = 28901, - [SMALL_STATE(1630)] = 28981, - [SMALL_STATE(1631)] = 29061, - [SMALL_STATE(1632)] = 29141, - [SMALL_STATE(1633)] = 29221, - [SMALL_STATE(1634)] = 29301, - [SMALL_STATE(1635)] = 29381, - [SMALL_STATE(1636)] = 29461, - [SMALL_STATE(1637)] = 29533, - [SMALL_STATE(1638)] = 29603, - [SMALL_STATE(1639)] = 29667, - [SMALL_STATE(1640)] = 29727, - [SMALL_STATE(1641)] = 29809, - [SMALL_STATE(1642)] = 29893, - [SMALL_STATE(1643)] = 29979, - [SMALL_STATE(1644)] = 30053, - [SMALL_STATE(1645)] = 30121, - [SMALL_STATE(1646)] = 30197, - [SMALL_STATE(1647)] = 30275, - [SMALL_STATE(1648)] = 30355, - [SMALL_STATE(1649)] = 30435, - [SMALL_STATE(1650)] = 30515, - [SMALL_STATE(1651)] = 30595, - [SMALL_STATE(1652)] = 30681, - [SMALL_STATE(1653)] = 30761, - [SMALL_STATE(1654)] = 30841, - [SMALL_STATE(1655)] = 30927, - [SMALL_STATE(1656)] = 31007, - [SMALL_STATE(1657)] = 31087, - [SMALL_STATE(1658)] = 31167, - [SMALL_STATE(1659)] = 31247, - [SMALL_STATE(1660)] = 31327, - [SMALL_STATE(1661)] = 31387, - [SMALL_STATE(1662)] = 31467, - [SMALL_STATE(1663)] = 31527, - [SMALL_STATE(1664)] = 31587, - [SMALL_STATE(1665)] = 31667, - [SMALL_STATE(1666)] = 31747, - [SMALL_STATE(1667)] = 31827, - [SMALL_STATE(1668)] = 31907, - [SMALL_STATE(1669)] = 31981, - [SMALL_STATE(1670)] = 32061, - [SMALL_STATE(1671)] = 32141, - [SMALL_STATE(1672)] = 32217, - [SMALL_STATE(1673)] = 32297, - [SMALL_STATE(1674)] = 32377, - [SMALL_STATE(1675)] = 32451, - [SMALL_STATE(1676)] = 32531, - [SMALL_STATE(1677)] = 32589, - [SMALL_STATE(1678)] = 32669, - [SMALL_STATE(1679)] = 32749, - [SMALL_STATE(1680)] = 32832, - [SMALL_STATE(1681)] = 32903, - [SMALL_STATE(1682)] = 32974, - [SMALL_STATE(1683)] = 33033, - [SMALL_STATE(1684)] = 33120, - [SMALL_STATE(1685)] = 33179, - [SMALL_STATE(1686)] = 33248, - [SMALL_STATE(1687)] = 33311, - [SMALL_STATE(1688)] = 33388, - [SMALL_STATE(1689)] = 33469, - [SMALL_STATE(1690)] = 33556, - [SMALL_STATE(1691)] = 33641, - [SMALL_STATE(1692)] = 33714, - [SMALL_STATE(1693)] = 33781, - [SMALL_STATE(1694)] = 33856, - [SMALL_STATE(1695)] = 33933, - [SMALL_STATE(1696)] = 34012, - [SMALL_STATE(1697)] = 34083, - [SMALL_STATE(1698)] = 34156, - [SMALL_STATE(1699)] = 34242, - [SMALL_STATE(1700)] = 34302, - [SMALL_STATE(1701)] = 34388, - [SMALL_STATE(1702)] = 34448, - [SMALL_STATE(1703)] = 34534, - [SMALL_STATE(1704)] = 34604, - [SMALL_STATE(1705)] = 34674, - [SMALL_STATE(1706)] = 34760, - [SMALL_STATE(1707)] = 34846, - [SMALL_STATE(1708)] = 34916, - [SMALL_STATE(1709)] = 35002, - [SMALL_STATE(1710)] = 35088, - [SMALL_STATE(1711)] = 35174, - [SMALL_STATE(1712)] = 35260, - [SMALL_STATE(1713)] = 35346, - [SMALL_STATE(1714)] = 35432, - [SMALL_STATE(1715)] = 35502, - [SMALL_STATE(1716)] = 35583, - [SMALL_STATE(1717)] = 35650, - [SMALL_STATE(1718)] = 35721, - [SMALL_STATE(1719)] = 35802, - [SMALL_STATE(1720)] = 35861, - [SMALL_STATE(1721)] = 35918, - [SMALL_STATE(1722)] = 35981, - [SMALL_STATE(1723)] = 36048, - [SMALL_STATE(1724)] = 36105, - [SMALL_STATE(1725)] = 36166, - [SMALL_STATE(1726)] = 36237, - [SMALL_STATE(1727)] = 36306, - [SMALL_STATE(1728)] = 36369, - [SMALL_STATE(1729)] = 36440, - [SMALL_STATE(1730)] = 36511, - [SMALL_STATE(1731)] = 36592, - [SMALL_STATE(1732)] = 36659, - [SMALL_STATE(1733)] = 36726, - [SMALL_STATE(1734)] = 36793, - [SMALL_STATE(1735)] = 36856, - [SMALL_STATE(1736)] = 36923, - [SMALL_STATE(1737)] = 36982, - [SMALL_STATE(1738)] = 37060, - [SMALL_STATE(1739)] = 37120, - [SMALL_STATE(1740)] = 37188, - [SMALL_STATE(1741)] = 37246, - [SMALL_STATE(1742)] = 37300, - [SMALL_STATE(1743)] = 37354, - [SMALL_STATE(1744)] = 37412, - [SMALL_STATE(1745)] = 37474, - [SMALL_STATE(1746)] = 37542, - [SMALL_STATE(1747)] = 37600, - [SMALL_STATE(1748)] = 37658, - [SMALL_STATE(1749)] = 37726, - [SMALL_STATE(1750)] = 37788, - [SMALL_STATE(1751)] = 37846, - [SMALL_STATE(1752)] = 37924, - [SMALL_STATE(1753)] = 38002, - [SMALL_STATE(1754)] = 38056, - [SMALL_STATE(1755)] = 38124, - [SMALL_STATE(1756)] = 38192, - [SMALL_STATE(1757)] = 38260, - [SMALL_STATE(1758)] = 38316, - [SMALL_STATE(1759)] = 38396, - [SMALL_STATE(1760)] = 38474, - [SMALL_STATE(1761)] = 38552, - [SMALL_STATE(1762)] = 38606, - [SMALL_STATE(1763)] = 38684, - [SMALL_STATE(1764)] = 38764, - [SMALL_STATE(1765)] = 38842, - [SMALL_STATE(1766)] = 38896, - [SMALL_STATE(1767)] = 38950, - [SMALL_STATE(1768)] = 39004, - [SMALL_STATE(1769)] = 39058, - [SMALL_STATE(1770)] = 39112, - [SMALL_STATE(1771)] = 39174, - [SMALL_STATE(1772)] = 39252, - [SMALL_STATE(1773)] = 39308, - [SMALL_STATE(1774)] = 39386, - [SMALL_STATE(1775)] = 39464, - [SMALL_STATE(1776)] = 39524, - [SMALL_STATE(1777)] = 39602, - [SMALL_STATE(1778)] = 39653, - [SMALL_STATE(1779)] = 39718, - [SMALL_STATE(1780)] = 39783, - [SMALL_STATE(1781)] = 39838, - [SMALL_STATE(1782)] = 39893, - [SMALL_STATE(1783)] = 39948, - [SMALL_STATE(1784)] = 40005, - [SMALL_STATE(1785)] = 40058, - [SMALL_STATE(1786)] = 40135, - [SMALL_STATE(1787)] = 40200, - [SMALL_STATE(1788)] = 40265, - [SMALL_STATE(1789)] = 40322, - [SMALL_STATE(1790)] = 40385, - [SMALL_STATE(1791)] = 40436, - [SMALL_STATE(1792)] = 40489, - [SMALL_STATE(1793)] = 40544, - [SMALL_STATE(1794)] = 40609, - [SMALL_STATE(1795)] = 40666, - [SMALL_STATE(1796)] = 40731, - [SMALL_STATE(1797)] = 40782, - [SMALL_STATE(1798)] = 40835, - [SMALL_STATE(1799)] = 40912, - [SMALL_STATE(1800)] = 40977, - [SMALL_STATE(1801)] = 41036, - [SMALL_STATE(1802)] = 41113, - [SMALL_STATE(1803)] = 41166, - [SMALL_STATE(1804)] = 41221, - [SMALL_STATE(1805)] = 41298, - [SMALL_STATE(1806)] = 41349, - [SMALL_STATE(1807)] = 41400, - [SMALL_STATE(1808)] = 41453, - [SMALL_STATE(1809)] = 41506, - [SMALL_STATE(1810)] = 41559, - [SMALL_STATE(1811)] = 41624, - [SMALL_STATE(1812)] = 41701, - [SMALL_STATE(1813)] = 41778, - [SMALL_STATE(1814)] = 41855, - [SMALL_STATE(1815)] = 41932, - [SMALL_STATE(1816)] = 41985, - [SMALL_STATE(1817)] = 42040, - [SMALL_STATE(1818)] = 42117, - [SMALL_STATE(1819)] = 42170, - [SMALL_STATE(1820)] = 42235, - [SMALL_STATE(1821)] = 42312, - [SMALL_STATE(1822)] = 42389, - [SMALL_STATE(1823)] = 42454, - [SMALL_STATE(1824)] = 42531, - [SMALL_STATE(1825)] = 42582, - [SMALL_STATE(1826)] = 42634, - [SMALL_STATE(1827)] = 42686, - [SMALL_STATE(1828)] = 42738, - [SMALL_STATE(1829)] = 42792, - [SMALL_STATE(1830)] = 42844, - [SMALL_STATE(1831)] = 42906, - [SMALL_STATE(1832)] = 42958, - [SMALL_STATE(1833)] = 43018, - [SMALL_STATE(1834)] = 43070, - [SMALL_STATE(1835)] = 43124, - [SMALL_STATE(1836)] = 43178, - [SMALL_STATE(1837)] = 43230, - [SMALL_STATE(1838)] = 43292, - [SMALL_STATE(1839)] = 43352, - [SMALL_STATE(1840)] = 43412, - [SMALL_STATE(1841)] = 43472, - [SMALL_STATE(1842)] = 43524, - [SMALL_STATE(1843)] = 43576, - [SMALL_STATE(1844)] = 43638, - [SMALL_STATE(1845)] = 43692, - [SMALL_STATE(1846)] = 43743, - [SMALL_STATE(1847)] = 43798, - [SMALL_STATE(1848)] = 43849, - [SMALL_STATE(1849)] = 43900, - [SMALL_STATE(1850)] = 43951, - [SMALL_STATE(1851)] = 44002, - [SMALL_STATE(1852)] = 44053, - [SMALL_STATE(1853)] = 44152, - [SMALL_STATE(1854)] = 44203, - [SMALL_STATE(1855)] = 44254, - [SMALL_STATE(1856)] = 44313, - [SMALL_STATE(1857)] = 44372, - [SMALL_STATE(1858)] = 44431, - [SMALL_STATE(1859)] = 44486, - [SMALL_STATE(1860)] = 44537, - [SMALL_STATE(1861)] = 44592, - [SMALL_STATE(1862)] = 44643, - [SMALL_STATE(1863)] = 44694, - [SMALL_STATE(1864)] = 44745, - [SMALL_STATE(1865)] = 44796, - [SMALL_STATE(1866)] = 44847, - [SMALL_STATE(1867)] = 44898, - [SMALL_STATE(1868)] = 44953, - [SMALL_STATE(1869)] = 45004, - [SMALL_STATE(1870)] = 45055, - [SMALL_STATE(1871)] = 45114, - [SMALL_STATE(1872)] = 45165, - [SMALL_STATE(1873)] = 45216, - [SMALL_STATE(1874)] = 45267, - [SMALL_STATE(1875)] = 45318, - [SMALL_STATE(1876)] = 45369, - [SMALL_STATE(1877)] = 45428, - [SMALL_STATE(1878)] = 45479, - [SMALL_STATE(1879)] = 45530, - [SMALL_STATE(1880)] = 45589, - [SMALL_STATE(1881)] = 45648, - [SMALL_STATE(1882)] = 45698, - [SMALL_STATE(1883)] = 45748, - [SMALL_STATE(1884)] = 45844, - [SMALL_STATE(1885)] = 45894, - [SMALL_STATE(1886)] = 45944, - [SMALL_STATE(1887)] = 45998, - [SMALL_STATE(1888)] = 46056, - [SMALL_STATE(1889)] = 46108, - [SMALL_STATE(1890)] = 46166, - [SMALL_STATE(1891)] = 46216, - [SMALL_STATE(1892)] = 46266, - [SMALL_STATE(1893)] = 46322, - [SMALL_STATE(1894)] = 46418, - [SMALL_STATE(1895)] = 46472, - [SMALL_STATE(1896)] = 46522, - [SMALL_STATE(1897)] = 46572, - [SMALL_STATE(1898)] = 46622, - [SMALL_STATE(1899)] = 46674, - [SMALL_STATE(1900)] = 46724, - [SMALL_STATE(1901)] = 46774, - [SMALL_STATE(1902)] = 46824, - [SMALL_STATE(1903)] = 46882, - [SMALL_STATE(1904)] = 46932, - [SMALL_STATE(1905)] = 46982, - [SMALL_STATE(1906)] = 47036, - [SMALL_STATE(1907)] = 47094, - [SMALL_STATE(1908)] = 47144, - [SMALL_STATE(1909)] = 47194, - [SMALL_STATE(1910)] = 47244, - [SMALL_STATE(1911)] = 47296, - [SMALL_STATE(1912)] = 47350, - [SMALL_STATE(1913)] = 47408, - [SMALL_STATE(1914)] = 47466, - [SMALL_STATE(1915)] = 47516, - [SMALL_STATE(1916)] = 47574, - [SMALL_STATE(1917)] = 47626, - [SMALL_STATE(1918)] = 47679, - [SMALL_STATE(1919)] = 47732, - [SMALL_STATE(1920)] = 47785, - [SMALL_STATE(1921)] = 47838, - [SMALL_STATE(1922)] = 47891, - [SMALL_STATE(1923)] = 47944, - [SMALL_STATE(1924)] = 47997, - [SMALL_STATE(1925)] = 48050, - [SMALL_STATE(1926)] = 48103, - [SMALL_STATE(1927)] = 48156, - [SMALL_STATE(1928)] = 48205, - [SMALL_STATE(1929)] = 48254, - [SMALL_STATE(1930)] = 48303, - [SMALL_STATE(1931)] = 48356, - [SMALL_STATE(1932)] = 48409, - [SMALL_STATE(1933)] = 48458, - [SMALL_STATE(1934)] = 48511, - [SMALL_STATE(1935)] = 48560, - [SMALL_STATE(1936)] = 48609, - [SMALL_STATE(1937)] = 48664, - [SMALL_STATE(1938)] = 48717, - [SMALL_STATE(1939)] = 48770, - [SMALL_STATE(1940)] = 48819, - [SMALL_STATE(1941)] = 48868, - [SMALL_STATE(1942)] = 48921, - [SMALL_STATE(1943)] = 48970, - [SMALL_STATE(1944)] = 49019, - [SMALL_STATE(1945)] = 49068, - [SMALL_STATE(1946)] = 49119, - [SMALL_STATE(1947)] = 49168, - [SMALL_STATE(1948)] = 49225, - [SMALL_STATE(1949)] = 49320, - [SMALL_STATE(1950)] = 49371, - [SMALL_STATE(1951)] = 49422, - [SMALL_STATE(1952)] = 49473, - [SMALL_STATE(1953)] = 49568, - [SMALL_STATE(1954)] = 49621, - [SMALL_STATE(1955)] = 49674, - [SMALL_STATE(1956)] = 49727, - [SMALL_STATE(1957)] = 49776, - [SMALL_STATE(1958)] = 49831, - [SMALL_STATE(1959)] = 49884, - [SMALL_STATE(1960)] = 49937, - [SMALL_STATE(1961)] = 49992, - [SMALL_STATE(1962)] = 50045, - [SMALL_STATE(1963)] = 50098, - [SMALL_STATE(1964)] = 50151, - [SMALL_STATE(1965)] = 50204, - [SMALL_STATE(1966)] = 50257, - [SMALL_STATE(1967)] = 50306, - [SMALL_STATE(1968)] = 50364, - [SMALL_STATE(1969)] = 50412, - [SMALL_STATE(1970)] = 50462, - [SMALL_STATE(1971)] = 50512, - [SMALL_STATE(1972)] = 50562, - [SMALL_STATE(1973)] = 50612, - [SMALL_STATE(1974)] = 50662, - [SMALL_STATE(1975)] = 50716, - [SMALL_STATE(1976)] = 50764, - [SMALL_STATE(1977)] = 50816, - [SMALL_STATE(1978)] = 50870, - [SMALL_STATE(1979)] = 50924, - [SMALL_STATE(1980)] = 50976, - [SMALL_STATE(1981)] = 51028, - [SMALL_STATE(1982)] = 51080, - [SMALL_STATE(1983)] = 51132, - [SMALL_STATE(1984)] = 51184, - [SMALL_STATE(1985)] = 51232, - [SMALL_STATE(1986)] = 51284, - [SMALL_STATE(1987)] = 51336, - [SMALL_STATE(1988)] = 51388, - [SMALL_STATE(1989)] = 51442, - [SMALL_STATE(1990)] = 51490, - [SMALL_STATE(1991)] = 51542, - [SMALL_STATE(1992)] = 51590, - [SMALL_STATE(1993)] = 51638, - [SMALL_STATE(1994)] = 51686, - [SMALL_STATE(1995)] = 51738, - [SMALL_STATE(1996)] = 51786, - [SMALL_STATE(1997)] = 51834, - [SMALL_STATE(1998)] = 51882, - [SMALL_STATE(1999)] = 51936, - [SMALL_STATE(2000)] = 51992, - [SMALL_STATE(2001)] = 52044, - [SMALL_STATE(2002)] = 52098, - [SMALL_STATE(2003)] = 52152, - [SMALL_STATE(2004)] = 52218, - [SMALL_STATE(2005)] = 52282, - [SMALL_STATE(2006)] = 52336, - [SMALL_STATE(2007)] = 52394, - [SMALL_STATE(2008)] = 52440, - [SMALL_STATE(2009)] = 52494, - [SMALL_STATE(2010)] = 52570, - [SMALL_STATE(2011)] = 52648, - [SMALL_STATE(2012)] = 52728, - [SMALL_STATE(2013)] = 52796, - [SMALL_STATE(2014)] = 52858, - [SMALL_STATE(2015)] = 52928, - [SMALL_STATE(2016)] = 53000, - [SMALL_STATE(2017)] = 53074, - [SMALL_STATE(2018)] = 53122, - [SMALL_STATE(2019)] = 53188, - [SMALL_STATE(2020)] = 53252, - [SMALL_STATE(2021)] = 53316, - [SMALL_STATE(2022)] = 53378, - [SMALL_STATE(2023)] = 53434, - [SMALL_STATE(2024)] = 53488, - [SMALL_STATE(2025)] = 53540, - [SMALL_STATE(2026)] = 53616, - [SMALL_STATE(2027)] = 53690, - [SMALL_STATE(2028)] = 53768, - [SMALL_STATE(2029)] = 53844, - [SMALL_STATE(2030)] = 53924, - [SMALL_STATE(2031)] = 54002, - [SMALL_STATE(2032)] = 54070, - [SMALL_STATE(2033)] = 54136, - [SMALL_STATE(2034)] = 54198, - [SMALL_STATE(2035)] = 54258, - [SMALL_STATE(2036)] = 54328, - [SMALL_STATE(2037)] = 54396, - [SMALL_STATE(2038)] = 54468, - [SMALL_STATE(2039)] = 54538, - [SMALL_STATE(2040)] = 54612, - [SMALL_STATE(2041)] = 54684, - [SMALL_STATE(2042)] = 54750, - [SMALL_STATE(2043)] = 54814, - [SMALL_STATE(2044)] = 54872, - [SMALL_STATE(2045)] = 54926, - [SMALL_STATE(2046)] = 55002, - [SMALL_STATE(2047)] = 55080, - [SMALL_STATE(2048)] = 55148, - [SMALL_STATE(2049)] = 55210, - [SMALL_STATE(2050)] = 55280, - [SMALL_STATE(2051)] = 55352, - [SMALL_STATE(2052)] = 55426, - [SMALL_STATE(2053)] = 55490, - [SMALL_STATE(2054)] = 55552, - [SMALL_STATE(2055)] = 55608, - [SMALL_STATE(2056)] = 55660, - [SMALL_STATE(2057)] = 55734, - [SMALL_STATE(2058)] = 55810, - [SMALL_STATE(2059)] = 55888, - [SMALL_STATE(2060)] = 55954, - [SMALL_STATE(2061)] = 56014, - [SMALL_STATE(2062)] = 56082, - [SMALL_STATE(2063)] = 56152, - [SMALL_STATE(2064)] = 56224, - [SMALL_STATE(2065)] = 56290, - [SMALL_STATE(2066)] = 56354, - [SMALL_STATE(2067)] = 56418, - [SMALL_STATE(2068)] = 56480, - [SMALL_STATE(2069)] = 56538, - [SMALL_STATE(2070)] = 56594, - [SMALL_STATE(2071)] = 56648, - [SMALL_STATE(2072)] = 56700, - [SMALL_STATE(2073)] = 56776, - [SMALL_STATE(2074)] = 56850, - [SMALL_STATE(2075)] = 56928, - [SMALL_STATE(2076)] = 57004, - [SMALL_STATE(2077)] = 57084, - [SMALL_STATE(2078)] = 57162, - [SMALL_STATE(2079)] = 57230, - [SMALL_STATE(2080)] = 57296, - [SMALL_STATE(2081)] = 57358, - [SMALL_STATE(2082)] = 57418, - [SMALL_STATE(2083)] = 57488, - [SMALL_STATE(2084)] = 57556, - [SMALL_STATE(2085)] = 57628, - [SMALL_STATE(2086)] = 57698, - [SMALL_STATE(2087)] = 57772, - [SMALL_STATE(2088)] = 57844, - [SMALL_STATE(2089)] = 57908, - [SMALL_STATE(2090)] = 57970, - [SMALL_STATE(2091)] = 58026, - [SMALL_STATE(2092)] = 58078, - [SMALL_STATE(2093)] = 58152, - [SMALL_STATE(2094)] = 58228, - [SMALL_STATE(2095)] = 58306, - [SMALL_STATE(2096)] = 58372, - [SMALL_STATE(2097)] = 58432, - [SMALL_STATE(2098)] = 58500, - [SMALL_STATE(2099)] = 58570, - [SMALL_STATE(2100)] = 58642, - [SMALL_STATE(2101)] = 58698, - [SMALL_STATE(2102)] = 58752, - [SMALL_STATE(2103)] = 58806, - [SMALL_STATE(2104)] = 58860, - [SMALL_STATE(2105)] = 58910, - [SMALL_STATE(2106)] = 58964, - [SMALL_STATE(2107)] = 59018, - [SMALL_STATE(2108)] = 59068, - [SMALL_STATE(2109)] = 59122, - [SMALL_STATE(2110)] = 59176, - [SMALL_STATE(2111)] = 59256, - [SMALL_STATE(2112)] = 59303, - [SMALL_STATE(2113)] = 59352, - [SMALL_STATE(2114)] = 59401, - [SMALL_STATE(2115)] = 59480, - [SMALL_STATE(2116)] = 59527, - [SMALL_STATE(2117)] = 59576, - [SMALL_STATE(2118)] = 59623, - [SMALL_STATE(2119)] = 59674, - [SMALL_STATE(2120)] = 59753, - [SMALL_STATE(2121)] = 59802, - [SMALL_STATE(2122)] = 59851, - [SMALL_STATE(2123)] = 59898, - [SMALL_STATE(2124)] = 59947, - [SMALL_STATE(2125)] = 59994, - [SMALL_STATE(2126)] = 60043, - [SMALL_STATE(2127)] = 60090, - [SMALL_STATE(2128)] = 60135, - [SMALL_STATE(2129)] = 60214, - [SMALL_STATE(2130)] = 60293, - [SMALL_STATE(2131)] = 60372, - [SMALL_STATE(2132)] = 60421, - [SMALL_STATE(2133)] = 60470, - [SMALL_STATE(2134)] = 60521, - [SMALL_STATE(2135)] = 60600, - [SMALL_STATE(2136)] = 60646, - [SMALL_STATE(2137)] = 60692, - [SMALL_STATE(2138)] = 60738, - [SMALL_STATE(2139)] = 60784, - [SMALL_STATE(2140)] = 60832, - [SMALL_STATE(2141)] = 60878, - [SMALL_STATE(2142)] = 60924, - [SMALL_STATE(2143)] = 60970, - [SMALL_STATE(2144)] = 61016, - [SMALL_STATE(2145)] = 61062, - [SMALL_STATE(2146)] = 61108, - [SMALL_STATE(2147)] = 61168, - [SMALL_STATE(2148)] = 61226, - [SMALL_STATE(2149)] = 61278, - [SMALL_STATE(2150)] = 61326, - [SMALL_STATE(2151)] = 61396, - [SMALL_STATE(2152)] = 61468, - [SMALL_STATE(2153)] = 61542, - [SMALL_STATE(2154)] = 61588, - [SMALL_STATE(2155)] = 61650, - [SMALL_STATE(2156)] = 61706, - [SMALL_STATE(2157)] = 61770, - [SMALL_STATE(2158)] = 61836, - [SMALL_STATE(2159)] = 61904, - [SMALL_STATE(2160)] = 61952, - [SMALL_STATE(2161)] = 61998, - [SMALL_STATE(2162)] = 62044, - [SMALL_STATE(2163)] = 62090, - [SMALL_STATE(2164)] = 62136, - [SMALL_STATE(2165)] = 62182, - [SMALL_STATE(2166)] = 62242, - [SMALL_STATE(2167)] = 62300, - [SMALL_STATE(2168)] = 62352, - [SMALL_STATE(2169)] = 62400, - [SMALL_STATE(2170)] = 62470, - [SMALL_STATE(2171)] = 62542, - [SMALL_STATE(2172)] = 62616, - [SMALL_STATE(2173)] = 62678, - [SMALL_STATE(2174)] = 62734, - [SMALL_STATE(2175)] = 62798, - [SMALL_STATE(2176)] = 62864, - [SMALL_STATE(2177)] = 62932, - [SMALL_STATE(2178)] = 62978, - [SMALL_STATE(2179)] = 63026, - [SMALL_STATE(2180)] = 63118, - [SMALL_STATE(2181)] = 63164, - [SMALL_STATE(2182)] = 63210, - [SMALL_STATE(2183)] = 63302, - [SMALL_STATE(2184)] = 63348, - [SMALL_STATE(2185)] = 63394, - [SMALL_STATE(2186)] = 63486, - [SMALL_STATE(2187)] = 63532, - [SMALL_STATE(2188)] = 63578, - [SMALL_STATE(2189)] = 63624, - [SMALL_STATE(2190)] = 63672, - [SMALL_STATE(2191)] = 63718, - [SMALL_STATE(2192)] = 63764, - [SMALL_STATE(2193)] = 63810, - [SMALL_STATE(2194)] = 63856, - [SMALL_STATE(2195)] = 63902, - [SMALL_STATE(2196)] = 63950, - [SMALL_STATE(2197)] = 63996, - [SMALL_STATE(2198)] = 64042, - [SMALL_STATE(2199)] = 64088, - [SMALL_STATE(2200)] = 64136, - [SMALL_STATE(2201)] = 64184, - [SMALL_STATE(2202)] = 64230, - [SMALL_STATE(2203)] = 64276, - [SMALL_STATE(2204)] = 64322, - [SMALL_STATE(2205)] = 64368, - [SMALL_STATE(2206)] = 64414, - [SMALL_STATE(2207)] = 64460, - [SMALL_STATE(2208)] = 64506, - [SMALL_STATE(2209)] = 64554, - [SMALL_STATE(2210)] = 64600, - [SMALL_STATE(2211)] = 64646, - [SMALL_STATE(2212)] = 64692, - [SMALL_STATE(2213)] = 64738, - [SMALL_STATE(2214)] = 64811, - [SMALL_STATE(2215)] = 64884, - [SMALL_STATE(2216)] = 64957, - [SMALL_STATE(2217)] = 65030, - [SMALL_STATE(2218)] = 65103, - [SMALL_STATE(2219)] = 65148, - [SMALL_STATE(2220)] = 65221, - [SMALL_STATE(2221)] = 65272, - [SMALL_STATE(2222)] = 65322, - [SMALL_STATE(2223)] = 65372, - [SMALL_STATE(2224)] = 65458, - [SMALL_STATE(2225)] = 65508, - [SMALL_STATE(2226)] = 65554, - [SMALL_STATE(2227)] = 65600, - [SMALL_STATE(2228)] = 65650, - [SMALL_STATE(2229)] = 65699, - [SMALL_STATE(2230)] = 65748, - [SMALL_STATE(2231)] = 65797, - [SMALL_STATE(2232)] = 65840, - [SMALL_STATE(2233)] = 65889, - [SMALL_STATE(2234)] = 65932, - [SMALL_STATE(2235)] = 65979, - [SMALL_STATE(2236)] = 66030, - [SMALL_STATE(2237)] = 66079, - [SMALL_STATE(2238)] = 66122, - [SMALL_STATE(2239)] = 66165, - [SMALL_STATE(2240)] = 66208, - [SMALL_STATE(2241)] = 66251, - [SMALL_STATE(2242)] = 66300, - [SMALL_STATE(2243)] = 66345, - [SMALL_STATE(2244)] = 66390, - [SMALL_STATE(2245)] = 66433, - [SMALL_STATE(2246)] = 66476, - [SMALL_STATE(2247)] = 66556, - [SMALL_STATE(2248)] = 66634, - [SMALL_STATE(2249)] = 66676, - [SMALL_STATE(2250)] = 66718, - [SMALL_STATE(2251)] = 66798, - [SMALL_STATE(2252)] = 66842, - [SMALL_STATE(2253)] = 66888, - [SMALL_STATE(2254)] = 66933, - [SMALL_STATE(2255)] = 66974, - [SMALL_STATE(2256)] = 67019, - [SMALL_STATE(2257)] = 67063, - [SMALL_STATE(2258)] = 67103, - [SMALL_STATE(2259)] = 67147, - [SMALL_STATE(2260)] = 67229, - [SMALL_STATE(2261)] = 67273, - [SMALL_STATE(2262)] = 67317, - [SMALL_STATE(2263)] = 67399, - [SMALL_STATE(2264)] = 67444, - [SMALL_STATE(2265)] = 67520, - [SMALL_STATE(2266)] = 67572, - [SMALL_STATE(2267)] = 67648, - [SMALL_STATE(2268)] = 67724, - [SMALL_STATE(2269)] = 67800, - [SMALL_STATE(2270)] = 67876, - [SMALL_STATE(2271)] = 67952, - [SMALL_STATE(2272)] = 68028, - [SMALL_STATE(2273)] = 68104, - [SMALL_STATE(2274)] = 68150, - [SMALL_STATE(2275)] = 68226, - [SMALL_STATE(2276)] = 68302, - [SMALL_STATE(2277)] = 68378, - [SMALL_STATE(2278)] = 68422, - [SMALL_STATE(2279)] = 68464, - [SMALL_STATE(2280)] = 68540, - [SMALL_STATE(2281)] = 68586, - [SMALL_STATE(2282)] = 68632, - [SMALL_STATE(2283)] = 68708, - [SMALL_STATE(2284)] = 68784, - [SMALL_STATE(2285)] = 68860, - [SMALL_STATE(2286)] = 68936, - [SMALL_STATE(2287)] = 69012, - [SMALL_STATE(2288)] = 69088, - [SMALL_STATE(2289)] = 69164, - [SMALL_STATE(2290)] = 69240, - [SMALL_STATE(2291)] = 69316, - [SMALL_STATE(2292)] = 69392, - [SMALL_STATE(2293)] = 69468, - [SMALL_STATE(2294)] = 69544, - [SMALL_STATE(2295)] = 69620, - [SMALL_STATE(2296)] = 69696, - [SMALL_STATE(2297)] = 69745, - [SMALL_STATE(2298)] = 69784, - [SMALL_STATE(2299)] = 69833, - [SMALL_STATE(2300)] = 69884, - [SMALL_STATE(2301)] = 69933, - [SMALL_STATE(2302)] = 70003, - [SMALL_STATE(2303)] = 70049, - [SMALL_STATE(2304)] = 70103, - [SMALL_STATE(2305)] = 70143, - [SMALL_STATE(2306)] = 70183, - [SMALL_STATE(2307)] = 70253, - [SMALL_STATE(2308)] = 70323, - [SMALL_STATE(2309)] = 70393, - [SMALL_STATE(2310)] = 70463, - [SMALL_STATE(2311)] = 70533, - [SMALL_STATE(2312)] = 70603, - [SMALL_STATE(2313)] = 70673, - [SMALL_STATE(2314)] = 70743, - [SMALL_STATE(2315)] = 70813, - [SMALL_STATE(2316)] = 70883, - [SMALL_STATE(2317)] = 70953, - [SMALL_STATE(2318)] = 71001, - [SMALL_STATE(2319)] = 71049, - [SMALL_STATE(2320)] = 71097, - [SMALL_STATE(2321)] = 71143, - [SMALL_STATE(2322)] = 71189, - [SMALL_STATE(2323)] = 71235, - [SMALL_STATE(2324)] = 71274, - [SMALL_STATE(2325)] = 71325, - [SMALL_STATE(2326)] = 71372, - [SMALL_STATE(2327)] = 71423, - [SMALL_STATE(2328)] = 71460, - [SMALL_STATE(2329)] = 71499, - [SMALL_STATE(2330)] = 71536, - [SMALL_STATE(2331)] = 71587, - [SMALL_STATE(2332)] = 71640, - [SMALL_STATE(2333)] = 71685, - [SMALL_STATE(2334)] = 71730, - [SMALL_STATE(2335)] = 71775, - [SMALL_STATE(2336)] = 71820, - [SMALL_STATE(2337)] = 71870, - [SMALL_STATE(2338)] = 71904, - [SMALL_STATE(2339)] = 71938, - [SMALL_STATE(2340)] = 71972, - [SMALL_STATE(2341)] = 72008, - [SMALL_STATE(2342)] = 72054, - [SMALL_STATE(2343)] = 72092, - [SMALL_STATE(2344)] = 72140, - [SMALL_STATE(2345)] = 72188, - [SMALL_STATE(2346)] = 72236, - [SMALL_STATE(2347)] = 72284, - [SMALL_STATE(2348)] = 72322, - [SMALL_STATE(2349)] = 72372, - [SMALL_STATE(2350)] = 72422, - [SMALL_STATE(2351)] = 72460, - [SMALL_STATE(2352)] = 72498, - [SMALL_STATE(2353)] = 72536, - [SMALL_STATE(2354)] = 72570, - [SMALL_STATE(2355)] = 72604, - [SMALL_STATE(2356)] = 72640, - [SMALL_STATE(2357)] = 72674, - [SMALL_STATE(2358)] = 72708, - [SMALL_STATE(2359)] = 72742, - [SMALL_STATE(2360)] = 72776, - [SMALL_STATE(2361)] = 72816, - [SMALL_STATE(2362)] = 72856, - [SMALL_STATE(2363)] = 72891, - [SMALL_STATE(2364)] = 72930, - [SMALL_STATE(2365)] = 72965, - [SMALL_STATE(2366)] = 72998, - [SMALL_STATE(2367)] = 73031, - [SMALL_STATE(2368)] = 73068, - [SMALL_STATE(2369)] = 73107, - [SMALL_STATE(2370)] = 73146, - [SMALL_STATE(2371)] = 73181, - [SMALL_STATE(2372)] = 73232, - [SMALL_STATE(2373)] = 73273, - [SMALL_STATE(2374)] = 73314, - [SMALL_STATE(2375)] = 73351, - [SMALL_STATE(2376)] = 73384, - [SMALL_STATE(2377)] = 73423, - [SMALL_STATE(2378)] = 73458, - [SMALL_STATE(2379)] = 73505, - [SMALL_STATE(2380)] = 73552, - [SMALL_STATE(2381)] = 73599, - [SMALL_STATE(2382)] = 73640, - [SMALL_STATE(2383)] = 73677, - [SMALL_STATE(2384)] = 73724, - [SMALL_STATE(2385)] = 73761, - [SMALL_STATE(2386)] = 73800, - [SMALL_STATE(2387)] = 73847, - [SMALL_STATE(2388)] = 73886, - [SMALL_STATE(2389)] = 73921, - [SMALL_STATE(2390)] = 73953, - [SMALL_STATE(2391)] = 74001, - [SMALL_STATE(2392)] = 74033, - [SMALL_STATE(2393)] = 74073, - [SMALL_STATE(2394)] = 74107, - [SMALL_STATE(2395)] = 74143, - [SMALL_STATE(2396)] = 74175, - [SMALL_STATE(2397)] = 74213, - [SMALL_STATE(2398)] = 74251, - [SMALL_STATE(2399)] = 74283, - [SMALL_STATE(2400)] = 74321, - [SMALL_STATE(2401)] = 74353, - [SMALL_STATE(2402)] = 74385, - [SMALL_STATE(2403)] = 74425, - [SMALL_STATE(2404)] = 74461, - [SMALL_STATE(2405)] = 74497, - [SMALL_STATE(2406)] = 74531, - [SMALL_STATE(2407)] = 74569, - [SMALL_STATE(2408)] = 74603, - [SMALL_STATE(2409)] = 74635, - [SMALL_STATE(2410)] = 74683, - [SMALL_STATE(2411)] = 74721, - [SMALL_STATE(2412)] = 74759, - [SMALL_STATE(2413)] = 74797, - [SMALL_STATE(2414)] = 74835, - [SMALL_STATE(2415)] = 74881, - [SMALL_STATE(2416)] = 74919, - [SMALL_STATE(2417)] = 74953, - [SMALL_STATE(2418)] = 74991, - [SMALL_STATE(2419)] = 75023, - [SMALL_STATE(2420)] = 75055, - [SMALL_STATE(2421)] = 75091, - [SMALL_STATE(2422)] = 75127, - [SMALL_STATE(2423)] = 75163, - [SMALL_STATE(2424)] = 75197, - [SMALL_STATE(2425)] = 75245, - [SMALL_STATE(2426)] = 75285, - [SMALL_STATE(2427)] = 75316, - [SMALL_STATE(2428)] = 75347, - [SMALL_STATE(2429)] = 75392, - [SMALL_STATE(2430)] = 75423, - [SMALL_STATE(2431)] = 75464, - [SMALL_STATE(2432)] = 75495, - [SMALL_STATE(2433)] = 75530, - [SMALL_STATE(2434)] = 75561, - [SMALL_STATE(2435)] = 75596, - [SMALL_STATE(2436)] = 75627, - [SMALL_STATE(2437)] = 75664, - [SMALL_STATE(2438)] = 75695, - [SMALL_STATE(2439)] = 75732, - [SMALL_STATE(2440)] = 75763, - [SMALL_STATE(2441)] = 75794, - [SMALL_STATE(2442)] = 75825, - [SMALL_STATE(2443)] = 75860, - [SMALL_STATE(2444)] = 75897, - [SMALL_STATE(2445)] = 75932, - [SMALL_STATE(2446)] = 75963, - [SMALL_STATE(2447)] = 75998, - [SMALL_STATE(2448)] = 76031, - [SMALL_STATE(2449)] = 76070, - [SMALL_STATE(2450)] = 76103, - [SMALL_STATE(2451)] = 76148, - [SMALL_STATE(2452)] = 76181, - [SMALL_STATE(2453)] = 76226, - [SMALL_STATE(2454)] = 76271, - [SMALL_STATE(2455)] = 76304, - [SMALL_STATE(2456)] = 76335, - [SMALL_STATE(2457)] = 76374, - [SMALL_STATE(2458)] = 76407, - [SMALL_STATE(2459)] = 76436, - [SMALL_STATE(2460)] = 76481, - [SMALL_STATE(2461)] = 76512, - [SMALL_STATE(2462)] = 76541, - [SMALL_STATE(2463)] = 76570, - [SMALL_STATE(2464)] = 76609, - [SMALL_STATE(2465)] = 76646, - [SMALL_STATE(2466)] = 76678, - [SMALL_STATE(2467)] = 76708, - [SMALL_STATE(2468)] = 76738, - [SMALL_STATE(2469)] = 76774, - [SMALL_STATE(2470)] = 76808, - [SMALL_STATE(2471)] = 76838, - [SMALL_STATE(2472)] = 76868, - [SMALL_STATE(2473)] = 76920, - [SMALL_STATE(2474)] = 76956, - [SMALL_STATE(2475)] = 76986, - [SMALL_STATE(2476)] = 77026, - [SMALL_STATE(2477)] = 77056, - [SMALL_STATE(2478)] = 77094, - [SMALL_STATE(2479)] = 77128, - [SMALL_STATE(2480)] = 77162, - [SMALL_STATE(2481)] = 77194, - [SMALL_STATE(2482)] = 77224, - [SMALL_STATE(2483)] = 77254, - [SMALL_STATE(2484)] = 77304, - [SMALL_STATE(2485)] = 77340, - [SMALL_STATE(2486)] = 77392, - [SMALL_STATE(2487)] = 77424, - [SMALL_STATE(2488)] = 77460, - [SMALL_STATE(2489)] = 77490, - [SMALL_STATE(2490)] = 77522, - [SMALL_STATE(2491)] = 77558, - [SMALL_STATE(2492)] = 77588, - [SMALL_STATE(2493)] = 77622, - [SMALL_STATE(2494)] = 77658, - [SMALL_STATE(2495)] = 77694, - [SMALL_STATE(2496)] = 77732, - [SMALL_STATE(2497)] = 77762, - [SMALL_STATE(2498)] = 77814, - [SMALL_STATE(2499)] = 77852, - [SMALL_STATE(2500)] = 77904, - [SMALL_STATE(2501)] = 77940, - [SMALL_STATE(2502)] = 77970, - [SMALL_STATE(2503)] = 78004, - [SMALL_STATE(2504)] = 78042, - [SMALL_STATE(2505)] = 78080, - [SMALL_STATE(2506)] = 78112, - [SMALL_STATE(2507)] = 78144, - [SMALL_STATE(2508)] = 78176, - [SMALL_STATE(2509)] = 78212, - [SMALL_STATE(2510)] = 78244, - [SMALL_STATE(2511)] = 78276, - [SMALL_STATE(2512)] = 78308, - [SMALL_STATE(2513)] = 78340, - [SMALL_STATE(2514)] = 78372, - [SMALL_STATE(2515)] = 78404, - [SMALL_STATE(2516)] = 78436, - [SMALL_STATE(2517)] = 78466, - [SMALL_STATE(2518)] = 78497, - [SMALL_STATE(2519)] = 78534, - [SMALL_STATE(2520)] = 78571, - [SMALL_STATE(2521)] = 78608, - [SMALL_STATE(2522)] = 78637, - [SMALL_STATE(2523)] = 78666, - [SMALL_STATE(2524)] = 78693, - [SMALL_STATE(2525)] = 78722, - [SMALL_STATE(2526)] = 78751, - [SMALL_STATE(2527)] = 78782, - [SMALL_STATE(2528)] = 78819, - [SMALL_STATE(2529)] = 78850, - [SMALL_STATE(2530)] = 78885, - [SMALL_STATE(2531)] = 78914, - [SMALL_STATE(2532)] = 78943, - [SMALL_STATE(2533)] = 78974, - [SMALL_STATE(2534)] = 79007, - [SMALL_STATE(2535)] = 79040, - [SMALL_STATE(2536)] = 79071, - [SMALL_STATE(2537)] = 79102, - [SMALL_STATE(2538)] = 79133, - [SMALL_STATE(2539)] = 79168, - [SMALL_STATE(2540)] = 79197, - [SMALL_STATE(2541)] = 79234, - [SMALL_STATE(2542)] = 79261, - [SMALL_STATE(2543)] = 79294, - [SMALL_STATE(2544)] = 79323, - [SMALL_STATE(2545)] = 79354, - [SMALL_STATE(2546)] = 79383, - [SMALL_STATE(2547)] = 79420, - [SMALL_STATE(2548)] = 79447, - [SMALL_STATE(2549)] = 79474, - [SMALL_STATE(2550)] = 79503, - [SMALL_STATE(2551)] = 79536, - [SMALL_STATE(2552)] = 79563, - [SMALL_STATE(2553)] = 79590, - [SMALL_STATE(2554)] = 79619, - [SMALL_STATE(2555)] = 79650, - [SMALL_STATE(2556)] = 79687, - [SMALL_STATE(2557)] = 79720, - [SMALL_STATE(2558)] = 79751, - [SMALL_STATE(2559)] = 79788, - [SMALL_STATE(2560)] = 79817, - [SMALL_STATE(2561)] = 79848, - [SMALL_STATE(2562)] = 79885, - [SMALL_STATE(2563)] = 79916, - [SMALL_STATE(2564)] = 79953, - [SMALL_STATE(2565)] = 79990, - [SMALL_STATE(2566)] = 80027, - [SMALL_STATE(2567)] = 80058, - [SMALL_STATE(2568)] = 80095, - [SMALL_STATE(2569)] = 80124, - [SMALL_STATE(2570)] = 80155, - [SMALL_STATE(2571)] = 80184, - [SMALL_STATE(2572)] = 80215, - [SMALL_STATE(2573)] = 80244, - [SMALL_STATE(2574)] = 80277, - [SMALL_STATE(2575)] = 80308, - [SMALL_STATE(2576)] = 80341, - [SMALL_STATE(2577)] = 80370, - [SMALL_STATE(2578)] = 80401, - [SMALL_STATE(2579)] = 80432, - [SMALL_STATE(2580)] = 80461, - [SMALL_STATE(2581)] = 80490, - [SMALL_STATE(2582)] = 80519, - [SMALL_STATE(2583)] = 80548, - [SMALL_STATE(2584)] = 80579, - [SMALL_STATE(2585)] = 80608, - [SMALL_STATE(2586)] = 80639, - [SMALL_STATE(2587)] = 80670, - [SMALL_STATE(2588)] = 80701, - [SMALL_STATE(2589)] = 80732, - [SMALL_STATE(2590)] = 80763, - [SMALL_STATE(2591)] = 80794, - [SMALL_STATE(2592)] = 80825, - [SMALL_STATE(2593)] = 80854, - [SMALL_STATE(2594)] = 80885, - [SMALL_STATE(2595)] = 80917, - [SMALL_STATE(2596)] = 80961, - [SMALL_STATE(2597)] = 81005, - [SMALL_STATE(2598)] = 81033, - [SMALL_STATE(2599)] = 81061, - [SMALL_STATE(2600)] = 81105, - [SMALL_STATE(2601)] = 81141, - [SMALL_STATE(2602)] = 81169, - [SMALL_STATE(2603)] = 81205, - [SMALL_STATE(2604)] = 81233, - [SMALL_STATE(2605)] = 81263, - [SMALL_STATE(2606)] = 81293, - [SMALL_STATE(2607)] = 81323, - [SMALL_STATE(2608)] = 81367, - [SMALL_STATE(2609)] = 81395, - [SMALL_STATE(2610)] = 81423, - [SMALL_STATE(2611)] = 81459, - [SMALL_STATE(2612)] = 81487, - [SMALL_STATE(2613)] = 81523, - [SMALL_STATE(2614)] = 81559, - [SMALL_STATE(2615)] = 81595, - [SMALL_STATE(2616)] = 81625, - [SMALL_STATE(2617)] = 81653, - [SMALL_STATE(2618)] = 81683, - [SMALL_STATE(2619)] = 81713, - [SMALL_STATE(2620)] = 81743, - [SMALL_STATE(2621)] = 81777, - [SMALL_STATE(2622)] = 81813, - [SMALL_STATE(2623)] = 81841, - [SMALL_STATE(2624)] = 81873, - [SMALL_STATE(2625)] = 81901, - [SMALL_STATE(2626)] = 81929, - [SMALL_STATE(2627)] = 81957, - [SMALL_STATE(2628)] = 81985, - [SMALL_STATE(2629)] = 82015, - [SMALL_STATE(2630)] = 82043, - [SMALL_STATE(2631)] = 82071, - [SMALL_STATE(2632)] = 82099, - [SMALL_STATE(2633)] = 82137, - [SMALL_STATE(2634)] = 82181, - [SMALL_STATE(2635)] = 82211, - [SMALL_STATE(2636)] = 82245, - [SMALL_STATE(2637)] = 82277, - [SMALL_STATE(2638)] = 82313, - [SMALL_STATE(2639)] = 82341, - [SMALL_STATE(2640)] = 82377, - [SMALL_STATE(2641)] = 82413, - [SMALL_STATE(2642)] = 82445, - [SMALL_STATE(2643)] = 82477, - [SMALL_STATE(2644)] = 82509, - [SMALL_STATE(2645)] = 82541, - [SMALL_STATE(2646)] = 82573, - [SMALL_STATE(2647)] = 82603, - [SMALL_STATE(2648)] = 82633, - [SMALL_STATE(2649)] = 82663, - [SMALL_STATE(2650)] = 82693, - [SMALL_STATE(2651)] = 82723, - [SMALL_STATE(2652)] = 82753, - [SMALL_STATE(2653)] = 82781, - [SMALL_STATE(2654)] = 82813, - [SMALL_STATE(2655)] = 82843, - [SMALL_STATE(2656)] = 82873, - [SMALL_STATE(2657)] = 82909, - [SMALL_STATE(2658)] = 82945, - [SMALL_STATE(2659)] = 82981, - [SMALL_STATE(2660)] = 83012, - [SMALL_STATE(2661)] = 83039, - [SMALL_STATE(2662)] = 83074, - [SMALL_STATE(2663)] = 83105, - [SMALL_STATE(2664)] = 83136, - [SMALL_STATE(2665)] = 83167, - [SMALL_STATE(2666)] = 83192, - [SMALL_STATE(2667)] = 83219, - [SMALL_STATE(2668)] = 83252, - [SMALL_STATE(2669)] = 83279, - [SMALL_STATE(2670)] = 83312, - [SMALL_STATE(2671)] = 83347, - [SMALL_STATE(2672)] = 83382, - [SMALL_STATE(2673)] = 83417, - [SMALL_STATE(2674)] = 83452, - [SMALL_STATE(2675)] = 83487, - [SMALL_STATE(2676)] = 83522, - [SMALL_STATE(2677)] = 83547, - [SMALL_STATE(2678)] = 83580, - [SMALL_STATE(2679)] = 83613, - [SMALL_STATE(2680)] = 83642, - [SMALL_STATE(2681)] = 83667, - [SMALL_STATE(2682)] = 83694, - [SMALL_STATE(2683)] = 83721, - [SMALL_STATE(2684)] = 83756, - [SMALL_STATE(2685)] = 83783, - [SMALL_STATE(2686)] = 83814, - [SMALL_STATE(2687)] = 83839, - [SMALL_STATE(2688)] = 83864, - [SMALL_STATE(2689)] = 83895, - [SMALL_STATE(2690)] = 83926, - [SMALL_STATE(2691)] = 83951, - [SMALL_STATE(2692)] = 83978, - [SMALL_STATE(2693)] = 84003, - [SMALL_STATE(2694)] = 84028, - [SMALL_STATE(2695)] = 84055, - [SMALL_STATE(2696)] = 84084, - [SMALL_STATE(2697)] = 84111, - [SMALL_STATE(2698)] = 84140, - [SMALL_STATE(2699)] = 84169, - [SMALL_STATE(2700)] = 84194, - [SMALL_STATE(2701)] = 84227, - [SMALL_STATE(2702)] = 84252, - [SMALL_STATE(2703)] = 84285, - [SMALL_STATE(2704)] = 84312, - [SMALL_STATE(2705)] = 84339, - [SMALL_STATE(2706)] = 84376, - [SMALL_STATE(2707)] = 84405, - [SMALL_STATE(2708)] = 84434, - [SMALL_STATE(2709)] = 84469, - [SMALL_STATE(2710)] = 84504, - [SMALL_STATE(2711)] = 84531, - [SMALL_STATE(2712)] = 84562, - [SMALL_STATE(2713)] = 84593, - [SMALL_STATE(2714)] = 84624, - [SMALL_STATE(2715)] = 84655, - [SMALL_STATE(2716)] = 84684, - [SMALL_STATE(2717)] = 84713, - [SMALL_STATE(2718)] = 84744, - [SMALL_STATE(2719)] = 84779, - [SMALL_STATE(2720)] = 84806, - [SMALL_STATE(2721)] = 84833, - [SMALL_STATE(2722)] = 84860, - [SMALL_STATE(2723)] = 84889, - [SMALL_STATE(2724)] = 84920, - [SMALL_STATE(2725)] = 84949, - [SMALL_STATE(2726)] = 84976, - [SMALL_STATE(2727)] = 85007, - [SMALL_STATE(2728)] = 85038, - [SMALL_STATE(2729)] = 85069, - [SMALL_STATE(2730)] = 85098, - [SMALL_STATE(2731)] = 85127, - [SMALL_STATE(2732)] = 85158, - [SMALL_STATE(2733)] = 85191, - [SMALL_STATE(2734)] = 85222, - [SMALL_STATE(2735)] = 85251, - [SMALL_STATE(2736)] = 85282, - [SMALL_STATE(2737)] = 85313, - [SMALL_STATE(2738)] = 85346, - [SMALL_STATE(2739)] = 85377, - [SMALL_STATE(2740)] = 85404, - [SMALL_STATE(2741)] = 85437, - [SMALL_STATE(2742)] = 85468, - [SMALL_STATE(2743)] = 85495, - [SMALL_STATE(2744)] = 85522, - [SMALL_STATE(2745)] = 85551, - [SMALL_STATE(2746)] = 85584, - [SMALL_STATE(2747)] = 85611, - [SMALL_STATE(2748)] = 85642, - [SMALL_STATE(2749)] = 85673, - [SMALL_STATE(2750)] = 85700, - [SMALL_STATE(2751)] = 85731, - [SMALL_STATE(2752)] = 85762, - [SMALL_STATE(2753)] = 85789, - [SMALL_STATE(2754)] = 85816, - [SMALL_STATE(2755)] = 85843, - [SMALL_STATE(2756)] = 85870, - [SMALL_STATE(2757)] = 85899, - [SMALL_STATE(2758)] = 85926, - [SMALL_STATE(2759)] = 85957, - [SMALL_STATE(2760)] = 85988, - [SMALL_STATE(2761)] = 86019, - [SMALL_STATE(2762)] = 86046, - [SMALL_STATE(2763)] = 86073, - [SMALL_STATE(2764)] = 86104, - [SMALL_STATE(2765)] = 86135, - [SMALL_STATE(2766)] = 86166, - [SMALL_STATE(2767)] = 86201, - [SMALL_STATE(2768)] = 86232, - [SMALL_STATE(2769)] = 86263, - [SMALL_STATE(2770)] = 86294, - [SMALL_STATE(2771)] = 86329, - [SMALL_STATE(2772)] = 86362, - [SMALL_STATE(2773)] = 86395, - [SMALL_STATE(2774)] = 86428, - [SMALL_STATE(2775)] = 86455, - [SMALL_STATE(2776)] = 86484, - [SMALL_STATE(2777)] = 86515, - [SMALL_STATE(2778)] = 86546, - [SMALL_STATE(2779)] = 86579, - [SMALL_STATE(2780)] = 86610, - [SMALL_STATE(2781)] = 86643, - [SMALL_STATE(2782)] = 86672, - [SMALL_STATE(2783)] = 86705, - [SMALL_STATE(2784)] = 86740, - [SMALL_STATE(2785)] = 86769, - [SMALL_STATE(2786)] = 86802, - [SMALL_STATE(2787)] = 86829, - [SMALL_STATE(2788)] = 86862, - [SMALL_STATE(2789)] = 86893, - [SMALL_STATE(2790)] = 86920, - [SMALL_STATE(2791)] = 86947, - [SMALL_STATE(2792)] = 86974, - [SMALL_STATE(2793)] = 87007, - [SMALL_STATE(2794)] = 87034, - [SMALL_STATE(2795)] = 87061, - [SMALL_STATE(2796)] = 87092, - [SMALL_STATE(2797)] = 87119, - [SMALL_STATE(2798)] = 87150, - [SMALL_STATE(2799)] = 87181, - [SMALL_STATE(2800)] = 87210, - [SMALL_STATE(2801)] = 87241, - [SMALL_STATE(2802)] = 87270, - [SMALL_STATE(2803)] = 87299, - [SMALL_STATE(2804)] = 87326, - [SMALL_STATE(2805)] = 87355, - [SMALL_STATE(2806)] = 87388, - [SMALL_STATE(2807)] = 87419, - [SMALL_STATE(2808)] = 87452, - [SMALL_STATE(2809)] = 87483, - [SMALL_STATE(2810)] = 87510, - [SMALL_STATE(2811)] = 87541, - [SMALL_STATE(2812)] = 87568, - [SMALL_STATE(2813)] = 87599, - [SMALL_STATE(2814)] = 87630, - [SMALL_STATE(2815)] = 87661, - [SMALL_STATE(2816)] = 87692, - [SMALL_STATE(2817)] = 87719, - [SMALL_STATE(2818)] = 87746, - [SMALL_STATE(2819)] = 87777, - [SMALL_STATE(2820)] = 87808, - [SMALL_STATE(2821)] = 87839, - [SMALL_STATE(2822)] = 87870, - [SMALL_STATE(2823)] = 87897, - [SMALL_STATE(2824)] = 87922, - [SMALL_STATE(2825)] = 87955, - [SMALL_STATE(2826)] = 87982, - [SMALL_STATE(2827)] = 88007, - [SMALL_STATE(2828)] = 88042, - [SMALL_STATE(2829)] = 88067, - [SMALL_STATE(2830)] = 88094, - [SMALL_STATE(2831)] = 88121, - [SMALL_STATE(2832)] = 88148, - [SMALL_STATE(2833)] = 88175, - [SMALL_STATE(2834)] = 88206, - [SMALL_STATE(2835)] = 88237, - [SMALL_STATE(2836)] = 88264, - [SMALL_STATE(2837)] = 88295, - [SMALL_STATE(2838)] = 88326, - [SMALL_STATE(2839)] = 88357, - [SMALL_STATE(2840)] = 88384, - [SMALL_STATE(2841)] = 88411, - [SMALL_STATE(2842)] = 88438, - [SMALL_STATE(2843)] = 88469, - [SMALL_STATE(2844)] = 88493, - [SMALL_STATE(2845)] = 88519, - [SMALL_STATE(2846)] = 88549, - [SMALL_STATE(2847)] = 88579, - [SMALL_STATE(2848)] = 88631, - [SMALL_STATE(2849)] = 88683, - [SMALL_STATE(2850)] = 88713, - [SMALL_STATE(2851)] = 88737, - [SMALL_STATE(2852)] = 88789, - [SMALL_STATE(2853)] = 88841, - [SMALL_STATE(2854)] = 88887, - [SMALL_STATE(2855)] = 88917, - [SMALL_STATE(2856)] = 88943, - [SMALL_STATE(2857)] = 88967, - [SMALL_STATE(2858)] = 89007, - [SMALL_STATE(2859)] = 89035, - [SMALL_STATE(2860)] = 89061, - [SMALL_STATE(2861)] = 89093, - [SMALL_STATE(2862)] = 89145, - [SMALL_STATE(2863)] = 89175, - [SMALL_STATE(2864)] = 89203, - [SMALL_STATE(2865)] = 89227, - [SMALL_STATE(2866)] = 89257, - [SMALL_STATE(2867)] = 89283, - [SMALL_STATE(2868)] = 89309, - [SMALL_STATE(2869)] = 89339, - [SMALL_STATE(2870)] = 89369, - [SMALL_STATE(2871)] = 89399, - [SMALL_STATE(2872)] = 89429, - [SMALL_STATE(2873)] = 89457, - [SMALL_STATE(2874)] = 89487, - [SMALL_STATE(2875)] = 89517, - [SMALL_STATE(2876)] = 89569, - [SMALL_STATE(2877)] = 89601, - [SMALL_STATE(2878)] = 89631, - [SMALL_STATE(2879)] = 89661, - [SMALL_STATE(2880)] = 89691, - [SMALL_STATE(2881)] = 89721, - [SMALL_STATE(2882)] = 89747, - [SMALL_STATE(2883)] = 89771, - [SMALL_STATE(2884)] = 89797, - [SMALL_STATE(2885)] = 89821, - [SMALL_STATE(2886)] = 89845, - [SMALL_STATE(2887)] = 89869, - [SMALL_STATE(2888)] = 89893, - [SMALL_STATE(2889)] = 89919, - [SMALL_STATE(2890)] = 89943, - [SMALL_STATE(2891)] = 89967, - [SMALL_STATE(2892)] = 89991, - [SMALL_STATE(2893)] = 90017, - [SMALL_STATE(2894)] = 90043, - [SMALL_STATE(2895)] = 90071, - [SMALL_STATE(2896)] = 90099, - [SMALL_STATE(2897)] = 90123, - [SMALL_STATE(2898)] = 90147, - [SMALL_STATE(2899)] = 90173, - [SMALL_STATE(2900)] = 90199, - [SMALL_STATE(2901)] = 90229, - [SMALL_STATE(2902)] = 90259, - [SMALL_STATE(2903)] = 90287, - [SMALL_STATE(2904)] = 90315, - [SMALL_STATE(2905)] = 90345, - [SMALL_STATE(2906)] = 90375, - [SMALL_STATE(2907)] = 90405, - [SMALL_STATE(2908)] = 90431, - [SMALL_STATE(2909)] = 90457, - [SMALL_STATE(2910)] = 90483, - [SMALL_STATE(2911)] = 90527, - [SMALL_STATE(2912)] = 90553, - [SMALL_STATE(2913)] = 90583, - [SMALL_STATE(2914)] = 90611, - [SMALL_STATE(2915)] = 90637, - [SMALL_STATE(2916)] = 90663, - [SMALL_STATE(2917)] = 90691, - [SMALL_STATE(2918)] = 90719, - [SMALL_STATE(2919)] = 90745, - [SMALL_STATE(2920)] = 90773, - [SMALL_STATE(2921)] = 90799, - [SMALL_STATE(2922)] = 90825, - [SMALL_STATE(2923)] = 90851, - [SMALL_STATE(2924)] = 90883, - [SMALL_STATE(2925)] = 90907, - [SMALL_STATE(2926)] = 90959, - [SMALL_STATE(2927)] = 90985, - [SMALL_STATE(2928)] = 91015, - [SMALL_STATE(2929)] = 91047, - [SMALL_STATE(2930)] = 91073, - [SMALL_STATE(2931)] = 91099, - [SMALL_STATE(2932)] = 91133, - [SMALL_STATE(2933)] = 91161, - [SMALL_STATE(2934)] = 91185, - [SMALL_STATE(2935)] = 91211, - [SMALL_STATE(2936)] = 91237, - [SMALL_STATE(2937)] = 91267, - [SMALL_STATE(2938)] = 91319, - [SMALL_STATE(2939)] = 91371, - [SMALL_STATE(2940)] = 91397, - [SMALL_STATE(2941)] = 91427, - [SMALL_STATE(2942)] = 91457, - [SMALL_STATE(2943)] = 91509, - [SMALL_STATE(2944)] = 91543, - [SMALL_STATE(2945)] = 91571, - [SMALL_STATE(2946)] = 91601, - [SMALL_STATE(2947)] = 91627, - [SMALL_STATE(2948)] = 91653, - [SMALL_STATE(2949)] = 91678, - [SMALL_STATE(2950)] = 91703, - [SMALL_STATE(2951)] = 91732, - [SMALL_STATE(2952)] = 91761, - [SMALL_STATE(2953)] = 91786, - [SMALL_STATE(2954)] = 91811, - [SMALL_STATE(2955)] = 91836, - [SMALL_STATE(2956)] = 91861, - [SMALL_STATE(2957)] = 91886, - [SMALL_STATE(2958)] = 91915, - [SMALL_STATE(2959)] = 91944, - [SMALL_STATE(2960)] = 91967, - [SMALL_STATE(2961)] = 91992, - [SMALL_STATE(2962)] = 92019, - [SMALL_STATE(2963)] = 92044, - [SMALL_STATE(2964)] = 92069, - [SMALL_STATE(2965)] = 92094, - [SMALL_STATE(2966)] = 92119, - [SMALL_STATE(2967)] = 92144, - [SMALL_STATE(2968)] = 92169, - [SMALL_STATE(2969)] = 92196, - [SMALL_STATE(2970)] = 92221, - [SMALL_STATE(2971)] = 92250, - [SMALL_STATE(2972)] = 92279, - [SMALL_STATE(2973)] = 92308, - [SMALL_STATE(2974)] = 92337, - [SMALL_STATE(2975)] = 92362, - [SMALL_STATE(2976)] = 92391, - [SMALL_STATE(2977)] = 92416, - [SMALL_STATE(2978)] = 92441, - [SMALL_STATE(2979)] = 92478, - [SMALL_STATE(2980)] = 92507, - [SMALL_STATE(2981)] = 92546, - [SMALL_STATE(2982)] = 92571, - [SMALL_STATE(2983)] = 92596, - [SMALL_STATE(2984)] = 92621, - [SMALL_STATE(2985)] = 92652, - [SMALL_STATE(2986)] = 92681, - [SMALL_STATE(2987)] = 92706, - [SMALL_STATE(2988)] = 92731, - [SMALL_STATE(2989)] = 92756, - [SMALL_STATE(2990)] = 92781, - [SMALL_STATE(2991)] = 92810, - [SMALL_STATE(2992)] = 92839, - [SMALL_STATE(2993)] = 92864, - [SMALL_STATE(2994)] = 92895, - [SMALL_STATE(2995)] = 92920, - [SMALL_STATE(2996)] = 92945, - [SMALL_STATE(2997)] = 92970, - [SMALL_STATE(2998)] = 92995, - [SMALL_STATE(2999)] = 93020, - [SMALL_STATE(3000)] = 93049, - [SMALL_STATE(3001)] = 93078, - [SMALL_STATE(3002)] = 93107, - [SMALL_STATE(3003)] = 93150, - [SMALL_STATE(3004)] = 93179, - [SMALL_STATE(3005)] = 93208, - [SMALL_STATE(3006)] = 93237, - [SMALL_STATE(3007)] = 93264, - [SMALL_STATE(3008)] = 93291, - [SMALL_STATE(3009)] = 93316, - [SMALL_STATE(3010)] = 93341, - [SMALL_STATE(3011)] = 93366, - [SMALL_STATE(3012)] = 93391, - [SMALL_STATE(3013)] = 93428, - [SMALL_STATE(3014)] = 93453, - [SMALL_STATE(3015)] = 93496, - [SMALL_STATE(3016)] = 93525, - [SMALL_STATE(3017)] = 93550, - [SMALL_STATE(3018)] = 93575, - [SMALL_STATE(3019)] = 93604, - [SMALL_STATE(3020)] = 93633, - [SMALL_STATE(3021)] = 93658, - [SMALL_STATE(3022)] = 93687, - [SMALL_STATE(3023)] = 93718, - [SMALL_STATE(3024)] = 93743, - [SMALL_STATE(3025)] = 93770, - [SMALL_STATE(3026)] = 93799, - [SMALL_STATE(3027)] = 93824, - [SMALL_STATE(3028)] = 93849, - [SMALL_STATE(3029)] = 93878, - [SMALL_STATE(3030)] = 93903, - [SMALL_STATE(3031)] = 93926, - [SMALL_STATE(3032)] = 93955, - [SMALL_STATE(3033)] = 93980, - [SMALL_STATE(3034)] = 94009, - [SMALL_STATE(3035)] = 94034, - [SMALL_STATE(3036)] = 94059, - [SMALL_STATE(3037)] = 94084, - [SMALL_STATE(3038)] = 94113, - [SMALL_STATE(3039)] = 94138, - [SMALL_STATE(3040)] = 94161, - [SMALL_STATE(3041)] = 94190, - [SMALL_STATE(3042)] = 94227, - [SMALL_STATE(3043)] = 94256, - [SMALL_STATE(3044)] = 94281, - [SMALL_STATE(3045)] = 94310, - [SMALL_STATE(3046)] = 94339, - [SMALL_STATE(3047)] = 94364, - [SMALL_STATE(3048)] = 94389, - [SMALL_STATE(3049)] = 94414, - [SMALL_STATE(3050)] = 94439, - [SMALL_STATE(3051)] = 94468, - [SMALL_STATE(3052)] = 94493, - [SMALL_STATE(3053)] = 94518, - [SMALL_STATE(3054)] = 94543, - [SMALL_STATE(3055)] = 94568, - [SMALL_STATE(3056)] = 94597, - [SMALL_STATE(3057)] = 94622, - [SMALL_STATE(3058)] = 94647, - [SMALL_STATE(3059)] = 94672, - [SMALL_STATE(3060)] = 94701, - [SMALL_STATE(3061)] = 94726, - [SMALL_STATE(3062)] = 94751, - [SMALL_STATE(3063)] = 94776, - [SMALL_STATE(3064)] = 94805, - [SMALL_STATE(3065)] = 94834, - [SMALL_STATE(3066)] = 94863, - [SMALL_STATE(3067)] = 94892, - [SMALL_STATE(3068)] = 94917, - [SMALL_STATE(3069)] = 94946, - [SMALL_STATE(3070)] = 94975, - [SMALL_STATE(3071)] = 95000, - [SMALL_STATE(3072)] = 95029, - [SMALL_STATE(3073)] = 95054, - [SMALL_STATE(3074)] = 95079, - [SMALL_STATE(3075)] = 95104, - [SMALL_STATE(3076)] = 95129, - [SMALL_STATE(3077)] = 95154, - [SMALL_STATE(3078)] = 95179, - [SMALL_STATE(3079)] = 95206, - [SMALL_STATE(3080)] = 95229, - [SMALL_STATE(3081)] = 95254, - [SMALL_STATE(3082)] = 95283, - [SMALL_STATE(3083)] = 95308, - [SMALL_STATE(3084)] = 95333, - [SMALL_STATE(3085)] = 95358, - [SMALL_STATE(3086)] = 95383, - [SMALL_STATE(3087)] = 95408, - [SMALL_STATE(3088)] = 95433, - [SMALL_STATE(3089)] = 95458, - [SMALL_STATE(3090)] = 95487, - [SMALL_STATE(3091)] = 95510, - [SMALL_STATE(3092)] = 95535, - [SMALL_STATE(3093)] = 95564, - [SMALL_STATE(3094)] = 95589, - [SMALL_STATE(3095)] = 95614, - [SMALL_STATE(3096)] = 95645, - [SMALL_STATE(3097)] = 95670, - [SMALL_STATE(3098)] = 95695, - [SMALL_STATE(3099)] = 95720, - [SMALL_STATE(3100)] = 95745, - [SMALL_STATE(3101)] = 95770, - [SMALL_STATE(3102)] = 95795, - [SMALL_STATE(3103)] = 95820, - [SMALL_STATE(3104)] = 95845, - [SMALL_STATE(3105)] = 95870, - [SMALL_STATE(3106)] = 95899, - [SMALL_STATE(3107)] = 95924, - [SMALL_STATE(3108)] = 95949, - [SMALL_STATE(3109)] = 95974, - [SMALL_STATE(3110)] = 96001, - [SMALL_STATE(3111)] = 96043, - [SMALL_STATE(3112)] = 96067, - [SMALL_STATE(3113)] = 96091, - [SMALL_STATE(3114)] = 96113, - [SMALL_STATE(3115)] = 96149, - [SMALL_STATE(3116)] = 96173, - [SMALL_STATE(3117)] = 96197, - [SMALL_STATE(3118)] = 96219, - [SMALL_STATE(3119)] = 96243, - [SMALL_STATE(3120)] = 96267, - [SMALL_STATE(3121)] = 96307, - [SMALL_STATE(3122)] = 96331, - [SMALL_STATE(3123)] = 96355, - [SMALL_STATE(3124)] = 96391, - [SMALL_STATE(3125)] = 96415, - [SMALL_STATE(3126)] = 96439, - [SMALL_STATE(3127)] = 96479, - [SMALL_STATE(3128)] = 96503, - [SMALL_STATE(3129)] = 96527, - [SMALL_STATE(3130)] = 96551, - [SMALL_STATE(3131)] = 96575, - [SMALL_STATE(3132)] = 96599, - [SMALL_STATE(3133)] = 96623, - [SMALL_STATE(3134)] = 96647, - [SMALL_STATE(3135)] = 96671, - [SMALL_STATE(3136)] = 96695, - [SMALL_STATE(3137)] = 96719, - [SMALL_STATE(3138)] = 96743, - [SMALL_STATE(3139)] = 96767, - [SMALL_STATE(3140)] = 96813, - [SMALL_STATE(3141)] = 96837, - [SMALL_STATE(3142)] = 96861, - [SMALL_STATE(3143)] = 96885, - [SMALL_STATE(3144)] = 96931, - [SMALL_STATE(3145)] = 96955, - [SMALL_STATE(3146)] = 96979, - [SMALL_STATE(3147)] = 97003, - [SMALL_STATE(3148)] = 97027, - [SMALL_STATE(3149)] = 97051, - [SMALL_STATE(3150)] = 97075, - [SMALL_STATE(3151)] = 97099, - [SMALL_STATE(3152)] = 97121, - [SMALL_STATE(3153)] = 97145, - [SMALL_STATE(3154)] = 97169, - [SMALL_STATE(3155)] = 97203, - [SMALL_STATE(3156)] = 97227, - [SMALL_STATE(3157)] = 97251, - [SMALL_STATE(3158)] = 97291, - [SMALL_STATE(3159)] = 97325, - [SMALL_STATE(3160)] = 97347, - [SMALL_STATE(3161)] = 97381, - [SMALL_STATE(3162)] = 97403, - [SMALL_STATE(3163)] = 97449, - [SMALL_STATE(3164)] = 97473, - [SMALL_STATE(3165)] = 97513, - [SMALL_STATE(3166)] = 97537, - [SMALL_STATE(3167)] = 97561, - [SMALL_STATE(3168)] = 97583, - [SMALL_STATE(3169)] = 97605, - [SMALL_STATE(3170)] = 97629, - [SMALL_STATE(3171)] = 97653, - [SMALL_STATE(3172)] = 97675, - [SMALL_STATE(3173)] = 97697, - [SMALL_STATE(3174)] = 97719, - [SMALL_STATE(3175)] = 97741, - [SMALL_STATE(3176)] = 97765, - [SMALL_STATE(3177)] = 97811, - [SMALL_STATE(3178)] = 97835, - [SMALL_STATE(3179)] = 97859, - [SMALL_STATE(3180)] = 97883, - [SMALL_STATE(3181)] = 97907, - [SMALL_STATE(3182)] = 97931, - [SMALL_STATE(3183)] = 97955, - [SMALL_STATE(3184)] = 97979, - [SMALL_STATE(3185)] = 98003, - [SMALL_STATE(3186)] = 98045, - [SMALL_STATE(3187)] = 98069, - [SMALL_STATE(3188)] = 98093, - [SMALL_STATE(3189)] = 98117, - [SMALL_STATE(3190)] = 98141, - [SMALL_STATE(3191)] = 98165, - [SMALL_STATE(3192)] = 98189, - [SMALL_STATE(3193)] = 98213, - [SMALL_STATE(3194)] = 98237, - [SMALL_STATE(3195)] = 98261, - [SMALL_STATE(3196)] = 98285, - [SMALL_STATE(3197)] = 98309, - [SMALL_STATE(3198)] = 98333, - [SMALL_STATE(3199)] = 98355, - [SMALL_STATE(3200)] = 98379, - [SMALL_STATE(3201)] = 98403, - [SMALL_STATE(3202)] = 98425, - [SMALL_STATE(3203)] = 98449, - [SMALL_STATE(3204)] = 98473, - [SMALL_STATE(3205)] = 98499, - [SMALL_STATE(3206)] = 98523, - [SMALL_STATE(3207)] = 98547, - [SMALL_STATE(3208)] = 98571, - [SMALL_STATE(3209)] = 98593, - [SMALL_STATE(3210)] = 98617, - [SMALL_STATE(3211)] = 98641, - [SMALL_STATE(3212)] = 98665, - [SMALL_STATE(3213)] = 98689, - [SMALL_STATE(3214)] = 98717, - [SMALL_STATE(3215)] = 98741, - [SMALL_STATE(3216)] = 98769, - [SMALL_STATE(3217)] = 98797, - [SMALL_STATE(3218)] = 98825, - [SMALL_STATE(3219)] = 98853, - [SMALL_STATE(3220)] = 98881, - [SMALL_STATE(3221)] = 98909, - [SMALL_STATE(3222)] = 98937, - [SMALL_STATE(3223)] = 98965, - [SMALL_STATE(3224)] = 98993, - [SMALL_STATE(3225)] = 99021, - [SMALL_STATE(3226)] = 99049, - [SMALL_STATE(3227)] = 99073, - [SMALL_STATE(3228)] = 99097, - [SMALL_STATE(3229)] = 99137, - [SMALL_STATE(3230)] = 99183, - [SMALL_STATE(3231)] = 99229, - [SMALL_STATE(3232)] = 99253, - [SMALL_STATE(3233)] = 99287, - [SMALL_STATE(3234)] = 99327, - [SMALL_STATE(3235)] = 99373, - [SMALL_STATE(3236)] = 99397, - [SMALL_STATE(3237)] = 99437, - [SMALL_STATE(3238)] = 99483, - [SMALL_STATE(3239)] = 99507, - [SMALL_STATE(3240)] = 99531, - [SMALL_STATE(3241)] = 99577, - [SMALL_STATE(3242)] = 99601, - [SMALL_STATE(3243)] = 99647, - [SMALL_STATE(3244)] = 99673, - [SMALL_STATE(3245)] = 99697, - [SMALL_STATE(3246)] = 99719, - [SMALL_STATE(3247)] = 99743, - [SMALL_STATE(3248)] = 99765, - [SMALL_STATE(3249)] = 99787, - [SMALL_STATE(3250)] = 99809, - [SMALL_STATE(3251)] = 99833, - [SMALL_STATE(3252)] = 99854, - [SMALL_STATE(3253)] = 99875, - [SMALL_STATE(3254)] = 99898, - [SMALL_STATE(3255)] = 99919, - [SMALL_STATE(3256)] = 99958, - [SMALL_STATE(3257)] = 99981, - [SMALL_STATE(3258)] = 100002, - [SMALL_STATE(3259)] = 100023, - [SMALL_STATE(3260)] = 100044, - [SMALL_STATE(3261)] = 100071, - [SMALL_STATE(3262)] = 100092, - [SMALL_STATE(3263)] = 100113, - [SMALL_STATE(3264)] = 100134, - [SMALL_STATE(3265)] = 100155, - [SMALL_STATE(3266)] = 100176, - [SMALL_STATE(3267)] = 100197, - [SMALL_STATE(3268)] = 100220, - [SMALL_STATE(3269)] = 100241, - [SMALL_STATE(3270)] = 100262, - [SMALL_STATE(3271)] = 100283, - [SMALL_STATE(3272)] = 100304, - [SMALL_STATE(3273)] = 100325, - [SMALL_STATE(3274)] = 100346, - [SMALL_STATE(3275)] = 100369, - [SMALL_STATE(3276)] = 100390, - [SMALL_STATE(3277)] = 100411, - [SMALL_STATE(3278)] = 100432, - [SMALL_STATE(3279)] = 100453, - [SMALL_STATE(3280)] = 100474, - [SMALL_STATE(3281)] = 100495, - [SMALL_STATE(3282)] = 100534, - [SMALL_STATE(3283)] = 100555, - [SMALL_STATE(3284)] = 100594, - [SMALL_STATE(3285)] = 100615, - [SMALL_STATE(3286)] = 100642, - [SMALL_STATE(3287)] = 100663, - [SMALL_STATE(3288)] = 100684, - [SMALL_STATE(3289)] = 100705, - [SMALL_STATE(3290)] = 100726, - [SMALL_STATE(3291)] = 100747, - [SMALL_STATE(3292)] = 100768, - [SMALL_STATE(3293)] = 100805, - [SMALL_STATE(3294)] = 100842, - [SMALL_STATE(3295)] = 100879, - [SMALL_STATE(3296)] = 100900, - [SMALL_STATE(3297)] = 100921, - [SMALL_STATE(3298)] = 100944, - [SMALL_STATE(3299)] = 100981, - [SMALL_STATE(3300)] = 101018, - [SMALL_STATE(3301)] = 101039, - [SMALL_STATE(3302)] = 101060, - [SMALL_STATE(3303)] = 101087, - [SMALL_STATE(3304)] = 101116, - [SMALL_STATE(3305)] = 101137, - [SMALL_STATE(3306)] = 101158, - [SMALL_STATE(3307)] = 101179, - [SMALL_STATE(3308)] = 101200, - [SMALL_STATE(3309)] = 101221, - [SMALL_STATE(3310)] = 101242, - [SMALL_STATE(3311)] = 101265, - [SMALL_STATE(3312)] = 101288, - [SMALL_STATE(3313)] = 101315, - [SMALL_STATE(3314)] = 101346, - [SMALL_STATE(3315)] = 101367, - [SMALL_STATE(3316)] = 101406, - [SMALL_STATE(3317)] = 101445, - [SMALL_STATE(3318)] = 101466, - [SMALL_STATE(3319)] = 101487, - [SMALL_STATE(3320)] = 101508, - [SMALL_STATE(3321)] = 101531, - [SMALL_STATE(3322)] = 101554, - [SMALL_STATE(3323)] = 101591, - [SMALL_STATE(3324)] = 101628, - [SMALL_STATE(3325)] = 101665, - [SMALL_STATE(3326)] = 101686, - [SMALL_STATE(3327)] = 101707, - [SMALL_STATE(3328)] = 101734, - [SMALL_STATE(3329)] = 101757, - [SMALL_STATE(3330)] = 101778, - [SMALL_STATE(3331)] = 101799, - [SMALL_STATE(3332)] = 101826, - [SMALL_STATE(3333)] = 101849, - [SMALL_STATE(3334)] = 101872, - [SMALL_STATE(3335)] = 101895, - [SMALL_STATE(3336)] = 101918, - [SMALL_STATE(3337)] = 101941, - [SMALL_STATE(3338)] = 101964, - [SMALL_STATE(3339)] = 101987, - [SMALL_STATE(3340)] = 102010, - [SMALL_STATE(3341)] = 102031, - [SMALL_STATE(3342)] = 102052, - [SMALL_STATE(3343)] = 102079, - [SMALL_STATE(3344)] = 102102, - [SMALL_STATE(3345)] = 102127, - [SMALL_STATE(3346)] = 102148, - [SMALL_STATE(3347)] = 102169, - [SMALL_STATE(3348)] = 102192, - [SMALL_STATE(3349)] = 102213, - [SMALL_STATE(3350)] = 102234, - [SMALL_STATE(3351)] = 102257, - [SMALL_STATE(3352)] = 102280, - [SMALL_STATE(3353)] = 102301, - [SMALL_STATE(3354)] = 102328, - [SMALL_STATE(3355)] = 102351, - [SMALL_STATE(3356)] = 102374, - [SMALL_STATE(3357)] = 102401, - [SMALL_STATE(3358)] = 102428, - [SMALL_STATE(3359)] = 102455, - [SMALL_STATE(3360)] = 102482, - [SMALL_STATE(3361)] = 102505, - [SMALL_STATE(3362)] = 102532, - [SMALL_STATE(3363)] = 102559, - [SMALL_STATE(3364)] = 102586, - [SMALL_STATE(3365)] = 102613, - [SMALL_STATE(3366)] = 102640, - [SMALL_STATE(3367)] = 102667, - [SMALL_STATE(3368)] = 102694, - [SMALL_STATE(3369)] = 102721, - [SMALL_STATE(3370)] = 102760, - [SMALL_STATE(3371)] = 102781, - [SMALL_STATE(3372)] = 102802, - [SMALL_STATE(3373)] = 102823, - [SMALL_STATE(3374)] = 102844, - [SMALL_STATE(3375)] = 102867, - [SMALL_STATE(3376)] = 102890, - [SMALL_STATE(3377)] = 102917, - [SMALL_STATE(3378)] = 102940, - [SMALL_STATE(3379)] = 102961, - [SMALL_STATE(3380)] = 102998, - [SMALL_STATE(3381)] = 103025, - [SMALL_STATE(3382)] = 103046, - [SMALL_STATE(3383)] = 103083, - [SMALL_STATE(3384)] = 103120, - [SMALL_STATE(3385)] = 103157, - [SMALL_STATE(3386)] = 103194, - [SMALL_STATE(3387)] = 103217, - [SMALL_STATE(3388)] = 103240, - [SMALL_STATE(3389)] = 103261, - [SMALL_STATE(3390)] = 103282, - [SMALL_STATE(3391)] = 103305, - [SMALL_STATE(3392)] = 103344, - [SMALL_STATE(3393)] = 103367, - [SMALL_STATE(3394)] = 103390, - [SMALL_STATE(3395)] = 103417, - [SMALL_STATE(3396)] = 103443, - [SMALL_STATE(3397)] = 103477, - [SMALL_STATE(3398)] = 103499, - [SMALL_STATE(3399)] = 103525, - [SMALL_STATE(3400)] = 103549, - [SMALL_STATE(3401)] = 103571, - [SMALL_STATE(3402)] = 103597, - [SMALL_STATE(3403)] = 103623, - [SMALL_STATE(3404)] = 103647, - [SMALL_STATE(3405)] = 103669, - [SMALL_STATE(3406)] = 103693, - [SMALL_STATE(3407)] = 103715, - [SMALL_STATE(3408)] = 103737, - [SMALL_STATE(3409)] = 103773, - [SMALL_STATE(3410)] = 103805, - [SMALL_STATE(3411)] = 103831, - [SMALL_STATE(3412)] = 103863, - [SMALL_STATE(3413)] = 103891, - [SMALL_STATE(3414)] = 103915, - [SMALL_STATE(3415)] = 103945, - [SMALL_STATE(3416)] = 103971, - [SMALL_STATE(3417)] = 103995, - [SMALL_STATE(3418)] = 104021, - [SMALL_STATE(3419)] = 104045, - [SMALL_STATE(3420)] = 104077, - [SMALL_STATE(3421)] = 104103, - [SMALL_STATE(3422)] = 104125, - [SMALL_STATE(3423)] = 104149, - [SMALL_STATE(3424)] = 104181, - [SMALL_STATE(3425)] = 104203, - [SMALL_STATE(3426)] = 104227, - [SMALL_STATE(3427)] = 104249, - [SMALL_STATE(3428)] = 104285, - [SMALL_STATE(3429)] = 104309, - [SMALL_STATE(3430)] = 104335, - [SMALL_STATE(3431)] = 104361, - [SMALL_STATE(3432)] = 104391, - [SMALL_STATE(3433)] = 104415, - [SMALL_STATE(3434)] = 104447, - [SMALL_STATE(3435)] = 104481, - [SMALL_STATE(3436)] = 104507, - [SMALL_STATE(3437)] = 104533, - [SMALL_STATE(3438)] = 104569, - [SMALL_STATE(3439)] = 104603, - [SMALL_STATE(3440)] = 104629, - [SMALL_STATE(3441)] = 104665, - [SMALL_STATE(3442)] = 104698, - [SMALL_STATE(3443)] = 104729, - [SMALL_STATE(3444)] = 104760, - [SMALL_STATE(3445)] = 104791, - [SMALL_STATE(3446)] = 104822, - [SMALL_STATE(3447)] = 104853, - [SMALL_STATE(3448)] = 104884, - [SMALL_STATE(3449)] = 104915, - [SMALL_STATE(3450)] = 104946, - [SMALL_STATE(3451)] = 104971, - [SMALL_STATE(3452)] = 104994, - [SMALL_STATE(3453)] = 105029, - [SMALL_STATE(3454)] = 105050, - [SMALL_STATE(3455)] = 105071, - [SMALL_STATE(3456)] = 105104, - [SMALL_STATE(3457)] = 105127, - [SMALL_STATE(3458)] = 105160, - [SMALL_STATE(3459)] = 105185, - [SMALL_STATE(3460)] = 105218, - [SMALL_STATE(3461)] = 105251, - [SMALL_STATE(3462)] = 105282, - [SMALL_STATE(3463)] = 105313, - [SMALL_STATE(3464)] = 105336, - [SMALL_STATE(3465)] = 105369, - [SMALL_STATE(3466)] = 105402, - [SMALL_STATE(3467)] = 105435, - [SMALL_STATE(3468)] = 105468, - [SMALL_STATE(3469)] = 105499, - [SMALL_STATE(3470)] = 105530, - [SMALL_STATE(3471)] = 105551, - [SMALL_STATE(3472)] = 105584, - [SMALL_STATE(3473)] = 105617, - [SMALL_STATE(3474)] = 105648, - [SMALL_STATE(3475)] = 105671, - [SMALL_STATE(3476)] = 105694, - [SMALL_STATE(3477)] = 105729, - [SMALL_STATE(3478)] = 105762, - [SMALL_STATE(3479)] = 105793, - [SMALL_STATE(3480)] = 105826, - [SMALL_STATE(3481)] = 105851, - [SMALL_STATE(3482)] = 105884, - [SMALL_STATE(3483)] = 105917, - [SMALL_STATE(3484)] = 105950, - [SMALL_STATE(3485)] = 105981, - [SMALL_STATE(3486)] = 106004, - [SMALL_STATE(3487)] = 106037, - [SMALL_STATE(3488)] = 106058, - [SMALL_STATE(3489)] = 106079, - [SMALL_STATE(3490)] = 106110, - [SMALL_STATE(3491)] = 106135, - [SMALL_STATE(3492)] = 106158, - [SMALL_STATE(3493)] = 106191, - [SMALL_STATE(3494)] = 106224, - [SMALL_STATE(3495)] = 106255, - [SMALL_STATE(3496)] = 106284, - [SMALL_STATE(3497)] = 106305, - [SMALL_STATE(3498)] = 106336, - [SMALL_STATE(3499)] = 106369, - [SMALL_STATE(3500)] = 106390, - [SMALL_STATE(3501)] = 106423, - [SMALL_STATE(3502)] = 106456, - [SMALL_STATE(3503)] = 106477, - [SMALL_STATE(3504)] = 106508, - [SMALL_STATE(3505)] = 106529, - [SMALL_STATE(3506)] = 106554, - [SMALL_STATE(3507)] = 106587, - [SMALL_STATE(3508)] = 106620, - [SMALL_STATE(3509)] = 106645, - [SMALL_STATE(3510)] = 106676, - [SMALL_STATE(3511)] = 106697, - [SMALL_STATE(3512)] = 106718, - [SMALL_STATE(3513)] = 106751, - [SMALL_STATE(3514)] = 106784, - [SMALL_STATE(3515)] = 106815, - [SMALL_STATE(3516)] = 106848, - [SMALL_STATE(3517)] = 106881, - [SMALL_STATE(3518)] = 106906, - [SMALL_STATE(3519)] = 106937, - [SMALL_STATE(3520)] = 106970, - [SMALL_STATE(3521)] = 106991, - [SMALL_STATE(3522)] = 107024, - [SMALL_STATE(3523)] = 107057, - [SMALL_STATE(3524)] = 107090, - [SMALL_STATE(3525)] = 107121, - [SMALL_STATE(3526)] = 107152, - [SMALL_STATE(3527)] = 107185, - [SMALL_STATE(3528)] = 107218, - [SMALL_STATE(3529)] = 107249, - [SMALL_STATE(3530)] = 107280, - [SMALL_STATE(3531)] = 107313, - [SMALL_STATE(3532)] = 107338, - [SMALL_STATE(3533)] = 107371, - [SMALL_STATE(3534)] = 107392, - [SMALL_STATE(3535)] = 107420, - [SMALL_STATE(3536)] = 107448, - [SMALL_STATE(3537)] = 107470, - [SMALL_STATE(3538)] = 107498, - [SMALL_STATE(3539)] = 107524, - [SMALL_STATE(3540)] = 107544, - [SMALL_STATE(3541)] = 107570, - [SMALL_STATE(3542)] = 107598, - [SMALL_STATE(3543)] = 107626, - [SMALL_STATE(3544)] = 107654, - [SMALL_STATE(3545)] = 107682, - [SMALL_STATE(3546)] = 107710, - [SMALL_STATE(3547)] = 107738, - [SMALL_STATE(3548)] = 107766, - [SMALL_STATE(3549)] = 107794, - [SMALL_STATE(3550)] = 107822, - [SMALL_STATE(3551)] = 107852, - [SMALL_STATE(3552)] = 107880, - [SMALL_STATE(3553)] = 107910, - [SMALL_STATE(3554)] = 107938, - [SMALL_STATE(3555)] = 107958, - [SMALL_STATE(3556)] = 107986, - [SMALL_STATE(3557)] = 108014, - [SMALL_STATE(3558)] = 108042, - [SMALL_STATE(3559)] = 108062, - [SMALL_STATE(3560)] = 108090, - [SMALL_STATE(3561)] = 108118, - [SMALL_STATE(3562)] = 108146, - [SMALL_STATE(3563)] = 108174, - [SMALL_STATE(3564)] = 108192, - [SMALL_STATE(3565)] = 108220, - [SMALL_STATE(3566)] = 108240, - [SMALL_STATE(3567)] = 108268, - [SMALL_STATE(3568)] = 108296, - [SMALL_STATE(3569)] = 108318, - [SMALL_STATE(3570)] = 108342, - [SMALL_STATE(3571)] = 108362, - [SMALL_STATE(3572)] = 108390, - [SMALL_STATE(3573)] = 108418, - [SMALL_STATE(3574)] = 108444, - [SMALL_STATE(3575)] = 108464, - [SMALL_STATE(3576)] = 108484, - [SMALL_STATE(3577)] = 108504, - [SMALL_STATE(3578)] = 108532, - [SMALL_STATE(3579)] = 108560, - [SMALL_STATE(3580)] = 108588, - [SMALL_STATE(3581)] = 108616, - [SMALL_STATE(3582)] = 108644, - [SMALL_STATE(3583)] = 108672, - [SMALL_STATE(3584)] = 108696, - [SMALL_STATE(3585)] = 108724, - [SMALL_STATE(3586)] = 108748, - [SMALL_STATE(3587)] = 108768, - [SMALL_STATE(3588)] = 108796, - [SMALL_STATE(3589)] = 108818, - [SMALL_STATE(3590)] = 108846, - [SMALL_STATE(3591)] = 108874, - [SMALL_STATE(3592)] = 108902, - [SMALL_STATE(3593)] = 108924, - [SMALL_STATE(3594)] = 108946, - [SMALL_STATE(3595)] = 108966, - [SMALL_STATE(3596)] = 108994, - [SMALL_STATE(3597)] = 109022, - [SMALL_STATE(3598)] = 109044, - [SMALL_STATE(3599)] = 109066, - [SMALL_STATE(3600)] = 109094, - [SMALL_STATE(3601)] = 109112, - [SMALL_STATE(3602)] = 109136, - [SMALL_STATE(3603)] = 109156, - [SMALL_STATE(3604)] = 109182, - [SMALL_STATE(3605)] = 109206, - [SMALL_STATE(3606)] = 109234, - [SMALL_STATE(3607)] = 109262, - [SMALL_STATE(3608)] = 109290, - [SMALL_STATE(3609)] = 109318, - [SMALL_STATE(3610)] = 109338, - [SMALL_STATE(3611)] = 109358, - [SMALL_STATE(3612)] = 109378, - [SMALL_STATE(3613)] = 109400, - [SMALL_STATE(3614)] = 109424, - [SMALL_STATE(3615)] = 109444, - [SMALL_STATE(3616)] = 109472, - [SMALL_STATE(3617)] = 109491, - [SMALL_STATE(3618)] = 109518, - [SMALL_STATE(3619)] = 109541, - [SMALL_STATE(3620)] = 109566, - [SMALL_STATE(3621)] = 109595, - [SMALL_STATE(3622)] = 109614, - [SMALL_STATE(3623)] = 109639, - [SMALL_STATE(3624)] = 109666, - [SMALL_STATE(3625)] = 109691, - [SMALL_STATE(3626)] = 109716, - [SMALL_STATE(3627)] = 109735, - [SMALL_STATE(3628)] = 109760, - [SMALL_STATE(3629)] = 109785, - [SMALL_STATE(3630)] = 109810, - [SMALL_STATE(3631)] = 109829, - [SMALL_STATE(3632)] = 109852, - [SMALL_STATE(3633)] = 109871, - [SMALL_STATE(3634)] = 109890, - [SMALL_STATE(3635)] = 109913, - [SMALL_STATE(3636)] = 109938, - [SMALL_STATE(3637)] = 109959, - [SMALL_STATE(3638)] = 109978, - [SMALL_STATE(3639)] = 109997, - [SMALL_STATE(3640)] = 110022, - [SMALL_STATE(3641)] = 110053, - [SMALL_STATE(3642)] = 110078, - [SMALL_STATE(3643)] = 110103, - [SMALL_STATE(3644)] = 110126, - [SMALL_STATE(3645)] = 110147, - [SMALL_STATE(3646)] = 110172, - [SMALL_STATE(3647)] = 110191, - [SMALL_STATE(3648)] = 110218, - [SMALL_STATE(3649)] = 110245, - [SMALL_STATE(3650)] = 110270, - [SMALL_STATE(3651)] = 110291, - [SMALL_STATE(3652)] = 110318, - [SMALL_STATE(3653)] = 110337, - [SMALL_STATE(3654)] = 110360, - [SMALL_STATE(3655)] = 110385, - [SMALL_STATE(3656)] = 110410, - [SMALL_STATE(3657)] = 110429, - [SMALL_STATE(3658)] = 110456, - [SMALL_STATE(3659)] = 110475, - [SMALL_STATE(3660)] = 110500, - [SMALL_STATE(3661)] = 110521, - [SMALL_STATE(3662)] = 110540, - [SMALL_STATE(3663)] = 110561, - [SMALL_STATE(3664)] = 110582, - [SMALL_STATE(3665)] = 110603, - [SMALL_STATE(3666)] = 110629, - [SMALL_STATE(3667)] = 110657, - [SMALL_STATE(3668)] = 110677, - [SMALL_STATE(3669)] = 110705, - [SMALL_STATE(3670)] = 110727, - [SMALL_STATE(3671)] = 110753, - [SMALL_STATE(3672)] = 110779, - [SMALL_STATE(3673)] = 110803, - [SMALL_STATE(3674)] = 110831, - [SMALL_STATE(3675)] = 110859, - [SMALL_STATE(3676)] = 110877, - [SMALL_STATE(3677)] = 110903, - [SMALL_STATE(3678)] = 110931, - [SMALL_STATE(3679)] = 110957, - [SMALL_STATE(3680)] = 110977, - [SMALL_STATE(3681)] = 110997, - [SMALL_STATE(3682)] = 111017, - [SMALL_STATE(3683)] = 111043, - [SMALL_STATE(3684)] = 111065, - [SMALL_STATE(3685)] = 111089, - [SMALL_STATE(3686)] = 111117, - [SMALL_STATE(3687)] = 111141, - [SMALL_STATE(3688)] = 111159, - [SMALL_STATE(3689)] = 111187, - [SMALL_STATE(3690)] = 111215, - [SMALL_STATE(3691)] = 111243, - [SMALL_STATE(3692)] = 111265, - [SMALL_STATE(3693)] = 111293, - [SMALL_STATE(3694)] = 111319, - [SMALL_STATE(3695)] = 111347, - [SMALL_STATE(3696)] = 111369, - [SMALL_STATE(3697)] = 111397, - [SMALL_STATE(3698)] = 111425, - [SMALL_STATE(3699)] = 111447, - [SMALL_STATE(3700)] = 111475, - [SMALL_STATE(3701)] = 111501, - [SMALL_STATE(3702)] = 111523, - [SMALL_STATE(3703)] = 111551, - [SMALL_STATE(3704)] = 111573, - [SMALL_STATE(3705)] = 111591, - [SMALL_STATE(3706)] = 111619, - [SMALL_STATE(3707)] = 111647, - [SMALL_STATE(3708)] = 111673, - [SMALL_STATE(3709)] = 111701, - [SMALL_STATE(3710)] = 111729, - [SMALL_STATE(3711)] = 111753, - [SMALL_STATE(3712)] = 111781, - [SMALL_STATE(3713)] = 111807, - [SMALL_STATE(3714)] = 111833, - [SMALL_STATE(3715)] = 111859, - [SMALL_STATE(3716)] = 111885, - [SMALL_STATE(3717)] = 111913, - [SMALL_STATE(3718)] = 111933, - [SMALL_STATE(3719)] = 111959, - [SMALL_STATE(3720)] = 111981, - [SMALL_STATE(3721)] = 112009, - [SMALL_STATE(3722)] = 112037, - [SMALL_STATE(3723)] = 112063, - [SMALL_STATE(3724)] = 112091, - [SMALL_STATE(3725)] = 112115, - [SMALL_STATE(3726)] = 112137, - [SMALL_STATE(3727)] = 112165, - [SMALL_STATE(3728)] = 112193, - [SMALL_STATE(3729)] = 112213, - [SMALL_STATE(3730)] = 112237, - [SMALL_STATE(3731)] = 112265, - [SMALL_STATE(3732)] = 112291, - [SMALL_STATE(3733)] = 112319, - [SMALL_STATE(3734)] = 112347, - [SMALL_STATE(3735)] = 112371, - [SMALL_STATE(3736)] = 112389, - [SMALL_STATE(3737)] = 112407, - [SMALL_STATE(3738)] = 112435, - [SMALL_STATE(3739)] = 112463, - [SMALL_STATE(3740)] = 112491, - [SMALL_STATE(3741)] = 112519, - [SMALL_STATE(3742)] = 112537, - [SMALL_STATE(3743)] = 112563, - [SMALL_STATE(3744)] = 112581, - [SMALL_STATE(3745)] = 112603, - [SMALL_STATE(3746)] = 112631, - [SMALL_STATE(3747)] = 112659, - [SMALL_STATE(3748)] = 112677, - [SMALL_STATE(3749)] = 112697, - [SMALL_STATE(3750)] = 112719, - [SMALL_STATE(3751)] = 112745, - [SMALL_STATE(3752)] = 112767, - [SMALL_STATE(3753)] = 112787, - [SMALL_STATE(3754)] = 112815, - [SMALL_STATE(3755)] = 112839, - [SMALL_STATE(3756)] = 112865, - [SMALL_STATE(3757)] = 112889, - [SMALL_STATE(3758)] = 112917, - [SMALL_STATE(3759)] = 112935, - [SMALL_STATE(3760)] = 112961, - [SMALL_STATE(3761)] = 112989, - [SMALL_STATE(3762)] = 113017, - [SMALL_STATE(3763)] = 113043, - [SMALL_STATE(3764)] = 113071, - [SMALL_STATE(3765)] = 113089, - [SMALL_STATE(3766)] = 113117, - [SMALL_STATE(3767)] = 113135, - [SMALL_STATE(3768)] = 113163, - [SMALL_STATE(3769)] = 113191, - [SMALL_STATE(3770)] = 113219, - [SMALL_STATE(3771)] = 113237, - [SMALL_STATE(3772)] = 113265, - [SMALL_STATE(3773)] = 113283, - [SMALL_STATE(3774)] = 113311, - [SMALL_STATE(3775)] = 113336, - [SMALL_STATE(3776)] = 113357, - [SMALL_STATE(3777)] = 113378, - [SMALL_STATE(3778)] = 113397, - [SMALL_STATE(3779)] = 113418, - [SMALL_STATE(3780)] = 113439, - [SMALL_STATE(3781)] = 113464, - [SMALL_STATE(3782)] = 113489, - [SMALL_STATE(3783)] = 113514, - [SMALL_STATE(3784)] = 113535, - [SMALL_STATE(3785)] = 113558, - [SMALL_STATE(3786)] = 113581, - [SMALL_STATE(3787)] = 113604, - [SMALL_STATE(3788)] = 113625, - [SMALL_STATE(3789)] = 113644, - [SMALL_STATE(3790)] = 113663, - [SMALL_STATE(3791)] = 113686, - [SMALL_STATE(3792)] = 113707, - [SMALL_STATE(3793)] = 113728, - [SMALL_STATE(3794)] = 113751, - [SMALL_STATE(3795)] = 113776, - [SMALL_STATE(3796)] = 113801, - [SMALL_STATE(3797)] = 113826, - [SMALL_STATE(3798)] = 113845, - [SMALL_STATE(3799)] = 113870, - [SMALL_STATE(3800)] = 113893, - [SMALL_STATE(3801)] = 113916, - [SMALL_STATE(3802)] = 113939, - [SMALL_STATE(3803)] = 113964, - [SMALL_STATE(3804)] = 113985, - [SMALL_STATE(3805)] = 114006, - [SMALL_STATE(3806)] = 114027, - [SMALL_STATE(3807)] = 114046, - [SMALL_STATE(3808)] = 114065, - [SMALL_STATE(3809)] = 114084, - [SMALL_STATE(3810)] = 114109, - [SMALL_STATE(3811)] = 114132, - [SMALL_STATE(3812)] = 114157, - [SMALL_STATE(3813)] = 114182, - [SMALL_STATE(3814)] = 114205, - [SMALL_STATE(3815)] = 114228, - [SMALL_STATE(3816)] = 114249, - [SMALL_STATE(3817)] = 114274, - [SMALL_STATE(3818)] = 114299, - [SMALL_STATE(3819)] = 114324, - [SMALL_STATE(3820)] = 114349, - [SMALL_STATE(3821)] = 114372, - [SMALL_STATE(3822)] = 114395, - [SMALL_STATE(3823)] = 114418, - [SMALL_STATE(3824)] = 114441, - [SMALL_STATE(3825)] = 114464, - [SMALL_STATE(3826)] = 114489, - [SMALL_STATE(3827)] = 114512, - [SMALL_STATE(3828)] = 114535, - [SMALL_STATE(3829)] = 114560, - [SMALL_STATE(3830)] = 114585, - [SMALL_STATE(3831)] = 114608, - [SMALL_STATE(3832)] = 114627, - [SMALL_STATE(3833)] = 114648, - [SMALL_STATE(3834)] = 114667, - [SMALL_STATE(3835)] = 114690, - [SMALL_STATE(3836)] = 114713, - [SMALL_STATE(3837)] = 114728, - [SMALL_STATE(3838)] = 114747, - [SMALL_STATE(3839)] = 114768, - [SMALL_STATE(3840)] = 114783, - [SMALL_STATE(3841)] = 114798, - [SMALL_STATE(3842)] = 114819, - [SMALL_STATE(3843)] = 114840, - [SMALL_STATE(3844)] = 114855, - [SMALL_STATE(3845)] = 114870, - [SMALL_STATE(3846)] = 114885, - [SMALL_STATE(3847)] = 114906, - [SMALL_STATE(3848)] = 114927, - [SMALL_STATE(3849)] = 114952, - [SMALL_STATE(3850)] = 114971, - [SMALL_STATE(3851)] = 114990, - [SMALL_STATE(3852)] = 115009, - [SMALL_STATE(3853)] = 115032, - [SMALL_STATE(3854)] = 115053, - [SMALL_STATE(3855)] = 115076, - [SMALL_STATE(3856)] = 115101, - [SMALL_STATE(3857)] = 115124, - [SMALL_STATE(3858)] = 115147, - [SMALL_STATE(3859)] = 115170, - [SMALL_STATE(3860)] = 115193, - [SMALL_STATE(3861)] = 115212, - [SMALL_STATE(3862)] = 115235, - [SMALL_STATE(3863)] = 115258, - [SMALL_STATE(3864)] = 115281, - [SMALL_STATE(3865)] = 115304, - [SMALL_STATE(3866)] = 115327, - [SMALL_STATE(3867)] = 115350, - [SMALL_STATE(3868)] = 115375, - [SMALL_STATE(3869)] = 115400, - [SMALL_STATE(3870)] = 115423, - [SMALL_STATE(3871)] = 115446, - [SMALL_STATE(3872)] = 115469, - [SMALL_STATE(3873)] = 115492, - [SMALL_STATE(3874)] = 115515, - [SMALL_STATE(3875)] = 115536, - [SMALL_STATE(3876)] = 115559, - [SMALL_STATE(3877)] = 115582, - [SMALL_STATE(3878)] = 115605, - [SMALL_STATE(3879)] = 115628, - [SMALL_STATE(3880)] = 115649, - [SMALL_STATE(3881)] = 115672, - [SMALL_STATE(3882)] = 115695, - [SMALL_STATE(3883)] = 115716, - [SMALL_STATE(3884)] = 115735, - [SMALL_STATE(3885)] = 115756, - [SMALL_STATE(3886)] = 115777, - [SMALL_STATE(3887)] = 115798, - [SMALL_STATE(3888)] = 115817, - [SMALL_STATE(3889)] = 115838, - [SMALL_STATE(3890)] = 115857, - [SMALL_STATE(3891)] = 115880, - [SMALL_STATE(3892)] = 115899, - [SMALL_STATE(3893)] = 115922, - [SMALL_STATE(3894)] = 115945, - [SMALL_STATE(3895)] = 115966, - [SMALL_STATE(3896)] = 115983, - [SMALL_STATE(3897)] = 116000, - [SMALL_STATE(3898)] = 116017, - [SMALL_STATE(3899)] = 116036, - [SMALL_STATE(3900)] = 116057, - [SMALL_STATE(3901)] = 116078, - [SMALL_STATE(3902)] = 116099, - [SMALL_STATE(3903)] = 116120, - [SMALL_STATE(3904)] = 116141, - [SMALL_STATE(3905)] = 116162, - [SMALL_STATE(3906)] = 116183, - [SMALL_STATE(3907)] = 116204, - [SMALL_STATE(3908)] = 116223, - [SMALL_STATE(3909)] = 116244, - [SMALL_STATE(3910)] = 116263, - [SMALL_STATE(3911)] = 116288, - [SMALL_STATE(3912)] = 116313, - [SMALL_STATE(3913)] = 116338, - [SMALL_STATE(3914)] = 116357, - [SMALL_STATE(3915)] = 116380, - [SMALL_STATE(3916)] = 116405, - [SMALL_STATE(3917)] = 116430, - [SMALL_STATE(3918)] = 116455, - [SMALL_STATE(3919)] = 116476, - [SMALL_STATE(3920)] = 116499, - [SMALL_STATE(3921)] = 116524, - [SMALL_STATE(3922)] = 116549, - [SMALL_STATE(3923)] = 116574, - [SMALL_STATE(3924)] = 116597, - [SMALL_STATE(3925)] = 116620, - [SMALL_STATE(3926)] = 116637, - [SMALL_STATE(3927)] = 116654, - [SMALL_STATE(3928)] = 116675, - [SMALL_STATE(3929)] = 116698, - [SMALL_STATE(3930)] = 116718, - [SMALL_STATE(3931)] = 116734, - [SMALL_STATE(3932)] = 116748, - [SMALL_STATE(3933)] = 116764, - [SMALL_STATE(3934)] = 116780, - [SMALL_STATE(3935)] = 116796, - [SMALL_STATE(3936)] = 116818, - [SMALL_STATE(3937)] = 116832, - [SMALL_STATE(3938)] = 116848, - [SMALL_STATE(3939)] = 116864, - [SMALL_STATE(3940)] = 116878, - [SMALL_STATE(3941)] = 116900, - [SMALL_STATE(3942)] = 116916, - [SMALL_STATE(3943)] = 116934, - [SMALL_STATE(3944)] = 116952, - [SMALL_STATE(3945)] = 116968, - [SMALL_STATE(3946)] = 116984, - [SMALL_STATE(3947)] = 117004, - [SMALL_STATE(3948)] = 117020, - [SMALL_STATE(3949)] = 117040, - [SMALL_STATE(3950)] = 117060, - [SMALL_STATE(3951)] = 117080, - [SMALL_STATE(3952)] = 117100, - [SMALL_STATE(3953)] = 117122, - [SMALL_STATE(3954)] = 117144, - [SMALL_STATE(3955)] = 117166, - [SMALL_STATE(3956)] = 117182, - [SMALL_STATE(3957)] = 117204, - [SMALL_STATE(3958)] = 117224, - [SMALL_STATE(3959)] = 117246, - [SMALL_STATE(3960)] = 117264, - [SMALL_STATE(3961)] = 117284, - [SMALL_STATE(3962)] = 117304, - [SMALL_STATE(3963)] = 117326, - [SMALL_STATE(3964)] = 117348, - [SMALL_STATE(3965)] = 117364, - [SMALL_STATE(3966)] = 117386, - [SMALL_STATE(3967)] = 117408, - [SMALL_STATE(3968)] = 117428, - [SMALL_STATE(3969)] = 117446, - [SMALL_STATE(3970)] = 117464, - [SMALL_STATE(3971)] = 117484, - [SMALL_STATE(3972)] = 117506, - [SMALL_STATE(3973)] = 117526, - [SMALL_STATE(3974)] = 117548, - [SMALL_STATE(3975)] = 117570, - [SMALL_STATE(3976)] = 117592, - [SMALL_STATE(3977)] = 117608, - [SMALL_STATE(3978)] = 117630, - [SMALL_STATE(3979)] = 117646, - [SMALL_STATE(3980)] = 117666, - [SMALL_STATE(3981)] = 117688, - [SMALL_STATE(3982)] = 117704, - [SMALL_STATE(3983)] = 117722, - [SMALL_STATE(3984)] = 117740, - [SMALL_STATE(3985)] = 117762, - [SMALL_STATE(3986)] = 117778, - [SMALL_STATE(3987)] = 117794, - [SMALL_STATE(3988)] = 117814, - [SMALL_STATE(3989)] = 117836, - [SMALL_STATE(3990)] = 117854, - [SMALL_STATE(3991)] = 117868, - [SMALL_STATE(3992)] = 117884, - [SMALL_STATE(3993)] = 117902, - [SMALL_STATE(3994)] = 117924, - [SMALL_STATE(3995)] = 117944, - [SMALL_STATE(3996)] = 117966, - [SMALL_STATE(3997)] = 117984, - [SMALL_STATE(3998)] = 118004, - [SMALL_STATE(3999)] = 118026, - [SMALL_STATE(4000)] = 118042, - [SMALL_STATE(4001)] = 118062, - [SMALL_STATE(4002)] = 118076, - [SMALL_STATE(4003)] = 118098, - [SMALL_STATE(4004)] = 118118, - [SMALL_STATE(4005)] = 118138, - [SMALL_STATE(4006)] = 118158, - [SMALL_STATE(4007)] = 118180, - [SMALL_STATE(4008)] = 118200, - [SMALL_STATE(4009)] = 118220, - [SMALL_STATE(4010)] = 118240, - [SMALL_STATE(4011)] = 118260, - [SMALL_STATE(4012)] = 118278, - [SMALL_STATE(4013)] = 118296, - [SMALL_STATE(4014)] = 118316, - [SMALL_STATE(4015)] = 118336, - [SMALL_STATE(4016)] = 118356, - [SMALL_STATE(4017)] = 118376, - [SMALL_STATE(4018)] = 118396, - [SMALL_STATE(4019)] = 118416, - [SMALL_STATE(4020)] = 118436, - [SMALL_STATE(4021)] = 118456, - [SMALL_STATE(4022)] = 118478, - [SMALL_STATE(4023)] = 118494, - [SMALL_STATE(4024)] = 118516, - [SMALL_STATE(4025)] = 118538, - [SMALL_STATE(4026)] = 118560, - [SMALL_STATE(4027)] = 118580, - [SMALL_STATE(4028)] = 118602, - [SMALL_STATE(4029)] = 118618, - [SMALL_STATE(4030)] = 118640, - [SMALL_STATE(4031)] = 118656, - [SMALL_STATE(4032)] = 118678, - [SMALL_STATE(4033)] = 118694, - [SMALL_STATE(4034)] = 118714, - [SMALL_STATE(4035)] = 118734, - [SMALL_STATE(4036)] = 118754, - [SMALL_STATE(4037)] = 118776, - [SMALL_STATE(4038)] = 118792, - [SMALL_STATE(4039)] = 118812, - [SMALL_STATE(4040)] = 118834, - [SMALL_STATE(4041)] = 118854, - [SMALL_STATE(4042)] = 118876, - [SMALL_STATE(4043)] = 118894, - [SMALL_STATE(4044)] = 118914, - [SMALL_STATE(4045)] = 118934, - [SMALL_STATE(4046)] = 118954, - [SMALL_STATE(4047)] = 118970, - [SMALL_STATE(4048)] = 118988, - [SMALL_STATE(4049)] = 119008, - [SMALL_STATE(4050)] = 119026, - [SMALL_STATE(4051)] = 119046, - [SMALL_STATE(4052)] = 119062, - [SMALL_STATE(4053)] = 119082, - [SMALL_STATE(4054)] = 119098, - [SMALL_STATE(4055)] = 119118, - [SMALL_STATE(4056)] = 119140, - [SMALL_STATE(4057)] = 119158, - [SMALL_STATE(4058)] = 119178, - [SMALL_STATE(4059)] = 119200, - [SMALL_STATE(4060)] = 119220, - [SMALL_STATE(4061)] = 119242, - [SMALL_STATE(4062)] = 119260, - [SMALL_STATE(4063)] = 119278, - [SMALL_STATE(4064)] = 119296, - [SMALL_STATE(4065)] = 119318, - [SMALL_STATE(4066)] = 119336, - [SMALL_STATE(4067)] = 119358, - [SMALL_STATE(4068)] = 119378, - [SMALL_STATE(4069)] = 119394, - [SMALL_STATE(4070)] = 119414, - [SMALL_STATE(4071)] = 119434, - [SMALL_STATE(4072)] = 119452, - [SMALL_STATE(4073)] = 119472, - [SMALL_STATE(4074)] = 119490, - [SMALL_STATE(4075)] = 119506, - [SMALL_STATE(4076)] = 119528, - [SMALL_STATE(4077)] = 119542, - [SMALL_STATE(4078)] = 119558, - [SMALL_STATE(4079)] = 119576, - [SMALL_STATE(4080)] = 119596, - [SMALL_STATE(4081)] = 119616, - [SMALL_STATE(4082)] = 119636, - [SMALL_STATE(4083)] = 119650, - [SMALL_STATE(4084)] = 119666, - [SMALL_STATE(4085)] = 119688, - [SMALL_STATE(4086)] = 119704, - [SMALL_STATE(4087)] = 119722, - [SMALL_STATE(4088)] = 119740, - [SMALL_STATE(4089)] = 119758, - [SMALL_STATE(4090)] = 119774, - [SMALL_STATE(4091)] = 119788, - [SMALL_STATE(4092)] = 119806, - [SMALL_STATE(4093)] = 119828, - [SMALL_STATE(4094)] = 119848, - [SMALL_STATE(4095)] = 119870, - [SMALL_STATE(4096)] = 119886, - [SMALL_STATE(4097)] = 119905, - [SMALL_STATE(4098)] = 119920, - [SMALL_STATE(4099)] = 119935, - [SMALL_STATE(4100)] = 119950, - [SMALL_STATE(4101)] = 119967, - [SMALL_STATE(4102)] = 119980, - [SMALL_STATE(4103)] = 119993, - [SMALL_STATE(4104)] = 120006, - [SMALL_STATE(4105)] = 120023, - [SMALL_STATE(4106)] = 120040, - [SMALL_STATE(4107)] = 120059, - [SMALL_STATE(4108)] = 120078, - [SMALL_STATE(4109)] = 120091, - [SMALL_STATE(4110)] = 120110, - [SMALL_STATE(4111)] = 120129, - [SMALL_STATE(4112)] = 120144, - [SMALL_STATE(4113)] = 120163, - [SMALL_STATE(4114)] = 120182, - [SMALL_STATE(4115)] = 120197, - [SMALL_STATE(4116)] = 120216, - [SMALL_STATE(4117)] = 120231, - [SMALL_STATE(4118)] = 120248, - [SMALL_STATE(4119)] = 120265, - [SMALL_STATE(4120)] = 120282, - [SMALL_STATE(4121)] = 120297, - [SMALL_STATE(4122)] = 120314, - [SMALL_STATE(4123)] = 120331, - [SMALL_STATE(4124)] = 120350, - [SMALL_STATE(4125)] = 120369, - [SMALL_STATE(4126)] = 120388, - [SMALL_STATE(4127)] = 120401, - [SMALL_STATE(4128)] = 120420, - [SMALL_STATE(4129)] = 120439, - [SMALL_STATE(4130)] = 120452, - [SMALL_STATE(4131)] = 120465, - [SMALL_STATE(4132)] = 120478, - [SMALL_STATE(4133)] = 120491, - [SMALL_STATE(4134)] = 120504, - [SMALL_STATE(4135)] = 120521, - [SMALL_STATE(4136)] = 120536, - [SMALL_STATE(4137)] = 120553, - [SMALL_STATE(4138)] = 120566, - [SMALL_STATE(4139)] = 120579, - [SMALL_STATE(4140)] = 120596, - [SMALL_STATE(4141)] = 120609, - [SMALL_STATE(4142)] = 120626, - [SMALL_STATE(4143)] = 120639, - [SMALL_STATE(4144)] = 120658, - [SMALL_STATE(4145)] = 120673, - [SMALL_STATE(4146)] = 120688, - [SMALL_STATE(4147)] = 120705, - [SMALL_STATE(4148)] = 120722, - [SMALL_STATE(4149)] = 120737, - [SMALL_STATE(4150)] = 120756, - [SMALL_STATE(4151)] = 120775, - [SMALL_STATE(4152)] = 120794, - [SMALL_STATE(4153)] = 120811, - [SMALL_STATE(4154)] = 120828, - [SMALL_STATE(4155)] = 120843, - [SMALL_STATE(4156)] = 120858, - [SMALL_STATE(4157)] = 120873, - [SMALL_STATE(4158)] = 120888, - [SMALL_STATE(4159)] = 120907, - [SMALL_STATE(4160)] = 120926, - [SMALL_STATE(4161)] = 120941, - [SMALL_STATE(4162)] = 120960, - [SMALL_STATE(4163)] = 120975, - [SMALL_STATE(4164)] = 120990, - [SMALL_STATE(4165)] = 121005, - [SMALL_STATE(4166)] = 121020, - [SMALL_STATE(4167)] = 121039, - [SMALL_STATE(4168)] = 121058, - [SMALL_STATE(4169)] = 121073, - [SMALL_STATE(4170)] = 121088, - [SMALL_STATE(4171)] = 121101, - [SMALL_STATE(4172)] = 121116, - [SMALL_STATE(4173)] = 121129, - [SMALL_STATE(4174)] = 121144, - [SMALL_STATE(4175)] = 121163, - [SMALL_STATE(4176)] = 121182, - [SMALL_STATE(4177)] = 121199, - [SMALL_STATE(4178)] = 121214, - [SMALL_STATE(4179)] = 121233, - [SMALL_STATE(4180)] = 121252, - [SMALL_STATE(4181)] = 121271, - [SMALL_STATE(4182)] = 121290, - [SMALL_STATE(4183)] = 121309, - [SMALL_STATE(4184)] = 121324, - [SMALL_STATE(4185)] = 121343, - [SMALL_STATE(4186)] = 121360, - [SMALL_STATE(4187)] = 121375, - [SMALL_STATE(4188)] = 121390, - [SMALL_STATE(4189)] = 121405, - [SMALL_STATE(4190)] = 121420, - [SMALL_STATE(4191)] = 121437, - [SMALL_STATE(4192)] = 121452, - [SMALL_STATE(4193)] = 121465, - [SMALL_STATE(4194)] = 121484, - [SMALL_STATE(4195)] = 121499, - [SMALL_STATE(4196)] = 121514, - [SMALL_STATE(4197)] = 121533, - [SMALL_STATE(4198)] = 121548, - [SMALL_STATE(4199)] = 121563, - [SMALL_STATE(4200)] = 121578, - [SMALL_STATE(4201)] = 121593, - [SMALL_STATE(4202)] = 121608, - [SMALL_STATE(4203)] = 121623, - [SMALL_STATE(4204)] = 121638, - [SMALL_STATE(4205)] = 121653, - [SMALL_STATE(4206)] = 121668, - [SMALL_STATE(4207)] = 121687, - [SMALL_STATE(4208)] = 121706, - [SMALL_STATE(4209)] = 121719, - [SMALL_STATE(4210)] = 121734, - [SMALL_STATE(4211)] = 121749, - [SMALL_STATE(4212)] = 121766, - [SMALL_STATE(4213)] = 121781, - [SMALL_STATE(4214)] = 121794, - [SMALL_STATE(4215)] = 121807, - [SMALL_STATE(4216)] = 121824, - [SMALL_STATE(4217)] = 121837, - [SMALL_STATE(4218)] = 121856, - [SMALL_STATE(4219)] = 121873, - [SMALL_STATE(4220)] = 121892, - [SMALL_STATE(4221)] = 121911, - [SMALL_STATE(4222)] = 121928, - [SMALL_STATE(4223)] = 121941, - [SMALL_STATE(4224)] = 121960, - [SMALL_STATE(4225)] = 121975, - [SMALL_STATE(4226)] = 121992, - [SMALL_STATE(4227)] = 122007, - [SMALL_STATE(4228)] = 122020, - [SMALL_STATE(4229)] = 122033, - [SMALL_STATE(4230)] = 122046, - [SMALL_STATE(4231)] = 122061, - [SMALL_STATE(4232)] = 122074, - [SMALL_STATE(4233)] = 122087, - [SMALL_STATE(4234)] = 122102, - [SMALL_STATE(4235)] = 122115, - [SMALL_STATE(4236)] = 122128, - [SMALL_STATE(4237)] = 122141, - [SMALL_STATE(4238)] = 122160, - [SMALL_STATE(4239)] = 122173, - [SMALL_STATE(4240)] = 122186, - [SMALL_STATE(4241)] = 122201, - [SMALL_STATE(4242)] = 122220, - [SMALL_STATE(4243)] = 122233, - [SMALL_STATE(4244)] = 122246, - [SMALL_STATE(4245)] = 122265, - [SMALL_STATE(4246)] = 122278, - [SMALL_STATE(4247)] = 122291, - [SMALL_STATE(4248)] = 122304, - [SMALL_STATE(4249)] = 122321, - [SMALL_STATE(4250)] = 122336, - [SMALL_STATE(4251)] = 122349, - [SMALL_STATE(4252)] = 122366, - [SMALL_STATE(4253)] = 122383, - [SMALL_STATE(4254)] = 122396, - [SMALL_STATE(4255)] = 122409, - [SMALL_STATE(4256)] = 122422, - [SMALL_STATE(4257)] = 122435, - [SMALL_STATE(4258)] = 122448, - [SMALL_STATE(4259)] = 122461, - [SMALL_STATE(4260)] = 122474, - [SMALL_STATE(4261)] = 122487, - [SMALL_STATE(4262)] = 122502, - [SMALL_STATE(4263)] = 122515, - [SMALL_STATE(4264)] = 122528, - [SMALL_STATE(4265)] = 122541, - [SMALL_STATE(4266)] = 122554, - [SMALL_STATE(4267)] = 122567, - [SMALL_STATE(4268)] = 122580, - [SMALL_STATE(4269)] = 122593, - [SMALL_STATE(4270)] = 122606, - [SMALL_STATE(4271)] = 122619, - [SMALL_STATE(4272)] = 122632, - [SMALL_STATE(4273)] = 122645, - [SMALL_STATE(4274)] = 122664, - [SMALL_STATE(4275)] = 122679, - [SMALL_STATE(4276)] = 122696, - [SMALL_STATE(4277)] = 122709, - [SMALL_STATE(4278)] = 122728, - [SMALL_STATE(4279)] = 122743, - [SMALL_STATE(4280)] = 122758, - [SMALL_STATE(4281)] = 122777, - [SMALL_STATE(4282)] = 122792, - [SMALL_STATE(4283)] = 122805, - [SMALL_STATE(4284)] = 122818, - [SMALL_STATE(4285)] = 122833, - [SMALL_STATE(4286)] = 122850, - [SMALL_STATE(4287)] = 122863, - [SMALL_STATE(4288)] = 122882, - [SMALL_STATE(4289)] = 122895, - [SMALL_STATE(4290)] = 122908, - [SMALL_STATE(4291)] = 122921, - [SMALL_STATE(4292)] = 122934, - [SMALL_STATE(4293)] = 122947, - [SMALL_STATE(4294)] = 122960, - [SMALL_STATE(4295)] = 122973, - [SMALL_STATE(4296)] = 122986, - [SMALL_STATE(4297)] = 122999, - [SMALL_STATE(4298)] = 123012, - [SMALL_STATE(4299)] = 123025, - [SMALL_STATE(4300)] = 123038, - [SMALL_STATE(4301)] = 123051, - [SMALL_STATE(4302)] = 123064, - [SMALL_STATE(4303)] = 123083, - [SMALL_STATE(4304)] = 123100, - [SMALL_STATE(4305)] = 123119, - [SMALL_STATE(4306)] = 123132, - [SMALL_STATE(4307)] = 123149, - [SMALL_STATE(4308)] = 123162, - [SMALL_STATE(4309)] = 123175, - [SMALL_STATE(4310)] = 123188, - [SMALL_STATE(4311)] = 123201, - [SMALL_STATE(4312)] = 123214, - [SMALL_STATE(4313)] = 123227, - [SMALL_STATE(4314)] = 123242, - [SMALL_STATE(4315)] = 123259, - [SMALL_STATE(4316)] = 123274, - [SMALL_STATE(4317)] = 123287, - [SMALL_STATE(4318)] = 123300, - [SMALL_STATE(4319)] = 123313, - [SMALL_STATE(4320)] = 123326, - [SMALL_STATE(4321)] = 123339, - [SMALL_STATE(4322)] = 123352, - [SMALL_STATE(4323)] = 123365, - [SMALL_STATE(4324)] = 123378, - [SMALL_STATE(4325)] = 123391, - [SMALL_STATE(4326)] = 123406, - [SMALL_STATE(4327)] = 123419, - [SMALL_STATE(4328)] = 123432, - [SMALL_STATE(4329)] = 123449, - [SMALL_STATE(4330)] = 123466, - [SMALL_STATE(4331)] = 123483, - [SMALL_STATE(4332)] = 123496, - [SMALL_STATE(4333)] = 123511, - [SMALL_STATE(4334)] = 123526, - [SMALL_STATE(4335)] = 123545, - [SMALL_STATE(4336)] = 123558, - [SMALL_STATE(4337)] = 123577, - [SMALL_STATE(4338)] = 123596, - [SMALL_STATE(4339)] = 123609, - [SMALL_STATE(4340)] = 123628, - [SMALL_STATE(4341)] = 123641, - [SMALL_STATE(4342)] = 123658, - [SMALL_STATE(4343)] = 123677, - [SMALL_STATE(4344)] = 123690, - [SMALL_STATE(4345)] = 123703, - [SMALL_STATE(4346)] = 123716, - [SMALL_STATE(4347)] = 123733, - [SMALL_STATE(4348)] = 123746, - [SMALL_STATE(4349)] = 123759, - [SMALL_STATE(4350)] = 123772, - [SMALL_STATE(4351)] = 123785, - [SMALL_STATE(4352)] = 123798, - [SMALL_STATE(4353)] = 123811, - [SMALL_STATE(4354)] = 123824, - [SMALL_STATE(4355)] = 123837, - [SMALL_STATE(4356)] = 123850, - [SMALL_STATE(4357)] = 123863, - [SMALL_STATE(4358)] = 123876, - [SMALL_STATE(4359)] = 123889, - [SMALL_STATE(4360)] = 123904, - [SMALL_STATE(4361)] = 123919, - [SMALL_STATE(4362)] = 123934, - [SMALL_STATE(4363)] = 123947, - [SMALL_STATE(4364)] = 123962, - [SMALL_STATE(4365)] = 123977, - [SMALL_STATE(4366)] = 123990, - [SMALL_STATE(4367)] = 124005, - [SMALL_STATE(4368)] = 124018, - [SMALL_STATE(4369)] = 124033, - [SMALL_STATE(4370)] = 124046, - [SMALL_STATE(4371)] = 124059, - [SMALL_STATE(4372)] = 124072, - [SMALL_STATE(4373)] = 124085, - [SMALL_STATE(4374)] = 124104, - [SMALL_STATE(4375)] = 124123, - [SMALL_STATE(4376)] = 124142, - [SMALL_STATE(4377)] = 124159, - [SMALL_STATE(4378)] = 124178, - [SMALL_STATE(4379)] = 124197, - [SMALL_STATE(4380)] = 124210, - [SMALL_STATE(4381)] = 124223, - [SMALL_STATE(4382)] = 124236, - [SMALL_STATE(4383)] = 124249, - [SMALL_STATE(4384)] = 124262, - [SMALL_STATE(4385)] = 124275, - [SMALL_STATE(4386)] = 124288, - [SMALL_STATE(4387)] = 124301, - [SMALL_STATE(4388)] = 124314, - [SMALL_STATE(4389)] = 124329, - [SMALL_STATE(4390)] = 124344, - [SMALL_STATE(4391)] = 124359, - [SMALL_STATE(4392)] = 124374, - [SMALL_STATE(4393)] = 124389, - [SMALL_STATE(4394)] = 124402, - [SMALL_STATE(4395)] = 124421, - [SMALL_STATE(4396)] = 124434, - [SMALL_STATE(4397)] = 124447, - [SMALL_STATE(4398)] = 124460, - [SMALL_STATE(4399)] = 124479, - [SMALL_STATE(4400)] = 124492, - [SMALL_STATE(4401)] = 124511, - [SMALL_STATE(4402)] = 124530, - [SMALL_STATE(4403)] = 124549, - [SMALL_STATE(4404)] = 124562, - [SMALL_STATE(4405)] = 124575, - [SMALL_STATE(4406)] = 124588, - [SMALL_STATE(4407)] = 124601, - [SMALL_STATE(4408)] = 124620, - [SMALL_STATE(4409)] = 124639, - [SMALL_STATE(4410)] = 124658, - [SMALL_STATE(4411)] = 124677, - [SMALL_STATE(4412)] = 124696, - [SMALL_STATE(4413)] = 124715, - [SMALL_STATE(4414)] = 124734, - [SMALL_STATE(4415)] = 124747, - [SMALL_STATE(4416)] = 124763, - [SMALL_STATE(4417)] = 124779, - [SMALL_STATE(4418)] = 124795, - [SMALL_STATE(4419)] = 124807, - [SMALL_STATE(4420)] = 124819, - [SMALL_STATE(4421)] = 124835, - [SMALL_STATE(4422)] = 124847, - [SMALL_STATE(4423)] = 124859, - [SMALL_STATE(4424)] = 124871, - [SMALL_STATE(4425)] = 124883, - [SMALL_STATE(4426)] = 124899, - [SMALL_STATE(4427)] = 124911, - [SMALL_STATE(4428)] = 124923, - [SMALL_STATE(4429)] = 124939, - [SMALL_STATE(4430)] = 124955, - [SMALL_STATE(4431)] = 124969, - [SMALL_STATE(4432)] = 124983, - [SMALL_STATE(4433)] = 124995, - [SMALL_STATE(4434)] = 125007, - [SMALL_STATE(4435)] = 125023, - [SMALL_STATE(4436)] = 125039, - [SMALL_STATE(4437)] = 125053, - [SMALL_STATE(4438)] = 125069, - [SMALL_STATE(4439)] = 125085, - [SMALL_STATE(4440)] = 125099, - [SMALL_STATE(4441)] = 125113, - [SMALL_STATE(4442)] = 125127, - [SMALL_STATE(4443)] = 125139, - [SMALL_STATE(4444)] = 125151, - [SMALL_STATE(4445)] = 125163, - [SMALL_STATE(4446)] = 125175, - [SMALL_STATE(4447)] = 125187, - [SMALL_STATE(4448)] = 125203, - [SMALL_STATE(4449)] = 125219, - [SMALL_STATE(4450)] = 125233, - [SMALL_STATE(4451)] = 125247, - [SMALL_STATE(4452)] = 125259, - [SMALL_STATE(4453)] = 125271, - [SMALL_STATE(4454)] = 125283, - [SMALL_STATE(4455)] = 125297, - [SMALL_STATE(4456)] = 125311, - [SMALL_STATE(4457)] = 125327, - [SMALL_STATE(4458)] = 125343, - [SMALL_STATE(4459)] = 125359, - [SMALL_STATE(4460)] = 125371, - [SMALL_STATE(4461)] = 125387, - [SMALL_STATE(4462)] = 125403, - [SMALL_STATE(4463)] = 125419, - [SMALL_STATE(4464)] = 125435, - [SMALL_STATE(4465)] = 125449, - [SMALL_STATE(4466)] = 125465, - [SMALL_STATE(4467)] = 125481, - [SMALL_STATE(4468)] = 125493, - [SMALL_STATE(4469)] = 125509, - [SMALL_STATE(4470)] = 125521, - [SMALL_STATE(4471)] = 125537, - [SMALL_STATE(4472)] = 125549, - [SMALL_STATE(4473)] = 125565, - [SMALL_STATE(4474)] = 125577, - [SMALL_STATE(4475)] = 125589, - [SMALL_STATE(4476)] = 125605, - [SMALL_STATE(4477)] = 125617, - [SMALL_STATE(4478)] = 125631, - [SMALL_STATE(4479)] = 125643, - [SMALL_STATE(4480)] = 125655, - [SMALL_STATE(4481)] = 125667, - [SMALL_STATE(4482)] = 125681, - [SMALL_STATE(4483)] = 125697, - [SMALL_STATE(4484)] = 125709, - [SMALL_STATE(4485)] = 125721, - [SMALL_STATE(4486)] = 125737, - [SMALL_STATE(4487)] = 125753, - [SMALL_STATE(4488)] = 125769, - [SMALL_STATE(4489)] = 125785, - [SMALL_STATE(4490)] = 125799, - [SMALL_STATE(4491)] = 125813, - [SMALL_STATE(4492)] = 125827, - [SMALL_STATE(4493)] = 125843, - [SMALL_STATE(4494)] = 125857, - [SMALL_STATE(4495)] = 125871, - [SMALL_STATE(4496)] = 125885, - [SMALL_STATE(4497)] = 125901, - [SMALL_STATE(4498)] = 125917, - [SMALL_STATE(4499)] = 125931, - [SMALL_STATE(4500)] = 125947, - [SMALL_STATE(4501)] = 125963, - [SMALL_STATE(4502)] = 125979, - [SMALL_STATE(4503)] = 125991, - [SMALL_STATE(4504)] = 126007, - [SMALL_STATE(4505)] = 126019, - [SMALL_STATE(4506)] = 126031, - [SMALL_STATE(4507)] = 126047, - [SMALL_STATE(4508)] = 126059, - [SMALL_STATE(4509)] = 126075, - [SMALL_STATE(4510)] = 126087, - [SMALL_STATE(4511)] = 126099, - [SMALL_STATE(4512)] = 126111, - [SMALL_STATE(4513)] = 126123, - [SMALL_STATE(4514)] = 126135, - [SMALL_STATE(4515)] = 126147, - [SMALL_STATE(4516)] = 126163, - [SMALL_STATE(4517)] = 126179, - [SMALL_STATE(4518)] = 126191, - [SMALL_STATE(4519)] = 126207, - [SMALL_STATE(4520)] = 126223, - [SMALL_STATE(4521)] = 126239, - [SMALL_STATE(4522)] = 126255, - [SMALL_STATE(4523)] = 126269, - [SMALL_STATE(4524)] = 126281, - [SMALL_STATE(4525)] = 126297, - [SMALL_STATE(4526)] = 126313, - [SMALL_STATE(4527)] = 126329, - [SMALL_STATE(4528)] = 126345, - [SMALL_STATE(4529)] = 126361, - [SMALL_STATE(4530)] = 126377, - [SMALL_STATE(4531)] = 126393, - [SMALL_STATE(4532)] = 126405, - [SMALL_STATE(4533)] = 126417, - [SMALL_STATE(4534)] = 126429, - [SMALL_STATE(4535)] = 126441, - [SMALL_STATE(4536)] = 126453, - [SMALL_STATE(4537)] = 126465, - [SMALL_STATE(4538)] = 126479, - [SMALL_STATE(4539)] = 126491, - [SMALL_STATE(4540)] = 126505, - [SMALL_STATE(4541)] = 126517, - [SMALL_STATE(4542)] = 126533, - [SMALL_STATE(4543)] = 126547, - [SMALL_STATE(4544)] = 126563, - [SMALL_STATE(4545)] = 126575, - [SMALL_STATE(4546)] = 126589, - [SMALL_STATE(4547)] = 126601, - [SMALL_STATE(4548)] = 126617, - [SMALL_STATE(4549)] = 126629, - [SMALL_STATE(4550)] = 126645, - [SMALL_STATE(4551)] = 126659, - [SMALL_STATE(4552)] = 126671, - [SMALL_STATE(4553)] = 126683, - [SMALL_STATE(4554)] = 126697, - [SMALL_STATE(4555)] = 126713, - [SMALL_STATE(4556)] = 126725, - [SMALL_STATE(4557)] = 126739, - [SMALL_STATE(4558)] = 126753, - [SMALL_STATE(4559)] = 126765, - [SMALL_STATE(4560)] = 126781, - [SMALL_STATE(4561)] = 126797, - [SMALL_STATE(4562)] = 126811, - [SMALL_STATE(4563)] = 126823, - [SMALL_STATE(4564)] = 126837, - [SMALL_STATE(4565)] = 126851, - [SMALL_STATE(4566)] = 126863, - [SMALL_STATE(4567)] = 126875, - [SMALL_STATE(4568)] = 126889, - [SMALL_STATE(4569)] = 126901, - [SMALL_STATE(4570)] = 126917, - [SMALL_STATE(4571)] = 126929, - [SMALL_STATE(4572)] = 126943, - [SMALL_STATE(4573)] = 126959, - [SMALL_STATE(4574)] = 126973, - [SMALL_STATE(4575)] = 126987, - [SMALL_STATE(4576)] = 127003, - [SMALL_STATE(4577)] = 127015, - [SMALL_STATE(4578)] = 127031, - [SMALL_STATE(4579)] = 127043, - [SMALL_STATE(4580)] = 127055, - [SMALL_STATE(4581)] = 127071, - [SMALL_STATE(4582)] = 127083, - [SMALL_STATE(4583)] = 127099, - [SMALL_STATE(4584)] = 127111, - [SMALL_STATE(4585)] = 127123, - [SMALL_STATE(4586)] = 127135, - [SMALL_STATE(4587)] = 127147, - [SMALL_STATE(4588)] = 127163, - [SMALL_STATE(4589)] = 127175, - [SMALL_STATE(4590)] = 127187, - [SMALL_STATE(4591)] = 127199, - [SMALL_STATE(4592)] = 127213, - [SMALL_STATE(4593)] = 127229, - [SMALL_STATE(4594)] = 127241, - [SMALL_STATE(4595)] = 127255, - [SMALL_STATE(4596)] = 127271, - [SMALL_STATE(4597)] = 127287, - [SMALL_STATE(4598)] = 127299, - [SMALL_STATE(4599)] = 127311, - [SMALL_STATE(4600)] = 127327, - [SMALL_STATE(4601)] = 127339, - [SMALL_STATE(4602)] = 127353, - [SMALL_STATE(4603)] = 127369, - [SMALL_STATE(4604)] = 127381, - [SMALL_STATE(4605)] = 127397, - [SMALL_STATE(4606)] = 127413, - [SMALL_STATE(4607)] = 127425, - [SMALL_STATE(4608)] = 127437, - [SMALL_STATE(4609)] = 127449, - [SMALL_STATE(4610)] = 127461, - [SMALL_STATE(4611)] = 127475, - [SMALL_STATE(4612)] = 127487, - [SMALL_STATE(4613)] = 127501, - [SMALL_STATE(4614)] = 127513, - [SMALL_STATE(4615)] = 127527, - [SMALL_STATE(4616)] = 127539, - [SMALL_STATE(4617)] = 127553, - [SMALL_STATE(4618)] = 127569, - [SMALL_STATE(4619)] = 127581, - [SMALL_STATE(4620)] = 127597, - [SMALL_STATE(4621)] = 127609, - [SMALL_STATE(4622)] = 127625, - [SMALL_STATE(4623)] = 127641, - [SMALL_STATE(4624)] = 127653, - [SMALL_STATE(4625)] = 127665, - [SMALL_STATE(4626)] = 127679, - [SMALL_STATE(4627)] = 127691, - [SMALL_STATE(4628)] = 127707, - [SMALL_STATE(4629)] = 127723, - [SMALL_STATE(4630)] = 127739, - [SMALL_STATE(4631)] = 127751, - [SMALL_STATE(4632)] = 127763, - [SMALL_STATE(4633)] = 127779, - [SMALL_STATE(4634)] = 127791, - [SMALL_STATE(4635)] = 127807, - [SMALL_STATE(4636)] = 127823, - [SMALL_STATE(4637)] = 127835, - [SMALL_STATE(4638)] = 127851, - [SMALL_STATE(4639)] = 127867, - [SMALL_STATE(4640)] = 127883, - [SMALL_STATE(4641)] = 127895, - [SMALL_STATE(4642)] = 127911, - [SMALL_STATE(4643)] = 127925, - [SMALL_STATE(4644)] = 127937, - [SMALL_STATE(4645)] = 127949, - [SMALL_STATE(4646)] = 127963, - [SMALL_STATE(4647)] = 127975, - [SMALL_STATE(4648)] = 127987, - [SMALL_STATE(4649)] = 128003, - [SMALL_STATE(4650)] = 128017, - [SMALL_STATE(4651)] = 128031, - [SMALL_STATE(4652)] = 128047, - [SMALL_STATE(4653)] = 128059, - [SMALL_STATE(4654)] = 128071, - [SMALL_STATE(4655)] = 128083, - [SMALL_STATE(4656)] = 128099, - [SMALL_STATE(4657)] = 128111, - [SMALL_STATE(4658)] = 128127, - [SMALL_STATE(4659)] = 128143, - [SMALL_STATE(4660)] = 128155, - [SMALL_STATE(4661)] = 128167, - [SMALL_STATE(4662)] = 128179, - [SMALL_STATE(4663)] = 128191, - [SMALL_STATE(4664)] = 128203, - [SMALL_STATE(4665)] = 128215, - [SMALL_STATE(4666)] = 128231, - [SMALL_STATE(4667)] = 128243, - [SMALL_STATE(4668)] = 128259, - [SMALL_STATE(4669)] = 128273, - [SMALL_STATE(4670)] = 128289, - [SMALL_STATE(4671)] = 128302, - [SMALL_STATE(4672)] = 128315, - [SMALL_STATE(4673)] = 128328, - [SMALL_STATE(4674)] = 128341, - [SMALL_STATE(4675)] = 128354, - [SMALL_STATE(4676)] = 128367, - [SMALL_STATE(4677)] = 128380, - [SMALL_STATE(4678)] = 128393, - [SMALL_STATE(4679)] = 128406, - [SMALL_STATE(4680)] = 128419, - [SMALL_STATE(4681)] = 128432, - [SMALL_STATE(4682)] = 128445, - [SMALL_STATE(4683)] = 128458, - [SMALL_STATE(4684)] = 128471, - [SMALL_STATE(4685)] = 128484, - [SMALL_STATE(4686)] = 128497, - [SMALL_STATE(4687)] = 128510, - [SMALL_STATE(4688)] = 128523, - [SMALL_STATE(4689)] = 128536, - [SMALL_STATE(4690)] = 128549, - [SMALL_STATE(4691)] = 128562, - [SMALL_STATE(4692)] = 128575, - [SMALL_STATE(4693)] = 128588, - [SMALL_STATE(4694)] = 128601, - [SMALL_STATE(4695)] = 128614, - [SMALL_STATE(4696)] = 128627, - [SMALL_STATE(4697)] = 128640, - [SMALL_STATE(4698)] = 128653, - [SMALL_STATE(4699)] = 128666, - [SMALL_STATE(4700)] = 128679, - [SMALL_STATE(4701)] = 128692, - [SMALL_STATE(4702)] = 128705, - [SMALL_STATE(4703)] = 128718, - [SMALL_STATE(4704)] = 128731, - [SMALL_STATE(4705)] = 128744, - [SMALL_STATE(4706)] = 128757, - [SMALL_STATE(4707)] = 128770, - [SMALL_STATE(4708)] = 128783, - [SMALL_STATE(4709)] = 128796, - [SMALL_STATE(4710)] = 128809, - [SMALL_STATE(4711)] = 128822, - [SMALL_STATE(4712)] = 128835, - [SMALL_STATE(4713)] = 128848, - [SMALL_STATE(4714)] = 128861, - [SMALL_STATE(4715)] = 128874, - [SMALL_STATE(4716)] = 128887, - [SMALL_STATE(4717)] = 128900, - [SMALL_STATE(4718)] = 128913, - [SMALL_STATE(4719)] = 128926, - [SMALL_STATE(4720)] = 128939, - [SMALL_STATE(4721)] = 128952, - [SMALL_STATE(4722)] = 128965, - [SMALL_STATE(4723)] = 128978, - [SMALL_STATE(4724)] = 128991, - [SMALL_STATE(4725)] = 129002, - [SMALL_STATE(4726)] = 129013, - [SMALL_STATE(4727)] = 129026, - [SMALL_STATE(4728)] = 129037, - [SMALL_STATE(4729)] = 129050, - [SMALL_STATE(4730)] = 129063, - [SMALL_STATE(4731)] = 129076, - [SMALL_STATE(4732)] = 129089, - [SMALL_STATE(4733)] = 129100, - [SMALL_STATE(4734)] = 129113, - [SMALL_STATE(4735)] = 129126, - [SMALL_STATE(4736)] = 129139, - [SMALL_STATE(4737)] = 129150, - [SMALL_STATE(4738)] = 129163, - [SMALL_STATE(4739)] = 129176, - [SMALL_STATE(4740)] = 129189, - [SMALL_STATE(4741)] = 129202, - [SMALL_STATE(4742)] = 129215, - [SMALL_STATE(4743)] = 129228, - [SMALL_STATE(4744)] = 129241, - [SMALL_STATE(4745)] = 129254, - [SMALL_STATE(4746)] = 129267, - [SMALL_STATE(4747)] = 129280, - [SMALL_STATE(4748)] = 129293, - [SMALL_STATE(4749)] = 129306, - [SMALL_STATE(4750)] = 129319, - [SMALL_STATE(4751)] = 129332, - [SMALL_STATE(4752)] = 129345, - [SMALL_STATE(4753)] = 129356, - [SMALL_STATE(4754)] = 129369, - [SMALL_STATE(4755)] = 129382, - [SMALL_STATE(4756)] = 129393, - [SMALL_STATE(4757)] = 129406, - [SMALL_STATE(4758)] = 129417, - [SMALL_STATE(4759)] = 129430, - [SMALL_STATE(4760)] = 129443, - [SMALL_STATE(4761)] = 129456, - [SMALL_STATE(4762)] = 129469, - [SMALL_STATE(4763)] = 129482, - [SMALL_STATE(4764)] = 129495, - [SMALL_STATE(4765)] = 129508, - [SMALL_STATE(4766)] = 129521, - [SMALL_STATE(4767)] = 129534, - [SMALL_STATE(4768)] = 129547, - [SMALL_STATE(4769)] = 129560, - [SMALL_STATE(4770)] = 129573, - [SMALL_STATE(4771)] = 129586, - [SMALL_STATE(4772)] = 129599, - [SMALL_STATE(4773)] = 129612, - [SMALL_STATE(4774)] = 129625, - [SMALL_STATE(4775)] = 129638, - [SMALL_STATE(4776)] = 129651, - [SMALL_STATE(4777)] = 129664, - [SMALL_STATE(4778)] = 129677, - [SMALL_STATE(4779)] = 129690, - [SMALL_STATE(4780)] = 129703, - [SMALL_STATE(4781)] = 129716, - [SMALL_STATE(4782)] = 129729, - [SMALL_STATE(4783)] = 129742, - [SMALL_STATE(4784)] = 129755, - [SMALL_STATE(4785)] = 129768, - [SMALL_STATE(4786)] = 129781, - [SMALL_STATE(4787)] = 129794, - [SMALL_STATE(4788)] = 129807, - [SMALL_STATE(4789)] = 129820, - [SMALL_STATE(4790)] = 129833, - [SMALL_STATE(4791)] = 129846, - [SMALL_STATE(4792)] = 129859, - [SMALL_STATE(4793)] = 129872, - [SMALL_STATE(4794)] = 129885, - [SMALL_STATE(4795)] = 129898, - [SMALL_STATE(4796)] = 129911, - [SMALL_STATE(4797)] = 129924, - [SMALL_STATE(4798)] = 129937, - [SMALL_STATE(4799)] = 129950, - [SMALL_STATE(4800)] = 129963, - [SMALL_STATE(4801)] = 129976, - [SMALL_STATE(4802)] = 129989, - [SMALL_STATE(4803)] = 130002, - [SMALL_STATE(4804)] = 130015, - [SMALL_STATE(4805)] = 130028, - [SMALL_STATE(4806)] = 130041, - [SMALL_STATE(4807)] = 130054, - [SMALL_STATE(4808)] = 130067, - [SMALL_STATE(4809)] = 130080, - [SMALL_STATE(4810)] = 130093, - [SMALL_STATE(4811)] = 130106, - [SMALL_STATE(4812)] = 130119, - [SMALL_STATE(4813)] = 130132, - [SMALL_STATE(4814)] = 130145, - [SMALL_STATE(4815)] = 130156, - [SMALL_STATE(4816)] = 130169, - [SMALL_STATE(4817)] = 130182, - [SMALL_STATE(4818)] = 130195, - [SMALL_STATE(4819)] = 130208, - [SMALL_STATE(4820)] = 130221, - [SMALL_STATE(4821)] = 130234, - [SMALL_STATE(4822)] = 130247, - [SMALL_STATE(4823)] = 130260, - [SMALL_STATE(4824)] = 130273, - [SMALL_STATE(4825)] = 130286, - [SMALL_STATE(4826)] = 130299, - [SMALL_STATE(4827)] = 130312, - [SMALL_STATE(4828)] = 130325, - [SMALL_STATE(4829)] = 130336, - [SMALL_STATE(4830)] = 130349, - [SMALL_STATE(4831)] = 130362, - [SMALL_STATE(4832)] = 130375, - [SMALL_STATE(4833)] = 130388, - [SMALL_STATE(4834)] = 130401, - [SMALL_STATE(4835)] = 130414, - [SMALL_STATE(4836)] = 130427, - [SMALL_STATE(4837)] = 130440, - [SMALL_STATE(4838)] = 130453, - [SMALL_STATE(4839)] = 130466, - [SMALL_STATE(4840)] = 130476, - [SMALL_STATE(4841)] = 130486, - [SMALL_STATE(4842)] = 130496, - [SMALL_STATE(4843)] = 130506, - [SMALL_STATE(4844)] = 130516, - [SMALL_STATE(4845)] = 130526, - [SMALL_STATE(4846)] = 130536, - [SMALL_STATE(4847)] = 130546, - [SMALL_STATE(4848)] = 130556, - [SMALL_STATE(4849)] = 130566, - [SMALL_STATE(4850)] = 130576, - [SMALL_STATE(4851)] = 130586, - [SMALL_STATE(4852)] = 130596, - [SMALL_STATE(4853)] = 130606, - [SMALL_STATE(4854)] = 130616, - [SMALL_STATE(4855)] = 130626, - [SMALL_STATE(4856)] = 130636, - [SMALL_STATE(4857)] = 130646, - [SMALL_STATE(4858)] = 130656, - [SMALL_STATE(4859)] = 130666, - [SMALL_STATE(4860)] = 130676, - [SMALL_STATE(4861)] = 130686, - [SMALL_STATE(4862)] = 130696, - [SMALL_STATE(4863)] = 130706, - [SMALL_STATE(4864)] = 130716, - [SMALL_STATE(4865)] = 130726, - [SMALL_STATE(4866)] = 130736, - [SMALL_STATE(4867)] = 130746, - [SMALL_STATE(4868)] = 130756, - [SMALL_STATE(4869)] = 130766, - [SMALL_STATE(4870)] = 130776, - [SMALL_STATE(4871)] = 130786, - [SMALL_STATE(4872)] = 130796, - [SMALL_STATE(4873)] = 130806, - [SMALL_STATE(4874)] = 130816, - [SMALL_STATE(4875)] = 130826, - [SMALL_STATE(4876)] = 130836, - [SMALL_STATE(4877)] = 130846, - [SMALL_STATE(4878)] = 130856, - [SMALL_STATE(4879)] = 130866, - [SMALL_STATE(4880)] = 130876, - [SMALL_STATE(4881)] = 130886, - [SMALL_STATE(4882)] = 130896, - [SMALL_STATE(4883)] = 130906, - [SMALL_STATE(4884)] = 130916, - [SMALL_STATE(4885)] = 130926, - [SMALL_STATE(4886)] = 130936, - [SMALL_STATE(4887)] = 130946, - [SMALL_STATE(4888)] = 130956, - [SMALL_STATE(4889)] = 130966, - [SMALL_STATE(4890)] = 130976, - [SMALL_STATE(4891)] = 130986, - [SMALL_STATE(4892)] = 130996, - [SMALL_STATE(4893)] = 131006, - [SMALL_STATE(4894)] = 131016, - [SMALL_STATE(4895)] = 131026, - [SMALL_STATE(4896)] = 131036, - [SMALL_STATE(4897)] = 131046, - [SMALL_STATE(4898)] = 131056, - [SMALL_STATE(4899)] = 131066, - [SMALL_STATE(4900)] = 131076, - [SMALL_STATE(4901)] = 131086, - [SMALL_STATE(4902)] = 131096, - [SMALL_STATE(4903)] = 131106, - [SMALL_STATE(4904)] = 131116, - [SMALL_STATE(4905)] = 131126, - [SMALL_STATE(4906)] = 131136, - [SMALL_STATE(4907)] = 131146, - [SMALL_STATE(4908)] = 131156, - [SMALL_STATE(4909)] = 131166, - [SMALL_STATE(4910)] = 131176, - [SMALL_STATE(4911)] = 131186, - [SMALL_STATE(4912)] = 131196, - [SMALL_STATE(4913)] = 131206, - [SMALL_STATE(4914)] = 131216, - [SMALL_STATE(4915)] = 131226, - [SMALL_STATE(4916)] = 131236, - [SMALL_STATE(4917)] = 131246, - [SMALL_STATE(4918)] = 131256, - [SMALL_STATE(4919)] = 131266, - [SMALL_STATE(4920)] = 131276, - [SMALL_STATE(4921)] = 131286, - [SMALL_STATE(4922)] = 131296, - [SMALL_STATE(4923)] = 131306, - [SMALL_STATE(4924)] = 131316, - [SMALL_STATE(4925)] = 131326, - [SMALL_STATE(4926)] = 131336, - [SMALL_STATE(4927)] = 131346, - [SMALL_STATE(4928)] = 131356, - [SMALL_STATE(4929)] = 131366, - [SMALL_STATE(4930)] = 131376, - [SMALL_STATE(4931)] = 131386, - [SMALL_STATE(4932)] = 131396, - [SMALL_STATE(4933)] = 131406, - [SMALL_STATE(4934)] = 131416, - [SMALL_STATE(4935)] = 131426, - [SMALL_STATE(4936)] = 131436, - [SMALL_STATE(4937)] = 131446, - [SMALL_STATE(4938)] = 131456, - [SMALL_STATE(4939)] = 131466, - [SMALL_STATE(4940)] = 131476, - [SMALL_STATE(4941)] = 131486, - [SMALL_STATE(4942)] = 131496, - [SMALL_STATE(4943)] = 131506, - [SMALL_STATE(4944)] = 131516, - [SMALL_STATE(4945)] = 131526, - [SMALL_STATE(4946)] = 131536, - [SMALL_STATE(4947)] = 131546, - [SMALL_STATE(4948)] = 131556, - [SMALL_STATE(4949)] = 131566, - [SMALL_STATE(4950)] = 131576, - [SMALL_STATE(4951)] = 131586, - [SMALL_STATE(4952)] = 131596, - [SMALL_STATE(4953)] = 131606, - [SMALL_STATE(4954)] = 131616, - [SMALL_STATE(4955)] = 131626, - [SMALL_STATE(4956)] = 131636, - [SMALL_STATE(4957)] = 131646, - [SMALL_STATE(4958)] = 131656, - [SMALL_STATE(4959)] = 131666, - [SMALL_STATE(4960)] = 131676, - [SMALL_STATE(4961)] = 131686, - [SMALL_STATE(4962)] = 131696, - [SMALL_STATE(4963)] = 131706, - [SMALL_STATE(4964)] = 131716, - [SMALL_STATE(4965)] = 131726, - [SMALL_STATE(4966)] = 131736, - [SMALL_STATE(4967)] = 131746, - [SMALL_STATE(4968)] = 131756, - [SMALL_STATE(4969)] = 131766, - [SMALL_STATE(4970)] = 131776, - [SMALL_STATE(4971)] = 131786, - [SMALL_STATE(4972)] = 131796, - [SMALL_STATE(4973)] = 131806, - [SMALL_STATE(4974)] = 131816, - [SMALL_STATE(4975)] = 131826, - [SMALL_STATE(4976)] = 131836, - [SMALL_STATE(4977)] = 131846, - [SMALL_STATE(4978)] = 131856, - [SMALL_STATE(4979)] = 131866, - [SMALL_STATE(4980)] = 131876, - [SMALL_STATE(4981)] = 131886, - [SMALL_STATE(4982)] = 131896, - [SMALL_STATE(4983)] = 131906, - [SMALL_STATE(4984)] = 131916, - [SMALL_STATE(4985)] = 131926, - [SMALL_STATE(4986)] = 131936, - [SMALL_STATE(4987)] = 131946, - [SMALL_STATE(4988)] = 131956, - [SMALL_STATE(4989)] = 131966, - [SMALL_STATE(4990)] = 131976, - [SMALL_STATE(4991)] = 131986, - [SMALL_STATE(4992)] = 131996, - [SMALL_STATE(4993)] = 132006, - [SMALL_STATE(4994)] = 132016, - [SMALL_STATE(4995)] = 132026, - [SMALL_STATE(4996)] = 132036, - [SMALL_STATE(4997)] = 132046, - [SMALL_STATE(4998)] = 132056, - [SMALL_STATE(4999)] = 132066, - [SMALL_STATE(5000)] = 132076, - [SMALL_STATE(5001)] = 132086, - [SMALL_STATE(5002)] = 132096, - [SMALL_STATE(5003)] = 132106, - [SMALL_STATE(5004)] = 132116, - [SMALL_STATE(5005)] = 132126, - [SMALL_STATE(5006)] = 132136, - [SMALL_STATE(5007)] = 132146, - [SMALL_STATE(5008)] = 132156, - [SMALL_STATE(5009)] = 132166, - [SMALL_STATE(5010)] = 132176, - [SMALL_STATE(5011)] = 132186, - [SMALL_STATE(5012)] = 132196, - [SMALL_STATE(5013)] = 132206, - [SMALL_STATE(5014)] = 132216, - [SMALL_STATE(5015)] = 132226, - [SMALL_STATE(5016)] = 132236, - [SMALL_STATE(5017)] = 132246, - [SMALL_STATE(5018)] = 132256, - [SMALL_STATE(5019)] = 132266, - [SMALL_STATE(5020)] = 132276, - [SMALL_STATE(5021)] = 132286, - [SMALL_STATE(5022)] = 132296, - [SMALL_STATE(5023)] = 132306, - [SMALL_STATE(5024)] = 132316, - [SMALL_STATE(5025)] = 132326, - [SMALL_STATE(5026)] = 132336, - [SMALL_STATE(5027)] = 132346, - [SMALL_STATE(5028)] = 132356, - [SMALL_STATE(5029)] = 132366, - [SMALL_STATE(5030)] = 132376, - [SMALL_STATE(5031)] = 132386, - [SMALL_STATE(5032)] = 132396, - [SMALL_STATE(5033)] = 132406, - [SMALL_STATE(5034)] = 132416, - [SMALL_STATE(5035)] = 132426, - [SMALL_STATE(5036)] = 132436, - [SMALL_STATE(5037)] = 132446, - [SMALL_STATE(5038)] = 132456, - [SMALL_STATE(5039)] = 132466, - [SMALL_STATE(5040)] = 132476, - [SMALL_STATE(5041)] = 132486, - [SMALL_STATE(5042)] = 132496, - [SMALL_STATE(5043)] = 132506, - [SMALL_STATE(5044)] = 132516, - [SMALL_STATE(5045)] = 132526, - [SMALL_STATE(5046)] = 132536, - [SMALL_STATE(5047)] = 132546, - [SMALL_STATE(5048)] = 132556, - [SMALL_STATE(5049)] = 132566, - [SMALL_STATE(5050)] = 132576, - [SMALL_STATE(5051)] = 132586, - [SMALL_STATE(5052)] = 132596, - [SMALL_STATE(5053)] = 132606, - [SMALL_STATE(5054)] = 132616, - [SMALL_STATE(5055)] = 132626, - [SMALL_STATE(5056)] = 132636, - [SMALL_STATE(5057)] = 132646, - [SMALL_STATE(5058)] = 132656, - [SMALL_STATE(5059)] = 132666, - [SMALL_STATE(5060)] = 132676, - [SMALL_STATE(5061)] = 132686, - [SMALL_STATE(5062)] = 132696, - [SMALL_STATE(5063)] = 132706, - [SMALL_STATE(5064)] = 132716, - [SMALL_STATE(5065)] = 132726, - [SMALL_STATE(5066)] = 132736, - [SMALL_STATE(5067)] = 132746, - [SMALL_STATE(5068)] = 132756, - [SMALL_STATE(5069)] = 132766, - [SMALL_STATE(5070)] = 132776, - [SMALL_STATE(5071)] = 132786, - [SMALL_STATE(5072)] = 132796, - [SMALL_STATE(5073)] = 132806, - [SMALL_STATE(5074)] = 132816, - [SMALL_STATE(5075)] = 132826, - [SMALL_STATE(5076)] = 132836, - [SMALL_STATE(5077)] = 132846, - [SMALL_STATE(5078)] = 132856, - [SMALL_STATE(5079)] = 132866, - [SMALL_STATE(5080)] = 132876, - [SMALL_STATE(5081)] = 132886, - [SMALL_STATE(5082)] = 132896, - [SMALL_STATE(5083)] = 132906, - [SMALL_STATE(5084)] = 132916, - [SMALL_STATE(5085)] = 132926, - [SMALL_STATE(5086)] = 132936, - [SMALL_STATE(5087)] = 132946, - [SMALL_STATE(5088)] = 132956, - [SMALL_STATE(5089)] = 132966, - [SMALL_STATE(5090)] = 132976, - [SMALL_STATE(5091)] = 132986, - [SMALL_STATE(5092)] = 132996, - [SMALL_STATE(5093)] = 133006, - [SMALL_STATE(5094)] = 133016, - [SMALL_STATE(5095)] = 133026, - [SMALL_STATE(5096)] = 133036, - [SMALL_STATE(5097)] = 133046, - [SMALL_STATE(5098)] = 133056, - [SMALL_STATE(5099)] = 133066, - [SMALL_STATE(5100)] = 133076, - [SMALL_STATE(5101)] = 133086, - [SMALL_STATE(5102)] = 133096, - [SMALL_STATE(5103)] = 133106, - [SMALL_STATE(5104)] = 133116, - [SMALL_STATE(5105)] = 133126, - [SMALL_STATE(5106)] = 133136, - [SMALL_STATE(5107)] = 133146, - [SMALL_STATE(5108)] = 133156, - [SMALL_STATE(5109)] = 133166, - [SMALL_STATE(5110)] = 133176, - [SMALL_STATE(5111)] = 133186, - [SMALL_STATE(5112)] = 133196, - [SMALL_STATE(5113)] = 133206, - [SMALL_STATE(5114)] = 133216, - [SMALL_STATE(5115)] = 133226, - [SMALL_STATE(5116)] = 133236, - [SMALL_STATE(5117)] = 133246, - [SMALL_STATE(5118)] = 133256, - [SMALL_STATE(5119)] = 133266, - [SMALL_STATE(5120)] = 133276, - [SMALL_STATE(5121)] = 133286, - [SMALL_STATE(5122)] = 133296, - [SMALL_STATE(5123)] = 133306, - [SMALL_STATE(5124)] = 133316, - [SMALL_STATE(5125)] = 133326, - [SMALL_STATE(5126)] = 133336, - [SMALL_STATE(5127)] = 133346, - [SMALL_STATE(5128)] = 133356, - [SMALL_STATE(5129)] = 133366, - [SMALL_STATE(5130)] = 133376, - [SMALL_STATE(5131)] = 133386, - [SMALL_STATE(5132)] = 133396, - [SMALL_STATE(5133)] = 133406, - [SMALL_STATE(5134)] = 133416, - [SMALL_STATE(5135)] = 133426, - [SMALL_STATE(5136)] = 133436, - [SMALL_STATE(5137)] = 133446, - [SMALL_STATE(5138)] = 133456, - [SMALL_STATE(5139)] = 133466, - [SMALL_STATE(5140)] = 133476, - [SMALL_STATE(5141)] = 133486, - [SMALL_STATE(5142)] = 133496, - [SMALL_STATE(5143)] = 133506, - [SMALL_STATE(5144)] = 133516, - [SMALL_STATE(5145)] = 133526, - [SMALL_STATE(5146)] = 133536, - [SMALL_STATE(5147)] = 133546, - [SMALL_STATE(5148)] = 133556, - [SMALL_STATE(5149)] = 133566, - [SMALL_STATE(5150)] = 133576, - [SMALL_STATE(5151)] = 133586, - [SMALL_STATE(5152)] = 133596, - [SMALL_STATE(5153)] = 133606, - [SMALL_STATE(5154)] = 133616, - [SMALL_STATE(5155)] = 133626, - [SMALL_STATE(5156)] = 133636, - [SMALL_STATE(5157)] = 133646, - [SMALL_STATE(5158)] = 133656, - [SMALL_STATE(5159)] = 133666, - [SMALL_STATE(5160)] = 133676, - [SMALL_STATE(5161)] = 133686, - [SMALL_STATE(5162)] = 133696, - [SMALL_STATE(5163)] = 133706, - [SMALL_STATE(5164)] = 133716, - [SMALL_STATE(5165)] = 133726, - [SMALL_STATE(5166)] = 133736, - [SMALL_STATE(5167)] = 133746, - [SMALL_STATE(5168)] = 133756, - [SMALL_STATE(5169)] = 133766, - [SMALL_STATE(5170)] = 133776, - [SMALL_STATE(5171)] = 133786, - [SMALL_STATE(5172)] = 133796, - [SMALL_STATE(5173)] = 133806, - [SMALL_STATE(5174)] = 133816, - [SMALL_STATE(5175)] = 133826, - [SMALL_STATE(5176)] = 133836, - [SMALL_STATE(5177)] = 133846, - [SMALL_STATE(5178)] = 133856, - [SMALL_STATE(5179)] = 133866, - [SMALL_STATE(5180)] = 133876, - [SMALL_STATE(5181)] = 133886, - [SMALL_STATE(5182)] = 133896, - [SMALL_STATE(5183)] = 133906, - [SMALL_STATE(5184)] = 133916, - [SMALL_STATE(5185)] = 133926, - [SMALL_STATE(5186)] = 133936, - [SMALL_STATE(5187)] = 133946, - [SMALL_STATE(5188)] = 133956, - [SMALL_STATE(5189)] = 133966, - [SMALL_STATE(5190)] = 133976, - [SMALL_STATE(5191)] = 133986, - [SMALL_STATE(5192)] = 133996, - [SMALL_STATE(5193)] = 134006, - [SMALL_STATE(5194)] = 134016, - [SMALL_STATE(5195)] = 134026, - [SMALL_STATE(5196)] = 134036, - [SMALL_STATE(5197)] = 134046, - [SMALL_STATE(5198)] = 134056, - [SMALL_STATE(5199)] = 134066, - [SMALL_STATE(5200)] = 134076, - [SMALL_STATE(5201)] = 134086, - [SMALL_STATE(5202)] = 134096, - [SMALL_STATE(5203)] = 134106, - [SMALL_STATE(5204)] = 134116, - [SMALL_STATE(5205)] = 134126, - [SMALL_STATE(5206)] = 134136, - [SMALL_STATE(5207)] = 134146, - [SMALL_STATE(5208)] = 134156, - [SMALL_STATE(5209)] = 134166, - [SMALL_STATE(5210)] = 134176, - [SMALL_STATE(5211)] = 134186, - [SMALL_STATE(5212)] = 134196, - [SMALL_STATE(5213)] = 134206, - [SMALL_STATE(5214)] = 134216, - [SMALL_STATE(5215)] = 134226, - [SMALL_STATE(5216)] = 134236, - [SMALL_STATE(5217)] = 134246, - [SMALL_STATE(5218)] = 134256, - [SMALL_STATE(5219)] = 134266, - [SMALL_STATE(5220)] = 134276, - [SMALL_STATE(5221)] = 134286, - [SMALL_STATE(5222)] = 134296, - [SMALL_STATE(5223)] = 134306, - [SMALL_STATE(5224)] = 134316, - [SMALL_STATE(5225)] = 134326, - [SMALL_STATE(5226)] = 134336, - [SMALL_STATE(5227)] = 134346, - [SMALL_STATE(5228)] = 134356, - [SMALL_STATE(5229)] = 134366, - [SMALL_STATE(5230)] = 134376, - [SMALL_STATE(5231)] = 134386, - [SMALL_STATE(5232)] = 134396, - [SMALL_STATE(5233)] = 134406, - [SMALL_STATE(5234)] = 134416, - [SMALL_STATE(5235)] = 134426, - [SMALL_STATE(5236)] = 134436, - [SMALL_STATE(5237)] = 134446, - [SMALL_STATE(5238)] = 134456, - [SMALL_STATE(5239)] = 134466, - [SMALL_STATE(5240)] = 134476, - [SMALL_STATE(5241)] = 134486, - [SMALL_STATE(5242)] = 134496, - [SMALL_STATE(5243)] = 134506, - [SMALL_STATE(5244)] = 134516, - [SMALL_STATE(5245)] = 134526, - [SMALL_STATE(5246)] = 134536, - [SMALL_STATE(5247)] = 134546, - [SMALL_STATE(5248)] = 134556, - [SMALL_STATE(5249)] = 134566, - [SMALL_STATE(5250)] = 134576, - [SMALL_STATE(5251)] = 134586, - [SMALL_STATE(5252)] = 134596, - [SMALL_STATE(5253)] = 134606, - [SMALL_STATE(5254)] = 134616, - [SMALL_STATE(5255)] = 134626, - [SMALL_STATE(5256)] = 134636, - [SMALL_STATE(5257)] = 134646, - [SMALL_STATE(5258)] = 134656, + [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(4935), + [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(5029), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [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(1776), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [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(102), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [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(101), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [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(1764), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [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(3765), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1774), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3915), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3916), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3917), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2907), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1683), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4503), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1762), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1764), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4060), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4547), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1132), - [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(5136), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4596), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1348), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5136), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1095), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1096), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1097), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4980), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(347), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(29), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3627), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5211), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3), - [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(2292), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3423), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3582), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(114), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(114), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(133), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(679), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(680), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4972), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(903), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3951), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5149), - [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5150), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3995), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3824), - [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(5147), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3768), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1737), - [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3920), - [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3921), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3922), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2907), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1683), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4503), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1762), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1764), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4060), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4547), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1132), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(950), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5136), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3935), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1348), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5136), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1095), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1096), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1097), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4980), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(347), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(29), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3627), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5211), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3), - [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(3423), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3582), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(114), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(114), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(133), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(679), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(680), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4972), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(903), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3951), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5149), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5150), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3995), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3824), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1451), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5147), + [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(96), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [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, 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(113), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [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(3492), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [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(5152), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [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 = true}}, REDUCE(sym_val_duration, 2, 0, 32), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 32), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 32), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 32), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5136), - [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5136), - [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4041), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2907), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(963), - [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), - [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1348), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), - [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1096), - [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1097), - [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(347), - [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(29), - [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3624), - [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5211), - [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3), - [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2259), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3423), - [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3582), - [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(124), - [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(124), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(679), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(680), - [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4972), - [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(903), - [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3951), - [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5149), - [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5150), - [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3995), - [1128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), - [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), - [1134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5147), - [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5136), - [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5136), - [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4041), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2907), - [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1258), - [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4596), - [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1348), - [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), - [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1096), - [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1097), - [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(347), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(29), - [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3624), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5211), - [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3), - [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2292), - [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3423), - [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3582), - [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(124), - [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(124), - [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(679), - [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(680), - [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4972), - [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(903), - [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3951), - [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5149), - [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5150), - [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3995), - [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), - [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1454), - [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5147), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [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(303), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [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 = false}}, SHIFT(267), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [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(4095), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [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(3771), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [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(3255), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 22), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 22), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 1, 0, 0), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 1, 0, 0), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [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(3518), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 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 = true}}, SHIFT(495), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3449), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [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(3473), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3473), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 31), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 31), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 30), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 30), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 126), - [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 126), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 127), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 127), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 128), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 128), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 129), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 129), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 100), - [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 100), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 47), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 47), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(696), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3964), - [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4302), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4482), - [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(359), - [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(34), - [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3629), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(7), - [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3466), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(68), - [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3464), - [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5015), - [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3331), - [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3331), - [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3428), - [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4097), - [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3959), - [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5107), - [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4304), - [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3961), - [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5157), - [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5158), - [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3952), - [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3857), - [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(378), - [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4332), - [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5155), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 24), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 24), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 78), - [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 78), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3462), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 74), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 74), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 75), - [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 75), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), - [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 77), - [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 77), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 31), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 31), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3574), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 30), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 30), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 130), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 130), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 129), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 129), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 127), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 127), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 128), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 128), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3569), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 48), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 48), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 101), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 101), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 24), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 24), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(696), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 79), + [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 79), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4161), + [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4318), + [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4760), + [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(344), + [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(31), + [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3784), + [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5), + [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3648), + [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(35), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3650), + [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5117), + [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3384), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3384), + [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3534), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4383), + [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4148), + [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5212), + [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4320), + [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4069), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5264), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5265), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4055), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3967), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(399), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4300), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5262), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3591), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 75), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 75), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 77), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 77), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 78), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 78), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 105), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 105), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 105), + [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 105), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 30), + [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 30), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 48), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 48), [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 156), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 156), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 157), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 157), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 162), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 162), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 4), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 4), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(696), - [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1119), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 61), - [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 61), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 61), - [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 61), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), - [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 30), - [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 30), - [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4770), - [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4770), - [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(2920), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4978), - [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4722), - [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(70), - [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4283), - [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5077), - [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(68), - [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5015), - [2330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(1860), - [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(1860), - [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(1916), - [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(679), - [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4026), - [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4973), - [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4974), - [2351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3995), - [2354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3824), - [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(457), - [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4968), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 47), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 47), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 115), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 115), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 116), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 116), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 117), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 117), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 123), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 123), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 100), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 100), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4770), - [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4770), - [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(2920), - [2444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4978), - [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4722), - [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(70), - [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4371), - [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5077), - [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(68), - [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5015), - [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(1860), - [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(1860), - [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(1916), - [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(679), - [2477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4026), - [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4973), - [2483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4974), - [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3995), - [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3824), - [2492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(457), - [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4968), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1010), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 41), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 41), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 118), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 118), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 31), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 31), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 163), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 163), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 73), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 73), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 113), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 113), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 5), - [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 5), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 113), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 113), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 59), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 59), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 59), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 59), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 73), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 73), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 191), - [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 191), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 73), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 73), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), SHIFT(696), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), SHIFT(696), - [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), SHIFT(696), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [2919] = {.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), - [2923] = {.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), - [2927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 73), SHIFT(696), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), - [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1372), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1373), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(696), - [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), - [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3941), - [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3944), - [3156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4089), - [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1099), - [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4231), - [3168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [3171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4655), - [3174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3471), - [3177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3472), - [3180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3356), - [3183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3356), - [3186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3403), - [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(679), - [3192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(680), - [3195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4972), - [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), - [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4026), - [3204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4973), - [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4974), - [3210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4968), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1379), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4885), - [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4885), - [3398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5140), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1894), - [3408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1894), - [3411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1945), - [3414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4885), - [3417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4885), - [3420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5140), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1894), - [3430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1894), - [3433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1945), - [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1414), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3964), - [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4302), - [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4482), - [3529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(1126), - [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(34), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4283), - [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(456), - [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3466), - [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3464), - [3547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3331), - [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3331), - [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3428), - [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4097), - [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3959), - [3562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5107), - [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4703), - [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(3961), - [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5157), - [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5158), - [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(4332), - [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 51), SHIFT_REPEAT(5155), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 12), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3655] = {.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), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 34), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), - [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 20), - [3703] = {.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), - [3706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 49), REDUCE(sym_record_body, 3, 0, 49), - [3709] = {.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), - [3712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 20), REDUCE(sym_record_body, 2, 0, 20), - [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), - [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), - [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), - [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 105), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 49), - [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 20), - [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 50), - [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1493), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 49), - [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 50), - [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), - [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), - [3750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1676), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3444), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [4037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 141), SHIFT_REPEAT(5026), - [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 141), SHIFT_REPEAT(5026), - [4043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 141), SHIFT_REPEAT(4494), - [4046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 141), SHIFT_REPEAT(1894), - [4049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 141), SHIFT_REPEAT(1945), - [4052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 141), SHIFT_REPEAT(3961), - [4055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 141), SHIFT_REPEAT(5157), - [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 141), SHIFT_REPEAT(5158), - [4061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 141), SHIFT_REPEAT(5155), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3503), - [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 173), SHIFT_REPEAT(4090), - [4098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 173), SHIFT_REPEAT(3925), - [4101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 173), SHIFT_REPEAT(3926), - [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 173), SHIFT_REPEAT(5255), - [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [4133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 173), SHIFT_REPEAT(4098), - [4136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 173), SHIFT_REPEAT(4061), - [4139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 173), SHIFT_REPEAT(4073), - [4142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 173), SHIFT_REPEAT(5244), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [4211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1900), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 90), - [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 90), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 85), - [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 90), - [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 173), - [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 85), - [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 173), - [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 204), - [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3529), - [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 204), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 90), - [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [4362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2117), - [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 92), - [4367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 176), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 92), - [4373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2127), - [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), - [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 49), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), - [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 50), - [4386] = {.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), - [4390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 22), - [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 22), - [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1957), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [4416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 139), - [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 140), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 20), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 92), - [4498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2115), - [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), - [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), - [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), - [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2183), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2141), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 36), - [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 36), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 87), - [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 87), - [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 88), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 88), - [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 89), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 89), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), - [4677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2218), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [4694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [4702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2240), - [4723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2237), - [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), - [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 20), - [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 50), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 20), - [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 49), - [4738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 105), - [4740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 20), - [4742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2249), - [4745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2248), - [4748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(5004), - [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(4896), - [4754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(5104), - [4757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3876), - [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3877), - [4763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3618), - [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3618), - [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3752), - [4772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(4897), - [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3961), - [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(5157), - [4781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(5158), - [4784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3947), - [4787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(5155), - [4790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2254), - [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [4801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [4831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3528), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [4954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 167), - [4956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 167), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 167), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 4, 0, 220), - [4974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2419), - [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [5007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 199), - [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [5019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 200), - [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [5053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2426), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [5080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3445), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3489), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 73), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [5158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3524), - [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 57), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [5177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 57), - [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), - [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), - [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 41), - [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 41), - [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3447), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [5276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 41), - [5278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 41), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [5290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 22), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 22), - [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 74), - [5304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3443), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 5), - [5313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 5), - [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [5331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [5341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 112), - [5343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 112), - [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 57), - [5347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 57), - [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 54), - [5351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 54), - [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [5361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 112), - [5363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 112), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [5377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), - [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 54), - [5385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 54), - [5387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [5393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 64), - [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 64), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [5417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3484), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [5424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 26), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [5432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 150), - [5434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [5436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [5438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), SHIFT(696), - [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [5445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), SHIFT(696), - [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [5452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 150), SHIFT(696), - [5455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), - [5457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [5461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 150), - [5463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 73), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [5467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 119), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [5471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 186), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [5477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 2, 0, 10), SHIFT(696), - [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_let_shortcut, 2, 0, 10), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [5484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 70), - [5486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 70), - [5488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 216), SHIFT(696), - [5491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 216), - [5493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 187), - [5495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 119), - [5497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 120), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [5501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 120), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [5507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 121), - [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), - [5511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 73), - [5513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), - [5518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3406), - [5521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), - [5524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 25), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 26), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 120), - [5536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), SHIFT(696), - [5539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [5545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 214), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 215), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 216), - [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 190), - [5563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), SHIFT(696), - [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), - [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [5580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), SHIFT(696), - [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), - [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), - [5587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [5593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [5597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), SHIFT(696), - [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 148), - [5606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), - [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), - [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 25), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [5614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), SHIFT(696), - [5617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), - [5619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), SHIFT(696), - [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 184), - [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), - [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), - [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 25), - [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 121), - [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 73), - [5644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), SHIFT(696), - [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 185), - [5649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), SHIFT(696), - [5652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 22), - [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 22), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 26), - [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 8), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [5672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), - [5674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), SHIFT(696), - [5677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), SHIFT(696), - [5680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 73), SHIFT(696), - [5683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 120), SHIFT(696), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [5708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [5714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3204), - [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [5719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5057), - [5722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4799), - [5725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5068), - [5728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5257), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [5745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(696), - [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [5752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 217), - [5754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 217), - [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [5782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), - [5784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 72), - [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 72), SHIFT_REPEAT(110), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [5793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 28), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [5797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 29), - [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 192), - [5807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 192), - [5809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(696), - [5812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 63), - [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 153), - [5832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 153), - [5834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 172), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [5838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 172), - [5840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3822), - [5843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 87), - [5845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 87), - [5847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 63), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [5851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 45), SHIFT(696), - [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 45), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 15), - [5860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 72), SHIFT_REPEAT(119), - [5863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 72), SHIFT_REPEAT(119), - [5866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 72), - [5868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [5870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), - [5874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), - [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [5878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), - [5882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [5886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(696), - [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), - [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [5899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 181), SHIFT(696), - [5902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 181), - [5904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(210), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [5909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), SHIFT(696), - [5912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 15), - [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 181), SHIFT(696), - [5927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 181), - [5929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 84), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [5933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 84), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [5937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 22), - [5939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 22), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [5957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 147), SHIFT(696), - [5960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 147), - [5962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [5964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [5966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [5968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [5970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 28), - [5972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(696), - [5975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [5979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 29), - [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 28), - [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 29), - [5985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(207), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [5990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 45), SHIFT(696), - [5993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 45), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [5997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(696), - [6000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [6004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), SHIFT(696), - [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 15), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 133), - [6011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 133), - [6013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 125), - [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 125), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [6019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 146), SHIFT(696), - [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 146), - [6024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 36), - [6026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 36), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [6030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 147), SHIFT(696), - [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 147), - [6035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 63), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [6039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 146), SHIFT(696), - [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 146), - [6044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3924), - [6047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 85), - [6049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 85), - [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 72), - [6053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 72), SHIFT_REPEAT(122), - [6056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(205), - [6059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(201), - [6062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(696), - [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [6067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 65), - [6069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 65), - [6071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [6075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 67), - [6077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 67), - [6079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 68), - [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 68), - [6083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 69), - [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 69), - [6087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [6091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3231), - [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 95), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), - [6118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 86), - [6120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 86), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [6126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 45), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [6142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 98), - [6144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 170), - [6146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 170), - [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 3), - [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 94), - [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [6160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [6164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 197), - [6178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 197), - [6180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 201), - [6182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 201), - [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 202), - [6186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 202), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [6190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 133), - [6192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 133), - [6194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 221), - [6196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 221), - [6198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 95), - [6200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 98), - [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 53), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [6206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 53), - [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), - [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 171), - [6212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 171), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [6228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(252), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [6233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(256), - [6236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(258), - [6239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(261), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [6252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [6258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [6260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [6263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 67), - [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 67), - [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 143), - [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 144), - [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 247), - [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), - [6279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 224), - [6285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 225), - [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 248), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 226), - [6295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 227), - [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 211), - [6299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 52), - [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 240), - [6303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 143), - [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), - [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 241), - [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 242), - [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 249), - [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 237), - [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 244), - [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 94), - [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [6327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 245), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 182), - [6337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 3), - [6341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [6343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 183), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [6349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 228), - [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 212), - [6353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 134), - [6355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 134), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 21), - [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 229), - [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 110), - [6369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 110), - [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 203), - [6373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 203), - [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [6381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 246), - [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), - [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 250), - [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 238), - [6389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 251), - [6391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 111), - [6393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 111), - [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 22), - [6397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 22), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [6403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 230), - [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 231), - [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 55), - [6413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 55), - [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), - [6417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), - [6419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 239), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [6425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3406), - [6428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 206), - [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 207), - [6432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 208), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [6440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 22), - [6442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 22), - [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [6460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(227), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [6465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(231), - [6468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(233), - [6471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(236), - [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 213), - [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 209), - [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 222), - [6480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 223), - [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 169), - [6484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 169), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), - [6492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), - [6494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 236), - [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 234), - [6508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 152), - [6510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 152), - [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 235), - [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 210), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), - [6520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3514), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3499), - [6541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [6547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 54), - [6549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 54), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 112), - [6569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 112), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [6599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 57), - [6601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 57), - [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), - [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), - [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), - [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), - [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), - [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), - [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), - [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), - [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), - [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), - [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [6759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), - [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), - [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), - [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), - [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), - [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), - [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), - [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), - [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), - [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), - [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), - [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), - [6955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [6981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), - [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [7011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [7014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [7032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [7068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3446), - [7071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 178), - [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), - [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [7087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [7089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [7181] = {.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), - [7185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7187] = {.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), - [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), - [7215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3448), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [7284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 178), - [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [7300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [7317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3494), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 80), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [7342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [7348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [7360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [7378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3509), - [7381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 155), - [7383] = {.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), - [7387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 49), - [7389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), SHIFT(2248), - [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [7398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [7400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [7404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3461), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [7411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), - [7413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4980), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [7428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 62), SHIFT_REPEAT(81), - [7431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 62), SHIFT_REPEAT(4281), - [7434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 62), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [7458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [7460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), - [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [7498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 14), - [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [7504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), - [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [7510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [7512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [7516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 20), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 35), - [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [7558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 42), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [7582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 109), - [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 109), - [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [7610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 154), - [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 154), - [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [7626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [7638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [7656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), - [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [7676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [7694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), - [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), - [7699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 179), - [7701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 179), - [7703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 180), - [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 180), - [7707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3882), - [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [7722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4310), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [7735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 62), SHIFT_REPEAT(75), - [7738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 62), - [7740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 62), SHIFT_REPEAT(4495), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [7749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 205), - [7751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 105), - [7753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 178), - [7755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 105), - [7757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [7773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 91), - [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [7777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4663), - [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [7782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [7788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 93), - [7790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), - [7792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 27), - [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [7804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 72), SHIFT_REPEAT(194), - [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [7813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4620), - [7816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 48), - [7822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 101), - [7824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [7826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4625), - [7829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 102), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [7833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [7837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3442), - [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [7842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 85), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [7846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 85), - [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [7850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 96), - [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [7872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [7874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 73), - [7876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 97), - [7878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [7880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 83), - [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 131), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [7888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 132), - [7890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 46), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [7894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [7898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), - [7900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 16), - [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 135), - [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), - [7908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 137), - [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 138), - [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), - [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 142), - [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [7926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 168), - [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 168), - [7930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 9), - [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 9), - [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 9), - [7944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 13), - [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 13), - [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 79), - [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 164), - [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 165), - [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 166), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), - [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 177), - [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 178), - [7966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 50), - [7968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [7970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [7972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [7974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 49), - [7976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 81), - [7978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 50), - [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 33), - [7982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 82), - [7988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(5040), - [7991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1422), - [7994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [7998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 193), - [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 37), - [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 38), - [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 39), - [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 40), - [8014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 194), - [8016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 195), - [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 196), - [8020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 43), - [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 44), - [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), - [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [8030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 145), - [8032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 218), - [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 219), - [8036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 232), - [8038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 233), - [8040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 243), - [8042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 48), - [8044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 130), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [8052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 82), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [8056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 83), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [8068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 1, 0, 167), - [8070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 96), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [8078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 199), - [8080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 90), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [8084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 200), - [8086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 90), - [8088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 49), - [8090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), - [8092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 50), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), - [8100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [8110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 85), - [8112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 173), - [8118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 102), - [8120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 220), - [8122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 85), - [8124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [8128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 48), - [8130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 173), - [8132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [8134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 204), - [8136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 139), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [8140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 176), - [8142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 49), - [8144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 86), - [8146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 86), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [8150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [8155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [8160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 49), REDUCE(sym_record_body, 2, 0, 49), - [8163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 73), - [8165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 50), - [8167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 103), SHIFT_REPEAT(395), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [8172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), - [8174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 177), - [8176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 9), - [8178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 178), - [8180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 99), - [8182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 204), - [8184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), - [8186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 27), - [8188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(4752), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), - [8199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 60), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [8205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 20), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [8213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 130), - [8215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 135), - [8217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 205), - [8219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 9), - [8221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 9), - [8223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 178), - [8225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [8229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 140), - [8235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 92), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [8247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 145), - [8249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 101), - [8251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 124), - [8253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 124), SHIFT_REPEAT(4591), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [8258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 20), - [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 33), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [8268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 20), REDUCE(sym_record_body, 1, 0, 20), - [8271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [8275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [8279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [8281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [8289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), - [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), - [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [8295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 19), - [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 19), - [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [8317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4812), - [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), - [8322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4823), - [8325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), - [8327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), - [8329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 198), - [8331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 198), - [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), - [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [8353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 179), - [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 179), - [8357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [8359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 180), - [8361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 180), - [8363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), - [8372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 71), - [8374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 71), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [8382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 174), - [8384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 174), - [8386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4745), - [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [8391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [8395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), - [8397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), - [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [8409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 19), - [8411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 19), - [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [8415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 134), - [8417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 134), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [8421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [8455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [8467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [8503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [8517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [8529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [8531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [8561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [8597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 85), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [8679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [8695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [8705] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [8735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [8737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [8767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [8813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 85), - [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [8827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [8837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [8877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 90), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [8881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [9085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [9111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 116), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 116), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 117), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 117), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 118), + [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 118), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 124), + [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 124), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 101), + [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 101), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 157), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 157), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), + [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), + [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), + [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 162), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 162), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 163), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 163), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 4), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 4), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 62), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 62), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 62), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 62), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 75), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 75), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4940), + [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4940), + [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(2926), + [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5355), + [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4833), + [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(51), + [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4394), + [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5336), + [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(35), + [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5117), + [2389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1905), + [2392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1905), + [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1920), + [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(699), + [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4056), + [2404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5069), + [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5070), + [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4108), + [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3939), + [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(459), + [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5064), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), + [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4940), + [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4940), + [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(2926), + [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5355), + [2458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4833), + [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(51), + [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4463), + [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5336), + [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(35), + [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5117), + [2476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1905), + [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1905), + [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1920), + [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(699), + [2488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4056), + [2491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5069), + [2494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5070), + [2497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4108), + [2500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3939), + [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(459), + [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5064), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(696), + [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1114), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 60), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 60), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 119), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 119), + [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 74), + [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 74), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 114), + [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 114), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 164), + [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 164), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 60), + [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 60), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 31), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 31), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1132), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 114), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 114), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 5), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 5), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 42), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 42), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 75), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 75), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 191), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 191), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), SHIFT(696), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), SHIFT(696), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 74), SHIFT(696), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), SHIFT(696), + [2944] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2948] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), + [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1376), + [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1371), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [3180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1389), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [3195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4084), + [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4085), + [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4159), + [3204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(973), + [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4325), + [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(479), + [3216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4668), + [3219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3572), + [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3573), + [3225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3414), + [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3414), + [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3533), + [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [3237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(681), + [3240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5068), + [3243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4169), + [3246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4056), + [3249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5069), + [3252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5070), + [3255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [3258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5064), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(696), + [3352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1397), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5129), + [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5129), + [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5126), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1934), + [3414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1934), + [3417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1960), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5129), + [3429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5129), + [3432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5126), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1934), + [3442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1934), + [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1960), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), + [3483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1422), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4161), + [3533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4318), + [3536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4760), + [3539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(1134), + [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(31), + [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4394), + [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(480), + [3551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3648), + [3554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3650), + [3557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3384), + [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3384), + [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(3534), + [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4383), + [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4148), + [3572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5212), + [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4901), + [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4069), + [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5264), + [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5265), + [3587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(4300), + [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 52), SHIFT_REPEAT(5262), + [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [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 9e2f6b9d..371857ce 100644 --- a/test/corpus/stmt/let.nu +++ b/test/corpus/stmt/let.nu @@ -105,7 +105,7 @@ let y: oneof> = 1 let-006-shortcut ===== -1 | let foo +1 | let foo: int let bar ----- From b9468c0b7570a8b4ce8f92bf49cfee98e0aefc19 Mon Sep 17 00:00:00 2001 From: blindfs Date: Sun, 25 Jan 2026 10:24:31 +0800 Subject: [PATCH 4/5] fix test case --- test/corpus/stmt/let.nu | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/corpus/stmt/let.nu b/test/corpus/stmt/let.nu index 371857ce..254c3738 100644 --- a/test/corpus/stmt/let.nu +++ b/test/corpus/stmt/let.nu @@ -116,7 +116,9 @@ let bar (val_number)) (pipe_element (stmt_let - var_name: (identifier)))) + var_name: (identifier) + type: (param_type + type: (flat_type))))) (pipeline (pipe_element (stmt_let From 4fa28c72020195d3c4c99f245ed85ddee5a2b448 Mon Sep 17 00:00:00 2001 From: blindfs Date: Sun, 25 Jan 2026 10:28:12 +0800 Subject: [PATCH 5/5] chore(ci): disable node test --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d98ee16..62786097 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,7 +43,7 @@ jobs: with: generate: false test-rust: true - test-node: true + test-node: false test-python: true test-go: true test-swift: false